2010-04-21 12:51:15 +02:00
|
|
|
{stdenv, fetchurl, python}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2010-08-12 14:53:45 +02:00
|
|
|
version = "3.4.0";
|
2010-04-21 12:51:15 +02:00
|
|
|
name = "zope-${version}";
|
|
|
|
src = fetchurl {
|
2010-08-12 14:53:45 +02:00
|
|
|
url = "http://www.zope.org/Products/Zope3/${version}/Zope-${version}.tgz";
|
|
|
|
sha256 = "3e834e8749945d8fc0a67bb724f2cf0c671f04f477e24fb8edb74828e331901d";
|
2010-04-21 12:51:15 +02:00
|
|
|
};
|
|
|
|
patches = [
|
|
|
|
./zope_python-2.4.4.patch
|
|
|
|
./zope_python-readline.patch
|
|
|
|
];
|
|
|
|
buildInputs = [python];
|
|
|
|
}
|