Luke Granger-Brown
57725ef3ec
git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
42 lines
673 B
Nix
42 lines
673 B
Nix
{ lib
|
|
, mkXfceDerivation
|
|
, autoreconfHook
|
|
, libxslt
|
|
, docbook_xsl
|
|
, autoconf
|
|
, automake
|
|
, glib
|
|
, gtk-doc
|
|
, intltool
|
|
, libtool
|
|
}:
|
|
|
|
mkXfceDerivation {
|
|
category = "xfce";
|
|
pname = "xfce4-dev-tools";
|
|
version = "4.18.1";
|
|
|
|
sha256 = "sha256-JUyFlifNVhSnIMaI9qmgCtGIgkpmzYybMfuhPgJiDOg=";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
libxslt
|
|
docbook_xsl
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
autoconf
|
|
automake
|
|
glib
|
|
gtk-doc
|
|
intltool
|
|
libtool
|
|
];
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
meta = with lib; {
|
|
description = "Autoconf macros and scripts to augment app build systems";
|
|
maintainers = with maintainers; [ ] ++ teams.xfce.members;
|
|
};
|
|
}
|