2018-07-17 21:11:16 +01:00
|
|
|
{ mkXfceDerivation, autoreconfHook, autoconf, automake
|
|
|
|
, glib, gtk-doc, intltool, libtool }:
|
2017-12-17 15:02:52 +00:00
|
|
|
|
|
|
|
mkXfceDerivation rec {
|
|
|
|
category = "xfce";
|
|
|
|
pname = "xfce4-dev-tools";
|
|
|
|
version = "4.12.0";
|
|
|
|
|
|
|
|
sha256 = "0bbmlmw2dpm10q2wv3vy592i0vx7b5h1qnd35j0fdzxqb8x2hbw2";
|
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2018-04-12 00:07:19 +01:00
|
|
|
propagatedBuildInputs = [
|
2017-12-17 15:02:52 +00:00
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
glib
|
2018-07-17 21:11:16 +01:00
|
|
|
gtk-doc
|
2017-12-17 15:02:52 +00:00
|
|
|
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";
|
|
|
|
};
|
|
|
|
}
|