summary refs log tree commit diff
path: root/pkgs/applications/kde/ktnef.nix
blob: b5a3834869db326f74f011e38ae5c7afd9356c12 (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,
  kcalcore, kcalutils, kcontacts, kdelibs4support
}:

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