diff options
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 38982d9c39..5d873e0884 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -53,7 +53,7 @@ ;;; Copyright © 2021 Sarah Morgensen <[email protected]> ;;; Copyright © 2021 Jack Hill <[email protected]> ;;; Copyright © 2021 Guillaume Le Vaillant <[email protected]> -;;; Copyright © 2021 Denis 'GNUtoo' Carikli <[email protected]> +;;; Copyright © 2021, 2023 Denis 'GNUtoo' Carikli <[email protected]> ;;; Copyright © 2021 Vinicius Monego <[email protected]> ;;; Copyright © 2022 cage <[email protected]> ;;; Copyright © 2022 Pradana Aumars <[email protected]> @@ -5010,7 +5010,7 @@ Cloud.") bash-minimal)) (propagated-inputs (list guix - guile-fibers-1.3 + guile-fibers guile-json-4 guile-email guile-prometheus @@ -5134,21 +5134,19 @@ It uses the uwsgi protocol for all the networking/interprocess communications.") (define-public jq (package (name "jq") - (version "1.6") + (version "1.7") (source (origin (method url-fetch) - (uri (string-append "https://github.com/stedolan/jq" + (uri (string-append "https://github.com/jqlang/jq" "/releases/download/jq-" version "/jq-" version ".tar.gz")) (sha256 - (base32 "0wmapfskhzfwranf6515nzmm84r7kwljgfs7dg6bjgxakbicis2x")) + (base32 "0qnv8k9x8i6i24n9vx3cxgw0yjj1411silc4wksfcinrfmlhsaj0")) (modules '((guix build utils))) (snippet - '(begin - ;; Remove bundled onigurama. - (delete-file-recursively "modules") - #t)))) + ;; Remove bundled onigurama. + '(delete-file-recursively "modules")))) (inputs (list oniguruma)) (native-inputs @@ -5161,7 +5159,7 @@ It uses the uwsgi protocol for all the networking/interprocess communications.") (list valgrind) '()))) (build-system gnu-build-system) - (home-page "https://stedolan.github.io/jq/") + (home-page "https://jqlang.github.io/jq/") (synopsis "Command-line JSON processor") (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, @@ -8707,7 +8705,7 @@ of Geminispace, but it defaults to a specific domain.") (define-public libzim (package (name "libzim") - (version "8.0.0") + (version "8.2.1") (source (origin (method git-fetch) (uri (git-reference @@ -8715,7 +8713,7 @@ of Geminispace, but it defaults to a specific domain.") (commit version))) (sha256 (base32 - "1a7wj8kmpx5aqx0wsfcnaqlfsf1gr66iqxyn24cgjnk4d1rjsahm")) + "1g735aqw0vlxqgyjv02lvq24dr5shydp4y8mqianf8720s5fs73f")) (file-name (git-file-name name version)))) (build-system meson-build-system) (arguments @@ -8741,7 +8739,7 @@ for ZIM files.") (define-public kiwix-lib (package (name "kiwix-lib") - (version "11.0.0") + (version "13.0.0") (home-page "https://github.com/kiwix/kiwix-lib/") (source (origin (method git-fetch) @@ -8750,7 +8748,7 @@ for ZIM files.") (commit version))) (sha256 (base32 - "1w5dabzvd3cnhw064qf9166476fszkkxjcml21x35av0dcd1vlk6")) + "0mvlppbj0mqn4ka3cfaaj1pvn062cxbgz01c0nq04x0mzq1xwh5w")) (file-name (git-file-name name version)))) (build-system meson-build-system) (arguments @@ -8786,7 +8784,7 @@ It contains the code shared by all Kiwix ports.") (define-public kiwix-desktop (package (name "kiwix-desktop") - (version "2.2.2") + (version "2.3.1") (source (origin (method url-fetch) (uri (string-append @@ -8795,7 +8793,8 @@ It contains the code shared by all Kiwix ports.") ".tar.gz")) (sha256 (base32 - "0ani12d91azcwwys499848ws7rx0m7c23nalcm5fanjak76bg6n6")))) + "0hlk05gcb3fmnxhwj6gan51v98rdq3iv2lklwbpmm1bazmz8i7br")) + (patches (search-patches "kiwix-desktop-newer-libkiwix.patch")))) (build-system gnu-build-system) (arguments `(#:phases @@ -8840,14 +8839,14 @@ offline (such as Wikipedia), without any access to Internet.") (define-public kiwix-tools (package (name "kiwix-tools") - (version "3.3.0") + (version "3.5.0") (source (origin (method url-fetch) (uri (string-append "https://download.kiwix.org/release/" "kiwix-tools/kiwix-tools-" version ".tar.xz")) (sha256 (base32 - "07mj0lrznydhdbirybdyxswypr7hy290mjdv7lkjr6gxgdp29d37")))) + "0q6b7viy1jr212q0glqid2hqxnsd2mxsx5gzcalkc4gb0bzgj32d")))) (build-system meson-build-system) (inputs (list curl |