gnu: Add rust-derive-builder-core-0.11.
* gnu/packages/crates-io.scm (rust-derive-builder-core-0.11): New variable. (rust-derive-builder-core-0.10): Inherit from rust-derive-builder-core-0.11.
This commit is contained in:
parent
5f5b74fde2
commit
dab464ea86
1 changed files with 27 additions and 7 deletions
|
@ -16393,8 +16393,34 @@ for arbitrary structs.")
|
|||
("rust-skeptic" ,rust-skeptic-0.13)
|
||||
("rust-syn" ,rust-syn-0.15))))))
|
||||
|
||||
(define-public rust-derive-builder-core-0.11
|
||||
(package
|
||||
(name "rust-derive-builder-core")
|
||||
(version "0.11.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "derive_builder_core" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1i5gmf5lglbg7agj1khc6k9swf1clfs5fg6w0icw1w91m77x948z"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-darling" ,rust-darling-0.14)
|
||||
("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/colin-kiegel/rust-derive-builder")
|
||||
(synopsis "Internal helper library for @code{rust-derive-builder}")
|
||||
(description
|
||||
"Internal helper library for @code{rust-derive-builder}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-derive-builder-core-0.10
|
||||
(package
|
||||
(inherit rust-derive-builder-core-0.11)
|
||||
(name "rust-derive-builder-core")
|
||||
(version "0.10.2")
|
||||
(source
|
||||
|
@ -16404,19 +16430,13 @@ for arbitrary structs.")
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1r9ngcrfcvqv5l5p86bzg9v863bjf5nlmippin1fv1v1iy2idrk6"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-darling" ,rust-darling-0.12)
|
||||
("rust-proc-macro2" ,rust-proc-macro2-1)
|
||||
("rust-quote" ,rust-quote-1)
|
||||
("rust-syn" ,rust-syn-1))))
|
||||
(home-page "https://github.com/colin-kiegel/rust-derive-builder")
|
||||
(synopsis "Internal helper library for @code{rust-derive-builder}")
|
||||
(description
|
||||
"Internal helper library for @code{rust-derive-builder}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
("rust-syn" ,rust-syn-1))))))
|
||||
|
||||
(define-public rust-derive-builder-core-0.9
|
||||
(package
|
||||
|
|
Reference in a new issue