guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e913d6d5951666f0bed811e9464d186c03737cdf
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Sep 11 14:44:11 2025 +0100
gnu: go-github-com-olekukonko-tablewriter: Update to 1.0.9.
* gnu/packages/golang-xyz.scm (go-github-com-olekukonko-tablewriter):
Update to 1.0.9.
[arguments] <go>: Use default go-1.24 compiler.
<test-flags>: Skip vet during tests.
Change-Id: I0f46664d59f3b29ce3bc256e76f94f78a094e55e
---
gnu/packages/golang-xyz.scm | 10 ++++++----
1 file changed, 6 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index f0aca51711..2e963e9123 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -15755,7 +15755,7 @@ fine-grained log control, extensibility, and
scalability.")
(define-public go-github-com-olekukonko-tablewriter
(package
(name "go-github-com-olekukonko-tablewriter")
- (version "1.0.7")
+ (version "1.0.9")
(source
(origin
(method git-fetch)
@@ -15764,12 +15764,14 @@ fine-grained log control, extensibility, and
scalability.")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
- (base32 "1ycpp98j8xzgfq87f9vqzh8mncai142l1r32qrz3m47sx88pk69s"))))
+ (base32 "13qkanznaq2wadb24rskf0p76wkd84qbxd5lavysnq57ip4pm0fd"))))
(build-system go-build-system)
(arguments
(list
- #:go go-1.23
- #:import-path "github.com/olekukonko/tablewriter"))
+ #:import-path "github.com/olekukonko/tablewriter"
+ ;; XXX: wrap_test.go:38:12: non-constant format string in call to
+ ;; (*testing.common).Errorf
+ #:test-flags #~(list "-vet=off")))
(native-inputs
(list go-github-com-olekukonko-ts)) ; for CLI <cmd/csv2table>
(propagated-inputs