diff options
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 4856721..5a1fa8a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1105,3 +1105,25 @@ interoperation between crates in Rust.") log output.") (license (list license:expat license:asl2.0)))) +(define-public rust-dyn-clonable-impl-0.9 + (package + (name "rust-dyn-clonable-impl") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "dyn-clonable-impl" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0fi1fy6r2zaq88n21yszlcdbm66iz3xi2dbgl8vrm5sq83ap31ky")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-proc-macro2" ,rust-proc-macro2-1) + ("rust-quote" ,rust-quote-1) + ("rust-syn" ,rust-syn-2)) + #:cargo-development-inputs (("rust-dyn-clone" ,rust-dyn-clone-1)))) + (home-page "https://github.com/kardeiz/objekt-clonable") + (synopsis "Attribute wrapper for dyn-clone") + (description "This package provides Attribute wrapper for dyn-clone.") + (license license:expat))) + |