mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
36 lines
1 KiB
Nix
36 lines
1 KiB
Nix
{
|
|
mkDerivation, lib, kdepimTeam,
|
|
extra-cmake-modules, kdoctools,
|
|
qtbase, qttools,
|
|
phonon,
|
|
knewstuff,
|
|
akonadi-calendar, akonadi-contacts, akonadi-notes, akonadi-search,
|
|
calendarsupport, eventviews, incidenceeditor, kcalutils,
|
|
kholidays, kidentitymanagement, kldap, kmailtransport, kontactinterface,
|
|
kparts, kpimtextedit,
|
|
kuserfeedback,
|
|
pimcommon,
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "korganizer";
|
|
meta = {
|
|
homepage = "https://apps.kde.org/korganizer/";
|
|
description = "Personal organizer";
|
|
mainProgram = "korganizer";
|
|
license = with lib.licenses; [ gpl2Plus lgpl21Plus fdl12Plus ];
|
|
maintainers = kdepimTeam;
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
qtbase qttools
|
|
phonon
|
|
knewstuff
|
|
akonadi-calendar akonadi-contacts akonadi-notes akonadi-search
|
|
calendarsupport eventviews incidenceeditor kcalutils
|
|
kholidays kidentitymanagement kldap kmailtransport kontactinterface
|
|
kparts kpimtextedit
|
|
kuserfeedback
|
|
pimcommon
|
|
];
|
|
}
|