gnu: Add rust-cbindgen-0.15.

* gnu/packages/rust-apps.scm (rust-cbindgen-0.15): New variable.
This commit is contained in:
Nicolas Goaziou 2021-01-03 21:49:26 +01:00
parent 7712500a20
commit 319e48794c
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -401,6 +401,33 @@ (define-public rust-cbindgen-0.16
#:cargo-development-inputs
(("rust-serial-test" ,rust-serial-test-0.5))))))
(define-public rust-cbindgen-0.15
(package
(inherit rust-cbindgen)
(name "rust-cbindgen")
(version "0.15.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "cbindgen" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0dgf49zij9rxnf0lv4k5gcmx1mxcz16czkk6q63anz0xp8ds3xhx"))))
(arguments
`(#:tests? #false ;missing files
#:cargo-inputs
(("rust-clap" ,rust-clap-2)
("rust-heck" ,rust-heck-0.3)
("rust-indexmap" ,rust-indexmap-1)
("rust-log" ,rust-log-0.4)
("rust-proc-macro2" ,rust-proc-macro2-1)
("rust-quote" ,rust-quote-1)
("rust-serde" ,rust-serde-1)
("rust-serde-json" ,rust-serde-json-1)
("rust-syn" ,rust-syn-1)
("rust-tempfile" ,rust-tempfile-3)
("rust-toml" ,rust-toml-0.5))))))
(define-public rust-cbindgen-0.14
(package
(inherit rust-cbindgen)