From 783a485105cf6a9f56a529ff2d94c413cb44f955 Mon Sep 17 00:00:00 2001 From: John Soo Date: Sun, 15 Dec 2019 09:53:19 -0800 Subject: [PATCH 190/206] gnu: Add rust-grep-regex-0.1. * gnu/packages/crates-io.scm (rust-grep-regex-0.1): New variable. --- gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 0776497b28..d982894d43 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -3522,6 +3522,37 @@ focus on line oriented search.") (description "Use PCRE2 with the grep crate.") (license `(,license:expat ,license:unlicense)))) +(define-public rust-grep-regex-0.1 + (package + (name "rust-grep-regex") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "grep-regex" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1lbb8837gzy25n706mnidaps4jl63ym679zraj8nfy5g02zbz549")))) + (build-system cargo-build-system) + ;; (arguments + ;; `(#:cargo-inputs + ;; (("rust-aho-corasick" ,rust-aho-corasick-0.7) + ;; ("rust-grep-matcher" ,rust-grep-matcher-0.1) + ;; ("rust-log" ,rust-log-0.4) + ;; ("rust-regex" ,rust-regex-1.1) + ;; ("rust-regex-syntax" ,rust-regex-syntax-0.6) + ;; ("rust-thread-local" ,rust-thread-local-0.3) + ;; ("rust-utf8-ranges" ,rust-utf8-ranges-1.0)))) + (home-page + "https://github.com/BurntSushi/ripgrep") + (synopsis + "Use Rust's regex library with the grep crate") + (description + "Use Rust's regex library with the grep crate.") + (license `(,license:unlicense ,license:expat)))) + (define-public rust-half-1.3 (package (name "rust-half") -- 2.24.0