nixpkgs/pkgs/development/interpreters/python/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

17 lines
401 B
Nix

{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
assert zlibSupport -> zlib != null;
stdenv.mkDerivation {
name = "python-2.4.3";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/Python-2.4.3.tar.bz2;
md5 = "141c683447d5e76be1d2bd4829574f02";
};
buildInputs = [
(if zlibSupport then zlib else null)
];
inherit zlibSupport;
configureFlags = "--enable-shared";
}