* Unify the bzip2 builders.

svn path=/nixpkgs/trunk/; revision=6833
This commit is contained in:
Eelco Dolstra
2006-10-24 22:40:33 +00:00
parent 1080560215
commit 97a65f81b2
5 changed files with 18 additions and 56 deletions
+5 -6
View File
@@ -2,14 +2,13 @@
stdenv.mkDerivation {
name = "bzip2-1.0.3";
builder =
# !!! 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;
builder = ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/bzip2-1.0.3.tar.gz;
md5 = "8a716bebecb6e647d2e8a29ea5d8447f";
};
sharedLibrary =
!stdenv.isDarwin && !(stdenv ? isDietLibC) && system != "i686-cygwin";
}