summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorjgart <jgart@dismail.de>2025-12-24 15:31:15 -0600
committerjgart <jgart@dismail.de>2025-12-24 15:34:13 -0600
commit0b1f37ded65dfbc4c2e1e15210f9a7da9087cd62 (patch)
treed1bb21895785ef6b573565f782ec694cda00b299 /gnu
parent479a2f7edeee0d34b79fbbd3365c5070b218fb5d (diff)
gnu: Add hare-scfg.
* gnu/packages/hare-xyz.scm (hare-scfg): New variable. Change-Id: Ie7c48a96c0639cf0d38f28e082943c8575e9937c
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/hare-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/hare-xyz.scm b/gnu/packages/hare-xyz.scm
index f7f2c5ff345..8d87a026e72 100644
--- a/gnu/packages/hare-xyz.scm
+++ b/gnu/packages/hare-xyz.scm
@@ -88,6 +88,28 @@
(description "This package provides JSON support for Hare.")
(license license:mpl2.0)))
+(define-public hare-scfg
+ (package
+ (name "hare-scfg")
+ (version "0.25.2")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://git.sr.ht/~chrisppy/hare-scfg")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1nj9gqvnvmwh3j39rj1h856p5qzghv5in01rxi4x74mqirl5q2ch"))))
+ (build-system hare-build-system)
+ (supported-systems %hare-supported-systems)
+ (home-page "https://git.sr.ht/~chrisppy/hare-scfg")
+ (synopsis "Hare library for a simple configuration file format")
+ (description "This package provides a Hare library for parsing
+@uref{https://git.sr.ht/~emersion/scfg, scfg}, a simple configuration file
+format with one directive per line.")
+ (license license:mpl2.0)))
+
(define-public hare-ssh
(package
(name "hare-ssh")