depot/third_party/nixpkgs/pkgs/development/tools/rust/cargo-bolero/default.nix
Default email 83627f9931 Project import generated by Copybara.
GitOrigin-RevId: 2893f56de08021cffd9b6b6dfc70fd9ccd51eb60
2024-06-24 14:47:55 -04:00

27 lines
758 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;
sha256 = "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 ];
};
}