me
/
guix
Archived
1
0
Fork 0

gnu: Add Pod::Parser.

* gnu/packages/perl.scm (perl-pod-parser): New public variable.
master
Marius Bakke 2020-12-17 17:58:55 +01:00
parent c78964efa8
commit 5c4ae7069b
No known key found for this signature in database
GPG Key ID: A2A06DF2A33A54FA
1 changed files with 26 additions and 1 deletions

View File

@ -13,7 +13,7 @@
;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
;;; Copyright © 2016, 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017, 2018, 2020 Marius Bakke <marius@gnu.org>
;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
@ -8364,6 +8364,31 @@ available.")
for a given module is comprehensive.")
(license (package-license perl))))
(define-public perl-pod-parser
(package
(name "perl-pod-parser")
(version "1.63")
(source (origin
(method url-fetch)
(uri (string-append
"mirror://cpan/authors/id/M/MA/MAREKR/Pod-Parser-"
version ".tar.gz"))
(sha256
(base32
"1k8clxxdjag56zm6cv38c3q81gj7xphfhh98l21jynwp55hvbq6v"))))
(build-system perl-build-system)
(home-page "https://metacpan.org/release/Pod-Parser")
(synopsis "Modules for parsing/translating POD format documents")
(description
"@code{Pod::Parser} is a base class for creating POD filters and
translators. It handles most of the effort involved with parsing the POD
sections from an input stream, leaving subclasses free to be concerned only
with performing the actual translation of text.
@emph{NOTE}: This module is considered legacy. New projects should prefer
@code{Pod::Simple} instead.")
(license license:perl-license)))
(define-public perl-pod-simple
(package
(name "perl-pod-simple")