gnu: Add emacs-webfeeder.

* gnu/packages/emacs-xyz.scm (emacs-webfeeder): New variable.
This commit is contained in:
Pierre Neidhardt 2019-03-27 11:32:39 +01:00
parent 58d8225ddb
commit 37099f5844
No known key found for this signature in database
GPG Key ID: 9BDCF497A4BBCC7F
1 changed files with 23 additions and 0 deletions

View File

@ -14055,3 +14055,26 @@ C-f} to advance by #xa4 characters.
"This package provides an Emacs Helm interface for search suggestions "This package provides an Emacs Helm interface for search suggestions
and article extracts for Wikipedia.") and article extracts for Wikipedia.")
(license license:gpl3+)))) (license license:gpl3+))))
(define-public emacs-webfeeder
(package
(name "emacs-webfeeder")
(version "1.0.0")
(source
(origin
(method url-fetch)
(uri (string-append
"https://elpa.gnu.org/packages/webfeeder-"
version
".tar"))
(sha256
(base32
"06y5vxw9m6pmbrzb8v2i3w9dnhgqxz06vyx1knmgi9cczlrj4a64"))))
(build-system emacs-build-system)
(home-page "https://gitlab.com/Ambrevar/emacs-webfeeder")
(synopsis "Build RSS and Atom webfeeds from HTML files")
(description
"Webfeeder is an Emacs library to generate RSS and Atom feeds from HTML
files. The various elements of the HTML input are parsed with customizable
functions (e.g. @code{webfeeder-title-function}).")
(license license:gpl3+)))