;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2022 Mathieu Othacehe ;;; ;;; 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 . (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 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 (($ name*) (string=? name* name))) %compressors) (leave (G_ "~a: compressor not found~%") name))) lkit.scm?id=51b1d5398793bf717a9d2cb6478efc7a173754fa'>gnu: polkit-qt: Use modular qt....David Craven 2016-04-14gnu: packages: Use 'search-patches' everywhere....Alex Kost 2016-02-27gnu: Fix misplaced commas (unquote)....Mark H Weaver 2016-02-21Update all sources from freedesktop.org to use https...Andy Wingo 2016-02-15gnu: polkit-qt: Build with qt-5....Efraim Flashner 2015-11-01services: 'polkit-service-type' can now be extended....Ludovic Courtès 2015-09-02gnu: polkit: Look for rules in /run/current-system/profile....Andy Wingo 2015-09-02gnu: polkit: Use elogind for seat management....Andy Wingo 2015-08-18Revert "PRELIMINARY: gnu: polkit: Work on making it functional in practice."...Mark H Weaver 2015-08-18PRELIMINARY: gnu: polkit: Work on making it functional in practice.Mark H Weaver 2015-07-11gnu: polkit: Update to 0.113....Mark H Weaver 2015-05-01gnu: polkit-qt: Add $libdir to RUNPATH....Ludovic Courtès 2015-01-11gnu: Move mozjs and nspr to (gnu packages gnuzilla)....宋文武 2014-11-11gnu: polkit: Propagate input glib....Andreas Enge 2014-11-10gnu: Add polkit-qt....Andreas Enge 2014-11-09gnu: Add polkit....Andreas Enge 2014-11-09gnu: Add nspr....Andreas Enge 2014-11-08gnu: Add mozjs (Mozilla Spidermonkey)....Andreas Enge