about summary refs log tree commit diff
path: root/pkgs/applications/kde/kcontacts.nix
blob: a56ca6845455dc00f3d9a5a74120f4feec7d2365 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  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 ];
}