clutter: add gtk3 as a build input

This fixes #12106.
This commit is contained in:
Louis Taylor 2016-02-14 18:22:49 +00:00
parent 22d9e4ef26
commit a1ac6733e3

View file

@ -1,6 +1,6 @@
{ stdenv, fetchurl, glib, pkgconfig, mesa, libX11, libXext, libXfixes
, libXdamage, libXcomposite, libXi, cogl, pango, atk, json_glib,
gobjectIntrospection
gobjectIntrospection, gtk3
}:
let
@ -18,7 +18,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ pkgconfig ];
propagatedBuildInputs =
[ libX11 mesa libXext libXfixes libXdamage libXcomposite libXi cogl pango
atk json_glib gobjectIntrospection
atk json_glib gobjectIntrospection gtk3
];
configureFlags = [ "--enable-introspection" ]; # needed by muffin AFAIK