nixpkgs/pkgs/desktops/xfce4-14/xfce4-dev-tools/default.nix

33 lines
647 B
Nix
Raw Normal View History

{ 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";
2019-08-12 11:38:41 +01:00
version = "4.14.0";
2017-12-17 15:02:52 +00:00
2019-08-12 11:38:41 +01:00
sha256 = "10hcj88784faqrk08xb538355cla26vdk9ckx158hqdqv38sb42f";
2017-12-17 15:02:52 +00:00
nativeBuildInputs = [ autoreconfHook ];
propagatedBuildInputs = [
2017-12-17 15:02:52 +00:00
autoconf
automake
glib
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";
};
}