forked from mirrors/nixpkgs
* Symlink gunzip, zcat.
svn path=/nixpkgs/trunk/; revision=6857
This commit is contained in:
parent
dcebef7f8e
commit
29f9225a9d
9
pkgs/tools/compression/gzip/builder.sh
Normal file
9
pkgs/tools/compression/gzip/builder.sh
Normal 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
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue