nixpkgs/pkgs/servers/http/nginx/quic.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
200 B
Nix
Raw Normal View History

{ callPackage
, nginxMainline
, ...
} @ args:
2021-04-18 16:49:42 +00:00
callPackage ./generic.nix args {
pname = "nginxQuic";
inherit (nginxMainline) src version;
2021-04-18 16:49:42 +00:00
configureFlags = [
"--with-http_v3_module"
];
}