nixpkgs/pkgs/servers/http/apache-modules/mod_python/default.nix
Eelco Dolstra bad2955079 mod_python: Update to 3.5.0
This fixes building against Apache 2.4.
2014-11-07 11:31:04 +01:00

27 lines
629 B
Nix

{ stdenv, fetchurl, apacheHttpd, python }:
stdenv.mkDerivation rec {
name = "mod_python-3.5.0";
src = fetchurl {
url = "http://dist.modpython.org/dist/${name}.tgz";
sha256 = "146apll3yfqk05s8fkf4acmxzqncl08bgn4rv0c1rd4qxmc91w0f";
};
patches = [ ./install.patch ];
preInstall = ''
installFlags="LIBEXECDIR=$out/modules $installFlags"
mkdir -p $out/modules $out/bin
'';
passthru = { inherit apacheHttpd; };
buildInputs = [ apacheHttpd python ];
meta = {
homepage = http://modpython.org/;
description = "An Apache module that embeds the Python interpreter within the server";
};
}