summary refs log blame commit diff
path: root/pkgs/applications/kde/mbox-importer.nix
blob: 0704003353aed4d63cf0967fddcc6c55ec6df3f0 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                                       
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  akonadi, akonadi-search, kconfig, kservice, kio, mailcommon, mailimporter, messagelib
}:

mkDerivation {
  name = "mbox-importer";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    akonadi akonadi-search kconfig kservice kio mailcommon mailimporter messagelib
  ];
}