mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add go-github-com-jmespath-go-jmespath.
* gnu/packages/golang.scm (go-github-com-jmespath-go-jmespath): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
f7c2896e52
commit
016501aec6
1 changed files with 28 additions and 0 deletions
|
@ -5129,6 +5129,34 @@ (define-public go-github-com-puerkitobio-goquery
|
|||
to jQuery to the Go language.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-jmespath-go-jmespath
|
||||
(package
|
||||
(name "go-github-com-jmespath-go-jmespath")
|
||||
(version "0.4.0")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jmespath/go-jmespath")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"18zyr9nlywmwp3wpzcjxrgq9s9d2mmc6zg6xhsna00m663nkyc3n"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/jmespath/go-jmespath"))
|
||||
(native-inputs
|
||||
`(("go-github-com-davecgh-go-spew" ,go-github-com-davecgh-go-spew)
|
||||
("go-github-com-pmezard-go-difflib" ,go-github-com-pmezard-go-difflib)
|
||||
("go-gopkg-in-yaml-v2" ,go-gopkg-in-yaml-v2)))
|
||||
(home-page "https://github.com/jmespath/go-jmespath")
|
||||
(synopsis "Golang implementation of JMESPath")
|
||||
(description
|
||||
"This package implements JMESPath, a query language for JSON. It
|
||||
transforms one JSON document into another through a JMESPath expression.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-aymerick-douceur
|
||||
(package
|
||||
(name "go-github-com-aymerick-douceur")
|
||||
|
|
Loading…
Reference in a new issue