nixpkgs/pkgs/applications/kde/krfb.nix

16 lines
425 B
Nix
Raw Normal View History

2017-03-11 15:29:44 +00:00
{
2017-05-16 15:56:41 +00:00
mkDerivation, lib,
extra-cmake-modules, kdoctools, wrapGAppsHook,
2017-03-11 15:29:44 +00:00
kdelibs4support, kdnssd, libvncserver, libXtst
}:
2017-05-16 15:56:41 +00:00
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 ];
2017-03-11 15:29:44 +00:00
}