5223d2c13b
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
29 lines
983 B
Nix
29 lines
983 B
Nix
{
|
|
mkDerivation, lib, kdepimTeam, fetchpatch,
|
|
extra-cmake-modules, kdoctools,
|
|
akonadi, akonadi-search, grantlee, grantleetheme, kcmutils, kcompletion,
|
|
kcrash, kdbusaddons, ki18n, kontactinterface, kparts,
|
|
kpimtextedit, kxmlgui, libkdepim, libkleo, mailcommon, pimcommon, prison,
|
|
qgpgme, qtbase,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kaddressbook";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/kaddressbook/";
|
|
description = "KDE contact manager";
|
|
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
akonadi akonadi-search grantlee grantleetheme kcmutils kcompletion kcrash
|
|
kdbusaddons ki18n kontactinterface kparts kpimtextedit
|
|
kxmlgui libkdepim libkleo mailcommon pimcommon prison qgpgme qtbase
|
|
];
|
|
postInstall = ''
|
|
# added as an include directory by cmake files and fails to compile if it's missing
|
|
mkdir -p "$out/include/KF5"
|
|
'';
|
|
}
|