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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
675 B
Nix
Raw Normal View History

2022-12-25 19:19:05 +00:00
{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind }:
2022-05-13 17:06:17 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-bolero";
version = "0.9.0";
2022-05-13 17:06:17 +00:00
2022-12-25 19:19:05 +00:00
src = fetchCrate {
inherit pname version;
sha256 = "sha256-BuqbM55P/st+4XUSCwrqILUUCfwvSlxhKQFO+IZLa8U=";
2022-05-13 17:06:17 +00:00
};
cargoSha256 = "sha256-+TxMOKoId13meXqmr1QjDZMNqBnPEDQF1VSPheq8Ji0=";
2022-05-13 17:06:17 +00:00
buildInputs = [ libbfd libopcodes libunwind ];
meta = with lib; {
description = "Fuzzing and property testing front-end framework for Rust";
mainProgram = "cargo-bolero";
2022-12-25 19:19:05 +00:00
homepage = "https://github.com/camshaft/bolero";
2022-05-13 17:06:17 +00:00
license = with licenses; [ mit ];
2022-12-25 19:19:05 +00:00
maintainers = with maintainers; [ ekleog ];
2022-05-13 17:06:17 +00:00
};
}