Revert "mod-python unfinished"

reverting -r 16808 (unfinished mod_python). Sth working does already exist

svn path=/nixpkgs/trunk/; revision=16882
This commit is contained in:
Marc Weber 2009-08-27 23:46:15 +00:00
parent 8ff2647169
commit 08d98a9972
2 changed files with 0 additions and 35 deletions

View File

@ -1,30 +0,0 @@
args: with args;
stdenv.mkDerivation {
name = "apache-httpd-mod-python-3.3.1";
/*
src = fetchurl {
url = mirror://apache/httpd/modpython/mod_python-3.3.1.tgz;
sha256 = "0sss2xi6l1a2z8y6ji0cp8vgyvnhq8zrg0ilkvpj1mygbzyk28xd";
};
*/
src = sourceByName "apacheHttpdModPython";
buildInputs = [apacheHttpd python];
configurePhase = ''
./configure
'';
installPhase = ''
set -x
make DESTDIR=$out LIBEXECDIR=/modules install_dso
make DESTDIR=$out install_py_lib
'';
meta = {
description = "python module for apache";
homepage = http://httpd.apache.org/modules/python-download.cgi;
license = "Apache 2.0";
};
}

View File

@ -4519,11 +4519,6 @@ let
sslSupport = true;
};
apacheHttpdModPython = import ../servers/http/apache-httpd/mod-python.nix {
inherit stdenv fetchurl apacheHttpd python;
inherit (bleedingEdgeRepos) sourceByName;
};
bind = builderDefsPackage (selectVersion ../servers/dns/bind "9.5.0") {
inherit openssl libtool;
};