* bzip2 with dietlibc.

svn path=/nixpkgs/trunk/; revision=6767
This commit is contained in:
Eelco Dolstra
2006-10-18 15:49:47 +00:00
parent efc2b12da5
commit f3619824a9
6 changed files with 5 additions and 38 deletions
+2 -1
View File
@@ -3,7 +3,8 @@
stdenv.mkDerivation {
name = "bzip2-1.0.3";
builder =
if stdenv.isDarwin then ./builder-darwin.sh
# !!! Merge these builders.
if stdenv.isDarwin || stdenv ? isDietLibC then ./builder-static.sh
else if stdenv.system == "i686-freebsd" then ./builder-freebsd.sh
else if stdenv.system == "i686-cygwin" then ./builder-cygwin.sh
else ./builder.sh;