* Apache updated to 2.2.0.

* mod_python updated to 3.2.8, with a patch to get it to work with
  Apache 2.2.x.

svn path=/nixpkgs/trunk/; revision=4927
This commit is contained in:
Eelco Dolstra
2006-02-28 12:01:39 +00:00
parent 49d220cc97
commit af47bb13a5
5 changed files with 283 additions and 12 deletions

View File

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