guix-commits
[Top][All Lists]
Advanced

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

17/43: gnu: Add rust-matches.


From: guix-commits
Subject: 17/43: gnu: Add rust-matches.
Date: Mon, 12 Aug 2019 05:02:12 -0400 (EDT)

efraim pushed a commit to branch master
in repository guix.

commit e7ffbe2fda64d4a399ca325bc446df0837be1844
Author: Efraim Flashner <address@hidden>
Date:   Sun Aug 4 13:52:35 2019 +0300

    gnu: Add rust-matches.
    
    * gnu/packages/crates-io.scm (rust-matches): New variable.
---
 gnu/packages/crates-io.scm | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 7c9c2ac..0e379fb 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -333,6 +333,25 @@ friction with idiomatic Rust structs to ease 
interopability.")
     (license (list license:asl2.0
                    license:expat))))
 
+(define-public rust-matches
+  (package
+    (name "rust-matches")
+    (version "0.1.8")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (crate-uri "matches" version))
+        (file-name (string-append name "-" version ".tar.gz"))
+        (sha256
+         (base32
+          "020axl4q7rk9vz90phs7f8jas4imxal9y9kxl4z4v7a6719mrz3z"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/SimonSapin/rust-std-candidates";)
+    (synopsis "Macro to evaluate whether an expression matches a pattern.")
+    (description "This package provides a macro to evaluate, as a boolean,
+whether an expression matches a pattern.")
+    (license license:expat)))
+
 (define-public rust-proc-macro2
   (package
     (name "rust-proc-macro2")



reply via email to

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