summary refs log tree commit diff
path: root/pkgs/applications/kde/ktnef.nix
blob: 4a29acd1e7cfa010c4e28e9fbbfad443b92f65d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  kcalendarcore, kcalutils, kcontacts
}:

mkDerivation {
  pname = "ktnef";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  propagatedBuildInputs = [
    kcalendarcore kcalutils kcontacts
  ];
  outputs = [ "out" "dev" ];
}