libffi: don't check on darwin
libffi usages in stdenv broken darwin. We need to disable doCheck for that case.
This commit is contained in:
parent
d3cc05e607
commit
dc9018dfa2
|
@ -1,6 +1,9 @@
|
|||
{ stdenv, fetchurl, fetchpatch
|
||||
, buildPlatform, hostPlatform, autoreconfHook
|
||||
, doCheck ? true, dejagnu
|
||||
|
||||
# libffi is used in darwin stdenv
|
||||
# we cannot run checks within it
|
||||
, doCheck ? !stdenv.isDarwin, dejagnu
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
|
Loading…
Reference in New Issue