diff options
author | Ryan Prior <rprior@protonmail.com> | 2020-10-04 05:22:35 +0000 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-12-09 09:45:35 +0200 |
commit | 016501aec6d27ea5eda8cd7a8531418c26d867b9 (patch) | |
tree | 92ee8864677143bd880c3a55e35fdc274c75830b /gnu/packages/golang.scm | |
parent | f7c2896e528fa5d1821eae36cc7d8e54d313daec (diff) | |
download | guix-016501aec6d27ea5eda8cd7a8531418c26d867b9.tar guix-016501aec6d27ea5eda8cd7a8531418c26d867b9.tar.gz |
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>
Diffstat (limited to 'gnu/packages/golang.scm')
-rw-r--r-- | gnu/packages/golang.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 12561c0a32..dc431b173a 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -5129,6 +5129,34 @@ the parse trees produced by the html package.") 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") |