guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit b29255cb62c209ab45e7e69848b7ee2c4d5e0efb
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Mar 6 14:02:04 2026 +0000
gnu: Add go-github-com-dustin-gojson.
* gnu/packages/golang-xyz.scm (go-github-com-dustin-gojson): New variable.
Change-Id: I17e36de25552bdd2f5077bdf270336cefbe272fd
---
gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c168fb8314..fa464037b7 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")