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.
33 lines
643 B
Nix
33 lines
643 B
Nix
{ mkXfceDerivation, autoreconfHook, autoconf, automake
|
|
, glib, gtk-doc, intltool, libtool }:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-dev-tools";
|
|
version = "4.14.0";
|
|
|
|
sha256 = "10hcj88784faqrk08xb538355cla26vdk9ckx158hqdqv38sb42f";
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
propagatedBuildInputs = [
|
|
autoconf
|
|
automake
|
|
glib
|
|
gtk-doc
|
|
intltool
|
|
libtool
|
|
];
|
|
|
|
preAutoreconf = ''
|
|
substitute configure.ac.in configure.ac \
|
|
--subst-var-by REVISION UNKNOWN
|
|
'';
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = {
|
|
description = "Autoconf macros and scripts to augment app build systems";
|
|
};
|
|
}
|