cogl: fix build on darwin (close #924)
This commit is contained in:
parent
692dfb6af9
commit
63051ab66b
@ -1,6 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf
|
{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf, libXfixes, libXcomposite
|
||||||
, pangoSupport ? true, pango, cairo
|
, libXdamage, libintlOrEmpty
|
||||||
, libXfixes, libXcomposite, libXdamage }:
|
, pangoSupport ? true, pango, cairo }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "cogl-1.8.2";
|
name = "cogl-1.8.2";
|
||||||
@ -13,19 +13,28 @@ stdenv.mkDerivation rec {
|
|||||||
nativeBuildInputs = [ pkgconfig ];
|
nativeBuildInputs = [ pkgconfig ];
|
||||||
|
|
||||||
propagatedBuildInputs =
|
propagatedBuildInputs =
|
||||||
[ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ];
|
[ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ]
|
||||||
|
++ libintlOrEmpty;
|
||||||
|
|
||||||
buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];
|
buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];
|
||||||
|
|
||||||
meta = {
|
COGL_PANGO_DEP_CFLAGS
|
||||||
|
= stdenv.lib.optionalString (stdenv.isDarwin && pangoSupport)
|
||||||
|
"-I${pango}/include/pango-1.0 -I${cairo}/include/cairo";
|
||||||
|
|
||||||
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
description = "A small open source library for using 3D graphics hardware for rendering";
|
description = "A small open source library for using 3D graphics hardware for rendering";
|
||||||
longDescription =
|
maintainers = with maintainers; [ lovek323 ];
|
||||||
''
|
|
||||||
Cogl is a small open source library for using 3D graphics hardware for
|
longDescription = ''
|
||||||
rendering. The API departs from the flat state machine style of OpenGL
|
Cogl is a small open source library for using 3D graphics hardware for
|
||||||
and is designed to make it easy to write orthogonal components that can
|
rendering. The API departs from the flat state machine style of OpenGL
|
||||||
render without stepping on each others toes.
|
and is designed to make it easy to write orthogonal components that can
|
||||||
'';
|
render without stepping on each other's toes.
|
||||||
|
'';
|
||||||
|
|
||||||
inherit (glib.meta) platforms;
|
inherit (glib.meta) platforms;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user