nixpkgs/pkgs/applications/kde/krdc.nix

26 lines
747 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,
2019-05-23 08:34:58 +00:00
kwindowsystem, libvncserver, freerdp
2017-10-24 02:25:17 +00:00
}:
mkDerivation {
name = "krdc";
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;
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
};
}