don't let bash depend on tar and gzip

svn path=/nixpkgs/trunk/; revision=1578
This commit is contained in:
Armijn Hemel 2004-10-19 11:50:04 +00:00
parent 9eeba2d479
commit d133b324c0
4 changed files with 2 additions and 3 deletions

Binary file not shown.

View File

@ -1,5 +1,4 @@
. $stdenv/setup
tar zxvf $src
mkdir $out
cp -a bash-2.05b/* $out
cp -a $src $out

View File

@ -3,5 +3,5 @@
stdenv.mkDerivation {
name = "bash-static-2.05b";
builder = ./builder.sh;
src = ./bash-2.05b-static.tar.gz;
src = ./bash;
}