From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mathieu Othacehe Subject: [PATCH 3/5] gnu: Add emacs-gntp. Date: Thu, 26 Jan 2017 13:31:17 +0100 Message-ID: <20170126123119.18942-4-m.othacehe@gmail.com> References: <20170126123119.18942-1-m.othacehe@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cWjDR-0001hc-Q8 for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cWjDO-0003x6-1E for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:49 -0500 Received: from mail-wj0-x242.google.com ([2a00:1450:400c:c01::242]:33339) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cWjDN-0003wY-RP for guix-devel@gnu.org; Thu, 26 Jan 2017 07:31:45 -0500 Received: by mail-wj0-x242.google.com with SMTP id un2so4546774wjb.0 for ; Thu, 26 Jan 2017 04:31:45 -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-gntp): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 022ba4e3d..3859125dc 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3692,3 +3692,28 @@ provides functions to convert hash tables from and to alists and plists.") multiple log levels.") (license license:gpl3+))) +(define-public emacs-gntp + (package + (name "emacs-gntp") + (version "20141024.1950") + (source + (origin + (method url-fetch) + (uri (string-append + "http://melpa.org/packages/gntp-" + version + ".el")) + (sha256 + (base32 + "1m6yj64n1d5fbzhpjx22lph5zs502zlkzhfxlzx9bh2f3cyd2wx3")))) + (build-system emacs-build-system) + (home-page "https://github.com/tekai/gntp.el") + (synopsis + "Growl Notification Protocol for Emacs") + (description + "This package implements the Growl Notification Protocol GNTP +described at http://www.growlforwindows.com/gfw/help/gntp.aspx +It is incomplete as it only lets you send but not receive +notifications.") + (license license:gpl3+))) + -- 2.11.0