8000 overlay.nix: fix build of inline-c-cpp on OS X · LumiGuide/haskell-opencv@c0186cb · GitHub
[go: up one dir, main page]

Skip to content

Commit c0186cb

Browse files
committed
overlay.nix: fix build of inline-c-cpp on OS X
1 parent e3e0230 commit c0186cb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

overlay.nix

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@ let
9898
});
9999

100100
inline-c = super.inline-c_0_7_0_1;
101+
102+
# See https://github.com/fpco/inline-c/issues/75
103+
inline-c-cpp = if final.stdenv.isDarwin
104+
then dontCheck super.inline-c-cpp
105+
else super.inline-c-cpp;
101106
};
102107
in {
103108
haskell = previous.haskell // {

0 commit comments

Comments
 (0)
0