mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add Pod-Simple.
* gnu/packages/perl.scm (perl-pod-simple): New variable. Signed-off-by: Eric Bavier <bavier@member.fsf.org>
This commit is contained in:
parent
3573b634ba
commit
f187b2a29f
1 changed files with 20 additions and 0 deletions
|
@ -3,6 +3,7 @@
|
|||
;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
|
||||
;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
|
||||
;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -3941,6 +3942,25 @@ (define-public perl-pod-coverage
|
|||
for a given module is comprehensive.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-pod-simple
|
||||
(package
|
||||
(name "perl-pod-simple")
|
||||
(version "3.31")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
|
||||
"Pod-Simple-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
|
||||
(build-system perl-build-system)
|
||||
(home-page "http://search.cpan.org/dist/Pod-Simple/")
|
||||
(synopsis "Parsing library for text in Pod format")
|
||||
(description "Pod::Simple is a Perl library for parsing text in
|
||||
the Pod (plain old documentation) markup language that is typically
|
||||
used for writing documentation for Perl and for Perl modules.")
|
||||
(license (package-license perl))))
|
||||
|
||||
(define-public perl-posix-strftime-compiler
|
||||
(package
|
||||
(name "perl-posix-strftime-compiler")
|
||||
|
|
Loading…
Reference in a new issue