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


                                 
                                                     
            






                                                       
                                                      

                                                        
                                                                       
 
{
  mkDerivation, lib, kdepimTeam,
  extra-cmake-modules, kdoctools,
  qtbase, qtwebengine, kio, kcalendarcore, kcontacts,
  cyrus_sasl
}:

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