commit
500f48b0dc
@ -9,15 +9,26 @@ with stdenv.lib;
|
|||||||
|
|
||||||
let
|
let
|
||||||
pname = "pango";
|
pname = "pango";
|
||||||
version = "1.44.7";
|
version = "1.45.3";
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
name = "${pname}-${version}";
|
name = "${pname}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnome/sources/${pname}/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
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
|
# FIXME: docs fail on darwin
|
||||||
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
|
outputs = [ "bin" "dev" "out" ] ++ optional (!stdenv.isDarwin) "devdoc";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user