nixpkgs/pkgs/applications/kde/kontact.nix

67 lines
1001 B
Nix
Raw Normal View History

2017-04-07 23:18:27 +00:00
{
mkDerivation,
lib,
kdepimTeam,
extra-cmake-modules,
kdoctools,
2017-04-07 23:18:27 +00:00
qtwebengine,
kcmutils,
kcrash,
kdbusaddons,
kparts,
kwindowsystem,
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";
license = with lib.licenses; [
gpl2Plus
lgpl21Plus
fdl12Plus
];
2017-04-07 23:18:27 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [
extra-cmake-modules
kdoctools
];
2017-04-07 23:18:27 +00:00
buildInputs = [
qtwebengine
kcmutils
kcrash
kdbusaddons
kparts
kwindowsystem
akonadi
grantleetheme
kontactinterface
kpimtextedit
mailcommon
libkdepim
pimcommon
akregator
kaddressbook
kmail
knotes
korganizer
zanshin
2017-04-07 23:18:27 +00:00
];
}