mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
fontconfig: Add CoreFoundation to buildInputs (#98379)
Get rid of non-absolute RPATH reference to CoreFoundation
This commit is contained in:
parent
de2c3e08c0
commit
869b1090b8
@ -9,6 +9,7 @@
|
||||
, gperf
|
||||
, dejavu_fonts
|
||||
, autoreconfHook
|
||||
, CoreFoundation
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
@ -73,7 +74,7 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [
|
||||
expat
|
||||
];
|
||||
] ++ lib.optional stdenv.isDarwin CoreFoundation;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
freetype
|
||||
|
@ -14004,7 +14004,9 @@ in
|
||||
|
||||
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 { };
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user