ac70cd728c
All code that was at xfce4-14 has been moved to xfce/*. Old expressions that aren't rewritten might be abandoned or broken. Additonally I've ported the xfce4-14 thunar expression to support thunarPlugins. We can now support this interface in the Xfce module again, although I'm not sure if we have any plugins packaged that support latest thunar.
20 lines
559 B
Nix
20 lines
559 B
Nix
{ mkXfceDerivation, docbook_xsl, glib, libxslt, perlPackages, gtk3
|
|
, libxfce4ui, libxfce4util }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "exo";
|
|
version = "0.12.8";
|
|
|
|
sha256 = "013am7q4pwfncf4hk2a3hv7yx2vxgzb5xm8qsi9mxkj29xdhrvs5";
|
|
|
|
nativeBuildInputs = [ libxslt perlPackages.URI docbook_xsl ];
|
|
buildInputs = [ gtk3 glib libxfce4ui libxfce4util ];
|
|
|
|
# Workaround https://bugzilla.xfce.org/show_bug.cgi?id=15825
|
|
NIX_CFLAGS_COMPILE = "-I${glib.dev}/include/gio-unix-2.0";
|
|
|
|
meta = {
|
|
description = "Application library for Xfce";
|
|
};
|
|
}
|