actually link to zlib

svn path=/nixpkgs/trunk/; revision=5931
This commit is contained in:
Armijn Hemel 2006-07-25 00:52:21 +00:00
parent f644035715
commit 46d7a1ac7f
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
source $stdenv/setup
configureFlags=""
configureFlags="--with-zlib=$zlib"
if test "$pythonSupport"; then
configureFlags="--with-python=$python $configureFlags"
fi

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation {
};
python = if pythonSupport then python else null;
inherit pythonSupport;
inherit pythonSupport zlib;
buildInputs = if pythonSupport then [python] else [];
propagatedBuildInputs = [zlib];

View File

@ -13,7 +13,7 @@ stdenv.mkDerivation {
};
python = if pythonSupport then python else null;
inherit pythonSupport;
inherit pythonSupport zlib;
buildInputs = if pythonSupport then [python] else [];
propagatedBuildInputs = [zlib];