From 808876836894ee2ccc4e6ac2f8447859230f7b7e Mon Sep 17 00:00:00 2001 From: Kei Yamashita Date: Sat, 14 May 2016 21:27:08 -0400 Subject: [PATCH] gnu: Add gnome-calendar. * gnu/packages/gnome.scm (gnome-calendar): New variable. --- gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 83e4f83..8e09696 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5022,3 +5022,31 @@ specified duration and save it as a GIF encoded animated image file.") "Libzapojit is a GLib-based library for accessing online service APIs of Microsoft SkyDrive and Hotmail, using their REST protocols.") (license license:lgpl2.1+))) + +(define-public gnome-calendar + (package + (name "gnome-calendar") + (version "3.20.2") + (source (origin + (method url-fetch) + (uri (string-append "mirror://gnome/sources/" name "/" + (version-major+minor version) "/" + name "-" version ".tar.xz")) + (sha256 + (base32 + "1vny8fclwglapdyxd2g9fbwdlk5hhnb993k2hvq3rf0hcgswycpi")))) + (build-system glib-or-gtk-build-system) + (native-inputs + `(("intltool" ,intltool) + ("pkg-config" ,pkg-config))) + (inputs + `(("bdb" ,bdb) + ("desktop-file-utils" ,desktop-file-utils) + ("evolution-data-server" ,evolution-data-server) + ("gnome-online-accounts" ,gnome-online-accounts))) + (home-page "https://wiki.gnome.org/Apps/Calendar") + (synopsis "GNOME's calendar application") + (description + "GNOME Calendar is a simple calendar application designed to fit the GNOME +desktop. It supports multiple calendars, monthly view and yearly view.") + (license license:gpl3+))) -- 2.7.4