2006-01-15 13:03:00 +01:00
|
|
|
{stdenv, fetchurl, apacheHttpd, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-09-06 17:48:35 +02:00
|
|
|
name = "mod_python-3.2.10";
|
2006-01-15 13:03:00 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2006-10-12 15:50:54 +02:00
|
|
|
url = http://nix.cs.uu.nl/dist/tarballs/mod_python-3.2.10.tgz;
|
2006-09-06 17:48:35 +02:00
|
|
|
md5 = "cc6439f546a6e70cfff7ca51b8c62541";
|
2006-01-15 13:03:00 +01:00
|
|
|
};
|
|
|
|
|
2006-09-06 17:48:35 +02:00
|
|
|
patches = [./install.patch];
|
2006-01-15 13:03:00 +01:00
|
|
|
|
|
|
|
inherit apacheHttpd;
|
|
|
|
buildInputs = [apacheHttpd python];
|
|
|
|
}
|