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
stdenv,
3
lib,
4
fetchFromGitHub,
0
5
replaceVars,
6
cairo,
7
cinnamon-desktop,
···
61
patches = [
62
(replaceVars ./fix-paths.patch {
63
inherit zenity;
0
0
0
0
0
0
0
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