nixpkgs/pkgs/applications/kde/krdc.nix

28 lines
855 B
Nix
Raw Normal View History

2017-10-24 04:25:17 +02:00
{
mkDerivation, lib,
extra-cmake-modules, kdoctools, makeWrapper,
kcmutils, kcompletion, kconfig, kdnssd, knotifyconfig, kwallet, kwidgetsaddons,
2021-01-31 21:31:20 +01:00
kwindowsystem, libvncserver, freerdp, qtbase,
2017-10-24 04:25:17 +02:00
}:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "krdc";
2017-10-24 04:25:17 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
buildInputs = [
kcmutils kcompletion kconfig kdnssd knotifyconfig kwallet kwidgetsaddons
2019-05-23 10:34:58 +02:00
kwindowsystem freerdp libvncserver
2017-10-24 04:25:17 +02:00
];
postFixup = ''
wrapProgram $out/bin/krdc \
--prefix PATH : ${lib.makeBinPath [ freerdp ]}
'';
meta = with lib; {
homepage = "http://www.kde.org";
description = "Remote desktop client";
2017-10-24 04:25:17 +02:00
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
2021-01-31 21:31:20 +01:00
broken = lib.versionOlder qtbase.version "5.14";
2017-10-24 04:25:17 +02:00
};
}