summary refs log tree commit diff
path: root/pkgs/applications/kde/pim-data-exporter.nix
blob: 82cdf19df948ffcb455382ea92b690a3ac5d6ecf (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,
  akonadi, akonadi-notes, kcalendarcore, kcmutils, kcrash, kdbusaddons,
  kidentitymanagement, kldap, kmailtransport, knewstuff, knotifications,
  knotifyconfig, kparts, kross, ktexteditor, kwallet, libkdepim, libkleo,
  pimcommon, qttools, karchive, mailcommon, messagelib
}:

mkDerivation {
  name = "pim-data-exporter";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    akonadi akonadi-notes kcalendarcore kcmutils kcrash kdbusaddons
    kidentitymanagement kldap kmailtransport knewstuff knotifications
    knotifyconfig kparts kross ktexteditor kwallet libkdepim libkleo pimcommon
    qttools karchive mailcommon messagelib
  ];
}