gdk-pixbuf: bugfix update 2.30.2 -> .3, enable tests

Hopefully the tests will succeed on Hydra, too.
This commit is contained in:
Vladimír Čunát 2014-02-02 10:42:53 +01:00
parent fbff019f08
commit d92f6c19db

View file

@ -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";