gnu: Add rust-cxx-test-suite-0.0.

* gnu/packages/crates-io.scm (rust-cxx-test-suite-0.0): New variable.
This commit is contained in:
Efraim Flashner 2021-01-03 12:03:46 +02:00
parent e6e350e6e3
commit 2dc2c232cb
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -6370,6 +6370,26 @@ (define-public rust-custom-derive-0.1
attributes.")
(license (list license:asl2.0 license:expat))))
(define-public rust-cxx-test-suite-0.0.0
(package
(name "rust-cxx-test-suite")
(version "0.0.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "cxx-test-suite" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"1pkf4ay1210g9wqyqhkgvlcsv4i6kgdcmgnh19mrymylznv7pcal"))))
(build-system cargo-build-system)
(arguments '(#:skip-build? #t)) ; Not meant to be built independantly.
(home-page "https://github.com/dtolnay/cxx")
(synopsis "Test suite of the cxx crate")
(description "This package provides the test suite of the cxx crate.")
(license (list license:expat license:asl2.0))))
(define-public rust-darling-0.10
(package
(name "rust-darling")