88 lines
2.5 KiB
Nix
88 lines
2.5 KiB
Nix
{ stdenv, fetchurl, fetchpatch, pkgconfig, cairo, harfbuzz
|
|
, libintl, gobject-introspection, darwin, fribidi, gnome3
|
|
, gtk-doc, docbook_xsl, docbook_xml_dtd_43, makeFontsConf, freefont_ttf
|
|
, meson, ninja, glib
|
|
, x11Support? !stdenv.isDarwin, libXft
|
|
}:
|
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
pname = "pango";
|
|
version = "1.45.3";
|
|
in stdenv.mkDerivation rec {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
sha256 = "0zg6gvzk227q997jf1c9p7j5ra87nm008hlgq6q8na9xmgmw2x8z";
|
|
};
|
|
|
|
patches = [
|
|
# Fix issue with Pango loading unsupported formats that
|
|
# breaks mixed x11/opentype font packages.
|
|
# See https://gitlab.gnome.org/GNOME/pango/issues/457
|
|
# Remove on next release.
|
|
(fetchpatch {
|
|
url = "https://gitlab.gnome.org/GNOME/pango/commit/fe1ee773310bac83d8e5d3c062b13a51fb5fb4ad.patch";
|
|
sha256 = "1px66g31l2jx4baaqi4md59wlmvw0ywgspn6zr919fxl4h1kkh0h";
|
|
})
|
|
];
|
|
|
|
# FIXME: docs fail on darwin
|
|
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
|
|
|
|
nativeBuildInputs = [
|
|
meson ninja
|
|
glib # for glib-mkenum
|
|
pkgconfig gobject-introspection gtk-doc docbook_xsl docbook_xml_dtd_43
|
|
];
|
|
buildInputs = [
|
|
fribidi
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
ApplicationServices
|
|
Carbon
|
|
CoreGraphics
|
|
CoreText
|
|
]);
|
|
propagatedBuildInputs = [ cairo glib libintl harfbuzz ] ++
|
|
optional x11Support libXft;
|
|
|
|
mesonFlags = [
|
|
"-Dgtk_doc=${if stdenv.isDarwin then "false" else "true"}"
|
|
];
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
# Fontconfig error: Cannot load default config file
|
|
FONTCONFIG_FILE = makeFontsConf {
|
|
fontDirectories = [ freefont_ttf ];
|
|
};
|
|
|
|
doCheck = false; # /layout/valid-1.markup: FAIL
|
|
|
|
passthru = {
|
|
updateScript = gnome3.updateScript {
|
|
packageName = pname;
|
|
};
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
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.
|
|
'';
|
|
|
|
homepage = "https://www.pango.org/";
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|