diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-15 09:55:57 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:47 +0200 |
commit | 37d10a5cbe950ea498d337244435051e279a6287 (patch) | |
tree | c44379ce7fa157484f9110765f9d5da5089c772d | |
parent | b7a062bf104be21800d828f7b645388959fd52f2 (diff) |
gnu: Add rust-grep-searcher-0.1.
* gnu/package/crates-io.scm (rust-grep-searcher-0.1): New version.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index e383088463..3b019de559 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -3489,6 +3489,39 @@ the regex engine it uses pluggable.") "Use Rust's regex library with the grep crate.") (license (list license:unlicense license:expat)))) +(define-public rust-grep-searcher-0.1 + (package + (name "rust-grep-searcher") + (version "0.1.5") + (source + (origin + (method url-fetch) + (uri (crate-uri "grep-searcher" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0pj85m7q6k6jpl3q57v1gwq5jxmqnza2xg7jjcxky3q325z8lcjy")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-bstr" ,rust-bstr-0.2) + ("rust-bytecount" ,rust-bytecount-0.5) + ("rust-encoding-rs" ,rust-encoding-rs-0.8) + ("rust-encoding-rs-io" ,rust-encoding-rs-io-0.1) + ("rust-grep-matcher" ,rust-grep-matcher-0.1) + ("rust-log" ,rust-log-0.4) + ("rust-memmap" ,rust-memmap-0.7)) + #:cargo-development-inputs + (("rust-grep-regex" ,rust-grep-regex-0.1) + ("rust-regex" ,rust-regex-1.1)))) + (home-page "https://github.com/BurntSushi/ripgrep") + (synopsis "Line oriented regex searching as a library") + (description + "Fast line oriented regex searching as a library.") + (license (list license:unlicense license:expat)))) + (define-public rust-half-1.3 (package (name "rust-half") |