about summary refs log tree commit diff
path: root/pkgs/desktops/gnome-3/core/evince
diff options
context:
space:
mode:
authorLuca Bruno <lucabru@src.gnome.org>2014-04-07 23:53:07 +0200
committerLuca Bruno <lucabru@src.gnome.org>2014-04-08 13:39:51 +0200
commit3feb20356e8b82c9a3638fbda655a14ea11d6e38 (patch)
tree4bc1b059d21e2475a883db47446cd6034adbe9c1 /pkgs/desktops/gnome-3/core/evince
parent9b737eb28222f701f16d7e278f0db6c5b809e8c9 (diff)
downloadnixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar.gz
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar.bz2
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar.lz
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar.xz
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.tar.zst
nixlib-3feb20356e8b82c9a3638fbda655a14ea11d6e38.zip
evince: enable gobject introspection
Diffstat (limited to 'pkgs/desktops/gnome-3/core/evince')
-rw-r--r--pkgs/desktops/gnome-3/core/evince/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/desktops/gnome-3/core/evince/default.nix b/pkgs/desktops/gnome-3/core/evince/default.nix
index 3a2688a64b93..4b50840534cf 100644
--- a/pkgs/desktops/gnome-3/core/evince/default.nix
+++ b/pkgs/desktops/gnome-3/core/evince/default.nix
@@ -2,6 +2,7 @@
 , glib, gtk3, pango, atk, gdk_pixbuf, shared_mime_info, itstool, gnome3
 , poppler, ghostscriptX, djvulibre, libspectre, libsecret , makeWrapper
 , librsvg, recentListSize ? null # 5 is not enough, allow passing a different number
+, gobjectIntrospection
 }:
 
 stdenv.mkDerivation rec {
@@ -14,7 +15,7 @@ stdenv.mkDerivation rec {
 
   buildInputs = [
     pkgconfig intltool perl perlXMLParser libxml2
-    glib gtk3 pango atk gdk_pixbuf
+    glib gtk3 pango atk gdk_pixbuf gobjectIntrospection
     itstool gnome3.gnome_icon_theme gnome3.gnome_icon_theme_symbolic
     gnome3.libgnome_keyring gnome3.gsettings_desktop_schemas
     poppler ghostscriptX djvulibre libspectre
@@ -23,6 +24,7 @@ stdenv.mkDerivation rec {
 
   configureFlags = [
     "--disable-nautilus" # Do not use nautilus
+    "--enable-introspection"
   ];
 
   NIX_CFLAGS_COMPILE = "-I${gnome3.glib}/include/gio-unix-2.0";