depot/third_party/nixpkgs/pkgs/development/tools/rust/cargo-bolero/default.nix
Default email 5ca88bfbb9 Project import generated by Copybara.
GitOrigin-RevId: 9f918d616c5321ad374ae6cb5ea89c9e04bf3e58
2024-07-31 10:19:44 +00:00

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 ];
};
}