summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/typesetting
diff options
context:
space:
mode:
authorArtturin <Artturin@artturin.com>2021-10-23 05:45:41 +0300
committerArtturin <Artturin@artturin.com>2021-11-05 19:57:03 +0200
commit49ec8f97457d6f253b85350380686465c823479f (patch)
tree69e3015e14b66ed4e27bbe4faea6ccd7f88cac58 /pkgs/tools/typesetting
parentc3bda5819e65fe641fd7b1ddd2f7f95c990aada7 (diff)
docbook2x: fix building with strictDeps
output checked with diffoscope
Diffstat (limited to 'pkgs/tools/typesetting')
-rw-r--r--pkgs/tools/typesetting/docbook2x/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/docbook2x/default.nix b/pkgs/tools/typesetting/docbook2x/default.nix
index aac992552d31..42ac92698b0d 100644
--- a/pkgs/tools/typesetting/docbook2x/default.nix
+++ b/pkgs/tools/typesetting/docbook2x/default.nix
@@ -1,6 +1,6 @@
{ fetchurl, lib, stdenv, texinfo, perlPackages
, groff, libxml2, libxslt, gnused, libiconv, opensp
-, docbook_xml_dtd_43
+, docbook_xml_dtd_43, bash
, makeWrapper }:
stdenv.mkDerivation rec {
@@ -16,8 +16,8 @@ stdenv.mkDerivation rec {
# writes its output to stdout instead of creating a file.
patches = [ ./db2x_texixml-to-stdout.patch ];
- nativeBuildInputs = [ makeWrapper ];
- buildInputs = [ texinfo groff libxml2 libxslt opensp libiconv ]
+ nativeBuildInputs = [ makeWrapper perlPackages.perl texinfo libxslt ];
+ buildInputs = [ groff libxml2 opensp libiconv bash ]
++ (with perlPackages; [ perl XMLSAX XMLParser XMLNamespaceSupport ]);
postConfigure = ''