muffin: Fix Qt apps crashing on wayland

+8
+8
pkgs/by-name/mu/muffin/package.nix
··· 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 replaceVars, 6 cairo, 7 cinnamon-desktop, ··· 61 patches = [ 62 (replaceVars ./fix-paths.patch { 63 inherit zenity; 64 }) 65 ]; 66
··· 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 + fetchpatch, 6 replaceVars, 7 cairo, 8 cinnamon-desktop, ··· 62 patches = [ 63 (replaceVars ./fix-paths.patch { 64 inherit zenity; 65 + }) 66 + 67 + # Fix Qt apps crashing on wayland 68 + # https://github.com/linuxmint/muffin/pull/739 69 + (fetchpatch { 70 + url = "https://github.com/linuxmint/muffin/commit/760e2a3046e13610c4fda1291a9a28e589d2bd93.patch"; 71 + hash = "sha256-D0u8UxW5USzMW9KlP3Y4XCWxrQ1ySufDv+eCbrAP71c="; 72 }) 73 ]; 74