9abff7a85e
Please, comment on #296.
29 lines
661 B
Nix
29 lines
661 B
Nix
{ v, h, stdenv, fetchXfce, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
|
, libglade, libstartup_notification }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libxfce4ui-${v}";
|
|
src = fetchXfce.core name h;
|
|
|
|
#TODO: gladeui
|
|
# Install into our own prefix instead.
|
|
preConfigure =
|
|
''
|
|
configureFlags="--with-libglade-module-path=$out/lib/libglade/2.0"
|
|
'';
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk libxfce4util xfconf libglade
|
|
libstartup_notification
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = {
|
|
homepage = http://www.xfce.org/projects/libxfce4;
|
|
#TODO
|
|
description = "Basic GUI library for Xfce";
|
|
license = "LGPLv2+";
|
|
};
|
|
}
|