pango: Add darwin frameworks for fond rendering
This commit is contained in:
parent
bbdca635cf
commit
354c91df2e
@ -1,5 +1,5 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
|
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
|
||||||
, libintlOrEmpty, gobjectIntrospection
|
, libintlOrEmpty, gobjectIntrospection, darwin
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
@ -19,7 +19,12 @@ stdenv.mkDerivation rec {
|
|||||||
outputs = [ "bin" "dev" "out" "devdoc" ];
|
outputs = [ "bin" "dev" "out" "devdoc" ];
|
||||||
|
|
||||||
buildInputs = [ gobjectIntrospection ];
|
buildInputs = [ gobjectIntrospection ];
|
||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ]
|
||||||
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
||||||
|
Carbon
|
||||||
|
CoreGraphics
|
||||||
|
CoreText
|
||||||
|
]);
|
||||||
propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty;
|
propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty;
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
@ -48,6 +53,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.lgpl2Plus;
|
license = licenses.lgpl2Plus;
|
||||||
|
|
||||||
maintainers = with maintainers; [ raskin urkud ];
|
maintainers = with maintainers; [ raskin urkud ];
|
||||||
platforms = with platforms; linux ++ darwin;
|
platforms = platforms.linux ++ platforms.darwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user