clutter-gtk: enable gobject introspection

This commit is contained in:
宋文武 2014-03-22 20:55:58 +08:00
parent d294dd7774
commit 13928c9892

View file

@ -1,4 +1,4 @@
{ fetchurl, stdenv, pkgconfig, clutter, gtk3 }:
{ fetchurl, stdenv, pkgconfig, gobjectIntrospection, clutter, gtk3 }:
stdenv.mkDerivation rec {
name = "clutter-gtk-1.4.4";
@ -9,9 +9,7 @@ stdenv.mkDerivation rec {
};
propagatedBuildInputs = [ clutter gtk3 ];
nativeBuildInputs = [ pkgconfig ];
configureFlags = [ "--disable-introspection" ]; # not needed anywhere AFAIK
nativeBuildInputs = [ pkgconfig gobjectIntrospection ];
postBuild = "rm -rf $out/share/gtk-doc";