diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-23 21:45:21 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-03-23 21:45:21 -0400 |
commit | 839bb4616f13171a23ad7937bf57d0a01d61d42a (patch) | |
tree | 01de78a5ce973b9fb7ac0f9216d64f736f8e163d /gnu/packages/compression.scm | |
parent | 0357bbbcd850f9220078a62da3c30358b8983765 (diff) | |
parent | ef71e3290916583973724316e815cee840c1b6d8 (diff) |
Merge remote-tracking branch 'origin/master' into staging.
With resolved conflicts in:
gnu/packages/ibus.scm
gnu/packages/image.scm
gnu/packages/lisp.scm
gnu/packages/virtualization.scm
Diffstat (limited to 'gnu/packages/compression.scm')
-rw-r--r-- | gnu/packages/compression.scm | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm index 653bde38d8..e58fd65e49 100644 --- a/gnu/packages/compression.scm +++ b/gnu/packages/compression.scm @@ -1400,7 +1400,7 @@ for most inputs, but the resulting compressed files are anywhere from 20% to ((target-x86-32?) (list nasm)) (else '()))) - (home-page "http://p7zip.sourceforge.net/") + (home-page "https://p7zip.sourceforge.net/") (synopsis "Command-line file archiver with high compression ratio") (description "p7zip is a command-line port of 7-Zip, a file archiver that handles the 7z format which features very high compression ratios.") @@ -2577,7 +2577,7 @@ file compression algorithm.") (define-public xarchiver (package (name "xarchiver") - (version "0.5.4.17") + (version "0.5.4.20") (source (origin (method git-fetch) @@ -2586,7 +2586,7 @@ file compression algorithm.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "00adrjpxqlaccrwjf65w3vhxfswdj0as8aj263c6f9b85llypc5v")))) + (base32 "1bgc8r2ii96ghslfscpjhswjgscvw65h2rjr0zvfqn8saqh1ydrv")))) (build-system glib-or-gtk-build-system) (native-inputs (list gettext-minimal intltool libxslt pkg-config)) @@ -2807,6 +2807,27 @@ serializations such as ASN.1 and MessagePack.") (license license:expat) (home-page "https://github.com/PJK/libcbor"))) +(define-public lzfse + (package + (name "lzfse") + (version "1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/lzfse/lzfse") + (commit (string-append "lzfse-" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mfh6y6vpvxsdwmqmfbkqkwvxc0pz2dqqc72c6fk9sbsrxxaghd5")))) + (build-system cmake-build-system) + (home-page "https://github.com/lzfse/lzfse") + (synopsis "LZFSE compression library and command line tool") + (description "LZFSE is a Lempel-Ziv style data compression algorithm using +Finite State Entropy coding. It targets similar compression rates at higher +compression and decompression speed compared to Deflate using Zlib.") + (license license:bsd-3))) + (define-public fcrackzip (package (name "fcrackzip") |