From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 36/86] gnu: Add rust-encoding-index-tradchinese. Date: Tue, 3 Jan 2017 23:35:52 +0000 Message-ID: <20170103233642.3181-37-ng0@libertad.pw> References: <20170103233642.3181-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53698) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOYeF-0003RI-5j for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:44 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cOYeC-0001Oh-O1 for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:43 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33398) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOYeC-0001OG-Ge for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:40 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by bars.runbox.com with esmtp (Exim 4.71) (envelope-from ) id 1cOYeB-0001Tx-Au for guix-devel@gnu.org; Wed, 04 Jan 2017 00:37:39 +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-tradchinese): New variable. --- gnu/packages/rust.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/rust.scm b/gnu/packages/rust.scm index a5b779f93..e9b2a84bf 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -1045,3 +1045,27 @@ which is providing character encoding support for Rust.") single-byte character encodings. This package is part of the crate \"encoding\", which is providing character encoding support for Rust.") (license license:cc0))) + +(define-public rust-encoding-index-tradchinese + (package + (name "rust-encoding-index-tradchinese") + (version "1.20141219.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "encoding-index-tradchinese" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "060ci4iz6xfvzk38syfbjvs7pix5hch3mvxkksswmqwcd3aj03px")))) + (build-system cargo-build-system) + (inputs + `(("rust-encoding-index-tests" ,rust-encoding-index-tests "src"))) + (home-page "https://github.com/lifthrasiir/rust-encoding") + (synopsis "Index tables for traditional Chinese character encodings") + (description + "Encoding-index-tradchinese provides index tables for traditional +Chinese character encodings. This package is part of the crate \"encoding\", +which is providing character encoding support for Rust.") + (license license:cc0))) -- 2.11.0