nixpkgs/pkgs/servers/http/apache-modules/mod_python/default.nix
Eelco Dolstra 827d2b180e * mod_python 3.2.10. Removed the patch to get it to work with Apache 2.2.
svn path=/nixpkgs/trunk/; revision=6473
2006-09-06 15:48:35 +00:00

18 lines
362 B
Nix

{stdenv, fetchurl, apacheHttpd, python}:
stdenv.mkDerivation {
name = "mod_python-3.2.10";
builder = ./builder.sh;
src = fetchurl {
url = http://apache.surfnet.nl/httpd/modpython/mod_python-3.2.10.tgz;
md5 = "cc6439f546a6e70cfff7ca51b8c62541";
};
patches = [./install.patch];
inherit apacheHttpd;
buildInputs = [apacheHttpd python];
}