* Ugh, bzip2 should be autotooled...

svn path=/nixpkgs/trunk/; revision=5357
This commit is contained in:
Eelco Dolstra 2006-05-31 15:07:56 +00:00
parent 4a00c41986
commit 46a15b49a0
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1,4 @@
source $stdenv/setup
installFlags="PREFIX=$out"
genericBuild

View file

@ -5,6 +5,7 @@ stdenv.mkDerivation {
builder =
if stdenv.system == "powerpc-darwin" then ./builder-darwin.sh
else if stdenv.system == "i686-freebsd" then ./builder-freebsd.sh
else if stdenv.system == "i686-cygwin" then ./builder-cygwin.sh
else ./builder.sh;
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/bzip2-1.0.3.tar.gz;