summary refs log blame commit diff
path: root/pkgs/applications/kde/libkgapi.nix
blob: 7ff3a1f04b09931902e376d6c41ecf31ece2bf47 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15














                                                        
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  qtwebengine, kio, kcalcore, kcontacts
}:

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