webkitgtk: fix build with glibc-2.23

... by a patch accepted upstream.
2.4 seems to build fine without patching.

+9 -2
+9 -2
pkgs/development/libraries/webkitgtk/default.nix
··· 1 - { stdenv, fetchurl, perl, python, ruby, bison, gperf, cmake 2 , pkgconfig, gettext, gobjectIntrospection, libnotify 3 , gtk2, gtk3, wayland, libwebp, enchant 4 , libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs ··· 28 sha256 = "0mghsbfnmmf6nsf7cb3ah76s77aigkzf3k6kw96wgh6all6jdy6v"; 29 }; 30 31 - patches = [ ./finding-harfbuzz-icu.patch ]; 32 33 cmakeFlags = [ "-DPORT=GTK" "-DUSE_LIBHYPHEN=0" ]; 34
··· 1 + { stdenv, fetchurl, fetchpatch, perl, python, ruby, bison, gperf, cmake 2 , pkgconfig, gettext, gobjectIntrospection, libnotify 3 , gtk2, gtk3, wayland, libwebp, enchant 4 , libxml2, libsoup, libsecret, libxslt, harfbuzz, libpthreadstubs ··· 28 sha256 = "0mghsbfnmmf6nsf7cb3ah76s77aigkzf3k6kw96wgh6all6jdy6v"; 29 }; 30 31 + patches = [ ./finding-harfbuzz-icu.patch 32 + (fetchpatch { 33 + name = "glibc-isnan.patch"; 34 + url = "http://trac.webkit.org/changeset/194518/trunk/Source/JavaScriptCore" 35 + + "/runtime/Options.cpp?format=diff&new=194518"; 36 + sha256 = "0pzdv1zmlym751n9d310cx3yp752yzsc49cysbvgnrib4dh68nbm"; 37 + }) 38 + ]; 39 40 cmakeFlags = [ "-DPORT=GTK" "-DUSE_LIBHYPHEN=0" ]; 41