gnu: Add go-csv2table.

* gnu/packages/golang-xyz.scm (go-csv2table): New variable.

Change-Id: I8e86d510273a147bb068da269672c773c1119ad4
This commit is contained in:
Sharlatan Hellseher 2024-11-24 12:45:26 +00:00
parent 32fccedae5
commit 3fc31b2d5a
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -9181,6 +9181,17 @@ library.")
" This package provides an command line interface (CLI)
tool."))))
(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)