man-db: don’t list checkInputs twice

This commit is contained in:
Matthew Bauer 2019-08-09 11:06:59 -04:00
parent 8879448cbe
commit 3c39b47a62

View file

@ -11,8 +11,7 @@ stdenv.mkDerivation rec {
outputs = [ "out" "doc" ];
outputMan = "out"; # users will want `man man` to work
nativeBuildInputs = [ pkgconfig makeWrapper groff ]
++ stdenv.lib.optionals doCheck checkInputs;
nativeBuildInputs = [ pkgconfig makeWrapper groff ];
buildInputs = [ libpipeline db groff ]; # (Yes, 'groff' is both native and build input)
checkInputs = [ libiconv /* for 'iconv' binary */ ];