tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
muffin: Fix Qt apps crashing on wayland
Bobby Rong
5 months ago
f20519d6
7b0a56e6
+8
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
mu
muffin
package.nix
+8
pkgs/by-name/mu/muffin/package.nix
···
2
2
stdenv,
3
3
lib,
4
4
fetchFromGitHub,
5
5
+
fetchpatch,
5
6
replaceVars,
6
7
cairo,
7
8
cinnamon-desktop,
···
61
62
patches = [
62
63
(replaceVars ./fix-paths.patch {
63
64
inherit zenity;
65
65
+
})
66
66
+
67
67
+
# Fix Qt apps crashing on wayland
68
68
+
# https://github.com/linuxmint/muffin/pull/739
69
69
+
(fetchpatch {
70
70
+
url = "https://github.com/linuxmint/muffin/commit/760e2a3046e13610c4fda1291a9a28e589d2bd93.patch";
71
71
+
hash = "sha256-D0u8UxW5USzMW9KlP3Y4XCWxrQ1ySufDv+eCbrAP71c=";
64
72
})
65
73
];
66
74