mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 15:22:18 -05:00
gnu: Add rust-matchers-0.0.
* gnu/package/crates-io.scm (rust-matchers-0.0): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
eec14aa4b0
commit
da4bb9160b
1 changed files with 25 additions and 0 deletions
|
@ -14781,6 +14781,31 @@ (define-public rust-matches-0.1
|
|||
whether an expression matches a pattern.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-matchers-0.0
|
||||
(package
|
||||
(name "rust-matchers")
|
||||
(version "0.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "matchers" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1q8ckqmkjqkznvdi9x0z769yz2bmvlqcwx51ad2lpk4mfmgpi6gh"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-regex-automata" ,rust-regex-automata-0.1))))
|
||||
(home-page "https://github.com/hawkw/matchers")
|
||||
(synopsis "Regex matching on character and byte streams")
|
||||
(description
|
||||
"Use this crate to match on character and byte streams using regular
|
||||
grammars. It provides the subset of the regex crate that only deals with
|
||||
matching, not parsing substrings.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-matrixmultiply-0.2
|
||||
(package
|
||||
(name "rust-matrixmultiply")
|
||||
|
|
Loading…
Reference in a new issue