2017-04-07 19:54:27 +01:00
|
|
|
{
|
2020-12-24 21:11:20 +00:00
|
|
|
mkDerivation, lib, kdepimTeam, fetchpatch,
|
2017-04-07 19:54:27 +01:00
|
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
akonadi, akonadi-search, grantlee, grantleetheme, kcmutils, kcompletion,
|
2021-01-31 15:03:32 +00:00
|
|
|
kcrash, kdbusaddons, ki18n, kontactinterface, kparts,
|
2017-04-07 19:54:27 +01:00
|
|
|
kpimtextedit, kxmlgui, libkdepim, libkleo, mailcommon, pimcommon, prison,
|
|
|
|
qgpgme, qtbase,
|
|
|
|
}:
|
|
|
|
|
|
|
|
mkDerivation {
|
2020-12-24 23:05:07 +00:00
|
|
|
pname = "kaddressbook";
|
2017-04-07 19:54:27 +01:00
|
|
|
meta = {
|
2021-09-18 10:48:23 +01:00
|
|
|
homepage = "https://apps.kde.org/kaddressbook/";
|
|
|
|
description = "KDE contact manager";
|
2017-04-07 19:54:27 +01:00
|
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
|
|
maintainers = kdepimTeam;
|
|
|
|
};
|
|
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
|
|
buildInputs = [
|
|
|
|
akonadi akonadi-search grantlee grantleetheme kcmutils kcompletion kcrash
|
2021-01-31 15:03:32 +00:00
|
|
|
kdbusaddons ki18n kontactinterface kparts kpimtextedit
|
2017-04-07 19:54:27 +01:00
|
|
|
kxmlgui libkdepim libkleo mailcommon pimcommon prison qgpgme qtbase
|
|
|
|
];
|
2022-04-21 20:36:44 +01:00
|
|
|
postInstall = ''
|
2022-04-26 16:33:03 +01:00
|
|
|
# added as an include directory by cmake files and fails to compile if it's missing
|
2022-04-21 20:36:44 +01:00
|
|
|
mkdir -p "$out/include/KF5"
|
|
|
|
'';
|
2017-04-07 19:54:27 +01:00
|
|
|
}
|