summary refs log tree commit diff
path: root/pkgs/applications/kde/krfb.nix
blob: a5a34b684602e333d290fa575ae1a5847d55d00a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools, wrapGAppsHook,
  kdelibs4support, kdnssd, libvncserver, libXtst
}:

mkDerivation {
  name = "krfb";
  meta = {
    license = with lib.licenses; [ gpl2 fdl12 ];
    maintainers = with lib.maintainers; [ jerith666 ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools wrapGAppsHook ];
  propagatedBuildInputs = [ kdelibs4support kdnssd libvncserver libXtst ];
}