nixpkgs/pkgs/applications/kde/kontact.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

67 lines
1001 B
Nix
Raw 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,
mailcommon,
libkdepim,
pimcommon,
akregator,
kaddressbook,
kmail,
knotes,
korganizer,
zanshin,
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 = {
homepage = "https://apps.kde.org/kontact/";
description = "Personal information manager";
mainProgram = "kontact";
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [
gpl2Plus
lgpl21Plus
fdl12Plus
];
2017-04-07 23:18:27 +00:00
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
akregator
kaddressbook
kmail
knotes
korganizer
zanshin
2017-04-07 23:18:27 +00:00
];
}