summary refs log tree commit diff
path: root/pkgs/development/libraries/hunspell/default.nix
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2015-04-19 01:26:19 +0200
committerVladimír Čunát <vcunat@gmail.com>2015-04-19 01:28:01 +0200
commitba62e9e81e55e53f9214659961ef06423e346a9f (patch)
tree53294af50f0b18e2c913b75945b4fbb004e74e2c /pkgs/development/libraries/hunspell/default.nix
parentde99ea8c8fd5307c1797f03092c07a681c46a57d (diff)
downloadnixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar.gz
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar.bz2
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar.lz
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar.xz
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.tar.zst
nixpkgs-ba62e9e81e55e53f9214659961ef06423e346a9f.zip
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.
Diffstat (limited to 'pkgs/development/libraries/hunspell/default.nix')
-rw-r--r--pkgs/development/libraries/hunspell/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/libraries/hunspell/default.nix b/pkgs/development/libraries/hunspell/default.nix
index 98f6511f391..0d0ff38fb47 100644
--- a/pkgs/development/libraries/hunspell/default.nix
+++ b/pkgs/development/libraries/hunspell/default.nix
@@ -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;