2013-10-05 19:24:40 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, gettext, perl
|
|
|
|
, expat, glib, cairo, pango, gdk_pixbuf, atk, at_spi2_atk, gobjectIntrospection
|
2015-10-15 15:43:23 +00:00
|
|
|
, xorg, wayland, epoxy, json_glib, libxkbcommon, gmp
|
2013-06-18 21:42:25 +00:00
|
|
|
, xineramaSupport ? stdenv.isLinux
|
|
|
|
, cupsSupport ? stdenv.isLinux, cups ? null
|
2016-03-29 16:04:46 +00:00
|
|
|
, darwin
|
2011-09-20 16:18:12 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert cupsSupport -> cups != null;
|
|
|
|
|
2016-03-29 16:04:46 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2013-10-05 19:24:40 +00:00
|
|
|
let
|
2016-03-29 08:37:39 +00:00
|
|
|
ver_maj = "3.20";
|
2016-05-19 19:52:29 +00:00
|
|
|
ver_min = "5";
|
2014-02-02 09:41:00 +00:00
|
|
|
version = "${ver_maj}.${ver_min}";
|
2013-10-05 19:24:40 +00:00
|
|
|
in
|
2011-09-20 16:18:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-02-02 09:41:00 +00:00
|
|
|
name = "gtk+3-${version}";
|
2011-09-20 16:18:12 +00: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";
|
2016-05-19 19:52:29 +00:00
|
|
|
sha256 = "9790b0267384904ad8a08e7f16e5f9ff1c4037de57788d48d1eaf528355b1564";
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
|
2015-10-05 20:56:47 +00:00
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
outputBin = "dev";
|
|
|
|
|
2013-10-05 19:24:40 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig gettext gobjectIntrospection perl ];
|
|
|
|
|
2016-04-04 09:06:48 +00: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 ]
|
2015-05-23 00:08:22 +00:00
|
|
|
++ optionals stdenv.isLinux [ wayland ]
|
2016-03-29 16:04:46 +00:00
|
|
|
++ optional 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 16:18:12 +00:00
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lintl";
|
2015-05-23 00:08:22 +00: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 16:04:46 +00:00
|
|
|
configureFlags = optional stdenv.isDarwin [
|
|
|
|
"--disable-debug"
|
|
|
|
"--disable-dependency-tracking"
|
|
|
|
"--disable-glibtest"
|
|
|
|
"--with-gdktarget=quartz"
|
|
|
|
"--enable-quartz-backend"
|
|
|
|
];
|
|
|
|
|
2015-10-15 15:43:23 +00:00
|
|
|
postInstall = ''
|
|
|
|
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 16:18:12 +00:00
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 16:18:12 +00: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-10-28 11:07:52 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2015-10-28 11:07:52 +00:00
|
|
|
maintainers = with maintainers; [ urkud raskin vcunat lethalman ];
|
|
|
|
platforms = platforms.all;
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
}
|