krfb: init at 16.12.2

This commit is contained in:
Matt McHenry 2017-03-11 10:29:44 -05:00
parent 45344fdf19
commit 2a9208cd24
3 changed files with 24 additions and 1 deletions

View File

@ -76,6 +76,7 @@ let
kmix = callPackage ./kmix.nix {};
kompare = callPackage ./kompare.nix {};
konsole = callPackage ./konsole.nix {};
krfb = callPackage ./krfb.nix {};
kwalletmanager = callPackage ./kwalletmanager.nix {};
libkdcraw = callPackage ./libkdcraw.nix {};
libkexiv2 = callPackage ./libkexiv2.nix {};

View File

@ -0,0 +1,22 @@
{
kdeApp, lib, kdeWrapper,
extra-cmake-modules, kdoctools,
kdelibs4support, kdnssd, libvncserver, libXtst
}:
let
unwrapped =
kdeApp {
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" ];
}

View File

@ -14101,7 +14101,7 @@ with pkgs;
inherit (kdeApplications)
akonadi ark dolphin ffmpegthumbs filelight gwenview kate
kdenlive kcalc kcolorchooser kcontacts kgpg khelpcenter kig konsole marble
kdenlive kcalc kcolorchooser kcontacts kgpg khelpcenter kig konsole krfb marble
okteta okular spectacle;
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };