From 2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62 Mon Sep 17 00:00:00 2001 From: worldofpeace Date: Fri, 6 Jul 2018 19:05:42 -0400 Subject: [PATCH] gtkspell3: add valaSupport --- pkgs/development/libraries/gtkspell/3.nix | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix index 90bc4fc7f82..d5fc094844a 100644 --- a/pkgs/development/libraries/gtkspell/3.nix +++ b/pkgs/development/libraries/gtkspell/3.nix @@ -1,4 +1,4 @@ -{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection}: +{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection, vala}: stdenv.mkDerivation rec { name = "gtkspell-${version}"; @@ -11,11 +11,14 @@ stdenv.mkDerivation rec { sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54"; }; - nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ]; + nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection vala ]; buildInputs = [ aspell gtk3 enchant isocodes ]; propagatedBuildInputs = [ enchant ]; - configureFlags = [ "--enable-introspection" ]; + configureFlags = [ + "--enable-introspection" + "--enable-vala" + ]; meta = with stdenv.lib; { homepage = http://gtkspell.sourceforge.net/;