texinfo: use checkInputs
This commit is contained in:
parent
38d527beb8
commit
0495548f4d
|
@ -23,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [ xz.bin ]
|
||||
++ optionals stdenv.isSunOS [ libiconv gawk ]
|
||||
++ optionals interactive [ ncurses procps ];
|
||||
++ optional interactive ncurses;
|
||||
|
||||
configureFlags = [ "PERL=${buildPackages.perl}/bin/perl" ]
|
||||
++ stdenv.lib.optional stdenv.isSunOS "AWK=${gawk}/bin/awk";
|
||||
|
@ -33,6 +33,8 @@ stdenv.mkDerivation rec {
|
|||
installTargets="install install-tex";
|
||||
'';
|
||||
|
||||
checkInputs = [ procps ];
|
||||
|
||||
doCheck = interactive
|
||||
&& !stdenv.isDarwin
|
||||
&& !stdenv.isSunOS; # flaky
|
||||
|
|
Loading…
Reference in New Issue