* Export a variation point `zlibSupport'.
svn path=/nixpkgs/trunk/; revision=796
This commit is contained in:
parent
9261c1eaa5
commit
56712d5032
@ -1,10 +1,15 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
|
|
||||||
buildinputs=""
|
buildinputs=""
|
||||||
. $stdenv/setup || exit 1
|
if test -n "$zlibSupport"; then
|
||||||
|
buildinputs="$zlib $buildinputs"
|
||||||
|
fi
|
||||||
|
. $stdenv/setup
|
||||||
|
|
||||||
|
tar xvfj $src
|
||||||
|
cd Python-*
|
||||||
|
./configure --prefix=$out
|
||||||
|
|
||||||
|
make
|
||||||
|
make install
|
||||||
|
|
||||||
tar xvfj $src || exit 1
|
|
||||||
cd Python-* || exit 1
|
|
||||||
./configure --prefix=$out || exit 1
|
|
||||||
make || exit 1
|
|
||||||
make install || exit 1
|
|
||||||
|
@ -1,10 +1,15 @@
|
|||||||
{stdenv, fetchurl}: derivation {
|
{stdenv, fetchurl, zlib ? null, zlibSupport ? true}:
|
||||||
|
|
||||||
|
assert zlibSupport -> zlib != null;
|
||||||
|
|
||||||
|
derivation {
|
||||||
name = "python-2.3.3";
|
name = "python-2.3.3";
|
||||||
system = stdenv.system;
|
system = stdenv.system;
|
||||||
builder = ./builder.sh;
|
builder = ./builder.sh;
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = http://www.python.org/ftp/python/2.3.3/Python-2.3.3.tar.bz2;
|
url = http://www.python.org/ftp/python/2.3.3/Python-2.3.3.tar.bz2;
|
||||||
md5 = "70ada9f65742ab2c77a96bcd6dffd9b1";
|
md5 = "70ada9f65742ab2c77a96bcd6dffd9b1";
|
||||||
};
|
};
|
||||||
stdenv = stdenv;
|
zlib = if zlibSupport then zlib else null;
|
||||||
|
inherit stdenv zlibSupport;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user