2013-10-05 20:24:40 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl
|
|
|
|
, expat, glib, cairo, pango, gdk_pixbuf, atk, at_spi2_atk, gobjectIntrospection
|
2015-10-15 16:43:23 +01:00
|
|
|
, xorg, wayland, epoxy, json_glib, libxkbcommon, gmp
|
2013-06-18 22:42:25 +01:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
|
|
|
, cupsSupport ? stdenv.isLinux, cups ? null
|
2011-09-20 17:18:12 +01:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert xineramaSupport -> xlibs.libXinerama != null;
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2013-10-05 20:24:40 +01:00
|
|
|
let
|
2015-09-25 09:33:07 +01:00
|
|
|
ver_maj = "3.18";
|
|
|
|
ver_min = "0";
|
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";
|
2015-09-25 09:33:07 +01:00
|
|
|
sha256 = "7fb8ae257403317d3852bad28d064d35f67e978b1fed8b71d5997e87204271b9";
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
|
2015-10-05 21:56:47 +01:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
outputBin = "dev";
|
|
|
|
|
2013-10-05 20:24:40 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ];
|
|
|
|
|
2015-05-18 09:48:05 +01:00
|
|
|
buildInputs = [ libxkbcommon epoxy ];
|
2013-06-19 07:59:30 +01:00
|
|
|
propagatedBuildInputs = with xlibs; with stdenv.lib;
|
2015-05-23 01:08:22 +01:00
|
|
|
[ expat glib cairo pango gdk_pixbuf atk at_spi2_atk libXrandr libXrender libXcomposite libXi libXcursor ]
|
|
|
|
++ optionals stdenv.isLinux [ wayland ]
|
2014-01-25 19:51:04 +00:00
|
|
|
++ optional xineramaSupport libXinerama
|
|
|
|
++ optional cupsSupport cups;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2015-05-23 01:08:22 +01:00
|
|
|
NIX_LDFLAGS = if stdenv.isDarwin then "-lintl" else null;
|
|
|
|
|
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;
|
|
|
|
|
2015-10-15 16:43:23 +01:00
|
|
|
postInstall = ''
|
|
|
|
rm -rf $out/share/gtk-doc
|
|
|
|
substituteInPlace "$out/lib/gtk-3.0/3.0.0/printbackends/libprintbackend-cups.la" \
|
|
|
|
--replace '-L${gmp.dev}/lib' '-L${gmp.out}/lib'
|
|
|
|
'';
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2014-07-13 07:46:34 +01: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 */ '';
|
|
|
|
};
|
|
|
|
|
2011-09-20 17:18:12 +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 = http://www.gtk.org/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2015-05-18 09:48:05 +01:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ urkud raskin vcunat lethalman ];
|
2015-05-23 01:08:22 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
}
|