guix_mirror_bot pushed a commit to branch master
in repository guix.
commit a6aee58e22cf899f2a5d87c1c8b9d497fe3e7520
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:26:48 2025 +0100
gnu: Add go-github-com-ysmood-gson.
* gnu/packages/golang-xyz.scm (go-github-com-ysmood-gson): New variable.
Change-Id: I61271d57bb99c7c388b8da17e54b70dc9d3dff09
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index a1bd8d3f2c..28173fc4bc 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24715,6 +24715,30 @@ its real absolute path in the system.")
format for debugging and logging purposes.")
(license license:expat)))
+(define-public go-github-com-ysmood-gson
+ (package
+ (name "go-github-com-ysmood-gson")
+ (version "0.7.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ysmood/gson")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ha7w3igak5mfk4dgr0wdvn9sv9xdxwymihfin1d4ajgi975qzhf"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/ysmood/gson"))
+ (home-page "https://github.com/ysmood/gson")
+ (synopsis "Go JSON path query library")
+ (description
+ "Gson is a Go library for querying JSON data using path expressions,
+similar to JSONPath but with a simpler syntax.")
+ (license license:expat)))
+
(define-public go-github-com-yudai-gojsondiff
(package
(name "go-github-com-yudai-gojsondiff")