~ruther/guix-local

31f1d0fe2ed3dbe31c0f4d8a28beeb732e471cfd — jgart 2 months ago 32edabd
gnu: Add hare-json.

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

Change-Id: Iebd387efffc62b2e29ba3e78a2d61275bc349dc8
1 files changed, 21 insertions(+), 0 deletions(-)

M gnu/packages/hare-xyz.scm
M gnu/packages/hare-xyz.scm => gnu/packages/hare-xyz.scm +21 -0
@@ 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")