3
0
Fork 0
forked from mirrors/nixpkgs

* Symlink gunzip, zcat.

svn path=/nixpkgs/trunk/; revision=6857
This commit is contained in:
Eelco Dolstra 2006-10-26 14:35:57 +00:00
parent dcebef7f8e
commit 29f9225a9d
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1,9 @@
source $stdenv/setup.sh
postInstall=postInstall
postInstall() {
ln -sf gzip $out/bin/gunzip
ln -sf gzip $out/bin/zcat
}
genericBuilder

View file

@ -6,4 +6,5 @@ stdenv.mkDerivation {
url = http://nix.cs.uu.nl/dist/tarballs/gzip-1.3.3.tar.gz;
md5 = "52eaf713673507d21f7abefee98ba662";
};
builder = ./builder.sh;
}