summary refs log tree commit diff
path: root/pkgs/applications/kde/kmail-account-wizard.nix
blob: f380315cce903a8aac28e840e00784cd8f4839a7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools, shared-mime-info,
  akonadi, kcmutils, kcrash, kdbusaddons, kidentitymanagement, kldap,
  kmailtransport, knewstuff, knotifications, knotifyconfig, kparts, kross, ktexteditor,
  kwallet, libkdepim, libkleo, pimcommon, qttools,
}:

mkDerivation {
  name = "kmail-account-wizard";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools shared-mime-info ];
  buildInputs = [
    akonadi kcmutils kcrash kdbusaddons kidentitymanagement kldap kmailtransport
    knewstuff knotifications knotifyconfig kparts kross ktexteditor kwallet libkdepim
    libkleo pimcommon qttools
  ];
}