From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 31/86] gnu: Add rust-encoding-index-tests. Date: Tue, 3 Jan 2017 23:35:47 +0000 Message-ID: <20170103233642.3181-32-ng0@libertad.pw> References: <20170103233642.3181-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54010) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOYeT-0003kv-20 for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:58 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cOYeS-0001Zr-5D for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:57 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33432) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOYeR-0001YZ-Ub for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:56 -0500 Received: from [10.9.9.210] (helo=mailfront10.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cOYeQ-00027Z-PL for guix-devel@gnu.org; Wed, 04 Jan 2017 00:37:54 +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-encoding-index-tests): New variable. --- gnu/packages/rust.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index 0151e7b8d..690680c63 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -927,3 +927,25 @@ whether an expression matches a pattern.") (description "Getopts provides a Rust library for option parsing for CLI utilities.") (license (list license:expat license:asl2.0)))) + +(define-public rust-encoding-index-tests + (package + (name "rust-encoding-index-tests") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (crate-uri "encoding_index_tests" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0s85y091gl17ixass49bzaivng7w8p82p6nyvz2r3my9w4mxhim2")))) + (build-system cargo-build-system) + (home-page "https://github.com/lifthrasiir/rust-encoding") + (synopsis "Helper macros used to test index tables for character encodings") + (description + "Encoding-index-tests provides helper macros used to test index +tables for character encodings. This package is part of the crate \"encoding\", +which is providing character encoding support for Rust.") + (license license:cc0))) -- 2.11.0