summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2021-12-08 16:51:59 +0300
committerIzorkin <izorkin@elven.pw>2021-12-09 14:23:11 +0300
commit921a58b8bc1ba93978ec66882d133eede4ac547f (patch)
tree62be6fae3ee3910772c9c90b48f24634e14653a4 /pkgs/servers/http
parente64e67a27a41a937cd31c8f0c024ba28a9275dea (diff)
downloadnixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar.gz
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar.bz2
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar.lz
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar.xz
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.tar.zst
nixpkgs-921a58b8bc1ba93978ec66882d133eede4ac547f.zip
nginxQuic: 6d1488b62dc5 -> 0ee56d2eac44
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/nginx/quic.nix7
1 files changed, 3 insertions, 4 deletions
diff --git a/pkgs/servers/http/nginx/quic.nix b/pkgs/servers/http/nginx/quic.nix
index 5874d3dd679..3217b859bc8 100644
--- a/pkgs/servers/http/nginx/quic.nix
+++ b/pkgs/servers/http/nginx/quic.nix
@@ -6,8 +6,8 @@
 callPackage ./generic.nix args {
   src = fetchhg {
     url = "https://hg.nginx.org/nginx-quic";
-    rev = "6d1488b62dc5"; # branch=quic
-    sha256 = "18xrkzzi4cxl4zi7clikwww9ad9l7vilrfs67hhzx7898jkws5fi";
+    rev = "0ee56d2eac44"; # branch=quic
+    sha256 = "sha256-ErJa71aOzcjcBl1P9+g5kzs5sr0JdjrPwYKZ9VAvQus=";
   };
 
   preConfigure = ''
@@ -16,9 +16,8 @@ callPackage ./generic.nix args {
 
   configureFlags = [
     "--with-http_v3_module"
-    "--with-http_quic_module"
     "--with-stream_quic_module"
   ];
 
-  version = "quic";
+  version = "1.21.4-quic";
 }