opensp: enable strictDeps and remove unneeded deps

neither gentoo or arch list them
checked with diffoscope and there were no changes
This commit is contained in:
Artturin 2021-10-23 05:32:22 +03:00
parent 74dbb75ea4
commit c3bda5819e

View file

@ -32,10 +32,13 @@ stdenv.mkDerivation rec {
preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null; preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null;
# need autoconf, automake, gettext, and libtool for reconfigure strictDeps = true;
nativeBuildInputs = lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
buildInputs = [ xmlto docbook_xml_dtd_412 libxslt docbook_xsl gettext libiconv ]; nativeBuildInputs = [
xmlto
docbook_xml_dtd_412
docbook_xsl
] ++ lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
doCheck = false; # fails doCheck = false; # fails