nixpkgs/pkgs/applications/kde/akonadi-contacts.nix

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

30 lines
830 B
Nix
Raw Normal View History

{
2017-06-21 13:37:20 +00:00
mkDerivation, lib, kdepimTeam,
extra-cmake-modules,
qtwebengine,
grantlee, grantleetheme,
2021-08-13 13:44:10 +00:00
kcmutils, kdbusaddons, ki18n, kiconthemes, kio, kitemmodels, ktextwidgets,
prison, akonadi, akonadi-mime, kcontacts, kmime, libkleo,
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "akonadi-contacts";
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
2017-06-21 13:37:20 +00:00
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [
qtwebengine
grantlee
2021-08-13 13:44:10 +00:00
kcmutils kdbusaddons ki18n kiconthemes kio kitemmodels ktextwidgets prison
2021-02-01 16:48:19 +00:00
akonadi-mime kcontacts kmime libkleo
];
propagatedBuildInputs = [ akonadi grantleetheme ];
outputs = [ "out" "dev" ];
postInstall = ''
# added as an include directory by cmake files and fails to compile if it's missing
mkdir -p "$dev/include/KF5"
'';
}