guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 03e19c67d3b6b5ab0055c3b4699579c8e881b21b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jun 10 23:08:34 2025 +0100
gnu: go-github-com-goccy-go-json: Update to 0.10.5.
* gnu/packages/golang-web.scm (go-github-com-goccy-go-json) Update to
0.10.5.
[arguments] <go>: Use go-1.23.
Change-Id: Ic333618edd1fa320541811dcb65ceb9fbeccc36f
---
gnu/packages/golang-web.scm | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index d071e4d3b7..197a70555c 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -3938,7 +3938,7 @@ protocol as specified in
@url{https://rfc-editor.org/rfc/rfc6455.html, RFC
(define-public go-github-com-goccy-go-json
(package
(name "go-github-com-goccy-go-json")
- (version "0.10.3")
+ (version "0.10.5")
(source
(origin
(method git-fetch)
@@ -3947,12 +3947,14 @@ protocol as specified in
@url{https://rfc-editor.org/rfc/rfc6455.html, RFC
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "0w9kjplhyzq8n4iainddapzj7dxnfbjiz4xdpb0hlb6h35grpxgn"))
+ (base32 "0kbb7d4xal1y65fnb152icqjkhrk19b4h3344xmzl3grc4rdxj1n"))
(modules '((guix build utils)))
(snippet '(delete-file-recursively "benchmarks"))))
(build-system go-build-system)
(arguments
- '(#:import-path "github.com/goccy/go-json"))
+ (list
+ #:go go-1.23
+ #:import-path "github.com/goccy/go-json"))
(home-page "https://github.com/goccy/go-json")
(synopsis "JSON encoder/decoder in Go")
(description