summary refs log tree commit diff
path: root/pkgs/servers/http/apache-modules/mod_python/default.nix
blob: d156576b21a84651cfb0d2ab154a42b464bf7df0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ 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 ];

  postPatch = ''
    substituteInPlace dist/version.sh \
        --replace 'GIT=`git describe --always`' "" \
        --replace '-$GIT' ""
  '';

  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";
  };
}