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

213 lines
5.1 KiB
Nix
Raw Normal View History

2019-06-25 20:05:17 +00:00
{ stdenv
, fetchurl
, fetchpatch
, pkgconfig
, gettext
2019-10-22 09:26:12 +00:00
, docbook_xsl
, docbook_xml_dtd_43
, gtk-doc
, meson
, ninja
, python3
2019-06-25 20:05:17 +00:00
, makeWrapper
, shared-mime-info
, isocodes
, expat
, glib
, cairo
, pango
2019-05-22 11:03:39 +00:00
, gdk-pixbuf
2019-06-25 20:05:17 +00:00
, atk
, at-spi2-atk
, gobject-introspection
, fribidi
, xorg
, epoxy
, json-glib
, libxkbcommon
, libxml2
2019-06-25 20:05:17 +00:00
, gmp
, gnome3
, gsettings-desktop-schemas
, sassc
2020-10-24 08:25:22 +00:00
, trackerSupport ? stdenv.isLinux
, tracker
2018-08-06 21:32:13 +00:00
, x11Support ? stdenv.isLinux
2019-06-25 20:05:17 +00:00
, waylandSupport ? stdenv.isLinux
, mesa
, wayland
, wayland-protocols
, xineramaSupport ? stdenv.isLinux
2019-06-25 20:05:17 +00:00
, cupsSupport ? stdenv.isLinux
2019-10-29 20:15:28 +00:00
, withGtkDoc ? stdenv.isLinux
2019-06-25 20:05:17 +00:00
, cups ? null
, AppKit
, Cocoa
}:
assert cupsSupport -> cups != null;
2016-03-29 16:04:46 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-06-25 20:05:17 +00:00
pname = "gtk+3";
version = "3.24.24";
2019-06-25 20:05:17 +00:00
2019-10-29 20:15:28 +00:00
outputs = [ "out" "dev" ] ++ optional withGtkDoc "devdoc";
2019-06-25 20:05:17 +00:00
outputBin = "dev";
setupHooks = [
./hooks/gtk3-clean-immodules-cache.sh
./hooks/drop-icon-theme-cache.sh
];
src = fetchurl {
url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
sha256 = "12ipk1d376bai9v820qzhxba93kkh5abi6mhyqr4hwjvqmkl77fc";
};
patches = [
./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
# 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
];
separateDebugInfo = stdenv.isLinux;
mesonFlags = [
2019-10-29 20:15:28 +00:00
"-Dgtk_doc=${boolToString withGtkDoc}"
"-Dtests=false"
2020-10-24 08:25:22 +00:00
"-Dtracker3=${boolToString trackerSupport}"
];
# 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
2019-10-30 00:12:09 +00:00
NIX_CFLAGS_COMPILE = "-DG_ENABLE_DEBUG -DG_DISABLE_CAST_CHECKS";
postPatch = ''
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[@]}
'';
2019-06-25 20:05:17 +00:00
nativeBuildInputs = [
gettext
gobject-introspection
makeWrapper
meson
ninja
2019-06-25 20:05:17 +00:00
pkgconfig
python3
sassc
] ++ setupHooks ++ optionals withGtkDoc [
2019-10-29 20:15:28 +00:00
docbook_xml_dtd_43
docbook_xsl
gtk-doc
# For xmllint
libxml2
2019-06-25 20:05:17 +00:00
];
buildInputs = [
libxkbcommon
epoxy
json-glib
isocodes
]
++ optional stdenv.isDarwin AppKit
2020-10-24 08:25:22 +00:00
++ optional trackerSupport tracker
2019-06-25 20:05:17 +00:00
;
propagatedBuildInputs = with xorg; [
at-spi2-atk
atk
cairo
expat
fribidi
2019-05-22 11:03:39 +00:00
gdk-pixbuf
2019-06-25 20:05:17 +00:00
glib
gsettings-desktop-schemas
libICE
libSM
libXcomposite
libXcursor
libXi
libXrandr
libXrender
pango
]
++ optional stdenv.isDarwin Cocoa # explicitly propagated, always needed
++ optionals waylandSupport [ mesa wayland wayland-protocols ]
++ optional xineramaSupport libXinerama
++ optional cupsSupport cups
;
#TODO: colord?
doCheck = false; # needs X11
postInstall = optionalString (!stdenv.isDarwin) ''
# The updater is needed for nixos env and it's tiny.
moveToOutput bin/gtk-update-icon-cache "$out"
2017-06-16 11:10:42 +00: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 15:43:23 +00:00
'';
2019-07-21 19:04:45 +00:00
# Wrap demos
postFixup = optionalString (!stdenv.isDarwin) ''
2019-06-27 20:46:10 +00:00
demos=(gtk3-demo gtk3-demo-application gtk3-icon-browser gtk3-widget-factory)
for program in ''${demos[@]}; do
wrapProgram $dev/bin/$program \
2019-07-21 19:04:45 +00:00
--prefix XDG_DATA_DIRS : "$GSETTINGS_SCHEMAS_PATH:$out/share/gsettings-schemas/${pname}-${version}"
2019-06-27 20:46:10 +00:00
done
'';
2018-03-03 05:05:34 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gtk+";
attrPath = "gtk3";
};
};
2019-06-25 20:05:17 +00:00
meta = {
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;
2019-10-29 00:37:40 +00:00
maintainers = with maintainers; [ raskin vcunat lethalman worldofpeace ];
platforms = platforms.all;
};
}