about summary refs log tree commit diff
path: root/pkgs/applications/kde/akonadi-mime.nix
blob: 26e1559c779e907e4c20615b21c64410ab5c0544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  kdeApp, lib,
  ecm,
  akonadi, kdbusaddons, kio, kitemmodels, kmime
}:

kdeApp {
  name = "akonadi-mime";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ ecm ];
  buildInputs = [ akonadi kdbusaddons kio kitemmodels kmime ];
}