2013-10-05 23:24:40 +04:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl
|
|
|
|
, expat, glib, cairo, pango, gdk_pixbuf, atk, at_spi2_atk, gobjectIntrospection
|
2015-09-15 12:26:18 +03:00
|
|
|
, xorg, xlibsWrapper, wayland, libxkbcommon, epoxy
|
2013-06-19 01:42:25 +04:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
|
|
|
, cupsSupport ? stdenv.isLinux, cups ? null
|
2011-09-20 20:18:12 +04:00
|
|
|
}:
|
|
|
|
|
2015-09-15 12:26:18 +03:00
|
|
|
assert xineramaSupport -> xorg.libXinerama != null;
|
2011-09-20 20:18:12 +04:00
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2013-10-05 23:24:40 +04:00
|
|
|
let
|
2015-05-18 11:48:05 +03:00
|
|
|
ver_maj = "3.16";
|
2015-09-20 10:05:19 +03:00
|
|
|
ver_min = "7";
|
2014-02-02 13:41:00 +04:00
|
|
|
version = "${ver_maj}.${ver_min}";
|
2013-10-05 23:24:40 +04:00
|
|
|
in
|
2011-09-20 20:18:12 +04:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 13:41:00 +04:00
|
|
|
name = "gtk+3-${version}";
|
2011-09-20 20:18:12 +04:00
|
|
|
|
2012-02-08 01:03:16 +04:00
|
|
|
src = fetchurl {
|
2014-02-02 13:41:00 +04:00
|
|
|
url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz";
|
2015-09-20 10:05:19 +03:00
|
|
|
sha256 = "1fkzdhqa1pjzb1qsh2ll3y2567ylyszks59qspx85lalvqa9ss0r";
|
2011-09-20 20:18:12 +04:00
|
|
|
};
|
|
|
|
|
2013-10-05 23:24:40 +04:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ];
|
|
|
|
|
2015-05-18 11:48:05 +03:00
|
|
|
buildInputs = [ libxkbcommon epoxy ];
|
2015-09-15 12:26:18 +03:00
|
|
|
propagatedBuildInputs = with xorg; with stdenv.lib;
|
2015-05-23 03:08:22 +03:00
|
|
|
[ expat glib cairo pango gdk_pixbuf atk at_spi2_atk libXrandr libXrender libXcomposite libXi libXcursor ]
|
|
|
|
++ optionals stdenv.isLinux [ wayland ]
|
2014-01-25 23:51:04 +04:00
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
++ optional cupsSupport cups;
|
2011-09-20 20:18:12 +04:00
|
|
|
|
2014-03-27 23:53:50 +04:00
|
|
|
# demos fail to install, no idea where's the problem
|
|
|
|
preConfigure = "sed '/^SRC_SUBDIRS /s/demos//' -i Makefile.in";
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2015-09-20 10:05:19 +03:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
|
|
|
|
2011-09-20 20:18:12 +04:00
|
|
|
postInstall = "rm -rf $out/share/gtk-doc";
|
|
|
|
|
2014-07-13 10:46:34 +04:00
|
|
|
passthru = {
|
|
|
|
gtkExeEnvPostBuild = ''
|
|
|
|
rm $out/lib/gtk-3.0/3.0.0/immodules.cache
|
|
|
|
$out/bin/gtk-query-immodules-3.0 $out/lib/gtk-3.0/3.0.0/immodules/*.so > $out/lib/gtk-3.0/3.0.0/immodules.cache
|
|
|
|
''; # workaround for bug of nix-mode for Emacs */ '';
|
|
|
|
};
|
|
|
|
|
2015-09-20 10:05:19 +03:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 20:18:12 +04: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.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gtk.org/;
|
|
|
|
|
2015-09-20 10:05:19 +03:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 20:18:12 +04:00
|
|
|
|
2015-09-20 10:05:19 +03:00
|
|
|
maintainers = with maintainers; [ urkud raskin vcunat lethalman ];
|
|
|
|
platforms = platforms.all;
|
2011-09-20 20:18:12 +04:00
|
|
|
};
|
|
|
|
}
|