nixpkgs-suyu/pkgs/applications/kde/krdc.nix

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

28 lines
832 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,
kwindowsystem, libvncserver, freerdp,
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";
mainProgram = "krdc";
2022-10-27 22:47:29 +02:00
license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ];
2017-10-24 04:25:17 +02:00
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}