2021-05-03 20:48:10 +00:00
|
|
|
{ callPackage
|
2023-05-24 13:37:59 +00:00
|
|
|
, nginxMainline
|
2021-05-03 20:48:10 +00:00
|
|
|
, ...
|
|
|
|
} @ args:
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
callPackage ./generic.nix args {
|
2023-04-12 12:48:02 +00:00
|
|
|
pname = "nginxQuic";
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
inherit (nginxMainline) src version;
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-http_v3_module"
|
|
|
|
];
|
|
|
|
}
|