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

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

25 lines
718 B
Nix
Raw Normal View History

2017-05-10 16:37:46 +00:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
akonadi, akonadi-contacts, kcalendarcore, kcalutils, kcontacts,
2023-08-24 10:59:41 +00:00
kidentitymanagement, kio, kmailtransport, messagelib
2017-05-10 16:37:46 +00:00
}:
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "akonadi-calendar";
2017-05-10 16:37:46 +00:00
meta = {
license = with lib.licenses; [ gpl2 lgpl21 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
akonadi akonadi-contacts kcalendarcore kcalutils kcontacts kidentitymanagement
2023-08-24 10:59:41 +00:00
kio kmailtransport messagelib
2017-05-10 16:37:46 +00:00
];
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"
'';
2017-05-10 16:37:46 +00:00
}