nixpkgs/pkgs/by-name/ca/cargo-bolero/package.nix

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

28 lines
754 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate, libbfd, libopcodes, libunwind, nix-update-script }:
2022-05-13 17:06:17 +00:00
rustPlatform.buildRustPackage rec {
pname = "cargo-bolero";
version = "0.11.2";
2022-05-13 17:06:17 +00:00
2022-12-25 19:19:05 +00:00
src = fetchCrate {
inherit pname version;
hash = "sha256-Xcu91CbIDBLSojWQJjvdFWJiqjMteAxF105lemCAipk=";
2022-05-13 17:06:17 +00:00
};
cargoHash = "sha256-QLtf42Il+XHWeaUdh8jNNWU1sXaVe82sYOKiHLoXw2M=";
2022-05-13 17:06:17 +00:00
buildInputs = [ libbfd libopcodes libunwind ];
passthru = {
updateScript = nix-update-script { };
};
2022-05-13 17:06:17 +00:00
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
};
}