summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2025-12-06 18:12:10 -0600
committerjgart <jgart@dismail.de>2025-12-06 18:12:29 -0600
commit31f1d0fe2ed3dbe31c0f4d8a28beeb732e471cfd (patch)
tree066f03ee4656a727c143657f576e523a20f55a34
parent32edabdabd58e74edd7b57774fea977084cdf826 (diff)
gnu: Add hare-json.
* gnu/packages/hare-xyz.scm (hare-json): New variable. Change-Id: Iebd387efffc62b2e29ba3e78a2d61275bc349dc8
-rw-r--r--gnu/packages/hare-xyz.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm
index ec9580ed785..2fe257423f7 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 <lilah@lunabee.space>
+;;; Copyright © 2025 jgart <jgart@dismail.de>
;;;
;;; 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")