nixpkgs/pkgs/applications/kde/libkgapi.nix

17 lines
391 B
Nix
Raw Normal View History

{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
2018-08-20 11:44:05 +00:00
qtwebengine, kio, kcalcore, kcontacts,
cyrus_sasl
}:
mkDerivation {
name = "libkgapi";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2018-08-20 11:44:05 +00:00
buildInputs = [ qtwebengine kio kcalcore kcontacts cyrus_sasl ];
}