aboutsummaryrefslogtreecommitdiff
path: root/gnu/compression.scm
blob: 0418e80a15879225a9f87915711213395e0ecafa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2022 Mathieu Othacehe <othacehe@gnu.org>
;;;
;;; This file is part of GNU Guix.
;;;
;;; GNU Guix is free software; you can redistribute it and/or modify it
;;; under the terms of the GNU General Public License as published by
;;; the Free Software Foundation; either version 3 of the License, or (at
;;; your option) any later version.
;;;
;;; GNU Guix is distributed in the hope that it will be useful, but
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;;; GNU General Public License for more details.
;;;
;;; You should have received a copy of the GNU General Public License
;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

(define-module (gnu compression)
  #:use-module (guix gexp)
  #:use-module (guix ui)
  #:use-module ((gnu packages compression) #:hide (zip))
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-9)
  #:use-module (ice-9 match)
  #:export (compressor
            compressor?
            compressor-name
            compressor-extension
            compressor-command
            %compressors
            lookup-compressor))

;; Type of a compression tool.
(define-record-type <compressor>
  (compressor name extension command)
  compressor?
  (name       compressor-name)      ;string (e.g., "gzip")
  (extension  compressor-extension) ;string (e.g., ".lz")
  (command    compressor-command))  ;gexp (e.g., #~(list "/gnu/store/…/gzip"
                                    ;                    "-9n" ))

(define %compressors
  ;; Available compression tools.
  (list (compressor "gzip"  ".gz"
                    #~(list #+(file-append gzip "/bin/gzip") "-9n"))
        (compressor "lzip"  ".lz"
                    #~(list #+(file-append lzip "/bin/lzip") "-9"))
        (compressor "xz"    ".xz"
                    #~(append (list #+(file-append xz "/bin/xz")
                                    "-e")
                              (%xz-parallel-args)))
        (compressor "bzip2" ".bz2"
                    #~(list #+(file-append bzip2 "/bin/bzip2") "-9"))
        (compressor "zstd" ".zst"
                    ;; The default level 3 compresses better than gzip in a
                    ;; fraction of the time, while the highest level 19
                    ;; (de)compresses more slowly and worse than xz.
                    #~(list #+(file-append zstd "/bin/zstd") "-3"))
        (compressor "none" "" #f)))

(define (lookup-compressor name)
  "Return the compressor object called NAME.  Error out if it could not be
found."
  (or (find (match-lambda
              (($ <compressor> name*)
               (string=? name* name)))
            %compressors)
      (leave (G_ "~a: compressor not found~%") name)))
mmit/gnu/packages/password-utils.scm?id=4bbad495a799c99499fa0d3aa87e4915f6ccaf7d'>gnu: hashcat: Fix cross-compilation.Maxime Devos 2022-09-04gnu: hashcat: Rewrite with G-exps.Maxime Devos 2022-09-04gnu: hashcat: Unbundle everything but LZMA-SDK.Maxime Devos 2022-09-04gnu: hashcat: Don't embed timestamp, fixing reproducibility.Maxime Devos 2022-09-02gnu: hashcat: Update to 6.2.5.Hendursaga 2022-07-31gnu: qttools: Rename to qttools-5.Maxim Cournoyer 2022-07-31gnu: qtsvg: Rename variable to qtsvg-5.Maxim Cournoyer 2022-06-01Merge remote-tracking branch 'origin/master' into stagingEfraim Flashner 2022-05-31gnu: john-the-ripper-jumbo: Use Python 3.Maxim Cournoyer 2022-05-31gnu: Remove sala.Maxim Cournoyer 2022-04-28Merge branch 'master' into stagingLudovic Courtès 2022-04-06gnu: keepassxc: Update to 2.7.1.Efraim Flashner 2022-03-22gnu: keepassxc: Improve package style.Nicolas Goaziou 2022-03-22gnu: keepassxc: Update to 2.7.0.Nicolas Goaziou 2022-03-21Merge branch 'master' into staging.Maxim Cournoyer 2022-03-16gnu: Add tessen.Tanguy Le Carrour 2022-01-25Merge branch 'master' into staging.Maxim Cournoyer 2022-01-17Revert "gnu: password-store: Fix failing test suite."Marius Bakke 2022-01-17gnu: password-store: Ensure compatibility with tree@2.0.Marius Bakke 2022-01-15gnu: password-store: Fix failing test suite.Tobias Geerinckx-Rice 2022-01-15gnu: password-store: Remove input labels.Marius Bakke 2022-01-14gnu: keepassxc: Add release-monitoring-property.Efraim Flashner 2021-12-13gnu: Simplify package inputs.Ludovic Courtès 2021-12-06gnu: fpm2: Build with '-fcommon'.Ludovic Courtès