2009-10-28 16:31:52 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, jasper, x11, glib, atk, pango
|
|
|
|
, libtiff, libjpeg, libpng, cairo, xlibs
|
|
|
|
, xineramaSupport ? true
|
|
|
|
}:
|
2009-04-16 12:19:15 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2009-06-08 19:50:57 +02:00
|
|
|
name = "gtk+-2.16.2";
|
2009-04-16 12:19:15 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gnome/sources/gtk+/2.16/${name}.tar.bz2";
|
2009-06-08 19:50:57 +02:00
|
|
|
sha256 = "07gdsl3ialpwfcd0z3w108r60dn0agj12s21fpkpcx44lzknnbm3";
|
2009-04-16 12:19:15 +02:00
|
|
|
};
|
|
|
|
|
2010-01-22 19:49:16 +01:00
|
|
|
buildNativeInputs = [ perl ];
|
|
|
|
buildInputs = [ pkgconfig jasper ];
|
2009-04-16 12:19:15 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [
|
2009-10-28 16:31:52 +01:00
|
|
|
x11 glib atk pango libtiff libjpeg libpng cairo xlibs.libXrandr
|
|
|
|
] ++ stdenv.lib.optional xineramaSupport xlibs.libXinerama;
|
2009-04-16 12:19:15 +02:00
|
|
|
|
|
|
|
passthru = { inherit libtiff libjpeg libpng; };
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GTK+ is a highly usable, feature rich toolkit for creating
|
|
|
|
graphical user interfaces which boasts cross platform
|
|
|
|
compatibility and an easy to use API. GTK+ it is written in C,
|
|
|
|
but has bindings to many other popular programming languages
|
|
|
|
such as C++, Python and C# among others. GTK+ is licensed
|
|
|
|
under the GNU LGPL 2.1 allowing development of both free and
|
|
|
|
proprietary software with GTK+ without any license fees or
|
|
|
|
royalties.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
|
|
|
|
license = "LGPLv2+";
|
|
|
|
};
|
|
|
|
}
|