move gzip and gunzip in a seperate directory to avoid having the hash encoded in the binary name

svn path=/nixpkgs/trunk/; revision=1580
This commit is contained in:
Armijn Hemel 2004-10-19 14:48:16 +00:00
parent 042afeeed8
commit a0909d11c6
4 changed files with 2 additions and 4 deletions

View File

@ -1,5 +1,5 @@
. $stdenv/setup
mkdir $out
cp -a $src1 $out
cp -a $src2 $out
cp -a gzip $out/bin
cp -a gunzip $out/bin

View File

@ -3,6 +3,4 @@
stdenv.mkDerivation {
name = "gzip-static-1.3.3";
builder = ./builder.sh;
src1 = ./gzip;
src2 = ./gunzip;
}