gnu: Add go-sigs-k8s-io-json.

* gnu/packages/golang-xyz.scm (go-sigs-k8s-io-json): New variable.

Change-Id: I541a390895c12cc6e0472ab5919579a57b1a7caf
This commit is contained in:
Sharlatan Hellseher 2024-12-15 20:19:25 +00:00
parent eb4529ceab
commit 83f4623e56
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -10752,6 +10752,31 @@ (define-public go-rsc-io-binaryregexp
described at https://golang.org/s/re2syntax, except for @code{\\C.}")
(license license:bsd-3)))
(define-public go-sigs-k8s-io-json
(package
(name "go-sigs-k8s-io-json")
(version "0.0.0-20241014173422-cfa47c3a1cc8")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/kubernetes-sigs/json")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0zdb3sq333ns8m5azv4fqqy62r0vrhssxl0przicm4v1nmrxj4jh"))))
(build-system go-build-system)
(arguments
(list
#:go go-1.23
#:import-path "sigs.k8s.io/json"))
(home-page "https://github.com/kubernetes-sigs/json")
(synopsis "JSON decoder with enchansed features")
(description
"This package provides case-sensitive, integer-preserving JSON
unmarshaling functions based on @code{encoding/json} @code{Unmarshal()}.")
(license license:asl2.0)))
(define-public go-sigs-k8s-io-yaml
(package
(name "go-sigs-k8s-io-yaml")