guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4534b1a2be021fdc9afbda7cda8657b7a57d037e
Author: Ashish SHUKLA <[email protected]>
AuthorDate: Wed Jun 4 14:11:04 2025 +0200
gnu: jq: Update to 1.8.0.
* gnu/packages/web.scm (jq): Update to 1.8.0.
[source]<snippet>: Update path to vendored oniguruma.
[native-inputs]: Add tzdata.
Change-Id: Ia5df5eb8188409e5b2d2770f862bc9f2e882940b
Reviewed-by: jgart <[email protected]>
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/web.scm | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 1610c05013..5c2cb58eb0 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -5618,7 +5618,7 @@ It uses the uwsgi protocol for all the
networking/interprocess communications.")
(define-public jq
(package
(name "jq")
- (version "1.7.1")
+ (version "1.8.0")
(source
(origin
(method url-fetch)
@@ -5626,18 +5626,18 @@ It uses the uwsgi protocol for all the
networking/interprocess communications.")
"/releases/download/jq-" version
"/jq-" version ".tar.gz"))
(sha256
- (base32 "1hl0wppdwwrqf3gzg3xwc260s7i1br2lnc97zr1k8bpx56hrr327"))
+ (base32 "171i5dnw15gx4ah3xv05vhlq8b5pr7zbzhjhzyan36hxz5vib0ci"))
(modules '((guix build utils)))
(snippet
;; Remove bundled onigurama.
- '(delete-file-recursively "modules"))))
+ '(delete-file-recursively "vendor/oniguruma"))))
(inputs
(list oniguruma))
(native-inputs
(append
;; TODO: fix gems to generate documentation
;(list ruby bundler)
- '()
+ (list tzdata) ;; needed for tests
(if (member (%current-system)
(package-supported-systems valgrind/pinned))
(list valgrind/pinned)