3
0
Fork 0
forked from mirrors/nixpkgs

double-conversion: propagate libcxx

Packages that depend on double-conversion may fail their doctests if dlopen(libc++.dylib)
fails.
This commit is contained in:
Jude Taylor 2015-10-28 14:19:15 -07:00
parent a92c024c7f
commit 7f0e9659f7

View file

@ -217,12 +217,12 @@ self: super: {
double-conversion = if !pkgs.stdenv.isDarwin
then super.double-conversion
else overrideCabal super.double-conversion (drv:
else addBuildDepend (overrideCabal super.double-conversion (drv:
{
postPatch = ''
substituteInPlace double-conversion.cabal --replace stdc++ c++
'';
});
})) pkgs.libcxx;
# tests don't compile for some odd reason
jwt = dontCheck super.jwt;