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

25 lines
611 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, rustPlatform }:
2018-05-07 18:36:41 -07:00
rustPlatform.buildRustPackage rec {
2019-08-31 04:41:23 -07:00
pname = "cargo-fuzz";
2021-03-17 15:31:08 -07:00
version = "0.10.0";
2018-05-07 18:36:41 -07:00
2019-11-17 10:21:05 -08:00
src = fetchFromGitHub {
owner = "rust-fuzz";
repo = "cargo-fuzz";
rev = version;
2021-03-17 15:31:08 -07:00
sha256 = "sha256-kBbwE4ToUud5BDDlGoey2qpp2imzO6t3FcIbV3NTFa8=";
2019-11-17 10:21:05 -08:00
};
2018-05-07 18:36:41 -07:00
2021-03-17 15:31:08 -07:00
cargoSha256 = "sha256-zqRlB2Kck4icMKzhaeeakEnn6O7zhoKPa5ZWbGooWIg=";
2018-05-07 18:36:41 -07:00
doCheck = false;
meta = with lib; {
2018-05-07 18:36:41 -07:00
description = "Command line helpers for fuzzing";
homepage = "https://github.com/rust-fuzz/cargo-fuzz";
2018-05-07 18:36:41 -07:00
license = with licenses; [ mit asl20 ];
maintainers = [ maintainers.ekleog ];
};
}