mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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
This commit is contained in:
parent
a300855d62
commit
32fccedae5
2 changed files with 41 additions and 40 deletions
|
@ -6397,6 +6397,47 @@ millisecond)
|
||||||
(list
|
(list
|
||||||
#:import-path "github.com/oklog/ulid/v2"))))
|
#: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
|
(define-public go-github-com-op-go-logging
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-op-go-logging")
|
(name "go-github-com-op-go-logging")
|
||||||
|
|
|
@ -5392,46 +5392,6 @@ maps (because they are not addressable using Go reflection).")
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list go-gopkg-in-yaml-v3))))
|
(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
|
(define-public go-github-com-olekukonko-ts
|
||||||
(let ((commit "78ecb04241c0121483589a30b0814836a746187d")
|
(let ((commit "78ecb04241c0121483589a30b0814836a746187d")
|
||||||
(revision "0"))
|
(revision "0"))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue