forked from mirrors/nixpkgs
75a8b258eb
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/
24 lines
437 B
Nix
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";
|
|
}
|