Archived
1
0
Fork 0

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:
Efraim Flashner 2022-10-24 16:03:46 +03:00
parent 5f5b74fde2
commit dab464ea86
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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