guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 05d45c847a8ca6c08243a9722b71b5cb940c06ea
Author: jgart <[email protected]>
AuthorDate: Thu Dec 25 00:58:05 2025 -0600
gnu: Add hare-irc.
* gnu/packages/hare-xyz.scm (hare-irc): New variable.
Change-Id: Id08a964246e1c7ae2d1f17fc822cf57ec516bfda
---
gnu/packages/hare-xyz.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm
index 57fe94599c..783e2787d2 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -88,6 +88,27 @@
(description "This package provides JSON support for Hare.")
(license license:mpl2.0)))
+(define-public hare-irc
+ (package
+ (name "hare-irc")
+ (version "0.25.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~sircmpwn/hare-irc")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ani8prdwjsfh8iqn5kfmkiim9ihl8dvbr28g69c037f6gbdb08v"))))
+ (build-system hare-build-system)
+ (supported-systems %hare-supported-systems)
+ (home-page "https://sr.ht/~sircmpwn/hare-irc")
+ (synopsis "IRC client protocol implementation for Hare")
+ (description "This package provides an implementation of the IRC client
+protocol for Hare programs, based on the @url{ircdocs.horse} specifications.")
+ (license license:mpl2.0)))
+
(define-public hare-scfg
(package
(name "hare-scfg")