nixpkgs/pkgs/applications/kde/korganizer.nix

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

32 lines
951 B
Nix
Raw Normal View History

2017-05-12 20:38:35 +02:00
{
mkDerivation, lib, kdepimTeam,
extra-cmake-modules, kdoctools,
qtbase, qttools,
phonon,
knewstuff,
akonadi-calendar, akonadi-contacts, akonadi-notes, akonadi-search,
2021-01-31 16:03:32 +01:00
calendarsupport, eventviews, incidenceeditor, kcalutils,
2017-05-12 20:38:35 +02:00
kholidays, kidentitymanagement, kldap, kmailtransport, kontactinterface,
2021-05-12 01:58:57 +02:00
kparts, kpimtextedit, pimcommon,
2017-05-12 20:38:35 +02:00
}:
mkDerivation {
2020-12-25 00:05:07 +01:00
pname = "korganizer";
2017-05-12 20:38:35 +02:00
meta = {
homepage = "https://apps.kde.org/korganizer/";
description = "Personal organizer";
2017-05-12 20:38:35 +02:00
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = kdepimTeam;
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [
qtbase qttools
phonon
knewstuff
akonadi-calendar akonadi-contacts akonadi-notes akonadi-search
2021-01-31 16:03:32 +01:00
calendarsupport eventviews incidenceeditor kcalutils
2017-05-12 20:38:35 +02:00
kholidays kidentitymanagement kldap kmailtransport kontactinterface
2021-05-12 01:58:57 +02:00
kparts kpimtextedit pimcommon
2017-05-12 20:38:35 +02:00
];
}