diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-10 18:35:14 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-02-13 11:50:44 +0100 |
commit | 0ba858ed891012485e73dd90f50e6bed5674c224 (patch) | |
tree | ce219644c40dc7c4ff2cde87c2865a0c091212ca /gnu | |
parent | f6dac094c6343c5e140042dc342bd149ad83817b (diff) | |
download | guix-0ba858ed891012485e73dd90f50e6bed5674c224.tar guix-0ba858ed891012485e73dd90f50e6bed5674c224.tar.gz |
gnu: Add rust-rustc-version-0.3.
* gnu/packages/crates-io.scm (rust-rustc-version-0.3): New variable.
(rust-rustc-version-0.2): Inherit from above.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 34 |
1 files changed, 25 insertions, 9 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 922b1ff597..8866a8522d 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -33381,8 +33381,32 @@ require unstable language features.") "small helper to generate version information for git packages") (license (list license:expat license:asl2.0)))) +(define-public rust-rustc-version-0.3 + (package + (name "rust-rustc-version") + (version "0.3.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustc_version" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1vjmw7xcdri0spsf24mkpwpph853wrbqppihhw061i2igh4f5pzh")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-semver" ,rust-semver-0.11)))) + (home-page "https://github.com/Kimundi/rustc-version-rs") + (synopsis "Library for querying the version of an installed rustc compiler") + (description + "This package provides a library for querying the version of an installed +rustc compiler.") + (license (list license:expat license:asl2.0)))) + (define-public rust-rustc-version-0.2 (package + (inherit rust-rustc-version-0.3) (name "rust-rustc-version") (version "0.2.3") (source @@ -33394,17 +33418,9 @@ require unstable language features.") (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)))) + #:cargo-inputs (("rust-semver" ,rust-semver-0.9)))))) (define-public rust-rustdoc-stripper-0.1 (package |