* mod_python 3.2.10. Removed the patch to get it to work with Apache 2.2.

svn path=/nixpkgs/trunk/; revision=6473
This commit is contained in:
Eelco Dolstra
2006-09-06 15:48:35 +00:00
parent 992a3da5e2
commit 827d2b180e
2 changed files with 4 additions and 269 deletions

View File

@@ -1,16 +1,16 @@
{stdenv, fetchurl, apacheHttpd, python}:
stdenv.mkDerivation {
name = "mod_python-3.2.8";
name = "mod_python-3.2.10";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.nedmirror.nl/httpd/modpython/mod_python-3.2.8.tgz;
md5 = "d03452979a6a334f73cc2b95b39db331";
url = http://apache.surfnet.nl/httpd/modpython/mod_python-3.2.10.tgz;
md5 = "cc6439f546a6e70cfff7ca51b8c62541";
};
patches = [./install.patch ./jg-20060204-1.patch];
patches = [./install.patch];
inherit apacheHttpd;
buildInputs = [apacheHttpd python];