2018-12-24 02:10:01 +00:00
|
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, gettext, perl, makeWrapper, shared-mime-info, isocodes
|
2019-02-04 20:46:53 +00:00
|
|
|
|
, expat, glib, cairo, pango, gdk_pixbuf, atk, at-spi2-atk, gobject-introspection, fribidi
|
|
|
|
|
, xorg, epoxy, json-glib, libxkbcommon, gmp, gnome3, autoreconfHook
|
2018-08-06 22:32:13 +01:00
|
|
|
|
, x11Support ? stdenv.isLinux
|
2018-03-18 10:29:00 +00:00
|
|
|
|
, waylandSupport ? stdenv.isLinux, mesa_noglu, wayland, wayland-protocols
|
2013-06-18 22:42:25 +01:00
|
|
|
|
, xineramaSupport ? stdenv.isLinux
|
|
|
|
|
, cupsSupport ? stdenv.isLinux, cups ? null
|
2018-08-06 22:32:13 +01:00
|
|
|
|
, AppKit, Cocoa
|
2011-09-20 17:18:12 +01:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
|
with stdenv.lib;
|
|
|
|
|
|
2018-03-13 01:03:18 +00:00
|
|
|
|
let
|
2019-03-12 20:49:12 +00:00
|
|
|
|
version = "3.24.7";
|
2018-03-13 01:03:18 +00:00
|
|
|
|
in
|
2011-09-20 17:18:12 +01:00
|
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 09:41:00 +00:00
|
|
|
|
name = "gtk+3-${version}";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
2012-02-07 21:03:16 +00:00
|
|
|
|
src = fetchurl {
|
2018-10-05 01:12:11 +01:00
|
|
|
|
url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
|
2019-03-12 20:49:12 +00:00
|
|
|
|
sha256 = "080m925dyhiidlhsxqzx040l4iha2gg38pzbfpnsnjyzl92124jj";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
};
|
|
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
|
outputs = [ "out" "dev" ];
|
2015-10-05 21:56:47 +01:00
|
|
|
|
outputBin = "dev";
|
|
|
|
|
|
2019-02-04 20:46:53 +00:00
|
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobject-introspection perl makeWrapper autoreconfHook ];
|
2013-10-05 20:24:40 +01:00
|
|
|
|
|
2017-05-24 15:24:51 +01:00
|
|
|
|
patches = [
|
|
|
|
|
./3.0-immodules.cache.patch
|
|
|
|
|
(fetchpatch {
|
|
|
|
|
name = "Xft-setting-fallback-compute-DPI-properly.patch";
|
|
|
|
|
url = "https://bug757142.bugzilla-attachments.gnome.org/attachment.cgi?id=344123";
|
|
|
|
|
sha256 = "0g6fhqcv8spfy3mfmxpyji93k8d4p4q4fz1v9a1c1cgcwkz41d7p";
|
|
|
|
|
})
|
2019-01-26 08:17:49 +00:00
|
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
|
# X11 module requires <gio/gdesktopappinfo.h> which is not installed on Darwin
|
|
|
|
|
# let’s drop that dependency in similar way to how other parts of the library do it
|
|
|
|
|
# e.g. https://gitlab.gnome.org/GNOME/gtk/blob/3.24.4/gtk/gtk-launch.c#L31-33
|
|
|
|
|
./3.0-darwin-x11.patch
|
2017-05-24 15:24:51 +01:00
|
|
|
|
];
|
2016-04-04 10:06:48 +01:00
|
|
|
|
|
2018-12-24 02:10:01 +00:00
|
|
|
|
buildInputs = [ libxkbcommon epoxy json-glib isocodes ]
|
2018-08-19 11:24:04 +01:00
|
|
|
|
++ optional stdenv.isDarwin AppKit;
|
2015-10-28 11:07:52 +00:00
|
|
|
|
propagatedBuildInputs = with xorg; with stdenv.lib;
|
2019-02-04 20:46:53 +00:00
|
|
|
|
[ expat glib cairo pango gdk_pixbuf atk at-spi2-atk gnome3.gsettings-desktop-schemas fribidi
|
2015-10-28 11:07:52 +00:00
|
|
|
|
libXrandr libXrender libXcomposite libXi libXcursor libSM libICE ]
|
2018-08-19 11:24:04 +01:00
|
|
|
|
++ optional stdenv.isDarwin Cocoa # explicitly propagated, always needed
|
2018-03-18 10:29:00 +00:00
|
|
|
|
++ optionals waylandSupport [ mesa_noglu wayland wayland-protocols ]
|
2014-01-25 19:51:04 +00:00
|
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
|
++ optional cupsSupport cups;
|
2015-10-28 11:07:52 +00:00
|
|
|
|
#TODO: colord?
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
2014-03-27 19:53:50 +00:00
|
|
|
|
# demos fail to install, no idea where's the problem
|
|
|
|
|
preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in";
|
|
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
|
configureFlags = optional stdenv.isDarwin [
|
|
|
|
|
"--disable-debug"
|
|
|
|
|
"--disable-dependency-tracking"
|
|
|
|
|
"--disable-glibtest"
|
2018-08-06 22:32:13 +01:00
|
|
|
|
] ++ optional (stdenv.isDarwin && !x11Support)
|
2016-03-29 17:04:46 +01:00
|
|
|
|
"--enable-quartz-backend"
|
2018-08-06 22:32:13 +01:00
|
|
|
|
++ optional x11Support [
|
2016-06-30 09:06:20 +01:00
|
|
|
|
"--enable-x11-backend"
|
|
|
|
|
] ++ optional waylandSupport [
|
|
|
|
|
"--enable-wayland-backend"
|
2016-03-29 17:04:46 +01:00
|
|
|
|
];
|
|
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
|
doCheck = false; # needs X11
|
|
|
|
|
|
2016-08-27 09:00:20 +01:00
|
|
|
|
postInstall = optionalString (!stdenv.isDarwin) ''
|
2015-10-15 16:43:23 +01:00
|
|
|
|
substituteInPlace "$out/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.la" \
|
|
|
|
|
--replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib'
|
2017-01-22 21:55:39 +00:00
|
|
|
|
# The updater is needed for nixos env and it's tiny.
|
|
|
|
|
moveToOutput bin/gtk-update-icon-cache "$out"
|
2017-06-16 12:10:42 +01:00
|
|
|
|
# Launcher
|
|
|
|
|
moveToOutput bin/gtk-launch "$out"
|
2018-03-20 18:36:20 +00:00
|
|
|
|
|
|
|
|
|
# TODO: patch glib directly
|
|
|
|
|
for f in $dev/bin/gtk-encode-symbolic-svg; do
|
|
|
|
|
wrapProgram $f --prefix XDG_DATA_DIRS : "${shared-mime-info}/share"
|
|
|
|
|
done
|
2015-10-15 16:43:23 +01:00
|
|
|
|
'';
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
2018-03-03 05:05:34 +00:00
|
|
|
|
passthru = {
|
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
|
packageName = "gtk+";
|
|
|
|
|
attrPath = "gtk3";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 17:18:12 +01:00
|
|
|
|
description = "A multi-platform toolkit for creating graphical user interfaces";
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
'';
|
|
|
|
|
|
2017-08-02 22:50:51 +01:00
|
|
|
|
homepage = https://www.gtk.org/;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
|
2017-03-27 18:11:17 +01:00
|
|
|
|
maintainers = with maintainers; [ raskin vcunat lethalman ];
|
2015-10-28 11:07:52 +00:00
|
|
|
|
platforms = platforms.all;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
};
|
|
|
|
|
}
|