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:
parent
74dbb75ea4
commit
c3bda5819e
1 changed files with 6 additions and 3 deletions
|
@ -32,10 +32,13 @@ stdenv.mkDerivation rec {
|
|||
|
||||
preConfigure = if stdenv.isCygwin then "autoreconf -fi" else null;
|
||||
|
||||
# need autoconf, automake, gettext, and libtool for reconfigure
|
||||
nativeBuildInputs = lib.optionals stdenv.isCygwin [ autoconf automake libtool ];
|
||||
strictDeps = true;
|
||||
|
||||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue