mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-18 17:01:51 -05:00
gnu: Add rust-derive-builder-macro-0.10.
* gnu/packages/crates-io.scm (rust-derive-builder-macro-0.10): New variable.
This commit is contained in:
parent
69b653b10a
commit
be63e1918c
1 changed files with 26 additions and 0 deletions
|
@ -11849,6 +11849,32 @@ (define-public rust-derive-builder-core-0.2
|
||||||
#:cargo-development-inputs
|
#:cargo-development-inputs
|
||||||
(("rust-pretty-assertions" ,rust-pretty-assertions-0.2))))))
|
(("rust-pretty-assertions" ,rust-pretty-assertions-0.2))))))
|
||||||
|
|
||||||
|
(define-public rust-derive-builder-macro-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-derive-builder-macro")
|
||||||
|
(version "0.10.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "derive_builder_macro" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0wwdm4cgd4vlvabj5xsjjr4vvkqhnd3fi9wp3v5mlb09jp74maaq"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-derive-builder-core" ,rust-derive-builder-core-0.10)
|
||||||
|
("rust-syn" ,rust-syn-1))))
|
||||||
|
(home-page "https://github.com/colin-kiegel/rust-derive-builder")
|
||||||
|
(synopsis
|
||||||
|
"Rust macro to automatically implement the builder pattern for arbitrary structs")
|
||||||
|
(description
|
||||||
|
"This crate provides a Rust macro to automatically implement the builder
|
||||||
|
pattern for arbitrary structs.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-derive-error-chain-0.10
|
(define-public rust-derive-error-chain-0.10
|
||||||
(package
|
(package
|
||||||
(name "rust-derive-error-chain")
|
(name "rust-derive-error-chain")
|
||||||
|
|
Loading…
Reference in a new issue