diff options
author | Petr Hodina <phodina@protonmail.com> | 2022-01-11 01:10:54 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-21 01:12:36 +0100 |
commit | e6074b6f9b39969fde9679e206f69e37751f5def (patch) | |
tree | f2433b6b4aa0bd8892bfaef7c460e770d07127eb | |
parent | ac2aa4b956181e75eb816b3fab1f1c1642a1e47f (diff) | |
download | guix-e6074b6f9b39969fde9679e206f69e37751f5def.tar guix-e6074b6f9b39969fde9679e206f69e37751f5def.tar.gz |
gnu: Add rust-lyon-path-0.17.
* gnu/packages/crates-graphics.scm (rust-lyon-path-0.17): New variable.
(rust-lyon-path-0.14): Remove variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
-rw-r--r-- | gnu/packages/crates-graphics.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gnu/packages/crates-graphics.scm b/gnu/packages/crates-graphics.scm index b16020a262..fc589c7bfa 100644 --- a/gnu/packages/crates-graphics.scm +++ b/gnu/packages/crates-graphics.scm @@ -1463,10 +1463,10 @@ graphics and video games.") "This package provides 2D graphics rendering on the GPU using tessellation.") (license (list license:expat license:asl2.0)))) -(define-public rust-lyon-path-0.14 +(define-public rust-lyon-path-0.17 (package (name "rust-lyon-path") - (version "0.14.0") + (version "0.17.7") (source (origin (method url-fetch) @@ -1475,12 +1475,12 @@ graphics and video games.") (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0qk8x46w0sf6j04l6gvhgn9kr4ymcqkmkh67w8wqahm54jn5gjqb")))) + "1h7vbfaanf3x7xch6md4q4ja3xmvsi41n7d6ga40vjk7yzymj2jv")))) (build-system cargo-build-system) (arguments `(#:skip-build? #t #:cargo-inputs - (("rust-lyon-geom" ,rust-lyon-geom-0.14) + (("rust-lyon-geom" ,rust-lyon-geom-0.17) ("rust-serde" ,rust-serde-1)))) (home-page "https://github.com/nical/lyon") (synopsis "Types and utilities to store, build and iterate over 2D paths") |