diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:11:18 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:11:18 -0600 |
commit | e5c23dd1dcd13e56ae42ba668405f43651681842 (patch) | |
tree | 745efabbc52c78f7fe0be9ca36e44e112722ff08 | |
parent | fd3a42a9538c494fb47d05cc9a0aac421a631d9d (diff) | |
download | guix-msglm-e5c23dd1dcd13e56ae42ba668405f43651681842.tar.gz guix-msglm-e5c23dd1dcd13e56ae42ba668405f43651681842.tar.bz2 guix-msglm-e5c23dd1dcd13e56ae42ba668405f43651681842.zip |
add rust-dyn-clonable-impl@0.9
-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))) + |