inline-c-cpp: fix build on darwin
This commit is contained in:
parent
df8958435e
commit
d0c7056b92
1 changed files with 9 additions and 0 deletions
|
@ -225,6 +225,15 @@ self: super: {
|
|||
'';
|
||||
})) pkgs.libcxx;
|
||||
|
||||
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;
|
||||
|
||||
# tests don't compile for some odd reason
|
||||
jwt = dontCheck super.jwt;
|
||||
|
||||
|
|
Loading…
Reference in a new issue