mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-30 16:12:58 -05:00
gnu: Add rust-rustc-test-0.3.
* gnu/package/crates-io.scm (rust-rustc-test-0.3): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
d4eb88f03f
commit
28547158f3
1 changed files with 31 additions and 0 deletions
|
@ -5389,6 +5389,37 @@ (define-public rust-rustc-std-workspace-core-1.0
|
||||||
(license (list license:asl2.0
|
(license (list license:asl2.0
|
||||||
license:expat))))
|
license:expat))))
|
||||||
|
|
||||||
|
(define-public rust-rustc-test-0.3
|
||||||
|
(package
|
||||||
|
(name "rust-rustc-test")
|
||||||
|
(version "0.3.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "rustc-test" version))
|
||||||
|
(file-name
|
||||||
|
(string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"0a27mlcg0ck0hgsdvwk792x9z1k1qq1wj091f1l5yggbdbcsnx5w"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
(("rust-getopts" ,rust-getopts-0.2)
|
||||||
|
("rust-libc" ,rust-libc-0.2)
|
||||||
|
("rust-rustc-serialize" ,rust-rustc-serialize-0.3)
|
||||||
|
("rust-term" ,rust-term-0.5)
|
||||||
|
("rust-time" ,rust-time-0.1))
|
||||||
|
#:cargo-development-inputs
|
||||||
|
(("rust-rustc-version" ,rust-rustc-version-0.2))))
|
||||||
|
(home-page "https://github.com/servo/rustc-test")
|
||||||
|
(synopsis "Fork of Rust's test crate")
|
||||||
|
(description
|
||||||
|
"This package provides a fork of Rust's test crate that doesn't
|
||||||
|
require unstable language features.")
|
||||||
|
(license (list license:asl2.0 license:expat))))
|
||||||
|
|
||||||
(define-public rust-rustc-version-0.2
|
(define-public rust-rustc-version-0.2
|
||||||
(package
|
(package
|
||||||
(name "rust-rustc-version")
|
(name "rust-rustc-version")
|
||||||
|
|
Loading…
Reference in a new issue