about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2024-03-25 00:16:44 +0800
committerBobby Rong <rjl931189261@126.com>2024-03-25 00:16:44 +0800
commit4c9331d517d59a05764a4f06619f4ccbf0b96059 (patch)
tree9d993043c99d44f56462cc8fadcb035e9ac0f37b
parentfd077ac57e488f551d3f5ebd7c1058e760921908 (diff)
downloadnixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar.gz
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar.bz2
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar.lz
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar.xz
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.tar.zst
nixlib-4c9331d517d59a05764a4f06619f4ccbf0b96059.zip
budgie.budgie-desktop: Backport a few fixes
Since we are fetching patches already, these fixes looks
good to fetch early and are already patched in Fedora.
-rw-r--r--pkgs/desktops/budgie/budgie-desktop/default.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/pkgs/desktops/budgie/budgie-desktop/default.nix b/pkgs/desktops/budgie/budgie-desktop/default.nix
index 015e4fe45273..f710aa8ddd73 100644
--- a/pkgs/desktops/budgie/budgie-desktop/default.nix
+++ b/pkgs/desktops/budgie/budgie-desktop/default.nix
@@ -51,6 +51,20 @@ stdenv.mkDerivation (finalAttrs: {
   patches = [
     ./plugins.patch
 
+    # Fix workspace applet window icon click not performing workspace switch
+    # https://github.com/BuddiesOfBudgie/budgie-desktop/issues/524
+    (fetchpatch2 {
+      url = "https://github.com/BuddiesOfBudgie/budgie-desktop/commit/9b775d613ad0c324db628ed5a32d3fccc90f82d6.patch";
+      hash = "sha256-QtPviPW7pJYZIs28CYwE3N8vcDswqnjD6d0WVPFchL4=";
+    })
+
+    # Work around even more SNI noncompliance
+    # https://github.com/BuddiesOfBudgie/budgie-desktop/issues/539
+    (fetchpatch2 {
+      url = "https://github.com/BuddiesOfBudgie/budgie-desktop/commit/84269e2fcdcac6d737ee5100881e8b306eaae570.patch";
+      hash = "sha256-1Uj+6GZ9/oDQOt+5P8UYiVP3P0BrsJe3HqXVLkWCkAM=";
+    })
+
     # vapi: Update libxfce4windowing to 4.19.3
     # https://github.com/BuddiesOfBudgie/budgie-desktop/issues/546
     (fetchpatch2 {