hunspell: split outputs, refactor

I see no reason for those buildInputs to be propagated.
They seem only use in the binary utility.

/cc maintainer @fuuzetsu.
This commit is contained in:
Vladimír Čunát 2015-04-19 01:26:19 +02:00
parent de99ea8c8f
commit ba62e9e81e

View File

@ -8,8 +8,10 @@ stdenv.mkDerivation rec {
sha256 = "0v14ff9s37vkh45diaddndcrj0hmn67arh8xh8k79q9c1vgc1cm7";
};
propagatedBuildInputs = [ ncurses readline ];
configureFlags = "--with-ui --with-readline";
outputs = [ "dev" "out" "bin" "man" ];
buildInputs = [ ncurses readline ];
configureFlags = [ "--with-ui" "--with-readline" ];
meta = with stdenv.lib; {
homepage = http://hunspell.sourceforge.net;