3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add emacs-elfeed.

* gnu/pacakges/emacs.scm (emacs-elfeed): New variable.
This commit is contained in:
David Thompson 2016-05-31 15:42:02 -04:00
parent a2670dde10
commit 4aea1e0160
No known key found for this signature in database
GPG key ID: 8328C7470FF1D807

View file

@ -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+)))