mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 23:32:24 -05:00
gnu: Add rust-grep-matcher-0.1.
* gnu/packages/crates-io.scm (rust-grep-matcher-0.1): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
3e240e15e5
commit
ef46db38a9
1 changed files with 28 additions and 0 deletions
|
@ -1331,6 +1331,34 @@ (define-public rust-grep-cli-0.1
|
|||
"Utilities for search oriented command line applications.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-grep-matcher-0.1
|
||||
(package
|
||||
(name "rust-grep-matcher")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "grep-matcher" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"03j26zygfgwyam66bl5g922gimrvp4yyzl8qvaykyklnf247bl3r"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-memchr" ,rust-memchr-2.2))
|
||||
#:cargo-development-inputs
|
||||
(("rust-regex" ,rust-regex-1.1))))
|
||||
(home-page "https://github.com/BurntSushi/ripgrep")
|
||||
(synopsis "Trait for regular expressions")
|
||||
(description
|
||||
"This crate provides a low level interface for describing regular
|
||||
expression matchers. The @code{grep} crate uses this interface in order to make
|
||||
the regex engine it uses pluggable.")
|
||||
(license (list license:expat license:unlicense))))
|
||||
|
||||
(define-public rust-grep-pcre2-0.1
|
||||
(package
|
||||
(name "rust-grep-pcre2")
|
||||
|
|
Loading…
Reference in a new issue