This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6605984c2c gnu: Add hare-compress.
6605984c2c is described below
commit 6605984c2c6e714448481b7aedea1941e248c232
Author: jgart <[email protected]>
AuthorDate: Sat Dec 6 18:26:05 2025 -0600
gnu: Add hare-compress.
* gnu/packages/hare-xyz.scm (hare-compress): New variable.
Change-Id: I541cf758b305c2db97df799ae668dd8688474def
---
gnu/packages/hare-xyz.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm
index 2fe257423f..223c922ffd 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -28,6 +28,26 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages))
+(define-public hare-compress
+ (package
+ (name "hare-compress")
+ (version "0.25.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~sircmpwn/hare-compress")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0iwfqaaiin0zi97fi7p0p1v42lf78yf6cpyakpjhyyfhgk3bm4mk"))))
+ (build-system hare-build-system)
+ (supported-systems %hare-supported-systems)
+ (home-page "https://sr.ht/~sircmpwn/hare-compress")
+ (synopsis "Compression algorithms for Hare")
+ (description "This package provides compression algorithms for Hare.")
+ (license license:mpl2.0)))
+
(define-public hare-json
(package
(name "hare-json")