guix_mirror_bot pushed a commit to branch master
in repository guix.

commit d68d5353275e3e8c02f4c9028895a5fd7402a55c
Author: jgart <[email protected]>
AuthorDate: Thu Dec 11 23:40:43 2025 -0600

    gnu: Add hare-ev.
    
    * gnu/packages/hare-xyz.scm (hare-ev): New variable.
    
    Change-Id: I06bd80eed0c169af7b1a25a3e22c289386419697
    Signed-off-by: jgart <[email protected]>
---
 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 223c922ffd..f7f2c5ff34 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -48,6 +48,26 @@
     (description "This package provides compression algorithms for Hare.")
     (license license:mpl2.0)))
 
+(define-public hare-ev
+  (package
+    (name "hare-ev")
+    (version "0.25.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://git.sr.ht/~sircmpwn/hare-ev";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1ak9anvzg2qfdsvxpcszshimw5cqbm52zfq7kwx7z0yf6qi6zm0f"))))
+    (build-system hare-build-system)
+    (supported-systems %hare-supported-systems)
+    (home-page "https://sr.ht/~sircmpwn/hare-ev";)
+    (synopsis "Event loop for Hare")
+    (description "This package provides an event loop for Hare programs.")
+    (license license:mpl2.0)))
+
 (define-public hare-json
   (package
     (name "hare-json")

Reply via email to