2021-01-25 00:26:54 -08:00
|
|
|
{ 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";
|
2020-07-16 10:06:23 -07:00
|
|
|
version = "0.8.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;
|
2020-07-16 10:06:23 -07:00
|
|
|
sha256 = "1d4bq9140bri8cd9zcxh5hhc51vr0s6jadjhwkp688w7k10rq7w8";
|
2019-11-17 10:21:05 -08:00
|
|
|
};
|
2018-05-07 18:36:41 -07:00
|
|
|
|
2020-07-16 10:06:23 -07:00
|
|
|
cargoSha256 = "0zxhak79f50m8nw95ny733mk4x2f7kyk6q9v4f7jr2rkcldhgrpr";
|
2018-05-07 18:36:41 -07:00
|
|
|
|
2020-08-20 02:20:00 -07:00
|
|
|
doCheck = false;
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-05-07 18:36:41 -07:00
|
|
|
description = "Command line helpers for fuzzing";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/rust-fuzz/cargo-fuzz";
|
2018-05-07 18:36:41 -07:00
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
maintainers = [ maintainers.ekleog ];
|
|
|
|
};
|
|
|
|
}
|