fontforge: enable Carbon which is required on OSX
This commit is contained in:
parent
8d977ead38
commit
810787238d
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
python freetype zlib glib libungif libpng libjpeg libtiff libxml2
|
python freetype zlib glib libungif libpng libjpeg libtiff libxml2
|
||||||
]
|
]
|
||||||
++ lib.optionals withGTK [ gtk2 pango ]
|
++ lib.optionals withGTK [ gtk2 pango ]
|
||||||
++ lib.optionals (withGTK && stdenv.isDarwin) [ Carbon Cocoa ];
|
++ lib.optionals stdenv.isDarwin [ Carbon Cocoa ];
|
||||||
|
|
||||||
configureFlags =
|
configureFlags =
|
||||||
lib.optionals (!withPython) [ "--disable-python-scripting" "--disable-python-extension" ]
|
lib.optionals (!withPython) [ "--disable-python-scripting" "--disable-python-extension" ]
|
||||||
|
@ -1617,7 +1617,9 @@ in
|
|||||||
|
|
||||||
flvtool2 = callPackage ../tools/video/flvtool2 { };
|
flvtool2 = callPackage ../tools/video/flvtool2 { };
|
||||||
|
|
||||||
fontforge = lowPrio (callPackage ../tools/misc/fontforge { });
|
fontforge = lowPrio (callPackage ../tools/misc/fontforge {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||||
|
});
|
||||||
fontforge-gtk = callPackage ../tools/misc/fontforge {
|
fontforge-gtk = callPackage ../tools/misc/fontforge {
|
||||||
withGTK = true;
|
withGTK = true;
|
||||||
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
inherit (darwin.apple_sdk.frameworks) Carbon Cocoa;
|
||||||
|
Loading…
Reference in New Issue
Block a user