2019-08-31 19:08:07 -07:00
|
|
|
{ stdenv, fetchurl, fetchpatch, pkgconfig, cairo, harfbuzz
|
2018-12-02 03:41:15 -08:00
|
|
|
, libintl, gobject-introspection, darwin, fribidi, gnome3
|
2018-08-29 12:28:46 -07:00
|
|
|
, gtk-doc, docbook_xsl, docbook_xml_dtd_43, makeFontsConf, freefont_ttf
|
2019-03-07 10:23:48 -08:00
|
|
|
, meson, ninja, glib
|
2019-03-15 02:10:29 -07:00
|
|
|
, x11Support? !stdenv.isDarwin, libXft
|
2014-10-19 11:28:23 -07:00
|
|
|
}:
|
|
|
|
|
2016-03-29 09:04:46 -07:00
|
|
|
with stdenv.lib;
|
|
|
|
|
2014-10-19 11:28:23 -07:00
|
|
|
let
|
2018-08-29 12:28:46 -07:00
|
|
|
pname = "pango";
|
2019-03-07 10:23:48 -08:00
|
|
|
version = "1.43.0";
|
2018-08-29 12:28:46 -07:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "${pname}-${version}";
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2012-02-07 13:03:12 -08:00
|
|
|
src = fetchurl {
|
2018-08-29 12:28:46 -07:00
|
|
|
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
2019-03-07 10:23:48 -08:00
|
|
|
sha256 = "1lnxldmv1a12dq5h0dlq5jyzl4w75k76dp8cn360x2ijlm9w5h6j";
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
|
2019-04-02 12:37:25 -07:00
|
|
|
# FIXME: docs fail on darwin
|
|
|
|
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
|
2012-08-26 19:53:19 -07:00
|
|
|
|
2019-03-07 10:23:48 -08:00
|
|
|
nativeBuildInputs = [
|
|
|
|
meson ninja
|
|
|
|
pkgconfig gobject-introspection gtk-doc docbook_xsl docbook_xml_dtd_43
|
|
|
|
];
|
|
|
|
buildInputs = [
|
|
|
|
harfbuzz fribidi
|
|
|
|
] ++ optionals stdenv.isDarwin (with darwin.apple_sdk.frameworks; [
|
|
|
|
ApplicationServices
|
2018-08-29 12:28:46 -07:00
|
|
|
Carbon
|
|
|
|
CoreGraphics
|
|
|
|
CoreText
|
|
|
|
]);
|
2019-03-15 02:10:29 -07:00
|
|
|
propagatedBuildInputs = [ cairo glib libintl ] ++
|
|
|
|
optional x11Support libXft;
|
2019-03-07 10:23:48 -08:00
|
|
|
|
|
|
|
patches = [
|
2019-08-31 19:08:07 -07:00
|
|
|
(fetchpatch {
|
2019-03-07 10:23:48 -08:00
|
|
|
# Add gobject-2 to .pc file
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/pango/commit/546f4c242d6f4fe312de3b7c918a848e5172e18d.patch";
|
2019-08-31 19:08:07 -07:00
|
|
|
sha256 = "1cqhy4xbwx3ad7z5d1ks7smf038b9as8c6qy84rml44h0fgiq4m2";
|
2019-03-07 10:23:48 -08:00
|
|
|
})
|
2019-10-22 08:35:20 -07:00
|
|
|
(fetchpatch {
|
|
|
|
# Fixes CVE-2019-1010238
|
|
|
|
url = "https://gitlab.gnome.org/GNOME/pango/commit/490f8979a260c16b1df055eab386345da18a2d54.diff";
|
2019-10-29 06:38:46 -07:00
|
|
|
sha256 = "1s0qclbaknkx3dkc3n6mlmx3fnhlr2pkncqjkywprpvahmmypr7k";
|
2019-10-22 08:35:20 -07:00
|
|
|
})
|
2019-03-07 10:23:48 -08:00
|
|
|
];
|
|
|
|
|
|
|
|
mesonFlags = [
|
2019-04-02 12:37:25 -07:00
|
|
|
"-Denable_docs=${if stdenv.isDarwin then "false" else "true"}"
|
2019-03-07 10:23:48 -08:00
|
|
|
];
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2012-05-16 14:58:57 -07:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-29 12:28:46 -07:00
|
|
|
# Fontconfig error: Cannot load default config file
|
|
|
|
FONTCONFIG_FILE = makeFontsConf {
|
|
|
|
fontDirectories = [ freefont_ttf ];
|
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false; # /layout/valid-1.markup: FAIL
|
2016-03-29 09:04:46 -07:00
|
|
|
|
2018-08-29 12:28:46 -07:00
|
|
|
passthru = {
|
|
|
|
updateScript = gnome3.updateScript {
|
|
|
|
packageName = pname;
|
|
|
|
};
|
|
|
|
};
|
2018-07-29 02:23:20 -07:00
|
|
|
|
2015-09-23 03:23:45 -07:00
|
|
|
meta = with stdenv.lib; {
|
2011-09-20 09:18:12 -07: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 15:49:40 -07: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 09:18:12 -07:00
|
|
|
'';
|
|
|
|
|
2018-06-23 04:34:55 -07:00
|
|
|
homepage = https://www.pango.org/;
|
2015-09-23 03:23:45 -07:00
|
|
|
license = licenses.lgpl2Plus;
|
2011-09-20 09:18:12 -07:00
|
|
|
|
2017-03-27 10:11:17 -07:00
|
|
|
maintainers = with maintainers; [ raskin ];
|
2016-12-23 13:14:03 -08:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2011-09-20 09:18:12 -07:00
|
|
|
};
|
|
|
|
}
|