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
24 lines
623 B
Nix
24 lines
623 B
Nix
{ mkXfceDerivation, docbook_xsl, libxslt, perlPackages, gtk2, gtk3
|
|
, libxfce4ui, libxfce4util }:
|
|
|
|
mkXfceDerivation rec {
|
|
category = "xfce";
|
|
pname = "exo";
|
|
version = "0.12.2";
|
|
|
|
sha256 = "1b4hl9yxvf8b8akqf2zngq3m93yqnqcmxqqds1dwzm9vm5sqydgh";
|
|
|
|
nativeBuildInputs = [ libxslt perlPackages.URI ];
|
|
buildInputs = [ gtk2 gtk3 libxfce4ui libxfce4util ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace docs/reference/Makefile.am \
|
|
--replace http://docbook.sourceforge.net/release/xsl/current \
|
|
${docbook_xsl}/share/xml/docbook-xsl
|
|
'';
|
|
|
|
meta = {
|
|
description = "Application library for Xfce";
|
|
};
|
|
}
|