nixpkgs/pkgs/development/libraries/gtk/3.x.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

260 lines
6.6 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, substituteAll
, fetchurl
, pkg-config
2019-06-25 23:05:17 +03:00
, gettext
, docbook-xsl-nons
2019-10-22 12:26:12 +03:00
, docbook_xml_dtd_43
, gtk-doc
, meson
, ninja
, python3
2019-06-25 23:05:17 +03:00
, makeWrapper
, shared-mime-info
, isocodes
, expat
, glib
, cairo
, pango
2019-05-22 14:03:39 +03:00
, gdk-pixbuf
2019-06-25 23:05:17 +03:00
, atk
, at-spi2-atk
, gobject-introspection
, fribidi
, xorg
, libepoxy
2019-06-25 23:05:17 +03:00
, libxkbcommon
, libxml2
2019-06-25 23:05:17 +03:00
, gmp
, gnome
2019-06-25 23:05:17 +03:00
, gsettings-desktop-schemas
, sassc
2021-12-04 20:52:38 +03:00
, trackerSupport ? stdenv.isLinux && (stdenv.buildPlatform == stdenv.hostPlatform)
2020-10-24 11:25:22 +03:00
, tracker
2018-08-07 00:32:13 +03:00
, x11Support ? stdenv.isLinux
2019-06-25 23:05:17 +03:00
, waylandSupport ? stdenv.isLinux
2021-04-04 19:58:08 +03:00
, libGL
2019-06-25 23:05:17 +03:00
, wayland
, wayland-protocols
, xineramaSupport ? stdenv.isLinux
2019-06-25 23:05:17 +03:00
, cupsSupport ? stdenv.isLinux
2021-12-04 20:52:38 +03:00
, withGtkDoc ? stdenv.isLinux && (stdenv.buildPlatform == stdenv.hostPlatform)
, cups
2019-06-25 23:05:17 +03:00
, AppKit
, Cocoa
, QuartzCore
, broadwaySupport ? true
2021-12-04 20:52:38 +03:00
, wayland-scanner
, testers
}:
let
gtkCleanImmodulesCache = substituteAll {
src = ./hooks/clean-immodules-cache.sh;
gtk_module_path = "gtk-3.0";
gtk_binary_version = "3.0.0";
};
in
stdenv.mkDerivation (finalAttrs: {
2019-06-25 23:05:17 +03:00
pname = "gtk+3";
version = "3.24.36";
2019-06-25 23:05:17 +03:00
outputs = [ "out" "dev" ] ++ lib.optional withGtkDoc "devdoc";
2019-06-25 23:05:17 +03:00
outputBin = "dev";
setupHooks = [
./hooks/drop-icon-theme-cache.sh
gtkCleanImmodulesCache
];
src = let
inherit (finalAttrs) version;
in fetchurl {
url = "mirror://gnome/sources/gtk+/${lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
sha256 = "sha256-J6bvFXdDNQyAf/6lm6odcCJtvt6CpelT/9WOpgWf5pE=";
};
patches = [
./patches/3.0-immodules.cache.patch
./patches/3.0-Xft-setting-fallback-compute-DPI-properly.patch
] ++ lib.optionals stdenv.isDarwin [
2019-01-26 11:17:49 +03:00
# X11 module requires <gio/gdesktopappinfo.h> which is not installed on Darwin
# lets 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
# https://gitlab.gnome.org/GNOME/gtk/merge_requests/536
./patches/3.0-darwin-x11.patch
];
2021-12-04 20:52:38 +03:00
depsBuildBuild = [
pkg-config
];
2019-06-25 23:05:17 +03:00
nativeBuildInputs = [
gettext
gobject-introspection
makeWrapper
meson
ninja
pkg-config
python3
sassc
2021-12-04 20:52:38 +03:00
gdk-pixbuf
] ++ finalAttrs.setupHooks ++ lib.optionals withGtkDoc [
2019-10-29 23:15:28 +03:00
docbook_xml_dtd_43
docbook-xsl-nons
2019-10-29 23:15:28 +03:00
gtk-doc
# For xmllint
libxml2
2021-12-04 20:52:38 +03:00
] ++ lib.optionals waylandSupport [
wayland-scanner
2019-06-25 23:05:17 +03:00
];
buildInputs = [
libxkbcommon
(libepoxy.override { inherit x11Support; })
2019-06-25 23:05:17 +03:00
isocodes
] ++ lib.optionals stdenv.isDarwin [
AppKit
] ++ lib.optionals trackerSupport [
tracker
];
#TODO: colord?
2019-06-25 23:05:17 +03:00
propagatedBuildInputs = with xorg; [
at-spi2-atk
atk
cairo
expat
fribidi
2019-05-22 14:03:39 +03:00
gdk-pixbuf
2019-06-25 23:05:17 +03:00
glib
gsettings-desktop-schemas
libICE
libSM
libXcomposite
libXcursor
libXdamage
libXfixes
2019-06-25 23:05:17 +03:00
libXi
libXrandr
libXrender
pango
] ++ lib.optionals stdenv.isDarwin [
# explicitly propagated, always needed
Cocoa
QuartzCore
] ++ lib.optionals waylandSupport [
2021-04-04 19:58:08 +03:00
libGL
wayland
wayland-protocols
] ++ lib.optionals xineramaSupport [
libXinerama
] ++ lib.optionals cupsSupport [
cups
];
mesonFlags = [
"-Dgtk_doc=${lib.boolToString withGtkDoc}"
"-Dtests=false"
"-Dtracker3=${lib.boolToString trackerSupport}"
"-Dbroadway_backend=${lib.boolToString broadwaySupport}"
2021-11-01 15:59:44 +03:00
"-Dx11_backend=${lib.boolToString x11Support}"
"-Dquartz_backend=${lib.boolToString (stdenv.isDarwin && !x11Support)}"
];
doCheck = false; # needs X11
separateDebugInfo = stdenv.isLinux;
# These are the defines that'd you'd get with --enable-debug=minimum (default).
# See: https://developer.gnome.org/gtk3/stable/gtk-building.html#extra-configuration-options
env.NIX_CFLAGS_COMPILE = "-DG_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS";
postPatch = ''
2021-11-01 15:59:44 +03:00
# See https://github.com/NixOS/nixpkgs/issues/132259
substituteInPlace meson.build \
--replace "x11_enabled = false" ""
files=(
build-aux/meson/post-install.py
demos/gtk-demo/geninclude.py
gdk/broadway/gen-c-array.py
gdk/gen-gdk-gresources-xml.py
gtk/cursor/dnd-copy.png
gtk/gen-gtk-gresources-xml.py
gtk/gen-rc.py
gtk/gentypefuncs.py
)
chmod +x ''${files[@]}
patchShebangs ''${files[@]}
'';
postInstall = lib.optionalString (!stdenv.isDarwin) ''
# The updater is needed for nixos env and it's tiny.
moveToOutput bin/gtk-update-icon-cache "$out"
2017-06-16 14:10:42 +03:00
# Launcher
moveToOutput bin/gtk-launch "$out"
2021-03-12 21:59:14 +03:00
# Broadway daemon
moveToOutput bin/broadwayd "$out"
2018-03-20 21:36:20 +03: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
'' + lib.optionalString (stdenv.buildPlatform == stdenv.hostPlatform) ''
GTK_PATH="''${out:?}/lib/gtk-3.0/3.0.0/immodules/" ''${dev:?}/bin/gtk-query-immodules-3.0 > "''${out:?}/lib/gtk-3.0/3.0.0/immodules.cache"
2015-10-15 18:43:23 +03:00
'';
2019-07-21 22:04:45 +03:00
# Wrap demos
postFixup = lib.optionalString (!stdenv.isDarwin) ''
2019-06-27 23:46:10 +03:00
demos=(gtk3-demo gtk3-demo-application gtk3-icon-browser gtk3-widget-factory)
for program in ''${demos[@]}; do
wrapProgram $dev/bin/$program \
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share/gsettings-schemas/${finalAttrs.pname}-${finalAttrs.version}"
2019-06-27 23:46:10 +03:00
done
2022-05-31 08:27:14 +03:00
'' + lib.optionalString stdenv.isDarwin ''
# a comment created a cycle between outputs
sed '/^# ModulesPath =/d' -i "$out"/lib/gtk-*/*/immodules.cache
2019-06-27 23:46:10 +03:00
'';
2018-03-03 08:05:34 +03:00
passthru = {
updateScript = gnome.updateScript {
2018-03-03 08:05:34 +03:00
packageName = "gtk+";
attrPath = "gtk3";
freeze = true;
2018-03-03 08:05:34 +03:00
};
tests.pkg-config = testers.testMetaPkgConfig finalAttrs.finalPackage;
2018-03-03 08:05:34 +03:00
};
meta = with lib; {
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.
'';
homepage = "https://www.gtk.org/";
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ raskin ] ++ teams.gnome.members;
pkgConfigModules = [
"gdk-3.0"
"gtk+-3.0"
] ++ lib.optionals x11Support [
"gdk-x11-3.0"
"gtk+-x11-3.0"
];
platforms = platforms.all;
2021-02-01 14:09:37 +03:00
changelog = "https://gitlab.gnome.org/GNOME/gtk/-/raw/${version}/NEWS";
};
})