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