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