summary refs log tree commit diff
path: root/pkgs/applications/kde/kontact.nix
blob: bb44762e65c5e8c5620ceb751ad0fef3ab64f6b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  qtwebengine,
  kcmutils, kcrash, kdbusaddons, kwindowsystem,
  akonadi, grantleetheme, kdepim-apps-libs, kontactinterface, kpimtextedit,
  mailcommon, libkdepim
}:

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 libkdepim
  ];
}