mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
27d53b81cc
quic support was merged still a separate package, because it uses quictls and sets configureFlags
15 lines
200 B
Nix
15 lines
200 B
Nix
{ callPackage
|
|
, nginxMainline
|
|
, ...
|
|
} @ args:
|
|
|
|
callPackage ./generic.nix args {
|
|
pname = "nginxQuic";
|
|
|
|
inherit (nginxMainline) src version;
|
|
|
|
configureFlags = [
|
|
"--with-http_v3_module"
|
|
];
|
|
}
|