* gnu/packages/rust.scm (rust-encoding-index-simpchinese): 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 e0b19eee4..907aac689 100644 --- a/gnu/packages/rust.scm +++ b/gnu/packages/rust.scm @@ -997,3 +997,27 @@ which is providing character encoding support for Rust.") 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-simpchinese + (package + (name "rust-encoding-index-simpchinese") + (version "1.20141219.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "encoding-index-simpchinese" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1xria2i7mc5dqdrpqxasdbxv1qx46jjbm53if3y1i4cvj2a72ynq")))) + (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 simplified Chinese character encodings") + (description + "Encoding-index-simpchinese provides index tables for simplified +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