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

24 lines
653 B
Nix
Raw Normal View History

2018-05-08 03:36:41 +02:00
{ stdenv, fetchFromGitHub, fetchurl, runCommand, rustPlatform }:
rustPlatform.buildRustPackage rec {
2019-08-31 13:41:23 +02:00
pname = "cargo-fuzz";
2019-11-17 19:21:05 +01:00
version = "0.5.4";
2018-05-08 03:36:41 +02:00
2019-11-17 19:21:05 +01:00
src = fetchFromGitHub {
owner = "rust-fuzz";
repo = "cargo-fuzz";
rev = version;
sha256 = "0qy4xb7bxyw2x2ya7zmbkz48wxb69jcnvvj7021f1kyc6wdwcxs7";
};
2018-05-08 03:36:41 +02:00
2019-11-17 19:21:05 +01:00
cargoSha256 = "1d42cmpg1yn1ql9isx26kxsxzf5rg6qw6j948skc5p054r0c9n3f";
2018-05-08 03:36:41 +02:00
meta = with stdenv.lib; {
description = "Command line helpers for fuzzing";
homepage = https://github.com/rust-fuzz/cargo-fuzz;
license = with licenses; [ mit asl20 ];
maintainers = [ maintainers.ekleog ];
platforms = platforms.all;
};
}