summary refs log tree commit diff
path: root/pkgs/development/libraries/gtkspell
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-03-21 22:52:47 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-03-22 07:48:12 +0100
commit79092439ca6a243e609319a0cf3514b5c4551c9d (patch)
tree5e1d08acd61d6219dbb623645b7a5ec0df9e6bed /pkgs/development/libraries/gtkspell
parentbdfbe578da8d061f46c6a548502f5bc2fe743ff2 (diff)
downloadnixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar.gz
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar.bz2
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar.lz
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar.xz
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.tar.zst
nixpkgs-79092439ca6a243e609319a0cf3514b5c4551c9d.zip
gtkspell3: add gir
Diffstat (limited to 'pkgs/development/libraries/gtkspell')
-rw-r--r--pkgs/development/libraries/gtkspell/3.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/development/libraries/gtkspell/3.nix b/pkgs/development/libraries/gtkspell/3.nix
index 2e6ecd7b520..90bc4fc7f82 100644
--- a/pkgs/development/libraries/gtkspell/3.nix
+++ b/pkgs/development/libraries/gtkspell/3.nix
@@ -1,18 +1,22 @@
-{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool}:
+{stdenv, fetchurl, gtk3, aspell, pkgconfig, enchant, isocodes, intltool, gobjectIntrospection}:
 
 stdenv.mkDerivation rec {
   name = "gtkspell-${version}";
   version = "3.0.9";
 
+  outputs = [ "out" "dev" ];
+
   src = fetchurl {
     url = "mirror://sourceforge/gtkspell/gtkspell3-${version}.tar.xz";
     sha256 = "09jdicmpipmj4v84gnkqwbmj4lh8v0i6pn967rb9jx4zg2ia9x54";
   };
 
-  nativeBuildInputs = [ pkgconfig intltool ];
+  nativeBuildInputs = [ pkgconfig intltool gobjectIntrospection ];
   buildInputs = [ aspell gtk3 enchant isocodes ];
   propagatedBuildInputs = [ enchant ];
 
+  configureFlags = [ "--enable-introspection" ];
+
   meta = with stdenv.lib; {
     homepage = http://gtkspell.sourceforge.net/;
     description = "Word-processor-style highlighting GtkTextView widget";