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
commit 44afce2cdc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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 = ''