2013-06-11 22:39:23 -07:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xlibs
|
2013-06-18 14:42:25 -07:00
|
|
|
, gdk_pixbuf, libintlOrEmpty, x11
|
|
|
|
, xineramaSupport ? stdenv.isLinux
|
2011-02-09 07:09:29 -08:00
|
|
|
, cupsSupport ? true, cups ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert xineramaSupport -> xlibs.libXinerama != null;
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2012-09-26 12:39:32 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2014-03-18 01:56:24 -07:00
|
|
|
name = "gtk+-2.24.23";
|
2012-01-06 15:03:37 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-26 12:39:32 -07:00
|
|
|
url = "mirror://gnome/sources/gtk+/2.24/${name}.tar.xz";
|
2014-03-18 01:56:24 -07:00
|
|
|
sha256 = "0z2ic7fma1lmmv4ncgki3vadqp7d0qkj2d235impsplvgvi0d950";
|
2011-02-09 07:09:29 -08:00
|
|
|
};
|
2011-02-12 05:38:30 -08:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-09-26 12:39:32 -07:00
|
|
|
|
2013-08-03 00:45:22 -07:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (libintlOrEmpty != []) "-lintl";
|
2013-07-13 18:52:30 -07:00
|
|
|
|
2013-06-11 22:39:23 -07:00
|
|
|
nativeBuildInputs = [ perl pkgconfig gettext ];
|
2012-09-26 12:39:32 -07:00
|
|
|
|
2013-06-18 14:42:25 -07:00
|
|
|
propagatedBuildInputs = with xlibs; with stdenv.lib;
|
|
|
|
[ glib cairo pango gdk_pixbuf atk ]
|
|
|
|
++ optionals stdenv.isLinux
|
|
|
|
[ libXrandr libXrender libXcomposite libXi libXcursor ]
|
|
|
|
++ optional stdenv.isDarwin x11
|
2013-06-13 01:10:53 -07:00
|
|
|
++ libintlOrEmpty
|
2013-06-18 14:42:25 -07:00
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
++ optionals cupsSupport [ cups ];
|
2011-02-09 07:09:29 -08:00
|
|
|
|
2011-02-13 15:38:28 -08:00
|
|
|
configureFlags = "--with-xinput=yes";
|
|
|
|
|
2011-02-09 07:09:29 -08:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
2012-09-26 12:39:32 -07:00
|
|
|
|
2013-07-03 21:54:57 -07:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-09 07:09:29 -08:00
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
2013-07-03 21:54:57 -07:00
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
|
|
|
platforms = platforms.all;
|
2011-02-09 07:09:29 -08:00
|
|
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|