mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add perl-feed-find.
* gnu/packages/web.scm (perl-feed-find): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
8a0773a2b4
commit
46173a0d10
1 changed files with 27 additions and 0 deletions
|
@ -1789,6 +1789,33 @@ (define-public perl-encode-locale
|
|||
with Encode::decode(locale => $string).")
|
||||
(home-page "http://search.cpan.org/~gaas/Encode-Locale/")))
|
||||
|
||||
(define-public perl-feed-find
|
||||
(package
|
||||
(name "perl-feed-find")
|
||||
(version "0.07")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/B/BT/BTROTT/"
|
||||
"Feed-Find-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0sa33cm8ww55cymnl8j7b5yspi2y5xkkkgqqa4h6fs3wdqylz600"))))
|
||||
(build-system perl-build-system)
|
||||
(arguments
|
||||
;; Tests expect to query files at http://stupidfool.org/perl/feeds/
|
||||
`(#:tests? #f))
|
||||
(inputs
|
||||
`(("perl-class-errorhandler" ,perl-class-errorhandler)
|
||||
("perl-html-parser" ,perl-html-parser)
|
||||
("perl-libwww" ,perl-libwww)
|
||||
("perl-uri" ,perl-uri)))
|
||||
(home-page "http://search.cpan.org/dist/Feed-Find")
|
||||
(synopsis "Syndication feed auto-discovery")
|
||||
(description "@code{Feed::Find} implements feed auto-discovery for finding
|
||||
syndication feeds, given a URI. It will discover the following feed formats:
|
||||
RSS 0.91, RSS 1.0, RSS 2.0, Atom.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-file-listing
|
||||
(package
|
||||
(name "perl-file-listing")
|
||||
|
|
Loading…
Reference in a new issue