From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: [PATCH 5/5] gnu: Add emacs-mu4e-alert. Date: Thu, 26 Jan 2017 13:31:19 +0100 Message-ID: <20170126123119.18942-6-m.othacehe@gmail.com> References: <20170126123119.18942-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48563) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWjDR-0001hZ-Ot for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWjDQ-0003z8-26 for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:49 -0500 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:34252) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWjDP-0003yK-Rz for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:47 -0500 Received: by mail-wm0-x244.google.com with SMTP id c85so49983721wmi.1 for ; Thu, 26 Jan 2017 04:31:47 -0800 (PST) In-Reply-To: <20170126123119.18942-1-m.othacehe@gmail.com> 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 * gnu/packages/emacs.scm (emacs-mu4e-alert): New variable. --- gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 498e17f6b..0e14d34b4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3744,3 +3744,29 @@ interface and multiple, selectable \"styles\", whose use is fully customizable by the user.") (license license:gpl3+))) +(define-public emacs-mu4e-alert + (package + (name "emacs-mu4e-alert") + (version "20160909.918") + (source + (origin + (method url-fetch) + (uri (string-append + "http://melpa.org/packages/mu4e-alert-" + version + ".el")) + (sha256 + (base32 + "0w2s8690dkmgyf8864c1baa2gb13mxmn0x40l1fni5qgaj5iv49x")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-alert" ,emacs-alert) + ("emacs-s" ,emacs-s) + ("emacs-ht" ,emacs-ht))) + (home-page + "https://github.com/iqbalansari/mu4e-alert") + (synopsis "Desktop notification for mu4e") + (description + "This package provides desktop notifications for mu4e, additionally it can +display the number of unread emails in the modeline.") + (license license:gpl3+))) -- 2.11.0