summary refs log tree commit diff
diff options
context:
space:
mode:
authorworldofpeace <worldofpeace@users.noreply.github.com>2018-07-06 19:05:42 -0400
committerJan Tojnar <jtojnar@gmail.com>2018-07-07 12:57:12 +0200
commit2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62 (patch)
treed56d35c0a507408fb1f71079e0beacd4a89f8b27
parent03476783a5093cac23cd9df0fc874e5787c5e347 (diff)
downloadnixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar.gz
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar.bz2
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar.lz
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar.xz
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.tar.zst
nixlib-2cfb6aafc2a27a7b307fefc9b10ad691aabc8a62.zip
gtkspell3: add valaSupport
-rw-r--r--pkgs/development/libraries/gtkspell/3.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index 90bc4fc7f820..d5fc094844a7 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/;