2012-01-18 21:53:01 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv, zlib, libffi
|
2012-03-29 16:29:50 +02:00
|
|
|
, python, pcre }:
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
# TODO:
|
|
|
|
# * Add gio-module-fam
|
|
|
|
# Problem: cyclic dependency on gamin
|
|
|
|
# Possible solution: build as a standalone module, set env. vars
|
|
|
|
# * Make it build without python
|
|
|
|
# Problem: an example (test?) program needs it.
|
|
|
|
# Possible solution: disable compilation of this example somehow
|
|
|
|
# Reminder: add 'sed -e 's@python2\.[0-9]@python@' -i
|
|
|
|
# $out/bin/gtester-report' to postInstall if this is solved
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2012-03-29 16:29:50 +02:00
|
|
|
name = "glib-2.30.3";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-01-06 01:55:42 +01:00
|
|
|
src = fetchurl {
|
2012-03-29 16:29:50 +02:00
|
|
|
url = mirror://gnome/sources/glib/2.30/glib-2.30.3.tar.xz;
|
|
|
|
sha256 = "09yxfajynbw78kji48z384lylp67kihfi1g78qrrjif4f5yb5jz6";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
# configure script looks for d-bus but it is only needed for tests
|
2012-03-29 16:29:50 +02:00
|
|
|
buildInputs = [ pcre ] ++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
2012-01-18 21:53:01 +01:00
|
|
|
buildNativeInputs = [ perl pkgconfig gettext python ];
|
2011-09-20 18:18:12 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib libffi ];
|
|
|
|
|
2012-03-29 16:29:50 +02:00
|
|
|
configureFlags = "--with-pcre=system --disable-fam";
|
|
|
|
|
2011-11-07 17:48:34 +01:00
|
|
|
passthru.gioModuleDir = "lib/gio/modules";
|
|
|
|
|
2011-09-20 18:18:12 +02:00
|
|
|
postInstall = ''rm -rvf $out/share/gtk-doc'';
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "GLib, a C library of programming buildings blocks";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GLib provides the core application building blocks for libraries
|
|
|
|
and applications written in C. It provides the core object
|
|
|
|
system used in GNOME, the main loop implementation, and a large
|
|
|
|
set of utility functions for strings and common data structures.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
|
|
|
|
license = "LGPLv2+";
|
|
|
|
|
|
|
|
maintainers = with stdenv.lib.maintainers; [raskin urkud];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|