2015-10-06 19:19:06 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
|
|
|
|
, libintlOrEmpty, gobjectIntrospection
|
2014-10-19 19:28:23 +01:00
|
|
|
}:
|
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-10-19 19:28:23 +01:00
|
|
|
let
|
2016-05-19 20:52:02 +01:00
|
|
|
ver_maj = "1.40";
|
2016-12-03 11:20:02 +00:00
|
|
|
ver_min = "3";
|
2014-10-19 19:28:23 +01:00
|
|
|
in
|
2011-09-20 17:18:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2014-10-19 19:28:23 +01:00
|
|
|
name = "pango-${ver_maj}.${ver_min}";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-02-07 21:03:12 +00:00
|
|
|
src = fetchurl {
|
2014-10-19 19:28:23 +01:00
|
|
|
url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz";
|
2016-12-03 11:20:02 +00:00
|
|
|
sha256 = "abba8b5ce728520c3a0f1535eab19eac3c14aeef7faa5aded90017ceac2711d3";
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
|
2016-09-01 10:07:23 +01:00
|
|
|
outputs = [ "bin" "dev" "out" "devdoc" ];
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2015-10-03 12:33:13 +01:00
|
|
|
buildInputs = [ gobjectIntrospection ];
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2015-10-06 19:19:06 +01:00
|
|
|
propagatedBuildInputs = [ cairo harfbuzz libXft ] ++ libintlOrEmpty;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-05-16 22:58:57 +01: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 22:53:11 +01: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 19:28:23 +01:00
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
configureFlags = optional stdenv.isDarwin "--without-x";
|
|
|
|
|
2015-09-23 11:23:45 +01:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 17:18:12 +01: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 11:23:45 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2015-09-23 11:23:45 +01:00
|
|
|
maintainers = with maintainers; [ raskin urkud ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
}
|