diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-24 12:45:26 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:41:45 +0000 |
commit | 3fc31b2d5a3d0505ed8959931a770cf172f71f30 (patch) | |
tree | 256f34971e8b9832ab72a864432834b1b0139a47 | |
parent | 32fccedae5cb49ac65f5e863366ab8bf8acb2d8a (diff) |
gnu: Add go-csv2table.
* gnu/packages/golang-xyz.scm (go-csv2table): New variable.
Change-Id: I8e86d510273a147bb068da269672c773c1119ad4
-rw-r--r-- | gnu/packages/golang-xyz.scm | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 530f1b53e7..044f332f08 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -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) |