me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-derive-builder-core-0.12.

* gnu/packages/crates-io.scm (rust-derive-builder-core-0.12): New
variable.
(rust-derive-builder-core-0.11): Inherit from
rust-derive-builder-core-0.12.
Efraim Flashner 2023-08-03 12:00:36 +03:00
parent 6823ce0711
commit f482bf82bb
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 28 additions and 7 deletions

View File

@ -19266,8 +19266,35 @@ for arbitrary structs.")
("rust-skeptic" ,rust-skeptic-0.13) ("rust-skeptic" ,rust-skeptic-0.13)
("rust-syn" ,rust-syn-0.15)))))) ("rust-syn" ,rust-syn-0.15))))))
(define-public rust-derive-builder-core-0.12
(package
(name "rust-derive-builder-core")
(version "0.12.0")
(source (origin
(method url-fetch)
(uri (crate-uri "derive-builder-core" version))
(file-name (string-append name "-" version ".tar.gz"))
(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-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))))
(define-public rust-derive-builder-core-0.11 (define-public rust-derive-builder-core-0.11
(package (package
(inherit rust-derive-builder-core-0.12)
(name "rust-derive-builder-core") (name "rust-derive-builder-core")
(version "0.11.2") (version "0.11.2")
(source (source
@ -19277,19 +19304,13 @@ for arbitrary structs.")
(file-name (string-append name "-" version ".tar.gz")) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 "1i5gmf5lglbg7agj1khc6k9swf1clfs5fg6w0icw1w91m77x948z")))) (base32 "1i5gmf5lglbg7agj1khc6k9swf1clfs5fg6w0icw1w91m77x948z"))))
(build-system cargo-build-system)
(arguments (arguments
`(#:skip-build? #t `(#:skip-build? #t
#:cargo-inputs #:cargo-inputs
(("rust-darling" ,rust-darling-0.14) (("rust-darling" ,rust-darling-0.14)
("rust-proc-macro2" ,rust-proc-macro2-1) ("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1) ("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-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 (define-public rust-derive-builder-core-0.10
(package (package