5ca88bfbb9
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
27 lines
754 B
Nix
27 lines
754 B
Nix
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind, nix-update-script }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-bolero";
|
|
version = "0.11.2";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk=";
|
|
};
|
|
|
|
cargoHash = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M=";
|
|
|
|
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 ];
|
|
};
|
|
}
|