summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-06-12 14:16:29 +0100
committerAndreas Enge <andreas@enge.fr>2025-07-26 19:55:46 +0200
commit416639802d30af2e7ab1ae039f95f803b4271fce (patch)
treea72fad88cc8c5468a8433d17bc8c8ddaf79000b0
parentc414cdfa002a43cc550b96d009e5ba3e5a477b43 (diff)
gnu: go-github-com-nats-io-jwt-v2: Update to 2.7.4.
* gnu/packages/golang-crypto.scm (go-github-com-nats-io-jwt-v2): Update to 2.7.4. [arguments] <go>: Use go-1.23. Change-Id: I618959f0288cb4dd85bda36b47d126f754650c99
-rw-r--r--gnu/packages/golang-crypto.scm10
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index d82337d8e1..21aede3238 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1796,7 +1796,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.3")
+ (version "2.7.4")
(source
(origin
(method git-fetch)
@@ -1805,11 +1805,13 @@ times faster decoding.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "09gfzhahm6wfnkaqm5yam8vd9y50rnyjxcl6mw3a9y4far1vpmvb"))))
+ (base32 "0gjfayslmvs5kpgrb7sscaafi5fsm2j6446vbjm830ak0nhq8df9"))))
(build-system go-build-system)
(arguments
- (list #:import-path "github.com/nats-io/jwt/v2"
- #:unpack-path "github.com/nats-io/jwt"))
+ (list
+ #:go go-1.23
+ #:import-path "github.com/nats-io/jwt/v2"
+ #:unpack-path "github.com/nats-io/jwt"))
(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")