2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz
|
2018-07-21 18:43:53 +01:00
|
|
|
, libintl, gobjectIntrospection, darwin, fribidi
|
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
|
2018-07-16 10:55:24 +01:00
|
|
|
ver_maj = "1.42";
|
|
|
|
ver_min = "1";
|
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";
|
2018-07-16 10:55:24 +01:00
|
|
|
sha256 = "0cnfgcya3wbs9m8g44cl5ww6wbp6qbw96qvsgkr8ymwqn9b6fnli";
|
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 ];
|
2016-12-23 21:14:03 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ]
|
|
|
|
++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
Carbon
|
|
|
|
CoreGraphics
|
|
|
|
CoreText
|
|
|
|
]);
|
2018-07-16 10:55:24 +01:00
|
|
|
propagatedBuildInputs = [ cairo harfbuzz libXft libintl fribidi ];
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-05-16 22:58:57 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-03-29 17:04:46 +01:00
|
|
|
configureFlags = optional stdenv.isDarwin "--without-x";
|
|
|
|
|
2018-07-29 10:23:20 +01:00
|
|
|
doCheck = false; # fails 1 out of 12 tests with "Fontconfig error: Cannot load default config file"
|
|
|
|
|
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.
|
|
|
|
'';
|
|
|
|
|
2018-06-23 12:34:55 +01:00
|
|
|
homepage = https://www.pango.org/;
|
2015-09-23 11:23:45 +01:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2017-03-27 18:11:17 +01:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-12-23 21:14:03 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
}
|