We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d616f8f + 9ea3d39 commit 8e677a0Copy full SHA for 8e677a0
pkgs/desktops/xfce/core/xfdesktop/default.nix
@@ -1,6 +1,7 @@
1
{
2
lib,
3
mkXfceDerivation,
4
+ fetchpatch,
5
exo,
6
gtk3,
7
libxfce4ui,
@@ -21,6 +22,15 @@ mkXfceDerivation {
21
22
23
sha256 = "sha256-80g3lk1TkQI0fbYf2nXs36TrPlaGTHgH6k/TGOzRd3w=";
24
25
+ patches = [
26
+ # Fix monitor chooser UI resource path
27
+ # https://gitlab.xfce.org/xfce/xfdesktop/-/merge_requests/181
28
+ (fetchpatch {
29
+ url = "https://gitlab.xfce.org/xfce/xfdesktop/-/commit/699e21b062f56bdc0db192bfe036420b2618612e.patch";
30
+ hash = "sha256-YTtXF+OJMHn6KY2xui1qGZ04np9a60asne+8ZS/dujs=";
31
+ })
32
+ ];
33
+
34
buildInputs = [
35
exo
36
gtk3
0 commit comments