From ae5361fa1b3aefe862b843133901667444389f3e Mon Sep 17 00:00:00 2001 From: olegkapitonov <35794650+olegkapitonov@users.noreply.github.com> Date: Thu, 27 Jan 2022 06:29:32 +0300 Subject: [PATCH] fix MTP support on KDE Plasma and Dolphin (#155405) * fix MTP support on KDE Plasma and Dolphin * Update pkgs/applications/kde/kio-extras.nix Co-authored-by: ElXreno Co-authored-by: Peter Hoeg Co-authored-by: ElXreno --- nixos/modules/services/x11/desktop-managers/plasma5.nix | 3 ++- pkgs/applications/kde/kio-extras.nix | 7 +++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/modules/services/x11/desktop-managers/plasma5.nix b/nixos/modules/services/x11/desktop-managers/plasma5.nix index 9bacdaa9be98..b7aa2eba81cf 100644 --- a/nixos/modules/services/x11/desktop-managers/plasma5.nix +++ b/nixos/modules/services/x11/desktop-managers/plasma5.nix @@ -394,7 +394,8 @@ in # Extra UDEV rules used by Solid services.udev.packages = [ - pkgs.libmtp + # libmtp has "bin", "dev", "out" outputs. UDEV rules file is in "out". + pkgs.libmtp.out pkgs.media-player-info ]; diff --git a/pkgs/applications/kde/kio-extras.nix b/pkgs/applications/kde/kio-extras.nix index 4a41493a525c..29a3bdc97bb8 100644 --- a/pkgs/applications/kde/kio-extras.nix +++ b/pkgs/applications/kde/kio-extras.nix @@ -19,5 +19,12 @@ mkDerivation { kpty syntax-highlighting libmtp libssh openexr openslp phonon qtsvg samba solid gperf ]; + + # org.kde.kmtpd5 DBUS service launches kiod5 binary from kio derivation, not from kio-extras + postInstall = '' + substituteInPlace $out/share/dbus-1/services/org.kde.kmtpd5.service \ + --replace Exec=$out Exec=${kio} + ''; + CXXFLAGS = [ "-I${ilmbase.dev}/include/OpenEXR" ]; }