From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 39/86] gnu: Add rust-clippy-mini-macro-test. Date: Tue, 3 Jan 2017 23:35:55 +0000 Message-ID: <20170103233642.3181-40-ng0@libertad.pw> References: <20170103233642.3181-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53776) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOYeH-0003Tb-0G for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:46 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cOYeG-0001Rm-7B for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:45 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33405) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOYeF-0001QY-TF for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:44 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cOYeE-0001pl-Me for guix-devel@gnu.org; Wed, 04 Jan 2017 00:37:42 +0100 In-Reply-To: <20170103233642.3181-1-ng0@libertad.pw> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * 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