0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 14:10:33 +03:00

Merge pull request #44678 from r-ryantm/auto-update/webkitgtk

gnome3.webkitgtk: 2.20.3 -> 2.20.4
This commit is contained in:
Jan Tojnar 2018-08-08 13:53:54 +02:00 committed by GitHub
commit bfa01320ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,7 +15,7 @@ assert stdenv.isDarwin -> !enableGtk2Plugins;
with stdenv.lib;
stdenv.mkDerivation rec {
name = "webkitgtk-${version}";
version = "2.20.3";
version = "2.20.4";
meta = {
description = "Web content rendering engine, GTK+ port";
@ -28,7 +28,7 @@ stdenv.mkDerivation rec {
src = fetchurl {
url = "https://webkitgtk.org/releases/${name}.tar.xz";
sha256 = "1n0dy94bm7wvxln4jis1gp8plv8n4a01g41724zsf5psg1yk16sp";
sha256 = "0cmfjbfxssgrwhgqmk7kqws91k6pha519bnyjrfsgy640max2zfc";
};
patches = optionals stdenv.isDarwin [
@ -39,12 +39,6 @@ stdenv.mkDerivation rec {
patchShebangs .
'';
postConfigure = ''
# A stopgap for a non-deterministic build failure when using only one core
# Upstream bug: https://bugs.webkit.org/show_bug.cgi?id=183788#c4
ninja JavaScriptCoreForwardingHeaders WTFForwardingHeaders
'';
cmakeFlags = [
"-DPORT=GTK"
"-DUSE_LIBHYPHEN=0"