2022-12-28 21:21:41 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind }:
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-bolero";
|
2022-12-28 21:21:41 +00:00
|
|
|
version = "0.8.0";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-j6fWCIXfVS5b3NZizhg9pI+kJkWlR1eGUSW9hJO1/mQ=";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
cargoSha256 = "sha256-ycvGw99CcE29axG9UWD0lkQp5kxD6Eguco5Fh9Vfj6E=";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
buildInputs = [ libbfd libopcodes libunwind ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Fuzzing and property testing front-end framework for Rust";
|
2022-12-28 21:21:41 +00:00
|
|
|
homepage = "https://github.com/camshaft/bolero";
|
2022-05-18 14:49:53 +00:00
|
|
|
license = with licenses; [ mit ];
|
2022-12-28 21:21:41 +00:00
|
|
|
maintainers = with maintainers; [ ekleog ];
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
|
|
|
}
|