2018-07-17 13:11:16 -07:00
|
|
|
{ mkXfceDerivation, autoreconfHook, autoconf, automake
|
|
|
|
, glib, gtk-doc, intltool, libtool }:
|
2017-12-17 07:02:52 -08:00
|
|
|
|
|
|
|
mkXfceDerivation rec {
|
|
|
|
category = "xfce";
|
|
|
|
pname = "xfce4-dev-tools";
|
2019-07-10 12:51:39 -07:00
|
|
|
version = "4.14pre2";
|
|
|
|
rev = "xfce-4.14pre2";
|
2017-12-17 07:02:52 -08:00
|
|
|
|
2019-07-10 12:51:39 -07:00
|
|
|
sha256 = "11g5byxjihgkn0wi7gp8627d04wr59k117lpv53vdbsvv2qgksmg";
|
2017-12-17 07:02:52 -08:00
|
|
|
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
|
2018-04-11 16:07:19 -07:00
|
|
|
propagatedBuildInputs = [
|
2017-12-17 07:02:52 -08:00
|
|
|
autoconf
|
|
|
|
automake
|
|
|
|
glib
|
2018-07-17 13:11:16 -07:00
|
|
|
gtk-doc
|
2017-12-17 07:02:52 -08: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";
|
|
|
|
};
|
|
|
|
}
|