* Export a variation point `zlibSupport'.

svn path=/nixpkgs/trunk/; revision=796
This commit is contained in:
Eelco Dolstra
2004-02-17 20:02:31 +00:00
parent 9261c1eaa5
commit 56712d5032
2 changed files with 19 additions and 9 deletions

View File

@@ -1,10 +1,15 @@
{stdenv, fetchurl}: derivation {
{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
assert zlibSupport -> zlib != null;
derivation {
name = "python-2.3.3";
system = stdenv.system;
builder = ./builder.sh;
src = fetchurl {
url = http://www.python.org/ftp/python/2.3.3/Python-2.3.3.tar.bz2;
md5 = "70ada9f65742ab2c77a96bcd6dffd9b1";
};
stdenv = stdenv;
};
zlib = if zlibSupport then zlib else null;
inherit stdenv zlibSupport;
}