From 4a19667063680e21636730f4e46a507a293c8b54 Mon Sep 17 00:00:00 2001 From: Bobby Rong Date: Thu, 9 Jul 2026 22:35:44 +0800 Subject: [PATCH] =?UTF-8?q?webkitgtk=5F6=5F0:=202.52.4=20=E2=86=92=202.52.?= =?UTF-8?q?5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit https://webkitgtk.org/2026/07/09/webkitgtk2.52.5-released.html https://github.com/WebKit/WebKit/compare/webkitgtk-2.52.4...webkitgtk-2.52.5 (cherry picked from commit 58eb0e3d00f8559f0b590e72456b9bc2220bb6ad) --- pkgs/development/libraries/webkitgtk/default.nix | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/pkgs/development/libraries/webkitgtk/default.nix b/pkgs/development/libraries/webkitgtk/default.nix index e042326ba5ff..eab3b229eda7 100644 --- a/pkgs/development/libraries/webkitgtk/default.nix +++ b/pkgs/development/libraries/webkitgtk/default.nix @@ -85,7 +85,7 @@ in # https://webkitgtk.org/2024/10/04/webkitgtk-2.46.html recommends building with clang. clangStdenv.mkDerivation (finalAttrs: { pname = "webkitgtk"; - version = "2.52.4"; + version = "2.52.5"; name = "webkitgtk-${finalAttrs.version}+abi=${abiVersion}"; outputs = [ @@ -100,19 +100,10 @@ clangStdenv.mkDerivation (finalAttrs: { src = fetchurl { url = "https://webkitgtk.org/releases/webkitgtk-${finalAttrs.version}.tar.xz"; - hash = "sha256-z0B2ocoqZHiO3KjEUtjrto1eKWXliP5Go4igFlE+3OQ="; + hash = "sha256-ilMamr0iFZNuioqRTAd7WGwCKLMdZS8gUoao7JDzNks="; }; - patches = [ - # Fix build with system malloc - # See: https://bugs.webkit.org/show_bug.cgi?id=316083 - (fetchpatch { - url = "https://github.com/WebKit/WebKit/commit/a6bc685a685c8f16c919dc6310a62a26971d396e.patch"; - hash = "sha256-X3E9SYykYomoBeAL4vS1Iuw2fPdO8fI7MvAW/kEhTMc="; - name = "fix-build-with-system-malloc.patch"; - }) - ] - ++ lib.optionals clangStdenv.hostPlatform.isLinux [ + patches = lib.optionals clangStdenv.hostPlatform.isLinux [ (replaceVars ./fix-bubblewrap-paths.patch { inherit (builtins) storeDir; inherit (addDriverRunpath) driverLink;