<
aboutsummaryrefslogtreecommitdiff
path: root/doc/images/coreutils-bag-graph.dot
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2018-03-17 03:31:11 -0400
committerMark H Weaver <mhw@netris.org>2018-03-17 03:36:13 -0400
commit5a5b36322d1d45f9df08bc0059d8d249f48fcda2 (patch)
tree722b7c7e171849e498b9dac22cad8ca4e052d42f /doc/images/coreutils-bag-graph.dot
parent96c7fde7dd186ba9d0a60417fabeb15e9895f525 (diff)
downloadguix-5a5b36322d1d45f9df08bc0059d8d249f48fcda2.tar.gz
guix-5a5b36322d1d45f9df08bc0059d8d249f48fcda2.zip
gnu: guile-2.2/fixed: Remove vestigial (replacement #f).
* gnu/packages/guile.scm (guile-2.2/fixed)[replacement]: Remove field.
Diffstat (limited to 'doc/images/coreutils-bag-graph.dot')
0 files changed, 0 insertions, 0 deletions
)) (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)))