mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00: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.
37 lines
1.0 KiB
Nix
37 lines
1.0 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
|
|
];
|
|
}
|