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 31f1d0fe2e gnu: Add hare-json.
31f1d0fe2e is described below
commit 31f1d0fe2ed3dbe31c0f4d8a28beeb732e471cfd
Author: jgart <[email protected]>
AuthorDate: Sat Dec 6 18:12:10 2025 -0600
gnu: Add hare-json.
* gnu/packages/hare-xyz.scm (hare-json): New variable.
Change-Id: Iebd387efffc62b2e29ba3e78a2d61275bc349dc8
---
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 ec9580ed78..2fe257423f 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2025 Lilah Tascheter <[email protected]>
+;;; Copyright © 2025 jgart <[email protected]>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -27,6 +28,26 @@
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages))
+(define-public hare-json
+ (package
+ (name "hare-json")
+ (version "0.25.2.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~sircmpwn/hare-json")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1dkvjkxap4vm5lc04y22mdk7mn8ainljak6wc4bhjf0zq6la2w0v"))))
+ (build-system hare-build-system)
+ (supported-systems %hare-supported-systems)
+ (home-page "https://sr.ht/~sircmpwn/hare-json")
+ (synopsis "JSON support for Hare")
+ (description "This package provides JSON support for Hare.")
+ (license license:mpl2.0)))
+
(define-public hare-ssh
(package
(name "hare-ssh")