mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 22:16:32 +01:00
gnu: Add rust-derivative-2.
* gnu/packages/crates-io.scm (rust-derivative-2): New variable.
This commit is contained in:
parent
d8b23fa061
commit
72c17e1ae5
1 changed files with 26 additions and 0 deletions
|
@ -6584,6 +6584,32 @@ (define-public rust-demo-hack-impl-0.0
|
|||
(description "Demo of proc-macro-hack.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-derivative-2
|
||||
(package
|
||||
(name "rust-derivative")
|
||||
(version "2.1.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "derivative" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "03rqx8j9q5nlrpr7w8cwwrvw916pr0ahzs3y8yln18cx6mh2nn6b"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))
|
||||
#:cargo-development-inputs
|
||||
(("rust-trybuild" ,rust-trybuild-1))))
|
||||
(home-page "https://github.com/mcarton/rust-derivative")
|
||||
(synopsis "Set of alternative @code{derive} attributes for Rust")
|
||||
(description
|
||||
"This package provides a set of alternative @code{derive} attributes for
|
||||
Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-derive-builder-0.9
|
||||
(package
|
||||
(name "rust-derive-builder")
|
||||
|
|
Loading…
Reference in a new issue