3389f4bc36
svn path=/nixpkgs/trunk/; revision=4623
17 lines
353 B
Nix
17 lines
353 B
Nix
{stdenv, fetchurl, apacheHttpd, python}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "mod_python-3.1.4";
|
|
|
|
builder = ./builder.sh;
|
|
|
|
src = fetchurl {
|
|
url = http://nix.cs.uu.nl/dist/tarballs/mod_python-3.1.4.tgz;
|
|
md5 = "607175958137b06bcda91110414c82a1";
|
|
};
|
|
|
|
patches = [./install.patch];
|
|
|
|
inherit apacheHttpd;
|
|
buildInputs = [apacheHttpd python];
|
|
}
|