3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/http/nginx/quic.nix
2023-04-03 12:40:49 +02:00

26 lines
446 B
Nix

{ callPackage
, fetchhg
, ...
} @ args:
callPackage ./generic.nix args {
pname = "nginxQuic";
src = fetchhg {
url = "https://hg.nginx.org/nginx-quic";
rev = "0af598651e33"; # branch=quic
hash = "sha256-rG0jXA+ci7anUxZCBhXZLZKwnTtzzDEAViuoImKpALA=";
};
preConfigure = ''
ln -s auto/configure configure
'';
configureFlags = [
"--with-http_v3_module"
"--with-stream_quic_module"
];
version = "1.23.4";
}