diff options
author | John Soo <jsoo1@asu.edu> | 2019-12-13 21:29:49 -0800 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2020-01-02 20:16:08 +0200 |
commit | 0cb1001329fd41d54e62496ed2e992187f89e453 (patch) | |
tree | cf6c89ca50458cdbdbbc147b5c232b4ce6f862b5 | |
parent | 6f9050865bb87a43a0dca8afbccedbcd47850ee5 (diff) |
gnu: Add rust-grep-cli-0.1.
* gnu/packages/crates-io.scm (rust-grep-cli-0.1): New variable.
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
-rw-r--r-- | gnu/packages/crates-io.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 59fd6c9149..24e82e0034 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -1200,6 +1200,40 @@ the process of matching one or more glob patterns against a single candidate path simultaneously, and returning all of the globs that matched.") (license (list license:expat license:unlicense)))) +(define-public rust-grep-cli-0.1 + (package + (name "rust-grep-cli") + (version "0.1.3") + (source + (origin + (method url-fetch) + (uri (crate-uri "grep-cli" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "05a502x5m4fijwx7zj9icxna2dx86scm76ap80zr89pnvpbfk1hp")))) + (build-system cargo-build-system) + (arguments + `(#:skip-build? #t + #:cargo-inputs + (("rust-atty" ,rust-atty-0.2) + ("rust-bstr" ,rust-bstr-0.2) + ("rust-globset" ,rust-globset-0.4) + ("rust-lazy-static" ,rust-lazy-static-1.3) + ("rust-log" ,rust-log-0.4) + ("rust-regex" ,rust-regex-1.1) + ("rust-same-file" ,rust-same-file-1.0) + ("rust-termcolor" ,rust-termcolor-1.0) + ("rust-winapi-util" ,rust-winapi-util-0.1)))) + (home-page + "https://github.com/BurntSushi/ripgrep") + (synopsis + "Utilities for search oriented command line applications") + (description + "Utilities for search oriented command line applications.") + (license license:expat))) + (define-public rust-heapsize-0.4 (package (name "rust-heapsize") |