1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 04:31:52 +00:00

kdeconnect: avoid double-wrapping the binary

This commit is contained in:
Peter Hoeg 2020-10-29 07:20:41 +08:00
parent dfd29f9d7c
commit 05d95cfe79

View file

@ -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";