summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/kde
diff options
context:
space:
mode:
authorPeter Hoeg <peter@hoeg.com>2020-10-29 07:20:41 +0800
committerPeter Hoeg <peter@hoeg.com>2020-10-30 22:34:02 +0800
commit05d95cfe79a69cf690cec5d356b37e29d7d13d18 (patch)
treef318748a9bdf1b6c8b31d3ab75edee95caab7320 /pkgs/applications/kde
parentdfd29f9d7c878ab3e2a0bc0e8d8c7a41834fd3cc (diff)
kdeconnect: avoid double-wrapping the binary
Diffstat (limited to 'pkgs/applications/kde')
-rw-r--r--pkgs/applications/kde/kdeconnect-kde.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/applications/kde/kdeconnect-kde.nix b/pkgs/applications/kde/kdeconnect-kde.nix
index a1ebda75a9cc..83e54d1fa80c 100644
--- a/pkgs/applications/kde/kdeconnect-kde.nix
+++ b/pkgs/applications/kde/kdeconnect-kde.nix
@@ -59,9 +59,9 @@ mkDerivation {
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
- postInstall = ''
- wrapProgram $out/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]}
- '';
+ qtWrapperArgs = [
+ "--prefix PATH : ${lib.makeBinPath [ sshfs ]}"
+ ];
meta = with lib; {
description = "KDE Connect provides several features to integrate your phone and your computer";