2015-10-06 18:19:06 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
|
2016-12-23 21:14:03 +00:00
|
|
|
, libintlOrEmpty, gobjectIntrospection, darwin
|
2014-10-19 18:28:23 +00:00
|
|
|
}:
|
|
|
|
|
2016-03-29 16:04:46 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-10-19 18:28:23 +00:00
|
|
|
let
|
2016-05-19 19:52:02 +00:00
|
|
|
ver_maj = "1.40";
|
2017-06-11 13:13:49 +00:00
|
|
|
ver_min = "6";
|
2014-10-19 18:28:23 +00:00
|
|
|
in
|
2011-09-20 16:18:12 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 18:28:23 +00:00
|
|
|
name = "pango-${ver_maj}.${ver_min}";
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2012-02-07 21:03:12 +00:00
|
|
|
src = fetchurl {
|
2014-10-19 18:28:23 +00:00
|
|
|
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
|
2017-06-11 13:13:49 +00:00
|
|
|
sha256 = "ca152b7383a1e9f7fd74ae96023dc6770dc5043414793bfe768ff06b6759e573";
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
|
2016-09-01 09:07:23 +00:00
|
|
|
outputs = [ "bin" "dev" "out" "devdoc" ];
|
2012-08-27 02:53:19 +00:00
|
|
|
|
2015-10-03 11:33:13 +00:00
|
|
|
buildInputs = [ gobjectIntrospection ];
|
2016-12-23 21:14:03 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ]
|
|
|
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Carbon
|
|
|
|
CoreGraphics
|
|
|
|
CoreText
|
|
|
|
]);
|
2015-10-06 18:19:06 +00:00
|
|
|
propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty;
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2012-05-16 21:58:57 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-12-03 11:20:02 +00:00
|
|
|
doCheck = false; # test-layout fails on 1.40.3 (fails to find font config)
|
2014-05-12 21:53:11 +00:00
|
|
|
# jww (2014-05-05): The tests currently fail on Darwin:
|
|
|
|
#
|
|
|
|
# ERROR:testiter.c:139:iter_char_test: assertion failed: (extents.width == x1 - x0)
|
|
|
|
# .../bin/sh: line 5: 14823 Abort trap: 6 srcdir=. PANGO_RC_FILE=./pangorc ${dir}$tst
|
|
|
|
# FAIL: testiter
|
2014-10-19 18:28:23 +00:00
|
|
|
|
2016-03-29 16:04:46 +00:00
|
|
|
configureFlags = optional stdenv.isDarwin "--without-x";
|
|
|
|
|
2015-09-23 10:23:45 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 16:18:12 +00:00
|
|
|
description = "A library for laying out and rendering of text, with an emphasis on internationalization";
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Pango is a library for laying out and rendering of text, with an
|
|
|
|
emphasis on internationalization. Pango can be used anywhere
|
|
|
|
that text layout is needed, though most of the work on Pango so
|
|
|
|
far has been done in the context of the GTK+ widget toolkit.
|
|
|
|
Pango forms the core of text and font handling for GTK+-2.x.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.pango.org/;
|
2015-09-23 10:23:45 +00:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 16:18:12 +00:00
|
|
|
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-12-23 21:14:03 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-09-20 16:18:12 +00:00
|
|
|
};
|
|
|
|
}
|