2024-06-24 18:47:55 +00:00
|
|
|
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind, nix-update-script }:
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-bolero";
|
2024-06-24 18:47:55 +00:00
|
|
|
version = "0.11.2";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
2022-12-28 21:21:41 +00:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
2024-07-27 06:49:29 +00:00
|
|
|
hash = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk=";
|
2022-05-18 14:49:53 +00:00
|
|
|
};
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
cargoHash = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M=";
|
2022-05-18 14:49:53 +00:00
|
|
|
|
|
|
|
buildInputs = [ libbfd libopcodes libunwind ];
|
|
|
|
|
2024-06-24 18:47:55 +00:00
|
|
|
passthru = {
|
|
|
|
updateScript = nix-update-script { };
|
|
|
|
};
|
|
|
|
|
2022-05-18 14:49:53 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Fuzzing and property testing front-end framework for Rust";
|
2024-04-21 15:54:59 +00:00
|
|
|
mainProgram = "cargo-bolero";
|
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
|
|
|
};
|
|
|
|
}
|