about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/kde/kontact.nix
blob: f405b9af20abeb2ebe5c490c8c150ce5b12fe620 (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
24
25
26
27
28
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  qtwebengine,
  kcmutils, kcrash, kdbusaddons, kparts, kwindowsystem,
  akonadi, grantleetheme, kontactinterface, kpimtextedit,
  mailcommon, libkdepim, pimcommon,
  akregator, kaddressbook, kmail, knotes, korganizer, zanshin
}:

mkDerivation {
  pname = "kontact";
  meta = {
    homepage = "https://apps.kde.org/kontact/";
    description = "Personal information manager";
    mainProgram = "kontact";
    license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    qtwebengine
    kcmutils kcrash kdbusaddons kparts kwindowsystem
    akonadi grantleetheme kontactinterface kpimtextedit
    mailcommon libkdepim pimcommon
    akregator kaddressbook kmail knotes korganizer zanshin
  ];
}