sharlatan pushed a commit to branch go-team
in repository guix.
commit 0551331410e389770ae7fc4786f57923fa63b63a
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 24 12:45:26 2024 +0000
gnu: Add go-csv2table.
* gnu/packages/golang-xyz.scm (go-csv2table): New variable.
Change-Id: I8e86d510273a147bb068da269672c773c1119ad4
---
gnu/packages/golang-xyz.scm | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index f2ba5d862d..53c2865de7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8826,6 +8826,17 @@ library.")
tool."))
(license license:asl2.0)))
+(define-public go-csv2table
+ (package/inherit go-github-com-olekukonko-tablewriter
+ (name "go-csv2table")
+ (arguments
+ (list #:install-source? #f
+ #:import-path "github.com/olekukonko/tablewriter/csv2table"
+ #:unpack-path "github.com/olekukonko/tablewriter"))
+ (description
+ (string-append (package-description go-github-com-olekukonko-tablewriter)
+ "\nThis package provides a command line interface (CLI)
tool."))))
+
(define-public go-hclogvet
(package
(inherit go-github-com-hashicorp-go-hclog)