f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
27 lines
756 B
Nix
27 lines
756 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=";
|
|
};
|
|
|
|
cargoSha256 = "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 ];
|
|
};
|
|
}
|