nixpkgs/pkgs/desktops/xfce4-13/xfce4-dev-tools/default.nix
Yegor Timoshenko 6b72364289
xfce4-13: fix build (propagatedNativeBuildInputs)
Closes #37991. Should investigate that further, there may be other packages that are affected.
2018-04-11 23:07:19 +00:00

31 lines
646 B
Nix

{ mkXfceDerivation, autoreconfHook, autoconf, automake, glib, gtk_doc, intltool, libtool }:
mkXfceDerivation rec {
category = "xfce";
pname = "xfce4-dev-tools";
version = "4.12.0";
sha256 = "0bbmlmw2dpm10q2wv3vy592i0vx7b5h1qnd35j0fdzxqb8x2hbw2";
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";
};
}