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

25 lines
612 B
Nix
Raw Normal View History

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