2013-10-05 20:24:40 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl
|
|
|
|
, expat, glib, cairo, pango, gdk_pixbuf, atk, at_spi2_atk, gobjectIntrospection
|
2016-06-30 09:06:20 +01:00
|
|
|
, xorg, epoxy, json_glib, libxkbcommon, gmp
|
|
|
|
, waylandSupport ? stdenv.isLinux, wayland, wayland-protocols
|
2013-06-18 22:42:25 +01:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
|
|
|
, cupsSupport ? stdenv.isLinux, cups ? null
|
2016-03-29 17:04:46 +01:00
|
|
|
, darwin
|
2011-09-20 17:18:12 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-10-05 20:24:40 +01:00
|
|
|
let
|
2016-09-18 20:32:28 +01:00
|
|
|
ver_maj = "3.22";
|
2017-09-14 07:03:12 +01:00
|
|
|
ver_min = "21";
|
2014-02-02 09:41:00 +00:00
|
|
|
version = "${ver_maj}.${ver_min}";
|
2013-10-05 20:24:40 +01: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 {
|
2014-02-02 09:41:00 +00:00
|
|
|
url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz";
|
2017-09-14 07:03:12 +01:00
|
|
|
sha256 = "1bd3c1a85cfb4db112cabb5379abb05a1a94fe43052d309d573493fca00e6b87";
|
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";
|
|
|
|
|
2013-10-05 20:24:40 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ];
|
|
|
|
|
2016-04-04 10:06:48 +01:00
|
|
|
patches = [ ./3.0-immodules.cache.patch ];
|
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
buildInputs = [ libxkbcommon epoxy json_glib ];
|
|
|
|
propagatedBuildInputs = with xorg; with stdenv.lib;
|
|
|
|
[ expat glib cairo pango gdk_pixbuf atk at_spi2_atk
|
|
|
|
libXrandr libXrender libXcomposite libXi libXcursor libSM libICE ]
|
2016-06-30 09:06:20 +01:00
|
|
|
++ optionals waylandSupport [ wayland wayland-protocols ]
|
2016-10-01 21:38:06 +01:00
|
|
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [ AppKit Cocoa ])
|
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
|
|
|
|
2016-08-27 09:00:20 +01:00
|
|
|
NIX_LDFLAGS = optionalString stdenv.isDarwin "-lintl";
|
2015-05-23 01:08:22 +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"
|
|
|
|
"--with-gdktarget=quartz"
|
|
|
|
"--enable-quartz-backend"
|
2016-06-30 09:06:20 +01:00
|
|
|
] ++ optional stdenv.isLinux [
|
|
|
|
"--enable-x11-backend"
|
|
|
|
] ++ optional waylandSupport [
|
|
|
|
"--enable-wayland-backend"
|
2016-03-29 17:04:46 +01:00
|
|
|
];
|
|
|
|
|
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"
|
2015-10-15 16:43:23 +01:00
|
|
|
'';
|
2011-09-20 17:18:12 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|