2013-06-12 06:39:23 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xlibs
|
2015-09-15 10:13:22 +01:00
|
|
|
, gdk_pixbuf, libintlOrEmpty, xlibsWrapper
|
2013-06-18 22:42:25 +01:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
2011-02-09 15:09:29 +00:00
|
|
|
, cupsSupport ? true, cups ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert xineramaSupport -> xlibs.libXinerama != null;
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2012-09-26 20:39:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-27 21:05:04 +01:00
|
|
|
name = "gtk+-2.24.28";
|
2012-01-06 23:03:37 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-09-26 20:39:32 +01:00
|
|
|
url = "mirror://gnome/sources/gtk+/2.24/${name}.tar.xz";
|
2015-05-27 21:05:04 +01:00
|
|
|
sha256 = "0mj6xn40py9r9lvzg633fal81xfwfm89d9mvz7jk4lmwk0g49imj";
|
2011-02-09 15:09:29 +00:00
|
|
|
};
|
2011-02-12 13:38:30 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
2012-09-26 20:39:32 +01:00
|
|
|
|
2013-08-03 08:45:22 +01:00
|
|
|
NIX_CFLAGS_COMPILE = stdenv.lib.optionalString (libintlOrEmpty != []) "-lintl";
|
2013-07-14 02:52:30 +01:00
|
|
|
|
2013-06-12 06:39:23 +01:00
|
|
|
nativeBuildInputs = [ perl pkgconfig gettext ];
|
2012-09-26 20:39:32 +01:00
|
|
|
|
2013-06-18 22:42:25 +01:00
|
|
|
propagatedBuildInputs = with xlibs; with stdenv.lib;
|
|
|
|
[ glib cairo pango gdk_pixbuf atk ]
|
2014-05-12 22:53:11 +01:00
|
|
|
++ optionals (stdenv.isLinux || stdenv.isDarwin) [
|
|
|
|
libXrandr libXrender libXcomposite libXi libXcursor
|
|
|
|
]
|
2015-09-15 10:13:22 +01:00
|
|
|
++ optionals stdenv.isDarwin [ xlibsWrapper libXdamage ]
|
2013-06-13 09:10:53 +01:00
|
|
|
++ libintlOrEmpty
|
2013-06-18 22:42:25 +01:00
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
++ optionals cupsSupport [ cups ];
|
2011-02-09 15:09:29 +00:00
|
|
|
|
2014-05-12 22:53:11 +01:00
|
|
|
configureFlags = if stdenv.isDarwin
|
|
|
|
then "--disable-glibtest --disable-introspection --disable-visibility"
|
|
|
|
else "--with-xinput=yes";
|
2011-02-13 23:38:28 +00:00
|
|
|
|
2011-02-09 15:09:29 +00:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
2012-09-26 20:39:32 +01:00
|
|
|
|
2014-07-13 07:46:34 +01:00
|
|
|
passthru = {
|
|
|
|
gtkExeEnvPostBuild = ''
|
|
|
|
rm $out/lib/gtk-2.0/2.10.0/immodules.cache
|
|
|
|
$out/bin/gtk-query-immodules-2.0 $out/lib/gtk-2.0/2.10.0/immodules/*.so > $out/lib/gtk-2.0/2.10.0/immodules.cache
|
|
|
|
''; # workaround for bug of nix-mode for Emacs */ '';
|
|
|
|
};
|
|
|
|
|
2013-07-04 05:54:57 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-02-09 15:09:29 +00:00
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
2013-07-04 05:54:57 +01:00
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
|
|
|
platforms = platforms.all;
|
2011-02-09 15:09:29 +00: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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|