mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add perl-html-parser.
* gnu/packages/web.scm (perl-html-parser): New variable.
This commit is contained in:
parent
c9ea41ffd2
commit
8ec0d3fbcf
1 changed files with 23 additions and 0 deletions
|
@ -86,3 +86,26 @@ (define-public perl-html-tagset
|
|||
kinds of HTML parsing operations.")
|
||||
(home-page "http://search.cpan.org/dist/HTML-Tagset/")))
|
||||
|
||||
(define-public perl-html-parser
|
||||
(package
|
||||
(name "perl-html-parser")
|
||||
(version "3.71")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"mirror://cpan/authors/id/G/GA/GAAS/HTML-Parser-"
|
||||
version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"00nqzdgl7c3jilx7mil19k5jwcw3as14pvkjgxi97zyk94vqp4dy"))))
|
||||
(build-system perl-build-system)
|
||||
(inputs
|
||||
`(("perl-html-tagset" ,perl-html-tagset)))
|
||||
(license (package-license perl))
|
||||
(synopsis "Perl HTML parser class")
|
||||
(description
|
||||
"Objects of the HTML::Parser class will recognize markup and separate
|
||||
it from plain text (alias data content) in HTML documents. As different
|
||||
kinds of markup and text are recognized, the corresponding event handlers
|
||||
are invoked.")
|
||||
(home-page "http://search.cpan.org/~gaas/HTML-Parser/")))
|
||||
|
|
Loading…
Reference in a new issue