2004-02-17 21:02:31 +01:00
|
|
|
{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
|
|
|
|
|
|
|
|
assert zlibSupport -> zlib != null;
|
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2006-12-13 19:03:08 +01:00
|
|
|
name = "python-2.4.4";
|
2003-12-21 21:52:13 +01:00
|
|
|
src = fetchurl {
|
2006-12-13 19:03:08 +01:00
|
|
|
url = http://www.python.org/ftp/python/2.4.4/Python-2.4.4.tar.bz2;
|
|
|
|
md5 = "0ba90c79175c017101100ebf5978e906";
|
2004-02-17 21:02:31 +01:00
|
|
|
};
|
2004-09-18 23:12:25 +02:00
|
|
|
buildInputs = [
|
|
|
|
(if zlibSupport then zlib else null)
|
|
|
|
];
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit zlibSupport;
|
2005-10-27 01:37:53 +02:00
|
|
|
configureFlags = "--enable-shared";
|
2006-12-13 19:03:08 +01:00
|
|
|
|
|
|
|
libPrefix = "python2.4";
|
|
|
|
|
|
|
|
postInstall = "
|
|
|
|
ensureDir $out/nix-support
|
|
|
|
cp ${./setup-hook.sh} $out/nix-support/setup-hook
|
|
|
|
rm -rf $out/lib/python2.4/test
|
|
|
|
";
|
2003-12-21 21:52:13 +01:00
|
|
|
}
|