mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-14 19:05:10 -05:00
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>
This commit is contained in:
parent
6f9050865b
commit
0cb1001329
1 changed files with 34 additions and 0 deletions
|
@ -1200,6 +1200,40 @@ (define-public rust-globset-0.4
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue