From e12c5deabe155a707c2fe7cea734f62868f40897 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Wed, 4 Sep 2013 15:51:49 +0200 Subject: [PATCH] libffi: disable doCheck on darwin until we fix dejagnu build --- pkgs/development/libraries/libffi/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libffi/default.nix b/pkgs/development/libraries/libffi/default.nix index f8ca40168ef9..807fe54c27e8 100644 --- a/pkgs/development/libraries/libffi/default.nix +++ b/pkgs/development/libraries/libffi/default.nix @@ -12,7 +12,7 @@ stdenv.mkDerivation rec { configureFlags = [ "--with-gcc-arch=generic" ]; # no detection of -march= or -mtune= - doCheck = true; + doCheck = !stdenv.isDarwin; # until we solve dejagnu problems on darwin dontStrip = stdenv ? cross; # Don't run the native `strip' when cross-compiling.