2010-10-18 13:30:44 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv, zlib }:
|
2010-07-19 01:22:59 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2011-02-09 12:01:48 +01:00
|
|
|
name = "glib-2.24.2";
|
2010-07-19 01:22:59 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/glib/2.24/${name}.tar.bz2";
|
2011-02-09 12:01:48 +01:00
|
|
|
sha256 = "030nl16xa2ps9bklm2l81w0yamsrj5a0x7rp4h9dshinpld55srs";
|
2010-07-19 01:22:59 +02:00
|
|
|
};
|
|
|
|
|
2010-10-23 16:52:21 +02:00
|
|
|
buildInputs = [ pkgconfig gettext ]
|
2010-10-18 13:30:44 +02:00
|
|
|
++ stdenv.lib.optional (!stdenv.isLinux) libiconv;
|
2010-08-11 22:09:17 +02:00
|
|
|
buildNativeInputs = [ perl ];
|
2010-07-19 13:43:45 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [ zlib ];
|
2010-07-19 01:22:59 +02:00
|
|
|
|
|
|
|
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 = [stdenv.lib.maintainers.raskin];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
}
|