From c3a94fe2612cf118d0afa9adf2f56a9c7c3ca91a Mon Sep 17 00:00:00 2001 From: John Soo Date: Sat, 14 Dec 2019 19:24:50 -0800 Subject: [PATCH 123/263] gnu: Add rust-unchecked-index-0.2. * gnu/packages/crates-io.scm (rust-unchecked-index-0.2): New variable. --- gnu/packages/crates-io.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index cc6ae13b86..7576b7757a 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -7527,6 +7527,29 @@ with the Unicode character database.") (license (list license:asl2.0 license:expat)))) +(define-public rust-unchecked-index-0.2 + (package + (name "rust-unchecked-index") + (version "0.2.2") + (source + (origin + (method url-fetch) + (uri (crate-uri "unchecked-index" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0p6qcai1mjayx59cpgk27d0zgw9hz9r1ira5jiqil66f4ba8dfpf")))) + (build-system cargo-build-system) + (arguments `(#:skip-build? #t)) + (home-page + "https://github.com/bluss/unchecked-index") + (synopsis + "Unchecked indexing wrapper using regular index syntax") + (description + "Unchecked indexing wrapper using regular index syntax.") + (license `(,license:asl2.0 ,license:expat)))) + (define-public rust-unicase-2.4 (package (name "rust-unicase") -- 2.24.1