guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 9fb3c861d2d5fa0c454352ac1a5237f2f05538ca
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:05:49 2026 +0000
gnu: go-github-com-stretchr-objx: Update to 0.5.3.
* gnu/packages/golang-xyz.scm (go-github-com-stretchr-objx): Update to
0.5.3.
[native-inputs]: Remove go-github-com-davecgh-go-spew,
go-github-com-pmezard-go-difflib, and
go-github-com-stretchr-testify-bootstrap.
Change-Id: I9de23171744a7f82685143cd5719636791311eae
---
gnu/packages/golang-xyz.scm | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 8ecdd85963..616d139185 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -22411,16 +22411,16 @@ consisting of standard ASCII letters.")
(define-public go-github-com-stretchr-objx
(package
(name "go-github-com-stretchr-objx")
- (version "0.5.2")
+ (version "0.5.3")
(source
(origin
(method git-fetch)
(uri (git-reference
- (url "https://github.com/stretchr/objx")
- (commit (string-append "v" version))))
+ (url "https://github.com/stretchr/objx")
+ (commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1jcxpfgfpk82lryjkhbd5dy7xzx08d7b9dvbx4bpkmjvn6p339jl"))))
+ (base32 "07v1j3yxm68vwf99k2w7rs2rwcn2km821r08xlmswajiqzn1vkz2"))))
(build-system go-build-system)
(arguments
(list
@@ -22433,12 +22433,6 @@ consisting of standard ASCII letters.")
;; The tests fail when run with gccgo.
(false-if-exception (search-input-file inputs "/bin/gccgo"))
(apply (assoc-ref %standard-phases 'check) args)))))))
- (native-inputs
- ;; go-spew and go-difflib are to cover testify-bootstrap and not required
- ;; for odjx itself.
- (list go-github-com-davecgh-go-spew
- go-github-com-pmezard-go-difflib
- go-github-com-stretchr-testify-bootstrap))
(home-page "https://github.com/stretchr/objx")
(synopsis "Go package for dealing with maps, slices, JSON and other data")
(description