1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-02-17 16:40:12 +00:00
nixpkgs/pkgs/servers/http/nginx/quic.nix

25 lines
453 B
Nix
Raw Normal View History

{ callPackage
, fetchhg
, ...
} @ args:
2021-04-18 17:49:42 +01:00
callPackage ./generic.nix args {
src = fetchhg {
url = "https://hg.nginx.org/nginx-quic";
rev = "404de224517e"; # branch=quic
sha256 = "00x8djp3hqnq60jzpddfrj0v23j2fbl27jyw609ha3wqkkbxrip9";
2021-04-18 17:49:42 +01:00
};
preConfigure = ''
ln -s auto/configure configure
'';
configureFlags = [
"--with-http_v3_module"
"--with-http_quic_module"
"--with-stream_quic_module"
];
version = "quic";
}