2017-08-23 14:41:01 +02:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, libXft, cairo, harfbuzz
|
2016-12-23 22:14:03 +01:00
|
|
|
, libintlOrEmpty, gobjectIntrospection, darwin
|
2014-10-19 20:28:23 +02:00
|
|
|
}:
|
|
|
|
|
2016-03-29 18:04:46 +02:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-10-19 20:28:23 +02:00
|
|
|
let
|
2016-05-19 21:52:02 +02:00
|
|
|
ver_maj = "1.40";
|
2017-11-27 13:30:59 +01:00
|
|
|
ver_min = "14";
|
2014-10-19 20:28:23 +02:00
|
|
|
in
|
2011-09-20 18:18:12 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 20:28:23 +02:00
|
|
|
name = "pango-${ver_maj}.${ver_min}";
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-02-07 22:03:12 +01:00
|
|
|
src = fetchurl {
|
2014-10-19 20:28:23 +02:00
|
|
|
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
|
2017-11-27 13:30:59 +01:00
|
|
|
sha256 = "90af1beaa7bf9e4c52db29ec251ec4fd0a8f2cc185d521ad1f88d01b3a6a17e3";
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
|
2016-09-01 11:07:23 +02:00
|
|
|
outputs = [ "bin" "dev" "out" "devdoc" ];
|
2012-08-27 04:53:19 +02:00
|
|
|
|
2015-10-03 13:33:13 +02:00
|
|
|
buildInputs = [ gobjectIntrospection ];
|
2016-12-23 22:14:03 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig ]
|
|
|
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Carbon
|
|
|
|
CoreGraphics
|
|
|
|
CoreText
|
|
|
|
]);
|
2015-10-06 20:19:06 +02:00
|
|
|
propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2012-05-16 23:58:57 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-08-14 08:45:16 +02:00
|
|
|
doCheck = false; # test-layout fails on 1.40.3 (fails to find font config)
|
2014-05-12 23:53:11 +02: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 20:28:23 +02:00
|
|
|
|
2016-03-29 18:04:46 +02:00
|
|
|
configureFlags = optional stdenv.isDarwin "--without-x";
|
|
|
|
|
2015-09-23 12:23:45 +02:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 18:18:12 +02: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 12:23:45 +02:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 18:18:12 +02:00
|
|
|
|
2017-03-27 19:11:17 +02:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-12-23 22:14:03 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-09-20 18:18:12 +02:00
|
|
|
};
|
|
|
|
}
|