guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

51/53: gnu: Add rust-version-check.


From: guix-commits
Subject: 51/53: gnu: Add rust-version-check.
Date: Wed, 28 Aug 2019 09:55:10 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit 8aa60ffe8d67c64b68180ce345492318260ca58b
Author: Efraim Flashner <address@hidden>
Date:   Wed Aug 28 16:49:58 2019 +0300

    gnu: Add rust-version-check.
    
    * gnu/packages/crates-io.scm (rust-verison-check): New variable.
---
 gnu/packages/crates-io.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 1b9127b..bd57282 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -1852,6 +1852,30 @@ whitespace from a string.")
 untrusted inputs in Rust.")
     (license license:isc)))
 
+(define-public rust-version-check
+  (package
+    (name "rust-version-check")
+    (version "0.9.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "version_check" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "1kikqlnggii1rvnxrbls55sc46lxvinz5k3giscgncjj4p87b1q7"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/SergioBenitez/version_check";)
+    (synopsis "Check that the installed rustc meets some version requirements")
+    (description
+     "This tiny crate checks that the running or installed rustc meets some
+version requirements.  The version is queried by calling the Rust compiler with
+@code{--version}.  The path to the compiler is determined first via the
+@code{RUSTC} environment variable.  If it is not set, then @code{rustc} is 
used.
+If that fails, no determination is made, and calls return None.")
+    (license (list license:asl2.0
+                   license:expat))))
+
 (define-public rust-wasi
   (package
     (name "rust-wasi")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]