gnu: jq: Update to 1.7.
* gnu/packages/web.scm (jq): Update to 1.7. [home-page]: Update URL. [source]: Simplify snippet. Signed-off-by: Christopher Baines <mail@cbaines.net>
parent
a5477e3a82
commit
e0269ad9ca
|
@ -5134,21 +5134,19 @@ It uses the uwsgi protocol for all the networking/interprocess communications.")
|
||||||
(define-public jq
|
(define-public jq
|
||||||
(package
|
(package
|
||||||
(name "jq")
|
(name "jq")
|
||||||
(version "1.6")
|
(version "1.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://github.com/stedolan/jq"
|
(uri (string-append "https://github.com/jqlang/jq"
|
||||||
"/releases/download/jq-" version
|
"/releases/download/jq-" version
|
||||||
"/jq-" version ".tar.gz"))
|
"/jq-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x"))
|
(base32 "0qnv8k9x8i6i24n9vx3cxgw0yjj1411silc4wksfcinrfmlhsaj0"))
|
||||||
(modules '((guix build utils)))
|
(modules '((guix build utils)))
|
||||||
(snippet
|
(snippet
|
||||||
'(begin
|
;; Remove bundled onigurama.
|
||||||
;; Remove bundled onigurama.
|
'(delete-file-recursively "modules"))))
|
||||||
(delete-file-recursively "modules")
|
|
||||||
#t))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list oniguruma))
|
(list oniguruma))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
@ -5161,7 +5159,7 @@ It uses the uwsgi protocol for all the networking/interprocess communications.")
|
||||||
(list valgrind)
|
(list valgrind)
|
||||||
'())))
|
'())))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(home-page "https://stedolan.github.io/jq/")
|
(home-page "https://jqlang.github.io/jq/")
|
||||||
(synopsis "Command-line JSON processor")
|
(synopsis "Command-line JSON processor")
|
||||||
(description "jq is like sed for JSON data – you can use it to slice and
|
(description "jq is like sed for JSON data – you can use it to slice and
|
||||||
filter and map and transform structured data with the same ease that sed, awk,
|
filter and map and transform structured data with the same ease that sed, awk,
|
||||||
|
|
Reference in New Issue