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

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