libxfce4ui: add libICE and libSM as propagated build inputs

This commit is contained in:
José Romildo Malaquias 2016-06-14 11:53:11 -03:00
parent 370cc4f44f
commit e72d29020c

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
{ stdenv, fetchurl, pkgconfig, intltool, xorg, gtk, libxfce4util, xfconf
, libglade, libstartup_notification, hicolor_icon_theme
, withGtk3 ? false, gtk3
}:
@ -25,6 +25,8 @@ stdenv.mkDerivation rec {
libstartup_notification hicolor_icon_theme
] ++ optional withGtk3 gtk3;
propagatedBuildInputs = [ xorg.libICE xorg.libSM ];
#TODO: glade?
configureFlags = optional withGtk3 "--enable-gtk3";