lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

texinfo: use checkInputs

+3 -1
+3 -1
pkgs/development/tools/misc/texinfo/common.nix
··· 23 23 24 24 buildInputs = [ xz.bin ] 25 25 ++ optionals stdenv.isSunOS [ libiconv gawk ] 26 - ++ optionals interactive [ ncurses procps ]; 26 + ++ optional interactive ncurses; 27 27 28 28 configureFlags = [ "PERL=${buildPackages.perl}/bin/perl" ] 29 29 ++ stdenv.lib.optional stdenv.isSunOS "AWK=${gawk}/bin/awk"; ··· 32 32 installFlags="TEXMF=$out/texmf-dist"; 33 33 installTargets="install install-tex"; 34 34 ''; 35 + 36 + checkInputs = [ procps ]; 35 37 36 38 doCheck = interactive 37 39 && !stdenv.isDarwin