This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6bf7144c79 gnu: Add lzfse.
6bf7144c79 is described below
commit 6bf7144c79fad7a88780a672b96e677d0907bcc9
Author: r0man <[email protected]>
AuthorDate: Sun Jan 22 13:00:53 2023 +0100
gnu: Add lzfse.
* gnu/packages/compression.scm (lzfse): New variable.
Signed-off-by: Nicolas Goaziou <[email protected]>
---
gnu/packages/compression.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/compression.scm b/gnu/packages/compression.scm
index 653bde38d8..42766a707a 100644
--- a/gnu/packages/compression.scm
+++ b/gnu/packages/compression.scm
@@ -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")