diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-26 14:52:47 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:23 +0000 |
commit | e4c1411a64f6fec93c23cedc7996d2704ccb31d3 (patch) | |
tree | 16023b3159d0ffcf4729e9f8b0a89c0fdc1e9542 | |
parent | ffbf9aa7e088f66ce36aae716edf4ae9eb5f78a8 (diff) |
gnu: go-github-com-nats-io-nats-go: Update to 1.38.0.
* gnu/packages/golang-xyz.scm (go-github-com-nats-io-nats-go): Update to 1.38.0.
[arguments] <test-subdirs>: Limit to project's root tests.
[propagated-inputs]: Add go-google-golang-org-protobuf.
[native-inputs]: Add go-github-com-nats-io-jwt-v2.
Change-Id: I1fbce2dfab11b2b29f1f78db16ebecf0520724d9
-rw-r--r-- | gnu/packages/golang-xyz.scm | 21 |
1 files changed, 14 insertions, 7 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 4382e7a36d..1dfd96a3f2 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8225,7 +8225,7 @@ varints.") (define-public go-github-com-nats-io-nats-go (package (name "go-github-com-nats-io-nats-go") - (version "1.32.0") + (version "1.38.0") (source (origin (method git-fetch) @@ -8234,15 +8234,22 @@ varints.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "08b3n5mdpxvn9hipz0j001bp5r67i43cqji9x9dyzikypqdfg38k")))) + (base32 "1b21sxzds2x5a8b13hmf5n1pf1bf770ky7q12147gqq7vsw39fa1")))) (build-system go-build-system) (arguments (list - #:import-path "github.com/nats-io/nats.go")) - (propagated-inputs (list go-golang-org-x-text - go-github-com-nats-io-nuid - go-github-com-nats-io-nkeys - go-github-com-klauspost-compress)) + #:import-path "github.com/nats-io/nats.go" + ;; Most tests in "test" directory fail to set up, limit to project's + ;; root tests. + #:test-subdirs #~(list "."))) + (native-inputs + (list go-github-com-nats-io-jwt-v2)) + (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 (home-page "https://github.com/nats-io/nats.go") (synopsis "Go Client for NATS server") (description |