From f0574ccfc1a5e1f5111744e5e83f803bddc66687 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-jwt-v2: Update to 2.8.0. * gnu/packages/golang-crypto.scm (go-github-com-nats-io-jwt-v2): Update to 2.8.0. Change-Id: I304baf39df4b326a640c424a2cfd7bb20f0fc4fc --- gnu/packages/golang-crypto.scm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 0fc3b61a19240c8df9313a18c5559fccc988c013..8ae1f0ea7f00073b7722dbca10e465f63d919aff 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1879,7 +1879,7 @@ times faster decoding.") (define-public go-github-com-nats-io-jwt-v2 (package (name "go-github-com-nats-io-jwt-v2") - (version "2.7.4") + (version "2.8.0") (source (origin (method git-fetch) @@ -1888,13 +1888,14 @@ times faster decoding.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0gjfayslmvs5kpgrb7sscaafi5fsm2j6446vbjm830ak0nhq8df9")))) + (base32 "16fxmml1cw2y3cr87ry61k2q8421hab77cx6gpqz1qfy6sdh0vvz")))) (build-system go-build-system) (arguments (list - #:go go-1.23 #:import-path "github.com/nats-io/jwt/v2" - #:unpack-path "github.com/nats-io/jwt")) + #:unpack-path "github.com/nats-io/jwt" + #:test-flags + #~(list "-vet=off"))) ;Go@1.24 forces vet, but tests are not ready yet. (propagated-inputs (list go-github-com-nats-io-nkeys)) (home-page "https://github.com/nats-io/jwt") (synopsis "Go library signing JWT tokens with NKeys for the NATS ecosystem")