fontconfig: Add CoreFoundation to buildInputs (#98379)
Get rid of non-absolute RPATH reference to CoreFoundation
This commit is contained in:
parent
de2c3e08c0
commit
869b1090b8
2 changed files with 5 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
||||||
, gperf
|
, gperf
|
||||||
, dejavu_fonts
|
, dejavu_fonts
|
||||||
, autoreconfHook
|
, autoreconfHook
|
||||||
|
, CoreFoundation
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -73,7 +74,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
expat
|
expat
|
||||||
];
|
] ++ lib.optional stdenv.isDarwin CoreFoundation;
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
freetype
|
freetype
|
||||||
|
|
|
@ -14004,7 +14004,9 @@ in
|
||||||
|
|
||||||
cfitsio = callPackage ../development/libraries/cfitsio { };
|
cfitsio = callPackage ../development/libraries/cfitsio { };
|
||||||
|
|
||||||
fontconfig = callPackage ../development/libraries/fontconfig { };
|
fontconfig = callPackage ../development/libraries/fontconfig {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreFoundation;
|
||||||
|
};
|
||||||
|
|
||||||
folly = callPackage ../development/libraries/folly { };
|
folly = callPackage ../development/libraries/folly { };
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue