a97b1c8da0
GitOrigin-RevId: d235056d6d6dcbd2999bd55fd120d831d4df6304
21 lines
462 B
Nix
21 lines
462 B
Nix
{ callPackage, fetchhg, boringssl, ... } @ args:
|
|
|
|
callPackage ./generic.nix args {
|
|
src = fetchhg {
|
|
url = "https://hg.nginx.org/nginx-quic";
|
|
rev = "47a43b011dec"; # branch=quic
|
|
sha256 = "1d4d1v4zbnf5qlfl79pi7sficn1h7zm6kk7llm24yyhlsvssz10x";
|
|
};
|
|
|
|
preConfigure = ''
|
|
ln -s auto/configure configure
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-http_v3_module"
|
|
"--with-http_quic_module"
|
|
"--with-stream_quic_module"
|
|
];
|
|
|
|
version = "quic";
|
|
}
|