nixpkgs/pkgs/applications/kde/kaddressbook.nix

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

32 lines
1020 B
Nix
Raw Normal View History

2017-04-07 18:54:27 +00:00
{
2021-11-13 22:28:25 +00:00
mkDerivation, lib, kdepimTeam,
2017-04-07 18:54:27 +00: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,
kpimtextedit,
kuserfeedback,
kxmlgui, libkdepim, libkleo, mailcommon, pimcommon, prison,
2017-04-07 18:54:27 +00:00
qgpgme, qtbase,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kaddressbook";
2017-04-07 18:54:27 +00:00
meta = {
homepage = "https://apps.kde.org/kaddressbook/";
description = "KDE contact manager";
2022-10-27 20:47:29 +00:00
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
2017-04-07 18:54:27 +00:00
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
kuserfeedback
2017-04-07 18:54:27 +00:00
kxmlgui libkdepim libkleo mailcommon pimcommon prison qgpgme qtbase
];
2022-04-21 19:36:44 +00:00
postInstall = ''
# added as an include directory by cmake files and fails to compile if it's missing
2022-04-21 19:36:44 +00:00
mkdir -p "$out/include/KF5"
'';
2017-04-07 18:54:27 +00:00
}