nixpkgs/pkgs/applications/kde/krdc.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
806 B
Nix
Raw Normal View History

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