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:
John Soo 2020-06-17 18:51:44 -07:00 committed by Efraim Flashner
parent eec14aa4b0
commit da4bb9160b
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -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")