3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/gtk+/3.x.nix

169 lines
4.2 KiB
Nix
Raw Normal View History

2019-06-25 21:05:17 +01:00
{ stdenv
, fetchurl
, fetchpatch
, pkgconfig
, gettext
, perl
, makeWrapper
, shared-mime-info
, isocodes
, expat
, glib
, cairo
, pango
, gdk_pixbuf
, atk
, at-spi2-atk
, gobject-introspection
, fribidi
, xorg
, epoxy
, json-glib
, libxkbcommon
, gmp
, gnome3
, autoreconfHook
, gsettings-desktop-schemas
2018-08-06 22:32:13 +01:00
, x11Support ? stdenv.isLinux
2019-06-25 21:05:17 +01:00
, waylandSupport ? stdenv.isLinux
, mesa
, wayland
, wayland-protocols
, xineramaSupport ? stdenv.isLinux
2019-06-25 21:05:17 +01:00
, cupsSupport ? stdenv.isLinux
, cups ? null
, AppKit
, Cocoa
}:
assert cupsSupport -> cups != null;
2016-03-29 17:04:46 +01:00
with stdenv.lib;
stdenv.mkDerivation rec {
2019-06-25 21:05:17 +01:00
pname = "gtk+3";
version = "3.24.8";
outputs = [ "out" "dev" ];
outputBin = "dev";
src = fetchurl {
url = "mirror://gnome/sources/gtk+/${stdenv.lib.versions.majorMinor version}/gtk+-${version}.tar.xz";
sha256 = "16f71bbkhwhndcsrpyhjia3b77cb5ksf5c45lyfgws4pkgg64sb6";
};
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
./3.0-darwin-x11.patch
];
2019-06-25 21:05:17 +01:00
nativeBuildInputs = [
autoreconfHook
gettext
gobject-introspection
makeWrapper
perl
pkgconfig
];
buildInputs = [
libxkbcommon
epoxy
json-glib
isocodes
]
++ optional stdenv.isDarwin AppKit
;
propagatedBuildInputs = with xorg; [
at-spi2-atk
atk
cairo
expat
fribidi
gdk_pixbuf
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?
2019-06-13 08:13:49 +01:00
## (2019-06-12) Demos seem to install fine now. Keeping this around in case it fails again.
## (2014-03-27) demos fail to install, no idea where's the problem
#preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in";
2014-03-27 19:53:50 +00:00
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
];
doCheck = false; # needs X11
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'
# 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
'';
2018-03-03 05:05:34 +00:00
passthru = {
updateScript = gnome3.updateScript {
packageName = "gtk+";
attrPath = "gtk3";
};
};
2019-06-25 21:05:17 +01: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;
maintainers = with maintainers; [ raskin vcunat lethalman ];
platforms = platforms.all;
};
}