2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, pkg-config, cairo, harfbuzz
|
2020-10-29 23:53:42 +00:00
|
|
|
, libintl, libthai, gobject-introspection, darwin, fribidi, gnome3
|
2018-08-29 20:28:46 +01:00
|
|
|
, gtk-doc, docbook_xsl, docbook_xml_dtd_43, makeFontsConf, freefont_ttf
|
2019-03-07 18:23:48 +00:00
|
|
|
, meson, ninja, glib
|
2019-03-15 09:10:29 +00:00
|
|
|
, x11Support? !stdenv.isDarwin, libXft
|
2014-10-19 19:28:23 +01:00
|
|
|
}:
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
with lib;
|
2016-03-29 17:04:46 +01:00
|
|
|
|
2014-10-19 19:28:23 +01:00
|
|
|
let
|
2018-08-29 20:28:46 +01:00
|
|
|
pname = "pango";
|
2020-10-23 19:02:19 +01:00
|
|
|
version = "1.47.0";
|
2018-08-29 20:28:46 +01:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-02-07 21:03:12 +00:00
|
|
|
src = fetchurl {
|
2021-01-21 17:00:13 +00:00
|
|
|
url = "mirror://gnome/sources/${pname}/${lib.versions.majorMinor version}/${name}.tar.xz";
|
2020-10-23 19:02:19 +01:00
|
|
|
sha256 = "0ry3j9n0lvdfmjwi2w7wa4gkalnip56kghqq6bh8hcf45xjvh3bk";
|
2011-09-20 17:18:12 +01:00
|
|
|
};
|
|
|
|
|
2019-04-02 20:37:25 +01:00
|
|
|
# FIXME: docs fail on darwin
|
|
|
|
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
|
2012-08-27 03:53:19 +01:00
|
|
|
|
2019-03-07 18:23:48 +00:00
|
|
|
nativeBuildInputs = [
|
2020-03-16 18:27:23 +00:00
|
|
|
meson ninja
|
|
|
|
glib # for glib-mkenum
|
2021-01-19 06:50:56 +00:00
|
|
|
pkg-config gobject-introspection gtk-doc docbook_xsl docbook_xml_dtd_43
|
2019-03-07 18:23:48 +00:00
|
|
|
];
|
|
|
|
buildInputs = [
|
2019-10-23 10:41:56 +01:00
|
|
|
fribidi
|
2020-10-29 23:53:42 +00:00
|
|
|
libthai
|
2019-03-07 18:23:48 +00:00
|
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
ApplicationServices
|
2018-08-29 20:28:46 +01:00
|
|
|
Carbon
|
|
|
|
CoreGraphics
|
|
|
|
CoreText
|
|
|
|
]);
|
2019-10-23 10:41:56 +01:00
|
|
|
propagatedBuildInputs = [ cairo glib libintl harfbuzz ] ++
|
2019-03-15 09:10:29 +00:00
|
|
|
optional x11Support libXft;
|
2019-03-07 18:23:48 +00:00
|
|
|
|
|
|
|
mesonFlags = [
|
2019-10-23 10:41:56 +01:00
|
|
|
"-Dgtk_doc=${if stdenv.isDarwin then "false" else "true"}"
|
2021-01-21 17:00:13 +00:00
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
2020-10-29 15:14:48 +00:00
|
|
|
"-Dxft=disabled" # only works with x11
|
2019-03-07 18:23:48 +00:00
|
|
|
];
|
2011-09-20 17:18:12 +01:00
|
|
|
|
2012-05-16 22:58:57 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-29 20:28:46 +01:00
|
|
|
# Fontconfig error: Cannot load default config file
|
|
|
|
FONTCONFIG_FILE = makeFontsConf {
|
|
|
|
fontDirectories = [ freefont_ttf ];
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # /layout/valid-1.markup: FAIL
|
2016-03-29 17:04:46 +01:00
|
|
|
|
2018-08-29 20:28:46 +01:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
2018-07-29 10:23:20 +01:00
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with 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
|
2019-09-03 23:49:40 +01:00
|
|
|
far has been done in the context of the GTK widget toolkit.
|
|
|
|
Pango forms the core of text and font handling for GTK.
|
2011-09-20 17:18:12 +01:00
|
|
|
'';
|
|
|
|
|
2020-04-01 02:11:51 +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
|
|
|
};
|
|
|
|
}
|