1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/gtk+/3.x.nix

71 lines
2.3 KiB
Nix
Raw Normal View History

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-05-18 09:48:05 +01:00
, xlibs, x11, wayland, libxkbcommon, epoxy
, xineramaSupport ? stdenv.isLinux
, cupsSupport ? stdenv.isLinux, cups ? null
}:
assert xineramaSupport -> xlibs.libXinerama != null;
assert cupsSupport -> cups != null;
2013-10-05 20:24:40 +01:00
let
2015-05-18 09:48:05 +01:00
ver_maj = "3.16";
2015-07-23 13:42:59 +01:00
ver_min = "6";
version = "${ver_maj}.${ver_min}";
2013-10-05 20:24:40 +01:00
in
stdenv.mkDerivation rec {
name = "gtk+3-${version}";
src = fetchurl {
url = "mirror://gnome/sources/gtk+/${ver_maj}/gtk+-${version}.tar.xz";
2015-07-23 13:42:59 +01:00
sha256 = "1gpzlnfrifc17yfk0zki6b2vmsfpf5cmrbh232s6iaan11np44jd";
};
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;
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;
postInstall = "rm -rf $out/share/gtk-doc";
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 */ '';
};
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/;
license = stdenv.lib.licenses.lgpl2Plus;
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;
};
}