me
/
guix
Archived
1
0
Fork 0

gnu: Add perl-html-tokeparser-simple.

* gnu/packages/web.scm (perl-html-tokeparser-simple): New variable.

Change-Id: If779dbe29de05697d87143b38d986d5ff7fa2c8f
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Steve George 2024-04-26 13:42:03 +02:00 committed by Ludovic Courtès
parent 7d6da9412e
commit e175175a11
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 23 additions and 0 deletions

View File

@ -3578,6 +3578,29 @@ and scraping XML/HTML documents using XPath expressions.")
in tables within an HTML document, either as text or encoded element trees.")
(license license:perl-license)))
(define-public perl-html-tokeparser-simple
(package
(name "perl-html-tokeparser-simple")
(version "3.16")
(source
(origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/O/OV/OVID/HTML-TokeParser-Simple-"
version ".tar.gz"))
(sha256
(base32 "17aa1v62sp8ycxcicwhankmj4brs6nnfclk9z7mf1rird1f164gd"))))
(build-system perl-build-system)
(native-inputs (list perl-module-build))
(propagated-inputs (list perl-html-parser
perl-html-tagset
perl-sub-override))
(home-page "https://metacpan.org/release/HTML-TokeParser-Simple")
(synopsis "Easy to use parsing interface")
(description "Provides @code{HTML::TokeParser::Simple}, a simpler interface
to @code{HTML::TokeParser} for parsing HTML.")
(license license:perl-license)))
(define-public perl-html-tree
(package
(name "perl-html-tree")