diff options
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 3edaecd951..ecb1e69328 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -232,14 +232,14 @@ adding and extracting files to/from a tar archive.") (define-public gzip (package (name "gzip") - (version "1.10") + (version "1.11") (source (origin (method url-fetch) (uri (string-append "mirror://gnu/gzip/gzip-" version ".tar.xz")) (sha256 (base32 - "1h6p374d3j8d4cdfydzls021xa2yby8myc0h8d6m8bc7k6ncq9c4")))) + "01vrly90rvc98af6rcmrb3gwv1l6pylasvsdka23dffwizb9b6lv")))) (build-system gnu-build-system) (synopsis "General file (de)compression (using lzw)") (arguments @@ -260,15 +260,13 @@ adding and extracting files to/from a tar archive.") (string-append "#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN\n" "# define _IO_IN_BACKUP 0x100\n" "#endif\n\n" - "/* BSD stdio derived implementations"))) - #t)) + "/* BSD stdio derived implementations"))))) (add-after 'unpack 'use-absolute-name-of-gzip (lambda* (#:key outputs #:allow-other-keys) (substitute* "gunzip.in" (("exec gzip") (string-append "exec " (assoc-ref outputs "out") - "/bin/gzip"))) - #t))))) + "/bin/gzip")))))))) (description "GNU Gzip provides data compression and decompression utilities; the typical extension is \".gz\". Unlike the \"zip\" format, it compresses a single |