2015-09-15 10:26:18 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xorg
|
2018-03-14 19:15:06 +00:00
|
|
|
, gdk_pixbuf, xlibsWrapper, gobjectIntrospection
|
2013-06-18 22:42:25 +01:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
2011-02-09 15:09:29 +00:00
|
|
|
, cupsSupport ? true, cups ? null
|
2016-12-23 21:18:25 +00:00
|
|
|
, gdktarget ? "x11"
|
|
|
|
, AppKit, Cocoa
|
2011-02-09 15:09:29 +00:00
|
|
|
}:
|
|
|
|
|
2015-09-15 10:26:18 +01:00
|
|
|
assert xineramaSupport -> xorg.libXinerama != null;
|
2011-02-09 15:09:29 +00:00
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2016-12-23 21:18:25 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2012-09-26 20:39:32 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2018-01-21 15:13:03 +00:00
|
|
|
name = "gtk+-2.24.32";
|
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";
|
2018-01-21 15:13:03 +00:00
|
|
|
sha256 = "b6c8a93ddda5eabe3bfee1eb39636c9a03d2a56c7b62828b359bf197943c582e";
|
2011-02-09 15:09:29 +00:00
|
|
|
};
|
2011-02-12 13:38:30 +00:00
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-04-20 19:13:56 +01:00
|
|
|
outputBin = "dev";
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2011-02-12 13:38:30 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2015-04-20 19:13:56 +01:00
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
2017-12-13 10:41:56 +00:00
|
|
|
nativeBuildInputs = [ setupHook perl pkgconfig gettext gobjectIntrospection ];
|
2012-09-26 20:39:32 +01:00
|
|
|
|
2017-05-18 06:26:56 +01:00
|
|
|
patches = [ ./2.0-immodules.cache.patch ./gtk2-theme-paths.patch ];
|
2016-04-09 09:43:55 +01:00
|
|
|
|
2016-12-23 21:18:25 +00:00
|
|
|
propagatedBuildInputs = with xorg;
|
2013-06-18 22:42:25 +01:00
|
|
|
[ 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-18 22:42:25 +01:00
|
|
|
++ optional xineramaSupport libXinerama
|
2016-12-23 21:18:25 +00:00
|
|
|
++ optionals cupsSupport [ cups ]
|
2017-01-14 22:53:56 +00:00
|
|
|
++ optionals stdenv.isDarwin [ AppKit Cocoa ];
|
2011-02-09 15:09:29 +00:00
|
|
|
|
2016-12-27 07:45:37 +00:00
|
|
|
configureFlags = [
|
2016-12-23 21:18:25 +00:00
|
|
|
"--with-gdktarget=${gdktarget}"
|
2016-12-27 07:45:37 +00:00
|
|
|
"--with-xinput=yes"
|
2016-12-23 21:18:25 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
2016-12-27 07:45:37 +00:00
|
|
|
"--disable-glibtest"
|
|
|
|
"--disable-introspection"
|
|
|
|
"--disable-visibility"
|
|
|
|
];
|
2011-02-13 23:38:28 +00:00
|
|
|
|
2015-04-20 19:13:56 +01:00
|
|
|
postInstall = ''
|
2016-09-01 10:07:23 +01:00
|
|
|
moveToOutput share/gtk-2.0/demo "$devdoc"
|
2016-09-13 22:51:25 +01:00
|
|
|
# The updater is needed for nixos env and it's tiny.
|
|
|
|
moveToOutput bin/gtk-update-icon-cache "$out"
|
2015-04-20 19:13:56 +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 */ '';
|
2016-12-23 21:18:25 +00:00
|
|
|
inherit gdktarget;
|
2014-07-13 07:46:34 +01:00
|
|
|
};
|
|
|
|
|
2016-12-23 21:18:25 +00:00
|
|
|
meta = {
|
2011-02-09 15:09:29 +00:00
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
2017-08-02 22:50:51 +01:00
|
|
|
homepage = https://www.gtk.org/;
|
2013-07-04 05:54:57 +01:00
|
|
|
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.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|