diff options
author | Valentin Ignatev <valentignatev@gmail.com> | 2020-01-19 16:01:57 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-02-23 17:23:29 +0200 |
commit | 9e12b6373c4b85072bdb31f0dae79e4fa2ffb170 (patch) | |
tree | afb6ae09988d06e41caafad288e2522d8185b63c | |
parent | 8b4f3d7fb6d6e8bbea853a4839cedb5a55b78e68 (diff) | |
download | guix-9e12b6373c4b85072bdb31f0dae79e4fa2ffb170.tar.gz |
gnu: Add rust-ref-cast-impl-1.0.
* gnu/packages/crates-io.scm (rust-ref-cast-impl-1.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 6e82f8d874..27474a9da6 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -11478,6 +11478,31 @@ functionality.") "Safely cast &T to &U where the struct U contains a single field of type T.") (license (list license:asl2.0 license:expat)))) +(define-public rust-ref-cast-impl-1.0 + (package + (name "rust-ref-cast-impl") + (version "1.0.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "ref-cast-impl" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "07rc752npmkyc5b8xcqk2ydbl3gxi1n4fzrq0wx9wz5qd4mvavn3")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs + (("rust-proc-macro2" ,rust-proc-macro2-1.0) + ("rust-quote" ,rust-quote-1.0) + ("rust-syn" ,rust-syn-1.0)))) + (home-page "https://github.com/dtolnay/ref-cast") + (synopsis "Derive implementation for @code{ref_cast::RefCast}") + (description + "Derive implementation for @code{ref_cast::RefCast}.") + (license (list license:expat license:asl2.0)))) + (define-public rust-ref-cast-impl-0.2 (package (name "rust-ref-cast-impl") |