2017-10-24 05:25:17 +03:00
|
|
|
{
|
|
|
|
mkDerivation, lib,
|
|
|
|
extra-cmake-modules, kdoctools, makeWrapper,
|
|
|
|
kcmutils, kcompletion, kconfig, kdnssd, knotifyconfig, kwallet, kwidgetsaddons,
|
2023-03-18 01:58:24 +03:00
|
|
|
kwindowsystem, libvncserver, freerdp,
|
2017-10-24 05:25:17 +03:00
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-25 02:05:07 +03:00
|
|
|
pname = "krdc";
|
2017-10-24 05:25:17 +03:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
|
|
|
buildInputs = [
|
|
|
|
kcmutils kcompletion kconfig kdnssd knotifyconfig kwallet kwidgetsaddons
|
2019-05-23 11:34:58 +03:00
|
|
|
kwindowsystem freerdp libvncserver
|
2017-10-24 05:25:17 +03:00
|
|
|
];
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/krdc \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ freerdp ]}
|
|
|
|
'';
|
|
|
|
meta = with lib; {
|
2020-04-01 04:11:51 +03:00
|
|
|
homepage = "http://www.kde.org";
|
2021-09-18 12:48:23 +03:00
|
|
|
description = "Remote desktop client";
|
2022-10-27 23:47:29 +03:00
|
|
|
license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ];
|
2017-10-24 05:25:17 +03:00
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|