about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorR. RyanTM <ryantm+bot@ryantm.com>2018-03-31 18:17:56 -0700
committerRobin Gloster <mail@glob.in>2018-04-02 01:06:29 +0200
commite22adf301ba6d398bb1cd60b16e3eace66bd19a8 (patch)
tree95933892f96ef0b6ae3659a8f693e11de1c4f1ed /pkgs/servers/http
parent2a13e8fdb2b7b7688e3b14361c98af5f2b3c77fd (diff)
downloadnixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar.gz
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar.bz2
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar.lz
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar.xz
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.tar.zst
nixlib-e22adf301ba6d398bb1cd60b16e3eace66bd19a8.zip
mod_wsgi: 4.6.2 -> 4.6.3
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/mod_wsgi/versions.

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.3 with grep in /nix/store/gbxacl8l13m47bgjr1gnqarwi24jpchg-mod_wsgi-4.6.3
- directory tree listing: https://gist.github.com/a4132a8c78a2ba061a8c9c4b629bb2ae
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 007cfc967794..0599d3affc89 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.6.2";
+  version = "4.6.3";
 
   src = fetchurl {
     url = "https://github.com/GrahamDumpleton/mod_wsgi/archive/${version}.tar.gz";
-    sha256 = "0gviv9x4w4i8d26d8vyrr8zk4p5hdx63rxpzqw769cmhvvy8r3g2";
+    sha256 = "1vi2bf2spak70qqc1c673a7pwmzq01gmli43xwhrwdw7l2ig4wj9";
   };
 
   buildInputs = [ apacheHttpd python2 ];