diff options
| author | Danny Milosavljevic <dannym@friendly-machines.com> | 2025-12-05 19:26:48 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-02-07 07:55:52 +0000 |
| commit | a6aee58e22cf899f2a5d87c1c8b9d497fe3e7520 (patch) | |
| tree | f22d76b5de41aa57bd3897de5a6fc4f424c44753 /gnu | |
| parent | e3b11da46f592f2b8ea493033881b3fee21f91cd (diff) | |
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 <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 24 |
1 files changed, 24 insertions, 0 deletions
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") |
