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

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