xdg-desktop-portal-kde: fix missing runtime dependency

`plasma-workspace` is required when `xdg-desktop-portal-kde` needs to
open an application picker to let the user pick the application to use to
open a certain file (when no existing default is available).
If `plasma-workspace` is not available the `xdg-desktop-portal-kde` service
logs an error and nothing else happens (the application picker is not opened).

See https://github.com/NixOS/nixpkgs/issues/160923#issuecomment-1474989176
This commit is contained in:
Lijun Chen 2023-03-25 10:28:01 +01:00
parent ac718d0286
commit 50e860b91e

View file

@ -19,6 +19,7 @@
, kdeclarative
, plasma-framework
, plasma-wayland-protocols
, plasma-workspace
, kio
, qtbase
}:
@ -45,5 +46,6 @@ mkDerivation {
kdeclarative
plasma-framework
plasma-wayland-protocols
plasma-workspace
];
}