summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
commit5a0ea89ffc9b88d9c3f19c0d9118ea05517ebb02 (patch)
tree745efabbc52c78f7fe0be9ca36e44e112722ff08
parent36d4713209c53deaa2d1343d7164928ee02c516d (diff)
downloadguix-techchud-5a0ea89ffc9b88d9c3f19c0d9118ea05517ebb02.tar.gz
guix-techchud-5a0ea89ffc9b88d9c3f19c0d9118ea05517ebb02.tar.bz2
guix-techchud-5a0ea89ffc9b88d9c3f19c0d9118ea05517ebb02.zip
add rust-dyn-clonable-impl@0.9
-rw-r--r--unlustig.scm22
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)))
+