2006-01-15 13:03:00 +01:00
|
|
|
{stdenv, fetchurl, apacheHttpd, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2006-02-28 13:01:39 +01:00
|
|
|
name = "mod_python-3.2.8";
|
2006-01-15 13:03:00 +01:00
|
|
|
|
|
|
|
builder = ./builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2006-02-28 13:01:39 +01:00
|
|
|
url = http://apache.nedmirror.nl/httpd/modpython/mod_python-3.2.8.tgz;
|
|
|
|
md5 = "d03452979a6a334f73cc2b95b39db331";
|
2006-01-15 13:03:00 +01:00
|
|
|
};
|
|
|
|
|
2006-02-28 13:01:39 +01:00
|
|
|
patches = [./install.patch ./jg-20060204-1.patch];
|
2006-01-15 13:03:00 +01:00
|
|
|
|
|
|
|
inherit apacheHttpd;
|
|
|
|
buildInputs = [apacheHttpd python];
|
|
|
|
}
|