mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
Merge branch 'master' into core-updates-frozen
This commit is contained in:
commit
d9dfbf886d
258 changed files with 218381 additions and 180777 deletions
|
@ -2581,6 +2581,42 @@ with their error correction data losslessly rearranged for better compression,
|
|||
to their original, binary CD format.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public libdeflate
|
||||
(package
|
||||
(name "libdeflate")
|
||||
(version "1.8")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/ebiggers/libdeflate")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0nw1zhr2s6ffcc3s0n5wsshvjb6pmybwapagli135zzn2fx1pdiz"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:make-flags
|
||||
(list (string-append "CC=" ,(cc-for-target))
|
||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure))))
|
||||
(inputs
|
||||
`(("zlib" ,zlib)))
|
||||
(home-page "https://github.com/ebiggers/libdeflate")
|
||||
(synopsis "Library for DEFLATE/zlib/gzip compression and decompression")
|
||||
(description "Libdeflate is a library for fast, whole-buffer DEFLATE-based
|
||||
compression and decompression. The supported formats are:
|
||||
|
||||
@enumerate
|
||||
@item DEFLATE (raw)
|
||||
@item zlib (a.k.a. DEFLATE with a zlib wrapper)
|
||||
@item gzip (a.k.a. DEFLATE with a gzip wrapper)
|
||||
@end enumerate
|
||||
")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public tarlz
|
||||
(package
|
||||
(name "tarlz")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue