about summary refs log tree commit diff
path: root/pkgs/applications/kde/kcontacts.nix
blob: 5143df60ef4410aeeeeb56b406816c88c5395e8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  kdeApp, lib,
  extra-cmake-modules, ki18n,
  kcoreaddons, kconfig, kcodecs
}:

kdeApp {
  name = "kcontacts";
  meta = {
    license = [ lib.licenses.lgpl21 ];
    maintainers = [ lib.maintainers.ttuegel ];
  };
  nativeBuildInputs = [ extra-cmake-modules ki18n ];
  buildInputs = [ kcoreaddons kconfig kcodecs ];
}