16 lines
425 B
Nix
16 lines
425 B
Nix
{
|
|
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 ];
|
|
}
|