summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-03-17 00:14:53 -0700
committerMatthew Justin Bauer <mjbauer95@gmail.com>2018-03-23 21:02:20 -0500
commit83a1467cf09bbccbd918c4915359d0382aea2b63 (patch)
tree0b09618f08fc40677c9bfeeac3af7081bc3bfc3e /pkgs/servers/http
parent51350dd012faadb7f3d7a9f2c244b2bf3ccdc4c3 (diff)
downloadnixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar.gz
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar.bz2
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar.lz
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar.xz
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.tar.zst
nixlib-83a1467cf09bbccbd918c4915359d0382aea2b63.zip
mod_wsgi: 4.5.24 -> 4.6.2
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 4.6.2 with grep in /nix/store/c5q74ipv6p7mwri4p0ab0x32b76kfa2n-mod_wsgi-4.6.2
- directory tree listing: https://gist.github.com/2ddf866000f57f596c938b529d3f6fa9
Diffstat (limited to 'pkgs/servers/http')
-rw-r--r--pkgs/servers/http/apache-modules/mod_wsgi/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
index 4d45f70a9fd4..007cfc967794 100644
--- a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
+++ b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   name = "mod_wsgi-${version}";
-  version = "4.5.24";
+  version = "4.6.2";
 
   src = fetchurl {
     url = "https://github.com/GrahamDumpleton/mod_wsgi/archive/${version}.tar.gz";
-    sha256 = "1anxml8i3q90x8n30xfydpmv41cxlwqrg3vr98ayzaak02maxr99";
+    sha256 = "0gviv9x4w4i8d26d8vyrr8zk4p5hdx63rxpzqw769cmhvvy8r3g2";
   };
 
   buildInputs = [ apacheHttpd python2 ];