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