* Added mod_python.
svn path=/nixpkgs/trunk/; revision=4549
This commit is contained in:
17
pkgs/servers/http/apache-modules/mod_python/default.nix
Normal file
17
pkgs/servers/http/apache-modules/mod_python/default.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{stdenv, fetchurl, apacheHttpd, python}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "mod_python-3.1.4";
|
||||
|
||||
builder = ./builder.sh;
|
||||
|
||||
src = fetchurl {
|
||||
url = http://apache.mirror.intouch.nl/httpd/modpython/mod_python-3.1.4.tgz;
|
||||
md5 = "607175958137b06bcda91110414c82a1";
|
||||
};
|
||||
|
||||
patches = [./install.patch];
|
||||
|
||||
inherit apacheHttpd;
|
||||
buildInputs = [apacheHttpd python];
|
||||
}
|
||||
Reference in New Issue
Block a user