nixpkgs/pkgs/applications/kde/krdc.nix

27 lines
812 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,
2021-01-31 20:31:20 +00:00
kwindowsystem, libvncserver, freerdp, qtbase,
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";
2017-10-24 02:25:17 +00:00
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
maintainers = with maintainers; [ peterhoeg ];
platforms = platforms.linux;
2021-01-31 20:31:20 +00:00
broken = lib.versionOlder qtbase.version "5.14";
2017-10-24 02:25:17 +00:00
};
}