Merge pull request #37576 from dtzWill/fix/gtkspell3-isocodes

gtkspell3: add missing isocodes dep
This commit is contained in:
Will Dietz 2018-03-21 12:57:03 -05:00 committed by GitHub
commit c945978f5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,4 @@
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, intltool}:
{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
stdenv.mkDerivation rec {
name = "gtkspell-${version}";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ pkgconfig intltool ];
buildInputs = [ aspell gtk3 enchant ];
buildInputs = [ aspell gtk3 enchant isocodes ];
propagatedBuildInputs = [ enchant ];
meta = with stdenv.lib; {