diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-03-17 14:27:54 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:42:38 +0300 |
commit | ef54abc2609227b5cdfc706b7be36f1743b81d40 (patch) | |
tree | 418cd5df9eb8b08e2cc0a3efc477867fa1dbaf57 /gnu/packages/crates-graphics.scm | |
parent | b18095d2b69cced3b6c31b14085b7eca07715443 (diff) | |
download | guix-ef54abc2609227b5cdfc706b7be36f1743b81d40.tar.gz |
gnu: rust-palette-0.7: Update to 0.7.5.
* gnu/packages/crates-graphics.scm (rust-palette-0.7): Update to 0.7.5. [source]: Add snippet to allow newer versions of dependencies. [cargo-development-inputs]: Remove rust-clap-3, rust-criterion-0.4, rust-csv-1, rust-lazy-static-1, rust-scad-1, rust-serde-1, rust-serde-derive-1. Change-Id: I0450c755536df45db1231d6a97c486a58bea2d6d
Diffstat (limited to 'gnu/packages/crates-graphics.scm')
-rw-r--r-- | gnu/packages/crates-graphics.scm | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index f049a7936d..054274e5bd 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -2545,14 +2545,19 @@ graphics and video games.") (define-public rust-palette-0.7 (package (name "rust-palette") - (version "0.7.3") + (version "0.7.5") (source (origin (method url-fetch) (uri (crate-uri "palette" version)) (file-name (string-append name "-" version ".tar.gz")) (sha256 - (base32 "1p2inf23vsqy06w7vp7rcxmb9vk91asib534m9cafykn8x0z7qmj")))) + (base32 "0ynr6q7629gpw6pg8w1wrsl31sq48nxh1bg4awyrhhk6nyj27z7b")) + (modules '((guix build utils))) + (snippet + '(begin (substitute* "Cargo.toml" + (("\"=([[:digit:]]+(\\.[[:digit:]]+)*)" _ version) + (string-append "\"^" version))))))) (build-system cargo-build-system) (arguments `(#:tests? #f ; Regression tests not included. @@ -2567,17 +2572,10 @@ graphics and video games.") ("rust-serde" ,rust-serde-1) ("rust-wide" ,rust-wide-0.7)) #:cargo-development-inputs - (("rust-clap" ,rust-clap-3) - ("rust-criterion" ,rust-criterion-0.4) - ("rust-csv" ,rust-csv-1) - ("rust-enterpolation" ,rust-enterpolation-0.2) + (("rust-enterpolation" ,rust-enterpolation-0.2) ("rust-image" ,rust-image-0.23) - ("rust-lazy-static" ,rust-lazy-static-1) ("rust-rand-mt" ,rust-rand-mt-4) ("rust-ron" ,rust-ron-0.8) - ("rust-scad" ,rust-scad-1) - ("rust-serde" ,rust-serde-1) - ("rust-serde-derive" ,rust-serde-derive-1) ("rust-serde-json" ,rust-serde-json-1)))) (home-page "https://github.com/Ogeon/palette") (synopsis "Convert and manage colors") |