summary refs log tree commit diff
path: root/pkgs/applications/kde/krfb.nix
blob: ef5530be6fa661b2290f70cd502a3e198e6ea155 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
  kdeApp, lib, kdeWrapper,
  extra-cmake-modules, kdoctools,
  kdelibs4support, kdnssd, libvncserver, libXtst
}:

let
  unwrapped =
    kdeApp {
      name = "krfb";
      meta = {
        license = with lib.licenses; [ gpl2 fdl12 ];
        maintainers = with lib.maintainers; [ jerith666 ];
      };
      nativeBuildInputs = [ extra-cmake-modules kdoctools ];
      propagatedBuildInputs = [ kdelibs4support kdnssd libvncserver libXtst ];
    };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/krfb" ];
}