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