1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add hare-json.

* gnu/packages/hare-xyz.scm (hare-json): New variable.

Change-Id: Iebd387efffc62b2e29ba3e78a2d61275bc349dc8
This commit is contained in:
jgart
2025-12-06 18:12:10 -06:00
parent 32edabdabd
commit 31f1d0fe2e

View File

@@ -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")