summary refs log blame commit diff
path: root/pkgs/applications/kde/krfb.nix
blob: d2b96bf6100e816925e83e1e12f4e1d2f5a3e124 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
 
                    
                                 
                                                                         

  





                                                      
                                                        
                                                                
                                                     
 
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  kdelibs4support, kdnssd, libvncserver, libXtst, libXdamage, qtx11extras
}:

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