39 lines
783 B
Nix
39 lines
783 B
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchCrate,
|
|
libbfd,
|
|
libopcodes,
|
|
libunwind,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-bolero";
|
|
version = "0.12.0";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-ta0H6V7Zg/Jnu3973eYJXGwwQcqZnDTlsmWAHkQr2EA=";
|
|
};
|
|
|
|
cargoHash = "sha256-5F72vjEu0qrE3fYPbiw/UFUUnAZcEBcuhDkuqqCBbrM=";
|
|
|
|
buildInputs = [
|
|
libbfd
|
|
libopcodes
|
|
libunwind
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Fuzzing and property testing front-end framework for Rust";
|
|
mainProgram = "cargo-bolero";
|
|
homepage = "https://github.com/camshaft/bolero";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ ekleog ];
|
|
};
|
|
}
|