cargo-fuzz: disable tests

tests require rustc nightly
This commit is contained in:
Mario Rodas 2020-08-20 04:20:00 -05:00
parent 8e3035e568
commit b2d4ba7f1e
No known key found for this signature in database
GPG Key ID: 325649BCA6D53027

View File

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchurl, runCommand, rustPlatform }:
{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
pname = "cargo-fuzz";
@ -13,6 +13,8 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "0zxhak79f50m8nw95ny733mk4x2f7kyk6q9v4f7jr2rkcldhgrpr";
doCheck = false;
meta = with stdenv.lib; {
description = "Command line helpers for fuzzing";
homepage = "https://github.com/rust-fuzz/cargo-fuzz";