gnu: Add rust-typed-builder-0.5.

* gnu/packages/crates-io.scm (rust-typed-builder-0.5): New variable.
This commit is contained in:
Nicolas Goaziou 2021-12-04 13:18:23 +01:00
parent edb9134edc
commit 7c98a84551
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -59260,6 +59260,30 @@ (define-public rust-typed-arena-1
"The arena, a fast but limited type of allocator.")
(license license:expat)))
(define-public rust-typed-builder-0.5
(package
(name "rust-typed-builder")
(version "0.5.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "typed-builder" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1zi9mmkz2vwg5cn8x9738vli42h21jyspvfi83y2sa6lvlja5kkq"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
(("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-syn" ,rust-syn-1))))
(home-page "https://github.com/idanarye/rust-typed-builder")
(synopsis "Compile-time type-checked builder derive")
(description
"This package provides compile-time type-checked builder derive.")
(license (list license:expat license:asl2.0))))
(define-public rust-typed-headers-0.2
(package
(name "rust-typed-headers")