nixpkgs/pkgs/servers/http/apache-modules/mod_python/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

18 lines
355 B
Nix

{stdenv, fetchurl, apacheHttpd, python}:
stdenv.mkDerivation {
name = "mod_python-3.2.10";
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/mod_python-3.2.10.tgz;
md5 = "cc6439f546a6e70cfff7ca51b8c62541";
};
patches = [./install.patch];
inherit apacheHttpd;
buildInputs = [apacheHttpd python];
}