gnu: Add go-github-com-itchyny-gojq.
* gnu/packages/web (go-github-com-itchyny-gojq): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
parent
f093291a1f
commit
8f591cf430
|
@ -4919,6 +4919,37 @@ you'd expect.")
|
|||
time strings.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-itchyny-gojq
|
||||
(package
|
||||
(name "go-github-com-itchyny-gojq")
|
||||
(version "0.12.9")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/itchyny/gojq")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1m4zchhhi2428r1v0qz08drac4s63mag1pwcqzsf6n495yc3g0h0"))))
|
||||
(build-system go-build-system)
|
||||
(inputs
|
||||
(list go-github-com-google-go-cmp-cmp
|
||||
go-github-com-itchyny-timefmt-go
|
||||
go-github-com-mattn-go-isatty
|
||||
go-github-com-mattn-go-runewidth
|
||||
go-gopkg-in-yaml-v3))
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/itchyny/gojq/cmd/gojq"
|
||||
#:unpack-path "github.com/itchyny/gojq"))
|
||||
(home-page "https://github.com/itchyny/gojq")
|
||||
(synopsis "Pure Go implementation of jq")
|
||||
(description
|
||||
"@command{gojq} is an Go implementation and library of the jq JSON
|
||||
processor.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public pup
|
||||
(let ((revision "1")
|
||||
(commit "681d7bb639334bf485476f5872c5bdab10931f9a"))
|
||||
|
|
Reference in New Issue