3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/servers/http/nginx/quic.nix
Janne Heß 75a8b258eb
nginxQuic: 10522e8dea41 -> 6f8253673669
This fixes a bug where the connection would hang indefinitely when more
than 3999 bytes are transmitted from proxy_pass.

Was introduced in 6ccf3867959a as in:
https://mailman.nginx.org/archives/list/nginx-devel@nginx.org/thread/C5CPKFVKLTI5WDNF7CV7MMK6G3POBBA3/
2022-01-13 16:58:34 +01:00

24 lines
437 B
Nix

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