From 0695a9707c74dc59b405a991f7882661e43110cc Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Sun, 18 Jul 2010 23:22:59 +0000 Subject: * GTK+ 2.20, Glib 2.24 etc. svn path=/nixpkgs/branches/x-updates/; revision=22652 --- pkgs/development/libraries/glib/2.24.x.nix | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pkgs/development/libraries/glib/2.24.x.nix (limited to 'pkgs/development/libraries/glib') diff --git a/pkgs/development/libraries/glib/2.24.x.nix b/pkgs/development/libraries/glib/2.24.x.nix new file mode 100644 index 0000000000000..bc17f4b906ca1 --- /dev/null +++ b/pkgs/development/libraries/glib/2.24.x.nix @@ -0,0 +1,30 @@ +{ stdenv, fetchurl, pkgconfig, gettext, perl, libiconv ? null, zlib }: + +stdenv.mkDerivation rec { + name = "glib-2.24.1"; + + src = fetchurl { + url = "mirror://gnome/sources/glib/2.24/${name}.tar.bz2"; + sha256 = "014c3da960bf17117371075c16495f05f36501db990851ceea658f15d2ea6d04"; + }; + + buildInputs = [ pkgconfig gettext perl libiconv zlib ]; + + 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; + }; +} -- cgit 1.4.1