enabled introspection for clutter,cogl and json-glib

This commit is contained in:
Roelof Wobben
2013-12-12 19:41:51 +01:00
parent d706aab747
commit a2c48451a2
3 changed files with 14 additions and 7 deletions
+5 -2
View File
@@ -1,6 +1,6 @@
{ stdenv, fetchurl, pkgconfig, mesa, glib, gdk_pixbuf, libXfixes, libXcomposite
, libXdamage, libintlOrEmpty
, pangoSupport ? true, pango, cairo }:
, pangoSupport ? true, pango, cairo, gobjectIntrospection }:
stdenv.mkDerivation rec {
name = "cogl-1.8.2";
@@ -12,8 +12,11 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
configureFlags = " --enable-introspection " ;
propagatedBuildInputs =
[ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage ]
[ mesa glib gdk_pixbuf libXfixes libXcomposite libXdamage
gobjectIntrospection ]
++ libintlOrEmpty;
buildInputs = stdenv.lib.optionals pangoSupport [ pango cairo ];