lol

Merge pull request #264230 from Yarny0/xfce-xfconf-fix-segfault

xfce.xfconf: fix xfwm4 segfaults after update to 4.18.2

authored by

Bobby Rong and committed by
GitHub
fd60b2a5 b27bf82f

+17 -1
+17 -1
pkgs/desktops/xfce/core/xfconf/default.nix
··· 1 - { lib, mkXfceDerivation, libxfce4util, gobject-introspection, vala }: 1 + { lib 2 + , mkXfceDerivation 3 + , fetchpatch 4 + , libxfce4util 5 + , gobject-introspection 6 + , vala 7 + }: 2 8 3 9 mkXfceDerivation { 4 10 category = "xfce"; ··· 6 12 version = "4.18.2"; 7 13 8 14 sha256 = "sha256-FVNkcwOS4feMocx3vYhuWNs1EkXDrM1FaKkMhIOuPHI="; 15 + 16 + patches = [ 17 + # fixes a segfault, can likely be removed with 4.18.3, 18 + # see https://gitlab.xfce.org/xfce/xfconf/-/issues/35#note_81151 19 + (fetchpatch { 20 + name = "cache-fix-uncached-value.patch"; 21 + url = "https://gitlab.xfce.org/xfce/xfconf/-/commit/03f7ff961fd46c9141aba624a278e19de0bf3211.diff"; 22 + hash = "sha256-n9Wvt7NfKMxs2AcjUWgs4vZgzLUG9jyEVTZxINko4h8="; 23 + }) 24 + ]; 9 25 10 26 nativeBuildInputs = [ gobject-introspection vala ]; 11 27