~ruther/guix-local

6317ff31fd97cdb8349b558cb0e650a5a7e37164 — Arthur Rodrigues 7 months ago 42178bc
gnu: Add go-github-com-tonistiigi-go-csvvalue.

* gnu/packages/golang-xyz.scm (go-github-com-tonistiigi-go-csvvalue): New variable.

Change-Id: I256de915299a59aad88d379ac80688f88bc8e8e0
Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
1 files changed, 26 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +26 -0
@@ 20694,6 20694,32 @@ structures using selector strings.  It's similar to @code{jq}/@code{yq}, but
supports JSON, YAML, TOML, XML and CSV with zero runtime dependencies.")
    (license license:expat)))

(define-public go-github-com-tonistiigi-go-csvvalue
  (package
    (name "go-github-com-tonistiigi-go-csvvalue")
    (version "0.0.0-20240814133006-030d3b2625d0")
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/tonistiigi/go-csvvalue")
              (commit (go-version->git-ref version))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "128i7fmxyf08q80b1i6hgb3sbx2nsa56p2kr6vcdyijazhqnrn0p"))))
    (build-system go-build-system)
    (arguments
     (list
      #:import-path "github.com/tonistiigi/go-csvvalue"))
    (home-page "https://github.com/tonistiigi/go-csvvalue")
    (synopsis "Efficient parser for a single line CSV value in Golang")
    (description
     "Package csvvalue provides an efficient parser for a single line CSV
value.  It is more efficient than the standard library csv package for parsing
many small values.  For multi-line CSV parsing, the standard library is
recommended.")
    (license license:expat)))

(define-public go-github-com-tonistiigi-units
  (package
    (name "go-github-com-tonistiigi-units")