about summary refs log tree commit diff
path: root/pkgs/tools/compression/gzip/builder.sh
blob: ea9ff646de8bc648a99f50d3dc42de1abbb7d988 (plain) (blame)
1
2
3
4
5
6
7
8
9
source $stdenv/setup.sh

postInstall=postInstall
postInstall() {
    ln -sf gzip $out/bin/gunzip
    ln -sf gzip $out/bin/zcat
}

genericBuilder