mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-28 06:14:26 +03:00
double-conversion: propagate libcxx
Packages that depend on double-conversion may fail their doctests if dlopen(libc++.dylib) fails.
This commit is contained in:
parent
a92c024c7f
commit
7f0e9659f7
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user