From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: [PATCH 35/86] gnu: Add rust-encoding-index-singlebyte. Date: Tue, 3 Jan 2017 23:35:51 +0000 Message-ID: <20170103233642.3181-36-ng0@libertad.pw> References: <20170103233642.3181-1-ng0@libertad.pw> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53784) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cOYeH-0003UU-9g 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-0001SC-Iy for guix-devel@gnu.org; Tue, 03 Jan 2017 18:37:45 -0500 Received: from aibo.runbox.com ([91.220.196.211]:33407) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cOYeG-0001R4-Af 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 1cOYeF-0001rK-4j for guix-devel@gnu.org; Wed, 04 Jan 2017 00:37:43 +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-singlebyte): 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 907aac689..a5b779f93 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -1021,3 +1021,27 @@ which is providing character encoding support for Rust.") Chinese 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-singlebyte + (package + (name "rust-encoding-index-singlebyte") + (version "1.20141219.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "encoding-index-singlebyte" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0jp85bz2pprzvg9m95w4q0vibh67b6w3bx35lafay95jzyndal9k")))) + (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 various single-byte character encodings") + (description + "Encoding-index-singlebyte provides index tables for various +single-byte character encodings. This package is part of the crate \"encoding\", +which is providing character encoding support for Rust.") + (license license:cc0))) -- 2.11.0