mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
65eb1a248f
svn path=/nixpkgs/trunk/; revision=23145
16 lines
398 B
Nix
16 lines
398 B
Nix
{stdenv, fetchurl, python}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "3.4.0";
|
|
name = "zope-${version}";
|
|
src = fetchurl {
|
|
url = "http://www.zope.org/Products/Zope3/${version}/Zope-${version}.tgz";
|
|
sha256 = "3e834e8749945d8fc0a67bb724f2cf0c671f04f477e24fb8edb74828e331901d";
|
|
};
|
|
patches = [
|
|
./zope_python-2.4.4.patch
|
|
./zope_python-readline.patch
|
|
];
|
|
buildInputs = [python];
|
|
}
|