about summary refs log tree commit diff
path: root/pkgs/development/libraries/gdk-pixbuf
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-02-02 10:42:53 +0100
committerVladimír Čunát <vcunat@gmail.com>2014-02-02 10:42:53 +0100
commitd92f6c19db554318fab12c59e05381990fdc47f2 (patch)
treee4ae7df2d1b5039769a165829a468a0caaab36b4 /pkgs/development/libraries/gdk-pixbuf
parentfbff019f08394e433fc1099a10eb230858094912 (diff)
downloadnixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar.gz
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar.bz2
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar.lz
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar.xz
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.tar.zst
nixlib-d92f6c19db554318fab12c59e05381990fdc47f2.zip
gdk-pixbuf: bugfix update 2.30.2 -> .3, enable tests
Hopefully the tests will succeed on Hydra, too.
Diffstat (limited to 'pkgs/development/libraries/gdk-pixbuf')
-rw-r--r--pkgs/development/libraries/gdk-pixbuf/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/gdk-pixbuf/default.nix b/pkgs/development/libraries/gdk-pixbuf/default.nix
index 4b92c6470eb1..50bab580ebf5 100644
--- a/pkgs/development/libraries/gdk-pixbuf/default.nix
+++ b/pkgs/development/libraries/gdk-pixbuf/default.nix
@@ -3,14 +3,14 @@
 
 let
   ver_maj = "2.30";
-  ver_min = "2";
+  ver_min = "3";
 in
 stdenv.mkDerivation rec {
   name = "gdk-pixbuf-${ver_maj}.${ver_min}";
 
   src = fetchurl {
     url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
-    sha256 = "1gzczsv41h28is4rrxjfyj1qx8ifp23fq2ckh0k099m9fnhbzfna";
+    sha256 = "1524ayaahni9svn88k8ar0906xyvp6j90dmm22aangjpb4zwaaf2";
   };
 
   # !!! We might want to factor out the gdk-pixbuf-xlib subpackage.
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
     + stdenv.lib.optionalString (gobjectIntrospection != null) " --enable-introspection=yes"
     ;
 
-  doCheck = false; # broken animation tester
+  doCheck = true;
 
   postInstall = "rm -rf $out/share/gtk-doc";