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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
446 B
Nix
Raw Normal View History

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