2020-08-20 09:20:00 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
2018-05-08 01:36:41 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-08-31 11:41:23 +00:00
|
|
|
pname = "cargo-fuzz";
|
2020-07-16 17:06:23 +00:00
|
|
|
version = "0.8.0";
|
2018-05-08 01:36:41 +00:00
|
|
|
|
2019-11-17 18:21:05 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rust-fuzz";
|
|
|
|
repo = "cargo-fuzz";
|
|
|
|
rev = version;
|
2020-07-16 17:06:23 +00:00
|
|
|
sha256 = "1d4bq9140bri8cd9zcxh5hhc51vr0s6jadjhwkp688w7k10rq7w8";
|
2019-11-17 18:21:05 +00:00
|
|
|
};
|
2018-05-08 01:36:41 +00:00
|
|
|
|
2020-07-16 17:06:23 +00:00
|
|
|
cargoSha256 = "0zxhak79f50m8nw95ny733mk4x2f7kyk6q9v4f7jr2rkcldhgrpr";
|
2018-05-08 01:36:41 +00:00
|
|
|
|
2020-08-20 09:20:00 +00:00
|
|
|
doCheck = false;
|
|
|
|
|
2018-05-08 01:36:41 +00:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Command line helpers for fuzzing";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/rust-fuzz/cargo-fuzz";
|
2018-05-08 01:36:41 +00:00
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
maintainers = [ maintainers.ekleog ];
|
|
|
|
};
|
|
|
|
}
|