gnu: Add ttf2eot.
[jackhill/guix/guix.git] / gnu / packages / compression.scm
CommitLineData
233e7676 1;;; GNU Guix --- Functional package management for GNU
9b1bf330 2;;; Copyright © 2012, 2013, 2014, 2015 Ludovic Courtès <ludo@gnu.org>
b357faac 3;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
0a5c3087 4;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
27f76fe6 5;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
73f542c3 6;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
646898b3 7;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
82aa2a28 8;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
820dc3f5 9;;; Copyright © 2015 Jeff Mickey <j@codemac.net>
209e09fa 10;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
23f3cbb8 11;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
a268f085 12;;;
233e7676 13;;; This file is part of GNU Guix.
a268f085 14;;;
233e7676 15;;; GNU Guix is free software; you can redistribute it and/or modify it
a268f085
LC
16;;; under the terms of the GNU General Public License as published by
17;;; the Free Software Foundation; either version 3 of the License, or (at
18;;; your option) any later version.
19;;;
233e7676 20;;; GNU Guix is distributed in the hope that it will be useful, but
a268f085
LC
21;;; WITHOUT ANY WARRANTY; without even the implied warranty of
22;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23;;; GNU General Public License for more details.
24;;;
25;;; You should have received a copy of the GNU General Public License
233e7676 26;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
a268f085 27
1ffa7090 28(define-module (gnu packages compression)
b5b73a82 29 #:use-module ((guix licenses) #:prefix license:)
21b2ec4d 30 #:use-module (guix utils)
a268f085 31 #:use-module (guix packages)
87f5d366 32 #:use-module (guix download)
646898b3 33 #:use-module (guix git-download)
b357faac 34 #:use-module (guix build-system gnu)
73f542c3 35 #:use-module (guix build-system perl)
23f3cbb8 36 #:use-module (gnu packages backup)
73f542c3 37 #:use-module (gnu packages base)
646898b3 38 #:use-module (gnu packages perl)
23f3cbb8 39 #:use-module (gnu packages pkg-config)
82aa2a28 40 #:use-module (gnu packages valgrind)
646898b3 41 #:use-module ((srfi srfi-1) #:select (last)))
a268f085 42
6a92093d
LC
43(define-public zlib
44 (package
45 (name "zlib")
209e09fa 46 (version "1.2.8")
6a92093d
LC
47 (source
48 (origin
87f5d366 49 (method url-fetch)
a67f97fe
CR
50 (uri (list (string-append "http://zlib.net/zlib-"
51 version ".tar.gz")
52 (string-append "mirror://sourceforge/libpng/zlib-"
53 version ".tar.gz")))
6a92093d
LC
54 (sha256
55 (base32
209e09fa 56 "039agw5rqvqny92cpkrfn243x2gd4xn13hs3xi6isk55d2vqqr9n"))))
6a92093d
LC
57 (build-system gnu-build-system)
58 (arguments
59 `(#:phases (alist-replace
60 'configure
61 (lambda* (#:key outputs #:allow-other-keys)
e67253db 62 ;; Zlib's home-made `configure' fails when passed
6a92093d
LC
63 ;; extra flags like `--enable-fast-install', so we need to
64 ;; invoke it with just what it understand.
65 (let ((out (assoc-ref outputs "out")))
e67253db
JD
66 ;; 'configure' doesn't understand '--host'.
67 ,@(if (%current-target-system)
68 `((setenv "CHOST" ,(%current-target-system)))
69 '())
70 (zero?
71 (system* "./configure"
72 (string-append "--prefix=" out)))))
6a92093d
LC
73 %standard-phases)))
74 (home-page "http://zlib.net/")
35b9e423 75 (synopsis "Compression library")
6a92093d
LC
76 (description
77 "zlib is designed to be a free, general-purpose, legally unencumbered --
78that is, not covered by any patents -- lossless data-compression library for
79use on virtually any computer hardware and operating system. The zlib data
35b9e423 80format is itself portable across platforms. Unlike the LZW compression method
6a92093d
LC
81used in Unix compress(1) and in the GIF image format, the compression method
82currently used in zlib essentially never expands the data. (LZW can double or
83triple the file size in extreme cases.) zlib's memory footprint is also
84independent of the input data and can be reduced, if necessary, at some cost
85in compression.")
4a44e743 86 (license license:zlib)))
6a92093d 87
ee97be9f
RW
88(define-public fastjar
89 (package
90 (name "fastjar")
91 (version "0.98")
92 (source (origin
93 (method url-fetch)
94 (uri (string-append "mirror://savannah/fastjar/fastjar-"
95 version ".tar.gz"))
96 (sha256
97 (base32
98 "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi"))))
99 (build-system gnu-build-system)
100 (inputs `(("zlib" ,zlib)))
101 (home-page "http://savannah.nongnu.org/projects/fastjar")
102 (synopsis "Replacement for Sun's 'jar' utility")
103 (description
104 "FastJar is an attempt to create a much faster replacement for Sun's 'jar'
105utility. Instead of being written in Java, FastJar is written in C.")
106 (license license:gpl2+)))
107
58593975
RW
108(define-public libtar
109 (package
110 (name "libtar")
111 (version "1.2.11")
112 (source (origin
113 (method url-fetch)
114 (uri (string-append
115 "ftp://ftp.feep.net/pub/software/libtar/libtar-"
116 version ".tar.gz"))
117 (sha256
118 (base32
119 "1f3vx1wa69a6c5y0z0aakd81gygirdcm0vimazg433q8nyvfybja"))))
120 (build-system gnu-build-system)
121 (arguments `(#:tests? #f)) ;no "check" target
122 (synopsis "C library for manipulating POSIX tar files")
123 (description
124 "libtar is a C library for manipulating POSIX tar files. It handles
125adding and extracting files to/from a tar archive.")
126 (home-page "http://www.feep.net/libtar/")
127 (license license:bsd-3)))
128
a268f085
LC
129(define-public gzip
130 (package
131 (name "gzip")
2a511f7a 132 (version "1.6")
a268f085 133 (source (origin
87f5d366 134 (method url-fetch)
0db342a5 135 (uri (string-append "mirror://gnu/gzip/gzip-"
a268f085
LC
136 version ".tar.gz"))
137 (sha256
138 (base32
2a511f7a 139 "0zlgdm4v3dndrbiz7b67mbbj25dpwqbmbzjiycssvrfrcfvq7swp"))))
a268f085 140 (build-system gnu-build-system)
f50d2669 141 (synopsis "General file (de)compression (using lzw)")
a268f085
LC
142 (arguments
143 ;; FIXME: The test suite wants `less', and optionally Perl.
144 '(#:tests? #f))
145 (description
79c311b8
LC
146 "GNU Gzip provides data compression and decompression utilities; the
147typical extension is \".gz\". Unlike the \"zip\" format, it compresses a single
148file; as a result, it is often used in conjunction with \"tar\", resulting in
149\".tar.gz\" or \".tgz\", etc.")
4a44e743 150 (license license:gpl3+)
a268f085
LC
151 (home-page "http://www.gnu.org/software/gzip/")))
152
153(define-public bzip2
9b1bf330 154 (let ((build-shared-lib
a268f085
LC
155 ;; Build a shared library.
156 '(lambda* (#:key inputs #:allow-other-keys)
f678f6d9 157 (patch-makefile-SHELL "Makefile-libbz2_so")
a268f085
LC
158 (zero? (system* "make" "-f" "Makefile-libbz2_so"))))
159 (install-shared-lib
160 '(lambda* (#:key outputs #:allow-other-keys)
161 (let* ((out (assoc-ref outputs "out"))
162 (libdir (string-append out "/lib")))
163 (for-each (lambda (file)
164 (let ((base (basename file)))
165 (format #t "installing `~a' to `~a'~%"
166 base libdir)
167 (copy-file file
168 (string-append libdir "/" base))))
ab4fab19
LC
169 (find-files "." "^libbz2\\.so")))))
170 (set-cross-environment
171 '(lambda* (#:key target #:allow-other-keys)
172 (substitute* (find-files "." "Makefile")
173 (("CC=.*$")
174 (string-append "CC = " target "-gcc\n"))
175 (("AR=.*$")
176 (string-append "AR = " target "-ar\n"))
177 (("RANLIB=.*$")
178 (string-append "RANLIB = " target "-ranlib\n"))
179 (("^all:(.*)test" _ prerequisites)
180 ;; Remove 'all' -> 'test' dependency.
181 (string-append "all:" prerequisites "\n"))))))
a268f085
LC
182 (package
183 (name "bzip2")
184 (version "1.0.6")
185 (source (origin
87f5d366 186 (method url-fetch)
a268f085
LC
187 (uri (string-append "http://www.bzip.org/" version "/bzip2-"
188 version ".tar.gz"))
189 (sha256
190 (base32
191 "1kfrc7f0ja9fdn6j1y6yir6li818npy6217hvr3wzmnmzhs8z152"))))
192 (build-system gnu-build-system)
193 (arguments
194 `(#:modules ((guix build gnu-build-system)
195 (guix build utils)
196 (srfi srfi-1))
197 #:phases
ab4fab19
LC
198 ,(if (%current-target-system)
199
200 ;; Cross-compilation: use the cross tools.
201 `(alist-cons-before
202 'build 'build-shared-lib ,build-shared-lib
203 (alist-cons-after
9b1bf330
LC
204 'install 'install-shared-lib ,install-shared-lib
205 (alist-replace 'configure ,set-cross-environment
206 %standard-phases)))
ab4fab19
LC
207
208 ;; Native compilation: build the shared library.
209 `(alist-cons-before
210 'build 'build-shared-lib ,build-shared-lib
211 (alist-cons-after
9b1bf330
LC
212 'install 'install-shared-lib ,install-shared-lib
213 (alist-delete 'configure %standard-phases))))
ab4fab19 214
a268f085 215 #:make-flags (list (string-append "PREFIX="
ab4fab19
LC
216 (assoc-ref %outputs "out")))
217
218 ;; Don't attempt to run the tests when cross-compiling.
219 ,@(if (%current-target-system)
220 '(#:tests? #f)
221 '())))
35b9e423 222 (synopsis "High-quality data compression program")
a268f085
LC
223 (description
224 "bzip2 is a freely available, patent free (see below), high-quality data
225compressor. It typically compresses files to within 10% to 15% of the best
226available techniques (the PPM family of statistical compressors), whilst
227being around twice as fast at compression and six times faster at
228decompression.")
166191b3 229 (license (license:non-copyleft "file://LICENSE"
4a44e743 230 "See LICENSE in the distribution."))
a268f085
LC
231 (home-page "http://www.bzip.org/"))))
232
5d47eab0
EF
233(define-public pbzip2
234 (package
235 (name "pbzip2")
236 (version "1.1.12")
237 (source (origin
238 (method url-fetch)
21b2ec4d
EF
239 (uri (string-append "https://launchpad.net/pbzip2/"
240 (version-major+minor version) "/" version
241 "/+download/" name "-" version ".tar.gz"))
5d47eab0
EF
242 (sha256
243 (base32
244 "1vk6065dv3a47p86vmp8hv3n1ygd9hraz0gq89gvzlx7lmcb6fsp"))))
245 (build-system gnu-build-system)
246 (inputs
b3546174 247 `(("bzip2" ,bzip2)))
5d47eab0
EF
248 (arguments
249 `(#:tests? #f ; no tests
250 #:phases (modify-phases %standard-phases
21b2ec4d
EF
251 (delete 'configure))
252 #:make-flags (list (string-append "PREFIX=" %output))))
5d47eab0
EF
253 (home-page "http://compression.ca/pbzip2/")
254 (synopsis "Parallel bzip2 implementation")
255 (description
256 "Pbzip2 is a parallel implementation of the bzip2 block-sorting file
257compressor that uses pthreads and achieves near-linear speedup on SMP machines.
21b2ec4d 258The output of this version is fully compatible with bzip2 v1.0.2 (i.e. anything
5d47eab0
EF
259compressed with pbzip2 can be decompressed with bzip2).")
260 (license (license:non-copyleft "file://COPYING"
21b2ec4d 261 "See COPYING in the distribution."))))
5d47eab0 262
a268f085
LC
263(define-public xz
264 (package
265 (name "xz")
4655f515 266 (version "5.2.2")
a268f085 267 (source (origin
87f5d366 268 (method url-fetch)
52d76b64
LC
269 (uri (list (string-append "http://tukaani.org/xz/xz-" version
270 ".tar.gz")
271 (string-append "http://multiprecision.org/guix/xz-"
272 version ".tar.gz")))
a268f085
LC
273 (sha256
274 (base32
4655f515 275 "18h2k4jndhzjs8ln3a54qdnfv59y6spxiwh9gpaqniph6iflvpvk"))))
a268f085 276 (build-system gnu-build-system)
35b9e423 277 (synopsis "General-purpose data compression")
a268f085
LC
278 (description
279 "XZ Utils is free general-purpose data compression software with high
280compression ratio. XZ Utils were written for POSIX-like systems, but also
281work on some not-so-POSIX systems. XZ Utils are the successor to LZMA Utils.
282
283The core of the XZ Utils compression code is based on LZMA SDK, but it has
284been modified quite a lot to be suitable for XZ Utils. The primary
285compression algorithm is currently LZMA2, which is used inside the .xz
286container format. With typical files, XZ Utils create 30 % smaller output
287than gzip and 15 % smaller output than bzip2.")
38bbd61d 288 (license (list license:gpl2+ license:lgpl2.1+)) ; bits of both
a268f085 289 (home-page "http://tukaani.org/xz/")))
c6eac761
LC
290
291(define-public lzo
292 (package
293 (name "lzo")
c0ec516d 294 (version "2.09")
c6eac761
LC
295 (source
296 (origin
297 (method url-fetch)
298 (uri (string-append "http://www.oberhumer.com/opensource/lzo/download/lzo-"
299 version ".tar.gz"))
300 (sha256
301 (base32
c0ec516d 302 "0k5kpj3jnsjfxqqkblpfpx0mqcy86zs5fhjhgh2kq1hksg7ag57j"))))
c6eac761 303 (build-system gnu-build-system)
165fd9d5 304 (arguments '(#:configure-flags '("--enable-shared")))
c6eac761
LC
305 (home-page "http://www.oberhumer.com/opensource/lzo")
306 (synopsis
e881752c 307 "Data compression library suitable for real-time data de-/compression")
c6eac761
LC
308 (description
309 "LZO is a data compression library which is suitable for data
310de-/compression in real-time. This means it favours speed over
311compression ratio.
312
313LZO is written in ANSI C. Both the source code and the compressed data
314format are designed to be portable across platforms.")
4a44e743 315 (license license:gpl2+)))
0f323dad 316
a9f48ff0
EB
317(define-public lzop
318 (package
319 (name "lzop")
320 (version "1.03")
321 (source
322 (origin
323 (method url-fetch)
324 (uri (string-append "http://www.lzop.org/download/lzop-"
325 version ".tar.gz"))
326 (sha256
327 (base32
328 "1jdjvc4yjndf7ihmlcsyln2rbnbaxa86q4jskmkmm7ylfy65nhn1"))))
329 (build-system gnu-build-system)
330 (inputs `(("lzo" ,lzo)))
331 (home-page "http://www.lzop.org/")
332 (synopsis "Compress or expand files")
333 (description
334 "Lzop is a file compressor which is very similar to gzip. Lzop uses the
335LZO data compression library for compression services, and its main advantages
336over gzip are much higher compression and decompression speed (at the cost of
337some compression ratio).")
338 (license license:gpl2+)))
339
0f323dad
LC
340(define-public lzip
341 (package
342 (name "lzip")
275a7711 343 (version "1.16")
0f323dad
LC
344 (source (origin
345 (method url-fetch)
346 (uri (string-append "mirror://savannah/lzip/lzip-"
347 version ".tar.gz"))
348 (sha256
349 (base32
275a7711 350 "0l9724rw1l3hg2ldr3n7ihqich4m9nc6y7l302bvdj4jmxdw530j"))))
0f323dad
LC
351 (build-system gnu-build-system)
352 (home-page "http://www.nongnu.org/lzip/lzip.html")
353 (synopsis "Lossless data compressor based on the LZMA algorithm")
354 (description
355 "Lzip is a lossless data compressor with a user interface similar to the
356one of gzip or bzip2. Lzip decompresses almost as fast as gzip and compresses
357more than bzip2, which makes it well suited for software distribution and data
358archiving. Lzip is a clean implementation of the LZMA algorithm.")
359 (license license:gpl3+)))
b357faac
AE
360
361(define-public sharutils
362 (package
363 (name "sharutils")
9a59ce24 364 (version "4.15.2")
b357faac
AE
365 (source
366 (origin
367 (method url-fetch)
368 (uri (string-append "mirror://gnu/sharutils/sharutils-"
369 version ".tar.xz"))
370 (sha256
371 (base32
9a59ce24 372 "16isapn8f39lnffc3dp4dan05b7x6mnc76v6q5nn8ysxvvvwy19b"))))
b357faac
AE
373 (build-system gnu-build-system)
374 (inputs
375 `(("which" ,which)))
376 (arguments
377 `(#:phases
378 (alist-cons-after
379 'patch-source-shebangs 'unpatch-source-shebang
380 ;; revert the patch-shebang phase on a script which is
381 ;; in fact test data
d4bf49b1 382 (lambda _
b357faac
AE
383 (substitute* "tests/shar-1.ok"
384 (((which "sh")) "/bin/sh")))
385 %standard-phases)))
386 (home-page "http://www.gnu.org/software/sharutils/")
387 (synopsis "Archives in shell scripts, uuencode/uudecode")
388 (description
79c311b8
LC
389 "GNU sharutils is a package for creating and manipulating shell
390archives that can be readily emailed. A shell archive is a file that can be
e881752c 391processed by a Bourne-type shell to unpack the original collection of files.
79c311b8 392This package is mostly for compatibility and historical interest.")
b357faac 393 (license license:gpl3+)))
28469ab0 394
646898b3
RW
395(define-public sfarklib
396 (package
397 (name "sfarklib")
979f9e8a 398 (version "2.24")
646898b3 399 (source (origin
979f9e8a
RW
400 (method url-fetch)
401 (uri (string-append "https://github.com/raboof/sfArkLib/archive/"
402 version ".tar.gz"))
403 (file-name (string-append name "-" version ".tar.gz"))
646898b3
RW
404 (sha256
405 (base32
979f9e8a 406 "0bzs2d98rk1xw9qwpnc7gmlbxwmwc3dg1rpn310afy9pq1k9clzi"))))
646898b3
RW
407 (build-system gnu-build-system)
408 (arguments
409 `(#:tests? #f ;no "check" target
410 #:phases
411 (modify-phases %standard-phases
412 (replace 'configure
413 (lambda* (#:key outputs #:allow-other-keys)
414 (substitute* "Makefile"
415 (("/usr/local") (assoc-ref outputs "out")))
416 #t)))))
417 (inputs
418 `(("zlib" ,zlib)))
419 (home-page "https://github.com/raboof/sfArkLib")
420 (synopsis "Library for SoundFont decompression")
421 (description
422 "SfArkLib is a C++ library for decompressing SoundFont files compressed
423with the sfArk algorithm.")
424 (license license:gpl3+)))
425
b5ad1659
RW
426(define-public sfarkxtc
427 (package
428 (name "sfarkxtc")
429 (version "b5e0a2ba39")
430 (source (origin
431 ;; There are no release tarballs, so we just fetch the latest
432 ;; commit at this time.
433 (method git-fetch)
434 (uri (git-reference
435 (url "https://github.com/raboof/sfarkxtc.git")
436 (commit version)))
437 (sha256
438 (base32
439 "0f5x6i46qfl6ry21s7g2p4sd4b2r1g4fb03yqi2vv4kq3saryhvj"))))
440 (build-system gnu-build-system)
441 (arguments
442 `(#:tests? #f ;no "check" target
443 #:phases
444 (modify-phases %standard-phases
445 (replace 'configure
446 (lambda* (#:key outputs #:allow-other-keys)
447 (substitute* "Makefile"
448 (("/usr/local") (assoc-ref outputs "out")))
449 #t)))))
450 (inputs
451 `(("zlib" ,zlib)
452 ("sfarklib" ,sfarklib)))
453 (home-page "https://github.com/raboof/sfarkxtc")
454 (synopsis "Basic sfArk decompressor")
455 (description "SfArk extractor converts SoundFonts in the compressed legacy
456sfArk file format to the uncompressed sf2 format.")
457 (license license:gpl3+)))
458
27f76fe6
TUBK
459(define-public libmspack
460 (package
461 (name "libmspack")
462 (version "0.5")
463 (source
464 (origin
465 (method url-fetch)
466 (uri (string-append "http://www.cabextract.org.uk/libmspack/libmspack-"
467 version "alpha.tar.gz"))
468 (sha256
469 (base32 "04413hynb7zizxnkgy9riik3612dwirkpr6fcjrnfl2za9sz4rw9"))))
470 (build-system gnu-build-system)
471 (home-page "http://www.cabextract.org.uk/libmspack/")
472 (synopsis "Compression tools for some formats used by Microsoft")
473 (description
474 "The purpose of libmspack is to provide both compression and
475decompression of some loosely related file formats used by Microsoft.")
476 (license license:lgpl2.1+)))
73f542c3
EB
477
478(define-public perl-compress-raw-bzip2
479 (package
480 (name "perl-compress-raw-bzip2")
481 (version "2.068")
482 (source
483 (origin
484 (method url-fetch)
485 (uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
486 "Compress-Raw-Bzip2-" version ".tar.gz"))
487 (sha256
488 (base32
489 "16hl58xppckldz05zdyid1l5gpaykzwvkq682h3rc3nilbhgjqqg"))))
490 (build-system perl-build-system)
491 ;; TODO: Use our bzip2 package.
492 (home-page "http://search.cpan.org/dist/Compress-Raw-Bzip2")
493 (synopsis "Low-level interface to bzip2 compression library")
494 (description "This module provides a Perl interface to the bzip2
495compression library.")
496 (license (package-license perl))))
8e18514a
EB
497
498(define-public perl-compress-raw-zlib
499 (package
500 (name "perl-compress-raw-zlib")
501 (version "2.068")
502 (source
503 (origin
504 (method url-fetch)
505 (uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
506 "Compress-Raw-Zlib-" version ".tar.gz"))
507 (sha256
508 (base32
509 "06q7n87g26nn5gv4z2p31ca32f6zk124hqxc25rfgkjd3qi5798i"))))
510 (build-system perl-build-system)
511 (inputs
512 `(("zlib" ,zlib)))
513 (arguments
514 `(#:phases (modify-phases %standard-phases
515 (add-before
40b084a3 516 'configure 'configure-zlib
8e18514a
EB
517 (lambda* (#:key inputs #:allow-other-keys)
518 (call-with-output-file "config.in"
519 (lambda (port)
520 (format port "
521BUILD_ZLIB = False
522INCLUDE = ~a/include
523LIB = ~:*~a/lib
524OLD_ZLIB = False
525GZIP_OS_CODE = AUTO_DETECT"
526 (assoc-ref inputs "zlib")))))))))
527 (home-page "http://search.cpan.org/dist/Compress-Raw-Zlib")
528 (synopsis "Low-level interface to zlib compression library")
529 (description "This module provides a Perl interface to the zlib
530compression library.")
531 (license (package-license perl))))
8aaafd34
EB
532
533(define-public perl-io-compress
534 (package
535 (name "perl-io-compress")
536 (version "2.068")
537 (source
538 (origin
539 (method url-fetch)
540 (uri (string-append "mirror://cpan/authors/id/P/PM/PMQS/"
541 "IO-Compress-" version ".tar.gz"))
542 (sha256
543 (base32
544 "0dy0apjp7j9dfkzfjspjd3z9gh26srx5vac72g59bkkz1jf8s1gs"))))
545 (build-system perl-build-system)
546 (propagated-inputs
547 `(("perl-compress-raw-zlib" ,perl-compress-raw-zlib) ; >=2.068
548 ("perl-compress-raw-bzip2" ,perl-compress-raw-bzip2))) ; >=2.068
549 (home-page "http://search.cpan.org/dist/IO-Compress")
550 (synopsis "IO Interface to compressed files/buffers")
551 (description "IO-Compress provides a Perl interface to allow reading and
552writing of compressed data created with the zlib and bzip2 libraries.")
553 (license (package-license perl))))
82aa2a28
LF
554
555(define-public lz4
556 (package
557 (name "lz4")
558 (version "131")
559 (source
560 (origin
561 (method url-fetch)
562 (uri (string-append "https://github.com/Cyan4973/lz4/archive/"
563 "r" version ".tar.gz"))
564 (sha256
565 (base32 "1vfg305zvj50hwscad24wan9jar6nqj14gdk2hqyr7bb9mhh0kcx"))
566 (file-name (string-append name "-" version ".tar.gz"))))
567 (build-system gnu-build-system)
568 (native-inputs `(("valgrind" ,valgrind)))
569 (arguments
570 `(#:test-target "test"
571 #:parallel-tests? #f ; tests fail if run in parallel
572 #:make-flags (list "CC=gcc"
573 (string-append "PREFIX=" (assoc-ref %outputs "out")))
574 #:phases (modify-phases %standard-phases
575 (delete 'configure))))
576 (home-page "https://github.com/Cyan4973/lz4")
577 (synopsis "Compression algorithm focused on speed")
578 (description "LZ4 is a lossless compression algorithm, providing
579compression speed at 400 MB/s per core (0.16 Bytes/cycle). It also features an
580extremely fast decoder, with speed in multiple GB/s per core (0.71 Bytes/cycle).
581A high compression derivative, called LZ4_HC, is also provided. It trades CPU
582time for compression ratio.")
583 ;; The libraries (lz4, lz4hc, and xxhash are BSD licenced. The command
584 ;; line interface programs (lz4, fullbench, fuzzer, datagen) are GPL2+.
585 (license (list license:bsd-2 license:gpl2+))))
dd8d6d65
SB
586
587(define-public squashfs-tools
588 (package
589 (name "squashfs-tools")
590 (version "4.3")
591 (source (origin
592 (method url-fetch)
593 (uri (string-append "mirror://sourceforge/squashfs/"
594 "squashfs" version ".tar.gz"))
595 (sha256
596 (base32
597 "1xpklm0y43nd9i6jw43y2xh5zvlmj9ar2rvknh0bh7kv8c95aq0d"))))
598 (build-system gnu-build-system)
599 (arguments
600 '(#:tests? #f ; no check target
601 #:make-flags
602 (list "CC=gcc"
603 "XZ_SUPPORT=1"
604 "LZO_SUPPORT=1"
605 "LZ4_SUPPORT=1"
606 (string-append "INSTALL_DIR=" %output "/bin"))
607 #:phases
608 (modify-phases %standard-phases
609 (replace 'configure
610 (lambda _
611 (chdir "squashfs-tools"))))))
612 (inputs
613 `(("lz4" ,lz4)
614 ("lzo" ,lzo)
615 ("xz" ,xz)
616 ("zlib" ,zlib)))
617 (home-page "http://squashfs.sourceforge.net/")
618 (synopsis "Tools to create and extract squashfs filesystems")
619 (description
620 "Squashfs is a highly compressed read-only filesystem for Linux. It uses
621zlib to compress files, inodes, and directories. All blocks are packed to
622minimize the data overhead, and block sizes of between 4K and 1M are supported.
623It is intended to be used for archival use, for live CDs, and for embedded
624systems where low overhead is needed. This package allows you to create and
625extract such filesystems.")
626 (license license:gpl2+)))
820dc3f5
JM
627
628(define-public pigz
629 (package
630 (name "pigz")
631 (version "2.3.3")
632 (source (origin
633 (method url-fetch)
634 (uri (string-append "http://zlib.net/pigz/"
635 name "-" version ".tar.gz"))
636 (sha256
637 (base32
638 "172hdf26k4zmm7z8md7nl0dph2a7mhf3x7slb9bhfyff6as6g2sf"))))
639 (build-system gnu-build-system)
640 (arguments
641 `(#:phases
642 (modify-phases %standard-phases
643 (delete 'configure)
644 (replace 'install
645 (lambda* (#:key outputs #:allow-other-keys)
646 (let* ((out (assoc-ref outputs "out"))
647 (bin (string-append out "/bin"))
648 (man (string-append out "/share/man/man1")))
649 (install-file "pigz" bin)
650 (symlink "pigz" (string-append bin "/unpigz"))
651 (install-file "pigz.1" man)
652 #t))))
653 #:make-flags (list "CC=gcc")
654 #:test-target "tests"))
655 (inputs `(("zlib" ,zlib)))
656 (home-page "http://zlib.net/pigz/")
657 (synopsis "Parallel implementation of gzip")
658 (description
659 "This package provides a parallel implementation of gzip that exploits
660multiple processors and multiple cores when compressing data.")
661
662 ;; Things under zopfli/ are under ASL2.0, but 4 files at the top-level,
663 ;; written by Mark Adler, are under another non-copyleft license.
664 (license license:asl2.0)))
23f3cbb8
BW
665
666(define-public pixz
667 (package
668 (name "pixz")
669 (version "1.0.6")
670 (source (origin
671 (method url-fetch)
672 (uri (string-append
673 "https://github.com/vasi/pixz/releases/download/v" version
674 "/pixz-" version ".tar.xz"))
675 (sha256
676 (base32
677 "1s3j7zw6j5zi3fhdxg287ndr3wf6swac7z21mqd1pyiln530gi82"))))
678 (build-system gnu-build-system)
679 (native-inputs
680 `(("pkg-config" ,pkg-config)
681 ("libarchive" ,libarchive)))
682 (home-page "https://github.com/vasi/pixz")
683 (synopsis "Parallel indexing implementation of LZMA")
684 (description
685 "The existing XZ Utils provide great compression in the .xz file format,
686but they produce just one big block of compressed data. Pixz instead produces
687a collection of smaller blocks which makes random access to the original data
688possible and can compress in parallel. This is especially useful for large
689tarballs.")
690 (license license:bsd-2)))