mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add rust-propfuzz-0.0.1.
* gnu/packages/crates-io.scm (rust-propfuzz-0.0.1): New variable. Signed-off-by: Tobias Geerinckx-Rice <me@tobias.gr>
This commit is contained in:
parent
545fc7285b
commit
54f11f47b5
1 changed files with 24 additions and 0 deletions
|
@ -42268,6 +42268,30 @@ (define-public rust-progressing-3
|
||||||
progress-bars for Rust.")
|
progress-bars for Rust.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public rust-propfuzz-0.0.1
|
||||||
|
(package
|
||||||
|
(name "rust-propfuzz")
|
||||||
|
(version "0.0.1")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "propfuzz" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1xadkjqsnnazfksaywxkdgv0fjkclj2p7x36r044jbj9g395nxyg"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:skip-build? #t
|
||||||
|
#:cargo-inputs
|
||||||
|
`(("rust-propfuzz-macro" ,rust-propfuzz-macro-0.0.1)
|
||||||
|
("rust-proptest" ,rust-proptest-0.10))))
|
||||||
|
(home-page "https://github.com/facebookincubator/propfuzz")
|
||||||
|
(synopsis "Property-based testing and fuzzing")
|
||||||
|
(description
|
||||||
|
"This package provides a Rust library that combines
|
||||||
|
property-based testing and fuzzing.")
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
(define-public rust-propfuzz-macro-0.0.1
|
(define-public rust-propfuzz-macro-0.0.1
|
||||||
(package
|
(package
|
||||||
(name "rust-propfuzz-macro")
|
(name "rust-propfuzz-macro")
|
||||||
|
|
Loading…
Reference in a new issue