From 32fccedae5cb49ac65f5e863366ab8bf8acb2d8a Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Sun, 24 Nov 2024 12:40:41 +0000 Subject: [PATCH] gnu: go-github-com-olekukonko-tablewriter: Move to golang-xyz. * gnu/packages/golang.scm (go-github-com-olekukonko-tablewriter): Move from here ... * gnu/packages/golang-xyz.scm: ... to here. Change-Id: I29317ffb579c61cfd3197cfae53aa3158e34ff63 --- gnu/packages/golang-xyz.scm | 41 +++++++++++++++++++++++++++++++++++++ gnu/packages/golang.scm | 40 ------------------------------------ 2 files changed, 41 insertions(+), 40 deletions(-) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index a8d80fa37d828aa0bf584f17aef998119bb57e7d..530f1b53e7cbad1b831be705a768475d0b2bff02 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6397,6 +6397,47 @@ millisecond) (list #:import-path "github.com/oklog/ulid/v2")))) +(define-public go-github-com-olekukonko-tablewriter + (package + (name "go-github-com-olekukonko-tablewriter") + (version "0.0.5") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/olekukonko/tablewriter") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/olekukonko/tablewriter")) + (propagated-inputs + (list go-github-com-mattn-go-runewidth)) + (home-page "https://github.com/olekukonko/tablewriter/") + (synopsis "Generate ASCII table") + (description "This package generates ASCII tables. Features: +@itemize +@item automatic Padding +@item support Multiple Lines +@item supports Alignment +@item support Custom Separators +@item automatic Alignment of numbers and percentage +@item write directly to http , file etc via @code{io.Writer} +@item read directly from CSV file +@item optional row line via @code{SetRowLine} +@item normalise table header +@item make CSV Headers optional +@item enable or disable table border +@item set custom footer support +@item optional identical cells merging +@item set custom caption +@item optional reflowing of paragrpahs in multi-line cells +@end itemize") + (license license:expat))) + (define-public go-github-com-op-go-logging (package (name "go-github-com-op-go-logging") diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 73cd3a90dd992535f74f8dbf9fa2f7c874726bc4..27f5ffa2fa25cf219dcf60e1b858239917e67ae9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5392,46 +5392,6 @@ maps (because they are not addressable using Go reflection).") (native-inputs (list go-gopkg-in-yaml-v3)))) -(define-public go-github-com-olekukonko-tablewriter - (package - (name "go-github-com-olekukonko-tablewriter") - (version "0.0.5") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/olekukonko/tablewriter") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "0zhnrih2px6jm8nxzkz8s7va3lj03bzwxim8wjba9zh7i78bp67z")))) - (build-system go-build-system) - (arguments - `(#:import-path "github.com/olekukonko/tablewriter")) - (propagated-inputs - (list go-github-com-mattn-go-runewidth)) - (home-page "https://github.com/olekukonko/tablewriter/") - (synopsis "Generate ASCII table") - (description "This package generates ASCII tables. Features: -@itemize -@item automatic Padding -@item support Multiple Lines -@item supports Alignment -@item support Custom Separators -@item automatic Alignment of numbers and percentage -@item write directly to http , file etc via @code{io.Writer} -@item read directly from CSV file -@item optional row line via @code{SetRowLine} -@item normalise table header -@item make CSV Headers optional -@item enable or disable table border -@item set custom footer support -@item optional identical cells merging -@item set custom caption -@item optional reflowing of paragrpahs in multi-line cells -@end itemize\n") - (license license:expat))) - (define-public go-github-com-olekukonko-ts (let ((commit "78ecb04241c0121483589a30b0814836a746187d") (revision "0"))