af47bb13a5
* 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
18 lines
384 B
Nix
18 lines
384 B
Nix
{stdenv, fetchurl, apacheHttpd, python}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mod_python-3.2.8";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://apache.nedmirror.nl/httpd/modpython/mod_python-3.2.8.tgz;
|
|
md5 = "d03452979a6a334f73cc2b95b39db331";
|
|
};
|
|
|
|
patches = [./install.patch ./jg-20060204-1.patch];
|
|
|
|
inherit apacheHttpd;
|
|
buildInputs = [apacheHttpd python];
|
|
}
|