haskellPackages.inline-c-cpp: disable test-suite on darwin to fix the build

This commit is contained in:
Bas van Dijk 2019-01-01 16:51:24 +01:00
parent c5729a30f8
commit 559916f648

View File

@ -173,12 +173,14 @@ self: super: {
inline-c-cpp = if !pkgs.stdenv.isDarwin
then super.inline-c-cpp
else addExtraLibrary (overrideCabal super.inline-c-cpp (drv:
{
postPatch = ''
substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
'';
})) pkgs.libcxx;
else
let drv = addExtraLibrary (overrideCabal super.inline-c-cpp (drv: {
postPatch = ''
substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
'';
})) pkgs.libcxx;
in # https://github.com/fpco/inline-c/issues/75
dontCheck drv;
inline-java = addBuildDepend super.inline-java pkgs.jdk;