diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-03-06 14:02:04 +0000 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-18 14:07:30 +0100 |
| commit | 31ef0634565a92430d75db4fbcccacd0a327e435 (patch) | |
| tree | 50b8b6cbed1e56ac658637f244d51f5040012f8f | |
| parent | 63d58073c957989c93e58bbedfe6a4bb98801a82 (diff) | |
gnu: Add go-github-com-dustin-gojson.
* gnu/packages/golang-xyz.scm (go-github-com-dustin-gojson): New variable.
Change-Id: I17e36de25552bdd2f5077bdf270336cefbe272fd
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c168fb8314f..fa464037b7b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8767,6 +8767,34 @@ generics.") sizes. It converts boring ugly numbers to human-friendly strings and back.") (license license:expat))) +(define-public go-github-com-dustin-gojson + (package + (name "go-github-com-dustin-gojson") + (version "0.0.0-20160307161227-2e71ec9dd5ad") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/dustin/gojson") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1vrmmyn7l568l1k71mxd54iqf3d54pn86cf278i374j86jn0bdxf")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/dustin/gojson" + #:test-flags + #~(list "-vet=off"))) + (home-page "https://github.com/dustin/gojson") + (synopsis "Go's @code{encoding/json} with the scanner API made public") + (description + "Package @code{json} implements encoding and decoding of JSON objects as +defined in @url{https://rfc-editor.org/rfc/rfc4627.html, RFC 4627}. The +mapping between JSON objects and Go values is described in the documentation +for the Marshal and Unmarshal functions.") + (license license:bsd-3))) + (define-public go-github-com-dustinkirkland-golang-petname (package (name "go-github-com-dustinkirkland-golang-petname") |
