333d69a5f0
The most complex problems were from dealing with switches reverted in the meantime (gcc5, gmp6, ncurses6). It's likely that darwin is (still) broken nontrivially.
38 lines
993 B
Nix
38 lines
993 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, gtk, libxfce4util, xfconf
|
|
, libglade, libstartup_notification, hicolor_icon_theme
|
|
, withGtk3 ? false, gtk3
|
|
}:
|
|
let
|
|
p_name = "libxfce4ui";
|
|
ver_maj = "4.12";
|
|
ver_min = "1";
|
|
inherit (stdenv.lib) optional;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "${p_name}-${ver_maj}.${ver_min}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://xfce/src/xfce/${p_name}/${ver_maj}/${name}.tar.bz2";
|
|
sha256 = "3d619811bfbe7478bb984c16543d980cadd08586365a7bc25e59e3ca6384ff43";
|
|
};
|
|
|
|
outputs = [ "dev" "out" "docdev" ];
|
|
|
|
buildInputs =
|
|
[ pkgconfig intltool gtk libxfce4util xfconf libglade
|
|
libstartup_notification hicolor_icon_theme
|
|
] ++ optional withGtk3 gtk3;
|
|
|
|
#TODO: glade?
|
|
configureFlags = optional withGtk3 "--enable-gtk3";
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://www.xfce.org/;
|
|
description = "Basic GUI library for Xfce";
|
|
license = licenses.lgpl2Plus;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|
|
|