summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorTeo Klestrup Röijezon <teo@nullable.se>2015-12-07 00:54:26 +0100
committerRok Garbas <rok@garbas.si>2015-12-07 14:56:27 +0100
commit53441bcc93d6e706bc1de5a1180e3717fd6698eb (patch)
tree52f1357e351c50801faff8c6b64c3020c5ae49cc /pkgs/servers/http
parentb9093f1c641846882fdced70269a4ee09c2c376b (diff)
downloadnixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar.gz
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar.bz2
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar.lz
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar.xz
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.tar.zst
nixlib-53441bcc93d6e706bc1de5a1180e3717fd6698eb.zip
nginx: 1.9.4 -> 1.9.7, fixes #11515
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/nginx/unstable.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/servers/http/nginx/unstable.nix b/pkgs/servers/http/nginx/unstable.nix
index 45129dbe0d3f..a80632cd1c9a 100644
--- a/pkgs/servers/http/nginx/unstable.nix
+++ b/pkgs/servers/http/nginx/unstable.nix
@@ -7,10 +7,10 @@
 with stdenv.lib;
 
 let
-  version = "1.9.4";
+  version = "1.9.7";
   mainSrc = fetchurl {
     url = "http://nginx.org/download/nginx-${version}.tar.gz";
-    sha256 = "1a1bixw2a4s5c3qzw3583s4a4y6i0sdzhihhlbab5rkyfh1hr6s7";
+    sha256 = "1ma82wfg9akghx1cnzfmz4nplf0zjv1rk49x4v3f3z7xmwbx4jvr";
   };
 
 in
@@ -25,7 +25,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
     "--with-http_ssl_module"
-    "--with-http_spdy_module"
+    "--with-http_v2_module"
     "--with-http_realip_module"
     "--with-http_addition_module"
     "--with-http_xslt_module"