lol

gtkspell3: add valaSupport

authored by

worldofpeace and committed by
Jan Tojnar
2cfb6aaf 03476783

+6 -3
+6 -3
pkgs/development/libraries/gtkspell/3.nix
··· 1 - {stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection}: 1 + {stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection, vala}: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "gtkspell-${version}"; ··· 11 11 sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54"; 12 12 }; 13 13 14 - nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ]; 14 + nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection vala ]; 15 15 buildInputs = [ aspell gtk3 enchant isocodes ]; 16 16 propagatedBuildInputs = [ enchant ]; 17 17 18 - configureFlags = [ "--enable-introspection" ]; 18 + configureFlags = [ 19 + "--enable-introspection" 20 + "--enable-vala" 21 + ]; 19 22 20 23 meta = with stdenv.lib; { 21 24 homepage = http://gtkspell.sourceforge.net/;