mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
haskellPackages.inline-c-cpp: disable test-suite on darwin to fix the build
This commit is contained in:
parent
c5729a30f8
commit
559916f648
@ -173,12 +173,14 @@ self: super: {
|
|||||||
|
|
||||||
inline-c-cpp = if !pkgs.stdenv.isDarwin
|
inline-c-cpp = if !pkgs.stdenv.isDarwin
|
||||||
then super.inline-c-cpp
|
then super.inline-c-cpp
|
||||||
else addExtraLibrary (overrideCabal super.inline-c-cpp (drv:
|
else
|
||||||
{
|
let drv = addExtraLibrary (overrideCabal super.inline-c-cpp (drv: {
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
|
substituteInPlace inline-c-cpp.cabal --replace stdc++ c++
|
||||||
'';
|
'';
|
||||||
})) pkgs.libcxx;
|
})) pkgs.libcxx;
|
||||||
|
in # https://github.com/fpco/inline-c/issues/75
|
||||||
|
dontCheck drv;
|
||||||
|
|
||||||
inline-java = addBuildDepend super.inline-java pkgs.jdk;
|
inline-java = addBuildDepend super.inline-java pkgs.jdk;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user