Merge pull request #33467 from nixy/kdeconnect-sshfs
kdeconnect: Add `sshfs` as a dependency
This commit is contained in:
commit
2832cc729a
|
@ -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; {
|
||||
|
|
Loading…
Reference in New Issue