mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add rust-assert-matches-1.3.
* gnu/packages/crates-io.scm (rust-assert-matches-1.3): New variable.
This commit is contained in:
parent
835c854b5d
commit
ccdc86338d
1 changed files with 20 additions and 0 deletions
|
@ -478,6 +478,26 @@ (define-public rust-ascii-0.9
|
|||
"ASCII-only equivalents to @code{char}, @code{str} and @code{String}.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-assert-matches-1.3
|
||||
(package
|
||||
(name "rust-assert-matches")
|
||||
(version "1.3.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "assert_matches" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1rar61v00gz2aniid0mylxcr4q98s6l77c3hvbszmg57kj10msvx"))))
|
||||
(build-system cargo-build-system)
|
||||
(home-page "https://github.com/murarth/assert_matches")
|
||||
(synopsis "Asserts that a value matches a pattern")
|
||||
(description
|
||||
"This package asserts that a value matches a pattern in Rust.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-atty-0.2
|
||||
(package
|
||||
(name "rust-atty")
|
||||
|
|
Loading…
Reference in a new issue