1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/xfce4-13/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 10:02:52 -05:00
mkXfceDerivation rec {
category = "xfce";
pname = "xfce4-dev-tools";
version = "4.12.0";
sha256 = "0bbmlmw2dpm10q2wv3vy592i0vx7b5h1qnd35j0fdzxqb8x2hbw2";
nativeBuildInputs = [ autoreconfHook ];
propagatedBuildInputs = [
2017-12-17 10:02:52 -05:00
autoconf
automake
glib
gtk-doc
2017-12-17 10:02:52 -05: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";
};
}