depot/third_party/nixpkgs/pkgs/servers/http/nginx/quic.nix

14 lines
200 B
Nix

{ callPackage
, nginxMainline
, ...
} @ args:
callPackage ./generic.nix args {
pname = "nginxQuic";
inherit (nginxMainline) src version;
configureFlags = [
"--with-http_v3_module"
];
}