From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 05/10] gnu: Add emacs-elfeed. Date: Wed, 1 Jun 2016 10:05:33 -0400 Message-ID: <20160601140538.20311-5-dthompson2@worcester.edu> References: <20160601140538.20311-1-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38197) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n7-0007Qc-Bp for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b86n2-0004g6-FK for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:37 -0400 Received: from mail-qk0-x242.google.com ([2607:f8b0:400d:c09::242]:33254) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n2-0004fr-BO for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:32 -0400 Received: by mail-qk0-x242.google.com with SMTP id q184so2265373qkf.0 for ; Wed, 01 Jun 2016 07:06:32 -0700 (PDT) In-Reply-To: <20160601140538.20311-1-dthompson2@worcester.edu> 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 Cc: David Thompson From: David Thompson * gnu/pacakges/emacs.scm (emacs-elfeed): New variable. --- gnu/packages/emacs.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1b54439..04dc759 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1887,3 +1887,23 @@ Currently git, mercurial and bazaar repos are considered projects by default. If you want to mark a folder manually as a project just create an empty .projectile file in it.") (license license:gpl3+))) + +(define-public emacs-elfeed + (package + (name "emacs-elfeed") + (version "1.4.1") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/skeeto/elfeed/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0i75r8x9ypbfjlnym04h16ikcrlks86p7wsgawrx7mh1lk4inp89")))) + (build-system emacs-build-system) + (home-page "https://github.com/skeeto/elfeed") + (synopsis "Atom/RSS feed reader for Emacs") + (description + "Elfeed is an extensible web feed reader for Emacs, supporting both Atom +and RSS, with a user interface inspired by notmuch.") + (license license:gpl3+))) -- 2.8.3