about summary refs log tree commit diff
path: root/pkgs/servers/http
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2016-11-08 22:42:11 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2016-11-08 22:48:55 +0100
commit61158e28338bab57db43d2b31719dc52af58b4b6 (patch)
tree2c677429b928b8bbb482f58a48214a72186b1061 /pkgs/servers/http
parent559864a951c9f4f32f1447759a64ccde5cd75940 (diff)
downloadnixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar.gz
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar.bz2
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar.lz
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar.xz
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.tar.zst
nixlib-61158e28338bab57db43d2b31719dc52af58b4b6.zip
mod_wsgi: use python2
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 4cccf237b9e2..1d8507fc4eb3 100644
--- a/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
+++ b/pkgs/servers/http/apache-modules/mod_wsgi/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, apacheHttpd, python }:
+{ stdenv, fetchurl, apacheHttpd, python2 }:
 
 stdenv.mkDerivation rec {
   name = "mod_wsgi-${version}";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
     sha256 = "14xz422jlakdhxzsl8xs9if86yf1fnkwdg0havjyqs7my0w4qrzh";
   };
 
-  buildInputs = [ apacheHttpd python ];
+  buildInputs = [ apacheHttpd python2 ];
 
   patchPhase = ''
     sed -r -i -e "s|^LIBEXECDIR=.*$|LIBEXECDIR=$out/modules|" \