about summary refs log tree commit diff
path: root/pkgs/development/libraries/mythes
diff options
context:
space:
mode:
authorAlexander V. Nikolaev <avn@avnik.info>2018-12-03 16:11:45 +0200
committerAlexander V. Nikolaev <avn@avnik.info>2018-12-04 01:45:50 +0200
commitb057ac71eaffb98784cf9cfbf76e6dac83644e64 (patch)
tree60a2b761929b5f86b25420672c606141bbb58726 /pkgs/development/libraries/mythes
parentee1f6e20b2a1b7d28e8d3ae949ab0fd98cd85818 (diff)
mythes: fix link error on missed `tinfo` library (ncurses)
Diffstat (limited to 'pkgs/development/libraries/mythes')
-rw-r--r--pkgs/development/libraries/mythes/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/mythes/default.nix b/pkgs/development/libraries/mythes/default.nix
index 28888e551ef6b..01bf863bbbb14 100644
--- a/pkgs/development/libraries/mythes/default.nix
+++ b/pkgs/development/libraries/mythes/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, hunspell, pkgconfig, perl }:
+{ stdenv, fetchurl, hunspell, ncurses, pkgconfig, perl }:
 
 stdenv.mkDerivation rec {
   name = "mythes-1.2.4";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
   };
 
   buildInputs = [ hunspell ];
-  nativeBuildInputs = [ pkgconfig perl ];
+  nativeBuildInputs = [ ncurses pkgconfig perl ];
 
   meta = {
     homepage = http://hunspell.sourceforge.net/;