summary refs log tree commit diff
path: root/pkgs/applications/office/eventlist/default.nix
blob: c260220aad4d75649b8187109e56294e5cd02a73 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ stdenv, fetchurl, kdelibs, kdepimlibs, akonadi, gettext, boost }:

stdenv.mkDerivation rec {
  name = "plasmoid-eventlist-0.6.96";

  src = fetchurl {
    url = "http://kde-look.org/CONTENT/content-files/107779-plasmoid-eventlist-0.6.96.tar.bz2";
    sha256 = "26cc7bd1c465bf1379fd0ba1fa8592eaa62f2553734d1b283e17359103908eea";
  };

  buildInputs = [ kdelibs kdepimlibs akonadi gettext boost ];

  meta = {
    inherit (kdelibs.meta) platforms;
    description = "KDE Plasmoid to show events and todos on the desktop";
    longDescription = ''
      This is a plasmoid to show the events and todos from Akonadi resources (KOrganizer, Birthdays etc.).
      With a google resource also Google calendar items can be shown.
      Also possible with a CalDAV resource.
      A facebook resource is also available.

      Incidences can be filtered, added, edited, deleted via context menu.
    '';
    homepage = "http://kde-look.org/content/show.php/Eventlist?content=107779";
    license = stdenv.lib.licenses.gpl3Plus;

	  };
}