gnu: Add rust-rustc-version-0.2.

* gnu/packages/crates-io.scm (rust-rustc-version-0.2): New version.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
John Soo 2019-12-14 14:12:48 -08:00 committed by Efraim Flashner
parent c3344a3334
commit 2721bb84b8
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -4346,6 +4346,31 @@ (define-public rust-rustc-std-workspace-core-1.0
(license (list license:asl2.0
license:expat))))
(define-public rust-rustc-version-0.2
(package
(name "rust-rustc-version")
(version "0.2.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "rustc_version" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"02h3x57lcr8l2pm0a645s9whdh33pn5cnrwvn5cb57vcrc53x3hk"))))
(build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs (("rust-semver" ,rust-semver-0.9))))
(home-page "https://github.com/Kimundi/rustc-version-rs")
(synopsis
"Library for querying the version of a installed rustc compiler")
(description
"This package provides a library for querying the version of a installed
rustc compiler.")
(license (list license:expat license:asl2.0))))
(define-public rust-ryu-1.0
(package
(name "rust-ryu")