kontact: init at 17.04.0

This commit is contained in:
Jos van den Oever 2017-04-08 01:18:27 +02:00 committed by Thomas Tuegel
parent 7fe86510c1
commit 129413c474
No known key found for this signature in database
GPG Key ID: 22CBF5249D4B4D59
2 changed files with 24 additions and 0 deletions

View File

@ -104,6 +104,7 @@ let
kolourpaint = callPackage ./kolourpaint.nix {};
kompare = callPackage ./kompare.nix {};
konsole = callPackage ./konsole.nix {};
kontact = callPackage ./kontact.nix {};
kontactinterface = callPackage ./kontactinterface.nix {};
kpimtextedit = callPackage ./kpimtextedit.nix {};
krfb = callPackage ./krfb.nix {};

View File

@ -0,0 +1,23 @@
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
qtwebengine,
kcmutils, kcrash, kdbusaddons, kwindowsystem,
akonadi, grantleetheme, kdepim-apps-libs, kontactinterface, kpimtextedit,
mailcommon,
}:
mkDerivation {
name = "kontact";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
qtwebengine
kcmutils kcrash kdbusaddons kwindowsystem
akonadi grantleetheme kdepim-apps-libs kontactinterface kpimtextedit
mailcommon
];
}