summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAndrew R. M <nixy@nixy.moe>2018-01-05 16:03:44 +0000
committerAndrew R. M <nixy@nixy.moe>2018-01-05 16:03:44 +0000
commitd06ab7d212fb944c181736e033e9f215f3e53128 (patch)
tree0ef93f20b893adffa9d643ca08d61002b586e1af /pkgs
parent6960541eb8952d540652601b5c9fdff1c9a5e673 (diff)
downloadnixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar.gz
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar.bz2
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar.lz
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar.xz
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.tar.zst
nixpkgs-d06ab7d212fb944c181736e033e9f215f3e53128.zip
kdeconnect: Add `sshfs` as a dependency
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/applications/misc/kdeconnect/default.nix8
1 files changed, 7 insertions, 1 deletions
diff --git a/pkgs/applications/misc/kdeconnect/default.nix b/pkgs/applications/misc/kdeconnect/default.nix
index a95dd6adbce..32683ab701a 100644
--- a/pkgs/applications/misc/kdeconnect/default.nix
+++ b/pkgs/applications/misc/kdeconnect/default.nix
@@ -13,6 +13,8 @@
 , libfakekey
 , libXtst
 , qtx11extras
+, sshfs
+, makeWrapper
 }:
 
 stdenv.mkDerivation rec {
@@ -28,11 +30,15 @@ stdenv.mkDerivation rec {
   buildInputs = [
     libfakekey libXtst
     ki18n kiconthemes kcmutils kconfigwidgets kdbusaddons knotifications
-    qca-qt5 qtx11extras
+    qca-qt5 qtx11extras makeWrapper
   ];
 
   nativeBuildInputs = [ extra-cmake-modules kdoctools ];
 
+  postInstall = ''
+    wrapProgram $out/lib/libexec/kdeconnectd --prefix PATH : ${lib.makeBinPath [ sshfs ]}
+  '';
+
   enableParallelBuilding = true;
 
   meta = with lib; {