nixpkgs/pkgs/applications/kde/kontact.nix

24 lines
617 B
Nix
Raw Permalink Normal View History

2017-04-07 23:18:27 +00:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
qtwebengine,
2019-12-26 04:29:17 +00:00
kcmutils, kcrash, kdbusaddons, kparts, kwindowsystem,
2021-01-31 15:03:32 +00:00
akonadi, grantleetheme, kontactinterface, kpimtextedit,
2020-08-23 14:53:18 +00:00
mailcommon, libkdepim, pimcommon
2017-04-07 23:18:27 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kontact";
2017-04-07 23:18:27 +00:00
meta = {
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
qtwebengine
2019-12-26 04:29:17 +00:00
kcmutils kcrash kdbusaddons kparts kwindowsystem
2021-01-31 15:03:32 +00:00
akonadi grantleetheme kontactinterface kpimtextedit
2020-08-23 14:53:18 +00:00
mailcommon libkdepim pimcommon
2017-04-07 23:18:27 +00:00
];
}