gnu: Add rust-derive-builder-core-0.13.
* gnu/packages/crates-io.scm (rust-derive-core-0.13): New variable. (rust-derive-core-0.12): Inherit from rust-derive-core-0.13. Change-Id: I66ed816edef50f73ae1a1314e7a141f1a47ada78 Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
1f7d26fcf7
commit
6198a1bb69
1 changed files with 31 additions and 12 deletions
|
@ -19827,8 +19827,34 @@ for arbitrary structs.")
|
|||
("rust-skeptic" ,rust-skeptic-0.13)
|
||||
("rust-syn" ,rust-syn-0.15))))))
|
||||
|
||||
(define-public rust-derive-builder-core-0.13
|
||||
(package
|
||||
(name "rust-derive-builder-core")
|
||||
(version "0.13.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "derive_builder_core" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1381dgjq6jhirww088dff8b00v2d99illvnan0l0kvz7qdy33v54"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#: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))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-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.12
|
||||
(package
|
||||
(inherit rust-derive-builder-core-0.13)
|
||||
(name "rust-derive-builder-core")
|
||||
(version "0.12.0")
|
||||
(source (origin
|
||||
|
@ -19838,20 +19864,13 @@ for arbitrary structs.")
|
|||
(sha256
|
||||
(base32
|
||||
"03vvmw3mfg370swq0dh2h5kcjjb8va2m4asqgp9wfyy4l08xq6y1"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#: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))
|
||||
`(#: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))
|
||||
#:cargo-development-inputs
|
||||
(("rust-pretty-assertions" ,rust-pretty-assertions-0.6))))
|
||||
(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-pretty-assertions" ,rust-pretty-assertions-0.6))))))
|
||||
|
||||
(define-public rust-derive-builder-core-0.11
|
||||
(package
|
||||
|
|
Reference in a new issue