Merge pull request #122552 from stephank/fix-cargo-fuzz-darwin

cargo-fuzz: fix darwin build
This commit is contained in:
Jörg Thalheim
2021-05-11 09:46:43 +01:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ lib, fetchFromGitHub, rustPlatform }:
{ lib, fetchFromGitHub, rustPlatform, stdenv, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "cargo-fuzz";
@@ -13,6 +13,8 @@ rustPlatform.buildRustPackage rec {
cargoSha256 = "sha256-eEfry6Q2YiIkNEHu6C8p17pUTF43eS1/iTP2oATZ/F8=";
buildInputs = lib.optional stdenv.isDarwin libiconv;
doCheck = false;
meta = with lib; {