e80145b909
Fixes the incorrect patches introduced in
9786a98261
.
44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
{stdenv, fetchurl}:
|
|
|
|
stdenv.mkDerivation (rec {
|
|
name = "gzip-1.4";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnu/gzip/${name}.tar.gz";
|
|
sha256 = "1vhiyzls60fws48scw48wvwn8mpv1f4yhcsnafys239qvb9wyrni";
|
|
};
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
homepage = http://www.gnu.org/software/gzip/;
|
|
description = "Gzip, the GNU zip compression program";
|
|
|
|
longDescription =
|
|
''gzip (GNU zip) is a popular data compression program written by
|
|
Jean-loup Gailly for the GNU project. Mark Adler wrote the
|
|
decompression part.
|
|
|
|
We developed this program as a replacement for compress because of
|
|
the Unisys and IBM patents covering the LZW algorithm used by
|
|
compress. These patents made it impossible for us to use compress,
|
|
and we needed a replacement. The superior compression ratio of gzip
|
|
is just a bonus.
|
|
'';
|
|
|
|
license = "GPLv3+";
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
|
};
|
|
}
|
|
|
|
//
|
|
|
|
{
|
|
crossAttrs =
|
|
# XXX: Temporary workaround to allow GNU/Hurd builds with newer libcs.
|
|
(stdenv.lib.optionalAttrs (stdenv.cross.config == "i586-pc-gnu") {
|
|
patches = [ ./gets-undeclared.patch ];
|
|
});
|
|
})
|