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

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