me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-dyn-clone-1.

* gnu/packages/crates-io.scm (rust-dyn-clone-1): New variable.
master
Hartmut Goebel 2020-10-18 01:35:13 +02:00
parent 5979d01cbb
commit 325b4c83db
No known key found for this signature in database
GPG Key ID: 634A8DFFD3F631DF
1 changed files with 19 additions and 0 deletions

View File

@ -7291,6 +7291,25 @@ floating-point primitives to an @code{io::Write}.")
"A library for running child processes.")
(license license:expat)))
(define-public rust-dyn-clone-1
(package
(name "rust-dyn-clone")
(version "1.0.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "dyn-clone" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "10idzzq2sad7dhrfhrhcx7yckzj8il2bzr16204683ryclxdqlsc"))))
(arguments
`(#:skip-build? #t))
(build-system cargo-build-system)
(home-page "https://crates.io/crates/dyn-clone")
(synopsis "Clone trait that is object-safe")
(description "Clone trait that is object-safe")
(license (list license:expat license:asl2.0))))
(define-public rust-dwrote-0.9
(package
(name "rust-dwrote")