2019-02-03 15:32:19 +00:00
|
|
|
{ config, stdenv, fetchurl, pkgconfig, gettext, glib, atk, pango, cairo, perl, xorg
|
2019-05-22 12:03:39 +01:00
|
|
|
, gdk-pixbuf, xlibsWrapper, gobject-introspection
|
2013-06-18 22:42:25 +01:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
2019-02-03 15:32:19 +00:00
|
|
|
, cupsSupport ? config.gtk2.cups or stdenv.isLinux, cups ? null
|
2018-08-06 22:32:13 +01:00
|
|
|
, gdktarget ? if stdenv.isDarwin then "quartz" else "x11"
|
2016-12-23 21:18:25 +00:00
|
|
|
, AppKit, Cocoa
|
2018-05-21 05:45:56 +01:00
|
|
|
, fetchpatch
|
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 {
|
2020-11-05 08:44:14 +00:00
|
|
|
pname = "gtk+";
|
|
|
|
version = "2.24.32";
|
2020-10-20 18:00:23 +01:00
|
|
|
|
2012-01-06 23:03:37 +00:00
|
|
|
src = fetchurl {
|
2020-10-20 18:00:23 +01:00
|
|
|
url = "mirror://gnome/sources/gtk+/2.24/${pname}-${version}.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
|
|
|
|
2019-09-12 16:57:57 +01:00
|
|
|
setupHooks = [
|
2019-10-13 19:40:24 +01:00
|
|
|
./hooks/gtk2-clean-immodules-cache.sh
|
|
|
|
./hooks/drop-icon-theme-cache.sh
|
2019-09-12 16:57:57 +01:00
|
|
|
];
|
2015-04-20 19:13:56 +01:00
|
|
|
|
2019-11-09 22:14:38 +00:00
|
|
|
nativeBuildInputs = setupHooks ++ [ perl pkgconfig gettext gobject-introspection ];
|
2012-09-26 20:39:32 +01:00
|
|
|
|
2018-05-21 05:45:56 +01:00
|
|
|
patches = [
|
2019-10-13 19:40:24 +01:00
|
|
|
./patches/2.0-immodules.cache.patch
|
|
|
|
./patches/gtk2-theme-paths.patch
|
2019-01-27 14:00:50 +00:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
(fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://bug557780.bugzilla-attachments.gnome.org/attachment.cgi?id=306776";
|
2019-01-27 14:00:50 +00:00
|
|
|
sha256 = "0sp8f1r5c4j2nlnbqgv7s7nxa4cfwigvm033hvhb1ld652pjag4r";
|
|
|
|
})
|
2019-10-13 19:40:24 +01:00
|
|
|
./patches/2.0-darwin-x11.patch
|
2019-01-27 14:00:50 +00:00
|
|
|
];
|
2016-04-09 09:43:55 +01:00
|
|
|
|
2016-12-23 21:18:25 +00:00
|
|
|
propagatedBuildInputs = with xorg;
|
2019-05-22 12:03:39 +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
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # needs X11
|
|
|
|
|
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";
|
2020-04-01 02:11: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 = ''
|
2019-09-03 23:49:40 +01:00
|
|
|
GTK is a highly usable, feature rich toolkit for creating
|
2011-02-09 15:09:29 +00:00
|
|
|
graphical user interfaces which boasts cross platform
|
2019-09-03 23:49:40 +01:00
|
|
|
compatibility and an easy to use API. GTK it is written in C,
|
2011-02-09 15:09:29 +00:00
|
|
|
but has bindings to many other popular programming languages
|
2019-09-03 23:49:40 +01:00
|
|
|
such as C++, Python and C# among others. GTK is licensed
|
2011-02-09 15:09:29 +00:00
|
|
|
under the GNU LGPL 2.1 allowing development of both free and
|
2019-09-03 23:49:40 +01:00
|
|
|
proprietary software with GTK without any license fees or
|
2011-02-09 15:09:29 +00:00
|
|
|
royalties.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|