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 double-conversion = if !pkgs.stdenv.isDarwin
then super.double-conversion then super.double-conversion
else overrideCabal super.double-conversion (drv: else addBuildDepend (overrideCabal super.double-conversion (drv:
{ {
postPatch = '' postPatch = ''
substituteInPlace double-conversion.cabal --replace stdc++ c++ substituteInPlace double-conversion.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;