about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2013-01-29 13:46:06 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-01-29 14:55:14 +0100
commit35b6068189e2cf8702e499775c4a1ca8a35e6512 (patch)
tree071967dafd12334d4aa8e8c21b56fa675b0f7e18
parent56135259e93a7154c96463f10cf20845fbd903ac (diff)
downloadnixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar.gz
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar.bz2
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar.lz
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar.xz
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.tar.zst
nixlib-35b6068189e2cf8702e499775c4a1ca8a35e6512.zip
gobject-introspection: minor update
-rw-r--r--pkgs/development/libraries/gobject-introspection/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gobject-introspection/default.nix b/pkgs/development/libraries/gobject-introspection/default.nix
index fe1d519f5625..b96d5b25bb1c 100644
--- a/pkgs/development/libraries/gobject-introspection/default.nix
+++ b/pkgs/development/libraries/gobject-introspection/default.nix
@@ -1,9 +1,9 @@
-{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python }:
+{ stdenv, fetchurl, glib, flex, bison, pkgconfig, libffi, python, gdk_pixbuf }:
 
 stdenv.mkDerivation rec {
-  name = "gobject-introspection-1.34.0";
+  name = "gobject-introspection-1.34.2";
 
-  buildInputs = [ flex bison glib pkgconfig python ];
+  buildInputs = [ flex bison glib pkgconfig python gdk_pixbuf ];
   propagatedBuildInputs = [ libffi ];
 
   # Tests depend on cairo, which is undesirable (it pulls in lots of
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
 
   src = fetchurl {
     url = "mirror://gnome/sources/gobject-introspection/1.34/${name}.tar.xz";
-    sha256 = "80e211ea95404fc7c5fa3b04ba69ee0b29af70847af315155ab06b8cff832c85";
+    sha256 = "0a9lq0y67sr3g37l1hy0biqn046jr9wnd05hvwi8j8g2bjilhydw";
   };
 
   postInstall = "rm -rf $out/share/gtk-doc";