guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a42af54c73062ba13f765545037dfd43f47619f5
Author: jgart <[email protected]>
AuthorDate: Thu Dec 25 00:55:26 2025 -0600

    gnu: Add hare-xml.
    
    * gnu/packages/hare-xyz.scm (hare-xml): New variable.
    
    Change-Id: I50ac2253ef16edbb1147ec56346f381b102586a9
---
 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 8d87a026e7..57fe94599c 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -243,3 +243,23 @@ language.")
     (description "This package is a set of gtk-layer-shell bindings for the 
Hare
 language.")
     (license license:mpl2.0)))
+
+(define-public hare-xml
+  (package
+    (name "hare-xml")
+    (version "0.25.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://git.sr.ht/~sircmpwn/hare-xml";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1h216z59piz1g7a0iiy1qic1wj8lbajw3mw5zw9nid0bz2vx81b0"))))
+    (build-system hare-build-system)
+    (supported-systems %hare-supported-systems)
+    (home-page "https://git.sr.ht/~sircmpwn/hare-xml";)
+    (synopsis "XML support for Hare")
+    (description "This package provides XML support for Hare.")
+    (license license:mpl2.0)))

Reply via email to