gdk_pixbuf: maintenance update 2.31.6 -> 2.31.7

This commit is contained in:
Vladimír Čunát 2015-09-20 09:04:22 +02:00
parent 6e09223627
commit d77588d127

View File

@ -1,16 +1,16 @@
{ stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11 { stdenv, fetchurl, pkgconfig, glib, libtiff, libjpeg, libpng, libX11
, jasper, libintlOrEmpty, gobjectIntrospection }: , jasper, libintlOrEmpty, gobjectIntrospection, doCheck ? false }:
let let
ver_maj = "2.31"; ver_maj = "2.31";
ver_min = "6"; ver_min = "7";
in in
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "gdk-pixbuf-${ver_maj}.${ver_min}"; name = "gdk-pixbuf-${ver_maj}.${ver_min}";
src = fetchurl { src = fetchurl {
url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz"; url = "mirror://gnome/sources/gdk-pixbuf/${ver_maj}/${name}.tar.xz";
sha256 = "062x2gqd7p6yxhxlib1ha4l3gk9ihcj080hrwwv9vmlmybb064hi"; sha256 = "046n9wz16kh3rpzxaiiwphf5bihxgj4g14cjn65wwmw82q4y0dj7";
}; };
setupHook = ./setup-hook.sh; setupHook = ./setup-hook.sh;
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
; ;
# The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB). # The tests take an excessive amount of time (> 1.5 hours) and memory (> 6 GB).
doCheck = false; inherit (doCheck);
postInstall = "rm -rf $out/share/gtk-doc"; postInstall = "rm -rf $out/share/gtk-doc";