diff options
Diffstat (limited to 'gnu/packages/web.scm')
-rw-r--r-- | gnu/packages/web.scm | 64 |
1 files changed, 13 insertions, 51 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 947fb6f800..de59e8dbb8 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -403,7 +403,6 @@ one.") (build-system go-build-system) (arguments (list - #:go go-1.22 #:install-source? #f #:import-path "miniflux.app/v2" #:build-flags @@ -1142,7 +1141,7 @@ similar to live activity monitoring provided with NGINX plus.") (define-public lighttpd (package (name "lighttpd") - (version "1.4.79") + (version "1.4.80") (source (origin (method url-fetch) (uri (string-append "https://download.lighttpd.net/lighttpd/" @@ -1150,7 +1149,7 @@ similar to live activity monitoring provided with NGINX plus.") "lighttpd-" version ".tar.xz")) (sha256 (base32 - "1gc4c352jlqqgxyrgz2f5s7li1vxpd15ykza3wnp125dncjsca9v")))) + "1wsvy92dsyhlq99b7rvlj5n72m7rqggr27jxajnnpvmjx1qhypyc")))) (build-system gnu-build-system) (arguments (list #:configure-flags @@ -5712,7 +5711,7 @@ you'd expect.") (define-public go-github-com-mikefarah-yq-v4 (package (name "go-github-com-mikefarah-yq-v4") - (version "4.44.3") + (version "4.45.4") (source (origin (method git-fetch) (uri (git-reference @@ -5721,7 +5720,7 @@ you'd expect.") (file-name (git-file-name name version)) (sha256 (base32 - "0s7c8r6y5jv6wda2v3k47hawfdr9j3rwk717l6byvh5qsbbml0vd")))) + "1adrbxqsmpsvz2jfjkvarvnvblj5zdznr3sxpakv85vvs3njdjx9")))) (build-system go-build-system) (arguments (list @@ -5835,7 +5834,6 @@ processor.") (build-system go-build-system) (arguments (list - #:go go-1.22 #:embed-files #~(list ".*.xml") #:install-source? #f #:import-path "github.com/noahgorstein/jqp")) @@ -8874,7 +8872,7 @@ compressed JSON header blocks. (define-public nghttp3 (package (name "nghttp3") - (version "1.10.1") + (version "1.11.0") (source (origin (method url-fetch) @@ -8883,7 +8881,7 @@ compressed JSON header blocks. "nghttp3-" version ".tar.gz")) (sha256 (base32 - "18lik57yb3zc5g17s18ymd268p037wly0hgvw6n9h48l09jqqv68")))) + "04ds0h2ppajx9brafd9rx4k9jsqm6cb0qjkj2lvpps1d5bd0pliw")))) (build-system gnu-build-system) (native-inputs (list pkg-config)) @@ -9694,6 +9692,7 @@ It contains the code shared by all Kiwix ports.") (build-system qt-build-system) (arguments (list + #:qtbase qtbase #:tests? #f ; no tests #:modules '((guix build qt-build-system) ((guix build gnu-build-system) #:prefix gnu:) @@ -9715,17 +9714,17 @@ It contains the code shared by all Kiwix ports.") libmicrohttpd libzim pugixml - qtbase-5 - qtdeclarative-5 - qtwebchannel-5 - qtwebengine-5 - qtwayland-5 + qtbase + qtdeclarative + qtwebchannel + qtwebengine + qtwayland xapian zlib `(,zstd "lib"))) (native-inputs (list pkg-config - qtbase-5)) + qtbase)) (home-page "https://wiki.kiwix.org/wiki/Software") (synopsis "Viewer and manager of ZIM files") (description "Kiwix Desktop allows you to enjoy a lot of different content @@ -9858,43 +9857,6 @@ provided by a TLS reverse proxy (e.g. tlstunnel, hitch or stunnel).") the Fediring.") (license (list license:cc0 license:bsd-2))))) -(define-public archivebox - (package - (name "archivebox") - (version "0.6.2") - (source (origin - (method url-fetch) - (uri (pypi-uri name version)) - (sha256 - (base32 - "1mnq82ynq01l7vx957bbx4bvgwdh59qsnx6pdydaqszbakp74yyc")))) - (build-system python-build-system) - (propagated-inputs - (list curl - node-lts)) - (inputs - (list python - youtube-dl - wget - git - python-w3lib - python-ipython - python-croniter - python-crontab - python-dateparser - python-django-extensions - python-django-3.1.14 - python-mypy-extensions)) - (native-inputs - (list python-wheel)) - (synopsis "Self-hosted Web archiving") - (description "ArchiveBox is a powerful, self-hosted Web archiving -solution to collect, save, and view sites you want to preserve offline. -You can feed it URLs one at a time, or schedule regular imports. It saves -snapshots of the URLs you feed it in several formats.") - (home-page "https://archivebox.io/") - (license license:expat))) - (define-public awslogs (package (name "awslogs") |