lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 24.11-pre 27 lines 832 B view raw
1{ 2 mkDerivation, lib, 3 extra-cmake-modules, kdoctools, makeWrapper, 4 kcmutils, kcompletion, kconfig, kdnssd, knotifyconfig, kwallet, kwidgetsaddons, 5 kwindowsystem, libvncserver, freerdp, 6}: 7 8mkDerivation { 9 pname = "krdc"; 10 nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ]; 11 buildInputs = [ 12 kcmutils kcompletion kconfig kdnssd knotifyconfig kwallet kwidgetsaddons 13 kwindowsystem freerdp libvncserver 14 ]; 15 postFixup = '' 16 wrapProgram $out/bin/krdc \ 17 --prefix PATH : ${lib.makeBinPath [ freerdp ]} 18 ''; 19 meta = with lib; { 20 homepage = "http://www.kde.org"; 21 description = "Remote desktop client"; 22 mainProgram = "krdc"; 23 license = with licenses; [ gpl2Plus lgpl21Plus fdl12Plus bsd3 ]; 24 maintainers = with maintainers; [ peterhoeg ]; 25 platforms = platforms.linux; 26 }; 27}