diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-18 15:14:25 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:25 +0300 |
commit | 1a7ee5a8c8b88078dbb1b50efc7133f6402a36c7 (patch) | |
tree | 2d89dfe29c5ae14e26be9ed261a708cd87e58fa4 /gnu | |
parent | b6b715f639fa45a96e9fd2c33be9b9407d77f34b (diff) | |
download | guix-1a7ee5a8c8b88078dbb1b50efc7133f6402a36c7.tar guix-1a7ee5a8c8b88078dbb1b50efc7133f6402a36c7.tar.gz |
gnu: monolith: Update to 2.8.1.
* gnu/packages/web.scm (monolith): Update to 2.8.1.
[cargo-inputs]: Replace rust-base64-0.13 with 0.21, rust-cssparser-0.29
with 0.33.
Change-Id: I15e3c378ed2c35b313009ca1e66d239c1982b0d5
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/web.scm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 62328ca868..e406e6e968 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm @@ -468,24 +468,24 @@ replacing them with data URIs.") (define-public monolith (package (name "monolith") - (version "2.7.0") + (version "2.8.1") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/Y2Z/monolith.git") + (url "https://github.com/Y2Z/monolith") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0ccwjsp8gdgp0wafc3zvlfmx3f58axc1k1ac80qha3g60xccqn56")))) + (base32 "0xr63302yb5k9c2sihd1iy97j5c44d4jrzfaiwm81d9li577ih58")))) (build-system cargo-build-system) (arguments `(#:cargo-inputs (("rust-atty" ,rust-atty-0.2) - ("rust-base64" ,rust-base64-0.13) + ("rust-base64" ,rust-base64-0.21) ("rust-chrono" ,rust-chrono-0.4) ("rust-clap" ,rust-clap-3) - ("rust-cssparser" ,rust-cssparser-0.29) + ("rust-cssparser" ,rust-cssparser-0.33) ("rust-encoding-rs" ,rust-encoding-rs-0.8) ("rust-html5ever" ,rust-html5ever-0.24) ("rust-percent-encoding" ,rust-percent-encoding-2) |