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