c594a97518
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
23 lines
429 B
Nix
23 lines
429 B
Nix
{ callPackage
|
|
, fetchhg
|
|
, ...
|
|
} @ args:
|
|
|
|
callPackage ./generic.nix args {
|
|
src = fetchhg {
|
|
url = "https://hg.nginx.org/nginx-quic";
|
|
rev = "3be953161026"; # branch=quic
|
|
sha256 = "sha256-maWQ0RPI2pe6L8QL7TQ1YJts5ZJHhiTYG9sdwINGMDA=";
|
|
};
|
|
|
|
preConfigure = ''
|
|
ln -s auto/configure configure
|
|
'';
|
|
|
|
configureFlags = [
|
|
"--with-http_v3_module"
|
|
"--with-stream_quic_module"
|
|
];
|
|
|
|
version = "1.23.2-quic";
|
|
}
|