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

View File

@@ -1,5 +1,7 @@
{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib }:
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib,
gobjectIntrospection
}:
stdenv.mkDerivation {
name = "clutter-1.8.2";
@@ -12,10 +14,10 @@ stdenv.mkDerivation {
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs =
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
atk json_glib
atk json_glib gobjectIntrospection
];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK
meta = {
description = "Clutter, a library for creating fast, dynamic graphical user interfaces";