libffi: don't check on darwin

libffi usages in stdenv broken darwin. We need to disable doCheck for that case.
wip/yesman
Matthew Bauer 6 years ago committed by GitHub
parent d3cc05e607
commit dc9018dfa2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      pkgs/development/libraries/libffi/default.nix

@ -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…
Cancel
Save