summaryrefslogtreecommitdiff
path: root/gnu/packages/web.scm
diff options
context:
space:
mode:
authorAshish SHUKLA <ashish.is@lostca.se>2025-06-04 14:11:04 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-06-10 12:31:49 +0100
commit4534b1a2be021fdc9afbda7cda8657b7a57d037e (patch)
tree2b353bf0f823f9d6957afb773077963bc5ef4fb3 /gnu/packages/web.scm
parent2ac7a8dcac551f409056f5f99f78130b344d7f08 (diff)
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 <jgart@dismail.de> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r--gnu/packages/web.scm8
1 files 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)