diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:05 -0500 |
commit | 4fa94712594f862554902f6ffd7bda6c054cf6cb (patch) | |
tree | 7d2f3e4a53ac0c776901446ed515061b4c924e06 | |
parent | d3951919741bf70694e7cb1f2ee6188001506e02 (diff) | |
download | guix-techchud-4fa94712594f862554902f6ffd7bda6c054cf6cb.tar.gz guix-techchud-4fa94712594f862554902f6ffd7bda6c054cf6cb.tar.bz2 guix-techchud-4fa94712594f862554902f6ffd7bda6c054cf6cb.zip |
add rust-dyn-clonable@0.9
-rw-r--r-- | unlustig.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 42fdc42..a91ac68 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -818,3 +818,23 @@ the OS-level clipboard.") "This package provides An implementation of `std::hash::Hasher` which does not hash at all.") (license (list license:asl2.0 license:expat)))) +(define-public rust-dyn-clonable-0.9 + (package + (name "rust-dyn-clonable") + (version "0.9.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "dyn-clonable" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "01885xap4dmln3yspzyr0mmcwnm9mdhlp80ag0iig3nmpywznvm3")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-dyn-clonable-impl" ,rust-dyn-clonable-impl-0.9) + ("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))) + |