inline-c-cpp: fix build on darwin
This commit is contained in:
parent
df8958435e
commit
d0c7056b92
@ -225,6 +225,15 @@ self: super: {
|
|||||||
'';
|
'';
|
||||||
})) pkgs.libcxx;
|
})) 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
|
# tests don't compile for some odd reason
|
||||||
jwt = dontCheck super.jwt;
|
jwt = dontCheck super.jwt;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user