* Added mod_python.

svn path=/nixpkgs/trunk/; revision=4549
This commit is contained in:
Eelco Dolstra
2006-01-15 12:03:00 +00:00
parent 7a8ea3f12b
commit b803253ddd
5 changed files with 49 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
{stdenv, fetchurl, apacheHttpd, python}:
stdenv.mkDerivation {
name = "mod_python-3.1.4";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.mirror.intouch.nl/httpd/modpython/mod_python-3.1.4.tgz;
md5 = "607175958137b06bcda91110414c82a1";
};
patches = [./install.patch];
inherit apacheHttpd;
buildInputs = [apacheHttpd python];
}