* Fix some URLs.

svn path=/nixpkgs/trunk/; revision=6714
This commit is contained in:
Eelco Dolstra
2006-10-12 15:09:27 +00:00
parent ad897a7c96
commit 5782390a5d
7 changed files with 15 additions and 44 deletions

View File

@@ -1,16 +0,0 @@
{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
assert zlibSupport -> zlib != null;
stdenv.mkDerivation {
name = "python-2.5b1";
src = fetchurl {
url = http://www.python.org/ftp/python/2.5/Python-2.5b1.tgz;
md5 = "957c8d24d2ba8d4ba028c7f348ac5c86";
};
buildInputs = [
(if zlibSupport then zlib else null)
];
inherit zlibSupport;
configureFlags = "--enable-shared";
}