Merge pull request #91777 from rnhmjoj/pango

pango: 1.44.7 -> 1.45.3
This commit is contained in:
Michele Guerini Rocco 2020-07-26 16:21:09 +02:00 committed by GitHub
commit 500f48b0dc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,15 +9,26 @@ with stdenv.lib;
let
pname = "pango";
version = "1.44.7";
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 = "07qvxa2sk90chp1l12han6vxvy098mc37sdqcznyywyv2g6bd9b6";
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";