nixpkgs/pkgs/servers/http/nginx/quic.nix
2021-06-11 16:16:21 +02:00

25 lines
453 B
Nix

{ callPackage
, fetchhg
, ...
} @ args:
callPackage ./generic.nix args {
src = fetchhg {
url = "https://hg.nginx.org/nginx-quic";
rev = "1fec68e322d0"; # branch=quic
sha256 = "0nr1mjic215yc6liyv1kfwhfdija3q2sw3qdwibds5vkg330vmw8";
};
preConfigure = ''
ln -s auto/configure configure
'';
configureFlags = [
"--with-http_v3_module"
"--with-http_quic_module"
"--with-stream_quic_module"
];
version = "quic";
}