guix_mirror_bot pushed a commit to branch go-team
in repository guix.
commit 18aa9e0dd1dfa60dcc937eb9b54a46a6ad318d5c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Sep 15 00:29:19 2025 +0100
gnu: go-github-com-leonelquinteros-gotext: Fix tests.
* gnu/packages/golang-xyz.scm (go-github-com-leonelquinteros-gotext)
[arguments] <go>: Use default go-1.24. <test-flags>: Skip vet during
tests.
Change-Id: Id85777bcdb5fc35759b47de324b5701e609a354e
---
gnu/packages/golang-xyz.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 78402fe9a1..389b80bee8 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -12981,8 +12981,8 @@ specified by @uref{https://tools.ietf.org/html/rfc2141,
IETF RFC 2141}.")
(build-system go-build-system)
(arguments
(list
- #:go go-1.23
- #:import-path "github.com/leonelquinteros/gotext"))
+ #:import-path "github.com/leonelquinteros/gotext"
+ #:test-flags #~(list "-vet=off")))
(propagated-inputs
(list go-golang-org-x-tools))
(home-page "https://github.com/leonelquinteros/gotext")