guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 2ebc8e08d96bbabff8f702292eb459b685779161
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri May 1 21:59:11 2026 +0100
gnu: nats-server: Update to 2.14.0.
* gnu/packages/high-availability.scm (nats-server): Update to 2.14.0.
[arguments] <test-flags>: Rework options to reflect upstream test case
for non server parts.
[inputs]: Remove go-go-uber-org-automaxprocs.
Change-Id: I7842e23fca7e6c1452b951e0f3748aa6e8ac802e
---
gnu/packages/high-availability.scm | 12 +++---------
1 file changed, 3 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/high-availability.scm
b/gnu/packages/high-availability.scm
index 53273dd017..ff6f932df3 100644
--- a/gnu/packages/high-availability.scm
+++ b/gnu/packages/high-availability.scm
@@ -297,7 +297,7 @@ applications.")
(define-public nats-server
(package
(name "nats-server")
- (version "2.12.1")
+ (version "2.14.0")
(source
(origin
(method git-fetch)
@@ -306,7 +306,7 @@ applications.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "04dza8jqw4lhnqj1ip05jx47g9frb00x9s0yy1863qf88bvszv8z"))))
+ (base32 "1nj8lkrhqdnr2h36lg8sfqd1988ww9whamr73qbj10lsx32ip0jb"))))
(build-system go-build-system)
(arguments
(list
@@ -315,12 +315,7 @@ applications.")
;; The test logic is taken from project's GitHub Actions workflow file
;; <.github/workflows/tests.yaml>.
#:test-flags
- #~(list "-count=1" "-vet=off" "-failfast"
- "-skip" (string-join
- (list "TestHTTPHost"
- "TestSysLogger"
- "TestLogMaxArchives")
- "|") )
+ #~(list "-p=1" "-count=1" "-vet=off" "-failfast")
#:test-subdirs
#~(list "conf/..." "internal/..." "logger/..." "test/...")))
(inputs
@@ -332,7 +327,6 @@ applications.")
go-github-com-nats-io-nats-go
go-github-com-nats-io-nkeys
go-github-com-nats-io-nuid
- go-go-uber-org-automaxprocs
go-golang-org-x-crypto
go-golang-org-x-sys
go-golang-org-x-time))