summary refs log tree commit diff
path: root/pkgs/servers/http/apache-modules/mod_python/default.nix
blob: c1456804489fa8d5e68c8905eaa402fb77978d7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{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];
}