nixpkgs/pkgs/applications/kde/krfb.nix

23 lines
530 B
Nix
Raw Normal View History

2017-03-11 15:29:44 +00:00
{
mkDerivation, lib, kdeWrapper,
2017-03-11 15:29:44 +00:00
extra-cmake-modules, kdoctools,
kdelibs4support, kdnssd, libvncserver, libXtst
}:
let
unwrapped =
mkDerivation {
2017-03-11 15:29:44 +00:00
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" ];
}