mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
Merge pull request #23755 from jerith666/krfb
krfb: expose kde 5 version
This commit is contained in:
commit
ce180eb109
@ -77,6 +77,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 {};
|
||||
|
22
pkgs/applications/kde/krfb.nix
Normal file
22
pkgs/applications/kde/krfb.nix
Normal 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" ];
|
||||
}
|
@ -14139,7 +14139,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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user