me
/
guix
Archived
1
0
Fork 0

gnu: rust-plotters-svg-0.3: Update to 0.3.5.

* gnu/packages/crates-io.scm (rust-plotters-svg-0.3): Update to 0.3.5.
[arguments]: Don't skip the build.  Skip the tests.
[cargo-inputs]: Add rust-image-0.24.

Change-Id: Iae8643029bffca92af3549d584909c1699f67f12
master
Efraim Flashner 2024-04-01 13:26:24 +03:00
parent dbd59cb89a
commit 38bcad3393
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 4 deletions

View File

@ -53476,19 +53476,20 @@ both WASM and native applications")
(define-public rust-plotters-svg-0.3 (define-public rust-plotters-svg-0.3
(package (package
(name "rust-plotters-svg") (name "rust-plotters-svg")
(version "0.3.1") (version "0.3.5")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (crate-uri "plotters-svg" version)) (uri (crate-uri "plotters-svg" version))
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "1aavi3i4jrwydw3i6x0zxs3i3c7gki7jlhg9agff35x5ixisj7sj")))) (base32 "1axbw82frs5di4drbyzihr5j35wpy2a75hp3f49p186cjfcd7xiq"))))
(build-system cargo-build-system) (build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:tests? #f ; use of undeclared crate or module `plotters`
#:cargo-inputs #:cargo-inputs
(("rust-plotters-backend" ,rust-plotters-backend-0.3)))) (("rust-image" ,rust-image-0.24)
("rust-plotters-backend" ,rust-plotters-backend-0.3))))
(home-page "https://plotters-rs.github.io") (home-page "https://plotters-rs.github.io")
(synopsis "Plotters SVG backend") (synopsis "Plotters SVG backend")
(description "This package provides Plotters SVG backend.") (description "This package provides Plotters SVG backend.")