Merge pull request #51454 from avnik/mythes-fixup

hunspell: unbreak mythes build, due transient dependencies
This commit is contained in:
Renaud
2018-12-04 01:02:57 +01:00
committed by GitHub
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, hunspell, pkgconfig, perl }: { stdenv, fetchurl, hunspell, ncurses, pkgconfig, perl }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "mythes-1.2.4"; name = "mythes-1.2.4";
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
}; };
buildInputs = [ hunspell ]; buildInputs = [ hunspell ];
nativeBuildInputs = [ pkgconfig perl ]; nativeBuildInputs = [ ncurses pkgconfig perl ];
meta = { meta = {
homepage = http://hunspell.sourceforge.net/; homepage = http://hunspell.sourceforge.net/;