From e67a5f5e556d863d976356b99409620fcc6f5f27 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 2 Nov 2025 22:16:15 +0000 Subject: [PATCH] gnu: go-github-com-nats-io-nats-go: Update to 1.47.0. * gnu/packages/golang-xyz.scm (go-github-com-nats-io-nats-go): Update to 1.47.0. [propagated-inputs]: Remove go-golang-org-x-text and go-google-golang-org-protobuf. [native-inputs]: Remove go-github-com-nats-io-jwt-v2; add go-google-golang-org-protobuf. Change-Id: I1ca847e765844bc0eff9f940a088e0463834af42 --- gnu/packages/golang-xyz.scm | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 0c5de3c654d7f5e3e9dd0301c3646f7be0524312..1d60a587cf849c2db63f3af09d63c106427c552d 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16020,16 +16020,16 @@ sunset times from geographical coordinates and a date.") (define-public go-github-com-nats-io-nats-go (package (name "go-github-com-nats-io-nats-go") - (version "1.39.1") + (version "1.47.0") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/nats-io/nats.go") - (commit (string-append "v" version)))) + (url "https://github.com/nats-io/nats.go") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "122y7n1xridlpy8048z0p7bv8192pc5yp9js1sspayi9rrn27z6i")))) + (base32 "1078dvnv61nck6kr0gjx7f37674v2wd0qxih7v0wldz5lkpdfspc")))) (build-system go-build-system) (arguments (list @@ -16038,13 +16038,11 @@ sunset times from geographical coordinates and a date.") ;; root tests. #:test-subdirs #~(list "."))) (native-inputs - (list go-github-com-nats-io-jwt-v2)) + (list go-google-golang-org-protobuf)) ; for encoders (propagated-inputs (list go-github-com-klauspost-compress go-github-com-nats-io-nkeys - go-github-com-nats-io-nuid - go-golang-org-x-text - go-google-golang-org-protobuf)) ; for encoders + go-github-com-nats-io-nuid)) (home-page "https://github.com/nats-io/nats.go") (synopsis "Go Client for NATS server") (description