Files
nixpkgs/pkgs/by-name/ca/cargo-bolero/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

40 lines
783 B
Nix

{
lib,
rustPlatform,
fetchCrate,
libbfd,
libopcodes,
libunwind,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-bolero";
version = "0.13.4";
src = fetchCrate {
inherit pname version;
hash = "sha256-lfBpHaY2UCBMg45S4IW8fcpkGkKJoT4qqR2yq5KiXuE=";
};
cargoHash = "sha256-2URFqLg2aQF7MOpwG6fEPBXyBsLENWpdiXgxW/DJxQE=";
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 ];
};
}