Merge pull request #328783 from rhelmot/freebsd-docbook2x

docbook2x: add runtime dependency on iconv binary
This commit is contained in:
John Ericson
2024-07-24 14:03:39 -04:00
committed by GitHub
+2 -2
View File
@@ -1,5 +1,5 @@
{ fetchurl, lib, stdenv, texinfo, perlPackages
, groff, libxml2, libxslt, gnused, libiconv, opensp
, groff, libxml2, libxslt, gnused, libiconv, iconv, opensp
, docbook_xml_dtd_43, bash
, makeWrapper }:
@@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
patches = [ ./db2x_texixml-to-stdout.patch ];
nativeBuildInputs = [ makeWrapper perlPackages.perl texinfo libxslt ];
buildInputs = [ groff libxml2 opensp libiconv bash ]
buildInputs = [ groff libxml2 opensp libiconv iconv bash ]
++ (with perlPackages; [ perl XMLSAX XMLParser XMLNamespaceSupport ]);
postConfigure = ''