2021-02-21 12:43:13 +00:00
|
|
|
{ config, lib, substituteAll, stdenv, fetchurl, pkg-config, gettext, glib, atk, pango, cairo, perl, xorg
|
2022-12-27 19:07:16 +00:00
|
|
|
, gdk-pixbuf, gobject-introspection
|
2013-06-18 21:42:25 +00:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
2021-04-28 17:29:26 +00:00
|
|
|
, cupsSupport ? config.gtk2.cups or stdenv.isLinux, cups
|
2018-08-06 21:32:13 +00:00
|
|
|
, gdktarget ? if stdenv.isDarwin then "quartz" else "x11"
|
2016-12-23 21:18:25 +00:00
|
|
|
, AppKit, Cocoa
|
2021-12-16 02:42:33 +00:00
|
|
|
, fetchpatch, buildPackages
|
2023-02-11 01:48:14 +00:00
|
|
|
, testers
|
2011-02-09 15:09:29 +00:00
|
|
|
}:
|
|
|
|
|
2021-02-21 12:43:13 +00:00
|
|
|
let
|
|
|
|
|
|
|
|
gtkCleanImmodulesCache = substituteAll {
|
|
|
|
src = ./hooks/clean-immodules-cache.sh;
|
|
|
|
gtk_module_path = "gtk-2.0";
|
|
|
|
gtk_binary_version = "2.10.0";
|
|
|
|
};
|
|
|
|
|
|
|
|
in
|
|
|
|
|
2023-02-11 01:48:14 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2020-11-05 08:44:14 +00:00
|
|
|
pname = "gtk+";
|
2021-09-21 11:20:46 +00:00
|
|
|
version = "2.24.33";
|
2020-10-20 17:00:23 +00:00
|
|
|
|
2012-01-06 23:03:37 +00:00
|
|
|
src = fetchurl {
|
2023-02-11 01:48:14 +00:00
|
|
|
url = "mirror://gnome/sources/gtk+/2.24/${finalAttrs.pname}-${finalAttrs.version}.tar.xz";
|
2021-09-21 11:20:46 +00:00
|
|
|
sha256 = "rCrHV/WULTGKMRpUsMgLXvKV8pnCpzxjL2v7H/Scxto=";
|
2011-02-09 15:09:29 +00:00
|
|
|
};
|
2011-02-12 13:38:30 +00:00
|
|
|
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "out" "dev" "devdoc" ];
|
2015-04-20 18:13:56 +00:00
|
|
|
outputBin = "dev";
|
2012-08-27 02:53:19 +00:00
|
|
|
|
2011-02-12 13:38:30 +00:00
|
|
|
enableParallelBuilding = true;
|
2012-08-27 02:53:19 +00:00
|
|
|
|
2019-09-12 15:57:57 +00:00
|
|
|
setupHooks = [
|
2019-10-13 18:40:24 +00:00
|
|
|
./hooks/drop-icon-theme-cache.sh
|
2021-02-21 12:43:13 +00:00
|
|
|
gtkCleanImmodulesCache
|
2019-09-12 15:57:57 +00:00
|
|
|
];
|
2015-04-20 18:13:56 +00:00
|
|
|
|
2021-12-16 02:42:33 +00:00
|
|
|
|
2023-02-11 01:48:14 +00:00
|
|
|
nativeBuildInputs = finalAttrs.setupHooks ++ [
|
|
|
|
perl pkg-config gettext gobject-introspection
|
|
|
|
];
|
2012-09-26 19:39:32 +00:00
|
|
|
|
2018-05-21 04:45:56 +00:00
|
|
|
patches = [
|
2019-10-13 18:40:24 +00:00
|
|
|
./patches/2.0-immodules.cache.patch
|
|
|
|
./patches/gtk2-theme-paths.patch
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2019-01-27 14:00:50 +00:00
|
|
|
(fetchpatch {
|
2020-04-01 01:11:51 +00: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 18:40:24 +00:00
|
|
|
./patches/2.0-darwin-x11.patch
|
2019-01-27 14:00:50 +00:00
|
|
|
];
|
2016-04-09 08:43:55 +00:00
|
|
|
|
2016-12-23 21:18:25 +00:00
|
|
|
propagatedBuildInputs = with xorg;
|
2019-05-22 11:03:39 +00:00
|
|
|
[ glib cairo pango gdk-pixbuf atk ]
|
2023-01-26 17:31:02 +00:00
|
|
|
++ lib.optionals (stdenv.isLinux || stdenv.isDarwin) [
|
2014-05-12 21:53:11 +00:00
|
|
|
libXrandr libXrender libXcomposite libXi libXcursor
|
|
|
|
]
|
2023-01-26 17:31:02 +00:00
|
|
|
++ lib.optionals stdenv.isDarwin [ libXdamage ]
|
|
|
|
++ lib.optional xineramaSupport libXinerama
|
|
|
|
++ lib.optionals cupsSupport [ cups ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ AppKit Cocoa ];
|
2011-02-09 15:09:29 +00:00
|
|
|
|
2021-05-14 02:49:55 +00:00
|
|
|
preConfigure = if (lib.versionAtLeast stdenv.hostPlatform.darwinMinVersion "11" && stdenv.isDarwin) then ''
|
|
|
|
MACOSX_DEPLOYMENT_TARGET=10.16
|
|
|
|
'' else null;
|
|
|
|
|
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"
|
2023-01-26 17:31:02 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2016-12-27 07:45:37 +00:00
|
|
|
"--disable-glibtest"
|
|
|
|
"--disable-introspection"
|
|
|
|
"--disable-visibility"
|
2021-12-16 02:42:33 +00:00
|
|
|
] ++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
|
|
|
|
"ac_cv_path_GTK_UPDATE_ICON_CACHE=${buildPackages.gtk2}/bin/gtk-update-icon-cache"
|
|
|
|
"ac_cv_path_GDK_PIXBUF_CSOURCE=${buildPackages.gdk-pixbuf.dev}/bin/gdk-pixbuf-csource"
|
2016-12-27 07:45:37 +00:00
|
|
|
];
|
2011-02-13 23:38:28 +00:00
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # needs X11
|
|
|
|
|
2015-04-20 18:13:56 +00:00
|
|
|
postInstall = ''
|
2016-09-01 09:07:23 +00:00
|
|
|
moveToOutput share/gtk-2.0/demo "$devdoc"
|
2016-09-13 21:51:25 +00:00
|
|
|
# The updater is needed for nixos env and it's tiny.
|
|
|
|
moveToOutput bin/gtk-update-icon-cache "$out"
|
2015-04-20 18:13:56 +00:00
|
|
|
'';
|
|
|
|
|
2014-07-13 06:46:34 +00: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;
|
2023-02-11 01:48:14 +00:00
|
|
|
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
|
2014-07-13 06:46:34 +00:00
|
|
|
};
|
|
|
|
|
2023-01-26 17:31:02 +00:00
|
|
|
meta = with lib; {
|
2011-02-09 15:09:29 +00:00
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.gtk.org/";
|
2013-07-04 04:54:57 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ lovek323 raskin ];
|
2023-02-11 01:48:14 +00:00
|
|
|
pkgConfigModules = [
|
|
|
|
"gdk-2.0"
|
|
|
|
"gtk+-2.0"
|
|
|
|
] ++ lib.optionals (gdktarget == "x11") [
|
|
|
|
"gdk-x11-2.0"
|
|
|
|
"gtk+-x11-2.0"
|
|
|
|
];
|
2013-07-04 04:54:57 +00:00
|
|
|
platforms = platforms.all;
|
2011-02-09 15:09:29 +00:00
|
|
|
|
|
|
|
longDescription = ''
|
2019-09-03 22:49:40 +00: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 22:49:40 +00: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 22:49:40 +00: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 22:49:40 +00:00
|
|
|
proprietary software with GTK without any license fees or
|
2011-02-09 15:09:29 +00:00
|
|
|
royalties.
|
|
|
|
'';
|
2021-02-01 11:09:27 +00:00
|
|
|
changelog = "https://gitlab.gnome.org/GNOME/gtk/-/raw/${version}/NEWS";
|
2011-02-09 15:09:29 +00:00
|
|
|
};
|
2023-02-11 01:48:14 +00:00
|
|
|
})
|