guix-devel
[Top][All Lists]
Advanced

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

[PATCH 39/86] gnu: Add rust-clippy-mini-macro-test.


From: ng0
Subject: [PATCH 39/86] gnu: Add rust-clippy-mini-macro-test.
Date: Tue, 3 Jan 2017 23:35:55 +0000

* gnu/packages/rust.scm (rust-clippy-mini-macro-test): New variable.
---
 gnu/packages/rust.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm
index 28a8f72c6..8185ddcad 100644
--- a/gnu/packages/rust.scm
+++ b/gnu/packages/rust.scm
@@ -1127,3 +1127,24 @@ The only potentially lock-synchronized portion of this 
deque is the
 occasional call to the memory allocator when growing the deque.
 Otherwise all operations are lock-free.")
     (license (list license:expat license:asl2.0))))
+
+(define-public rust-clippy-mini-macro-test
+  (package
+    (name "rust-clippy-mini-macro-test")
+    (version "0.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "clippy-mini-macro-test" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1f1q09az4xk4aqnp8g1m6kf4hif75gr7rwzhh4yw7g1gqk94jsgq"))))
+    (build-system cargo-build-system)
+    (home-page "https://github.com/Manishearth/rust-clippy";)
+    (synopsis "Macro to test clippy's procedural macro checks")
+    (description
+     "Clippy-mini-macro-test provides a macro to test
+clippy's procedural macro checks.")
+    (license license:mpl2.0)))
-- 
2.11.0




reply via email to

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