krdc: init at 17.08.1
This commit is contained in:
parent
cd4df565ef
commit
87bd0494ba
|
@ -124,6 +124,7 @@ let
|
|||
korganizer = callPackage ./korganizer.nix {};
|
||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
|
||||
krdc = callPackage ./krdc.nix {};
|
||||
krfb = callPackage ./krfb.nix {};
|
||||
ktnef = callPackage ./ktnef.nix {};
|
||||
kwalletmanager = callPackage ./kwalletmanager.nix {};
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
mkDerivation, lib,
|
||||
extra-cmake-modules, kdoctools, makeWrapper,
|
||||
kcmutils, kcompletion, kconfig, kdnssd, knotifyconfig, kwallet, kwidgetsaddons,
|
||||
libvncserver, freerdp
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "krdc";
|
||||
nativeBuildInputs = [ extra-cmake-modules kdoctools makeWrapper ];
|
||||
buildInputs = [
|
||||
kcmutils kcompletion kconfig kdnssd knotifyconfig kwallet kwidgetsaddons
|
||||
freerdp libvncserver
|
||||
];
|
||||
postFixup = ''
|
||||
wrapProgram $out/bin/krdc \
|
||||
--prefix PATH : ${lib.makeBinPath [ freerdp ]}
|
||||
'';
|
||||
meta = with lib; {
|
||||
homepage = http://www.kde.org;
|
||||
license = with licenses; [ gpl2 lgpl21 fdl12 bsd3 ];
|
||||
maintainers = with maintainers; [ peterhoeg ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -15248,7 +15248,7 @@ with pkgs;
|
|||
akonadi akregator ark dolphin ffmpegthumbs filelight gwenview k3b
|
||||
kaddressbook kate kcachegrind kcalc kcolorchooser kcontacts kdenlive kdf
|
||||
kgpg khelpcenter kig kleopatra kmail kmix kolourpaint kompare konsole
|
||||
kontact korganizer krfb kwalletmanager marble minuet okteta okular spectacle;
|
||||
kontact korganizer krdc krfb kwalletmanager marble minuet okteta okular spectacle;
|
||||
|
||||
kdeconnect = libsForQt5.callPackage ../applications/misc/kdeconnect { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue