gtk2 platform: minor updates

Also make glib use libelf (a few hudred kBs).
This commit is contained in:
Vladimír Čunát 2013-03-29 02:01:03 +01:00
parent 69418c7418
commit 4e7741d694
3 changed files with 10 additions and 10 deletions

View file

@ -2,11 +2,11 @@
, jasper }:
stdenv.mkDerivation rec {
name = "gdk-pixbuf-2.26.5";
name = "gdk-pixbuf-2.28.0";
src = fetchurl {
url = "mirror://gnome/sources/gdk-pixbuf/2.26/${name}.tar.xz";
sha256 = "112w3xl16vam72d5mj1gvs1dgr0aipbxp0qq189mmadwcg8nysbp";
url = "mirror://gnome/sources/gdk-pixbuf/2.28/${name}.tar.xz";
sha256 = "0iykaw95xp5pids16nz7xqh26nzhwsigrcw8jma0f6zvbdlkf7jn";
};
# !!! We might want to factor out the gdk-pixbuf-xlib subpackage.

View file

@ -1,5 +1,5 @@
{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconvOrNull, zlib, libffi
, python, pcre }:
, python, pcre, libelf }:
# TODO:
# * Add gio-module-fam
@ -12,15 +12,15 @@
# $out/bin/gtester-report' to postInstall if this is solved
stdenv.mkDerivation (rec {
name = "glib-2.34.3";
name = "glib-2.36.0";
src = fetchurl {
url = "mirror://gnome/sources/glib/2.34/${name}.tar.xz";
sha256 = "19sq4rhl2vr8ikjvl8qh51vr38yqfhbkb3imi2s6ac5rgkwcnpw5";
url = "mirror://gnome/sources/glib/2.36/${name}.tar.xz";
sha256 = "09xjkg5kaz4j0m25jizvz7ra48bmdawibykzri5igicjhsz8lnj5";
};
# configure script looks for d-bus but it is only needed for tests
buildInputs = [ libiconvOrNull ];
buildInputs = [ libiconvOrNull libelf ];
nativeBuildInputs = [ perl pkgconfig gettext python ];

View file

@ -8,11 +8,11 @@ assert xineramaSupport -> xlibs.libXinerama != null;
assert cupsSupport -> cups != null;
stdenv.mkDerivation rec {
name = "gtk+-2.24.16";
name = "gtk+-2.24.17";
src = fetchurl {
url = "mirror://gnome/sources/gtk+/2.24/${name}.tar.xz";
sha256 = "1lq2jdpxy2diczlplllclhl6jakm4i5ay35566ma7ygc5k66kkck";
sha256 = "05gl82k82w3gjrzr4vmj3ski7mp1b0jbhc49wgl9hv8mc2sb4iz9";
};
enableParallelBuilding = true;