forked from mirrors/nixpkgs
korganizer: init at 17.04.0
This commit is contained in:
parent
c3101965d4
commit
548f52c0a3
|
@ -108,6 +108,7 @@ let
|
|||
konsole = callPackage ./konsole.nix {};
|
||||
kontact = callPackage ./kontact.nix {};
|
||||
kontactinterface = callPackage ./kontactinterface.nix {};
|
||||
korganizer = callPackage ./korganizer.nix {};
|
||||
kpimtextedit = callPackage ./kpimtextedit.nix {};
|
||||
kqtquickcharts = callPackage ./kqtquickcharts.nix {};
|
||||
krfb = callPackage ./krfb.nix {};
|
||||
|
|
29
pkgs/applications/kde/korganizer.nix
Normal file
29
pkgs/applications/kde/korganizer.nix
Normal file
|
@ -0,0 +1,29 @@
|
|||
{
|
||||
mkDerivation, lib, kdepimTeam,
|
||||
extra-cmake-modules, kdoctools,
|
||||
qtbase, qttools,
|
||||
phonon,
|
||||
knewstuff,
|
||||
akonadi-calendar, akonadi-contacts, akonadi-notes, akonadi-search,
|
||||
calendarsupport, eventviews, incidenceeditor, kcalutils, kdepim-apps-libs,
|
||||
kholidays, kidentitymanagement, kldap, kmailtransport, kontactinterface,
|
||||
kpimtextedit, pimcommon,
|
||||
}:
|
||||
|
||||
mkDerivation {
|
||||
name = "korganizer";
|
||||
meta = {
|
||||
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
|
||||
calendarsupport eventviews incidenceeditor kcalutils kdepim-apps-libs
|
||||
kholidays kidentitymanagement kldap kmailtransport kontactinterface
|
||||
kpimtextedit pimcommon
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue