Merge pull request #16227 from romildo/upd.xfce

libxfce4ui: add libICE and libSM as propagated build inputs
This commit is contained in:
Joachim Fasting 2016-06-15 18:42:42 +02:00 committed by GitHub
commit 637ec46fcc

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
}:
@ -18,11 +18,15 @@ stdenv.mkDerivation rec {
outputs = [ "dev" "out" "docdev" ];
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs =
[ pkgconfig intltool gtk libxfce4util xfconf libglade
[ gtk libxfce4util xfconf libglade
libstartup_notification hicolor_icon_theme
] ++ optional withGtk3 gtk3;
propagatedBuildInputs = [ xorg.libICE xorg.libSM ];
#TODO: glade?
configureFlags = optional withGtk3 "--enable-gtk3";