From 05d95cfe79a69cf690cec5d356b37e29d7d13d18 Mon Sep 17 00:00:00 2001 From: Peter Hoeg Date: Thu, 29 Oct 2020 07:20:41 +0800 Subject: [PATCH] kdeconnect: avoid double-wrapping the binary --- pkgs/applications/kde/kdeconnect-kde.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/kde/kdeconnect-kde.nix b/pkgs/applications/kde/kdeconnect-kde.nix index a1ebda75a9c..83e54d1fa80 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";