gnu: emacs-sly: Update to 20200228.
[jackhill/guix/guix.git] / gnu / packages / compression.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2014, 2015, 2018 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
6 ;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
7 ;;; Copyright © 2015, 2016, 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
8 ;;; Copyright © 2015, 2017, 2018 Leo Famulari <leo@famulari.name>
9 ;;; Copyright © 2015 Jeff Mickey <j@codemac.net>
10 ;;; Copyright © 2015, 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
11 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
12 ;;; Copyright © 2016 Danny Milosavljevic <dannym@scratchpost.org>
13 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
14 ;;; Copyright © 2016 David Craven <david@craven.ch>
15 ;;; Copyright © 2016, 2019 Kei Kebreau <kkebreau@posteo.net>
16 ;;; Copyright © 2016, 2018, 2019 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 ng0 <ng0@n0.is>
18 ;;; Copyright © 2017 Manolis Fragkiskos Ragkousis <manolis837@gmail.com>
19 ;;; Copyright © 2017 Theodoros Foradis <theodoros@foradis.org>
20 ;;; Copyright © 2017 Stefan Reichör <stefan@xsteve.at>
21 ;;; Copyright © 2017 Petter <petter@mykolab.ch>
22 ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu>
23 ;;; Copyright © 2018 Rutger Helling <rhelling@mykolab.com>
24 ;;; Copyright © 2018 Joshua Sierles, Nextjournal <joshua@nextjournal.com>
25 ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
26 ;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
27 ;;; Copyright © 2019 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
28 ;;; Copyright © 2020 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
29 ;;;
30 ;;; This file is part of GNU Guix.
31 ;;;
32 ;;; GNU Guix is free software; you can redistribute it and/or modify it
33 ;;; under the terms of the GNU General Public License as published by
34 ;;; the Free Software Foundation; either version 3 of the License, or (at
35 ;;; your option) any later version.
36 ;;;
37 ;;; GNU Guix is distributed in the hope that it will be useful, but
38 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
39 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 ;;; GNU General Public License for more details.
41 ;;;
42 ;;; You should have received a copy of the GNU General Public License
43 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
44
45 (define-module (gnu packages compression)
46 #:use-module ((guix licenses) #:prefix license:)
47 #:use-module (guix utils)
48 #:use-module (guix packages)
49 #:use-module (guix download)
50 #:use-module (guix git-download)
51 #:use-module (guix build-system cmake)
52 #:use-module (guix build-system gnu)
53 #:use-module (guix build-system trivial)
54 #:use-module (gnu packages)
55 #:use-module (gnu packages assembly)
56 #:use-module (gnu packages autotools)
57 #:use-module (gnu packages backup)
58 #:use-module (gnu packages base)
59 #:use-module (gnu packages boost)
60 #:use-module (gnu packages check)
61 #:use-module (gnu packages curl)
62 #:use-module (gnu packages documentation)
63 #:use-module (gnu packages file)
64 #:use-module (gnu packages maths)
65 #:use-module (gnu packages perl)
66 #:use-module (gnu packages pkg-config)
67 #:use-module (gnu packages python)
68 #:use-module (gnu packages qt)
69 #:use-module (gnu packages tls)
70 #:use-module (gnu packages valgrind)
71 #:use-module (ice-9 match)
72 #:use-module ((srfi srfi-1) #:select (last)))
73
74 (define-public zlib
75 (package
76 (name "zlib")
77 (version "1.2.11")
78 (source
79 (origin
80 (method url-fetch)
81 (uri (list (string-append "http://zlib.net/zlib-"
82 version ".tar.gz")
83 (string-append "mirror://sourceforge/libpng/zlib/"
84 version "/zlib-" version ".tar.gz")))
85 (sha256
86 (base32
87 "18dighcs333gsvajvvgqp8l4cx7h1x7yx9gd5xacnk80spyykrf3"))))
88 (build-system gnu-build-system)
89 (outputs '("out" "static"))
90 (arguments
91 `(#:phases
92 (modify-phases %standard-phases
93 (replace 'configure
94 (lambda* (#:key outputs #:allow-other-keys)
95 ;; Zlib's home-made `configure' fails when passed
96 ;; extra flags like `--enable-fast-install', so we need to
97 ;; invoke it with just what it understand.
98 (let ((out (assoc-ref outputs "out")))
99 ;; 'configure' doesn't understand '--host'.
100 ,@(if (%current-target-system)
101 `((setenv "CHOST" ,(%current-target-system)))
102 '())
103 (invoke "./configure"
104 (string-append "--prefix=" out)))))
105 (add-after 'install 'move-static-library
106 (lambda* (#:key outputs #:allow-other-keys)
107 (let ((out (assoc-ref outputs "out"))
108 (static (assoc-ref outputs "static")))
109 (with-directory-excursion (string-append out "/lib")
110 (install-file "libz.a" (string-append static "/lib"))
111 (delete-file "libz.a")
112 #t)))))))
113 (home-page "https://zlib.net/")
114 (synopsis "Compression library")
115 (description
116 "zlib is designed to be a free, general-purpose, legally unencumbered --
117 that is, not covered by any patents -- lossless data-compression library for
118 use on virtually any computer hardware and operating system. The zlib data
119 format is itself portable across platforms. Unlike the LZW compression method
120 used in Unix compress(1) and in the GIF image format, the compression method
121 currently used in zlib essentially never expands the data. (LZW can double or
122 triple the file size in extreme cases.) zlib's memory footprint is also
123 independent of the input data and can be reduced, if necessary, at some cost
124 in compression.")
125 (license license:zlib)))
126
127 (define-public minizip
128 (package
129 (name "minizip")
130 (version (package-version zlib))
131 (source (package-source zlib))
132 (build-system gnu-build-system)
133 (arguments
134 `(#:phases
135 (modify-phases %standard-phases
136 (add-after 'unpack 'enter-source
137 (lambda _ (chdir "contrib/minizip") #t))
138 (add-after 'install 'remove-crypt-h
139 (lambda* (#:key outputs #:allow-other-keys)
140 ;; Remove <minizip/crypt.h> because it interferes with libc's
141 ;; <crypt.h> given that 'minizip.pc' says "-I…/include/minizip".
142 ;; Fedora does the same:
143 ;; <https://src.fedoraproject.org/rpms/zlib/c/4d2785ec3116947872f6f32dc4104e6d36d8a7a4?branch=master>.
144 (let ((out (assoc-ref outputs "out")))
145 (delete-file (string-append out "/include/minizip/crypt.h"))
146 #t))))))
147 (native-inputs
148 `(("autoconf" ,autoconf)
149 ("automake" ,automake)
150 ("libtool" ,libtool)))
151 (propagated-inputs `(("zlib" ,zlib)))
152 (home-page (package-home-page zlib))
153 (synopsis "Zip Compression library")
154 (description
155 "Minizip is a minimalistic library that supports compressing,
156 extracting and viewing ZIP archives. This version is extracted from
157 the @code{zlib} source.")
158 (license (package-license zlib))))
159
160 (define-public fastjar
161 (package
162 (name "fastjar")
163 (version "0.98")
164 (source (origin
165 (method url-fetch)
166 (uri (string-append "mirror://savannah/fastjar/fastjar-"
167 version ".tar.gz"))
168 (sha256
169 (base32
170 "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
171 (build-system gnu-build-system)
172 (inputs `(("zlib" ,zlib)))
173 (home-page "https://savannah.nongnu.org/projects/fastjar")
174 (synopsis "Replacement for Sun's 'jar' utility")
175 (description
176 "FastJar is an attempt to create a much faster replacement for Sun's
177 @code{jar} utility. Instead of being written in Java, FastJar is written in C.")
178 (license license:gpl2+)))
179
180 (define-public libtar
181 (package
182 (name "libtar")
183 (version "1.2.20")
184 (source (origin
185 (method url-fetch)
186 (uri (list
187 (string-append
188 "ftp://ftp.feep.net/pub/software/libtar/libtar-"
189 version ".tar.gz")
190 (string-append
191 "mirror://debian/pool/main/libt/libtar/libtar_"
192 version ".orig.tar.gz")))
193 (sha256
194 (base32
195 "02cihzl77ia0dcz7z2cga2412vyhhs5pa2355q4wpwbyga2lrwjh"))
196 (patches (search-patches "libtar-CVE-2013-4420.patch"))))
197 (build-system gnu-build-system)
198 (arguments `(#:tests? #f)) ; no "check" target
199 (native-inputs
200 `(("autoconf" ,autoconf)
201 ("automake" ,automake)
202 ("libtool" ,libtool)))
203 (inputs
204 `(("zlib" ,zlib)))
205 (synopsis "C library for manipulating POSIX tar files")
206 (description
207 "libtar is a C library for manipulating POSIX tar files. It handles
208 adding and extracting files to/from a tar archive.")
209 (home-page "https://repo.or.cz/libtar.git")
210 (license license:bsd-3)))
211
212 (define-public gzip
213 (package
214 (name "gzip")
215 (version "1.10")
216 (source (origin
217 (method url-fetch)
218 (uri (string-append "mirror://gnu/gzip/gzip-"
219 version ".tar.xz"))
220 (sha256
221 (base32
222 "1h6p374d3j8d4cdfydzls021xa2yby8myc0h8d6m8bc7k6ncq9c4"))))
223 (build-system gnu-build-system)
224 (synopsis "General file (de)compression (using lzw)")
225 (arguments
226 ;; FIXME: The test suite wants `less', and optionally Perl.
227 '(#:tests? #f
228 #:phases
229 (modify-phases %standard-phases
230 (add-after 'unpack 'patch-for-glibc-2.28
231 (lambda _
232 ;; Adjust the bundled gnulib to work with glibc 2.28. See e.g.
233 ;; "m4-gnulib-libio.patch". This is a phase rather than patch
234 ;; or snippet to work around <https://bugs.gnu.org/32347>.
235 (substitute* (find-files "lib" "\\.c$")
236 (("#if defined _IO_ftrylockfile")
237 "#if defined _IO_EOF_SEEN"))
238 (substitute* "lib/stdio-impl.h"
239 (("^/\\* BSD stdio derived implementations")
240 (string-append "#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN\n"
241 "# define _IO_IN_BACKUP 0x100\n"
242 "#endif\n\n"
243 "/* BSD stdio derived implementations")))
244 #t))
245 (add-after 'unpack 'use-absolute-name-of-gzip
246 (lambda* (#:key outputs #:allow-other-keys)
247 (substitute* "gunzip.in"
248 (("exec gzip")
249 (string-append "exec " (assoc-ref outputs "out")
250 "/bin/gzip")))
251 #t)))))
252 (description
253 "GNU Gzip provides data compression and decompression utilities; the
254 typical extension is \".gz\". Unlike the \"zip\" format, it compresses a single
255 file; as a result, it is often used in conjunction with \"tar\", resulting in
256 \".tar.gz\" or \".tgz\", etc.")
257 (license license:gpl3+)
258 (home-page "https://www.gnu.org/software/gzip/")))
259
260 (define-public bzip2
261 (package
262 (name "bzip2")
263 (version "1.0.6")
264 (source (origin
265 (method url-fetch)
266 ;; XXX The bzip.org domain was allowed to expire.
267 (uri (string-append "https://web.archive.org/web/20180624184806/"
268 "http://www.bzip.org/"
269 version "/bzip2-" version ".tar.gz"))
270 (sha256
271 (base32
272 "1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152"))))
273 (build-system gnu-build-system)
274 (arguments
275 `(#:modules ((guix build gnu-build-system)
276 (guix build utils)
277 (ice-9 ftw)
278 (srfi srfi-1))
279 #:phases
280 (modify-phases %standard-phases
281 (replace 'configure
282 (lambda* (#:key target #:allow-other-keys)
283 (when ,(%current-target-system)
284 ;; Cross-compilation: use the cross tools.
285 (substitute* (find-files "." "Makefile")
286 (("CC=.*$")
287 (string-append "CC = " target "-gcc\n"))
288 (("AR=.*$")
289 (string-append "AR = " target "-ar\n"))
290 (("RANLIB=.*$")
291 (string-append "RANLIB = " target "-ranlib\n"))
292 (("^all:(.*)test" _ prerequisites)
293 ;; Remove 'all' -> 'test' dependency.
294 (string-append "all:" prerequisites "\n"))))
295 #t))
296 (add-before 'build 'build-shared-lib
297 (lambda* (#:key inputs #:allow-other-keys)
298 (patch-makefile-SHELL "Makefile-libbz2_so")
299 (invoke "make" "-f" "Makefile-libbz2_so")))
300 (add-after 'install 'install-shared-lib
301 (lambda* (#:key outputs #:allow-other-keys)
302 ;; The Makefile above does not have an 'install' target, nor does
303 ;; it create all the (un)versioned symlinks, so we handle it here.
304 (let* ((out (assoc-ref outputs "out"))
305 (libdir (string-append out "/lib"))
306 (soname "libbz2.so")
307 ;; Locate the built library (e.g. "libbz2.so.1.0.6").
308 (lib (car (scandir "."
309 (lambda (file)
310 (and (string-prefix? soname file)
311 (eq? 'regular
312 (stat:type (lstat file))))))))
313 (soversion (string-drop lib (+ 1 (string-length soname)))))
314 (install-file lib libdir)
315 (with-directory-excursion libdir
316 ;; Create symlinks libbz2.so.1 -> libbz2.so.1.0, etc.
317 (let loop ((base soname)
318 (numbers (string-split soversion #\.)))
319 (unless (null? numbers)
320 (let ((so-file (string-append base "." (car numbers))))
321 (symlink so-file base)
322 (loop so-file (cdr numbers))))))
323 #t)))
324 (add-after 'install-shared-lib 'move-static-lib
325 (lambda* (#:key outputs #:allow-other-keys)
326 (let ((out (assoc-ref outputs "out"))
327 (static (assoc-ref outputs "static")))
328 (with-directory-excursion (string-append out "/lib")
329 (install-file "libbz2.a" (string-append static "/lib"))
330 (delete-file "libbz2.a")
331 #t))))
332 (add-after 'install-shared-lib 'patch-scripts
333 (lambda* (#:key outputs inputs #:allow-other-keys)
334 (let* ((out (assoc-ref outputs "out")))
335 (substitute* (string-append out "/bin/bzdiff")
336 (("/bin/rm") "rm")))
337 #t)))
338
339 #:make-flags (list (string-append "PREFIX="
340 (assoc-ref %outputs "out")))
341
342 ;; Don't attempt to run the tests when cross-compiling.
343 ,@(if (%current-target-system)
344 '(#:tests? #f)
345 '())))
346 (outputs '("out" "static"))
347 (synopsis "High-quality data compression program")
348 (description
349 "bzip2 is a freely available, patent free (see below), high-quality data
350 compressor. It typically compresses files to within 10% to 15% of the best
351 available techniques (the PPM family of statistical compressors), whilst
352 being around twice as fast at compression and six times faster at
353 decompression.")
354 (license (license:non-copyleft "file://LICENSE"
355 "See LICENSE in the distribution."))
356 (home-page "https://web.archive.org/web/20180801004107/http://www.bzip.org/")))
357
358 (define-public lbzip2
359 (package
360 (name "lbzip2")
361 (version "2.5")
362 (source (origin
363 (method url-fetch)
364 (uri (string-append "http://archive.lbzip2.org/lbzip2-"
365 version ".tar.gz"))
366 (sha256
367 (base32
368 "1sahaqc5bw4i0iyri05syfza4ncf5cml89an033fspn97klmxis6"))
369 (modules '((guix build utils)))
370 (snippet
371 '(begin
372 (substitute* (find-files "lib" "\\.c$")
373 (("#if defined _IO_ftrylockfile")
374 "#if defined _IO_EOF_SEEN"))
375 (substitute* "lib/stdio-impl.h"
376 (("^/\\* BSD stdio derived implementations")
377 (string-append "#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN\n"
378 "# define _IO_IN_BACKUP 0x100\n"
379 "#endif\n\n"
380 "/* BSD stdio derived implementations")))
381 #t))))
382 (build-system gnu-build-system)
383 (synopsis "Parallel bzip2 compression utility")
384 (description
385 "lbzip2 is a multi-threaded compression utility with support for the
386 bzip2 compressed file format. lbzip2 can process standard bz2 files in
387 parallel. It uses POSIX threading model (pthreads), which allows it to take
388 full advantage of symmetric multiprocessing (SMP) systems. It has been proven
389 to scale linearly, even to over one hundred processor cores. lbzip2 is fully
390 compatible with bzip2 – both at file format and command line level.")
391 (home-page "http://www.lbzip2.org/")
392 (license license:gpl3+)))
393
394 (define-public pbzip2
395 (package
396 (name "pbzip2")
397 (version "1.1.13")
398 (source (origin
399 (method url-fetch)
400 (uri (string-append "https://launchpad.net/pbzip2/"
401 (version-major+minor version) "/" version
402 "/+download/" name "-" version ".tar.gz"))
403 (sha256
404 (base32
405 "1rnvgcdixjzbrmcr1nv9b6ccrjfrhryaj7jwz28yxxv6lam3xlcg"))))
406 (build-system gnu-build-system)
407 (inputs
408 `(("bzip2" ,bzip2)))
409 (arguments
410 `(#:tests? #f ; no tests
411 #:phases (modify-phases %standard-phases
412 (delete 'configure)) ; no configure script
413 #:make-flags (list (string-append "PREFIX=" %output))))
414 (home-page (string-append "https://web.archive.org/web/20180412020219/"
415 "http://compression.ca/pbzip2/"))
416 (synopsis "Parallel bzip2 implementation")
417 (description
418 "Pbzip2 is a parallel implementation of the bzip2 block-sorting file
419 compressor that uses pthreads and achieves near-linear speedup on SMP machines.
420 The output of this version is fully compatible with bzip2 v1.0.2 (i.e. anything
421 compressed with pbzip2 can be decompressed with bzip2).")
422 (license (license:non-copyleft "file://COPYING"
423 "See COPYING in the distribution."))))
424
425 (define-public xz
426 (package
427 (name "xz")
428 (version "5.2.4")
429 (source (origin
430 (method url-fetch)
431 (uri (list (string-append "http://tukaani.org/xz/xz-" version
432 ".tar.gz")
433 (string-append "http://multiprecision.org/guix/xz-"
434 version ".tar.gz")))
435 (sha256
436 (base32
437 "0ibi2zsfaz6l756spjwc5rayf4ckgc9hwmy8qinppcyk4svz64mm"))))
438 (build-system gnu-build-system)
439 (arguments
440 `(#:phases
441 (modify-phases %standard-phases
442 (add-after 'install 'move-static-lib
443 (lambda* (#:key outputs #:allow-other-keys)
444 (let ((out (assoc-ref outputs "out"))
445 (static (assoc-ref outputs "static")))
446 (mkdir-p (string-append static "/lib"))
447 (rename-file (string-append out "/lib/liblzma.a")
448 (string-append static "/lib/liblzma.a"))
449 ;; Remove reference to the static library from the .la file
450 ;; so Libtool does the right thing when both the shared and
451 ;; static library is available.
452 (substitute* (string-append out "/lib/liblzma.la")
453 (("^old_library='liblzma.a'") "old_library=''"))
454 #t))))))
455 (outputs '("out" "static"))
456 (synopsis "General-purpose data compression")
457 (description
458 "XZ Utils is free general-purpose data compression software with high
459 compression ratio. XZ Utils were written for POSIX-like systems, but also
460 work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.
461
462 The core of the XZ Utils compression code is based on LZMA SDK, but it has
463 been modified quite a lot to be suitable for XZ Utils. The primary
464 compression algorithm is currently LZMA2, which is used inside the .xz
465 container format. With typical files, XZ Utils create 30 % smaller output
466 than gzip and 15 % smaller output than bzip2.")
467 (license (list license:gpl2+ license:lgpl2.1+)) ; bits of both
468 (home-page "https://tukaani.org/xz/")))
469
470 (define-public lhasa
471 (package
472 (name "lhasa")
473 (version "0.3.1")
474 (source (origin
475 (method url-fetch)
476 (uri (string-append
477 "https://github.com/fragglet/lhasa/releases/download/v"
478 version "/lhasa-" version ".tar.gz"))
479 (sha256
480 (base32
481 "092zi9av18ma20c6h9448k0bapvx2plnp292741dvfd9hmgqxc1z"))))
482 (build-system gnu-build-system)
483 (arguments
484 '(#:phases
485 (modify-phases %standard-phases
486 (add-before 'check 'set-up-test-environment
487 (lambda* (#:key inputs #:allow-other-keys)
488 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
489 "/share/zoneinfo"))
490 #t)))))
491 (native-inputs
492 `(("tzdata" ,tzdata)))
493 (home-page "https://fragglet.github.com/lhasa/")
494 (synopsis "LHA archive decompressor")
495 (description "Lhasa is a replacement for the Unix LHA tool, for
496 decompressing .lzh (LHA / LHarc) and .lzs (LArc) archives. The backend for the
497 tool is a library, so that it can be reused for other purposes. Lhasa aims to
498 be compatible with as many types of lzh/lzs archives as possible. It also aims
499 to generate the same output as the (non-free) Unix LHA tool, so that it will
500 act as a free drop-in replacement.")
501 (license license:isc)))
502
503 (define-public lzo
504 (package
505 (name "lzo")
506 (version "2.10")
507 (source
508 (origin
509 (method url-fetch)
510 (uri (string-append "http://www.oberhumer.com/opensource/lzo/download/lzo-"
511 version ".tar.gz"))
512 (sha256
513 (base32
514 "0wm04519pd3g8hqpjqhfr72q8qmbiwqaxcs3cndny9h86aa95y60"))))
515 (build-system gnu-build-system)
516 (arguments '(#:configure-flags '("--enable-shared")))
517 (home-page "http://www.oberhumer.com/opensource/lzo")
518 (synopsis
519 "Data compression library suitable for real-time data de-/compression")
520 (description
521 "LZO is a data compression library which is suitable for data
522 de-/compression in real-time. This means it favours speed over
523 compression ratio.
524
525 LZO is written in ANSI C. Both the source code and the compressed data
526 format are designed to be portable across platforms.")
527 (license license:gpl2+)))
528
529 (define-public lzop
530 (package
531 (name "lzop")
532 (version "1.04")
533 (source
534 (origin
535 (method url-fetch)
536 (uri (string-append "http://www.lzop.org/download/lzop-"
537 version ".tar.gz"))
538 (sha256
539 (base32
540 "0h9gb8q7y54m9mvy3jvsmxf21yx8fc3ylzh418hgbbv0i8mbcwky"))))
541 (build-system gnu-build-system)
542 (inputs `(("lzo" ,lzo)))
543 (home-page "https://www.lzop.org/")
544 (synopsis "Compress or expand files")
545 (description
546 "Lzop is a file compressor which is very similar to gzip. Lzop uses the
547 LZO data compression library for compression services, and its main advantages
548 over gzip are much higher compression and decompression speed (at the cost of
549 some compression ratio).")
550 (license license:gpl2+)))
551
552 (define-public lzip
553 (package
554 (name "lzip")
555 (version "1.21")
556 (source (origin
557 (method url-fetch)
558 (uri (string-append "mirror://savannah/lzip/lzip-"
559 version ".tar.gz"))
560 (sha256
561 (base32
562 "12qdcw5k1cx77brv9yxi1h4dzwibhfmdpigrj43nfk8nscwm12z4"))))
563 (build-system gnu-build-system)
564 (home-page "https://www.nongnu.org/lzip/lzip.html")
565 (synopsis "Lossless data compressor based on the LZMA algorithm")
566 (description
567 "Lzip is a lossless data compressor with a user interface similar to the
568 one of gzip or bzip2. Lzip decompresses almost as fast as gzip and compresses
569 more than bzip2, which makes it well-suited for software distribution and data
570 archiving. Lzip is a clean implementation of the LZMA algorithm.")
571 (license license:gpl3+)))
572
573 (define-public lziprecover
574 (package
575 (name "lziprecover")
576 (version "1.21")
577 (source (origin
578 (method url-fetch)
579 (uri (string-append "mirror://savannah/lzip/lziprecover/"
580 "lziprecover-" version ".tar.gz"))
581 (sha256
582 (base32
583 "094w2z8fz41yaq0gkyr61cl7pb1d7kchpl5dka7rvm3qvbb7ncd2"))))
584 (build-system gnu-build-system)
585 (home-page "https://www.nongnu.org/lzip/lziprecover.html")
586 (synopsis "Recover and decompress data from damaged lzip files")
587 (description
588 "Lziprecover is a data recovery tool and decompressor for files in the lzip
589 compressed data format (.lz). It can test the integrity of lzip files, extract
590 data from damaged ones, and repair most files with small errors (up to one
591 single-byte error per member) entirely.
592
593 Lziprecover is not a replacement for regular backups, but a last line of defence
594 when even the backups are corrupt. It can recover files by merging the good
595 parts of two or more damaged copies, such as can be easily produced by running
596 @command{ddrescue} on a failing device.
597
598 This package also includes @command{unzcrash}, a tool to test the robustness of
599 decompressors when faced with corrupted input.")
600 (license (list license:bsd-2 ; arg_parser.{cc,h}
601 license:gpl2+)))) ; everything else
602
603 (define-public sharutils
604 (package
605 (name "sharutils")
606 (version "4.15.2")
607 (source
608 (origin
609 (method url-fetch)
610 (uri (string-append "mirror://gnu/sharutils/sharutils-"
611 version ".tar.xz"))
612 (patches (search-patches "sharutils-CVE-2018-1000097.patch"))
613 (sha256
614 (base32
615 "16isapn8f39lnffc3dp4dan05b7x6mnc76v6q5nn8ysxvvvwy19b"))
616 (modules '((guix build utils)))
617 (snippet
618 '(begin
619 (substitute* (find-files "lib" "\\.c$")
620 (("#if defined _IO_ftrylockfile")
621 "#if defined _IO_EOF_SEEN"))
622 (substitute* "lib/stdio-impl.h"
623 (("^/\\* BSD stdio derived implementations")
624 (string-append "#if !defined _IO_IN_BACKUP && defined _IO_EOF_SEEN\n"
625 "# define _IO_IN_BACKUP 0x100\n"
626 "#endif\n\n"
627 "/* BSD stdio derived implementations")))
628 #t))))
629 (build-system gnu-build-system)
630 (inputs
631 `(("which" ,which)))
632 (arguments
633 `(#:phases
634 (modify-phases %standard-phases
635 (add-after 'patch-source-shebangs 'unpatch-source-shebang
636 ;; revert the patch-shebang phase on a script which is
637 ;; in fact test data
638 (lambda _
639 (substitute* "tests/shar-1.ok"
640 (((which "sh")) "/bin/sh"))
641 #t)))))
642 (home-page "https://www.gnu.org/software/sharutils/")
643 (synopsis "Archives in shell scripts, uuencode/uudecode")
644 (description
645 "GNU sharutils is a package for creating and manipulating shell
646 archives that can be readily emailed. A shell archive is a file that can be
647 processed by a Bourne-type shell to unpack the original collection of files.
648 This package is mostly for compatibility and historical interest.")
649 (license license:gpl3+)))
650
651 (define-public sfarklib
652 (package
653 (name "sfarklib")
654 (version "2.24")
655 (source (origin
656 (method git-fetch)
657 (uri (git-reference
658 (url "https://github.com/raboof/sfArkLib.git")
659 (commit version)))
660 (file-name (git-file-name name version))
661 (sha256
662 (base32
663 "0jrxy24gak7q5ml06p5jjgzk9i5r2mkfjk4ycirkp4kg7k5a237w"))))
664 (build-system gnu-build-system)
665 (arguments
666 `(#:tests? #f ;no "check" target
667 #:phases
668 (modify-phases %standard-phases
669 (replace 'configure
670 (lambda* (#:key outputs #:allow-other-keys)
671 (substitute* "Makefile"
672 (("/usr/local") (assoc-ref outputs "out")))
673 #t)))))
674 (inputs
675 `(("zlib" ,zlib)))
676 (home-page "https://github.com/raboof/sfArkLib")
677 (synopsis "Library for SoundFont decompression")
678 (description
679 "SfArkLib is a C++ library for decompressing SoundFont files compressed
680 with the sfArk algorithm.")
681 (license license:gpl3+)))
682
683 (define-public sfarkxtc
684 (let ((commit "13cd6f93725a90d91ec5ea75babf1dbd694ac463")
685 (revision "1"))
686 (package
687 (name "sfarkxtc")
688 (version (git-version "0" revision commit))
689 (source (origin
690 ;; There are no release tarballs, so we just fetch the latest
691 ;; commit at this time.
692 (method git-fetch)
693 (uri (git-reference
694 (url "https://github.com/raboof/sfarkxtc.git")
695 (commit commit)))
696 (file-name (git-file-name name version))
697 (sha256
698 (base32
699 "1mb1jyk1m11l1gppd9hmql9cyp55sdf7jk5rbc7acky1z4k4mv19"))))
700 (build-system gnu-build-system)
701 (arguments
702 `(#:tests? #f ;no "check" target
703 #:phases
704 (modify-phases %standard-phases
705 (replace 'configure
706 (lambda* (#:key outputs #:allow-other-keys)
707 (substitute* "Makefile"
708 (("/usr/local") (assoc-ref outputs "out")))
709 #t)))))
710 (inputs
711 `(("zlib" ,zlib)
712 ("sfarklib" ,sfarklib)))
713 (home-page "https://github.com/raboof/sfarkxtc")
714 (synopsis "Basic sfArk decompressor")
715 (description "SfArk extractor converts SoundFonts in the compressed legacy
716 sfArk file format to the uncompressed sf2 format.")
717 (license license:gpl3+))))
718
719 (define-public libmspack
720 (package
721 (name "libmspack")
722 (home-page "https://cabextract.org.uk/libmspack/")
723 (version "0.10.1")
724 (source
725 (origin
726 (method url-fetch)
727 (uri (string-append home-page name "-" version "alpha.tar.gz"))
728 (sha256
729 (base32 "13janaqsvm7aqc4agjgd4819pbgqv50j88bh5kci1z70wvg65j5s"))))
730 (build-system gnu-build-system)
731 (arguments
732 `(#:configure-flags '("--disable-static")))
733 (synopsis "Compression tools for some formats used by Microsoft")
734 (description
735 "The purpose of libmspack is to provide both compression and
736 decompression of some loosely related file formats used by Microsoft.")
737 (license license:lgpl2.1+)))
738
739 (define-public lz4
740 (package
741 (name "lz4")
742 (version "1.9.2")
743 (source
744 (origin
745 (method git-fetch)
746 (uri (git-reference (url "https://github.com/lz4/lz4")
747 (commit (string-append "v" version))))
748 (sha256
749 (base32
750 "0lpaypmk70ag2ks3kf2dl4ac3ba40n5kc1ainkp9wfjawz76mh61"))
751 (file-name (git-file-name name version))))
752 (build-system gnu-build-system)
753 (native-inputs
754 `(;; For tests.
755 ("python" ,python)
756 ("valgrind" ,valgrind)))
757 (arguments
758 `(#:test-target "test"
759 #:make-flags (list "CC=gcc"
760 (string-append "prefix=" (assoc-ref %outputs "out")))
761 #:phases (modify-phases %standard-phases
762 (delete 'configure) ;no configure script
763 (add-before 'check 'disable-broken-test
764 (lambda _
765 ;; XXX: test_install.sh fails when prefix is a subdirectory.
766 (substitute* "tests/Makefile"
767 (("^test: (.*) test-install" _ targets)
768 (string-append "test: " targets)))
769 #t)))))
770 (home-page "https://www.lz4.org")
771 (synopsis "Compression algorithm focused on speed")
772 (description "LZ4 is a lossless compression algorithm, providing
773 compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also features an
774 extremely fast decoder, with speed in multiple GB/s per core (0.71 Bytes/cycle).
775 A high compression derivative, called LZ4_HC, is also provided. It trades CPU
776 time for compression ratio.")
777 ;; The libraries (lz4, lz4hc, and xxhash) are BSD licenced. The command
778 ;; line interface programs (lz4, fullbench, fuzzer, datagen) are GPL2+.
779 (license (list license:bsd-2 license:gpl2+))))
780
781 (define-public squashfs-tools
782 (package
783 (name "squashfs-tools")
784 (version "4.4")
785 (source (origin
786 (method url-fetch)
787 (uri (string-append "mirror://sourceforge/squashfs/squashfs/"
788 "squashfs" version "/"
789 "squashfs" version ".tar.gz"))
790 (sha256
791 (base32
792 "0zmhvczscqz0mzh4b9m8m42asq14db0a6lc8clp5ljq5ybrv70d9"))))
793 (build-system gnu-build-system)
794 (arguments
795 '(#:tests? #f ; no check target
796 #:make-flags
797 (list "CC=gcc"
798 "XZ_SUPPORT=1"
799 "LZO_SUPPORT=1"
800 "LZ4_SUPPORT=1"
801 (string-append "INSTALL_DIR=" %output "/bin"))
802 #:phases
803 (modify-phases %standard-phases
804 (replace 'configure
805 (lambda _
806 (chdir "squashfs-tools")
807 #t)))))
808 (inputs
809 `(("lz4" ,lz4)
810 ("lzo" ,lzo)
811 ("xz" ,xz)
812 ("zlib" ,zlib)))
813 (home-page "https://github.com/plougher/squashfs-tools")
814 (synopsis "Tools to create and extract squashfs file systems")
815 (description
816 "Squashfs is a highly compressed read-only file system for Linux. It uses
817 zlib to compress files, inodes, and directories. All blocks are packed to
818 minimize the data overhead, and block sizes of between 4K and 1M are supported.
819 It is intended to be used for archival use, for live CDs, and for embedded
820 systems where low overhead is needed. This package allows you to create and
821 extract such file systems.")
822 (license license:gpl2+)))
823
824 (define-public pigz
825 (package
826 (name "pigz")
827 (version "2.4")
828 (source (origin
829 (method url-fetch)
830 (uri (string-append "http://zlib.net/pigz/"
831 name "-" version ".tar.gz"))
832 (sha256
833 (base32
834 "0wsgw5vwl23jrnpsvd8v3xcp5k4waw5mk0164fynjhkv58i1dy54"))))
835 (build-system gnu-build-system)
836 (arguments
837 `(#:phases
838 (modify-phases %standard-phases
839 (delete 'configure)
840 (replace 'install
841 (lambda* (#:key outputs #:allow-other-keys)
842 (let* ((out (assoc-ref outputs "out"))
843 (bin (string-append out "/bin"))
844 (man (string-append out "/share/man/man1")))
845 (install-file "pigz" bin)
846 (symlink "pigz" (string-append bin "/unpigz"))
847 (install-file "pigz.1" man)
848 #t))))
849 #:make-flags (list "CC=gcc")
850 #:test-target "tests"))
851 (inputs `(("zlib" ,zlib)))
852 (home-page "https://zlib.net/pigz/")
853 (synopsis "Parallel implementation of gzip")
854 (description
855 "This package provides a parallel implementation of gzip that exploits
856 multiple processors and multiple cores when compressing data.")
857
858 ;; Things under zopfli/ are under ASL2.0, but 4 files at the top-level,
859 ;; written by Mark Adler, are under another non-copyleft license.
860 (license license:asl2.0)))
861
862 (define-public pixz
863 (package
864 (name "pixz")
865 (version "1.0.6")
866 (source (origin
867 (method url-fetch)
868 (uri (string-append
869 "https://github.com/vasi/pixz/releases/download/v" version
870 "/pixz-" version ".tar.xz"))
871 (sha256
872 (base32
873 "1s3j7zw6j5zi3fhdxg287ndr3wf6swac7z21mqd1pyiln530gi82"))))
874 (build-system gnu-build-system)
875 (native-inputs
876 `(("pkg-config" ,pkg-config)
877 ("libarchive" ,libarchive)))
878 (home-page "https://github.com/vasi/pixz")
879 (synopsis "Parallel indexing implementation of LZMA")
880 (description
881 "The existing XZ Utils provide great compression in the .xz file format,
882 but they produce just one big block of compressed data. Pixz instead produces
883 a collection of smaller blocks which makes random access to the original data
884 possible and can compress in parallel. This is especially useful for large
885 tarballs.")
886 (license license:bsd-2)))
887
888 (define-public bsdiff
889 (package
890 (name "bsdiff")
891 (version "4.3")
892 (home-page "https://www.daemonology.net/bsdiff/")
893 (source (origin
894 (method url-fetch)
895 (uri (string-append home-page name "-" version ".tar.gz"))
896 (sha256
897 (base32
898 "0j2zm3z271x5aw63mwhr3vymzn45p2vvrlrpm9cz2nywna41b0hq"))))
899 (build-system gnu-build-system)
900 (arguments
901 `(#:make-flags (list "INSTALL=install" "CC=gcc"
902 (string-append "PREFIX=" (assoc-ref %outputs "out")))
903 #:phases (modify-phases %standard-phases
904 (delete 'configure)
905 (add-before 'build 'fix-Makefile
906 (lambda _
907 (substitute* "Makefile"
908 ;; Adjust syntax to make it compatible with GNU Make.
909 (("^\\.") "")
910 ;; Help install(1) create the target directory.
911 (("\\$\\{PREFIX\\}") "-D -t ${PREFIX}"))
912 #t)))
913 #:tests? #f)) ;no tests
914 (inputs
915 `(("bzip2" ,bzip2)))
916 (synopsis "Patch binary files")
917 (description
918 "@command{bsdiff} and @command{bspatch} are tools for building and
919 applying patches to binary files. By using suffix sorting (specifically
920 Larsson and Sadakane's @code{qsufsort}) and taking advantage of how
921 executable files change, bsdiff routinely produces binary patches 50-80%
922 smaller than those produced by @code{Xdelta}.")
923 (license license:bsd-2)))
924
925 (define-public cabextract
926 (package
927 (name "cabextract")
928 (home-page "https://cabextract.org.uk/")
929 (version "1.9.1")
930 (source (origin
931 (method url-fetch)
932 (uri (string-append home-page "cabextract-" version ".tar.gz"))
933 (sha256
934 (base32
935 "19qwhl2r8ip95q4vxzxg2kp4p125hjmc9762sns1dwwf7ikm7hmg"))
936 (modules '((guix build utils)))
937 (snippet
938 '(begin
939 ;; Delete bundled libmspack.
940 (delete-file-recursively "mspack")
941 #t))))
942 (build-system gnu-build-system)
943 (arguments
944 '(#:configure-flags '("--with-external-libmspack")
945 #:phases
946 (modify-phases %standard-phases
947 ;; cabextract needs some of libmspack's header files.
948 ;; These are located in the "mspack" directory of libmspack.
949 (add-before 'build 'unpack-libmspack
950 (lambda* (#:key inputs #:allow-other-keys)
951 (let ((dir-name "libmspack-src"))
952 (mkdir dir-name)
953 (invoke "tar" "-xvf" (assoc-ref inputs "libmspack-source")
954 "-C" dir-name "--strip-components" "1")
955 (rename-file (string-append dir-name "/mspack")
956 "mspack")
957 (delete-file-recursively dir-name)
958 #t))))))
959 (native-inputs
960 `(("pkg-config" ,pkg-config)))
961 (inputs
962 `(("libmspack" ,libmspack)
963 ("libmspack-source" ,(package-source libmspack))))
964 (synopsis "Tool to unpack Cabinet archives")
965 (description "Extracts files out of Microsoft Cabinet (.cab) archives")
966 ;; Some source files specify gpl2+, lgpl2+, however COPYING is gpl3.
967 (license license:gpl3+)))
968
969 (define-public xdelta
970 (package
971 (name "xdelta")
972 (version "3.1.0")
973 (source
974 (origin
975 (method git-fetch)
976 (uri (git-reference
977 (url "https://github.com/jmacd/xdelta.git")
978 (commit (string-append "v" version))))
979 (file-name (git-file-name name version))
980 (sha256
981 (base32
982 "09mmsalc7dwlvgrda56s2k927rpl3a5dzfa88aslkqcjnr790wjy"))
983 (snippet
984 ;; This file isn't freely distributable and has no effect on building.
985 '(begin
986 (delete-file "xdelta3/draft-korn-vcdiff.txt")
987 #t))))
988 (build-system gnu-build-system)
989 (native-inputs
990 `(("autoconf" ,autoconf)
991 ("automake" ,automake)))
992 (arguments
993 `(#:phases
994 (modify-phases %standard-phases
995 (add-after 'unpack 'enter-build-directory
996 (lambda _ (chdir "xdelta3") #t)))))
997 (home-page "http://xdelta.org")
998 (synopsis "Delta encoder for binary files")
999 (description "xdelta encodes only the differences between two binary files
1000 using the VCDIFF algorithm and patch file format described in RFC 3284. It can
1001 also be used to apply such patches. xdelta is similar to @command{diff} and
1002 @command{patch}, but is not limited to plain text and does not generate
1003 human-readable output.")
1004 (license license:asl2.0)))
1005
1006 (define-public lrzip
1007 (package
1008 (name "lrzip")
1009 (version "0.631")
1010 (source
1011 (origin
1012 (method url-fetch)
1013 (uri (string-append
1014 "http://ck.kolivas.org/apps/lrzip/lrzip-" version ".tar.bz2"))
1015 (sha256
1016 (base32
1017 "0mb449vmmwpkalq732jdyginvql57nxyd31sszb108yps1lf448d"))
1018 (patches (search-patches "lrzip-CVE-2017-8842.patch"))))
1019 (build-system gnu-build-system)
1020 (native-inputs
1021 `(;; nasm is only required when building for 32-bit x86 platforms
1022 ,@(if (string-prefix? "i686" (or (%current-target-system)
1023 (%current-system)))
1024 `(("nasm" ,nasm))
1025 '())
1026 ("perl" ,perl)))
1027 (inputs
1028 `(("bzip2" ,bzip2)
1029 ("lzo" ,lzo)
1030 ("zlib" ,zlib)))
1031 (home-page "http://ck.kolivas.org/apps/lrzip/")
1032 (synopsis "Large file compressor with a very high compression ratio")
1033 (description "lrzip is a compression utility that uses long-range
1034 redundancy reduction to improve the subsequent compression ratio of
1035 larger files. It can then further compress the result with the ZPAQ or
1036 LZMA algorithms for maximum compression, or LZO for maximum speed. This
1037 choice between size or speed allows for either better compression than
1038 even LZMA can provide, or a higher speed than gzip while compressing as
1039 well as bzip2.")
1040 (license (list license:gpl3+
1041 license:public-domain)))) ; most files in lzma/
1042
1043 (define-public snappy
1044 (package
1045 (name "snappy")
1046 (version "1.1.8")
1047 (source
1048 (origin
1049 (method git-fetch)
1050 (uri (git-reference
1051 (url "https://github.com/google/snappy.git")
1052 (commit version)))
1053 (file-name (git-file-name name version))
1054 (sha256
1055 (base32 "1j0kslq2dvxgkcxl1gakhvsa731yrcvcaipcp5k8k7ayicvkv9jv"))
1056 (patches (search-patches "snappy-add-O2-flag-in-CmakeLists.txt.patch"))))
1057 (build-system cmake-build-system)
1058 (arguments
1059 `(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
1060 (home-page "https://github.com/google/snappy")
1061 (synopsis "Fast compressor/decompressor")
1062 (description "Snappy is a compression/decompression library. It does not
1063 aim for maximum compression, or compatibility with any other compression library;
1064 instead, it aims for very high speeds and reasonable compression. For instance,
1065 compared to the fastest mode of zlib, Snappy is an order of magnitude faster
1066 for most inputs, but the resulting compressed files are anywhere from 20% to
1067 100% bigger.")
1068 (license license:asl2.0)))
1069
1070 (define-public p7zip
1071 (package
1072 (name "p7zip")
1073 (version "16.02")
1074 (source (origin
1075 (method url-fetch)
1076 (uri (string-append "mirror://sourceforge/" name "/" name "/"
1077 version "/" name "_" version
1078 "_src_all.tar.bz2"))
1079 (sha256
1080 (base32
1081 "07rlwbbgszq8i7m8jh3x6j2w2hc9a72dc7fmqawnqkwlwb00mcjy"))
1082 (modules '((guix build utils)))
1083 (snippet
1084 '(begin
1085 ;; Remove non-free source files
1086 (for-each delete-file
1087 (append
1088 (find-files "CPP/7zip/Compress" "Rar.*")
1089 (find-files "CPP/7zip/Crypto" "Rar.*")
1090 (find-files "DOC/unRarLicense.txt")
1091 (find-files "Utils/file_Codecs_Rar_so.py")))
1092 (delete-file-recursively "CPP/7zip/Archive/Rar")
1093 (delete-file-recursively "CPP/7zip/Compress/Rar")
1094 #t))
1095 (patches (search-patches "p7zip-CVE-2016-9296.patch"
1096 "p7zip-CVE-2017-17969.patch"
1097 "p7zip-remove-unused-code.patch"))))
1098 (build-system gnu-build-system)
1099 (arguments
1100 `(#:make-flags
1101 (list (string-append "DEST_HOME=" (assoc-ref %outputs "out")) "all3")
1102 #:phases
1103 (modify-phases %standard-phases
1104 (replace 'configure
1105 (lambda* (#:key system outputs #:allow-other-keys)
1106 (invoke "cp"
1107 (let ((system ,(or (%current-target-system)
1108 (%current-system))))
1109 (cond
1110 ((string-prefix? "x86_64" system)
1111 "makefile.linux_amd64_asm")
1112 ((string-prefix? "i686" system)
1113 "makefile.linux_x86_asm_gcc_4.X")
1114 (else
1115 "makefile.linux_any_cpu_gcc_4.X")))
1116 "makefile.machine")))
1117 (replace 'check
1118 (lambda _
1119 (invoke "make" "test")
1120 (invoke "make" "test_7z")
1121 (invoke "make" "test_7zr"))))))
1122 (native-inputs
1123 (let ((system (or (%current-target-system)
1124 (%current-system))))
1125 `(,@(cond ((string-prefix? "x86_64" system)
1126 `(("yasm" ,yasm)))
1127 ((string-prefix? "i686" system)
1128 `(("nasm" ,nasm)))
1129 (else '())))))
1130 (home-page "http://p7zip.sourceforge.net/")
1131 (synopsis "Command-line file archiver with high compression ratio")
1132 (description "p7zip is a command-line port of 7-Zip, a file archiver that
1133 handles the 7z format which features very high compression ratios.")
1134 (license (list license:lgpl2.1+
1135 license:gpl2+
1136 license:public-domain))))
1137
1138 (define-public gzstream
1139 (package
1140 (name "gzstream")
1141 (version "1.5")
1142 (source (origin
1143 (method url-fetch)
1144 (uri
1145 ;; No versioned URL, but last release was in 2003.
1146 "http://www.cs.unc.edu/Research/compgeom/gzstream/gzstream.tgz")
1147 (file-name (string-append name "-" version ".tgz"))
1148 (sha256
1149 (base32
1150 "00y19pqjsdj5zcrx4p9j56pl73vayfwnb7y2hvp423nx0cwv5b4r"))
1151 (modules '((guix build utils)))
1152 (snippet
1153 ;; Remove pre-compiled object.
1154 '(begin
1155 (delete-file "gzstream.o")
1156 #t))))
1157 (build-system gnu-build-system)
1158 (arguments
1159 `(#:test-target "test"
1160 #:phases
1161 (modify-phases %standard-phases
1162 (delete 'configure)
1163 (replace 'install
1164 (lambda* (#:key outputs #:allow-other-keys)
1165 (let* ((out (assoc-ref outputs "out"))
1166 (lib (string-append out "/lib"))
1167 (include (string-append out "/include")))
1168 (install-file "libgzstream.a" lib)
1169 (install-file "gzstream.h" include)
1170 #t))))))
1171 (propagated-inputs `(("zlib" ,zlib)))
1172 (home-page "http://www.cs.unc.edu/Research/compgeom/gzstream/")
1173 (synopsis "Compressed C++ iostream")
1174 (description "gzstream is a small library for providing zlib
1175 functionality in a C++ iostream.")
1176 (license license:lgpl2.1+)))
1177
1178 (define-public zpaq
1179 (package
1180 (name "zpaq")
1181 (version "7.15")
1182 (source
1183 (origin
1184 (method url-fetch/zipbomb)
1185 (uri (string-append "http://mattmahoney.net/dc/zpaq"
1186 (string-delete #\. version) ".zip"))
1187 (sha256
1188 (base32
1189 "066l94yyladlfzri877nh2dhkvspagjn3m5bmv725fmhkr9c4pp8"))
1190 (modules '((guix build utils)))
1191 (snippet
1192 ;; Delete irrelevant pre-compiled binaries.
1193 '(begin
1194 (for-each delete-file (find-files "." "\\.exe$"))
1195 #t))))
1196 (build-system gnu-build-system)
1197 (arguments
1198 `(#:phases
1199 (modify-phases %standard-phases
1200 (delete 'configure)) ; no ‘configure’ script
1201 #:make-flags
1202 (list
1203 (string-append "CPPFLAGS=-Dunix"
1204 ,(match (or (%current-target-system)
1205 (%current-system))
1206 ("x86_64-linux" "")
1207 ("i686-linux" "")
1208 (_ " -DNOJIT")))
1209 ;; These should be safe, lowest-common-denominator instruction sets,
1210 ;; allowing for some optimisation while remaining reproducible.
1211 (string-append "CXXFLAGS=-O3 -DNDEBUG"
1212 ,(match (or (%current-target-system)
1213 (%current-system))
1214 ("x86_64-linux" " -march=nocona -mtune=generic")
1215 ("i686-linux" " -march=i686 -mtune=generic")
1216 ("armhf-linux" " -mtune=generic-armv7-a")
1217 (_ "")))
1218 (string-append "PREFIX="
1219 (assoc-ref %outputs "out")))))
1220 (native-inputs
1221 `(("perl" ,perl))) ; for pod2man
1222 (home-page "http://mattmahoney.net/dc/zpaq.html")
1223 (synopsis "Incremental journaling archiver")
1224 (description "ZPAQ is a command-line archiver for realistic situations with
1225 many duplicate and already compressed files. It backs up only those files
1226 modified since the last update. All previous versions remain untouched and can
1227 be independently recovered. Identical files are only stored once (known as
1228 @dfn{de-duplication}). Archives can also be encrypted.
1229
1230 ZPAQ is intended to back up user data, not entire operating systems. It ignores
1231 owner and group IDs, ACLs, extended attributes, or special file types like
1232 devices, sockets, or named pipes. It does not follow or restore symbolic links
1233 or junctions, and always follows hard links.")
1234 (license (list license:public-domain
1235 ;; libzpaq.cpp contains a mix of public-domain and
1236 ;; expat-licenced (or ‘MIT’) code.
1237 license:expat))))
1238
1239 (define-public unshield
1240 (package
1241 (name "unshield")
1242 (version "1.4.3")
1243 (source
1244 (origin (method git-fetch)
1245 (uri (git-reference
1246 (url "http://github.com/twogood/unshield.git")
1247 (commit version)))
1248 (file-name (git-file-name name version))
1249 (sha256
1250 (base32
1251 "19wn22vszhci8dfcixx5rliz7phx3lv5ablvhjlclvj75k2vsdqd"))))
1252 (build-system cmake-build-system)
1253 (inputs
1254 `(("zlib" ,zlib)
1255 ("openssl" ,openssl)
1256 ;; Test data that is otherwise downloaded with curl.
1257 ("unshield-avigomanager11b22.zip"
1258 ,(origin
1259 (method url-fetch)
1260 (uri (string-append
1261 "https://www.dropbox.com/s/8r4b6752swe3nhu/"
1262 "unshield-avigomanager11b22.zip?dl=1"))
1263 (sha256
1264 (base32 "0fwq7lih04if68wpwpsk5wjqyvh32db76a41sq6gbx4dn1lc3ddn"))
1265 (file-name "unshield-avigomanager11b22.zip")))
1266 ("unshield-baldurs_gate_patch_v1_1_4315_international.zip"
1267 ,(origin
1268 (method url-fetch)
1269 (uri (string-append
1270 "https://www.dropbox.com/s/9ruil8oi6amjbbk/"
1271 "unshield-baldurs_gate_patch_v1_1_4315_international.zip?dl=1"))
1272 (sha256
1273 (base32 "0spaxf6dardlhqxz3ys09fzamj007q3nfyw4xng6gh3qp9780maj"))
1274 (file-name "unshield-baldurs_gate_patch_v1_1_4315_international.zip")))
1275 ("unshield-the-feeble-files-spanish.zip"
1276 ,(origin
1277 (method url-fetch)
1278 (uri (string-append
1279 "https://www.dropbox.com/s/1ng0z9kfxc7eb1e/"
1280 "unshield-the-feeble-files-spanish.zip?dl=1"))
1281 (sha256
1282 (base32 "1k5cw6vnpja8yjlnhx5124xrw9i8s1l539hfdqqrqz3l5gn0bnyd"))
1283 (file-name "unshield-the-feeble-files-spanish.zip")))))
1284 (native-inputs
1285 `(("unzip" ,unzip)))
1286 (arguments
1287 `(#:out-of-source? #f
1288 #:phases
1289 (modify-phases %standard-phases
1290 (add-before 'check 'pre-check
1291 (lambda* (#:key inputs #:allow-other-keys)
1292 (for-each (lambda (i)
1293 (copy-file (assoc-ref inputs i)
1294 (string-append "test/v0/" i)))
1295 '("unshield-avigomanager11b22.zip"
1296 "unshield-baldurs_gate_patch_v1_1_4315_international.zip"
1297 "unshield-the-feeble-files-spanish.zip"))
1298 (substitute* (find-files "test/" "/*\\.sh")
1299 ;; Tests expect the unshield binary in a specific
1300 ;; location.
1301 (("/var/tmp/unshield/bin/unshield")
1302 (string-append (getcwd) "/src/unshield"))
1303 ;; We no longer need to download the data.
1304 ((".?URL=.*$") "")
1305 (("curl -(|f)sSL -o test.zip .*") ""))
1306 (substitute* "test/v0/avigomanager.sh"
1307 (("test.zip")
1308 (string-append (getcwd)
1309 "/test/v0/unshield-avigomanager11b22.zip")))
1310 (substitute* "test/v0/baldurs_gate_patch_v1_1_4315_international.sh"
1311 (("test.zip")
1312 (string-append
1313 (getcwd)
1314 "/test/v0/unshield-baldurs_gate_patch_v1_1_4315_international.zip")))
1315 (substitute* "test/v0/the-feeble-files-spanish.sh"
1316 (("test.zip")
1317 (string-append (getcwd)
1318 "/test/v0/unshield-the-feeble-files-spanish.zip")))
1319 #t))
1320 (replace 'check
1321 (lambda _
1322 (invoke "./run-tests.sh"))))))
1323 (home-page "https://github.com/twogood/unshield")
1324 (synopsis "Extract CAB files from InstallShield installers")
1325 (description
1326 "@command{unshield} is a tool and library for extracting @file{.cab}
1327 archives from InstallShield installers.")
1328 (license license:expat)))
1329
1330 (define-public zstd
1331 (package
1332 (name "zstd")
1333 (version "1.4.2")
1334 (source
1335 (origin
1336 (method url-fetch)
1337 (uri (string-append "https://github.com/facebook/zstd/releases/download/"
1338 "v" version "/zstd-" version ".tar.gz"))
1339 (sha256
1340 (base32 "1ja3nrjynmiwwdjrf6crraizkbagp7y414bqqq2ady91nn1hjwqj"))))
1341 (build-system gnu-build-system)
1342 (outputs '("out" ;1.1MiB executables and documentation
1343 "lib" ;1MiB shared library and headers
1344 "static")) ;1MiB static library
1345 (arguments
1346 `(#:phases
1347 (modify-phases %standard-phases
1348 (delete 'configure) ;no configure script
1349 (add-after 'install 'adjust-library-locations
1350 (lambda* (#:key outputs #:allow-other-keys)
1351 (let* ((out (assoc-ref outputs "out"))
1352 (lib (assoc-ref outputs "lib"))
1353 (static (assoc-ref outputs "static"))
1354 (shared-libs (string-append lib "/lib"))
1355 (static-libs (string-append static "/lib")))
1356 ;; Move the static library to its own output to save ~1MiB.
1357 (mkdir-p static-libs)
1358 (for-each (lambda (ar)
1359 (link ar (string-append static-libs "/"
1360 (basename ar)))
1361 (delete-file ar))
1362 (find-files shared-libs "\\.a$"))
1363
1364 ;; While here, remove prefix= from the pkg-config file because it
1365 ;; is unused, and because it contains a needless reference to $out.
1366 ;; XXX: It would be great if #:disallow-references worked between
1367 ;; outputs.
1368 (substitute* (string-append shared-libs "/pkgconfig/libzstd.pc")
1369 (("^prefix=.*") ""))
1370
1371 #t))))
1372 #:make-flags
1373 (list "CC=gcc"
1374 (string-append "PREFIX=" (assoc-ref %outputs "out"))
1375 (string-append "LIBDIR=" (assoc-ref %outputs "lib") "/lib")
1376 (string-append "INCLUDEDIR=" (assoc-ref %outputs "lib") "/include")
1377 ;; Skip auto-detection of, and creating a dependency on, the build
1378 ;; environment's ‘xz’ for what amounts to a dubious feature anyway.
1379 "HAVE_LZMA=0"
1380 ;; Not currently detected, but be explicit & avoid surprises later.
1381 "HAVE_LZ4=0"
1382 "HAVE_ZLIB=0")))
1383 (home-page "https://facebook.github.io/zstd/")
1384 (synopsis "Zstandard real-time compression algorithm")
1385 (description "Zstandard (@command{zstd}) is a lossless compression algorithm
1386 that combines very fast operation with a compression ratio comparable to that of
1387 zlib. In most scenarios, both compression and decompression can be performed in
1388 ‘real time’. The compressor can be configured to provide the most suitable
1389 trade-off between compression ratio and speed, without affecting decompression
1390 speed.")
1391 (license (list license:bsd-3 ; the main top-level LICENSE file
1392 license:bsd-2 ; many files explicitly state 2-Clause
1393 license:gpl2 ; the main top-level COPYING file
1394 license:gpl3+ ; tests/gzip/*.sh
1395 license:expat ; lib/dictBuilder/divsufsort.[ch]
1396 license:public-domain ; zlibWrapper/examples/fitblk*
1397 license:zlib)))) ; zlibWrapper/{gz*.c,gzguts.h}
1398
1399 (define-public pzstd
1400 (package
1401 (name "pzstd")
1402 (version (package-version zstd))
1403 (source (package-source zstd))
1404 (build-system gnu-build-system)
1405 (native-inputs
1406 `(("googletest" ,googletest)))
1407 (arguments
1408 `(#:phases
1409 (modify-phases %standard-phases
1410 (add-after 'unpack 'enter-subdirectory
1411 (lambda _ (chdir "contrib/pzstd") #t))
1412 (delete 'configure) ; no configure script
1413 (add-before 'check 'compile-tests
1414 (lambda* (#:key make-flags #:allow-other-keys)
1415 (apply invoke "make" "tests" make-flags)))
1416 (add-after 'install 'install-documentation
1417 (lambda* (#:key outputs #:allow-other-keys)
1418 (let* ((out (assoc-ref outputs "out"))
1419 (doc (string-append out "/share/doc/" ,name)))
1420 (mkdir-p doc)
1421 (install-file "README.md" doc)
1422 #t))))
1423 #:make-flags
1424 (list "CC=gcc"
1425 (string-append "PREFIX=" (assoc-ref %outputs "out")))))
1426 (home-page (package-home-page zstd))
1427 (synopsis "Threaded implementation of the Zstandard compression algorithm")
1428 (description "Parallel Zstandard (PZstandard or @command{pzstd}) is a
1429 multi-threaded implementation of the @uref{http://zstd.net/, Zstandard
1430 compression algorithm}. It is fully compatible with the original Zstandard file
1431 format and command-line interface, and can be used as a drop-in replacement.
1432
1433 Compression is distributed over multiple processor cores to improve performance,
1434 as is the decompression of data compressed in this manner. Data compressed by
1435 other implementations will only be decompressed by two threads: one performing
1436 the actual decompression, the other input and output.")
1437 (license (package-license zstd))))
1438
1439 (define-public zip
1440 (package
1441 (name "zip")
1442 (version "3.0")
1443 (source
1444 (origin
1445 (method url-fetch)
1446 (uri (string-append "mirror://sourceforge/infozip"
1447 "/Zip%203.x%20%28latest%29/3.0/zip30.tar.gz"))
1448 (sha256
1449 (base32
1450 "0sb3h3067pzf3a7mlxn1hikpcjrsvycjcnj9hl9b1c3ykcgvps7h"))))
1451 (build-system gnu-build-system)
1452 (inputs `(("bzip2" ,bzip2)))
1453 (arguments
1454 `(#:tests? #f ; no test target
1455 #:make-flags (let ((out (assoc-ref %outputs "out")))
1456 (list "-f" "unix/Makefile"
1457 (string-append "prefix=" out)
1458 (string-append "MANDIR=" out "/share/man/man1")))
1459 #:phases
1460 (modify-phases %standard-phases
1461 (replace 'build
1462 (lambda* (#:key (make-flags '()) #:allow-other-keys)
1463 (apply invoke "make" "generic_gcc" make-flags)))
1464 (delete 'configure))))
1465 (home-page "http://www.info-zip.org/Zip.html")
1466 (synopsis "Compression and file packing utility")
1467 (description
1468 "Zip is a compression and file packaging/archive utility. Zip is useful
1469 for packaging a set of files for distribution, for archiving files, and for
1470 saving disk space by temporarily compressing unused files or directories.
1471 Zip puts one or more compressed files into a single ZIP archive, along with
1472 information about the files (name, path, date, time of last modification,
1473 protection, and check information to verify file integrity). An entire
1474 directory structure can be packed into a ZIP archive with a single command.
1475
1476 Zip has one compression method (deflation) and can also store files without
1477 compression. Zip automatically chooses the better of the two for each file.
1478 Compression ratios of 2:1 to 3:1 are common for text files.")
1479 (license (license:non-copyleft "file://LICENSE"
1480 "See LICENSE in the distribution."))))
1481
1482 (define-public unzip
1483 (package (inherit zip)
1484 (name "unzip")
1485 (version "6.0")
1486 (source
1487 (origin
1488 (method url-fetch)
1489 (uri (string-append "mirror://sourceforge/infozip"
1490 "/UnZip%206.x%20%28latest%29/UnZip%206.0/unzip60.tar.gz"))
1491 (sha256
1492 (base32
1493 "0dxx11knh3nk95p2gg2ak777dd11pr7jx5das2g49l262scrcv83"))
1494 (patches (search-patches "unzip-CVE-2014-8139.patch"
1495 "unzip-CVE-2014-8140.patch"
1496 "unzip-CVE-2014-8141.patch"
1497 "unzip-CVE-2014-9636.patch"
1498 "unzip-CVE-2015-7696.patch"
1499 "unzip-CVE-2015-7697.patch"
1500 "unzip-allow-greater-hostver-values.patch"
1501 "unzip-initialize-symlink-flag.patch"
1502 "unzip-remove-build-date.patch"
1503 "unzip-attribs-overflow.patch"
1504 "unzip-overflow-on-invalid-input.patch"
1505 "unzip-format-secure.patch"
1506 "unzip-overflow-long-fsize.patch"))))
1507 (build-system gnu-build-system)
1508 ;; no inputs; bzip2 is not supported, since not compiled with BZ_NO_STDIO
1509 (arguments
1510 `(#:phases (modify-phases %standard-phases
1511 (delete 'configure)
1512 (add-after 'unpack 'fortify
1513 (lambda _
1514 ;; Mitigate CVE-2018-1000035, an exploitable buffer overflow.
1515 ;; This environment variable is recommended in 'unix/Makefile'
1516 ;; for passing flags to the C compiler.
1517 (setenv "LOCAL_UNZIP" "-D_FORTIFY_SOURCE=1")
1518 #t))
1519 (replace 'build
1520 (lambda* (#:key make-flags #:allow-other-keys)
1521 (apply invoke "make"
1522 `("-j" ,(number->string
1523 (parallel-job-count))
1524 ,@make-flags
1525 "generic_gcc")))))
1526 #:make-flags (list "-f" "unix/Makefile"
1527 (string-append "prefix=" %output)
1528 (string-append "MANDIR=" %output "/share/man/man1"))))
1529 (home-page "http://www.info-zip.org/UnZip.html")
1530 (synopsis "Decompression and file extraction utility")
1531 (description
1532 "UnZip is an extraction utility for archives compressed in .zip format,
1533 also called \"zipfiles\".
1534
1535 UnZip lists, tests, or extracts files from a .zip archive. The default
1536 behaviour (with no options) is to extract into the current directory, and
1537 subdirectories below it, all files from the specified zipfile. UnZip
1538 recreates the stored directory structure by default.")
1539 (license (license:non-copyleft "file://LICENSE"
1540 "See LICENSE in the distribution."))))
1541
1542 (define-public zziplib
1543 (package
1544 (name "zziplib")
1545 (version "0.13.69")
1546 (replacement zziplib/fixed)
1547 (home-page "https://github.com/gdraheim/zziplib")
1548 (source (origin
1549 (method git-fetch)
1550 (uri (git-reference (url home-page)
1551 (commit (string-append "v" version))))
1552 (file-name (git-file-name name version))
1553 (sha256
1554 (base32
1555 "0fbk9k7ryas2wh2ykwkvm1pbi40i88rfvc3dydh9xyd7w2jcki92"))))
1556 (build-system gnu-build-system)
1557 (arguments
1558 `(#:phases (modify-phases %standard-phases
1559 (add-before 'check 'make-files-writable
1560 (lambda _
1561 (for-each make-file-writable
1562 (find-files "test" #:directories? #t))
1563 #t)))
1564
1565 ;; XXX: The default test target attempts to download external resources and
1566 ;; fails without error: <https://github.com/gdraheim/zziplib/issues/53>.
1567 ;; To prevent confusing log messages, just run a simple zip test that works.
1568 #:test-target "check-readme"))
1569 (inputs
1570 `(("zlib" ,zlib)))
1571 (native-inputs `(("perl" ,perl) ; for the documentation
1572 ("pkg-config" ,pkg-config)
1573 ;; for the documentation; Python 3 not supported,
1574 ;; http://forums.gentoo.org/viewtopic-t-863161-start-0.html
1575 ("python" ,python-2)
1576 ("zip" ,zip))) ; to create test files
1577 (synopsis "Library for accessing zip files")
1578 (description
1579 "ZZipLib is a library based on zlib for accessing zip files.")
1580 ;; zziplib is dual licensed under LGPL2.0+ and MPL1.1. Some example source
1581 ;; files carry the Zlib license; see "docs/copying.html" for details.
1582 (license (list license:lgpl2.0+ license:mpl1.1))))
1583
1584 (define zziplib/fixed
1585 (package
1586 (inherit zziplib)
1587 (source (origin
1588 (inherit (package-source zziplib))
1589 (patches (search-patches "zziplib-CVE-2018-16548.patch"))))))
1590
1591 (define-public libzip
1592 (package
1593 (name "libzip")
1594 (version "1.6.1")
1595 (source (origin
1596 (method url-fetch)
1597 (uri (string-append
1598 "https://libzip.org/download/libzip-" version ".tar.xz"))
1599 (sha256
1600 (base32
1601 "0h9nsgkw0dk4srsvmz6xy6f9l4h815xn07j8h40l8gqvcxxaqpbh"))))
1602 (native-inputs
1603 `(("perl" ,perl)))
1604 (inputs
1605 `(("gnutls" ,gnutls)
1606 ("liblzma" ,xz)
1607 ("openssl" ,openssl)
1608 ("zlib" ,zlib)))
1609 (build-system cmake-build-system)
1610 (home-page "https://libzip.org")
1611 (synopsis "C library for reading, creating, and modifying zip archives")
1612 (description "Libzip is a C library for reading, creating, and modifying
1613 zip archives. Files can be added from data buffers, files, or compressed data
1614 copied directly from other zip archives. Changes made without closing the
1615 archive can be reverted.")
1616 (license license:bsd-3)))
1617
1618 (define-public atool
1619 (package
1620 (name "atool")
1621 (version "0.39.0")
1622 (source
1623 (origin
1624 (method url-fetch)
1625 (uri (string-append "http://savannah.nongnu.org/download/atool/atool-"
1626 version ".tar.gz"))
1627 (sha256
1628 (base32
1629 "0fvhzip2v08jgnlfpyj6rapan39xlsl1ksgq4lp8gfsai2ah1xma"))))
1630 (build-system gnu-build-system)
1631 (arguments
1632 `(#:phases
1633 (modify-phases %standard-phases
1634 (add-after 'unpack 'embed-absolute-file-name
1635 (lambda* (#:key inputs #:allow-other-keys)
1636 (substitute* "atool"
1637 (("(^\\$::cfg_path_file.*= )'file'" _ pre)
1638 (string-append pre "'" (assoc-ref inputs "file")
1639 "/bin/file'")))
1640 #t)))))
1641 (inputs
1642 `(("perl" ,perl)
1643 ("file" ,file)))
1644 (home-page "https://www.nongnu.org/atool/")
1645 (synopsis "Universal tool to manage file archives of various types")
1646 (description "The main command is @command{aunpack} which extracts files
1647 from an archive. The other commands provided are @command{apack} (to create
1648 archives), @command{als} (to list files in archives), and @command{acat} (to
1649 extract files to standard out). As @command{atool} invokes external programs
1650 to handle the archives, not all commands may be supported for a certain type
1651 of archives.")
1652 (license license:gpl2+)))
1653
1654 (define-public lunzip
1655 (package
1656 (name "lunzip")
1657 (version "1.11")
1658 (source
1659 (origin
1660 (method url-fetch)
1661 (uri (string-append "mirror://savannah/lzip/lunzip/"
1662 "lunzip-" version ".tar.gz"))
1663 (sha256
1664 (base32 "19zq3gmlbia2krq4k4zs1j0xjdv7nsdzqvfb0pyca5n53h2mzb91"))))
1665 (build-system gnu-build-system)
1666 (arguments
1667 `(#:configure-flags
1668 (list "CC=gcc")))
1669 (home-page "https://www.nongnu.org/lzip/lunzip.html")
1670 (synopsis "Small, stand-alone lzip decompressor")
1671 (description
1672 "Lunzip is a decompressor for files in the lzip compression format (.lz),
1673 written as a single small C tool with no dependencies. This makes it
1674 well-suited to embedded and other systems without a C++ compiler, or for use in
1675 applications such as software installers that need only to decompress files,
1676 not compress them.
1677 Lunzip is intended to be fully compatible with the regular lzip package.")
1678 (license (list license:bsd-2 ; carg_parser.[ch]
1679 license:gpl2+)))) ; everything else
1680
1681 (define-public clzip
1682 (package
1683 (name "clzip")
1684 (version "1.11")
1685 (source
1686 (origin
1687 (method url-fetch)
1688 (uri (string-append "mirror://savannah/lzip/clzip/"
1689 "clzip-" version ".tar.gz"))
1690 (sha256
1691 (base32 "1h14dmc9fi10gcdpdpbgq1bwvcxvivppilj64pf720x8mw915mfr"))))
1692 (build-system gnu-build-system)
1693 (arguments
1694 `(#:configure-flags
1695 (list "CC=gcc")))
1696 (home-page "https://www.nongnu.org/lzip/clzip.html")
1697 (synopsis "Small, stand-alone lzip compressor and decompressor")
1698 (description
1699 "Clzip is a compressor and decompressor for files in the lzip compression
1700 format (.lz), written as a single small C tool with no dependencies. This makes
1701 it well-suited to embedded and other systems without a C++ compiler, or for use
1702 in other applications like package managers.
1703 Clzip is intended to be fully compatible with the regular lzip package.")
1704 (license (list license:bsd-2 ; carg_parser.[ch], lzd in clzip.texi
1705 license:gpl2+))))
1706
1707 (define-public lzlib
1708 (package
1709 (name "lzlib")
1710 (version "1.11")
1711 (source
1712 (origin
1713 (method url-fetch)
1714 (uri (string-append "mirror://savannah/lzip/lzlib/"
1715 "lzlib-" version ".tar.gz"))
1716 (sha256
1717 (base32 "0djdj4sg33rzi4k84cygvnp09bfsv6i8wy2k7i67rayib63myp3c"))))
1718 (build-system gnu-build-system)
1719 (arguments
1720 `(#:configure-flags
1721 (list "CC=gcc"
1722 "--enable-shared"))) ; only static (.a) is built by default
1723 (home-page "https://www.nongnu.org/lzip/lzlib.html")
1724 (synopsis "Lzip data compression C library")
1725 (description
1726 "Lzlib is a C library for in-memory LZMA compression and decompression in
1727 the lzip format. It supports integrity checking of the decompressed data, and
1728 all functions are thread-safe. The library should never crash, even in case of
1729 corrupted input.")
1730 (license (list license:bsd-2 ; the library itself
1731 license:gpl2+)))) ; main.c (i.e. minilzip used by tests)
1732
1733 (define-public plzip
1734 (package
1735 (name "plzip")
1736 (version "1.8")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (string-append "mirror://savannah/lzip/plzip/"
1741 "plzip-" version ".tar.gz"))
1742 (sha256
1743 (base32 "04indil809qgfmz776imb3dnhkysh7zk28jcv3mw0ahl2lyaxbzd"))))
1744 (build-system gnu-build-system)
1745 (inputs
1746 `(("lzlib" ,lzlib)))
1747 (home-page "https://www.nongnu.org/lzip/plzip.html")
1748 (synopsis "Parallel lossless data compressor for the lzip format")
1749 (description
1750 "Plzip is a massively parallel (multi-threaded) lossless data compressor
1751 and decompressor that uses the lzip file format (.lz). Files produced by plzip
1752 are fully compatible with lzip and can be rescued with lziprecover.
1753 On multiprocessor machines, plzip can compress and decompress large files much
1754 faster than lzip, at the cost of a slightly reduced compression ratio (0.4% to
1755 2%). The number of usable threads is limited by file size: on files of only a
1756 few MiB, plzip is no faster than lzip.
1757 Files that were compressed with regular lzip will also not be decompressed
1758 faster by plzip, unless the @code{-b} option was used: lzip usually produces
1759 single-member files which can't be decompressed in parallel.")
1760 (license (list license:bsd-2 ; arg_parser.{cc,h}
1761 license:gpl2+)))) ; everything else
1762
1763 (define-public innoextract
1764 (package
1765 (name "innoextract")
1766 (version "1.8")
1767 (source
1768 (origin
1769 (method url-fetch)
1770 (uri (string-append "https://github.com/dscharrer/innoextract/releases"
1771 "/download/" version
1772 "/innoextract-" version ".tar.gz"))
1773 (sha256
1774 (base32
1775 "0saj50n8ds85shygy4mq1h6s99510r9wgjjdll4dmvhra4lzcy2y"))))
1776 (build-system cmake-build-system)
1777 (arguments
1778 `(#:tests? #f
1779 #:phases (modify-phases %standard-phases
1780 (add-before 'configure 'glibc-is-already-a-system-library
1781 (lambda _
1782 ;; Prevent the build system from passing the glibc
1783 ;; header files to GCC as "system headers", because
1784 ;; it conflicts with the system headers already known
1785 ;; to GCC, causing #include_next failures.
1786 (substitute* "CMakeLists.txt"
1787 (("include_directories\\(SYSTEM \\$\\{iconv")
1788 "include_directories(${iconv"))
1789 #t)))))
1790 (inputs `(("boost" ,boost)
1791 ("libiconv" ,libiconv)
1792 ("xz" ,xz)))
1793 (native-inputs `(("pkg-config" ,pkg-config)))
1794 (home-page "https://constexpr.org/innoextract/")
1795 (synopsis "Tool for extracting Inno Setup installers")
1796 (description "innoextract allows extracting Inno Setup installers under
1797 non-Windows systems without running the actual installer using wine.")
1798 (license license:zlib)))
1799
1800 (define-public google-brotli
1801 (package
1802 (name "google-brotli")
1803 (version "1.0.7")
1804 (source
1805 (origin
1806 (method git-fetch)
1807 (uri (git-reference
1808 (url "https://github.com/google/brotli.git")
1809 (commit (string-append "v" version))))
1810 (file-name (git-file-name name version))
1811 (sha256
1812 (base32 "1811b55wdfg4kbsjcgh1kc938g118jpvif97ilgrmbls25dfpvvw"))))
1813 (build-system cmake-build-system)
1814 (arguments
1815 `(#:phases
1816 (modify-phases %standard-phases
1817 (add-after 'install 'rename-static-libraries
1818 ;; The build tools put a 'static' suffix on the static libraries, but
1819 ;; other applications don't know how to find these.
1820 (lambda* (#:key outputs #:allow-other-keys)
1821 (let ((lib (string-append (assoc-ref %outputs "out") "/lib/")))
1822 (rename-file (string-append lib "libbrotlicommon-static.a")
1823 (string-append lib "libbrotlicommon.a"))
1824 (rename-file (string-append lib "libbrotlidec-static.a")
1825 (string-append lib "libbrotlidec.a"))
1826 (rename-file (string-append lib "libbrotlienc-static.a")
1827 (string-append lib "libbrotlienc.a"))
1828 #t))))
1829 #:configure-flags
1830 (list ;; Defaults to "lib64" on 64-bit archs.
1831 (string-append "-DCMAKE_INSTALL_LIBDIR="
1832 (assoc-ref %outputs "out") "/lib"))))
1833 (home-page "https://github.com/google/brotli")
1834 (synopsis "General-purpose lossless compression")
1835 (description "This package provides the reference implementation of Brotli,
1836 a generic-purpose lossless compression algorithm that compresses data using a
1837 combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd
1838 order context modeling, with a compression ratio comparable to the best
1839 currently available general-purpose compression methods. It is similar in speed
1840 with @code{deflate} but offers more dense compression.
1841
1842 The specification of the Brotli Compressed Data Format is defined in RFC 7932.")
1843 (license license:expat)))
1844
1845 (define-public brotli
1846 ;; We used to provide an older version under the name "brotli".
1847 (deprecated-package "brotli" google-brotli))
1848
1849 (define-public ucl
1850 (package
1851 (name "ucl")
1852 (version "1.03")
1853 (source (origin
1854 (method url-fetch)
1855 (uri (string-append "https://www.oberhumer.com/opensource/"
1856 name "/download/" name "-" version ".tar.gz"))
1857 (sha256
1858 (base32
1859 "0j036lkwsxvm15gr29n8wn07cqq79dswjs9k54939ms5zngjjrdq"))))
1860 (build-system gnu-build-system)
1861 (arguments
1862 `(;; UCL 1.03 fails to build with newer C standards.
1863 #:configure-flags '("CFLAGS=-std=gnu90"
1864 "--enable-shared" "--disable-static")))
1865 (home-page "https://www.oberhumer.com/opensource/ucl/")
1866 (synopsis "Portable lossless data compression library")
1867 (description "UCL implements a number of compression algorithms that
1868 achieve an excellent compression ratio while allowing fast decompression.
1869 Decompression requires no additional memory.
1870
1871 Compared to LZO, the UCL algorithms achieve a better compression ratio but
1872 decompression is a little bit slower.")
1873 (license license:gpl2+)))
1874
1875 (define-public upx
1876 (package
1877 (name "upx")
1878 (version "3.96")
1879 (source (origin
1880 (method url-fetch)
1881 (uri (string-append "https://github.com/upx/upx/releases/download/v"
1882 version "/upx-" version "-src.tar.xz"))
1883 (sha256
1884 (base32
1885 "051pk5jk8fcfg5mpgzj43z5p4cn7jy5jbyshyn78dwjqr7slsxs7"))))
1886 (build-system gnu-build-system)
1887 (native-inputs
1888 `(("perl" ,perl)))
1889 (inputs
1890 `(("ucl" ,ucl)
1891 ("zlib" ,zlib)))
1892 (arguments
1893 `(#:make-flags
1894 (list "all")
1895 #:phases
1896 (modify-phases %standard-phases
1897 (delete 'configure) ; no configure script
1898 (delete 'check) ; no test suite
1899 (add-before 'build 'patch-exec-bin-sh
1900 (lambda _
1901 (substitute* (list "Makefile"
1902 "src/Makefile")
1903 (("/bin/sh") (which "sh")))
1904 #t))
1905 (replace 'install
1906 (lambda* (#:key outputs #:allow-other-keys)
1907 (let* ((out (assoc-ref outputs "out"))
1908 (bin (string-append out "/bin")))
1909 (mkdir-p bin)
1910 (copy-file "src/upx.out" (string-append bin "/upx")))
1911 #t)))))
1912 (home-page "https://upx.github.io/")
1913 (synopsis "Compression tool for executables")
1914 (description
1915 "The Ultimate Packer for eXecutables (UPX) is an executable file
1916 compressor. UPX typically reduces the file size of programs and shared
1917 libraries by around 50%--70%, thus reducing disk space, network load times,
1918 download times, and other distribution and storage costs.")
1919 (license license:gpl2+)))
1920
1921 (define-public quazip
1922 (package
1923 (name "quazip")
1924 (version "0.8.1")
1925 (source (origin
1926 (method git-fetch)
1927 (uri (git-reference
1928 (url "https://github.com/stachenov/quazip.git")
1929 (commit (string-append "v" version))))
1930 (file-name (git-file-name name version))
1931 (sha256
1932 (base32
1933 "1g473gnsbkvxpsv8lbsmhspn7jnq86b05zzgqh11r581v8ndvz5s"))))
1934 (build-system cmake-build-system)
1935 (arguments
1936 `(#:tests? #f)) ;no test
1937 (native-inputs
1938 `(("doxygen" ,doxygen)))
1939 (inputs
1940 `(("qtbase" ,qtbase)
1941 ("zlib" ,zlib)))
1942 (home-page "https://stachenov.github.io/quazip/index.html")
1943 (synopsis "Qt/C++ wrapper for Minizip")
1944 (description "QuaZIP is a simple C++ wrapper over Gilles Vollant's
1945 ZIP/UNZIP package that can be used to access ZIP archives. It uses
1946 Trolltech's Qt toolkit.
1947
1948 QuaZIP allows you to access files inside ZIP archives using QIODevice
1949 API, and that means that you can also use QTextStream, QDataStream or
1950 whatever you would like to use on your zipped files.
1951
1952 QuaZIP provides complete abstraction of the ZIP/UNZIP API, for both
1953 reading from and writing to ZIP archives. ")
1954 ;; Project is distributed under LGPL, but "quazip/z*" "quazip/unzip.*" are
1955 ;; distributed under zlib terms.
1956 (license (list license:lgpl2.1+ license:zlib))))
1957
1958 (define-public zutils
1959 (package
1960 (name "zutils")
1961 ;; Check and remove the lint-hidden-cve property when updating.
1962 (version "1.8")
1963 (source
1964 (origin
1965 (method url-fetch)
1966 (uri (string-append "mirror://savannah/zutils/zutils-" version ".tar.lz"))
1967 (sha256
1968 (base32 "0dx35mv78fgqgz6sszs05ng8ipz2xy09ry9vpmka2rmy08b7x907"))))
1969 (build-system gnu-build-system)
1970 (arguments
1971 `(#:configure-flags
1972 (list "--sysconfdir=/etc")
1973 #:phases
1974 (modify-phases %standard-phases
1975 (replace 'install
1976 (lambda* (#:key make-flags outputs #:allow-other-keys)
1977 (apply invoke "make" "install"
1978 (string-append "sysconfdir=" (assoc-ref outputs "out")
1979 "/etc")
1980 make-flags))))))
1981 (native-inputs
1982 ;; Needed to extract the source tarball and run the test suite.
1983 `(("lzip" ,lzip)))
1984 (properties `((lint-hidden-cve . ("CVE-2018-1000637"))))
1985 (home-page "https://www.nongnu.org/zutils/zutils.html")
1986 (synopsis "Utilities that transparently operate on compressed files")
1987 (description
1988 "Zutils is a collection of utilities able to process any combination of
1989 compressed and uncompressed files transparently. If any given file, including
1990 standard input, is compressed, its decompressed content is used instead.
1991
1992 @command{zcat}, @command{zcmp}, @command{zdiff}, and @command{zgrep} are
1993 improved replacements for the shell scripts provided by GNU gzip.
1994 @command{ztest} tests the integrity of supported compressed files.
1995 @command{zupdate} recompresses files with lzip, similar to gzip's
1996 @command{znew}.
1997
1998 Supported compression formats are bzip2, gzip, lzip, and xz. Zutils uses
1999 external compressors: the compressor to be used for each format is configurable
2000 at run time, and must be installed separately.")
2001 (license (list license:bsd-2 ; arg_parser.{cc,h}
2002 license:gpl2+)))) ; the rest
2003
2004 (define-public makeself-safeextract
2005 (let ((commit "1a95e121fa8e3c02d307ae37b9b7834e616c3683"))
2006 (package
2007 (name "makeself-safeextract")
2008 (version (git-version "0.0.0" "1" commit))
2009 (home-page "https://github.com/ssokolow/makeself_safeextract")
2010 (source
2011 (origin
2012 (method git-fetch)
2013 (uri (git-reference
2014 (url home-page)
2015 (commit commit)))
2016 (file-name (git-file-name name version))
2017 (sha256
2018 (base32
2019 "1anlinaj9lvfi8bn00wp11vzqq0f9sig4fm9yrspisx31v0z4a2c"))))
2020 (build-system trivial-build-system)
2021 (inputs
2022 `(("python" ,python-2)
2023 ("p7zip" ,p7zip)
2024 ("unzip" ,unzip)))
2025 (arguments
2026 `(#:modules ((guix build utils))
2027 #:builder
2028 (begin
2029 (use-modules (guix build utils))
2030 (let* ((name "makeself_safeextract")
2031 (source (string-append (assoc-ref %build-inputs "source")
2032 "/" name ".py"))
2033 (bin (string-append (assoc-ref %outputs "out") "/bin"))
2034 (target (string-append bin "/" name))
2035 (python (string-append (assoc-ref %build-inputs "python") "/bin"))
2036 (7z (string-append (assoc-ref %build-inputs "p7zip") "/bin/7z"))
2037 (unzip (string-append (assoc-ref %build-inputs "unzip") "/bin/unzip")))
2038 (setenv "PATH" (string-append (getenv "PATH") ":" python))
2039 (mkdir-p bin)
2040 (copy-file source target)
2041 (substitute* target
2042 (("'7z'") (format #f "'~a'" 7z))
2043 (("'unzip'") (format #f "'~a'" unzip)))
2044 (patch-shebang target)))))
2045 (synopsis "Extract makeself and mojo archives without running untrusted code")
2046 (description "This package provides a script to unpack self-extracting
2047 archives generated by @command{makeself} or @command{mojo} without running the
2048 possibly untrusted extraction shell script.")
2049 (license license:gpl3+))))
2050
2051 (define-public ncompress
2052 (package
2053 (name "ncompress")
2054 (version "4.2.4.6")
2055 (source (origin
2056 (method git-fetch)
2057 (uri (git-reference
2058 (url "https://github.com/vapier/ncompress")
2059 (commit (string-append "v" version))))
2060 (patches (search-patches "ncompress-fix-softlinks.patch"))
2061 (file-name (string-append name "-" version ".tar.gz"))
2062 (sha256
2063 (base32
2064 "1a4yir1ilafz0nzxdwigj204j4yy2zljbc501nsaqqm3dxdap8zn"))))
2065 (arguments
2066 '(#:make-flags (list "CC=gcc"
2067 (string-append "BINDIR=" %output "/bin")
2068 (string-append "MANDIR=" %output "/share/man/man1"))
2069 #:phases (modify-phases %standard-phases
2070 (delete 'configure))))
2071 (build-system gnu-build-system)
2072 (home-page "https://github.com/vapier/ncompress/")
2073 (synopsis "Original Lempel-Ziv compress/uncompress programs")
2074 (description "(N)compress provides the original compress and uncompress
2075 programs that used to be the de facto UNIX standard for compressing and
2076 uncompressing files. These programs implement a fast, simple Lempel-Ziv (LZW)
2077 file compression algorithm.")
2078 (license license:gpl2+)))