diff options
author | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-06 20:10:58 +0100 |
---|---|---|
committer | Danny Milosavljevic <dannym@friendly-machines.com> | 2024-12-06 22:12:14 +0100 |
commit | 42bf19830d2e707243faf4bf59ff279b5c940676 (patch) | |
tree | 471960c0cf7e333ab309f1256804b4b71d382328 /gnu/packages/perl-web.scm | |
parent | 041cb5351e83cc921ef46bfbf9080115bcf69aa7 (diff) | |
download | guix-42bf19830d2e707243faf4bf59ff279b5c940676.tar.gz guix-42bf19830d2e707243faf4bf59ff279b5c940676.zip |
gnu: Add perl-mojo-dom58.
* gnu/packages/perl-web (perl-mojo-dom58): New variable.
Diffstat (limited to 'gnu/packages/perl-web.scm')
-rw-r--r-- | gnu/packages/perl-web.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm index c3a3e17188..b393c8f44c 100644 --- a/gnu/packages/perl-web.scm +++ b/gnu/packages/perl-web.scm @@ -125,3 +125,22 @@ which predates the formalization of the terms by the RFC by several years.") "@code{URI::Nested} provides support for nested URIs, where the scheme is a prefix, and the remainder of the URI is another URI.") (license license:perl-license))) + +(define-public perl-mojo-dom58 + (package + (name "perl-mojo-dom58") + (version "3.001") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cpan/authors/id/D/DB/DBOOK/Mojo-DOM58-" + version ".tar.gz")) + (sha256 + (base32 "15jp9wiczrnvdx8cld0jn43bmj20v5ll6cfzvmd4252k3ra6vchq")))) + (build-system perl-build-system) + (propagated-inputs (list perl-role-tiny)) + (home-page "https://metacpan.org/release/Mojo-DOM58") + (synopsis "Minimalistic HTML/XML DOM parser with CSS selectors") + (description "This package provides a HTML and XML DOM parser. It also +supports CSS selectors.") + (license license:artistic2.0))) |