lol

pango: fix pango_default_break function

bug: https://bugzilla.gnome.org/show_bug.cgi?id=785978#c9

(fixes the failing perl-gtk2 tests)

+10 -1
+10 -1
pkgs/development/libraries/pango/default.nix
··· 1 - { stdenv, fetchurl, pkgconfig, libXft, cairo, harfbuzz 1 + { stdenv, fetchurl, fetchpatch, pkgconfig, libXft, cairo, harfbuzz 2 2 , libintlOrEmpty, gobjectIntrospection, darwin 3 3 }: 4 4 ··· 15 15 url = "mirror://gnome/sources/pango/${ver_maj}/${name}.tar.xz"; 16 16 sha256 = "9faea6535312fe4436b93047cf7a04af544eb52a079179bd3a33821aacce7e16"; 17 17 }; 18 + 19 + patches = [ 20 + # https://bugzilla.gnome.org/show_bug.cgi?id=785978#c9 21 + (fetchpatch rec { 22 + name = "pango-fix-gtk2-test-failures.patch"; 23 + url = "https://bug785978.bugzilla-attachments.gnome.org/attachment.cgi?id=357690&action=diff&collapsed=&context=patch&format=raw&headers=1"; 24 + sha256 = "055m2dllfr5pgw6bci72snw38f4hsyw1x7flj188c965ild8lq3a"; 25 + }) 26 + ]; 18 27 19 28 outputs = [ "bin" "dev" "out" "devdoc" ]; 20 29