evolution: fix crash when opening attachments (#457549)

This commit is contained in:
Guillaume Girol
2025-11-01 16:48:55 +00:00
committed by GitHub

View File

@@ -1,6 +1,7 @@
{ {
lib, lib,
stdenv, stdenv,
fetchpatch,
cmake, cmake,
ninja, ninja,
intltool, intltool,
@@ -53,6 +54,16 @@ stdenv.mkDerivation rec {
hash = "sha256-ff3JrrLasybav9wfhXfE7MEjoS2gAS+MZKcmBlo8Cys="; hash = "sha256-ff3JrrLasybav9wfhXfE7MEjoS2gAS+MZKcmBlo8Cys=";
}; };
patches = [
# fix crash when opening attachment with recent webkitgtk versions
# https://gitlab.gnome.org/GNOME/evolution/-/issues/3124
# remove when updating to 3.58.0
(fetchpatch {
url = "https://gitlab.gnome.org/GNOME/evolution/-/commit/811a6df1f990855e49ecc0ba7b1a7f7a5ec251e6.patch";
hash = "sha256-Aj8H7PnAblInX2zRPQH7n0HOdLNuhITNHunWRYCPBsI=";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
cmake cmake
intltool intltool