76999cc40e
This makes the command ‘nix-env -qa -f. --arg config '{skipAliases = true;}'’ work in Nixpkgs. Misc... - qtikz: use libsForQt5.callPackage This ensures we get the right poppler. - rewrites: docbook5_xsl -> docbook_xsl_ns docbook_xml_xslt -> docbook_xsl diffpdf: fixup
32 lines
647 B
Nix
32 lines
647 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";
|
|
};
|
|
}
|