about summary refs log tree commit diff
path: root/pkgs/kde
diff options
context:
space:
mode:
authorK9002024-07-15 21:37:09 +0300
committerK9002024-07-15 21:37:09 +0300
commit8e4a87c54f7a8434c0efdc53ffbd5ce153a54c1d (patch)
treebd78a5258cfd9ca38a3e3377e2ff6902b1acf88a /pkgs/kde
parent955abd615d2fe51d855e5fc3b9e2034d388d2cdb (diff)
kdePackages.kio: cherry-pick fix for drag and drop on Wayland
Diffstat (limited to 'pkgs/kde')
-rw-r--r--pkgs/kde/frameworks/kio/default.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/pkgs/kde/frameworks/kio/default.nix b/pkgs/kde/frameworks/kio/default.nix
index 98d7a12f00b7..8f3ba7022730 100644
--- a/pkgs/kde/frameworks/kio/default.nix
+++ b/pkgs/kde/frameworks/kio/default.nix
@@ -1,5 +1,6 @@
 {
   mkKdeDerivation,
+  fetchpatch,
   qt5compat,
   qttools,
   acl,
@@ -11,6 +12,13 @@ mkKdeDerivation {
   patches = [
     # Remove hardcoded smbd search path
     ./0001-Remove-impure-smbd-search-path.patch
+
+    # Backport fix for drag and drop
+    # FIXME: remove in next update
+    (fetchpatch {
+      url = "https://invent.kde.org/frameworks/kio/-/commit/e0ea91afdf0dccef7e3afbf23a159bf5a8d6b249.patch";
+      hash = "sha256-YtklZr4DwV8wNABIAUm969w90hi4iEk5aW7a3n6yQeM=";
+    })
   ];
 
   extraBuildInputs = [qt5compat qttools acl attr];