2021-04-28 06:40:27 +01:00
|
|
|
{ callPackage
|
2023-05-23 17:37:54 +01:00
|
|
|
, nginxMainline
|
2021-04-28 06:40:27 +01:00
|
|
|
, ...
|
|
|
|
} @ args:
|
2021-04-18 17:49:42 +01:00
|
|
|
|
|
|
|
callPackage ./generic.nix args {
|
2022-12-22 13:06:02 +00:00
|
|
|
pname = "nginxQuic";
|
|
|
|
|
2023-05-23 17:37:54 +01:00
|
|
|
inherit (nginxMainline) src version;
|
2021-04-18 17:49:42 +01:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-http_v3_module"
|
|
|
|
];
|
|
|
|
}
|