From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan =?utf-8?Q?Reich=C3=B6r?= Subject: calendar: Add remind Date: Sun, 04 Sep 2016 01:11:37 +0200 Message-ID: <87shtg60k6.fsf@xsteve.at> Mime-Version: 1.0 Content-Type: text/x-diff; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38154) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgK6W-0007uf-KB for guix-devel@gnu.org; Sat, 03 Sep 2016 19:12:05 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bgK6T-0008UU-Cv for guix-devel@gnu.org; Sat, 03 Sep 2016 19:12:04 -0400 Received: from [195.159.176.226] (port=44455 helo=blaine.gmane.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bgK6T-0008UD-67 for guix-devel@gnu.org; Sat, 03 Sep 2016 19:12:01 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1bgK6I-0000i2-Ph for guix-devel@gnu.org; Sun, 04 Sep 2016 01:11:50 +0200 Content-Disposition: inline; filename=0001-calendar-Add-remind.patch List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org >From 48419a0ebdda5739275decb01d6085fbe3e8ad6f Mon Sep 17 00:00:00 2001 From: Stefan Reichoer Date: Sun, 4 Sep 2016 01:09:48 +0200 Subject: [PATCH] calendar: Add remind --- gnu/packages/calendar.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/calendar.scm b/gnu/packages/calendar.scm index 7f3d05d..6cdbf00 100644 --- a/gnu/packages/calendar.scm +++ b/gnu/packages/calendar.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2016 Kei Kebreau ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016 Troy Sankey +;;; Copyright © 2016 Stefan Reichoer ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,6 +27,7 @@ #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build utils) + #:use-module (guix build-system gnu) #:use-module (guix build-system cmake) #:use-module (guix build-system python) #:use-module (gnu packages base) @@ -134,3 +136,26 @@ data units.") able to synchronize with CalDAV servers through vdirsyncer.") (home-page "http://lostpackets.de/khal/") (license expat))) + +(define-public remind + (package + (name "remind") + (version "3.1.15") + (source + (origin + (method url-fetch) + (uri (string-append "https://www.roaringpenguin.com/files/download/remind-03.01.15.tar.gz")) + (sha256 + (base32 + "1hcfcxz5fjzl7606prlb7dgls5kr8z3wb51h48s6qm8ang0b9nla")))) + (build-system gnu-build-system) + (arguments + '(#:tests? #f)) ;no "check" target + (home-page "http://www.roaringpenguin.com/products/remind/") + (synopsis "Sophisticated calendar and alarm program") + (description + "Remind allows you to remind yourself of upcoming events and appointments. +Each reminder or alarm can consist of a message sent to standard output, or a program to be executed. +It also features: sophisticated date calculation, moon phases, sunrise/sunset, Hebrew calendar, alarms, +PostScript output and proper handling of holidays.") + (license gpl2))) -- 2.7.4