depot/third_party/nixpkgs/pkgs/development/tools/rust/cargo-bolero/default.nix

23 lines
641 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind }:
rustPlatform.buildRustPackage rec {
pname = "cargo-bolero";
version = "0.8.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-j6fWCIXfVS5b3NZizhg9pI+kJkWlR1eGUSW9hJO1/mQ=";
};
cargoSha256 = "sha256-ycvGw99CcE29axG9UWD0lkQp5kxD6Eguco5Fh9Vfj6E=";
buildInputs = [ libbfd libopcodes libunwind ];
meta = with lib; {
description = "Fuzzing and property testing front-end framework for Rust";
homepage = "https://github.com/camshaft/bolero";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ekleog ];
};
}