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

mkDerivation {
  name = "libkgapi";
  meta = {
    license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
    maintainers = kdepimTeam;
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [ qtwebengine kio kcalendarcore kcontacts cyrus_sasl ];
}