gnu: r-gviz: Update to 1.24.0.
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 Nils Gillmann <ng0@n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016, 2018 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
16 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
20 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
21 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;; Copyright © 2018 Pierre Neidhardt <ambrevar@gmail.com>
23 ;;;
24 ;;; This file is part of GNU Guix.
25 ;;;
26 ;;; GNU Guix is free software; you can redistribute it and/or modify it
27 ;;; under the terms of the GNU General Public License as published by
28 ;;; the Free Software Foundation; either version 3 of the License, or (at
29 ;;; your option) any later version.
30 ;;;
31 ;;; GNU Guix is distributed in the hope that it will be useful, but
32 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
33 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34 ;;; GNU General Public License for more details.
35 ;;;
36 ;;; You should have received a copy of the GNU General Public License
37 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
38
39 (define-module (gnu packages perl)
40 #:use-module (srfi srfi-1)
41 #:use-module (guix licenses)
42 #:use-module (gnu packages)
43 #:use-module (guix packages)
44 #:use-module (guix download)
45 #:use-module (guix build-system gnu)
46 #:use-module (guix build-system perl)
47 #:use-module (guix utils) ;substitute-keyword-arguments for perl-5.26.2
48 #:use-module (gnu packages base)
49 #:use-module (gnu packages compression)
50 #:use-module (gnu packages freedesktop)
51 #:use-module (gnu packages perl-check)
52 #:use-module (gnu packages perl-web)
53 #:use-module (gnu packages pkg-config))
54
55 ;;;
56 ;;; Please: Try to add new module packages in alphabetic order.
57 ;;;
58
59 \f
60 (define-public perl
61 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
62 (package
63 (name "perl")
64 (version "5.26.1")
65 (replacement perl/fixed)
66 (source (origin
67 (method url-fetch)
68 (uri (string-append "mirror://cpan/src/5.0/perl-"
69 version ".tar.gz"))
70 (sha256
71 (base32
72 "1p81wwvr5jb81m41d07kfywk5gvbk0axdrnvhc2aghcdbr4alqz7"))
73 (patches (search-patches
74 "perl-file-path-CVE-2017-6512.patch"
75 "perl-no-sys-dirs.patch"
76 "perl-autosplit-default-time.patch"
77 "perl-deterministic-ordering.patch"
78 "perl-reproducible-build-date.patch"))))
79 (build-system gnu-build-system)
80 (arguments
81 '(#:tests? #f
82 #:configure-flags
83 (let ((out (assoc-ref %outputs "out"))
84 (libc (assoc-ref %build-inputs "libc")))
85 (list
86 (string-append "-Dprefix=" out)
87 (string-append "-Dman1dir=" out "/share/man/man1")
88 (string-append "-Dman3dir=" out "/share/man/man3")
89 "-de" "-Dcc=gcc"
90 "-Uinstallusrbinperl"
91 "-Dinstallstyle=lib/perl5"
92 "-Duseshrplib"
93 (string-append "-Dlocincpth=" libc "/include")
94 (string-append "-Dloclibpth=" libc "/lib")
95 "-Dusethreads"))
96 #:phases
97 (modify-phases %standard-phases
98 (add-before 'configure 'setup-configure
99 (lambda _
100 ;; Use the right path for `pwd'.
101 (substitute* "dist/PathTools/Cwd.pm"
102 (("/bin/pwd")
103 (which "pwd")))
104
105 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
106 ;; <bits/string3.h>.
107 (substitute* "cflags.SH"
108 (("-std=c89")
109 "-std=gnu89"))
110 #t))
111 (replace 'configure
112 (lambda* (#:key configure-flags #:allow-other-keys)
113 (format #t "Perl configure flags: ~s~%" configure-flags)
114 (zero? (apply system* "./Configure" configure-flags))))
115 (add-before
116 'strip 'make-shared-objects-writable
117 (lambda* (#:key outputs #:allow-other-keys)
118 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
119 ;; writable so that 'strip' actually strips them.
120 (let* ((out (assoc-ref outputs "out"))
121 (lib (string-append out "/lib")))
122 (for-each (lambda (dso)
123 (chmod dso #o755))
124 (find-files lib "\\.so$")))))
125
126 (add-after 'install 'remove-extra-references
127 (lambda* (#:key inputs outputs #:allow-other-keys)
128 (let* ((out (assoc-ref outputs "out"))
129 (libc (assoc-ref inputs "libc"))
130 (config1 (car (find-files (string-append out "/lib/perl5")
131 "^Config_heavy\\.pl$")))
132 (config2 (find-files (string-append out "/lib/perl5")
133 "^Config\\.pm$")))
134 ;; Force the library search path to contain only libc because
135 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
136 ;; want to keep a reference to everything that's in
137 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
138 ;; etc.)
139 (substitute* config1
140 (("^incpth=.*$")
141 (string-append "incpth='" libc "/include'\n"))
142 (("^(libpth|plibpth|libspath)=.*$" _ variable)
143 (string-append variable "='" libc "/lib'\n")))
144
145 (for-each (lambda (file)
146 (substitute* config2
147 (("libpth => .*$")
148 (string-append "libpth => '" libc
149 "/lib',\n"))))
150 config2)
151 #t))))))
152 (native-search-paths (list (search-path-specification
153 (variable "PERL5LIB")
154 (files '("lib/perl5/site_perl")))))
155 (synopsis "Implementation of the Perl programming language")
156 (description
157 "Perl 5 is a highly capable, feature-rich programming language with over
158 24 years of development.")
159 (home-page "http://www.perl.org/")
160 (license gpl1+))) ; or "Artistic"
161
162 ;; Fixes CVE-2018-6797, CVE-2018-6798, and CVE-2018-6913.
163 ;; See <https://metacpan.org/changes/release/SHAY/perl-5.26.2>.
164 (define perl-5.26.2
165 (package
166 (inherit perl)
167 (version "5.26.2")
168 (source (origin
169 (inherit (package-source perl))
170 (uri (string-append "mirror://cpan/src/5.0/perl-"
171 version ".tar.gz"))
172 (sha256
173 (base32
174 "03gpnxx1g6hvlh0v4aqx00580h787sfywp1vlvw64q2xcbm9qbsp"))))))
175
176 ;; When grafting perl, complications arise when the replacement perl has a
177 ;; different version number than the original. So, here we create a version
178 ;; of perl-5.26.2 that thinks it is version 5.26.1. See
179 ;; <https://bugs.gnu.org/31210> and <https://bugs.gnu.org/31216>.
180 (define perl/fixed
181 (package
182 (inherit perl-5.26.2)
183 (version "5.26.1")
184 (arguments
185 (substitute-keyword-arguments (package-arguments perl-5.26.2)
186 ((#:phases phases)
187 `(modify-phases ,phases
188 (add-after 'unpack 'revert-perl-subversion
189 (lambda _
190 (substitute* "patchlevel.h"
191 (("^#define PERL_SUBVERSION 2")
192 "#define PERL_SUBVERSION 1"))
193 #t))))))))
194
195 (define-public perl-algorithm-c3
196 (package
197 (name "perl-algorithm-c3")
198 (version "0.10")
199 (source
200 (origin
201 (method url-fetch)
202 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
203 "Algorithm-C3-" version ".tar.gz"))
204 (sha256
205 (base32
206 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
207 (build-system perl-build-system)
208 (home-page "http://search.cpan.org/dist/Algorithm-C3/")
209 (synopsis "Module for merging hierarchies using the C3 algorithm")
210 (description "This module implements the C3 algorithm, which aims to
211 provide a sane method resolution order under multiple inheritance.")
212 (license (package-license perl))))
213
214 (define-public perl-algorithm-diff
215 (package
216 (name "perl-algorithm-diff")
217 (version "1.1903")
218 (source
219 (origin
220 (method url-fetch)
221 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
222 "Algorithm-Diff-" version ".tar.gz"))
223 (sha256
224 (base32
225 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
226 (build-system perl-build-system)
227 (home-page "http://search.cpan.org/dist/Algorithm-Diff/")
228 (synopsis "Compute differences between two files or lists")
229 (description "This is a module for computing the difference between two
230 files, two strings, or any other two lists of things. It uses an intelligent
231 algorithm similar to (or identical to) the one used by the Unix \"diff\"
232 program. It is guaranteed to find the *smallest possible* set of
233 differences.")
234 (license (package-license perl))))
235
236 (define-public perl-aliased
237 (package
238 (name "perl-aliased")
239 (version "0.34")
240 (source
241 (origin
242 (method url-fetch)
243 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
244 "aliased-" version ".tar.gz"))
245 (sha256
246 (base32
247 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
248 (build-system perl-build-system)
249 (native-inputs `(("perl-module-build" ,perl-module-build)))
250 (home-page "http://search.cpan.org/dist/aliased/")
251 (synopsis "Use shorter versions of class names")
252 (description "The alias module loads the class you specify and exports
253 into your namespace a subroutine that returns the class name. You can
254 explicitly alias the class to another name or, if you prefer, you can do so
255 implicitly.")
256 (license (package-license perl))))
257
258 (define-public perl-any-moose
259 (package
260 (name "perl-any-moose")
261 (version "0.27")
262 (source (origin
263 (method url-fetch)
264 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
265 "Any-Moose-" version ".tar.gz"))
266 (sha256
267 (base32
268 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
269 (build-system perl-build-system)
270 (native-inputs
271 `(("perl-mouse" ,perl-mouse)
272 ("perl-moose" ,perl-moose)))
273 (home-page "http://search.cpan.org/dist/Any-Moose/")
274 (synopsis "Transparently use Moose or Mouse modules")
275 (description
276 "This module facilitates using @code{Moose} or @code{Mouse} modules
277 without changing the code. By default, Mouse will be provided to libraries,
278 unless Moose is already loaded, or explicitly requested by the end-user. End
279 users can force the decision of which backend to use by setting the environment
280 variable ANY_MOOSE to be Moose or Mouse.")
281 (license (package-license perl))))
282
283 (define-public perl-appconfig
284 (package
285 (name "perl-appconfig")
286 (version "1.71")
287 (source
288 (origin
289 (method url-fetch)
290 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
291 "AppConfig-" version ".tar.gz"))
292 (sha256
293 (base32
294 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
295 (build-system perl-build-system)
296 (native-inputs
297 `(("perl-test-pod" ,perl-test-pod)))
298 (home-page "http://search.cpan.org/dist/AppConfig/")
299 (synopsis "Configuration files and command line parsing")
300 (description "AppConfig is a bundle of Perl5 modules for reading
301 configuration files and parsing command line arguments.")
302 (license (package-license perl))))
303
304 (define-public perl-array-utils
305 (package
306 (name "perl-array-utils")
307 (version "0.5")
308 (source
309 (origin
310 (method url-fetch)
311 (uri (string-append
312 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
313 version
314 ".tar.gz"))
315 (sha256
316 (base32
317 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
318 (build-system perl-build-system)
319 (home-page "http://search.cpan.org/dist/Array-Utils/")
320 (synopsis "Small utils for array manipulation")
321 (description "@code{Array::Utils} is a small pure-perl module containing
322 list manipulation routines.")
323 (license (package-license perl))))
324
325 (define-public perl-async-interrupt
326 (package
327 (name "perl-async-interrupt")
328 (version "1.21")
329 (source (origin
330 (method url-fetch)
331 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
332 "Async-Interrupt-" version ".tar.gz"))
333 (sha256
334 (base32
335 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
336 (build-system perl-build-system)
337 (propagated-inputs
338 `(("perl-common-sense" ,perl-common-sense)))
339 (home-page "http://search.cpan.org/dist/Async-Interrupt/")
340 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
341 (description
342 "@code{Async::Interrupt} implements a single feature only of interest
343 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
344 signals\", which are very similar).
345
346 Sometimes, modules wish to run code asynchronously (in another thread,
347 or from a signal handler), and then signal the perl interpreter on
348 certain events. One common way is to write some data to a pipe and use
349 an event handling toolkit to watch for I/O events. Another way is to
350 send a signal. Those methods are slow, and in the case of a pipe, also
351 not asynchronous - it won't interrupt a running perl interpreter.
352
353 This module implements asynchronous notifications that enable you to
354 signal running perl code from another thread, asynchronously, and
355 sometimes even without using a single syscall.")
356 (license (package-license perl))))
357
358 (define-public perl-autovivification
359 (package
360 (name "perl-autovivification")
361 (version "0.16")
362 (source
363 (origin
364 (method url-fetch)
365 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
366 "autovivification-" version ".tar.gz"))
367 (sha256
368 (base32
369 "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"))))
370 (build-system perl-build-system)
371 (home-page "http://search.cpan.org/dist/autovivification/")
372 (synopsis "Lexically disable autovivification")
373 (description "When an undefined variable is dereferenced, it gets silently
374 upgraded to an array or hash reference (depending of the type of the
375 dereferencing). This behaviour is called autovivification and usually does
376 what you mean but it may be unnatural or surprising because your variables get
377 populated behind your back. This is especially true when several levels of
378 dereferencing are involved, in which case all levels are vivified up to the
379 last, or when it happens in intuitively read-only constructs like
380 @code{exists}. The pragma provided by this package lets you disable
381 autovivification for some constructs and optionally throws a warning or an
382 error when it would have happened.")
383 (license (package-license perl))))
384
385 (define-public perl-bareword-filehandles
386 (package
387 (name "perl-bareword-filehandles")
388 (version "0.006")
389 (source
390 (origin
391 (method url-fetch)
392 (uri (string-append
393 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
394 version ".tar.gz"))
395 (sha256
396 (base32
397 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
398 (build-system perl-build-system)
399 (native-inputs
400 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
401 ("perl-extutils-depends" ,perl-extutils-depends)))
402 (propagated-inputs
403 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
404 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
405 (home-page "http://search.cpan.org/dist/bareword-filehandles/")
406 (synopsis "Disables bareword filehandles")
407 (description "This module disables bareword filehandles.")
408 (license (package-license perl))))
409
410 (define-public perl-base
411 (package
412 (name "perl-base")
413 (version "2.18")
414 (source
415 (origin
416 (method url-fetch)
417 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
418 "base-" version ".tar.gz"))
419 (sha256
420 (base32
421 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
422 (build-system perl-build-system)
423 (home-page "http://search.cpan.org/dist/base/")
424 (synopsis "Establish an ISA relationship with base classes at compile time")
425 (description "Allows you to both load one or more modules, while setting
426 up inheritance from those modules at the same time. Unless you are using the
427 fields pragma, consider this module discouraged in favor of the lighter-weight
428 parent.")
429 (license (package-license perl)))) ;See README
430
431 (define-public perl-browser-open
432 (package
433 (name "perl-browser-open")
434 (version "0.04")
435 (source
436 (origin
437 (method url-fetch)
438 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
439 version ".tar.gz"))
440 (sha256
441 (base32
442 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
443 (build-system perl-build-system)
444 (home-page "http://search.cpan.org/dist/Browser-Open/")
445 (synopsis "Open a browser in a given URL")
446 (description "The functions exported by this module allow you to open URLs
447 in the user's browser. A set of known commands per OS-name is tested for
448 presence, and the first one found is executed. With an optional parameter,
449 all known commands are checked.")
450 (license (package-license perl))))
451
452 (define-public perl-b-hooks-endofscope
453 (package
454 (name "perl-b-hooks-endofscope")
455 (version "0.24")
456 (source
457 (origin
458 (method url-fetch)
459 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
460 "B-Hooks-EndOfScope-" version ".tar.gz"))
461 (sha256
462 (base32
463 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
464 (build-system perl-build-system)
465 (propagated-inputs
466 `(("perl-module-runtime" ,perl-module-runtime)
467 ("perl-module-implementation" ,perl-module-implementation)
468 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
469 ("perl-variable-magic" ,perl-variable-magic)))
470 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope/")
471 (synopsis "Execute code after a scope finished compilation")
472 (description "This module allows you to execute code when perl finished
473 compiling the surrounding scope.")
474 (license (package-license perl))))
475
476 (define-public perl-b-hooks-op-check
477 (package
478 (name "perl-b-hooks-op-check")
479 (version "0.22")
480 (source
481 (origin
482 (method url-fetch)
483 (uri (string-append
484 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
485 version ".tar.gz"))
486 (sha256
487 (base32
488 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
489 (build-system perl-build-system)
490 (native-inputs
491 `(("perl-extutils-depends" ,perl-extutils-depends)))
492 (home-page "http://search.cpan.org/dist/B-Hooks-OP-Check/")
493 (synopsis "Wrap OP check callbacks")
494 (description "This module allows you to wrap OP check callbacks.")
495 (license (package-license perl))))
496
497 (define-public perl-b-keywords
498 (package
499 (name "perl-b-keywords")
500 (version "1.15")
501 (source
502 (origin
503 (method url-fetch)
504 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
505 version ".tar.gz"))
506 (sha256
507 (base32
508 "1nhdplmd0y69lnwyajg3anhk6pm13nm6qzm05nzpz8zl7j7fzlk5"))))
509 (build-system perl-build-system)
510 (home-page "http://search.cpan.org/dist/B-Keywords/")
511 (synopsis "Lists of reserved barewords and symbol names")
512 (description "@code{B::Keywords} supplies several arrays of exportable
513 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
514 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
515 @@ExporterSymbols}.")
516 ;; GPLv2 only
517 (license gpl2)))
518
519 (define-public perl-benchmark-timer
520 (package
521 (name "perl-benchmark-timer")
522 (version "0.7102")
523 (source (origin
524 (method url-fetch)
525 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
526 "Benchmark-Timer-" version ".tar.gz"))
527 (sha256
528 (base32
529 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
530 (build-system perl-build-system)
531 (native-inputs
532 `(("perl-module-install" ,perl-module-install)))
533 ;; The optional input module Statistics::PointEstimation (from
534 ;; Statistics-TTest) lists no license.
535 (synopsis "Benchmarking with statistical confidence")
536 (description
537 "The Benchmark::Timer class allows you to time portions of code
538 conveniently, as well as benchmark code by allowing timings of repeated
539 trials. It is perfect for when you need more precise information about the
540 running time of portions of your code than the Benchmark module will give you,
541 but don't want to go all out and profile your code.")
542 (home-page (string-append "http://search.cpan.org/~dcoppit/"
543 "Benchmark-Timer-" version "/"))
544 (license gpl2)))
545
546 (define-public perl-bit-vector
547 (package
548 (name "perl-bit-vector")
549 (version "7.4")
550 (source
551 (origin
552 (method url-fetch)
553 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
554 "Bit-Vector-" version ".tar.gz"))
555 (sha256
556 (base32
557 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
558 (build-system perl-build-system)
559 (propagated-inputs
560 `(("perl-carp-clan" ,perl-carp-clan)))
561 (home-page "http://search.cpan.org/dist/Bit-Vector/")
562 (synopsis "Bit vector library")
563 (description "Bit::Vector is an efficient C library which allows you to
564 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
565 matrices, all of arbitrary sizes. The package also includes an
566 object-oriented Perl module for accessing the C library from Perl, and
567 optionally features overloaded operators for maximum ease of use. The C
568 library can nevertheless be used stand-alone, without Perl.")
569 (license (list (package-license perl) lgpl2.0+))))
570
571 (define-public perl-boolean
572 (package
573 (name "perl-boolean")
574 (version "0.45")
575 (source
576 (origin
577 (method url-fetch)
578 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
579 "boolean-" version ".tar.gz"))
580 (sha256
581 (base32
582 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
583 (build-system perl-build-system)
584 (home-page "http://search.cpan.org/dist/boolean/")
585 (synopsis "Boolean support for Perl")
586 (description "This module provides basic Boolean support, by defining two
587 special objects: true and false.")
588 (license (package-license perl))))
589
590 (define-public perl-business-isbn-data
591 (package
592 (name "perl-business-isbn-data")
593 (version "20140910.003")
594 (source
595 (origin
596 (method url-fetch)
597 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
598 "Business-ISBN-Data-" version ".tar.gz"))
599 (sha256
600 (base32
601 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
602 (build-system perl-build-system)
603 (home-page "http://search.cpan.org/dist/Business-ISBN-Data/")
604 (synopsis "Data files for Business::ISBN")
605 (description "This package provides a data pack for @code{Business::ISBN}.
606 These data are generated from the RangeMessage.xml file provided by the ISBN
607 Agency.")
608 (license (package-license perl))))
609
610 (define-public perl-business-isbn
611 (package
612 (name "perl-business-isbn")
613 (version "3.004")
614 (source
615 (origin
616 (method url-fetch)
617 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
618 "Business-ISBN-" version ".tar.gz"))
619 (sha256
620 (base32
621 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
622 (build-system perl-build-system)
623 (propagated-inputs
624 `(("perl-business-isbn-data" ,perl-business-isbn-data)
625 ("perl-mojolicious" ,perl-mojolicious)))
626 (home-page "http://search.cpan.org/dist/Business-ISBN/")
627 (synopsis "Work with International Standard Book Numbers")
628 (description "This modules provides tools to deal with International
629 Standard Book Numbers, including ISBN-10 and ISBN-13.")
630 (license artistic2.0)))
631
632 (define-public perl-business-issn
633 (package
634 (name "perl-business-issn")
635 (version "0.91")
636 (source
637 (origin
638 (method url-fetch)
639 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
640 "Business-ISSN-" version ".tar.gz"))
641 (sha256
642 (base32
643 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
644 (build-system perl-build-system)
645 (home-page "http://search.cpan.org/dist/Business-ISSN/")
646 (synopsis "Work with International Standard Serial Numbers")
647 (description "This modules provides tools to deal with International
648 Standard Serial Numbers.")
649 (license (package-license perl))))
650
651 (define-public perl-business-ismn
652 (package
653 (name "perl-business-ismn")
654 (version "1.131")
655 (source
656 (origin
657 (method url-fetch)
658 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
659 "Business-ISMN-" version ".tar.gz"))
660 (sha256
661 (base32
662 "1xyc7x4c4xl930rz7grs1l52f1vg4rbiv0c6xlxdsim8qsh7k94g"))))
663 (build-system perl-build-system)
664 (native-inputs
665 `(("perl-tie-cycle" ,perl-tie-cycle)))
666 (home-page "http://search.cpan.org/dist/Business-ISMN/")
667 (synopsis "Work with International Standard Music Numbers")
668 (description "This modules provides tools to deal with International
669 Standard Music Numbers.")
670 (license (package-license perl))))
671
672 (define-public perl-cache-cache
673 (package
674 (name "perl-cache-cache")
675 (version "1.08")
676 (source (origin
677 (method url-fetch)
678 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
679 "Cache-Cache-" version ".tar.gz"))
680 (sha256
681 (base32
682 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
683 (build-system perl-build-system)
684 (propagated-inputs
685 `(("perl-digest-sha1" ,perl-digest-sha1)
686 ("perl-error" ,perl-error)
687 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
688 (home-page "http://search.cpan.org/dist/Cache-Cache/")
689 (synopsis "Cache interface for Perl")
690 (description "The Cache modules are designed to assist a developer in
691 persisting data for a specified period of time. Often these modules are used
692 in web applications to store data locally to save repeated and redundant
693 expensive calls to remote machines or databases. People have also been known
694 to use Cache::Cache for its straightforward interface in sharing data between
695 runs of an application or invocations of a CGI-style script or simply as an
696 easy to use abstraction of the file system or shared memory.")
697 (license (package-license perl))))
698
699 (define-public perl-cache-fastmmap
700 (package
701 (name "perl-cache-fastmmap")
702 (version "1.40")
703 (source
704 (origin
705 (method url-fetch)
706 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
707 "Cache-FastMmap-" version ".tar.gz"))
708 (sha256
709 (base32
710 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
711 (build-system perl-build-system)
712 (home-page "http://search.cpan.org/dist/Cache-FastMmap/")
713 (synopsis "Shared memory interprocess cache via mmap")
714 (description "A shared memory cache through an mmap'ed file. It's core is
715 written in C for performance. It uses fcntl locking to ensure multiple
716 processes can safely access the cache at the same time. It uses a basic LRU
717 algorithm to keep the most used entries in the cache.")
718 (license (package-license perl))))
719
720 (define-public perl-capture-tiny
721 (package
722 (name "perl-capture-tiny")
723 (version "0.48")
724 (source
725 (origin
726 (method url-fetch)
727 (uri (string-append
728 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
729 version ".tar.gz"))
730 (sha256
731 (base32
732 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
733 (build-system perl-build-system)
734 (home-page "http://search.cpan.org/dist/Capture-Tiny/")
735 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
736 (description
737 "Capture::Tiny provides a simple, portable way to capture almost anything
738 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
739 code or from an external program. Optionally, output can be teed so that it
740 is captured while being passed through to the original file handles.")
741 (license asl2.0)))
742
743 (define-public perl-canary-stability
744 (package
745 (name "perl-canary-stability")
746 (version "2012")
747 (source (origin
748 (method url-fetch)
749 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
750 "Canary-Stability-" version ".tar.gz"))
751 (sha256
752 (base32
753 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
754 (build-system perl-build-system)
755 (home-page "http://search.cpan.org/dist/Canary-Stability/")
756 (synopsis "Check compatibility with the installed perl version")
757 (description
758 "This module is used by Schmorp's modules during configuration stage
759 to test the installed perl for compatibility with his modules.")
760 (license (package-license perl))))
761
762 (define-public perl-carp
763 (package
764 (name "perl-carp")
765 (version "1.38")
766 (source (origin
767 (method url-fetch)
768 (uri (string-append
769 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
770 version ".tar.gz"))
771 (sha256
772 (base32
773 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
774 (build-system perl-build-system)
775 (home-page "http://search.cpan.org/dist/Carp/")
776 (synopsis "Alternative warn and die for modules")
777 (description "The @code{Carp} routines are useful in your own modules
778 because they act like @code{die()} or @code{warn()}, but with a message
779 which is more likely to be useful to a user of your module. In the case
780 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
781 summary of every call in the call-stack. For a shorter message you can use
782 @code{carp} or @code{croak} which report the error as being from where your
783 module was called. There is no guarantee that that is where the error was,
784 but it is a good educated guess.")
785 (license (package-license perl))))
786
787 (define-public perl-carp-always
788 (package
789 (name "perl-carp-always")
790 (version "0.13")
791 (source
792 (origin
793 (method url-fetch)
794 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
795 version ".tar.gz"))
796 (sha256
797 (base32
798 "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1"))))
799 (build-system perl-build-system)
800 (native-inputs
801 `(("perl-test-base" ,perl-test-base)))
802 (home-page "http://search.cpan.org/dist/Carp-Always")
803 (synopsis "Warns and dies noisily with stack backtraces/")
804 (description "This module is meant as a debugging aid. It can be used to
805 make a script complain loudly with stack backtraces when @code{warn()}-ing or
806 @code{die()}ing.")
807 (license (package-license perl))))
808
809 (define-public perl-carp-assert
810 (package
811 (name "perl-carp-assert")
812 (version "0.21")
813 (source
814 (origin
815 (method url-fetch)
816 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
817 "Carp-Assert-" version ".tar.gz"))
818 (sha256
819 (base32
820 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
821 (build-system perl-build-system)
822 (home-page "http://search.cpan.org/dist/Carp-Assert/")
823 (synopsis "Executable comments for Perl")
824 (description "Carp::Assert is intended for a purpose like the ANSI C
825 library assert.h.")
826 (license (package-license perl))))
827
828 (define-public perl-carp-assert-more
829 (package
830 (name "perl-carp-assert-more")
831 (version "1.14")
832 (source
833 (origin
834 (method url-fetch)
835 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
836 "Carp-Assert-More-" version ".tar.gz"))
837 (sha256
838 (base32
839 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
840 (build-system perl-build-system)
841 (native-inputs
842 `(("perl-test-exception" ,perl-test-exception)))
843 (propagated-inputs
844 `(("perl-carp-assert" ,perl-carp-assert)))
845 (home-page "http://search.cpan.org/dist/Carp-Assert-More/")
846 (synopsis "Convenience wrappers around Carp::Assert")
847 (description "Carp::Assert::More is a set of handy assertion functions for
848 Perl.")
849 (license artistic2.0)))
850
851 (define-public perl-carp-clan
852 (package
853 (name "perl-carp-clan")
854 (version "6.06")
855 (source
856 (origin
857 (method url-fetch)
858 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
859 "Carp-Clan-" version ".tar.gz"))
860 (sha256
861 (base32
862 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
863 (build-system perl-build-system)
864 (native-inputs
865 `(("perl-test-exception" ,perl-test-exception)))
866 (home-page "http://search.cpan.org/dist/Carp-Clan/")
867 (synopsis "Report errors from a \"clan\" of modules")
868 (description "This module allows errors from a clan (or family) of modules
869 to appear to originate from the caller of the clan. This is necessary in
870 cases where the clan modules are not classes derived from each other, and thus
871 the Carp.pm module doesn't help.")
872 (license (package-license perl))))
873
874 (define-public perl-cddb-get
875 (package
876 (name "perl-cddb-get")
877 (version "2.28")
878 (source (origin
879 (method url-fetch)
880 (uri (string-append
881 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
882 version ".tar.gz"))
883 (sha256
884 (base32
885 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
886 (build-system perl-build-system)
887 (home-page "http://search.cpan.org/dist/CDDB_get/")
888 (synopsis "Read the CDDB entry for an audio CD in your drive")
889 (description "This module can retrieve information from the CDDB.")
890 ;; Either GPLv2 or the "Artistic" license.
891 (license (list gpl2 artistic2.0))))
892
893 (define-public perl-class-accessor
894 (package
895 (name "perl-class-accessor")
896 (version "0.51")
897 (source
898 (origin
899 (method url-fetch)
900 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
901 "Class-Accessor-" version ".tar.gz"))
902 (sha256
903 (base32
904 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
905 (build-system perl-build-system)
906 (native-inputs
907 `(("perl-sub-name" ,perl-sub-name)))
908 (propagated-inputs
909 `(("perl-base" ,perl-base)))
910 (home-page "http://search.cpan.org/dist/Class-Accessor/")
911 (synopsis "Automated accessor generation")
912 (description "This module automagically generates accessors/mutators for
913 your class.")
914 (license (package-license perl))))
915
916 (define-public perl-class-accessor-chained
917 (package
918 (name "perl-class-accessor-chained")
919 (version "0.01")
920 (source
921 (origin
922 (method url-fetch)
923 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
924 "Class-Accessor-Chained-" version ".tar.gz"))
925 (sha256
926 (base32
927 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
928 (build-system perl-build-system)
929 (native-inputs
930 `(("perl-module-build" ,perl-module-build)))
931 (propagated-inputs
932 `(("perl-class-accessor" ,perl-class-accessor)))
933 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained/")
934 (synopsis "Faster, but less expandable, chained accessors")
935 (description "A chained accessor is one that always returns the object
936 when called with parameters (to set), and the value of the field when called
937 with no arguments. This module subclasses Class::Accessor in order to provide
938 the same mk_accessors interface.")
939 (license (package-license perl))))
940
941 (define-public perl-class-accessor-grouped
942 (package
943 (name "perl-class-accessor-grouped")
944 (version "0.10012")
945 (source
946 (origin
947 (method url-fetch)
948 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
949 "Class-Accessor-Grouped-" version ".tar.gz"))
950 (sha256
951 (base32
952 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
953 (build-system perl-build-system)
954 (native-inputs
955 `(("perl-module-install" ,perl-module-install)
956 ("perl-test-exception" ,perl-test-exception)))
957 (propagated-inputs
958 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
959 ("perl-module-runtime" ,perl-module-runtime)
960 ("perl-sub-name" ,perl-sub-name)))
961 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped/")
962 (synopsis "Build groups of accessors")
963 (description "This class lets you build groups of accessors that will call
964 different getters and setters.")
965 (license (package-license perl))))
966
967 (define-public perl-class-c3
968 (package
969 (name "perl-class-c3")
970 (version "0.27")
971 (source
972 (origin
973 (method url-fetch)
974 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
975 "Class-C3-" version ".tar.gz"))
976 (sha256
977 (base32
978 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
979 (build-system perl-build-system)
980 (propagated-inputs
981 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
982 (home-page "http://search.cpan.org/dist/Class-C3/")
983 (synopsis "Pragma to use the C3 method resolution order algorithm")
984 (description "This is pragma to change Perl 5's standard method resolution
985 order from depth-first left-to-right (a.k.a - pre-order) to the more
986 sophisticated C3 method resolution order.")
987 (license (package-license perl))))
988
989 (define-public perl-class-c3-adopt-next
990 (package
991 (name "perl-class-c3-adopt-next")
992 (version "0.13")
993 (source
994 (origin
995 (method url-fetch)
996 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
997 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
998 (sha256
999 (base32
1000 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
1001 (build-system perl-build-system)
1002 (native-inputs
1003 `(("perl-test-exception" ,perl-test-exception)))
1004 (propagated-inputs
1005 `(("perl-list-moreutils" ,perl-list-moreutils)
1006 ("perl-mro-compat" ,perl-mro-compat)))
1007 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT/")
1008 (synopsis "Drop-in replacement for NEXT")
1009 (description "This module is intended as a drop-in replacement for NEXT,
1010 supporting the same interface, but using Class::C3 to do the hard work.")
1011 (license (package-license perl))))
1012
1013 (define-public perl-class-c3-componentised
1014 (package
1015 (name "perl-class-c3-componentised")
1016 (version "1.001000")
1017 (source
1018 (origin
1019 (method url-fetch)
1020 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1021 "Class-C3-Componentised-" version ".tar.gz"))
1022 (sha256
1023 (base32
1024 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
1025 (build-system perl-build-system)
1026 (native-inputs
1027 `(("perl-module-install" ,perl-module-install)
1028 ("perl-test-exception" ,perl-test-exception)))
1029 (propagated-inputs
1030 `(("perl-class-c3" ,perl-class-c3)
1031 ("perl-class-inspector" ,perl-class-inspector)
1032 ("perl-mro-compat" ,perl-mro-compat)))
1033 (home-page "http://search.cpan.org/dist/Class-C3-Componentised/")
1034 (synopsis "Load mix-ins or components to your C3-based class")
1035 (description "This module will inject base classes to your module using
1036 the Class::C3 method resolution order.")
1037 (license (package-license perl))))
1038
1039 (define-public perl-class-data-inheritable
1040 (package
1041 (name "perl-class-data-inheritable")
1042 (version "0.08")
1043 (source
1044 (origin
1045 (method url-fetch)
1046 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1047 "Class-Data-Inheritable-" version ".tar.gz"))
1048 (sha256
1049 (base32
1050 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1051 (build-system perl-build-system)
1052 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable/")
1053 (synopsis "Inheritable, overridable class data")
1054 (description "Class::Data::Inheritable is for creating accessor/mutators
1055 to class data. That is, if you want to store something about your class as a
1056 whole (instead of about a single object). This data is then inherited by your
1057 subclasses and can be overridden.")
1058 (license (package-license perl))))
1059
1060 (define-public perl-class-date
1061 (package
1062 (name "perl-class-date")
1063 (version "1.1.15")
1064 (source
1065 (origin
1066 (method url-fetch)
1067 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1068 "Class-Date-" version ".tar.gz"))
1069 (sha256
1070 (base32
1071 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
1072 (build-system perl-build-system)
1073 (arguments `(#:tests? #f)) ;timezone tests in chroot
1074 (home-page "http://search.cpan.org/dist/Class-Date/")
1075 (synopsis "Class for easy date and time manipulation")
1076 (description "This module provides a general-purpose date and datetime
1077 type for perl.")
1078 (license (package-license perl))))
1079
1080 (define-public perl-class-errorhandler
1081 (package
1082 (name "perl-class-errorhandler")
1083 (version "0.04")
1084 (source (origin
1085 (method url-fetch)
1086 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1087 "Class-ErrorHandler-" version ".tar.gz"))
1088 (sha256
1089 (base32
1090 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1091 (build-system perl-build-system)
1092 (home-page "http://search.cpan.org/dist/Class-ErrorHandler/")
1093 (synopsis "Base class for error handling")
1094 (description
1095 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1096 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1097 its two error-handling methods, error and errstr, to communicate error messages back
1098 to the calling program.")
1099 (license (package-license perl))))
1100
1101 (define-public perl-class-factory-util
1102 (package
1103 (name "perl-class-factory-util")
1104 (version "1.7")
1105 (source
1106 (origin
1107 (method url-fetch)
1108 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1109 "Class-Factory-Util-" version ".tar.gz"))
1110 (sha256
1111 (base32
1112 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1113 (build-system perl-build-system)
1114 (native-inputs `(("perl-module-build" ,perl-module-build)))
1115 (home-page "http://search.cpan.org/dist/Class-Factory-Util/")
1116 (synopsis "Utility methods for factory classes")
1117 (description "This module exports methods useful for factory classes.")
1118 (license (package-license perl))))
1119
1120 (define-public perl-class-inspector
1121 (package
1122 (name "perl-class-inspector")
1123 (version "1.32")
1124 (source
1125 (origin
1126 (method url-fetch)
1127 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1128 "Class-Inspector-" version ".tar.gz"))
1129 (sha256
1130 (base32
1131 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1132 (build-system perl-build-system)
1133 (home-page "http://search.cpan.org/dist/Class-Inspector/")
1134 (synopsis "Get information about a class and its structure")
1135 (description "Class::Inspector allows you to get information about a
1136 loaded class.")
1137 (license (package-license perl))))
1138
1139 (define-public perl-class-load
1140 (package
1141 (name "perl-class-load")
1142 (version "0.23")
1143 (source
1144 (origin
1145 (method url-fetch)
1146 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1147 "Class-Load-" version ".tar.gz"))
1148 (sha256
1149 (base32
1150 "13xjfh4fadq4pkq7fcj42b26544jl7gqdg2y3imnra9fwxwsbg7j"))))
1151 (build-system perl-build-system)
1152 (native-inputs
1153 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1154 ("perl-test-fatal" ,perl-test-fatal)
1155 ("perl-test-requires" ,perl-test-requires)))
1156 (propagated-inputs
1157 `(("perl-package-stash" ,perl-package-stash)
1158 ("perl-data-optlist" ,perl-data-optlist)
1159 ("perl-namespace-clean" ,perl-namespace-clean)
1160 ("perl-module-runtime" ,perl-module-runtime)
1161 ("perl-module-implementation" ,perl-module-implementation)))
1162 (home-page "http://search.cpan.org/dist/Class-Load/")
1163 (synopsis "Working (require \"Class::Name\") and more")
1164 (description "\"require EXPR\" only accepts Class/Name.pm style module
1165 names, not Class::Name. For that, this module provides \"load_class
1166 'Class::Name'\".")
1167 (license (package-license perl))))
1168
1169 (define-public perl-class-load-xs
1170 (package
1171 (name "perl-class-load-xs")
1172 (version "0.09")
1173 (source
1174 (origin
1175 (method url-fetch)
1176 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1177 "Class-Load-XS-" version ".tar.gz"))
1178 (sha256
1179 (base32
1180 "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"))))
1181 (build-system perl-build-system)
1182 (native-inputs
1183 `(("perl-test-fatal" ,perl-test-fatal)
1184 ("perl-test-requires" ,perl-test-requires)))
1185 (inputs `(("perl-class-load" ,perl-class-load)))
1186 (home-page "http://search.cpan.org/dist/Class-Load-XS/")
1187 (synopsis "XS implementation of parts of Class::Load")
1188 (description "This module provides an XS implementation for portions of
1189 Class::Load.")
1190 (license artistic2.0)))
1191
1192 (define-public perl-class-methodmaker
1193 (package
1194 (name "perl-class-methodmaker")
1195 (version "2.24")
1196 (source
1197 (origin
1198 (method url-fetch)
1199 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1200 "class-methodmaker/Class-MethodMaker-"
1201 version ".tar.gz"))
1202 (sha256
1203 (base32
1204 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1205 (build-system perl-build-system)
1206 (home-page "http://search.cpan.org/dist/Class-MethodMaker/")
1207 (synopsis "Create generic methods for OO Perl")
1208 (description "This module solves the problem of having to continually
1209 write accessor methods for your objects that perform standard tasks.")
1210 (license (package-license perl))))
1211
1212 (define-public perl-class-method-modifiers
1213 (package
1214 (name "perl-class-method-modifiers")
1215 (version "2.12")
1216 (source
1217 (origin
1218 (method url-fetch)
1219 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1220 "Class-Method-Modifiers-" version ".tar.gz"))
1221 (sha256
1222 (base32
1223 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1224 (build-system perl-build-system)
1225 (native-inputs
1226 `(("perl-test-fatal" ,perl-test-fatal)
1227 ("perl-test-requires" ,perl-test-requires)))
1228 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers/")
1229 (synopsis "Moose-like method modifiers")
1230 (description "Class::Method::Modifiers provides three modifiers: 'before',
1231 'around', and 'after'. 'before' and 'after' are run just before and after the
1232 method they modify, but can not really affect that original method. 'around'
1233 is run in place of the original method, with a hook to easily call that
1234 original method.")
1235 (license (package-license perl))))
1236
1237 (define-public perl-class-singleton
1238 (package
1239 (name "perl-class-singleton")
1240 (version "1.5")
1241 (source
1242 (origin
1243 (method url-fetch)
1244 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1245 "Class-Singleton-" version ".tar.gz"))
1246 (sha256
1247 (base32
1248 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1249 (build-system perl-build-system)
1250 (home-page "http://search.cpan.org/dist/Class-Singleton/")
1251 (synopsis "Implementation of a singleton class for Perl")
1252 (description "This module implements a Singleton class from which other
1253 classes can be derived. By itself, the Class::Singleton module does very
1254 little other than manage the instantiation of a single object.")
1255 (license (package-license perl))))
1256
1257 (define-public perl-class-tiny
1258 (package
1259 (name "perl-class-tiny")
1260 (version "1.006")
1261 (source
1262 (origin
1263 (method url-fetch)
1264 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1265 "Class-Tiny-" version ".tar.gz"))
1266 (sha256
1267 (base32
1268 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1269 (build-system perl-build-system)
1270 (home-page "http://search.cpan.org/dist/Class-Tiny/")
1271 (synopsis "Minimalist class construction")
1272 (description "This module offers a minimalist class construction kit. It
1273 uses no non-core modules for any recent Perl.")
1274 (license asl2.0)))
1275
1276 (define-public perl-class-unload
1277 (package
1278 (name "perl-class-unload")
1279 (version "0.08")
1280 (source
1281 (origin
1282 (method url-fetch)
1283 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1284 "Class-Unload-" version ".tar.gz"))
1285 (sha256
1286 (base32
1287 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1288 (build-system perl-build-system)
1289 (propagated-inputs
1290 `(("perl-class-inspector" ,perl-class-inspector)))
1291 (home-page "http://search.cpan.org/dist/Class-Unload/")
1292 (synopsis "Unload a class")
1293 (description "Class:Unload unloads a given class by clearing out its
1294 symbol table and removing it from %INC.")
1295 (license (package-license perl))))
1296
1297 (define-public perl-class-xsaccessor
1298 (package
1299 (name "perl-class-xsaccessor")
1300 (version "1.19")
1301 (source
1302 (origin
1303 (method url-fetch)
1304 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1305 "Class-XSAccessor-" version ".tar.gz"))
1306 (sha256
1307 (base32
1308 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1309 (build-system perl-build-system)
1310 (home-page "http://search.cpan.org/dist/Class-XSAccessor/")
1311 (synopsis "Generate fast XS accessors without runtime compilation")
1312 (description "Class::XSAccessor implements fast read, write, and
1313 read/write accessors in XS. Additionally, it can provide predicates such as
1314 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1315 object. It only works with objects that are implemented as ordinary hashes.
1316 Class::XSAccessor::Array implements the same interface for objects that use
1317 arrays for their internal representation.")
1318 (license (package-license perl))))
1319
1320 (define-public perl-clone
1321 (package
1322 (name "perl-clone")
1323 (version "0.39")
1324 (source (origin
1325 (method url-fetch)
1326 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1327 "Clone-" version ".tar.gz"))
1328 (sha256
1329 (base32
1330 "0bgsidb96gxzf3zhy6v1ksj1c200vxbwykk32fqm1mj97rl4dc5c"))))
1331 (build-system perl-build-system)
1332 (synopsis "Recursively copy Perl datatypes")
1333 (description
1334 "This module provides a clone() method which makes recursive copies of
1335 nested hash, array, scalar and reference types, including tied variables and
1336 objects.")
1337 (home-page (string-append "http://search.cpan.org/~garu/"
1338 "Clone-" version "/"))
1339 (license (package-license perl))))
1340
1341 (define-public perl-clone-pp
1342 (package
1343 (name "perl-clone-pp")
1344 (version "1.07")
1345 (source
1346 (origin
1347 (method url-fetch)
1348 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1349 version ".tar.gz"))
1350 (sha256
1351 (base32
1352 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1353 (build-system perl-build-system)
1354 (home-page "http://search.cpan.org/dist/Clone-PP/")
1355 (synopsis "Recursively copy Perl datatypes")
1356 (description "This module provides a general-purpose @code{clone} function
1357 to make deep copies of Perl data structures. It calls itself recursively to
1358 copy nested hash, array, scalar and reference types, including tied variables
1359 and objects.")
1360 (license (package-license perl))))
1361
1362 (define-public perl-common-sense
1363 (package
1364 (name "perl-common-sense")
1365 (version "3.74")
1366 (source
1367 (origin
1368 (method url-fetch)
1369 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1370 "common-sense-" version ".tar.gz"))
1371 (sha256
1372 (base32
1373 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1374 (build-system perl-build-system)
1375 (home-page "http://search.cpan.org/dist/common-sense/")
1376 (synopsis "Sane defaults for Perl programs")
1377 (description "This module implements some sane defaults for Perl programs,
1378 as defined by two typical specimens of Perl coders.")
1379 (license (package-license perl))))
1380
1381 (define-public perl-config-any
1382 (package
1383 (name "perl-config-any")
1384 (version "0.32")
1385 (source
1386 (origin
1387 (method url-fetch)
1388 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1389 "Config-Any-" version ".tar.gz"))
1390 (sha256
1391 (base32
1392 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1393 (build-system perl-build-system)
1394 (propagated-inputs
1395 `(("perl-module-pluggable" ,perl-module-pluggable)))
1396 (home-page "http://search.cpan.org/dist/Config-Any/")
1397 (synopsis "Load configuration from different file formats")
1398 (description "Config::Any provides a facility for Perl applications and
1399 libraries to load configuration data from multiple different file formats. It
1400 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1401 (license (package-license perl))))
1402
1403 (define-public perl-config-autoconf
1404 (package
1405 (name "perl-config-autoconf")
1406 (version "0.315")
1407 (source
1408 (origin
1409 (method url-fetch)
1410 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1411 "Config-AutoConf-" version ".tar.gz"))
1412 (sha256
1413 (base32
1414 "0h39x9rzrhhilpg8yxlzpka269qrzsjg0iy0c1b9xflqlvhx2g2b"))))
1415 (build-system perl-build-system)
1416 (propagated-inputs
1417 `(("perl-capture-tiny" ,perl-capture-tiny)))
1418 (home-page "http://search.cpan.org/dist/Config-AutoConf/")
1419 (synopsis "Module to implement some AutoConf macros in Perl")
1420 (description "Config::AutoConf is intended to provide the same
1421 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1422 (license (package-license perl))))
1423
1424 (define-public perl-config-general
1425 (package
1426 (name "perl-config-general")
1427 (version "2.56")
1428 (source
1429 (origin
1430 (method url-fetch)
1431 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1432 "Config-General-" version ".tar.gz"))
1433 (sha256
1434 (base32
1435 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1436 (build-system perl-build-system)
1437 (home-page "http://search.cpan.org/dist/Config-General/")
1438 (synopsis "Generic Config Module")
1439 (description "This module opens a config file and parses its contents for
1440 you. The format of config files supported by Config::General is inspired by
1441 the well known Apache config format and is 100% compatible with Apache
1442 configs, but you can also just use simple name/value pairs in your config
1443 files. In addition to the capabilities of an Apache config file it supports
1444 some enhancements such as here-documents, C-style comments, and multiline
1445 options.")
1446 (license (package-license perl))))
1447
1448 (define-public perl-config-ini
1449 (package
1450 (name "perl-config-ini")
1451 (version "0.025")
1452 (source (origin
1453 (method url-fetch)
1454 (uri (string-append
1455 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1456 version ".tar.gz"))
1457 (sha256
1458 (base32
1459 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1460 (build-system perl-build-system)
1461 (inputs
1462 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1463 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1464 ("perl-sub-exporter" ,perl-sub-exporter)))
1465 (home-page "http://search.cpan.org/dist/Config-INI/")
1466 (synopsis "Simple .ini-file format reader and writer")
1467 (description "@code{Config::INI} is a module that facilates the reading
1468 and writing of @code{.ini}-style configuration files.")
1469 (license (package-license perl))))
1470
1471 (define-public perl-context-preserve
1472 (package
1473 (name "perl-context-preserve")
1474 (version "0.02")
1475 (source
1476 (origin
1477 (method url-fetch)
1478 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1479 "Context-Preserve-" version ".tar.gz"))
1480 (sha256
1481 (base32
1482 "0qkjj1qifr87zlfpfnn21gdyrpfgilh8zp3b53008m2ax02k87gc"))))
1483 (build-system perl-build-system)
1484 (native-inputs
1485 `(("perl-test-exception" ,perl-test-exception)
1486 ("perl-test-simple" ,perl-test-simple)))
1487 (home-page "http://search.cpan.org/dist/Context-Preserve/")
1488 (synopsis "Preserve context during subroutine call")
1489 (description "This module runs code after a subroutine call, preserving
1490 the context the subroutine would have seen if it were the last statement in
1491 the caller.")
1492 (license (package-license perl))))
1493
1494 (define-public perl-convert-binhex
1495 (package
1496 (name "perl-convert-binhex")
1497 (version "1.125")
1498 (source
1499 (origin
1500 (method url-fetch)
1501 (uri (string-append
1502 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1503 version
1504 ".tar.gz"))
1505 (sha256
1506 (base32
1507 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1508 (build-system perl-build-system)
1509 (native-inputs
1510 `(("perl-file-slurp" ,perl-file-slurp)
1511 ("perl-test-most" ,perl-test-most)))
1512 (home-page
1513 "http://search.cpan.org/dist/Convert-BinHex/")
1514 (synopsis "Extract data from Macintosh BinHex files")
1515 (description
1516 "BinHex is a format for transporting files safely through electronic
1517 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1518 provides a means of converting those data streams back into into binary
1519 data.")
1520 (license perl-license)))
1521
1522 (define-public perl-cpan-meta-check
1523 (package
1524 (name "perl-cpan-meta-check")
1525 (version "0.014")
1526 (source
1527 (origin
1528 (method url-fetch)
1529 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1530 "CPAN-Meta-Check-" version ".tar.gz"))
1531 (sha256
1532 (base32
1533 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1534 (build-system perl-build-system)
1535 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1536 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1537 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check/")
1538 (synopsis "Verify requirements in a CPAN::Meta object")
1539 (description "This module verifies if requirements described in a
1540 CPAN::Meta object are present.")
1541 (license (package-license perl))))
1542
1543 (define-public perl-cpanel-json-xs
1544 (package
1545 (name "perl-cpanel-json-xs")
1546 (version "3.0114")
1547 (source
1548 (origin
1549 (method url-fetch)
1550 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1551 "Cpanel-JSON-XS-" version ".tar.gz"))
1552 (sha256
1553 (base32
1554 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1555 (build-system perl-build-system)
1556 (propagated-inputs
1557 `(("perl-common-sense" ,perl-common-sense)))
1558 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS/")
1559 (synopsis "JSON::XS for Cpanel")
1560 (description "This module converts Perl data structures to JSON and vice
1561 versa.")
1562 (license (package-license perl))))
1563
1564 (define-public perl-crypt-randpasswd
1565 (package
1566 (name "perl-crypt-randpasswd")
1567 (version "0.06")
1568 (source
1569 (origin
1570 (method url-fetch)
1571 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1572 "Crypt-RandPasswd-" version ".tar.gz"))
1573 (sha256
1574 (base32
1575 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1576 (build-system perl-build-system)
1577 (home-page "http://search.cpan.org/dist/Crypt-RandPasswd/")
1578 (synopsis "Random password generator")
1579 (description "Crypt::RandPasswd provides three functions that can be used
1580 to generate random passwords, constructed from words, letters, or characters.
1581 This code is a Perl implementation of the Automated Password Generator
1582 standard, like the program described in \"A Random Word Generator For
1583 Pronounceable Passwords\". This code is a re-engineering of the program
1584 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1585 Password Generator\".")
1586 (license (package-license perl))))
1587
1588 (define-public perl-crypt-rc4
1589 (package
1590 (name "perl-crypt-rc4")
1591 (version "2.02")
1592 (source
1593 (origin
1594 (method url-fetch)
1595 (uri (string-append
1596 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1597 version
1598 ".tar.gz"))
1599 (sha256
1600 (base32
1601 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1602 (build-system perl-build-system)
1603 (home-page "http://search.cpan.org/dist/Crypt-RC4/")
1604 (synopsis "Perl implementation of the RC4 encryption algorithm")
1605 (description "A pure Perl implementation of the RC4 algorithm.")
1606 (license (package-license perl))))
1607
1608 (define-public perl-cwd-guard
1609 (package
1610 (name "perl-cwd-guard")
1611 (version "0.05")
1612 (source (origin
1613 (method url-fetch)
1614 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1615 "Cwd-Guard-" version ".tar.gz"))
1616 (sha256
1617 (base32
1618 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1619 (build-system perl-build-system)
1620 (native-inputs
1621 `(("perl-module-build" ,perl-module-build)
1622 ("perl-test-requires" ,perl-test-requires)))
1623 (home-page "http://search.cpan.org/dist/Cwd-Guard/")
1624 (synopsis "Temporarily change working directory")
1625 (description
1626 "@code{Cwd::Guard} changes the current directory using a limited scope.
1627 It returns to the previous working directory when the object is destroyed.")
1628 (license (package-license perl))))
1629
1630 (define-public perl-czplib
1631 (package
1632 (name "perl-czplib")
1633 (version "1.0.5")
1634 (source
1635 (origin
1636 (method url-fetch)
1637 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1638 version ".tgz"))
1639 (sha256
1640 (base32
1641 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1642 (modules '((guix build utils)))
1643 (snippet
1644 '(begin
1645 ;; Remove .git directory
1646 (delete-file-recursively ".git")
1647 #t))))
1648 (build-system perl-build-system)
1649 (arguments
1650 `(#:phases
1651 (modify-phases %standard-phases
1652 (delete 'configure)
1653 (delete 'build)
1654 (replace
1655 'install
1656 (lambda* (#:key outputs #:allow-other-keys)
1657 (copy-recursively "."
1658 (string-append (assoc-ref outputs "out")
1659 "/plib/perl5/site_perl/"
1660 ,(package-version perl)
1661 "/czplib/"))
1662 #t)))))
1663 (home-page "https://sourceforge.net/projects/czplib/")
1664 (synopsis "Library for genomic analysis")
1665 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1666 functions and data structures for processing and analysing genomic and
1667 bioinformatics data.")
1668 (license gpl3+)))
1669
1670 (define-public perl-data
1671 (package
1672 (name "perl-data")
1673 (version "0.002009")
1674 (source
1675 (origin
1676 (method url-fetch)
1677 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1678 "Data-Perl-" version ".tar.gz"))
1679 (sha256
1680 (base32
1681 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1682 (build-system perl-build-system)
1683 (native-inputs
1684 `(("perl-test-deep" ,perl-test-deep)
1685 ("perl-test-output" ,perl-test-output)
1686 ("perl-test-fatal" ,perl-test-fatal)))
1687 (inputs
1688 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1689 ("perl-list-moreutils" ,perl-list-moreutils)
1690 ("perl-module-runtime" ,perl-module-runtime)
1691 ("perl-role-tiny" ,perl-role-tiny)
1692 ("perl-strictures" ,perl-strictures)))
1693 (home-page "http://search.cpan.org/dist/Data-Perl/")
1694 (synopsis "Base classes wrapping fundamental Perl data types")
1695 (description "Collection of classes that wrap fundamental data types that
1696 exist in Perl. These classes and methods as they exist today are an attempt
1697 to mirror functionality provided by Moose's Native Traits. One important
1698 thing to note is all classes currently do no validation on constructor
1699 input.")
1700 (license (package-license perl))))
1701
1702 (define-public perl-data-compare
1703 (package
1704 (name "perl-data-compare")
1705 (version "1.25")
1706 (source
1707 (origin
1708 (method url-fetch)
1709 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1710 "Data-Compare-" version ".tar.gz"))
1711 (sha256
1712 (base32
1713 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1714 (build-system perl-build-system)
1715 (propagated-inputs
1716 `(("perl-file-find-rule" ,perl-file-find-rule)))
1717 (home-page "http://search.cpan.org/dist/Data-Compare/")
1718 (synopsis "Compare Perl data structures")
1719 (description "This module compares arbitrary data structures to see if
1720 they are copies of each other.")
1721 (license (package-license perl))))
1722
1723 (define-public perl-data-uniqid
1724 (package
1725 (name "perl-data-uniqid")
1726 (version "0.12")
1727 (source
1728 (origin
1729 (method url-fetch)
1730 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1731 version ".tar.gz"))
1732 (sha256
1733 (base32
1734 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1735 (build-system perl-build-system)
1736 (home-page "http://search.cpan.org/dist/Data-Uniqid/")
1737 (synopsis "Perl extension for generating unique identifiers")
1738 (description "@code{Data::Uniqid} provides three simple routines for
1739 generating unique ids. These ids are coded with a Base62 systen to make them
1740 short and handy (e.g. to use it as part of a URL).")
1741 (license (package-license perl))))
1742
1743 (define-public perl-data-dump
1744 (package
1745 (name "perl-data-dump")
1746 (version "1.23")
1747 (source
1748 (origin
1749 (method url-fetch)
1750 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1751 "Data-Dump-" version ".tar.gz"))
1752 (sha256
1753 (base32
1754 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1755 (build-system perl-build-system)
1756 (home-page "http://search.cpan.org/dist/Data-Dump/")
1757 (synopsis "Pretty printing of data structures")
1758 (description "This module provide functions that takes a list of values as
1759 their argument and produces a string as its result. The string contains Perl
1760 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1761 (license (package-license perl))))
1762
1763 (define-public perl-data-dumper-concise
1764 (package
1765 (name "perl-data-dumper-concise")
1766 (version "2.023")
1767 (source
1768 (origin
1769 (method url-fetch)
1770 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1771 "Data-Dumper-Concise-" version ".tar.gz"))
1772 (sha256
1773 (base32
1774 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1775 (build-system perl-build-system)
1776 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise/")
1777 (synopsis "Concise data dumper")
1778 (description "Data::Dumper::Concise provides a dumper with Less
1779 indentation and newlines plus sub deparsing.")
1780 (license (package-license perl))))
1781
1782 (define-public perl-data-optlist
1783 (package
1784 (name "perl-data-optlist")
1785 (version "0.110")
1786 (source
1787 (origin
1788 (method url-fetch)
1789 (uri (string-append
1790 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1791 version ".tar.gz"))
1792 (sha256
1793 (base32
1794 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1795 (build-system perl-build-system)
1796 (propagated-inputs
1797 `(("perl-sub-install" ,perl-sub-install)
1798 ("perl-params-util" ,perl-params-util)))
1799 (home-page "http://search.cpan.org/dist/Data-OptList/")
1800 (synopsis "Parse and validate simple name/value option pairs")
1801 (description
1802 "Data::OptList provides a simple syntax for name/value option pairs.")
1803 (license (package-license perl))))
1804
1805 (define-public perl-data-page
1806 (package
1807 (name "perl-data-page")
1808 (version "2.02")
1809 (source
1810 (origin
1811 (method url-fetch)
1812 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1813 "Data-Page-" version ".tar.gz"))
1814 (sha256
1815 (base32
1816 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1817 (build-system perl-build-system)
1818 (native-inputs
1819 `(("perl-module-build" ,perl-module-build)
1820 ("perl-test-exception" ,perl-test-exception)))
1821 (propagated-inputs
1822 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1823 (home-page "http://search.cpan.org/dist/Data-Page/")
1824 (synopsis "Help when paging through sets of results")
1825 (description "When searching through large amounts of data, it is often
1826 the case that a result set is returned that is larger than we want to display
1827 on one page. This results in wanting to page through various pages of data.
1828 The maths behind this is unfortunately fiddly, hence this module.")
1829 (license (package-license perl))))
1830
1831 (define-public perl-data-perl
1832 (package
1833 (name "perl-data-perl")
1834 (version "0.002009")
1835 (source
1836 (origin
1837 (method url-fetch)
1838 (uri (string-append
1839 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1840 version
1841 ".tar.gz"))
1842 (sha256
1843 (base32
1844 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1845 (build-system perl-build-system)
1846 (native-inputs
1847 `(("perl-test-deep" ,perl-test-deep)
1848 ("perl-test-fatal" ,perl-test-fatal)
1849 ("perl-test-output" ,perl-test-output)))
1850 (inputs
1851 `(("perl-class-method-modifiers"
1852 ,perl-class-method-modifiers)
1853 ("perl-module-runtime" ,perl-module-runtime)
1854 ("perl-role-tiny" ,perl-role-tiny)
1855 ("perl-strictures" ,perl-strictures)))
1856 (propagated-inputs
1857 `(("perl-list-moreutils" ,perl-list-moreutils)))
1858 (home-page
1859 "http://search.cpan.org/dist/Data-Perl/")
1860 (synopsis "Base classes wrapping fundamental Perl data types")
1861 (description
1862 "@code{Data::Perl} is a container class for the following classes:
1863 @itemize
1864 @item @code{Data::Perl::Collection::Hash}
1865 @item @code{Data::Perl::Collection::Array}
1866 @item @code{Data::Perl::String}
1867 @item @code{Data::Perl::Number}
1868 @item @code{Data::Perl::Counter}
1869 @item @code{Data::Perl::Bool}
1870 @item @code{Data::Perl::Code}
1871 @end itemize")
1872 (license perl-license)))
1873
1874 (define-public perl-data-printer
1875 (package
1876 (name "perl-data-printer")
1877 (version "0.40")
1878 (source
1879 (origin
1880 (method url-fetch)
1881 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1882 version ".tar.gz"))
1883 (sha256
1884 (base32
1885 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1886 (build-system perl-build-system)
1887 (propagated-inputs
1888 `(("perl-clone-pp" ,perl-clone-pp)
1889 ("perl-file-homedir" ,perl-file-homedir)
1890 ("perl-package-stash" ,perl-package-stash)
1891 ("perl-sort-naturally" ,perl-sort-naturally)))
1892 (home-page "http://search.cpan.org/dist/Data-Printer/")
1893 (synopsis "Colored pretty-print of Perl data structures and objects")
1894 (description "Display Perl variables and objects on screen, properly
1895 formatted (to be inspected by a human).")
1896 (license (package-license perl))))
1897
1898 (define-public perl-data-record
1899 (package
1900 (name "perl-data-record")
1901 (version "0.02")
1902 (source
1903 (origin
1904 (method url-fetch)
1905 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1906 "Data-Record-" version ".tar.gz"))
1907 (sha256
1908 (base32
1909 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1910 (build-system perl-build-system)
1911 (native-inputs
1912 `(("perl-test-exception" ,perl-test-exception)
1913 ("perl-module-build" ,perl-module-build)))
1914 (propagated-inputs
1915 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1916 (home-page "http://search.cpan.org/dist/Data-Record/")
1917 (synopsis "Conditionally split data into records")
1918 (description "This Perl module allows you to split data into records by
1919 not only specifying what you wish to split the data on, but also by specifying
1920 an \"unless\" regular expression. If the text in question matches the
1921 \"unless\" regex, it will not be split there. This allows us to do things
1922 like split on newlines unless newlines are embedded in quotes.")
1923 (license (package-license perl))))
1924
1925 (define-public perl-data-section
1926 (package
1927 (name "perl-data-section")
1928 (version "0.200007")
1929 (source
1930 (origin
1931 (method url-fetch)
1932 (uri (string-append
1933 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1934 version
1935 ".tar.gz"))
1936 (sha256
1937 (base32
1938 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1939 (build-system perl-build-system)
1940 (native-inputs
1941 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1942 (propagated-inputs
1943 `(("perl-mro-compat" ,perl-mro-compat)
1944 ("perl-sub-exporter" ,perl-sub-exporter)))
1945 (home-page "http://search.cpan.org/dist/Data-Section/")
1946 (synopsis "Read multiple hunks of data out of your DATA section")
1947 (description "This package provides a Perl library to read multiple hunks
1948 of data out of your DATA section.")
1949 (license (package-license perl))))
1950
1951 (define-public perl-data-stag
1952 (package
1953 (name "perl-data-stag")
1954 (version "0.14")
1955 (source
1956 (origin
1957 (method url-fetch)
1958 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1959 "Data-Stag-" version ".tar.gz"))
1960 (sha256
1961 (base32
1962 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1963 (build-system perl-build-system)
1964 (propagated-inputs
1965 `(("perl-io-string" ,perl-io-string)))
1966 (home-page "http://search.cpan.org/dist/Data-Stag/")
1967 (synopsis "Structured tags datastructures")
1968 (description
1969 "This module is for manipulating data as hierarchical tag/value
1970 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1971 be represented as nested arrays, which have the advantage of being native to
1972 Perl.")
1973 (license (package-license perl))))
1974
1975 (define-public perl-data-stream-bulk
1976 (package
1977 (name "perl-data-stream-bulk")
1978 (version "0.11")
1979 (source
1980 (origin
1981 (method url-fetch)
1982 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1983 "Data-Stream-Bulk-" version ".tar.gz"))
1984 (sha256
1985 (base32
1986 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1987 (build-system perl-build-system)
1988 (native-inputs
1989 `(("perl-test-requires" ,perl-test-requires)))
1990 (propagated-inputs
1991 `(("perl-moose" ,perl-moose)
1992 ("perl-namespace-clean" ,perl-namespace-clean)
1993 ("perl-path-class" ,perl-path-class)
1994 ("perl-sub-exporter" ,perl-sub-exporter)))
1995 (home-page "http://search.cpan.org/dist/Data-Stream-Bulk/")
1996 (synopsis "N at a time iteration API")
1997 (description "This module tries to find middle ground between one at a
1998 time and all at once processing of data sets. The purpose of this module is
1999 to avoid the overhead of implementing an iterative api when this isn't
2000 necessary, without breaking forward compatibility in case that becomes
2001 necessary later on.")
2002 (license (package-license perl))))
2003
2004 (define-public perl-data-tumbler
2005 (package
2006 (name "perl-data-tumbler")
2007 (version "0.008")
2008 (source
2009 (origin
2010 (method url-fetch)
2011 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2012 "Data-Tumbler-" version ".tar.gz"))
2013 (sha256
2014 (base32
2015 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
2016 (build-system perl-build-system)
2017 (native-inputs
2018 `(("perl-test-most" ,perl-test-most)))
2019 (propagated-inputs
2020 `(("perl-file-homedir" ,perl-file-homedir)))
2021 (home-page "http://search.cpan.org/dist/Data-Tumbler/")
2022 (synopsis "Dynamic generation of nested combinations of variants")
2023 (description "Data::Tumbler - Dynamic generation of nested combinations of
2024 variants.")
2025 (license (package-license perl))))
2026
2027 (define-public perl-data-visitor
2028 (package
2029 (name "perl-data-visitor")
2030 (version "0.30")
2031 (source
2032 (origin
2033 (method url-fetch)
2034 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2035 "Data-Visitor-" version ".tar.gz"))
2036 (sha256
2037 (base32
2038 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2039 (build-system perl-build-system)
2040 (native-inputs
2041 `(("perl-test-requires" ,perl-test-requires)))
2042 (propagated-inputs
2043 `(("perl-class-load" ,perl-class-load)
2044 ("perl-moose" ,perl-moose)
2045 ("perl-namespace-clean" ,perl-namespace-clean)
2046 ("perl-task-weaken" ,perl-task-weaken)
2047 ("perl-tie-toobject" ,perl-tie-toobject)))
2048 (home-page "http://search.cpan.org/dist/Data-Visitor/")
2049 (synopsis "Visitor style traversal of Perl data structures")
2050 (description "This module is a simple visitor implementation for Perl
2051 values. It has a main dispatcher method, visit, which takes a single perl
2052 value and then calls the methods appropriate for that value. It can
2053 recursively map (cloning as necessary) or just traverse most structures, with
2054 support for per-object behavior, circular structures, visiting tied
2055 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2056 (license (package-license perl))))
2057
2058 (define-public perl-date-calc
2059 (package
2060 (name "perl-date-calc")
2061 (version "6.4")
2062 (source
2063 (origin
2064 (method url-fetch)
2065 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2066 "Date-Calc-" version ".tar.gz"))
2067 (sha256
2068 (base32
2069 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2070 (build-system perl-build-system)
2071 (propagated-inputs
2072 `(("perl-bit-vector" ,perl-bit-vector)
2073 ("perl-carp-clan" ,perl-carp-clan)))
2074 (home-page "http://search.cpan.org/dist/Date-Calc/")
2075 (synopsis "Gregorian calendar date calculations")
2076 (description "This package consists of a Perl module for date calculations
2077 based on the Gregorian calendar, thereby complying with all relevant norms and
2078 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2079 applicable).")
2080 (license (package-license perl))))
2081
2082 (define-public perl-date-calc-xs
2083 (package
2084 (name "perl-date-calc-xs")
2085 (version "6.4")
2086 (source
2087 (origin
2088 (method url-fetch)
2089 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2090 "Date-Calc-XS-" version ".tar.gz"))
2091 (sha256
2092 (base32
2093 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2094 (build-system perl-build-system)
2095 (propagated-inputs
2096 `(("perl-bit-vector" ,perl-bit-vector)
2097 ("perl-carp-clan" ,perl-carp-clan)
2098 ("perl-date-calc" ,perl-date-calc)))
2099 (home-page "http://search.cpan.org/dist/Date-Calc-XS/")
2100 (synopsis "XS wrapper for Date::Calc")
2101 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2102 Date::Calc.")
2103 (license (list (package-license perl) lgpl2.0+))))
2104
2105 (define-public perl-date-manip
2106 (package
2107 (name "perl-date-manip")
2108 (version "6.70")
2109 (source
2110 (origin
2111 (method url-fetch)
2112 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2113 "Date-Manip-" version ".tar.gz"))
2114 (sha256
2115 (base32
2116 "0r4k4ypb09xwhvq6das0vpx2c0xbhhhx83knq6jfpf8m55h8qi9r"))))
2117 (build-system perl-build-system)
2118 (native-inputs `(("perl-module-build" ,perl-module-build)))
2119 (arguments
2120 ;; Tests would require tzdata for timezone information, but tzdata is in
2121 ;; (gnu packages base) which would create a circular dependency. TODO:
2122 ;; Maybe put this package elsewhere so we can turn on tests.
2123 '(#:tests? #f))
2124 (home-page "http://search.cpan.org/dist/Date-Manip/")
2125 (synopsis "Date manipulation routines")
2126 (description "Date::Manip is a series of modules for common date/time
2127 operations, such as comparing two times, determining a date a given amount of
2128 time from another, or parsing international times.")
2129 (license (package-license perl))))
2130
2131 (define-public perl-date-simple
2132 (package
2133 (name "perl-date-simple")
2134 (version "3.03")
2135 (source
2136 (origin
2137 (method url-fetch)
2138 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2139 "Date-Simple-" version ".tar.gz"))
2140 (sha256
2141 (base32
2142 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2143 (build-system perl-build-system)
2144 (home-page "http://search.cpan.org/dist/Date-Simple/")
2145 (synopsis "Simple date handling")
2146 (description "Dates are complex enough without times and timezones. This
2147 module may be used to create simple date objects. It handles validation,
2148 interval arithmetic, and day-of-week calculation. It does not deal with
2149 hours, minutes, seconds, and time zones.")
2150 ;; Can be used with either license.
2151 (license (list (package-license perl) gpl2+))))
2152
2153 (define-public perl-datetime
2154 (package
2155 (name "perl-datetime")
2156 (version "1.46")
2157 (source
2158 (origin
2159 (method url-fetch)
2160 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2161 "DateTime-" version ".tar.gz"))
2162 (sha256
2163 (base32
2164 "1247d2q2gm912bxj88a0sr5gvj2nx4a7n6z1smkq16iy21cziz79"))))
2165 (build-system perl-build-system)
2166 (native-inputs
2167 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2168 ("perl-module-build" ,perl-module-build)
2169 ("perl-test-fatal" ,perl-test-fatal)
2170 ("perl-test-warnings" ,perl-test-warnings)))
2171 (propagated-inputs
2172 `(("perl-datetime-locale" ,perl-datetime-locale)
2173 ("perl-datetime-timezone" ,perl-datetime-timezone)
2174 ("perl-file-sharedir" ,perl-file-sharedir)
2175 ("perl-params-validate" ,perl-params-validate)
2176 ("perl-try-tiny" ,perl-try-tiny)))
2177 (home-page "http://search.cpan.org/dist/DateTime/")
2178 (synopsis "Date and time object for Perl")
2179 (description "DateTime is a class for the representation of date/time
2180 combinations. It represents the Gregorian calendar, extended backwards in
2181 time before its creation (in 1582).")
2182 (license artistic2.0)))
2183
2184 (define-public perl-datetime-calendar-julian
2185 (package
2186 (name "perl-datetime-calendar-julian")
2187 (version "0.04")
2188 (source
2189 (origin
2190 (method url-fetch)
2191 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2192 "DateTime-Calendar-Julian-" version ".tar.gz"))
2193 (sha256
2194 (base32
2195 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
2196 (build-system perl-build-system)
2197 ;; Only needed for tests
2198 (native-inputs
2199 `(("perl-datetime" ,perl-datetime)))
2200 (home-page "http://search.cpan.org/dist/DateTime-Calendar-Julian/")
2201 (synopsis "Dates in the Julian calendar")
2202 (description "This package is a companion module to @code{DateTime.pm}.
2203 It implements the Julian calendar. It supports everything that
2204 @code{DateTime.pm} supports and more: about one day per century more, to be
2205 precise.")
2206 (license (package-license perl))))
2207
2208 (define-public perl-datetime-set
2209 (package
2210 (name "perl-datetime-set")
2211 (version "0.3900")
2212 (source
2213 (origin
2214 (method url-fetch)
2215 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2216 "DateTime-Set-" version ".tar.gz"))
2217 (sha256
2218 (base32
2219 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2220 (build-system perl-build-system)
2221 (native-inputs
2222 `(("perl-module-build" ,perl-module-build)))
2223 (propagated-inputs
2224 `(("perl-datetime" ,perl-datetime)
2225 ("perl-params-validate" ,perl-params-validate)
2226 ("perl-set-infinite" ,perl-set-infinite)))
2227 (home-page "http://search.cpan.org/dist/DateTime-Set/")
2228 (synopsis "DateTime set objects")
2229 (description "The DateTime::Set module provides a date/time sets
2230 implementation. It allows, for example, the generation of groups of dates,
2231 like \"every wednesday\", and then find all the dates matching that pattern,
2232 within a time range.")
2233 (license (package-license perl))))
2234
2235 (define-public perl-datetime-event-ical
2236 (package
2237 (name "perl-datetime-event-ical")
2238 (version "0.13")
2239 (source
2240 (origin
2241 (method url-fetch)
2242 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2243 "DateTime-Event-ICal-" version ".tar.gz"))
2244 (sha256
2245 (base32
2246 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2247 (build-system perl-build-system)
2248 (propagated-inputs
2249 `(("perl-datetime" ,perl-datetime)
2250 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2251 (home-page "http://search.cpan.org/dist/DateTime-Event-ICal/")
2252 (synopsis "DateTime rfc2445 recurrences")
2253 (description "This module provides convenience methods that let you easily
2254 create DateTime::Set objects for RFC 2445 style recurrences.")
2255 (license (package-license perl))))
2256
2257 (define-public perl-datetime-event-recurrence
2258 (package
2259 (name "perl-datetime-event-recurrence")
2260 (version "0.19")
2261 (source
2262 (origin
2263 (method url-fetch)
2264 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2265 "DateTime-Event-Recurrence-" version ".tar.gz"))
2266 (sha256
2267 (base32
2268 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2269 (build-system perl-build-system)
2270 (propagated-inputs
2271 `(("perl-datetime" ,perl-datetime)
2272 ("perl-datetime-set" ,perl-datetime-set)))
2273 (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence/")
2274 (synopsis "DateTime::Set extension for basic recurrences")
2275 (description "This module provides convenience methods that let you easily
2276 create DateTime::Set objects for various recurrences, such as \"once a month\"
2277 or \"every day\". You can also create more complicated recurrences, such as
2278 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2279 (license (package-license perl))))
2280
2281 (define-public perl-datetime-format-builder
2282 (package
2283 (name "perl-datetime-format-builder")
2284 (version "0.81")
2285 (source
2286 (origin
2287 (method url-fetch)
2288 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2289 "DateTime-Format-Builder-" version ".tar.gz"))
2290 (sha256
2291 (base32
2292 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2293 (build-system perl-build-system)
2294 (propagated-inputs
2295 `(("perl-class-factory-util" ,perl-class-factory-util)
2296 ("perl-datetime" ,perl-datetime)
2297 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2298 ("perl-params-validate" ,perl-params-validate)))
2299 (home-page "http://search.cpan.org/dist/DateTime-Format-Builder/")
2300 (synopsis "Create DateTime parser classes and objects")
2301 (description "DateTime::Format::Builder creates DateTime parsers. Many
2302 string formats of dates and times are simple and just require a basic regular
2303 expression to extract the relevant information. Builder provides a simple way
2304 to do this without writing reams of structural code.")
2305 (license artistic2.0)))
2306
2307 (define-public perl-datetime-format-flexible
2308 (package
2309 (name "perl-datetime-format-flexible")
2310 (version "0.28")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2315 "DateTime-Format-Flexible-" version ".tar.gz"))
2316 (sha256
2317 (base32
2318 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2319 (build-system perl-build-system)
2320 (propagated-inputs
2321 `(("perl-datetime" ,perl-datetime)
2322 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2323 ("perl-datetime-timezone" ,perl-datetime-timezone)
2324 ("perl-list-moreutils" ,perl-list-moreutils)
2325 ("perl-module-pluggable" ,perl-module-pluggable)
2326 ("perl-test-mocktime" ,perl-test-mocktime)))
2327 (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible/")
2328 (synopsis "Parse data/time strings")
2329 (description "DateTime::Format::Flexible attempts to take any string you
2330 give it and parse it into a DateTime object.")
2331 (license (package-license perl))))
2332
2333 (define-public perl-datetime-format-ical
2334 (package
2335 (name "perl-datetime-format-ical")
2336 (version "0.09")
2337 (source
2338 (origin
2339 (method url-fetch)
2340 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2341 "DateTime-Format-ICal-" version ".tar.gz"))
2342 (sha256
2343 (base32
2344 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2345 (build-system perl-build-system)
2346 (native-inputs
2347 `(("perl-module-build" ,perl-module-build)))
2348 (propagated-inputs
2349 `(("perl-datetime" ,perl-datetime)
2350 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2351 ("perl-datetime-set" ,perl-datetime-set)
2352 ("perl-datetime-timezone" ,perl-datetime-timezone)
2353 ("perl-params-validate" ,perl-params-validate)))
2354 (home-page "http://search.cpan.org/dist/DateTime-Format-ICal/")
2355 (synopsis "Parse and format iCal datetime and duration strings")
2356 (description "This module understands the ICal date/time and duration
2357 formats, as defined in RFC 2445. It can be used to parse these formats in
2358 order to create the appropriate objects.")
2359 (license (package-license perl))))
2360
2361 (define-public perl-datetime-format-natural
2362 (package
2363 (name "perl-datetime-format-natural")
2364 (version "1.05")
2365 (source
2366 (origin
2367 (method url-fetch)
2368 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2369 "DateTime-Format-Natural-" version ".tar.gz"))
2370 (sha256
2371 (base32
2372 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2373 (build-system perl-build-system)
2374 (native-inputs
2375 `(("perl-module-build" ,perl-module-build)
2376 ("perl-module-util" ,perl-module-util)
2377 ("perl-test-mocktime" ,perl-test-mocktime)))
2378 (propagated-inputs
2379 `(("perl-boolean" ,perl-boolean)
2380 ("perl-clone" ,perl-clone)
2381 ("perl-date-calc" ,perl-date-calc)
2382 ("perl-date-calc-xs" ,perl-date-calc-xs)
2383 ("perl-datetime" ,perl-datetime)
2384 ("perl-datetime-timezone" ,perl-datetime-timezone)
2385 ("perl-list-moreutils" ,perl-list-moreutils)
2386 ("perl-params-validate" ,perl-params-validate)))
2387 (home-page "http://search.cpan.org/dist/DateTime-Format-Natural/")
2388 (synopsis "Machine-readable date/time with natural parsing")
2389 (description "DateTime::Format::Natural takes a string with a human
2390 readable date/time and creates a machine readable one by applying natural
2391 parsing logic.")
2392 (license (package-license perl))))
2393
2394 (define-public perl-datetime-format-strptime
2395 (package
2396 (name "perl-datetime-format-strptime")
2397 (version "1.75")
2398 (source
2399 (origin
2400 (method url-fetch)
2401 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2402 "DateTime-Format-Strptime-" version ".tar.gz"))
2403 (sha256
2404 (base32
2405 "069wmgbchydgx3nm9klqw0g6ksnja28g61d4allgzmvr9ynb5ksg"))))
2406 (build-system perl-build-system)
2407 (propagated-inputs
2408 `(("perl-datetime" ,perl-datetime)
2409 ("perl-datetime-locale" ,perl-datetime-locale)
2410 ("perl-datetime-timezone" ,perl-datetime-timezone)
2411 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2412 ("perl-params-validate" ,perl-params-validate)
2413 ("perl-sub-name" ,perl-sub-name)
2414 ("perl-test-warnings" ,perl-test-warnings)))
2415 (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime/")
2416 (synopsis "Parse and format strp and strf time patterns")
2417 (description "This module implements most of `strptime(3)`, the POSIX
2418 function that is the reverse of `strftime(3)`, for `DateTime`. While
2419 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2420 takes a string and a pattern and returns the `DateTime` object associated.")
2421 (license artistic2.0)))
2422
2423 (define-public perl-datetime-locale
2424 (package
2425 (name "perl-datetime-locale")
2426 (version "1.17")
2427 (source
2428 (origin
2429 (method url-fetch)
2430 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2431 "DateTime-Locale-" version ".tar.gz"))
2432 (sha256
2433 (base32
2434 "1jawnci23kik5x4gln6ixvv9bxznd5f6ira024yjxsc97y5mk9hc"))))
2435 (build-system perl-build-system)
2436 (native-inputs
2437 `(("perl-file-sharedir" ,perl-file-sharedir)
2438 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2439 ("perl-test-warnings" ,perl-test-warnings)
2440 ("perl-test-requires" ,perl-test-requires)
2441 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2442 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2443 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2444 ("perl-module-build" ,perl-module-build)))
2445 (propagated-inputs
2446 `(("perl-list-moreutils" ,perl-list-moreutils)
2447 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2448 (home-page "http://search.cpan.org/dist/DateTime-Locale/")
2449 (synopsis "Localization support for DateTime.pm")
2450 (description "The DateTime::Locale modules provide localization data for
2451 the DateTime.pm class.")
2452 (license (package-license perl))))
2453
2454 (define-public perl-datetime-timezone
2455 (package
2456 (name "perl-datetime-timezone")
2457 (version "2.17")
2458 (source
2459 (origin
2460 (method url-fetch)
2461 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2462 "DateTime-TimeZone-" version ".tar.gz"))
2463 (sha256
2464 (base32
2465 "1ckhjw7h545306b02p6ra60y8zxqnbqr2lsy7c1wib8libf0l2hx"))))
2466 (build-system perl-build-system)
2467 (native-inputs
2468 `(("perl-test-fatal" ,perl-test-fatal)
2469 ("perl-test-requires" ,perl-test-requires)))
2470 (propagated-inputs
2471 `(("perl-class-singleton" ,perl-class-singleton)
2472 ("perl-list-allutils" ,perl-list-allutils)
2473 ("perl-module-runtime" ,perl-module-runtime)
2474 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2475 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2476 ("perl-try-tiny" ,perl-try-tiny)))
2477 (home-page "http://search.cpan.org/dist/DateTime-TimeZone/")
2478 (synopsis "Time zone object for Perl")
2479 (description "This class is the base class for all time zone objects. A
2480 time zone is represented internally as a set of observances, each of which
2481 describes the offset from GMT for a given time period. Note that without the
2482 DateTime module, this module does not do much. It's primary interface is
2483 through a DateTime object, and most users will not need to directly use
2484 DateTime::TimeZone methods.")
2485 (license (package-license perl))))
2486
2487 (define-public perl-datetimex-easy
2488 (package
2489 (name "perl-datetimex-easy")
2490 (version "0.089")
2491 (source
2492 (origin
2493 (method url-fetch)
2494 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2495 "DateTimeX-Easy-" version ".tar.gz"))
2496 (sha256
2497 (base32
2498 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2499 (build-system perl-build-system)
2500 (native-inputs
2501 `(("perl-test-most" ,perl-test-most)))
2502 (propagated-inputs
2503 `(("perl-datetime" ,perl-datetime)
2504 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2505 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2506 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2507 ("perl-timedate" ,perl-timedate)))
2508 (home-page "http://search.cpan.org/dist/DateTimeX-Easy/")
2509 (synopsis "Parse date/time strings")
2510 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2511 to create DateTime objects, with some custom tweaks to smooth out the rough
2512 edges (mainly concerning timezone detection and selection).")
2513 (license (package-license perl))))
2514
2515 (define-public perl-datetime-format-mail
2516 (package
2517 (name "perl-datetime-format-mail")
2518 (version "0.403")
2519 (source (origin
2520 (method url-fetch)
2521 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2522 "DateTime-Format-Mail-" version ".tar.gz"))
2523 (sha256
2524 (base32
2525 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2526 (build-system perl-build-system)
2527 (inputs
2528 `(("perl-datetime" ,perl-datetime)
2529 ("perl-params-validate" ,perl-params-validate)))
2530 (home-page "http://search.cpan.org/dist/DateTime-Format-Mail/")
2531 (synopsis "Convert between DateTime and RFC2822/822 formats")
2532 (description "RFCs 2822 and 822 specify date formats to be used by email.
2533 This module parses and emits such dates.")
2534 (license (package-license perl))))
2535
2536 (define-public perl-datetime-format-w3cdtf
2537 (package
2538 (name "perl-datetime-format-w3cdtf")
2539 (version "0.07")
2540 (source (origin
2541 (method url-fetch)
2542 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2543 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2544 (sha256
2545 (base32
2546 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2547 (build-system perl-build-system)
2548 (inputs
2549 `(("perl-datetime" ,perl-datetime)))
2550 (native-inputs
2551 `(("perl-test-pod" ,perl-test-pod)
2552 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2553 (home-page "http://search.cpan.org/dist/DateTime-Format-W3CDTF/")
2554 (synopsis "Parse and format W3CDTF datetime strings")
2555 (description
2556 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2557 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2558 format of RSS 1.0. It can be used to parse these formats in order to create
2559 the appropriate objects.")
2560 (license (package-license perl))))
2561
2562 (define-public perl-devel-caller
2563 (package
2564 (name "perl-devel-caller")
2565 (version "2.06")
2566 (source
2567 (origin
2568 (method url-fetch)
2569 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2570 "Devel-Caller-" version ".tar.gz"))
2571 (sha256
2572 (base32
2573 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2574 (build-system perl-build-system)
2575 (propagated-inputs
2576 `(("perl-padwalker" ,perl-padwalker)))
2577 (home-page "http://search.cpan.org/dist/Devel-Caller/")
2578 (synopsis "Meatier version of caller")
2579 (description "Devel::Caller provides meatier version of caller.")
2580 (license (package-license perl))))
2581
2582 (define-public perl-devel-checkbin
2583 (package
2584 (name "perl-devel-checkbin")
2585 (version "0.02")
2586 (source
2587 (origin
2588 (method url-fetch)
2589 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2590 "Devel-CheckBin-" version ".tar.gz"))
2591 (sha256
2592 (base32
2593 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2594 (build-system perl-build-system)
2595 (native-inputs `(("perl-module-build" ,perl-module-build)))
2596 (home-page "http://search.cpan.org/dist/Devel-CheckBin/")
2597 (synopsis "Check that a command is available")
2598 (description "Devel::CheckBin is a perl module that checks whether a
2599 particular command is available.")
2600 (license (package-license perl))))
2601
2602 (define-public perl-devel-checkcompiler
2603 (package
2604 (name "perl-devel-checkcompiler")
2605 (version "0.07")
2606 (source (origin
2607 (method url-fetch)
2608 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2609 "Devel-CheckCompiler-" version ".tar.gz"))
2610 (sha256
2611 (base32
2612 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2613 (build-system perl-build-system)
2614 (native-inputs
2615 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2616 (home-page "http://search.cpan.org/dist/Devel-CheckCompiler/")
2617 (synopsis "Check compiler availability")
2618 (description "@code{Devel::CheckCompiler} is a tiny module to check
2619 whether a compiler is available. It can test for a C99 compiler, or
2620 you can tell it to compile a C source file with optional linker flags.")
2621 (license (package-license perl))))
2622
2623 (define-public perl-devel-cycle
2624 (package
2625 (name "perl-devel-cycle")
2626 (version "1.12")
2627 (source
2628 (origin
2629 (method url-fetch)
2630 (uri (string-append
2631 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2632 version
2633 ".tar.gz"))
2634 (sha256
2635 (base32
2636 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2637 (build-system perl-build-system)
2638 (home-page
2639 "http://search.cpan.org/dist/Devel-Cycle/")
2640 (synopsis "Find memory cycles in objects")
2641 (description
2642 "@code{Devel::Cycle} This is a tool for finding circular references in
2643 objects and other types of references. Because of Perl's reference-count
2644 based memory management, circular references will cause memory leaks.")
2645 (license perl-license)))
2646
2647 (define-public perl-devel-globaldestruction
2648 (package
2649 (name "perl-devel-globaldestruction")
2650 (version "0.14")
2651 (source
2652 (origin
2653 (method url-fetch)
2654 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2655 "Devel-GlobalDestruction-" version ".tar.gz"))
2656 (sha256
2657 (base32
2658 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2659 (build-system perl-build-system)
2660 (propagated-inputs
2661 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2662 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction/")
2663 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2664 (description "Devel::GlobalDestruction provides a function returning the
2665 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2666 (license (package-license perl))))
2667
2668 (define-public perl-devel-hide
2669 (package
2670 (name "perl-devel-hide")
2671 (version "0.0009")
2672 (source
2673 (origin
2674 (method url-fetch)
2675 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2676 version ".tar.gz"))
2677 (sha256
2678 (base32
2679 "1phnzbw58v6551nhv6sg86m72nx9w5j4msh1hg4jvkakkq5w9pki"))))
2680 (build-system perl-build-system)
2681 (propagated-inputs
2682 `(("perl-test-pod" ,perl-test-pod)
2683 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2684 (home-page "http://search.cpan.org/dist/Devel-Hide/")
2685 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2686 (description "Given a list of Perl modules/filenames, this module makes
2687 @code{require} and @code{use} statements fail (no matter whether the specified
2688 files/modules are installed or not).")
2689 (license (package-license perl))))
2690
2691 (define-public perl-devel-lexalias
2692 (package
2693 (name "perl-devel-lexalias")
2694 (version "0.05")
2695 (source
2696 (origin
2697 (method url-fetch)
2698 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2699 "Devel-LexAlias-" version ".tar.gz"))
2700 (sha256
2701 (base32
2702 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2703 (build-system perl-build-system)
2704 (propagated-inputs
2705 `(("perl-devel-caller" ,perl-devel-caller)))
2706 (home-page "http://search.cpan.org/dist/Devel-LexAlias/")
2707 (synopsis "Alias lexical variables")
2708 (description "Devel::LexAlias provides the ability to alias a lexical
2709 variable in a subroutines scope to one of your choosing.")
2710 (license (package-license perl))))
2711
2712 (define-public perl-devel-overloadinfo
2713 (package
2714 (name "perl-devel-overloadinfo")
2715 (version "0.005")
2716 (source
2717 (origin
2718 (method url-fetch)
2719 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2720 "Devel-OverloadInfo-" version ".tar.gz"))
2721 (sha256
2722 (base32
2723 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2724 (build-system perl-build-system)
2725 (native-inputs
2726 `(("perl-test-fatal" ,perl-test-fatal)))
2727 (propagated-inputs
2728 `(("perl-package-stash" ,perl-package-stash)
2729 ("perl-sub-identify" ,perl-sub-identify)
2730 ("perl-mro-compat" ,perl-mro-compat)))
2731 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo/")
2732 (synopsis "Introspect overloaded operators")
2733 (description "Devel::OverloadInfo returns information about overloaded
2734 operators for a given class (or object), including where in the inheritance
2735 hierarchy the overloads are declared and where the code implementing it is.")
2736 (license (package-license perl))))
2737
2738 (define-public perl-devel-partialdump
2739 (package
2740 (name "perl-devel-partialdump")
2741 (version "0.18")
2742 (source
2743 (origin
2744 (method url-fetch)
2745 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2746 "Devel-PartialDump-" version ".tar.gz"))
2747 (sha256
2748 (base32
2749 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2750 (build-system perl-build-system)
2751 (native-inputs
2752 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2753 ("perl-test-warn" ,perl-test-warn)
2754 ("perl-test-simple" ,perl-test-simple)))
2755 (propagated-inputs
2756 `(("perl-class-tiny" ,perl-class-tiny)
2757 ("perl-sub-exporter" ,perl-sub-exporter)
2758 ("perl-namespace-clean" ,perl-namespace-clean)))
2759 (home-page "http://search.cpan.org/dist/Devel-PartialDump/")
2760 (synopsis "Partial dumping of data structures")
2761 (description "This module is a data dumper optimized for logging of
2762 arbitrary parameters.")
2763 (license (package-license perl))))
2764
2765 (define-public perl-devel-stacktrace
2766 (package
2767 (name "perl-devel-stacktrace")
2768 (version "2.03")
2769 (source
2770 (origin
2771 (method url-fetch)
2772 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2773 "Devel-StackTrace-" version ".tar.gz"))
2774 (sha256
2775 (base32
2776 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2777 (build-system perl-build-system)
2778 (home-page "http://search.cpan.org/dist/Devel-StackTrace/")
2779 (synopsis "Object representing a stack trace")
2780 (description "The Devel::StackTrace module contains two classes,
2781 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2782 information that can be retrieved via Perl's caller() function, as well as
2783 providing a simple interface to this data.")
2784 (license artistic2.0)))
2785
2786 (define-public perl-devel-stacktrace-ashtml
2787 (package
2788 (name "perl-devel-stacktrace-ashtml")
2789 (version "0.15")
2790 (source
2791 (origin
2792 (method url-fetch)
2793 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2794 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2795 (sha256
2796 (base32
2797 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2798 (build-system perl-build-system)
2799 (propagated-inputs
2800 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2801 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML/")
2802 (synopsis "Displays stack trace in HTML")
2803 (description "Devel::StackTrace::AsHTML adds as_html method to
2804 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2805 snippet context and function parameters. If you call it on an instance of
2806 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2807 each stack frame.")
2808 (license (package-license perl))))
2809
2810 (define-public perl-devel-symdump
2811 (package
2812 (name "perl-devel-symdump")
2813 (version "2.18")
2814 (source
2815 (origin
2816 (method url-fetch)
2817 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2818 "Devel-Symdump-" version ".tar.gz"))
2819 (sha256
2820 (base32
2821 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2822 (build-system perl-build-system)
2823 (home-page "http://search.cpan.org/dist/Devel-Symdump/")
2824 (synopsis "Dump symbol names or the symbol table")
2825 (description "Devel::Symdump provides access to the perl symbol table.")
2826 (license (package-license perl))))
2827
2828 (define-public perl-digest-hmac
2829 (package
2830 (name "perl-digest-hmac")
2831 (version "1.03")
2832 (source
2833 (origin
2834 (method url-fetch)
2835 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2836 "Digest-HMAC-" version ".tar.gz"))
2837 (sha256
2838 (base32
2839 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2840 (build-system perl-build-system)
2841 (home-page "http://search.cpan.org/dist/Digest-HMAC/")
2842 (synopsis "Keyed-Hashing for Message Authentication")
2843 (description "The Digest::HMAC module follows the common Digest::
2844 interface for the RFC 2104 HMAC mechanism.")
2845 (license (package-license perl))))
2846
2847 (define-public perl-digest-md5
2848 (package
2849 (name "perl-digest-md5")
2850 (version "2.55")
2851 (source
2852 (origin
2853 (method url-fetch)
2854 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2855 version ".tar.gz"))
2856 (sha256
2857 (base32
2858 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2859 (build-system perl-build-system)
2860 (arguments
2861 `(#:phases
2862 (modify-phases %standard-phases
2863 (add-after 'build 'set-permissions
2864 (lambda _
2865 ;; Make MD5.so read-write so it can be stripped.
2866 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
2867 (home-page "http://search.cpan.org/dist/Digest-MD5/")
2868 (synopsis "Perl interface to the MD-5 algorithm")
2869 (description
2870 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2871 algorithm from within Perl programs. The algorithm takes as
2872 input a message of arbitrary length and produces as output a
2873 128-bit \"fingerprint\" or \"message digest\" of the input.")
2874 (license (package-license perl))))
2875
2876 (define-public perl-digest-sha1
2877 (package
2878 (name "perl-digest-sha1")
2879 (version "2.13")
2880 (source (origin
2881 (method url-fetch)
2882 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2883 "Digest-SHA1-" version ".tar.gz"))
2884 (sha256
2885 (base32
2886 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2887 (build-system perl-build-system)
2888 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2889 (description
2890 "This package provides 'Digest::SHA1', an implementation of the NIST
2891 SHA-1 message digest algorithm for use by Perl programs.")
2892 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
2893 version "/SHA1.pm"))
2894 (license (package-license perl))))
2895
2896 (define-public perl-dist-checkconflicts
2897 (package
2898 (name "perl-dist-checkconflicts")
2899 (version "0.11")
2900 (source (origin
2901 (method url-fetch)
2902 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2903 "Dist-CheckConflicts-" version ".tar.gz"))
2904 (sha256
2905 (base32
2906 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2907 (build-system perl-build-system)
2908 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2909 (propagated-inputs
2910 `(("perl-module-runtime" ,perl-module-runtime)))
2911 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts/")
2912 (synopsis "Declare version conflicts for your dist")
2913 (description "This module allows you to specify conflicting versions of
2914 modules separately and deal with them after the module is done installing.")
2915 (license (package-license perl))))
2916
2917 (define-public perl-encode-detect
2918 (package
2919 (name "perl-encode-detect")
2920 (version "1.01")
2921 (source
2922 (origin
2923 (method url-fetch)
2924 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2925 "Encode-Detect-" version ".tar.gz"))
2926 (sha256
2927 (base32
2928 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2929 (build-system perl-build-system)
2930 (native-inputs
2931 `(("perl-module-build" ,perl-module-build)))
2932 (home-page "http://search.cpan.org/dist/Encode-Detect/")
2933 (synopsis "Detect the encoding of data")
2934 (description "This package provides a class @code{Encode::Detect} to detect
2935 the encoding of data.")
2936 (license mpl1.1)))
2937
2938 (define-public perl-encode-eucjpascii
2939 (package
2940 (name "perl-encode-eucjpascii")
2941 (version "0.03")
2942 (source
2943 (origin
2944 (method url-fetch)
2945 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2946 "Encode-EUCJPASCII-" version ".tar.gz"))
2947 (sha256
2948 (base32
2949 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2950 (build-system perl-build-system)
2951 (home-page "http://search.cpan.org/dist/Encode-EUCJPASCII/")
2952 (synopsis "ASCII mapping for eucJP encoding")
2953 (description "This package provides an ASCII mapping for the eucJP
2954 encoding.")
2955 (license (package-license perl))))
2956
2957 (define-public perl-encode-jis2k
2958 (package
2959 (name "perl-encode-jis2k")
2960 (version "0.03")
2961 (source
2962 (origin
2963 (method url-fetch)
2964 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
2965 "Encode-JIS2K-" version ".tar.gz"))
2966 (sha256
2967 (base32
2968 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
2969 (build-system perl-build-system)
2970 (home-page "http://search.cpan.org/dist/Encode-JIS2K/")
2971 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
2972 (description "This package provides encodings for JIS X 0212, which is
2973 also known as JIS 2000.")
2974 (license (package-license perl))))
2975
2976 (define-public perl-encode-hanextra
2977 (package
2978 (name "perl-encode-hanextra")
2979 (version "0.23")
2980 (source
2981 (origin
2982 (method url-fetch)
2983 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
2984 "Encode-HanExtra-" version ".tar.gz"))
2985 (sha256
2986 (base32
2987 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
2988 (build-system perl-build-system)
2989 (arguments
2990 '(#:phases
2991 (modify-phases %standard-phases
2992 (add-after 'unpack 'set-env
2993 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
2994 (home-page "http://search.cpan.org/dist/Encode-HanExtra/")
2995 (synopsis "Additional Chinese encodings")
2996 (description "This Perl module provides Chinese encodings that are not
2997 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
2998 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
2999 \"UNISYS\".")
3000 (license expat)))
3001
3002 (define-public perl-env-path
3003 (package
3004 (name "perl-env-path")
3005 (version "0.19")
3006 (source
3007 (origin
3008 (method url-fetch)
3009 (uri (string-append
3010 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3011 version
3012 ".tar.gz"))
3013 (sha256
3014 (base32
3015 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3016 (build-system perl-build-system)
3017 (home-page "http://search.cpan.org/dist/Env-Path/")
3018 (synopsis "Advanced operations on path variables")
3019 (description "@code{Env::Path} presents an object-oriented interface to
3020 path variables, defined as that subclass of environment variables which name
3021 an ordered list of file system elements separated by a platform-standard
3022 separator.")
3023 (license (package-license perl))))
3024
3025 (define-public perl-error
3026 (package
3027 (name "perl-error")
3028 (version "0.17025")
3029 (source (origin
3030 (method url-fetch)
3031 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3032 "Error-" version ".tar.gz"))
3033 (sha256
3034 (base32
3035 "1bzgzmf1v4md02vadm46b4j4ilqxrcrfasvbzymhrznlsd54g7vc"))))
3036 (build-system perl-build-system)
3037 (native-inputs `(("perl-module-build" ,perl-module-build)))
3038 (home-page "http://search.cpan.org/dist/Error/")
3039 (synopsis "OO-ish Error/Exception handling for Perl")
3040 (description "The Error package provides two interfaces. Firstly Error
3041 provides a procedural interface to exception handling. Secondly Error is a
3042 base class for errors/exceptions that can either be thrown, for subsequent
3043 catch, or can simply be recorded.")
3044 (license (package-license perl))))
3045
3046 (define-public perl-eval-closure
3047 (package
3048 (name "perl-eval-closure")
3049 (version "0.14")
3050 (source
3051 (origin
3052 (method url-fetch)
3053 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3054 "Eval-Closure-" version ".tar.gz"))
3055 (sha256
3056 (base32
3057 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3058 (build-system perl-build-system)
3059 (native-inputs
3060 `(("perl-test-fatal" ,perl-test-fatal)
3061 ("perl-test-requires" ,perl-test-requires)))
3062 (propagated-inputs
3063 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3064 (home-page "http://search.cpan.org/dist/Eval-Closure/")
3065 (synopsis "Safely and cleanly create closures via string eval")
3066 (description "String eval is often used for dynamic code generation. For
3067 instance, Moose uses it heavily, to generate inlined versions of accessors and
3068 constructors, which speeds code up at runtime by a significant amount. String
3069 eval is not without its issues however - it's difficult to control the scope
3070 it's used in (which determines which variables are in scope inside the eval),
3071 and it's easy to miss compilation errors, since eval catches them and sticks
3072 them in $@@ instead. This module attempts to solve these problems. It
3073 provides an eval_closure function, which evals a string in a clean
3074 environment, other than a fixed list of specified variables. Compilation
3075 errors are rethrown automatically.")
3076 (license (package-license perl))))
3077
3078 (define-public perl-exception-class
3079 (package
3080 (name "perl-exception-class")
3081 (version "1.39")
3082 (source
3083 (origin
3084 (method url-fetch)
3085 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3086 "Exception-Class-" version ".tar.gz"))
3087 (sha256
3088 (base32
3089 "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
3090 (build-system perl-build-system)
3091 (propagated-inputs
3092 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3093 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3094 (home-page "http://search.cpan.org/dist/Exception-Class/")
3095 (synopsis "Allows you to declare real exception classes in Perl")
3096 (description "Exception::Class allows you to declare exception hierarchies
3097 in your modules in a \"Java-esque\" manner.")
3098 (license (package-license perl))))
3099
3100 (define-public perl-exporter-lite
3101 (package
3102 (name "perl-exporter-lite")
3103 (version "0.08")
3104 (source (origin
3105 (method url-fetch)
3106 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3107 "Exporter-Lite-" version ".tar.gz"))
3108 (sha256
3109 (base32
3110 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3111 (build-system perl-build-system)
3112 (synopsis "Lightweight exporting of functions and variables")
3113 (description
3114 "Exporter::Lite is an alternative to Exporter, intended to provide a
3115 lightweight subset of the most commonly-used functionality. It supports
3116 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3117 (home-page "http://search.cpan.org/dist/Exporter-Lite/")
3118 (license (package-license perl))))
3119
3120 (define-public perl-exporter-tiny
3121 (package
3122 (name "perl-exporter-tiny")
3123 (version "0.042")
3124 (source
3125 (origin
3126 (method url-fetch)
3127 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3128 "Exporter-Tiny-" version ".tar.gz"))
3129 (sha256
3130 (base32
3131 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
3132 (build-system perl-build-system)
3133 (home-page "http://search.cpan.org/dist/Exporter-Tiny/")
3134 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3135 (description "Exporter::Tiny supports many of Sub::Exporter's
3136 external-facing features including renaming imported functions with the `-as`,
3137 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3138 and alternative installers with the `installler` option. But it's written in
3139 only about 40% as many lines of code and with zero non-core dependencies.")
3140 (license (package-license perl))))
3141
3142 (define-public perl-extutils-depends
3143 (package
3144 (name "perl-extutils-depends")
3145 (version "0.405")
3146 (source
3147 (origin
3148 (method url-fetch)
3149 (uri (string-append
3150 "mirror://cpan/authors/id/X/XA/XAOC/ExtUtils-Depends-"
3151 version
3152 ".tar.gz"))
3153 (sha256
3154 (base32
3155 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3156 (build-system perl-build-system)
3157 (native-inputs
3158 `(("perl-test-number-delta"
3159 ,perl-test-number-delta)))
3160 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3161 (synopsis "Easily build XS extensions that depend on XS extensions")
3162 (description "ExtUtils::Depends builds XS extensions that depend on XS
3163 extensions")
3164 (license (package-license perl))))
3165
3166 (define-public perl-extutils-installpaths
3167 (package
3168 (name "perl-extutils-installpaths")
3169 (version "0.011")
3170 (source
3171 (origin
3172 (method url-fetch)
3173 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3174 "ExtUtils-InstallPaths-" version ".tar.gz"))
3175 (sha256
3176 (base32
3177 "0z06y0fhx9hy9x01abb7s2xdbqrh9x4ps7avmlf4bwfwih2gl2bn"))))
3178 (build-system perl-build-system)
3179 (propagated-inputs
3180 `(("perl-extutils-config" ,perl-extutils-config)))
3181 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths/")
3182 (synopsis "Build.PL install path logic made easy")
3183 (description "This module tries to make install path resolution as easy as
3184 possible.")
3185 (license (package-license perl))))
3186
3187 (define-public perl-extutils-config
3188 (package
3189 (name "perl-extutils-config")
3190 (version "0.008")
3191 (source
3192 (origin
3193 (method url-fetch)
3194 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3195 "ExtUtils-Config-" version ".tar.gz"))
3196 (sha256
3197 (base32
3198 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3199 (build-system perl-build-system)
3200 (home-page "http://search.cpan.org/dist/ExtUtils-Config/")
3201 (synopsis "Wrapper for perl's configuration")
3202 (description "ExtUtils::Config is an abstraction around the %Config hash.
3203 By itself it is not a particularly interesting module by any measure, however
3204 it ties together a family of modern toolchain modules.")
3205 (license (package-license perl))))
3206
3207 (define-public perl-extutils-depends
3208 (package
3209 (name "perl-extutils-depends")
3210 (version "0.405")
3211 (source (origin
3212 (method url-fetch)
3213 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3214 "ExtUtils-Depends-" version ".tar.gz"))
3215 (sha256
3216 (base32
3217 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3218 (build-system perl-build-system)
3219 (native-inputs
3220 `(("perl-test-number-delta" ,perl-test-number-delta)))
3221 (home-page "http://search.cpan.org/dist/ExtUtils-Depends/")
3222 (synopsis "Easily build XS extensions that depend on XS extensions")
3223 (description
3224 "This module tries to make it easy to build Perl extensions that use
3225 functions and typemaps provided by other perl extensions. This means that a
3226 perl extension is treated like a shared library that provides also a C and an
3227 XS interface besides the perl one.")
3228 (license (package-license perl))))
3229
3230 (define-public perl-extutils-helpers
3231 (package
3232 (name "perl-extutils-helpers")
3233 (version "0.022")
3234 (source
3235 (origin
3236 (method url-fetch)
3237 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3238 "ExtUtils-Helpers-" version ".tar.gz"))
3239 (sha256
3240 (base32
3241 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
3242 (build-system perl-build-system)
3243 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers/")
3244 (synopsis "Various portability utilities for module builders")
3245 (description "This module provides various portable helper functions for
3246 module building modules.")
3247 (license (package-license perl))))
3248
3249 (define-public perl-extutils-libbuilder
3250 (package
3251 (name "perl-extutils-libbuilder")
3252 (version "0.08")
3253 (source
3254 (origin
3255 (method url-fetch)
3256 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3257 "ExtUtils-LibBuilder-" version ".tar.gz"))
3258 (sha256
3259 (base32
3260 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3261 (build-system perl-build-system)
3262 (native-inputs
3263 `(("perl-module-build" ,perl-module-build)))
3264 (home-page "http://search.cpan.org/dist/ExtUtils-LibBuilder/")
3265 (synopsis "Tool to build C libraries")
3266 (description "Some Perl modules need to ship C libraries together with
3267 their Perl code. Although there are mechanisms to compile and link (or glue)
3268 C code in your Perl programs, there isn't a clear method to compile standard,
3269 self-contained C libraries. This module main goal is to help in that task.")
3270 (license (package-license perl))))
3271
3272 (define-public perl-extutils-pkgconfig
3273 (package
3274 (name "perl-extutils-pkgconfig")
3275 (version "1.16")
3276 (source (origin
3277 (method url-fetch)
3278 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3279 "ExtUtils-PkgConfig-" version ".tar.gz"))
3280 (sha256
3281 (base32
3282 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3283 (build-system perl-build-system)
3284 (propagated-inputs
3285 `(("pkg-config" ,pkg-config)))
3286 (home-page "http://search.cpan.org/dist/ExtUtils-PkgConfig/")
3287 (synopsis "Simplistic interface to pkg-config")
3288 (description
3289 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3290 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3291 of perl extensions which bind libraries that @command{pkg-config} knows.
3292 It is really just boilerplate code that you would have written yourself.")
3293 (license lgpl2.1+)))
3294
3295 (define-public perl-file-changenotify
3296 (package
3297 (name "perl-file-changenotify")
3298 (version "0.24")
3299 (source
3300 (origin
3301 (method url-fetch)
3302 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3303 "File-ChangeNotify-" version ".tar.gz"))
3304 (sha256
3305 (base32
3306 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3307 (build-system perl-build-system)
3308 (native-inputs
3309 `(("perl-module-build" ,perl-module-build)
3310 ("perl-test-exception" ,perl-test-exception)))
3311 (propagated-inputs
3312 `(("perl-class-load" ,perl-class-load)
3313 ("perl-list-moreutils" ,perl-list-moreutils)
3314 ("perl-module-pluggable" ,perl-module-pluggable)
3315 ("perl-moose" ,perl-moose)
3316 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3317 ("perl-moosex-semiaffordanceaccessor"
3318 ,perl-moosex-semiaffordanceaccessor)
3319 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3320 (home-page "http://search.cpan.org/dist/File-ChangeNotify/")
3321 (synopsis "Watch for changes to files")
3322 (description "This module provides a class to monitor a directory for
3323 changes made to any file.")
3324 (license artistic2.0)))
3325
3326 (define-public perl-file-configdir
3327 (package
3328 (name "perl-file-configdir")
3329 (version "0.018")
3330 (source
3331 (origin
3332 (method url-fetch)
3333 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3334 "File-ConfigDir-" version ".tar.gz"))
3335 (sha256
3336 (base32
3337 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3338 (build-system perl-build-system)
3339 (propagated-inputs
3340 `(("perl-file-homedir" ,perl-file-homedir)
3341 ("perl-list-moreutils" ,perl-list-moreutils)))
3342 (home-page "http://search.cpan.org/dist/File-ConfigDir/")
3343 (synopsis "Get directories of configuration files")
3344 (description "This module is a helper for installing, reading and finding
3345 configuration file locations. @code{File::ConfigDir} is a module to help out
3346 when Perl modules (especially applications) need to read and store
3347 configuration files from more than one location.")
3348 (license (package-license perl))))
3349
3350 (define-public perl-file-copy-recursive
3351 (package
3352 (name "perl-file-copy-recursive")
3353 (version "0.38")
3354 (source
3355 (origin
3356 (method url-fetch)
3357 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3358 "File-Copy-Recursive-" version ".tar.gz"))
3359 (sha256
3360 (base32
3361 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3362 (build-system perl-build-system)
3363 (home-page "http://search.cpan.org/dist/File-Copy-Recursive/")
3364 (synopsis "Recursively copy files and directories")
3365 (description "This module has 3 functions: one to copy files only, one to
3366 copy directories only, and one to do either depending on the argument's
3367 type.")
3368 (license (package-license perl))))
3369
3370 (define-public perl-file-find-rule
3371 (package
3372 (name "perl-file-find-rule")
3373 (version "0.34")
3374 (source
3375 (origin
3376 (method url-fetch)
3377 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3378 "File-Find-Rule-" version ".tar.gz"))
3379 (sha256
3380 (base32
3381 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3382 (build-system perl-build-system)
3383 (propagated-inputs
3384 `(("perl-text-glob" ,perl-text-glob)
3385 ("perl-number-compare" ,perl-number-compare)))
3386 (home-page "http://search.cpan.org/dist/File-Find-Rule/")
3387 (synopsis "Alternative interface to File::Find")
3388 (description "File::Find::Rule is a friendlier interface to File::Find.
3389 It allows you to build rules which specify the desired files and
3390 directories.")
3391 (license (package-license perl))))
3392
3393 (define-public perl-file-find-rule-perl
3394 (package
3395 (name "perl-file-find-rule-perl")
3396 (version "1.15")
3397 (source
3398 (origin
3399 (method url-fetch)
3400 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3401 "File-Find-Rule-Perl-" version ".tar.gz"))
3402 (sha256
3403 (base32
3404 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3405 (build-system perl-build-system)
3406 (propagated-inputs
3407 `(("perl-file-find-rule" ,perl-file-find-rule)
3408 ("perl-params-util" ,perl-params-util)
3409 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3410 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl/")
3411 (synopsis "Common rules for searching for Perl things")
3412 (description "File::Find::Rule::Perl provides methods for finding various
3413 types Perl-related files, or replicating search queries run on a distribution
3414 in various parts of the CPAN ecosystem.")
3415 (license (package-license perl))))
3416
3417 (define-public perl-file-grep
3418 (package
3419 (name "perl-file-grep")
3420 (version "0.02")
3421 (source
3422 (origin
3423 (method url-fetch)
3424 (uri (string-append
3425 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3426 version
3427 ".tar.gz"))
3428 (sha256
3429 (base32
3430 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3431 (build-system perl-build-system)
3432 (home-page "http://search.cpan.org/dist/File-Grep/")
3433 (synopsis "Matches patterns in a series of files")
3434 (description "@code{File::Grep} provides similar functionality as perl's
3435 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3436 over a passed filelist instead of arrays. While trivial, this module can
3437 provide a quick dropin when such functionality is needed.")
3438 (license (package-license perl))))
3439
3440 (define-public perl-file-homedir
3441 (package
3442 (name "perl-file-homedir")
3443 (version "1.002")
3444 (source
3445 (origin
3446 (method url-fetch)
3447 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3448 "File-HomeDir-" version ".tar.gz"))
3449 (sha256
3450 (base32
3451 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
3452 (build-system perl-build-system)
3453 (propagated-inputs
3454 `(("perl-file-which" ,perl-file-which)))
3455 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3456 (home-page "http://search.cpan.org/dist/File-HomeDir/")
3457 (synopsis "Find your home and other directories on any platform")
3458 (description "File::HomeDir is a module for locating the directories that
3459 are \"owned\" by a user (typically your user) and to solve the various issues
3460 that arise trying to find them consistently across a wide variety of
3461 platforms.")
3462 (license (package-license perl))))
3463
3464 (define-public perl-file-path
3465 (package
3466 (name "perl-file-path")
3467 (version "2.13")
3468 (source
3469 (origin
3470 (method url-fetch)
3471 (uri (string-append
3472 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3473 version
3474 ".tar.gz"))
3475 (sha256
3476 (base32
3477 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3478 (build-system perl-build-system)
3479 (home-page "http://search.cpan.org/dist/File-Path/")
3480 (synopsis "Create or remove directory trees")
3481 (description "This module provide a convenient way to create directories
3482 of arbitrary depth and to delete an entire directory subtree from the
3483 file system.")
3484 (license (package-license perl))))
3485
3486 (define-public perl-file-pushd
3487 (package
3488 (name "perl-file-pushd")
3489 (version "1.014")
3490 (source
3491 (origin
3492 (method url-fetch)
3493 (uri (string-append
3494 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3495 version
3496 ".tar.gz"))
3497 (sha256
3498 (base32
3499 "02rlqvyy7gly3dsqwaa81aisyy9c791b8xvwzczcbgmcwgzkgaxm"))))
3500 (build-system perl-build-system)
3501 (home-page
3502 "http://search.cpan.org/dist/File-pushd/")
3503 (synopsis
3504 "Change directory temporarily for a limited scope")
3505 (description "@code{File::pushd} does a temporary @code{chdir} that is
3506 easily and automatically reverted, similar to @code{pushd} in some Unix
3507 command shells. It works by creating an object that caches the original
3508 working directory. When the object is destroyed, the destructor calls
3509 @code{chdir} to revert to the original working directory. By storing the
3510 object in a lexical variable with a limited scope, this happens automatically
3511 at the end of the scope.")
3512 (license asl2.0)))
3513
3514 (define-public perl-file-list
3515 (package
3516 (name "perl-file-list")
3517 (version "0.3.1")
3518 (source (origin
3519 (method url-fetch)
3520 (uri (string-append
3521 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3522 version ".tar.gz"))
3523 (sha256
3524 (base32
3525 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3526 (build-system perl-build-system)
3527 (arguments
3528 `(#:phases
3529 (modify-phases %standard-phases
3530 (add-after 'unpack 'cd
3531 (lambda _ (chdir "List") #t)))))
3532 (license (package-license perl))
3533 (synopsis "Perl extension for crawling directory trees and compiling
3534 lists of files")
3535 (description
3536 "The File::List module crawls the directory tree starting at the
3537 provided base directory and can return files (and/or directories if desired)
3538 matching a regular expression.")
3539 (home-page "http://search.cpan.org/~dopacki/File-List//")))
3540
3541 (define-public perl-file-readbackwards
3542 (package
3543 (name "perl-file-readbackwards")
3544 (version "1.05")
3545 (source
3546 (origin
3547 (method url-fetch)
3548 (uri (string-append
3549 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3550 version
3551 ".tar.gz"))
3552 (sha256
3553 (base32
3554 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3555 (build-system perl-build-system)
3556 (home-page "http://search.cpan.org/dist/File-ReadBackwards/")
3557 (synopsis "Read a file backwards by lines")
3558 (description "This module reads a file backwards line by line. It is
3559 simple to use, memory efficient and fast. It supports both an object and a
3560 tied handle interface.
3561
3562 It is intended for processing log and other similar text files which typically
3563 have their newest entries appended to them. By default files are assumed to
3564 be plain text and have a line ending appropriate to the OS. But you can set
3565 the input record separator string on a per file basis.")
3566 (license perl-license)))
3567
3568 (define-public perl-file-remove
3569 (package
3570 (name "perl-file-remove")
3571 (version "1.57")
3572 (source
3573 (origin
3574 (method url-fetch)
3575 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3576 "File-Remove-" version ".tar.gz"))
3577 (sha256
3578 (base32
3579 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
3580 (build-system perl-build-system)
3581 (home-page "http://search.cpan.org/dist/File-Remove/")
3582 (synopsis "Remove files and directories in Perl")
3583 (description "File::Remove::remove removes files and directories. It acts
3584 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3585 files, it will not remove directories; this module remedies that. It also
3586 accepts wildcards, * and ?, as arguments for file names.")
3587 (license (package-license perl))))
3588
3589 (define-public perl-file-sharedir
3590 (package
3591 (name "perl-file-sharedir")
3592 (version "1.104")
3593 (source
3594 (origin
3595 (method url-fetch)
3596 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3597 "File-ShareDir-" version ".tar.gz"))
3598 (sha256
3599 (base32
3600 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3601 (build-system perl-build-system)
3602 (native-inputs
3603 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3604 (propagated-inputs
3605 `(("perl-class-inspector" ,perl-class-inspector)))
3606 (home-page "http://search.cpan.org/dist/File-ShareDir/")
3607 (synopsis "Locate per-dist and per-module shared files")
3608 (description "The intent of File::ShareDir is to provide a companion to
3609 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3610 module to have access to a large amount of read-only data that is stored on
3611 the file-system at run-time. Once the files have been installed to the
3612 correct directory, you can use File::ShareDir to find your files again after
3613 the installation.")
3614 (license (package-license perl))))
3615
3616 (define-public perl-file-sharedir-dist
3617 (package
3618 (name "perl-file-sharedir-dist")
3619 (version "0.05")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3624 "File-ShareDir-Dist-" version ".tar.gz"))
3625 (sha256
3626 (base32
3627 "1xkmrckp1qfi9ik098n2vz0r8g7wfwp2y05zjd100w6wcqwfzcpn"))))
3628 (build-system perl-build-system)
3629 (home-page "http://search.cpan.org/dist/File-ShareDir-Dist/")
3630 (synopsis "Locate per-dist shared files")
3631 (description "File::ShareDir::Dist finds share directories for
3632 distributions. It is a companion module to File::ShareDir.")
3633 (license (package-license perl))))
3634
3635 (define-public perl-file-sharedir-install
3636 (package
3637 (name "perl-file-sharedir-install")
3638 (version "0.13")
3639 (source
3640 (origin
3641 (method url-fetch)
3642 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3643 "File-ShareDir-Install-" version ".tar.gz"))
3644 (sha256
3645 (base32
3646 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3647 (build-system perl-build-system)
3648 (native-inputs
3649 `(("perl-module-build" ,perl-module-build)))
3650 (home-page "http://search.cpan.org/dist/File-ShareDir-Install/")
3651 (synopsis "Install shared files")
3652 (description "File::ShareDir::Install allows you to install read-only data
3653 files from a distribution. It is a companion module to File::ShareDir, which
3654 allows you to locate these files after installation.")
3655 (license (package-license perl))))
3656
3657 (define-public perl-file-slurp
3658 (package
3659 (name "perl-file-slurp")
3660 (version "9999.19")
3661 (source
3662 (origin
3663 (method url-fetch)
3664 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3665 "File-Slurp-" version ".tar.gz"))
3666 (sha256
3667 (base32
3668 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3669 (build-system perl-build-system)
3670 (home-page "http://search.cpan.org/dist/File-Slurp/")
3671 (synopsis "Reading/Writing/Modifying of complete files")
3672 (description "File::Slurp provides subroutines to read or write entire
3673 files with a simple call. It also has a subroutine for reading the list of
3674 file names in a directory.")
3675 (license (package-license perl))))
3676
3677 (define-public perl-file-slurper
3678 (package
3679 (name "perl-file-slurper")
3680 (version "0.008")
3681 (source
3682 (origin
3683 (method url-fetch)
3684 (uri (string-append
3685 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3686 version
3687 ".tar.gz"))
3688 (sha256
3689 (base32
3690 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3691 (build-system perl-build-system)
3692 (propagated-inputs
3693 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3694 (home-page "http://search.cpan.org/dist/File-Slurper/")
3695 (synopsis "Simple, sane and efficient module to slurp a file")
3696 (description "This module provides functions for fast and correct file
3697 slurping and spewing. All functions are optionally exported.")
3698 (license (package-license perl))))
3699
3700 (define-public perl-file-slurp-tiny
3701 (package
3702 (name "perl-file-slurp-tiny")
3703 (version "0.004")
3704 (source (origin
3705 (method url-fetch)
3706 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3707 "File-Slurp-Tiny-" version ".tar.gz"))
3708 (sha256
3709 (base32
3710 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3711 (build-system perl-build-system)
3712 (home-page "http://search.cpan.org/dist/File-Slurp-Tiny/")
3713 (synopsis "Simple file reader and writer")
3714 (description
3715 "This module provides functions for fast reading and writing of files.")
3716 (license (package-license perl))))
3717
3718 (define-public perl-file-temp
3719 (package
3720 (name "perl-file-temp")
3721 (version "0.2304")
3722 (source
3723 (origin
3724 (method url-fetch)
3725 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3726 "File-Temp-" version ".tar.gz"))
3727 (sha256
3728 (base32
3729 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3730 (build-system perl-build-system)
3731 (propagated-inputs
3732 `(("perl-parent" ,perl-parent)))
3733 (home-page "http://search.cpan.org/dist/File-Temp/")
3734 (synopsis "Return name and handle of a temporary file safely")
3735 (description "File::Temp can be used to create and open temporary files in
3736 a safe way.")
3737 (license (package-license perl))))
3738
3739 (define-public perl-file-which
3740 (package
3741 (name "perl-file-which")
3742 (version "1.09")
3743 (source (origin
3744 (method url-fetch)
3745 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3746 "File-Which-" version ".tar.gz"))
3747 (sha256
3748 (base32
3749 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3750 (build-system perl-build-system)
3751 (native-inputs `(("test-script" ,perl-test-script)))
3752 (synopsis "Portable implementation of the `which' utility")
3753 (description
3754 "File::Which was created to be able to get the paths to executable
3755 programs on systems under which the `which' program wasn't implemented in the
3756 shell.")
3757 (home-page (string-append "http://search.cpan.org/~adamk//"
3758 "File-Which-" version))
3759 (license (package-license perl))))
3760
3761 (define-public perl-file-zglob
3762 (package
3763 (name "perl-file-zglob")
3764 (version "0.11")
3765 (source (origin
3766 (method url-fetch)
3767 (uri (string-append
3768 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3769 version ".tar.gz"))
3770 (sha256
3771 (base32
3772 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3773 (build-system perl-build-system)
3774 (native-inputs
3775 `(("perl-module-install" ,perl-module-install)))
3776 (home-page "http://search.cpan.org/dist/File-Zglob/")
3777 (synopsis "Extended Unix style glob functionality")
3778 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3779 functionality; it returns a list of file names that match the given pattern.
3780 For instance, it supports the @code{**/*.pm} form.")
3781 (license (package-license perl))))
3782
3783 (define-public perl-getopt-long
3784 (package
3785 (name "perl-getopt-long")
3786 (version "v2.49.1")
3787 (source
3788 (origin
3789 (method url-fetch)
3790 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3791 "Getopt-Long-" (substring version 1) ".tar.gz"))
3792 (sha256
3793 (base32
3794 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3795 (build-system perl-build-system)
3796 (home-page "http://search.cpan.org/dist/Getopt-Long/")
3797 (synopsis "Module to handle parsing command line options")
3798 (description "The @code{Getopt::Long} module implements an extended getopt
3799 function called @code{GetOptions()}. It parses the command line from
3800 @code{ARGV}, recognizing and removing specified options and their possible
3801 values.
3802
3803 This function adheres to the POSIX syntax for command line options, with GNU
3804 extensions. In general, this means that options have long names instead of
3805 single letters, and are introduced with a double dash \"--\". Support for
3806 bundling of command line options, as was the case with the more traditional
3807 single-letter approach, is provided but not enabled by default.")
3808 ;; Can be used with either license.
3809 (license (list (package-license perl) gpl2+))))
3810
3811 (define-public perl-getopt-long-descriptive
3812 (package
3813 (name "perl-getopt-long-descriptive")
3814 (version "0.102")
3815 (source
3816 (origin
3817 (method url-fetch)
3818 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3819 "Getopt-Long-Descriptive-" version ".tar.gz"))
3820 (sha256
3821 (base32
3822 "0ii8xafvlph5vzcqp3dpc83lg7nkg3l1l2hmqdf5382a567vkm4s"))))
3823 (build-system perl-build-system)
3824 (native-inputs
3825 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3826 ("perl-test-fatal" ,perl-test-fatal)
3827 ("perl-test-warnings" ,perl-test-warnings)))
3828 (propagated-inputs
3829 `(("perl-params-validate" ,perl-params-validate)
3830 ("perl-sub-exporter" ,perl-sub-exporter)))
3831 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive/")
3832 (synopsis "Getopt::Long, but simpler and more powerful")
3833 (description "Getopt::Long::Descriptive is yet another Getopt library.
3834 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3835 avoid making you think about its huge array of options. It also provides
3836 usage (help) messages, data validation, and a few other useful features.")
3837 (license (package-license perl))))
3838
3839 (define-public perl-getopt-tabular
3840 (package
3841 (name "perl-getopt-tabular")
3842 (version "0.3")
3843 (source (origin
3844 (method url-fetch)
3845 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3846 "Getopt-Tabular-" version ".tar.gz"))
3847 (sha256
3848 (base32
3849 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3850 (build-system perl-build-system)
3851 (synopsis "Table-driven argument parsing for Perl")
3852 (description
3853 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3854 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3855 (home-page (string-append "http://search.cpan.org/~gward//"
3856 "Getopt-Tabular-" version))
3857 (license (package-license perl))))
3858
3859 (define-public perl-graph
3860 (package
3861 (name "perl-graph")
3862 (version "0.9704")
3863 (source
3864 (origin
3865 (method url-fetch)
3866 (uri (string-append
3867 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3868 version
3869 ".tar.gz"))
3870 (sha256
3871 (base32
3872 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3873 (build-system perl-build-system)
3874 (home-page "http://search.cpan.org/dist/Graph/")
3875 (synopsis "Graph data structures and algorithms")
3876 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3877 the abstract data structures.")
3878 (license (package-license perl))))
3879
3880 (define-public perl-guard
3881 (package
3882 (name "perl-guard")
3883 (version "1.023")
3884 (source (origin
3885 (method url-fetch)
3886 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3887 version ".tar.gz"))
3888 (sha256
3889 (base32
3890 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3891 (build-system perl-build-system)
3892 (home-page "http://search.cpan.org/dist/Guard/")
3893 (synopsis "Safe cleanup blocks implemented as guards")
3894 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3895 something (usually an object) that \"guards\" a resource, ensuring that it is
3896 cleaned up when expected.
3897
3898 Specifically, this module supports two different types of guards: guard
3899 objects, which execute a given code block when destroyed, and scoped guards,
3900 which are tied to the scope exit.")
3901 (license (package-license perl))))
3902
3903 (define-public perl-hash-fieldhash
3904 (package
3905 (name "perl-hash-fieldhash")
3906 (version "0.15")
3907 (source
3908 (origin
3909 (method url-fetch)
3910 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3911 "Hash-FieldHash-" version ".tar.gz"))
3912 (sha256
3913 (base32
3914 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3915 (build-system perl-build-system)
3916 (arguments
3917 `(#:phases
3918 (modify-phases %standard-phases
3919 (add-before 'configure 'set-perl-search-path
3920 (lambda _
3921 ;; Work around "dotless @INC" build failure.
3922 (setenv "PERL5LIB"
3923 (string-append (getcwd) ":"
3924 (getenv "PERL5LIB")))
3925 #t)))))
3926 (native-inputs
3927 `(("perl-module-build" ,perl-module-build)
3928 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3929 (home-page "http://search.cpan.org/dist/Hash-FieldHash/")
3930 (synopsis "Lightweight field hash for inside-out objects")
3931 (description "@code{Hash::FieldHash} provides the field hash mechanism
3932 which supports the inside-out technique. It is an alternative to
3933 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3934 relic support.")
3935 (license (package-license perl))))
3936
3937 (define-public perl-hash-merge
3938 (package
3939 (name "perl-hash-merge")
3940 (version "0.200")
3941 (source
3942 (origin
3943 (method url-fetch)
3944 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3945 "Hash-Merge-" version ".tar.gz"))
3946 (sha256
3947 (base32
3948 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3949 (build-system perl-build-system)
3950 (home-page "http://search.cpan.org/dist/Hash-Merge/")
3951 (synopsis "Merge arbitrarily deep hashes into a single hash")
3952 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3953 hash. That is, at any level, it will add non-conflicting key-value pairs from
3954 one hash to the other, and follows a set of specific rules when there are key
3955 value conflicts. The hash is followed recursively, so that deeply nested
3956 hashes that are at the same level will be merged when the parent hashes are
3957 merged.")
3958 (license (package-license perl))))
3959
3960 (define-public perl-hash-multivalue
3961 (package
3962 (name "perl-hash-multivalue")
3963 (version "0.15")
3964 (source
3965 (origin
3966 (method url-fetch)
3967 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3968 "Hash-MultiValue-" version ".tar.gz"))
3969 (sha256
3970 (base32
3971 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
3972 (build-system perl-build-system)
3973 (home-page "http://search.cpan.org/dist/Hash-MultiValue/")
3974 (synopsis "Store multiple values per key")
3975 (description "Hash::MultiValue is an object (and a plain hash reference)
3976 that may contain multiple values per key, inspired by MultiDict of WebOb.")
3977 (license (package-license perl))))
3978
3979 (define-public perl-importer
3980 (package
3981 (name "perl-importer")
3982 (version "0.025")
3983 (source
3984 (origin
3985 (method url-fetch)
3986 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
3987 version ".tar.gz"))
3988 (sha256
3989 (base32
3990 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
3991 (build-system perl-build-system)
3992 (home-page "http://search.cpan.org/dist/Importer//")
3993 (synopsis "Alternative but compatible interface to modules that export symbols")
3994 (description "This module acts as a layer between Exporter and modules which
3995 consume exports. It is feature-compatible with Exporter, plus some much needed
3996 extras. You can use this to import symbols from any exporter that follows
3997 Exporters specification. The exporter modules themselves do not need to use or
3998 inherit from the Exporter module, they just need to set @@EXPORT and/or other
3999 variables.")
4000 (license (package-license perl))))
4001
4002 (define-public perl-import-into
4003 (package
4004 (name "perl-import-into")
4005 (version "1.002005")
4006 (source
4007 (origin
4008 (method url-fetch)
4009 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4010 "Import-Into-" version ".tar.gz"))
4011 (sha256
4012 (base32
4013 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4014 (build-system perl-build-system)
4015 (propagated-inputs
4016 `(("perl-module-runtime" ,perl-module-runtime)))
4017 (home-page "http://search.cpan.org/dist/Import-Into/")
4018 (synopsis "Import packages into other packages")
4019 (description "Writing exporters is a pain. Some use Exporter, some use
4020 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4021 some things are pragmas. Exporting on someone else's behalf is harder. The
4022 exporters don't provide a consistent API for this, and pragmas need to have
4023 their import method called directly, since they effect the current unit of
4024 compilation. Import::Into provides global methods to make this painless.")
4025 (license (package-license perl))))
4026
4027 (define-public perl-inc-latest
4028 (package
4029 (name "perl-inc-latest")
4030 (version "0.500")
4031 (source
4032 (origin
4033 (method url-fetch)
4034 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4035 "inc-latest-" version ".tar.gz"))
4036 (sha256
4037 (base32
4038 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4039 (build-system perl-build-system)
4040 (home-page "http://search.cpan.org/dist/inc-latest/")
4041 (synopsis "Use modules in inc/ if newer than installed")
4042 (description "The inc::latest module helps bootstrap configure-time
4043 dependencies for CPAN distributions. These dependencies get bundled into the
4044 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4045 (license asl2.0)))
4046
4047 (define-public perl-indirect
4048 (package
4049 (name "perl-indirect")
4050 (version "0.38")
4051 (source
4052 (origin
4053 (method url-fetch)
4054 (uri (string-append
4055 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4056 version ".tar.gz"))
4057 (sha256
4058 (base32
4059 "13k5a8p903m8x3pcv9qqkzvnb8gpgq36cr3dvn3lk1ngsi9w5ydy"))))
4060 (build-system perl-build-system)
4061 (home-page "http://search.cpan.org/dist/indirect/")
4062 (synopsis "Lexically warn about using the indirect method call syntax")
4063 (description
4064 "Indirect warns about using the indirect method call syntax.")
4065 (license (package-license perl))))
4066
4067 (define-public perl-inline
4068 (package
4069 (name "perl-inline")
4070 (version "0.80")
4071 (source
4072 (origin
4073 (method url-fetch)
4074 (uri (string-append
4075 "mirror://cpan/authors/id/I/IN/INGY/Inline-"
4076 version ".tar.gz"))
4077 (sha256
4078 (base32
4079 "1xnf5hykcr54271x5jsnr61bcv1c7x39cy4kdcrkxm7bn62djavy"))))
4080 (build-system perl-build-system)
4081 (native-inputs
4082 `(("perl-test-warn" ,perl-test-warn)))
4083 (home-page "http://search.cpan.org/dist/Inline/")
4084 (synopsis "Write Perl subroutines in other programming languages")
4085 (description "The @code{Inline} module allows you to put source code
4086 from other programming languages directly (inline) in a Perl script or
4087 module. The code is automatically compiled as needed, and then loaded
4088 for immediate access from Perl.")
4089 (license (package-license perl))))
4090
4091 (define-public perl-inline-c
4092 (package
4093 (name "perl-inline-c")
4094 (version "0.78")
4095 (source
4096 (origin
4097 (method url-fetch)
4098 (uri (string-append
4099 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4100 version ".tar.gz"))
4101 (sha256
4102 (base32
4103 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4104 (build-system perl-build-system)
4105 (native-inputs
4106 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4107 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4108 ("perl-test-warn" ,perl-test-warn)
4109 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4110 (propagated-inputs
4111 `(("perl-inline" ,perl-inline)
4112 ("perl-parse-recdescent" ,perl-parse-recdescent)
4113 ("perl-pegex" ,perl-pegex)))
4114 (home-page "http://search.cpan.org/dist/Inline-C/")
4115 (synopsis "C Language Support for Inline")
4116 (description "The @code{Inline::C} module allows you to write Perl
4117 subroutines in C. Since version 0.30 the @code{Inline} module supports
4118 multiple programming languages and each language has its own support module.
4119 This document describes how to use Inline with the C programming language.
4120 It also goes a bit into Perl C internals.")
4121 (license (package-license perl))))
4122
4123 (define-public perl-io-all
4124 (package
4125 (name "perl-io-all")
4126 (version "0.87")
4127 (source
4128 (origin
4129 (method url-fetch)
4130 (uri (string-append
4131 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4132 version
4133 ".tar.gz"))
4134 (sha256
4135 (base32
4136 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4137 (build-system perl-build-system)
4138 (propagated-inputs
4139 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4140 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4141 (home-page "http://search.cpan.org/dist/IO-All/")
4142 (synopsis "@code{IO::All} to Larry Wall!")
4143 (description "@code{IO::All} combines all of the best Perl IO modules into
4144 a single nifty object oriented interface to greatly simplify your everyday
4145 Perl IO idioms. It exports a single function called io, which returns a new
4146 @code{IO::All} object. And that object can do it all!")
4147 (license perl-license)))
4148
4149 (define-public perl-io-captureoutput
4150 (package
4151 (name "perl-io-captureoutput")
4152 (version "1.1104")
4153 (source
4154 (origin
4155 (method url-fetch)
4156 (uri (string-append
4157 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4158 version
4159 ".tar.gz"))
4160 (sha256
4161 (base32
4162 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
4163 (build-system perl-build-system)
4164 (home-page "http://search.cpan.org/dist/IO-CaptureOutput/")
4165 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4166 (description "@code{IO::CaptureOutput} provides routines for capturing
4167 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4168 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4169
4170 This module is no longer recommended by its maintainer. Users are advised to
4171 try @code{Capture::Tiny} instead.")
4172 (license (package-license perl))))
4173
4174 (define-public perl-io-interactive
4175 (package
4176 (name "perl-io-interactive")
4177 (version "0.0.6")
4178 (source
4179 (origin
4180 (method url-fetch)
4181 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4182 "IO-Interactive-" version ".tar.gz"))
4183 (sha256
4184 (base32
4185 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
4186 (build-system perl-build-system)
4187 (home-page "http://search.cpan.org/dist/IO-Interactive/")
4188 (synopsis "Utilities for interactive I/O")
4189 (description "This module provides three utility subroutines that make it
4190 easier to develop interactive applications: is_interactive(), interactive(),
4191 and busy().")
4192 (license (package-license perl))))
4193
4194 (define-public perl-io-string
4195 (package
4196 (name "perl-io-string")
4197 (version "1.08")
4198 (source
4199 (origin
4200 (method url-fetch)
4201 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4202 "IO-String-" version ".tar.gz"))
4203 (sha256
4204 (base32
4205 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4206 (build-system perl-build-system)
4207 (home-page "http://search.cpan.org/~gaas/IO-String-1.08//")
4208 (synopsis "Emulate file interface for in-core strings")
4209 (description "IO::String is an IO::File (and IO::Handle) compatible class
4210 that reads or writes data from in-core strings.")
4211 (license (package-license perl))))
4212
4213 (define-public perl-io-stringy
4214 (package
4215 (name "perl-io-stringy")
4216 (version "2.111")
4217 (source
4218 (origin
4219 (method url-fetch)
4220 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4221 "IO-stringy-" version ".tar.gz"))
4222 (sha256
4223 (base32
4224 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4225 (build-system perl-build-system)
4226 (home-page "http://search.cpan.org/dist/IO-stringy/")
4227 (synopsis "IO:: interface for reading/writing an array of lines")
4228 (description "This toolkit primarily provides modules for performing both
4229 traditional and object-oriented i/o) on things *other* than normal
4230 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4231 (license (package-license perl))))
4232
4233 (define-public perl-io-tty
4234 (package
4235 (name "perl-io-tty")
4236 (version "1.12")
4237 (source (origin
4238 (method url-fetch)
4239 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4240 version ".tar.gz"))
4241 (sha256
4242 (base32
4243 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4244 (build-system perl-build-system)
4245 (home-page "http://search.cpan.org/~toddr/IO-Tty//")
4246 (synopsis "Perl interface to pseudo ttys")
4247 (description
4248 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
4249 pseudo ttys.")
4250 (license (package-license perl))))
4251
4252 (define-public perl-ipc-cmd
4253 (package
4254 (name "perl-ipc-cmd")
4255 (version "0.96")
4256 (source
4257 (origin
4258 (method url-fetch)
4259 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4260 version ".tar.gz"))
4261 (sha256
4262 (base32
4263 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
4264 (build-system perl-build-system)
4265 (home-page "http://search.cpan.org/dist/IPC-Cmd/")
4266 (synopsis "Run interactive command-line programs")
4267 (description "@code{IPC::Cmd} allows for the searching and execution of
4268 any binary on your system. It adheres to verbosity settings and is able to
4269 run interactively. It also has an option to capture output/error buffers.")
4270 (license (package-license perl))))
4271
4272 (define-public perl-ipc-run
4273 (package
4274 (name "perl-ipc-run")
4275 (version "0.94")
4276 (source
4277 (origin
4278 (method url-fetch)
4279 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4280 "IPC-Run-" version ".tar.gz"))
4281 (sha256
4282 (base32
4283 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
4284 (build-system perl-build-system)
4285 (propagated-inputs
4286 `(("perl-io-tty" ,perl-io-tty)))
4287 (arguments
4288 `(#:phases (modify-phases %standard-phases
4289 (add-before
4290 'check 'disable-w32-test
4291 (lambda _
4292 ;; This test fails, and we're not really interested in
4293 ;; it, so disable it.
4294 (delete-file "t/win32_compile.t"))))))
4295 (home-page "http://search.cpan.org/dist/IPC-Run/")
4296 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4297 (description "IPC::Run allows you run and interact with child processes
4298 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4299 are supported and may be mixed. Likewise, functional and OO API styles are
4300 both supported and may be mixed.")
4301 (license (package-license perl))))
4302
4303 (define-public perl-ipc-run3
4304 (package
4305 (name "perl-ipc-run3")
4306 (version "0.048")
4307 (source (origin
4308 (method url-fetch)
4309 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4310 "IPC-Run3-" version ".tar.gz"))
4311 (sha256
4312 (base32
4313 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4314 (build-system perl-build-system)
4315 (synopsis "Run a subprocess with input/output redirection")
4316 (description
4317 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4318 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4319 99% of the need for using system, qx, and open3 with a simple, extremely
4320 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4321 (home-page (string-append "http://search.cpan.org/~rjbs//"
4322 "IPC-Run3-" version))
4323 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4324 ;; licenses, any version."
4325 (license (list bsd-3 gpl3+))))
4326
4327 (define-public perl-ipc-sharelite
4328 (package
4329 (name "perl-ipc-sharelite")
4330 (version "0.17")
4331 (source
4332 (origin
4333 (method url-fetch)
4334 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4335 "IPC-ShareLite-" version ".tar.gz"))
4336 (sha256
4337 (base32
4338 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4339 (build-system perl-build-system)
4340 (home-page "http://search.cpan.org/dist/IPC-ShareLite/")
4341 (synopsis "Lightweight interface to shared memory")
4342 (description "IPC::ShareLite provides a simple interface to shared memory,
4343 allowing data to be efficiently communicated between processes.")
4344 (license (package-license perl))))
4345
4346 (define-public perl-ipc-system-simple
4347 (package
4348 (name "perl-ipc-system-simple")
4349 (version "1.25")
4350 (source (origin
4351 (method url-fetch)
4352 (uri (string-append
4353 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4354 version ".tar.gz"))
4355 (sha256
4356 (base32
4357 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4358 (build-system perl-build-system)
4359 (home-page "http://search.cpan.org/dist/IPC-System-Simple/")
4360 (synopsis "Run commands simply, with detailed diagnostics")
4361 (description "Calling Perl's in-built @code{system} function is easy,
4362 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4363 nicest variable in the world to play with, and even if you do check it,
4364 producing a well-formatted error string takes a lot of work.
4365
4366 @code{IPC::System::Simple} takes the hard work out of calling external
4367 commands.")
4368 (license (package-license perl))))
4369
4370 (define-public perl-json
4371 (package
4372 (name "perl-json")
4373 (version "2.90")
4374 (source
4375 (origin
4376 (method url-fetch)
4377 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
4378 "JSON-" version ".tar.gz"))
4379 (sha256
4380 (base32
4381 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
4382 (build-system perl-build-system)
4383 (propagated-inputs
4384 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4385 (home-page "http://search.cpan.org/dist/JSON/")
4386 (synopsis "JSON encoder/decoder for Perl")
4387 (description "This module converts Perl data structures to JSON and vice
4388 versa using either JSON::XS or JSON::PP.")
4389 (license (package-license perl))))
4390
4391 (define-public perl-json-any
4392 (package
4393 (name "perl-json-any")
4394 (version "1.39")
4395 (source
4396 (origin
4397 (method url-fetch)
4398 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4399 "JSON-Any-" version ".tar.gz"))
4400 (sha256
4401 (base32
4402 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4403 (build-system perl-build-system)
4404 (native-inputs
4405 `(("perl-test-fatal" ,perl-test-fatal)
4406 ("perl-test-requires" ,perl-test-requires)
4407 ("perl-test-warnings" ,perl-test-warnings)
4408 ("perl-test-without-module" ,perl-test-without-module)))
4409 (propagated-inputs
4410 `(("perl-namespace-clean" ,perl-namespace-clean)))
4411 (home-page "http://search.cpan.org/dist/JSON-Any/")
4412 (synopsis "Wrapper for Perl JSON classes")
4413 (description
4414 "This module tries to provide a coherent API to bring together the
4415 various JSON modules currently on CPAN. This module will allow you to code to
4416 any JSON API and have it work regardless of which JSON module is actually
4417 installed.")
4418 (license (package-license perl))))
4419
4420 (define-public perl-json-maybexs
4421 (package
4422 (name "perl-json-maybexs")
4423 (version "1.003010")
4424 (source
4425 (origin
4426 (method url-fetch)
4427 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4428 "JSON-MaybeXS-" version ".tar.gz"))
4429 (sha256
4430 (base32
4431 "0hs504x5zsa2vl6r7b3rvbygsak1ly24m1lg636bqp3x7jirmb30"))))
4432 (build-system perl-build-system)
4433 (native-inputs
4434 `(("perl-test-without-module" ,perl-test-without-module)))
4435 (inputs
4436 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4437 (home-page "http://search.cpan.org/dist/JSON-MaybeXS/")
4438 (synopsis "Cpanel::JSON::XS with fallback")
4439 (description "This module first checks to see if either Cpanel::JSON::XS
4440 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4441 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4442 either uses the first module it finds or throws an error.")
4443 (license (package-license perl))))
4444
4445 (define-public perl-json-xs
4446 (package
4447 (name "perl-json-xs")
4448 (version "3.01")
4449 (source
4450 (origin
4451 (method url-fetch)
4452 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4453 "JSON-XS-" version ".tar.gz"))
4454 (sha256
4455 (base32
4456 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
4457 (build-system perl-build-system)
4458 (propagated-inputs
4459 `(("perl-common-sense" ,perl-common-sense)
4460 ("perl-types-serialiser" ,perl-types-serialiser)))
4461 (home-page "http://search.cpan.org/dist/JSON-XS/")
4462 (synopsis "JSON serialising/deserialising for Perl")
4463 (description "This module converts Perl data structures to JSON and vice
4464 versa.")
4465 (license (package-license perl))))
4466
4467 (define-public perl-lexical-sealrequirehints
4468 (package
4469 (name "perl-lexical-sealrequirehints")
4470 (version "0.011")
4471 (source
4472 (origin
4473 (method url-fetch)
4474 (uri (string-append
4475 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4476 version
4477 ".tar.gz"))
4478 (sha256
4479 (base32
4480 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4481 (build-system perl-build-system)
4482 (native-inputs
4483 `(("perl-module-build" ,perl-module-build)))
4484 (home-page "http://search.cpan.org/dist/Lexical-SealRequireHints/")
4485 (synopsis "Prevent leakage of lexical hints")
4486 (description
4487 "Lexical::SealRequireHints prevents leakage of lexical hints")
4488 (license (package-license perl))))
4489
4490 (define-public perl-log-any
4491 (package
4492 (name "perl-log-any")
4493 (version "1.040")
4494 (source
4495 (origin
4496 (method url-fetch)
4497 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4498 version ".tar.gz"))
4499 (sha256
4500 (base32
4501 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
4502 (build-system perl-build-system)
4503 (home-page "http://search.cpan.org/dist/Log-Any/")
4504 (synopsis "Bringing loggers and listeners together")
4505 (description "@code{Log::Any} provides a standard log production API for
4506 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4507 for log consumption, whether screen, file or another logging mechanism like
4508 @code{Log::Dispatch} or @code{Log::Log4perl}.
4509
4510 A CPAN module uses @code{Log::Any} to get a log producer object. An
4511 application, in turn, may choose one or more logging mechanisms via
4512 @code{Log::Any::Adapter}, or none at all.
4513
4514 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4515 itself, which makes it appropriate for even small CPAN modules to use. It
4516 defaults to 'null' logging activity, so a module can safely log without
4517 worrying about whether the application has chosen (or will ever choose) a
4518 logging mechanism.")
4519 (license (package-license perl))))
4520
4521 (define-public perl-log-any-adapter-log4perl
4522 (package
4523 (name "perl-log-any-adapter-log4perl")
4524 (version "0.09")
4525 (source
4526 (origin
4527 (method url-fetch)
4528 (uri (string-append
4529 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4530 version
4531 ".tar.gz"))
4532 (sha256
4533 (base32
4534 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4535 (build-system perl-build-system)
4536 (propagated-inputs
4537 `(("perl-log-any" ,perl-log-any)
4538 ("perl-log-log4perl" ,perl-log-log4perl)))
4539 (home-page
4540 "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl/")
4541 (synopsis "Log::Any adapter for Log::Log4perl")
4542 (description "@code{Log::Any::Adapter::Log4perl} provides a
4543 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4544 (license (package-license perl))))
4545
4546 (define-public perl-log-log4perl
4547 (package
4548 (name "perl-log-log4perl")
4549 (version "1.49")
4550 (source
4551 (origin
4552 (method url-fetch)
4553 (uri (string-append
4554 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4555 version
4556 ".tar.gz"))
4557 (sha256
4558 (base32
4559 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4560 (build-system perl-build-system)
4561 (home-page
4562 "http://search.cpan.org/dist/Log-Log4perl/")
4563 (synopsis "Log4j implementation for Perl")
4564 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4565 the logging behaviour of your system from the outside. It implements the
4566 widely popular (Java-based) Log4j logging package in pure Perl.")
4567 (license (package-license perl))))
4568
4569 (define-public perl-log-report-optional
4570 (package
4571 (name "perl-log-report-optional")
4572 (version "1.01")
4573 (source (origin
4574 (method url-fetch)
4575 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4576 "Log-Report-Optional-" version ".tar.gz"))
4577 (sha256
4578 (base32
4579 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4580 (build-system perl-build-system)
4581 (propagated-inputs
4582 `(("perl-string-print" ,perl-string-print)))
4583 (home-page "http://search.cpan.org/dist/Log-Report-Optional/")
4584 (synopsis "Log::Report in the lightest form")
4585 (description
4586 "This module allows libraries to have a dependency to a small module
4587 instead of the full Log-Report distribution. The full power of
4588 @code{Log::Report} is only released when the main program uses that module.
4589 In that case, the module using the 'Optional' will also use the full
4590 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4591 version.")
4592 (license (package-license perl))))
4593
4594 (define-public perl-log-report
4595 (package
4596 (name "perl-log-report")
4597 (version "1.10")
4598 (source (origin
4599 (method url-fetch)
4600 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4601 "Log-Report-" version ".tar.gz"))
4602 (sha256
4603 (base32
4604 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4605 (build-system perl-build-system)
4606 (propagated-inputs
4607 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4608 ("perl-log-report-optional" ,perl-log-report-optional)
4609 ("perl-string-print" ,perl-string-print)))
4610 (home-page "http://search.cpan.org/dist/Log-Report/")
4611 (synopsis "Get messages to users and logs")
4612 (description
4613 "@code{Log::Report} combines three tasks which are closely related in
4614 one: logging, exceptions, and translations.")
4615 (license (package-license perl))))
4616
4617 (define-public perl-libintl-perl
4618 (package
4619 (name "perl-libintl-perl")
4620 (version "1.28")
4621 (source
4622 (origin
4623 (method url-fetch)
4624 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4625 "libintl-perl-" version ".tar.gz"))
4626 (sha256
4627 (base32
4628 "1gafrfvicjclqlz6i62jx2iqbq878yn3ws86waz2sqbd3gxz5svv"))))
4629 (build-system perl-build-system)
4630 (arguments
4631 `(#:phases
4632 (modify-phases %standard-phases
4633 (add-before 'configure 'set-perl-search-path
4634 (lambda _
4635 ;; Work around "dotless @INC" build failure.
4636 (setenv "PERL5LIB" (string-append (getcwd) ":"
4637 (getenv "PERL5LIB")))
4638 #t)))))
4639 (propagated-inputs
4640 `(("perl-file-sharedir" ,perl-file-sharedir)))
4641 (home-page "http://search.cpan.org/dist/libintl-perl/")
4642 (synopsis "High-level interface to Uniforum message translation")
4643 (description "This package is an internationalization library for Perl
4644 that aims to be compatible with the Uniforum message translations system as
4645 implemented for example in GNU gettext.")
4646 (license gpl3+)))
4647
4648 (define-public perl-lingua-translit
4649 (package
4650 (name "perl-lingua-translit")
4651 (version "0.26")
4652 (source
4653 (origin
4654 (method url-fetch)
4655 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4656 "Lingua-Translit-" version ".tar.gz"))
4657 (sha256
4658 (base32
4659 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4660 (build-system perl-build-system)
4661 (home-page "http://search.cpan.org/dist/Lingua-Translit/")
4662 (synopsis "Transliterate text between writing systems")
4663 (description "@code{Lingua::Translit} can be used to convert text from one
4664 writing system to another, based on national or international transliteration
4665 tables. Where possible a reverse transliteration is supported.")
4666 (license (package-license perl))))
4667
4668 (define-public perl-list-allutils
4669 (package
4670 (name "perl-list-allutils")
4671 (version "0.09")
4672 (source
4673 (origin
4674 (method url-fetch)
4675 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4676 "List-AllUtils-" version ".tar.gz"))
4677 (sha256
4678 (base32
4679 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4680 (build-system perl-build-system)
4681 (native-inputs
4682 `(("perl-test-warnings" ,perl-test-warnings)))
4683 (propagated-inputs
4684 `(("perl-list-moreutils" ,perl-list-moreutils)
4685 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4686 (home-page "http://search.cpan.org/dist/List-AllUtils/")
4687 (synopsis "Combination of List::Util and List::MoreUtils")
4688 (description "This module exports all of the functions that either
4689 List::Util or List::MoreUtils defines, with preference to List::Util.")
4690 (license (package-license perl))))
4691
4692 (define-public perl-list-compare
4693 (package
4694 (name "perl-list-compare")
4695 (version "0.53")
4696 (source
4697 (origin
4698 (method url-fetch)
4699 (uri (string-append
4700 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4701 version
4702 ".tar.gz"))
4703 (sha256
4704 (base32
4705 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4706 (build-system perl-build-system)
4707 (native-inputs
4708 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4709 (home-page "http://search.cpan.org/dist/List-Compare/")
4710 (synopsis "Compare elements of two or more lists")
4711 (description "@code{List::Compare} provides a module to perform
4712 comparative operations on two or more lists. Provided operations include
4713 intersections, unions, unique elements, complements and many more.")
4714 (license (package-license perl))))
4715
4716 (define-public perl-list-moreutils
4717 (package
4718 (name "perl-list-moreutils")
4719 (version "0.428")
4720 (source
4721 (origin
4722 (method url-fetch)
4723 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4724 "List-MoreUtils-" version ".tar.gz"))
4725 (sha256
4726 (base32
4727 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4728 (build-system perl-build-system)
4729 (arguments
4730 `(#:phases
4731 (modify-phases %standard-phases
4732 (add-before 'configure 'set-perl-search-path
4733 (lambda _
4734 ;; Work around "dotless @INC" build failure.
4735 (setenv "PERL5LIB"
4736 (string-append (getcwd) ":"
4737 (getenv "PERL5LIB")))
4738 #t)))))
4739 (native-inputs
4740 `(("perl-config-autoconf" ,perl-config-autoconf)
4741 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4742 (propagated-inputs
4743 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4744 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4745 (home-page "http://search.cpan.org/dist/List-MoreUtils/")
4746 (synopsis "Provide the stuff missing in List::Util")
4747 (description "List::MoreUtils provides some trivial but commonly needed
4748 functionality on lists which is not going to go into List::Util.")
4749 (license (package-license perl))))
4750
4751 (define-public perl-list-moreutils-xs
4752 (package
4753 (name "perl-list-moreutils-xs")
4754 (version "0.428")
4755 (source
4756 (origin
4757 (method url-fetch)
4758 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4759 version ".tar.gz"))
4760 (sha256
4761 (base32
4762 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4763 (build-system perl-build-system)
4764 (native-inputs
4765 `(("perl-config-autoconf" ,perl-config-autoconf)
4766 ("perl-inc-latest" ,perl-inc-latest)
4767 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4768 (home-page "http://search.cpan.org/dist/List-MoreUtils-XS")
4769 (synopsis "Provide the stuff missing in List::Util in XS")
4770 (description "@code{List::MoreUtils::XS} provides some trivial but
4771 commonly needed functionality on lists which is not going to go into
4772 @code{List::Util}.")
4773 (license asl2.0)))
4774
4775 (define-public perl-list-someutils
4776 (package
4777 (name "perl-list-someutils")
4778 (version "0.52")
4779 (source
4780 (origin
4781 (method url-fetch)
4782 (uri (string-append
4783 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4784 version
4785 ".tar.gz"))
4786 (sha256
4787 (base32
4788 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4789 (build-system perl-build-system)
4790 (native-inputs
4791 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4792 (inputs
4793 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4794 ("perl-module-implementation"
4795 ,perl-module-implementation)))
4796 (home-page "http://search.cpan.org/dist/List-SomeUtils/")
4797 (synopsis "Provide the stuff missing in List::Util")
4798 (description "@code{List::SomeUtils} provides some trivial but commonly
4799 needed functionality on lists which is not going to go into @code{List::Util}.
4800
4801 All of the below functions are implementable in only a couple of lines of Perl
4802 code. Using the functions from this module however should give slightly
4803 better performance as everything is implemented in C. The pure-Perl
4804 implementation of these functions only serves as a fallback in case the C
4805 portions of this module couldn't be compiled on this machine.")
4806 (license (package-license perl))))
4807
4808 (define-public perl-mailtools
4809 (package
4810 (name "perl-mailtools")
4811 (version "2.20")
4812 (source
4813 (origin
4814 (method url-fetch)
4815 (uri (string-append
4816 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4817 version
4818 ".tar.gz"))
4819 (sha256
4820 (base32
4821 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4822 (build-system perl-build-system)
4823 (propagated-inputs
4824 `(("perl-timedate" ,perl-timedate)))
4825 (home-page
4826 "http://search.cpan.org/dist/MailTools/")
4827 (synopsis "Bundle of ancient email modules")
4828 (description "MailTools contains the following modules:
4829 @table @asis
4830 @item Mail::Address
4831 Parse email address from a header line.
4832 @item Mail::Cap
4833 Interpret mailcap files: mappings of file-types to applications as used by
4834 many command-line email programs.
4835 @item Mail::Field
4836 Simplifies access to (some) email header fields. Used by Mail::Header.
4837 @item Mail::Filter
4838 Process Mail::Internet messages.
4839 @item Mail::Header
4840 Collection of Mail::Field objects, representing the header of a Mail::Internet
4841 object.
4842 @item Mail::Internet
4843 Represents a single email message, with header and body.
4844 @item Mail::Mailer
4845 Send Mail::Internet emails via direct smtp or local MTA's.
4846 @item Mail::Send
4847 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4848 @item Mail::Util
4849 \"Smart functions\" you should not depend on.
4850 @end table")
4851 (license perl-license)))
4852
4853 (define-public perl-math-bezier
4854 (package
4855 (name "perl-math-bezier")
4856 (version "0.01")
4857 (source (origin
4858 (method url-fetch)
4859 (uri (string-append
4860 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4861 version ".tar.gz"))
4862 (sha256
4863 (base32
4864 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4865 (build-system perl-build-system)
4866 (home-page "http://search.cpan.org/dist/Math-Bezier/")
4867 (synopsis "Solution of bezier curves")
4868 (description "This module implements the algorithm for the solution of Bezier
4869 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4870 Bezier Curve Drawing\".")
4871 (license perl-license)))
4872
4873 (define-public perl-math-round
4874 (package
4875 (name "perl-math-round")
4876 (version "0.07")
4877 (source (origin
4878 (method url-fetch)
4879 (uri (string-append
4880 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4881 version ".tar.gz"))
4882 (sha256
4883 (base32
4884 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4885 (build-system perl-build-system)
4886 (home-page "http://search.cpan.org/dist/Math-Round/")
4887 (synopsis "Perl extension for rounding numbers")
4888 (description "@code{Math::Round} provides functions to round numbers,
4889 both positive and negative, in various ways.")
4890 (license perl-license)))
4891
4892 (define-public perl-memoize
4893 (package
4894 (name "perl-memoize")
4895 (version "1.03")
4896 (source (origin
4897 (method url-fetch)
4898 (uri (string-append
4899 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4900 version".tgz"))
4901 (sha256
4902 (base32
4903 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4904 (build-system perl-build-system)
4905 (home-page "http://search.cpan.org/dist/Memoize/")
4906 (synopsis "Make functions faster by trading space for time")
4907 (description "This package transparently speeds up functions by caching
4908 return values, trading space for time.")
4909 (license perl-license)))
4910
4911 (define-public perl-memoize-expirelru
4912 (package
4913 (name "perl-memoize-expirelru")
4914 (version "0.55")
4915 (source
4916 (origin
4917 (method url-fetch)
4918 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
4919 "Memoize-ExpireLRU-" version ".tar.gz"))
4920 (sha256
4921 (base32
4922 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
4923 (build-system perl-build-system)
4924 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU/")
4925 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4926 (description "This module implements an expiry policy for Memoize that
4927 follows LRU semantics, that is, the last n results, where n is specified as
4928 the argument to the CACHESIZE parameter, will be cached.")
4929 (license (package-license perl))))
4930
4931 (define-public perl-mime-charset
4932 (package
4933 (name "perl-mime-charset")
4934 (version "1.012.2")
4935 (source (origin
4936 (method url-fetch)
4937 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4938 "MIME-Charset-" version ".tar.gz"))
4939 (sha256
4940 (base32
4941 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4942 (build-system perl-build-system)
4943 (home-page "http://search.cpan.org/dist/MIME-Charset/")
4944 (synopsis "Charset information for MIME messages")
4945 (description
4946 "@code{MIME::Charset} provides information about character sets used for
4947 MIME messages on Internet.")
4948 (license (package-license perl))))
4949
4950 (define-public perl-mime-tools
4951 (package
4952 (name "perl-mime-tools")
4953 (version "5.509")
4954 (source
4955 (origin
4956 (method url-fetch)
4957 (uri (string-append
4958 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4959 version
4960 ".tar.gz"))
4961 (sha256
4962 (base32
4963 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4964 (build-system perl-build-system)
4965 (native-inputs
4966 `(("perl-test-deep" ,perl-test-deep)))
4967 (inputs
4968 `(("perl-convert-binhex" ,perl-convert-binhex)))
4969 (propagated-inputs
4970 `(("perl-mailtools" ,perl-mailtools)))
4971 (home-page
4972 "http://search.cpan.org/dist/MIME-tools/")
4973 (synopsis "Tools to manipulate MIME messages")
4974 (description
4975 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4976 decoding, and generating single- or multipart (even nested multipart) MIME
4977 messages.")
4978 (license perl-license)))
4979
4980 (define-public perl-mime-types
4981 (package
4982 (name "perl-mime-types")
4983 (version "2.17")
4984 (source
4985 (origin
4986 (method url-fetch)
4987 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4988 "MIME-Types-" version ".tar.gz"))
4989 (sha256
4990 (base32
4991 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
4992 (build-system perl-build-system)
4993 (home-page "http://search.cpan.org/dist/MIME-Types/")
4994 (synopsis "Definition of MIME types")
4995 (description "This module provides a list of known mime-types, combined
4996 from various sources. For instance, it contains all IANA types and the
4997 knowledge of Apache.")
4998 (license (package-license perl))))
4999
5000 (define-public perl-mixin-linewise
5001 (package
5002 (name "perl-mixin-linewise")
5003 (version "0.108")
5004 (source (origin
5005 (method url-fetch)
5006 (uri (string-append
5007 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5008 version ".tar.gz"))
5009 (sha256
5010 (base32
5011 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5012 (build-system perl-build-system)
5013 (inputs
5014 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5015 ("perl-sub-exporter" ,perl-sub-exporter)))
5016 (home-page "http://search.cpan.org/dist/Mixin-Linewise/")
5017 (synopsis "Write your linewise code for handles; this does the rest")
5018 (description "It's boring to deal with opening files for IO, converting
5019 strings to handle-like objects, and all that. With
5020 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5021 just write a method to handle handles, and methods for handling strings and
5022 file names are added for you.")
5023 (license (package-license perl))))
5024
5025 (define-public perl-modern-perl
5026 (package
5027 (name "perl-modern-perl")
5028 (version "1.20170117")
5029 (source
5030 (origin
5031 (method url-fetch)
5032 (uri (string-append
5033 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5034 version ".tar.gz"))
5035 (sha256
5036 (base32
5037 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
5038 (build-system perl-build-system)
5039 (native-inputs
5040 `(("perl-module-build" ,perl-module-build)))
5041 (home-page
5042 "http://search.cpan.org/dist/Modern-Perl/")
5043 (synopsis
5044 "Enable all of the features of Modern Perl with one import")
5045 (description "@code{Modern::Perl} provides a simple way to enable
5046 multiple, by now, standard libraries in a Perl program.")
5047 (license (package-license perl))))
5048
5049 (define-public perl-module-build-tiny
5050 (package
5051 (name "perl-module-build-tiny")
5052 (version "0.039")
5053 (source
5054 (origin
5055 (method url-fetch)
5056 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5057 "Module-Build-Tiny-" version ".tar.gz"))
5058 (sha256
5059 (base32
5060 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5061 (build-system perl-build-system)
5062 (native-inputs
5063 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5064 ("perl-extutils-config" ,perl-extutils-config)
5065 ("perl-extutils-helpers" ,perl-extutils-helpers)
5066 ("perl-test-harness" ,perl-test-harness)))
5067 (propagated-inputs
5068 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5069 ("perl-extutils-config" ,perl-extutils-config)
5070 ("perl-extutils-helpers" ,perl-extutils-helpers)
5071 ("perl-test-harness" ,perl-test-harness)))
5072 (home-page "http://search.cpan.org/dist/Module-Build-Tiny/")
5073 (synopsis "Tiny replacement for Module::Build")
5074 (description "Many Perl distributions use a Build.PL file instead of a
5075 Makefile.PL file to drive distribution configuration, build, test and
5076 installation. Traditionally, Build.PL uses Module::Build as the underlying
5077 build system. This module provides a simple, lightweight, drop-in
5078 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5079 has less than 120, yet supports the features needed by most distributions.")
5080 (license (package-license perl))))
5081
5082 (define-public perl-module-build-xsutil
5083 (package
5084 (name "perl-module-build-xsutil")
5085 (version "0.16")
5086 (source (origin
5087 (method url-fetch)
5088 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5089 "Module-Build-XSUtil-" version ".tar.gz"))
5090 (sha256
5091 (base32
5092 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5093 (build-system perl-build-system)
5094 (native-inputs
5095 `(("perl-capture-tiny" ,perl-capture-tiny)
5096 ("perl-cwd-guard" ,perl-cwd-guard)
5097 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5098 ("perl-module-build" ,perl-module-build)))
5099 (propagated-inputs
5100 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5101 (home-page "http://search.cpan.org/dist/Module-Build-XSUtil/")
5102 (synopsis "Module::Build class for building XS modules")
5103 (description
5104 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5105 for support building XS modules.
5106
5107 This is a list of a new parameters in the @code{Module::Build::new} method:
5108
5109 @enumerate
5110 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5111 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5112 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5113 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5114 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5115 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5116 @file{ppport.h}, and defines some portability stuff which are not supported by
5117 @file{ppport.h}.
5118
5119 It is ported from @code{Module::Install::XSUtil}.
5120 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5121 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5122 debug options.
5123 @end enumerate")
5124 (license (package-license perl))))
5125
5126 (define-public perl-module-find
5127 (package
5128 (name "perl-module-find")
5129 (version "0.13")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5134 "Module-Find-" version ".tar.gz"))
5135 (sha256
5136 (base32
5137 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5138 (build-system perl-build-system)
5139 (home-page "http://search.cpan.org/dist/Module-Find/")
5140 (synopsis "Find and use installed modules in a (sub)category")
5141 (description "Module::Find lets you find and use modules in categories.
5142 This can be useful for auto-detecting driver or plugin modules. You can
5143 differentiate between looking in the category itself or in all
5144 subcategories.")
5145 (license (package-license perl))))
5146
5147 (define-public perl-module-implementation
5148 (package
5149 (name "perl-module-implementation")
5150 (version "0.09")
5151 (source
5152 (origin
5153 (method url-fetch)
5154 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5155 "Module-Implementation-" version ".tar.gz"))
5156 (sha256
5157 (base32
5158 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5159 (build-system perl-build-system)
5160 (native-inputs
5161 `(("perl-test-fatal" ,perl-test-fatal)
5162 ("perl-test-requires" ,perl-test-requires)))
5163 (propagated-inputs
5164 `(("perl-module-runtime" ,perl-module-runtime)
5165 ("perl-try-tiny" ,perl-try-tiny)))
5166 (home-page "http://search.cpan.org/dist/Module-Implementation/")
5167 (synopsis "Loads alternate underlying implementations for a module")
5168 (description "This module abstracts out the process of choosing one of
5169 several underlying implementations for a module. This can be used to provide
5170 XS and pure Perl implementations of a module, or it could be used to load an
5171 implementation for a given OS or any other case of needing to provide multiple
5172 implementations.")
5173 (license artistic2.0)))
5174
5175 (define-public perl-module-install
5176 (package
5177 (name "perl-module-install")
5178 (version "1.14")
5179 (source
5180 (origin
5181 (method url-fetch)
5182 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
5183 "Module-Install-" version ".tar.gz"))
5184 (sha256
5185 (base32
5186 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
5187 (build-system perl-build-system)
5188 (native-inputs
5189 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5190 (propagated-inputs
5191 `(("perl-archive-zip" ,perl-archive-zip)
5192 ("perl-file-homedir" ,perl-file-homedir)
5193 ("perl-file-remove" ,perl-file-remove)
5194 ("perl-json" ,perl-json)
5195 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5196 ;; would cause a circular dependency with (gnu packages web), so we
5197 ;; leave it out. It may be resolved at runtime, however.
5198 ;("perl-libwww-perl" ,perl-libwww-perl)
5199 ("perl-module-scandeps" ,perl-module-scandeps)
5200 ("perl-par-dist" ,perl-par-dist)
5201 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5202 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5203 ;; character handling.
5204 (arguments `(#:tests? #f))
5205 (home-page "http://search.cpan.org/dist/Module-Install/")
5206 (synopsis "Standalone, extensible Perl module installer")
5207 (description "Module::Install is a package for writing installers for
5208 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5209 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5210 installation version 5.005 or newer.")
5211 (license (package-license perl))))
5212
5213 (define-public perl-module-pluggable
5214 (package
5215 (name "perl-module-pluggable")
5216 (version "5.2")
5217 (source
5218 (origin
5219 (method url-fetch)
5220 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5221 "Module-Pluggable-" version ".tar.gz"))
5222 (sha256
5223 (base32
5224 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5225 (patches (search-patches "perl-module-pluggable-search.patch"))))
5226 (build-system perl-build-system)
5227 (home-page "http://search.cpan.org/dist/Module-Pluggable/")
5228 (synopsis "Give your Perl module the ability to have plugins")
5229 (description "This module provides a simple but extensible way of having
5230 'plugins' for your Perl module.")
5231 (license (package-license perl))))
5232
5233 (define-public perl-module-runtime
5234 (package
5235 (name "perl-module-runtime")
5236 (version "0.014")
5237 (source
5238 (origin
5239 (method url-fetch)
5240 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5241 "Module-Runtime-" version ".tar.gz"))
5242 (sha256
5243 (base32
5244 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
5245 (build-system perl-build-system)
5246 (native-inputs `(("perl-module-build" ,perl-module-build)))
5247 (home-page "http://search.cpan.org/dist/Module-Runtime/")
5248 (synopsis "Perl runtime module handling")
5249 (description "The functions exported by this module deal with runtime
5250 handling of Perl modules, which are normally handled at compile time.")
5251 (license (package-license perl))))
5252
5253 (define-public perl-module-runtime-conflicts
5254 (package
5255 (name "perl-module-runtime-conflicts")
5256 (version "0.003")
5257 (source
5258 (origin
5259 (method url-fetch)
5260 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5261 "Module-Runtime-Conflicts-" version ".tar.gz"))
5262 (sha256
5263 (base32
5264 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5265 (build-system perl-build-system)
5266 (native-inputs
5267 `(("perl-module-build" ,perl-module-build)))
5268 (propagated-inputs
5269 `(("perl-module-runtime" ,perl-module-runtime)
5270 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5271 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts/")
5272 (synopsis "Provide information on conflicts for Module::Runtime")
5273 (description "This module provides conflicts checking for Module::Runtime,
5274 which had a recent release that broke some versions of Moose. It is called
5275 from Moose::Conflicts and moose-outdated.")
5276 (license (package-license perl))))
5277
5278 (define-public perl-module-scandeps
5279 (package
5280 (name "perl-module-scandeps")
5281 (version "1.24")
5282 (source
5283 (origin
5284 (method url-fetch)
5285 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5286 "Module-ScanDeps-" version ".tar.gz"))
5287 (sha256
5288 (base32
5289 "0s6cj90ckhy351gql52ksh4ms1x8piv26iadl09fcpzkx7j0srw9"))))
5290 (build-system perl-build-system)
5291 (native-inputs
5292 `(("perl-test-requires" ,perl-test-requires)))
5293 (home-page "http://search.cpan.org/dist/Module-ScanDeps/")
5294 (synopsis "Recursively scan Perl code for dependencies")
5295 (description "Module::ScanDeps is a module to recursively scan Perl
5296 programs for dependencies.")
5297 (license (package-license perl))))
5298
5299 (define-public perl-module-util
5300 (package
5301 (name "perl-module-util")
5302 (version "1.09")
5303 (source
5304 (origin
5305 (method url-fetch)
5306 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5307 "Module-Util-" version ".tar.gz"))
5308 (sha256
5309 (base32
5310 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5311 (build-system perl-build-system)
5312 (native-inputs
5313 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5314 (home-page "http://search.cpan.org/dist/Module-Util/")
5315 (synopsis "Module name tools and transformations")
5316 (description "This module provides a few useful functions for manipulating
5317 module names. Its main aim is to centralise some of the functions commonly
5318 used by modules that manipulate other modules in some way, like converting
5319 module names to relative paths.")
5320 (license (package-license perl))))
5321
5322 (define-public perl-moo
5323 (package
5324 (name "perl-moo")
5325 (version "1.007000")
5326 (source
5327 (origin
5328 (method url-fetch)
5329 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5330 "Moo-" version ".tar.gz"))
5331 (sha256
5332 (base32
5333 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5334 (build-system perl-build-system)
5335 (native-inputs
5336 `(("perl-test-fatal" ,perl-test-fatal)))
5337 (propagated-inputs
5338 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5339 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5340 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5341 ("perl-import-into" ,perl-import-into)
5342 ("perl-module-runtime" ,perl-module-runtime)
5343 ("perl-role-tiny" ,perl-role-tiny)
5344 ("perl-strictures" ,perl-strictures)))
5345 (home-page "http://search.cpan.org/dist/Moo/")
5346 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5347 (description "Moo is an extremely light-weight Object Orientation system.
5348 It allows one to concisely define objects and roles with a convenient syntax
5349 that avoids the details of Perl's object system. Moo contains a subset of
5350 Moose and is optimised for rapid startup.")
5351 (license (package-license perl))))
5352
5353 ;; Some packages don't yet work with this newer version of ‘Moo’.
5354 (define-public perl-moo-2
5355 (package
5356 (inherit perl-moo)
5357 (name "perl-moo-2")
5358 (version "2.003004")
5359 (source
5360 (origin
5361 (method url-fetch)
5362 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5363 "Moo-" version ".tar.gz"))
5364 (sha256
5365 (base32
5366 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5367 (propagated-inputs
5368 `(("perl-role-tiny" ,perl-role-tiny-2)
5369 ("perl-sub-name" ,perl-sub-name)
5370 ("perl-sub-quote" ,perl-sub-quote)
5371 ("perl-strictures" ,perl-strictures-2)
5372 ,@(alist-delete "perl-strictures"
5373 (alist-delete "perl-role-tiny"
5374 (package-propagated-inputs perl-moo)))))
5375 (arguments
5376 `(#:phases
5377 (modify-phases %standard-phases
5378 (add-before 'configure 'set-perl-search-path
5379 (lambda _
5380 ;; Use perl-strictures for testing.
5381 (setenv "MOO_FATAL_WARNINGS" "=1")
5382 #t)))))))
5383
5384 (define-public perl-moose
5385 (package
5386 (name "perl-moose")
5387 (version "2.2004")
5388 (source (origin
5389 (method url-fetch)
5390 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5391 "Moose-" version ".tar.gz"))
5392 (sha256
5393 (base32
5394 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
5395 (build-system perl-build-system)
5396 (native-inputs
5397 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5398 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5399 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5400 ("perl-test-fatal" ,perl-test-fatal)
5401 ("perl-test-requires" ,perl-test-requires)
5402 ("perl-test-warnings" ,perl-test-warnings)))
5403 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5404 ;; # === Other Modules ===
5405 ;; #
5406 ;; # Module Want Have
5407 ;; # ---------------------------- ---- -------
5408 ;; # Algorithm::C3 any missing
5409 ;; # DBM::Deep any missing
5410 ;; # DateTime any missing
5411 ;; # DateTime::Calendar::Mayan any missing
5412 ;; # DateTime::Format::MySQL any missing
5413 ;; # Declare::Constraints::Simple any missing
5414 ;; # Dist::CheckConflicts any 0.11
5415 ;; # HTTP::Headers any missing
5416 ;; # IO::File any 1.16
5417 ;; # IO::String any missing
5418 ;; # Locale::US any missing
5419 ;; # Module::Refresh any missing
5420 ;; # MooseX::NonMoose any missing
5421 ;; # Params::Coerce any missing
5422 ;; # Regexp::Common any missing
5423 ;; # SUPER any missing
5424 ;; # Test::Deep any missing
5425 ;; # Test::DependentModules any missing
5426 ;; # Test::LeakTrace any missing
5427 ;; # Test::Output any missing
5428 ;; # URI any missing
5429 (propagated-inputs
5430 `(("perl-class-load" ,perl-class-load)
5431 ("perl-class-load-xs" ,perl-class-load-xs)
5432 ("perl-data-optlist" ,perl-data-optlist)
5433 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5434 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5435 ("perl-devel-partialdump" ,perl-devel-partialdump)
5436 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5437 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5438 ("perl-eval-closure" ,perl-eval-closure)
5439 ("perl-list-moreutils" ,perl-list-moreutils)
5440 ("perl-module-runtime" ,perl-module-runtime)
5441 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5442 ("perl-mro-compat" ,perl-mro-compat)
5443 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5444 ("perl-package-stash" ,perl-package-stash)
5445 ("perl-package-stash-xs" ,perl-package-stash-xs)
5446 ("perl-params-util" ,perl-params-util)
5447 ("perl-parent" ,perl-parent)
5448 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5449 ("perl-sub-exporter" ,perl-sub-exporter)
5450 ("perl-sub-name" ,perl-sub-name)
5451 ("perl-task-weaken" ,perl-task-weaken)
5452 ("perl-try-tiny" ,perl-try-tiny)))
5453 (home-page "http://search.cpan.org/dist/Moose/")
5454 (synopsis "Postmodern object system for Perl 5")
5455 (description
5456 "Moose is a complete object system for Perl 5. It provides keywords for
5457 attribute declaration, object construction, inheritance, and maybe more. With
5458 Moose, you define your class declaratively, without needing to know about
5459 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5460 logical structure of your classes, focusing on \"what\" rather than \"how\".
5461 A class definition with Moose reads like a list of very concise English
5462 sentences.")
5463 (license (package-license perl))))
5464
5465 (define-public perl-moosex-emulate-class-accessor-fast
5466 (package
5467 (name "perl-moosex-emulate-class-accessor-fast")
5468 (version "0.00903")
5469 (source
5470 (origin
5471 (method url-fetch)
5472 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5473 "MooseX-Emulate-Class-Accessor-Fast-"
5474 version ".tar.gz"))
5475 (sha256
5476 (base32
5477 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
5478 (build-system perl-build-system)
5479 (native-inputs
5480 `(("perl-module-install" ,perl-module-install)
5481 ("perl-test-exception" ,perl-test-exception)))
5482 (propagated-inputs
5483 `(("perl-moose" ,perl-moose)))
5484 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast/")
5485 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5486 (description "This module attempts to emulate the behavior of
5487 Class::Accessor::Fast as accurately as possible using the Moose attribute
5488 system. The public API of Class::Accessor::Fast is wholly supported, but the
5489 private methods are not.")
5490 (license (package-license perl))))
5491
5492 (define-public perl-moosex-getopt
5493 (package
5494 (name "perl-moosex-getopt")
5495 (version "0.71")
5496 (source
5497 (origin
5498 (method url-fetch)
5499 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5500 "MooseX-Getopt-" version ".tar.gz"))
5501 (sha256
5502 (base32
5503 "0nf2094qgir0irxjycwqavy53ygm530g9f7cxfywnl2n1bmgh66y"))))
5504 (build-system perl-build-system)
5505 (native-inputs
5506 `(("perl-module-build" ,perl-module-build)
5507 ("perl-test-deep" ,perl-test-deep)
5508 ("perl-test-fatal" ,perl-test-fatal)
5509 ("perl-test-requires" ,perl-test-requires)
5510 ("perl-test-trap" ,perl-test-trap)
5511 ("perl-test-warnings" ,perl-test-warnings)))
5512 (propagated-inputs
5513 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5514 ("perl-moose" ,perl-moose)
5515 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5516 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5517 (home-page "http://search.cpan.org/dist/MooseX-Getopt/")
5518 (synopsis "Moose role for processing command line options")
5519 (description "This is a Moose role which provides an alternate constructor
5520 for creating objects using parameters passed in from the command line.")
5521 (license (package-license perl))))
5522
5523 (define-public perl-moosex-markasmethods
5524 (package
5525 (name "perl-moosex-markasmethods")
5526 (version "0.15")
5527 (source
5528 (origin
5529 (method url-fetch)
5530 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5531 "MooseX-MarkAsMethods-" version ".tar.gz"))
5532 (sha256
5533 (base32
5534 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5535 (build-system perl-build-system)
5536 (inputs
5537 `(("perl-moose" ,perl-moose)
5538 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5539 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods/")
5540 (synopsis "Mark overload code symbols as methods")
5541 (description "MooseX::MarkAsMethods allows one to easily mark certain
5542 functions as Moose methods. This will allow other packages such as
5543 namespace::autoclean to operate without blowing away your overloads. After
5544 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5545 being methods, and class extension as well as composition from roles with
5546 overloads will \"just work\".")
5547 (license lgpl2.1)))
5548
5549 (define-public perl-moosex-methodattributes
5550 (package
5551 (name "perl-moosex-methodattributes")
5552 (version "0.29")
5553 (source
5554 (origin
5555 (method url-fetch)
5556 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5557 "MooseX-MethodAttributes-" version ".tar.gz"))
5558 (sha256
5559 (base32
5560 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
5561 (build-system perl-build-system)
5562 (native-inputs
5563 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5564 ("perl-test-fatal" ,perl-test-fatal)
5565 ("perl-test-requires" ,perl-test-requires)))
5566 (propagated-inputs
5567 `(("perl-moose" ,perl-moose)
5568 ("perl-moosex-types" ,perl-moosex-types)
5569 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5570 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes/")
5571 (synopsis "Code attribute introspection")
5572 (description "This module allows code attributes of methods to be
5573 introspected using Moose meta method objects.")
5574 (license (package-license perl))))
5575
5576 (define-public perl-moosex-nonmoose
5577 (package
5578 (name "perl-moosex-nonmoose")
5579 (version "0.26")
5580 (source
5581 (origin
5582 (method url-fetch)
5583 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5584 "MooseX-NonMoose-" version ".tar.gz"))
5585 (sha256
5586 (base32
5587 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5588 (build-system perl-build-system)
5589 (native-inputs
5590 `(("perl-moose" ,perl-moose)
5591 ("perl-test-fatal" ,perl-test-fatal)))
5592 (propagated-inputs
5593 `(("perl-list-moreutils" ,perl-list-moreutils)
5594 ("perl-module-runtime" ,perl-module-runtime)
5595 ("perl-moose" ,perl-moose)
5596 ("perl-try-tiny" ,perl-try-tiny)))
5597 (home-page "http://search.cpan.org/dist/MooseX-NonMoose/")
5598 (synopsis "Subclassing of non-Moose classes")
5599 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5600 classes with Moose, taking care of the details connected with doing this, such
5601 as setting up proper inheritance from Moose::Object and installing (and
5602 inlining, at make_immutable time) a constructor that makes sure things like
5603 BUILD methods are called. It tries to be as non-intrusive as possible.")
5604 (license (package-license perl))))
5605
5606 (define-public perl-moosex-params-validate
5607 (package
5608 (name "perl-moosex-params-validate")
5609 (version "0.19")
5610 (source
5611 (origin
5612 (method url-fetch)
5613 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5614 "MooseX-Params-Validate-" version ".tar.gz"))
5615 (sha256
5616 (base32
5617 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
5618 (build-system perl-build-system)
5619 (native-inputs
5620 `(("perl-moose" ,perl-moose)
5621 ("perl-test-fatal" ,perl-test-fatal)))
5622 (propagated-inputs
5623 `(("perl-devel-caller" ,perl-devel-caller)
5624 ("perl-moose" ,perl-moose)
5625 ("perl-params-validate" ,perl-params-validate)
5626 ("perl-sub-exporter" ,perl-sub-exporter)))
5627 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate/")
5628 (synopsis "Extension of Params::Validate using Moose's types")
5629 (description "This module fills a gap in Moose by adding method parameter
5630 validation to Moose.")
5631 (license (package-license perl))))
5632
5633 (define-public perl-moosex-relatedclassroles
5634 (package
5635 (name "perl-moosex-relatedclassroles")
5636 (version "0.004")
5637 (source
5638 (origin
5639 (method url-fetch)
5640 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5641 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5642 (sha256
5643 (base32
5644 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5645 (build-system perl-build-system)
5646 (propagated-inputs
5647 `(("perl-moose" ,perl-moose)
5648 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5649 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles/")
5650 (synopsis "Apply roles to a related Perl class")
5651 (description "This module applies roles to make a subclass instead of
5652 manually setting up a subclass.")
5653 (license (package-license perl))))
5654
5655 (define-public perl-moosex-role-parameterized
5656 (package
5657 (name "perl-moosex-role-parameterized")
5658 (version "1.08")
5659 (source
5660 (origin
5661 (method url-fetch)
5662 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5663 "MooseX-Role-Parameterized-" version ".tar.gz"))
5664 (sha256
5665 (base32
5666 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5667 (build-system perl-build-system)
5668 (native-inputs
5669 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5670 ("perl-module-build" ,perl-module-build)
5671 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5672 ("perl-test-fatal" ,perl-test-fatal)
5673 ("perl-test-requires" ,perl-test-requires)))
5674 (propagated-inputs
5675 `(("perl-moose" ,perl-moose)
5676 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5677 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized/")
5678 (synopsis "Moose roles with composition parameters")
5679 (description "Because Moose roles serve many different masters, they
5680 usually provide only the least common denominator of functionality. To
5681 empower roles further, more configurability than -alias and -excludes is
5682 required. Perhaps your role needs to know which method to call when it is
5683 done processing, or what default value to use for its url attribute.
5684 Parameterized roles offer a solution to these (and other) kinds of problems.")
5685 (license (package-license perl))))
5686
5687 (define-public perl-moosex-role-withoverloading
5688 (package
5689 (name "perl-moosex-role-withoverloading")
5690 (version "0.16")
5691 (source
5692 (origin
5693 (method url-fetch)
5694 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5695 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5696 (sha256
5697 (base32
5698 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5699 (build-system perl-build-system)
5700 (propagated-inputs
5701 `(("perl-aliased" ,perl-aliased)
5702 ("perl-moose" ,perl-moose)
5703 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5704 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading/")
5705 (synopsis "Roles which support overloading")
5706 (description "MooseX::Role::WithOverloading allows you to write a
5707 Moose::Role which defines overloaded operators and allows those overload
5708 methods to be composed into the classes/roles/instances it's compiled to,
5709 where plain Moose::Roles would lose the overloading.")
5710 (license (package-license perl))))
5711
5712 (define-public perl-moosex-semiaffordanceaccessor
5713 (package
5714 (name "perl-moosex-semiaffordanceaccessor")
5715 (version "0.10")
5716 (source
5717 (origin
5718 (method url-fetch)
5719 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5720 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5721 (sha256
5722 (base32
5723 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5724 (build-system perl-build-system)
5725 (propagated-inputs
5726 `(("perl-moose" ,perl-moose)))
5727 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor/")
5728 (synopsis "Name your accessors foo() and set_foo()")
5729 (description "This module does not provide any methods. Simply loading it
5730 changes the default naming policy for the loading class so that accessors are
5731 separated into get and set methods. The get methods have the same name as the
5732 accessor, while set methods are prefixed with \"_set_\".")
5733 (license artistic2.0)))
5734
5735 (define-public perl-moosex-strictconstructor
5736 (package
5737 (name "perl-moosex-strictconstructor")
5738 (version "0.19")
5739 (source
5740 (origin
5741 (method url-fetch)
5742 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5743 "MooseX-StrictConstructor-" version ".tar.gz"))
5744 (sha256
5745 (base32
5746 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5747 (build-system perl-build-system)
5748 (native-inputs
5749 `(("perl-moose" ,perl-moose)
5750 ("perl-test-fatal" ,perl-test-fatal)))
5751 (propagated-inputs
5752 `(("perl-moose" ,perl-moose)
5753 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5754 (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor/")
5755 (synopsis "Strict object constructors for Moose")
5756 (description "Simply loading this module makes your constructors
5757 \"strict\". If your constructor is called with an attribute init argument
5758 that your class does not declare, then it calls Moose->throw_error().")
5759 (license artistic2.0)))
5760
5761 (define-public perl-moosex-traits-pluggable
5762 (package
5763 (name "perl-moosex-traits-pluggable")
5764 (version "0.12")
5765 (source
5766 (origin
5767 (method url-fetch)
5768 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5769 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5770 (sha256
5771 (base32
5772 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5773 (build-system perl-build-system)
5774 (native-inputs
5775 `(("perl-moose" ,perl-moose)
5776 ("perl-test-exception" ,perl-test-exception)))
5777 (propagated-inputs
5778 `(("perl-class-load" ,perl-class-load)
5779 ("perl-list-moreutils" ,perl-list-moreutils)
5780 ("perl-moose" ,perl-moose)
5781 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5782 (home-page
5783 "http://search.cpan.org/dist/MooseX-Traits-Pluggable/")
5784 (synopsis "Trait loading and resolution for Moose")
5785 (description "Adds support on top of MooseX::Traits for class precedence
5786 search for traits and some extra attributes.")
5787 (license (package-license perl))))
5788
5789 (define-public perl-moosex-types
5790 (package
5791 (name "perl-moosex-types")
5792 (version "0.45")
5793 (source
5794 (origin
5795 (method url-fetch)
5796 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5797 "MooseX-Types-" version ".tar.gz"))
5798 (sha256
5799 (base32
5800 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5801 (build-system perl-build-system)
5802 (native-inputs
5803 `(("perl-module-build" ,perl-module-build)
5804 ("perl-test-fatal" ,perl-test-fatal)
5805 ("perl-test-requires" ,perl-test-requires)))
5806 (propagated-inputs
5807 `(("perl-carp-clan" ,perl-carp-clan)
5808 ("perl-moose" ,perl-moose)
5809 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5810 (home-page "http://search.cpan.org/dist/MooseX-Types/")
5811 (synopsis "Organise your Moose types in libraries")
5812 (description "This package lets you declare types using short names, but
5813 behind the scenes it namespaces all your type declarations, effectively
5814 prevent name clashes between packages.")
5815 (license (package-license perl))))
5816
5817 (define-public perl-moosex-types-datetime
5818 (package
5819 (name "perl-moosex-types-datetime")
5820 (version "0.13")
5821 (source
5822 (origin
5823 (method url-fetch)
5824 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5825 "MooseX-Types-DateTime-" version ".tar.gz"))
5826 (sha256
5827 (base32
5828 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5829 (build-system perl-build-system)
5830 (native-inputs
5831 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5832 ("perl-moose" ,perl-moose)
5833 ("perl-test-fatal" ,perl-test-fatal)
5834 ("perl-test-simple" ,perl-test-simple)))
5835 (propagated-inputs
5836 `(("perl-datetime" ,perl-datetime)
5837 ("perl-datetime-locale" ,perl-datetime-locale)
5838 ("perl-datetime-timezone" ,perl-datetime-timezone)
5839 ("perl-moose" ,perl-moose)
5840 ("perl-moosex-types" ,perl-moosex-types)
5841 ("perl-namespace-clean" ,perl-namespace-clean)))
5842 (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime/")
5843 (synopsis "DateTime related constraints and coercions for Moose")
5844 (description "This module packages several Moose::Util::TypeConstraints
5845 with coercions, designed to work with the DateTime suite of objects.")
5846 (license (package-license perl))))
5847
5848 (define-public perl-moosex-types-datetime-morecoercions
5849 (package
5850 (name "perl-moosex-types-datetime-morecoercions")
5851 (version "0.14")
5852 (source
5853 (origin
5854 (method url-fetch)
5855 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5856 "MooseX-Types-DateTime-MoreCoercions-"
5857 version ".tar.gz"))
5858 (sha256
5859 (base32
5860 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5861 (build-system perl-build-system)
5862 (native-inputs
5863 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5864 ("perl-test-fatal" ,perl-test-fatal)
5865 ("perl-test-simple" ,perl-test-simple)))
5866 (propagated-inputs
5867 `(("perl-datetime" ,perl-datetime)
5868 ("perl-datetimex-easy" ,perl-datetimex-easy)
5869 ("perl-moose" ,perl-moose)
5870 ("perl-moosex-types" ,perl-moosex-types)
5871 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5872 ("perl-namespace-clean" ,perl-namespace-clean)
5873 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5874 (home-page
5875 "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions/")
5876 (synopsis "Extensions to MooseX::Types::DateTime")
5877 (description "This module builds on MooseX::Types::DateTime to add
5878 additional custom types and coercions. Since it builds on an existing type,
5879 all coercions and constraints are inherited.")
5880 (license (package-license perl))))
5881
5882 (define-public perl-moosex-types-loadableclass
5883 (package
5884 (name "perl-moosex-types-loadableclass")
5885 (version "0.013")
5886 (source
5887 (origin
5888 (method url-fetch)
5889 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5890 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5891 (sha256
5892 (base32
5893 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5894 (build-system perl-build-system)
5895 (native-inputs
5896 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5897 ("perl-namespace-clean" ,perl-namespace-clean)
5898 ("perl-moose" ,perl-moose)
5899 ("perl-test-fatal" ,perl-test-fatal)
5900 ("perl-class-load" ,perl-class-load)))
5901 (propagated-inputs
5902 `(("perl-module-runtime" ,perl-module-runtime)
5903 ("perl-moosex-types" ,perl-moosex-types)
5904 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5905 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass/")
5906 (synopsis "ClassName type constraints for Moose")
5907 (description "MooseX::Types::LoadableClass provides a ClassName type
5908 constraint with coercion to load the class.")
5909 (license (package-license perl))))
5910
5911 (define-public perl-moox
5912 (package
5913 (name "perl-moox")
5914 (version "0.101")
5915 (source
5916 (origin
5917 (method url-fetch)
5918 (uri (string-append
5919 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5920 version
5921 ".tar.gz"))
5922 (sha256
5923 (base32
5924 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5925 (build-system perl-build-system)
5926 (inputs
5927 `(("perl-data-optlist" ,perl-data-optlist)
5928 ("perl-import-into" ,perl-import-into)
5929 ("perl-module-runtime" ,perl-module-runtime)
5930 ("perl-moo" ,perl-moo)))
5931 (home-page "http://search.cpan.org/dist/MooX/")
5932 (synopsis
5933 "Using Moo and MooX:: packages the most lazy way")
5934 (description "Contains the MooX and MooX::Role packages.")
5935 (license perl-license)))
5936
5937 (define-public perl-moox-cmd
5938 (package
5939 (name "perl-moox-cmd")
5940 (version "0.015")
5941 (source
5942 (origin
5943 (method url-fetch)
5944 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
5945 version ".tar.gz"))
5946 (sha256
5947 (base32
5948 "0145ha8vnc6sbg82ps96wj716bznq2qamm657bia9ji2yxhbnsam"))))
5949 (build-system perl-build-system)
5950 (native-inputs
5951 `(("perl-capture-tiny" ,perl-capture-tiny)
5952 ("perl-list-moreutils" ,perl-list-moreutils)))
5953 (propagated-inputs
5954 `(("perl-module-pluggable" ,perl-module-pluggable)
5955 ("perl-module-runtime" ,perl-module-runtime)
5956 ("perl-moo" ,perl-moo)
5957 ("perl-package-stash" ,perl-package-stash)
5958 ("perl-params-util" ,perl-params-util)
5959 ("perl-regexp-common" ,perl-regexp-common)))
5960 (home-page "http://search.cpan.org/dist/MooX-Cmd")
5961 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
5962 (description "This package eases the writing of command line utilities,
5963 accepting commands and subcommands and so on. These commands can form a tree,
5964 which is mirrored in the package structure. On invocation, each command along
5965 the path through the tree (starting from the top-level command through to the
5966 most specific one) is instantiated.")
5967 (license (package-license perl))))
5968
5969 (define-public perl-moox-configfromfile
5970 (package
5971 (name "perl-moox-configfromfile")
5972 (version "0.008")
5973 (source
5974 (origin
5975 (method url-fetch)
5976 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5977 "MooX-ConfigFromFile-" version ".tar.gz"))
5978 (sha256
5979 (base32
5980 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
5981 (build-system perl-build-system)
5982 (native-inputs
5983 `(("perl-hash-merge" ,perl-hash-merge)
5984 ("perl-json" ,perl-json)
5985 ("perl-moox-cmd" ,perl-moox-cmd)))
5986 (propagated-inputs
5987 `(("perl-config-any" ,perl-config-any)
5988 ("perl-file-configdir" ,perl-file-configdir)
5989 ("perl-file-find-rule" ,perl-file-find-rule)
5990 ("perl-hash-merge" ,perl-hash-merge)
5991 ("perl-moo" ,perl-moo)
5992 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
5993 ("perl-namespace-clean" ,perl-namespace-clean)))
5994 (home-page "http://search.cpan.org/dist/MooX-ConfigFromFile/")
5995 (synopsis "Moo eXtension for initializing objects from config file")
5996 (description "This module is intended to easily load initialization values
5997 for attributes on object construction from an appropriate config file. The
5998 building is done in @code{MooX::ConfigFromFile::Role}---using
5999 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6000 (license (package-license perl))))
6001
6002 (define-public perl-moox-file-configdir
6003 (package
6004 (name "perl-moox-file-configdir")
6005 (version "0.007")
6006 (source
6007 (origin
6008 (method url-fetch)
6009 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6010 "MooX-File-ConfigDir-" version ".tar.gz"))
6011 (sha256
6012 (base32
6013 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6014 (build-system perl-build-system)
6015 (propagated-inputs
6016 `(("perl-file-configdir" ,perl-file-configdir)
6017 ("perl-moo" ,perl-moo)
6018 ("perl-namespace-clean" ,perl-namespace-clean)))
6019 (home-page "http://search.cpan.org/dist/MooX-File-ConfigDir/")
6020 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6021 (description "This module is a helper for easily finding configuration
6022 file locations. This information can be used to find a suitable place for
6023 installing configuration files or for finding any piece of settings.")
6024 (license (package-license perl))))
6025
6026 (define-public perl-moox-handlesvia
6027 (package
6028 (name "perl-moox-handlesvia")
6029 (version "0.001008")
6030 (source
6031 (origin
6032 (method url-fetch)
6033 (uri (string-append
6034 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6035 version
6036 ".tar.gz"))
6037 (sha256
6038 (base32
6039 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6040 (build-system perl-build-system)
6041 (native-inputs
6042 `(("perl-moox-types-mooselike"
6043 ,perl-moox-types-mooselike)
6044 ("perl-test-exception" ,perl-test-exception)
6045 ("perl-test-fatal" ,perl-test-fatal)))
6046 (inputs
6047 `(("perl-class-method-modifiers"
6048 ,perl-class-method-modifiers)
6049 ("perl-module-runtime" ,perl-module-runtime)
6050 ("perl-moo" ,perl-moo)
6051 ("perl-role-tiny" ,perl-role-tiny)))
6052 (propagated-inputs
6053 `(("perl-data-perl" ,perl-data-perl)))
6054 (home-page
6055 "http://search.cpan.org/dist/MooX-HandlesVia/")
6056 (synopsis "NativeTrait-like behavior for Moo")
6057 (description
6058 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6059 attribute functionality. It provides a means of proxying functionality from
6060 an external class to the given atttribute.")
6061 (license perl-license)))
6062
6063 (define-public perl-moox-late
6064 (package
6065 (name "perl-moox-late")
6066 (version "0.015")
6067 (source
6068 (origin
6069 (method url-fetch)
6070 (uri (string-append
6071 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6072 version
6073 ".tar.gz"))
6074 (sha256
6075 (base32
6076 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6077 (build-system perl-build-system)
6078 (native-inputs
6079 `(("perl-test-fatal" ,perl-test-fatal)
6080 ("perl-test-requires" ,perl-test-requires)))
6081 (inputs
6082 `(("perl-moo" ,perl-moo)
6083 ("perl-moox" ,perl-moox)
6084 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6085 (propagated-inputs
6086 `(("perl-type-tiny" ,perl-type-tiny)))
6087 (home-page
6088 "http://search.cpan.org/dist/MooX-late/")
6089 (synopsis "Easily translate Moose code to Moo")
6090 (description
6091 "MooX::late does the following:
6092 @enumerate
6093 @item Supports isa => $stringytype
6094 @item Supports does => $rolename
6095 @item Supports lazy_build => 1
6096 @item Exports blessed and confess functions to your namespace.
6097 @item Handles certain attribute traits
6098 Currently Hash, Array and Code are supported. This feature requires
6099 MooX::HandlesVia.
6100 @end enumerate")
6101 (license perl-license)))
6102
6103 (define-public perl-moox-options
6104 (package
6105 (name "perl-moox-options")
6106 (version "4.023")
6107 (source
6108 (origin
6109 (method url-fetch)
6110 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6111 "MooX-Options-" version ".tar.gz"))
6112 (sha256
6113 (base32
6114 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6115 (build-system perl-build-system)
6116 (native-inputs
6117 `(("perl-capture-tiny" ,perl-capture-tiny)
6118 ("perl-import-into" ,perl-import-into)
6119 ("perl-module-build" ,perl-module-build)
6120 ("perl-moo" ,perl-moo)
6121 ("perl-moose" ,perl-moose)
6122 ("perl-moox-cmd" ,perl-moox-cmd)
6123 ("perl-namespace-clean" ,perl-namespace-clean)
6124 ("perl-role-tiny" ,perl-role-tiny)
6125 ("perl-test-requires" ,perl-test-requires)
6126 ("perl-test-trap" ,perl-test-trap)
6127 ("perl-test-pod" ,perl-test-pod)
6128 ("perl-try-tiny" ,perl-try-tiny)))
6129 (propagated-inputs
6130 `(("perl-config-any" ,perl-config-any)
6131 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6132 ("perl-data-record" ,perl-data-record)
6133 ("perl-file-configdir" ,perl-file-configdir)
6134 ("perl-file-find-rule" ,perl-file-find-rule)
6135 ("perl-file-sharedir" ,perl-file-sharedir)
6136 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6137 ("perl-json-maybexs" ,perl-json-maybexs)
6138 ("perl-libintl-perl" ,perl-libintl-perl)
6139 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6140 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6141 ("perl-path-class" ,perl-path-class)
6142 ("perl-regexp-common" ,perl-regexp-common)
6143 ("perl-term-size-any" ,perl-term-size-any)
6144 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6145 (home-page "http://search.cpan.org/dist/MooX-Options/")
6146 (synopsis "Explicit Options eXtension for Object Class")
6147 (description "Create a command line tool with your Mo, Moo, Moose objects.
6148 You have an @code{option} keyword to replace the usual @code{has} to
6149 explicitly use your attribute on the command line. The @code{option} keyword
6150 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6151 generate a command line tool.")
6152 (license (package-license perl))))
6153
6154 (define-public perl-moox-types-mooselike
6155 (package
6156 (name "perl-moox-types-mooselike")
6157 (version "0.28")
6158 (source
6159 (origin
6160 (method url-fetch)
6161 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6162 "MooX-Types-MooseLike-" version ".tar.gz"))
6163 (sha256
6164 (base32
6165 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
6166 (build-system perl-build-system)
6167 (native-inputs
6168 `(("perl-moo" ,perl-moo)
6169 ("perl-test-fatal" ,perl-test-fatal)))
6170 (propagated-inputs
6171 `(("perl-module-runtime" ,perl-module-runtime)
6172 ("perl-strictures" ,perl-strictures)))
6173 (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike/")
6174 (synopsis "Moosish types and type builder")
6175 (description "MooX::Types::MooseLike provides a possibility to build your
6176 own set of Moose-like types. These custom types can then be used to describe
6177 fields in Moo-based classes.")
6178 (license (package-license perl))))
6179
6180 (define-public perl-mouse
6181 (package
6182 (name "perl-mouse")
6183 (version "2.4.9")
6184 (source (origin
6185 (method url-fetch)
6186 (uri (string-append
6187 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6188 version
6189 ".tar.gz"))
6190 (sha256
6191 (base32
6192 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
6193 (build-system perl-build-system)
6194 (native-inputs
6195 `(("perl-module-build" ,perl-module-build)
6196 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6197 ("perl-test-exception" ,perl-test-exception)
6198 ("perl-test-fatal" ,perl-test-fatal)
6199 ("perl-test-leaktrace" ,perl-test-leaktrace)
6200 ("perl-test-output" ,perl-test-output)
6201 ("perl-test-requires" ,perl-test-requires)
6202 ("perl-try-tiny" ,perl-try-tiny)))
6203 (home-page "https://github.com/gfx/p5-Mouse")
6204 (synopsis "Fast Moose-compatible object system for perl5")
6205 (description
6206 "Mouse is a @code{Moose} compatible object system that implements a
6207 subset of the functionality for reduced startup time.")
6208 (license (package-license perl))))
6209
6210 (define-public perl-mousex-nativetraits
6211 (package
6212 (name "perl-mousex-nativetraits")
6213 (version "1.09")
6214 (source (origin
6215 (method url-fetch)
6216 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6217 "MouseX-NativeTraits-" version ".tar.gz"))
6218 (sha256
6219 (base32
6220 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6221 (build-system perl-build-system)
6222 (native-inputs
6223 `(("perl-any-moose" ,perl-any-moose)
6224 ("perl-module-install" ,perl-module-install)
6225 ("perl-test-fatal" ,perl-test-fatal)))
6226 (propagated-inputs
6227 `(("perl-mouse" ,perl-mouse)))
6228 (home-page "http://search.cpan.org/dist/MouseX-NativeTraits/")
6229 (synopsis "Extend attribute interfaces for Mouse")
6230 (description
6231 "While @code{Mouse} attributes provide a way to name your accessors,
6232 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6233 provides commonly used attribute helper methods for more specific types
6234 of data.")
6235 (license (package-license perl))))
6236
6237 (define-public perl-mozilla-ca
6238 (package
6239 (name "perl-mozilla-ca")
6240 (version "20180117")
6241 (source
6242 (origin
6243 (method url-fetch)
6244 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6245 version ".tar.gz"))
6246 (sha256
6247 (base32
6248 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6249 (build-system perl-build-system)
6250 (home-page "http://search.cpan.org/dist/Mozilla-CA/")
6251 (synopsis "Mozilla's CA cert bundle in PEM format")
6252 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6253 Certificate Authority certificates in a form that can be consumed by modules
6254 and libraries based on OpenSSL.")
6255 (license mpl2.0)))
6256
6257 (define-public perl-multidimensional
6258 (package
6259 (name "perl-multidimensional")
6260 (version "0.014")
6261 (source
6262 (origin
6263 (method url-fetch)
6264 (uri (string-append
6265 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6266 version ".tar.gz"))
6267 (sha256
6268 (base32
6269 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6270 (build-system perl-build-system)
6271 (native-inputs
6272 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6273 ("perl-extutils-depends" ,perl-extutils-depends)))
6274 (propagated-inputs
6275 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6276 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6277 (home-page "http://search.cpan.org/dist/multidimensional/")
6278 (synopsis "Disable multidimensional array emulation")
6279 (description
6280 "Multidimensional disables multidimensional array emulation.")
6281 (license (package-license perl))))
6282
6283 (define-public perl-mro-compat
6284 (package
6285 (name "perl-mro-compat")
6286 (version "0.13")
6287 (source
6288 (origin
6289 (method url-fetch)
6290 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6291 "MRO-Compat-" version ".tar.gz"))
6292 (sha256
6293 (base32
6294 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6295 (build-system perl-build-system)
6296 (home-page "http://search.cpan.org/dist/MRO-Compat/")
6297 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6298 (description "The \"mro\" namespace provides several utilities for dealing
6299 with method resolution order and method caching in general in Perl 5.9.5 and
6300 higher. This module provides those interfaces for earlier versions of
6301 Perl (back to 5.6.0).")
6302 (license (package-license perl))))
6303
6304 (define-public perl-namespace-autoclean
6305 (package
6306 (name "perl-namespace-autoclean")
6307 (version "0.28")
6308 (source
6309 (origin
6310 (method url-fetch)
6311 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6312 "namespace-autoclean-" version ".tar.gz"))
6313 (sha256
6314 (base32
6315 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6316 (build-system perl-build-system)
6317 (native-inputs
6318 `(("perl-module-build" ,perl-module-build)
6319 ("perl-test-requires" ,perl-test-requires)))
6320 (propagated-inputs
6321 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6322 ("perl-namespace-clean" ,perl-namespace-clean)
6323 ("perl-sub-identify" ,perl-sub-identify)))
6324 (home-page "http://search.cpan.org/dist/namespace-autoclean/")
6325 (synopsis "Keep imports out of your namespace")
6326 (description "The namespace::autoclean pragma will remove all imported
6327 symbols at the end of the current package's compile cycle. Functions called
6328 in the package itself will still be bound by their name, but they won't show
6329 up as methods on your class or instances. It is very similar to
6330 namespace::clean, except it will clean all imported functions, no matter if
6331 you imported them before or after you used the pragma. It will also not touch
6332 anything that looks like a method.")
6333 (license (package-license perl))))
6334
6335 (define-public perl-namespace-clean
6336 (package
6337 (name "perl-namespace-clean")
6338 (version "0.25")
6339 (source
6340 (origin
6341 (method url-fetch)
6342 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6343 "namespace-clean-" version ".tar.gz"))
6344 (sha256
6345 (base32
6346 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
6347 (build-system perl-build-system)
6348 (propagated-inputs
6349 `(("perl-package-stash" ,perl-package-stash)
6350 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6351 (home-page "http://search.cpan.org/dist/namespace-clean/")
6352 (synopsis "Keep imports and functions out of your namespace")
6353 (description "The namespace::clean pragma will remove all previously
6354 declared or imported symbols at the end of the current package's compile
6355 cycle. Functions called in the package itself will still be bound by their
6356 name, but they won't show up as methods on your class or instances.")
6357 (license (package-license perl))))
6358
6359 (define-public perl-net-dns-native
6360 (package
6361 (name "perl-net-dns-native")
6362 (version "0.15")
6363 (source
6364 (origin
6365 (method url-fetch)
6366 (uri (string-append
6367 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6368 version ".tar.gz"))
6369 (sha256
6370 (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85"))))
6371 (build-system perl-build-system)
6372 (home-page "http://search.cpan.org/dist/Net-DNS-Native/")
6373 (synopsis "Non-blocking system DNS resolver")
6374 (description
6375 "This class provides several methods for host name resolution. It is
6376 designed to be used with event loops. Names are resolved by your system's
6377 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6378 avoid blocking the entire application. Threading overhead is limited by using
6379 system threads instead of Perl threads.")
6380 (license perl-license)))
6381
6382 (define-public perl-net-idn-encode
6383 (package
6384 (name "perl-net-idn-encode")
6385 (version "2.400")
6386 (source
6387 (origin
6388 (method url-fetch)
6389 (uri (string-append
6390 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
6391 version
6392 ".tar.gz"))
6393 (sha256
6394 (base32
6395 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
6396 (build-system perl-build-system)
6397 (native-inputs
6398 `(("perl-module-build" ,perl-module-build)
6399 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6400 (home-page
6401 "http://search.cpan.org/dist/Net-IDN-Encode/")
6402 (synopsis
6403 "Internationalizing Domain Names in Applications (IDNA)")
6404 (description
6405 "Internationalized Domain Names (IDNs) use characters drawn from a large
6406 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6407 represented using only the ASCII characters already allowed in so-called host
6408 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6409
6410 Use this module if you just want to convert domain names (or email addresses),
6411 using whatever IDNA standard is the best choice at the moment.")
6412 (license perl-license)))
6413
6414 (define-public perl-net-statsd
6415 (package
6416 (name "perl-net-statsd")
6417 (version "0.12")
6418 (source
6419 (origin
6420 (method url-fetch)
6421 (uri (string-append
6422 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6423 version
6424 ".tar.gz"))
6425 (sha256
6426 (base32
6427 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6428 (build-system perl-build-system)
6429 (home-page
6430 "http://search.cpan.org/dist/Net-Statsd/")
6431 (synopsis "Perl client for Etsy's statsd daemon")
6432 (description "This module implement a UDP client for the statsd statistics
6433 collector daemon in use at Etsy.com.")
6434 (license (package-license perl))))
6435
6436 (define-public perl-number-compare
6437 (package
6438 (name "perl-number-compare")
6439 (version "0.03")
6440 (source
6441 (origin
6442 (method url-fetch)
6443 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6444 "Number-Compare-" version ".tar.gz"))
6445 (sha256
6446 (base32
6447 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6448 (build-system perl-build-system)
6449 (home-page "http://search.cpan.org/dist/Number-Compare/")
6450 (synopsis "Numeric comparisons")
6451 (description "Number::Compare compiles a simple comparison to an anonymous
6452 subroutine, which you can call with a value to be tested against.")
6453 (license (package-license perl))))
6454
6455 (define-public perl-number-format
6456 (package
6457 (name "perl-number-format")
6458 (version "1.75")
6459 (source (origin
6460 (method url-fetch)
6461 (uri (string-append
6462 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6463 version ".tar.gz"))
6464 (sha256
6465 (base32
6466 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6467 (build-system perl-build-system)
6468 (home-page "http://search.cpan.org/dist/Number-Format/")
6469 (synopsis "Convert numbers to strings with pretty formatting")
6470 (description "@code{Number::Format} is a library for formatting numbers.
6471 Functions are provided for converting numbers to strings in a variety of ways,
6472 and to convert strings that contain numbers back into numeric form. The
6473 output formats may include thousands separators - characters inserted between
6474 each group of three characters counting right to left from the decimal point.
6475 The characters used for the decimal point and the thousands separator come from
6476 the locale information or can be specified by the user.")
6477 (license perl-license)))
6478
6479 (define-public perl-number-range
6480 (package
6481 (name "perl-number-range")
6482 (version "0.12")
6483 (source
6484 (origin
6485 (method url-fetch)
6486 (uri (string-append
6487 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6488 version ".tar.gz"))
6489 (sha256
6490 (base32
6491 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6492 (build-system perl-build-system)
6493 (home-page "http://search.cpan.org/dist/Number-Range/")
6494 (synopsis "Perl extension defining ranges of numbers")
6495 (description "Number::Range is an object-oriented interface to test if a
6496 number exists in a given range, and to be able to manipulate the range.")
6497 (license (package-license perl))))
6498
6499 (define-public perl-object-signature
6500 (package
6501 (name "perl-object-signature")
6502 (version "1.07")
6503 (source
6504 (origin
6505 (method url-fetch)
6506 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6507 "Object-Signature-" version ".tar.gz"))
6508 (sha256
6509 (base32
6510 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
6511 (build-system perl-build-system)
6512 (native-inputs
6513 `(("perl-module-install" ,perl-module-install)))
6514 (home-page "http://search.cpan.org/dist/Object-Signature/")
6515 (synopsis "Generate cryptographic signatures for objects")
6516 (description "Object::Signature is an abstract base class that you can
6517 inherit from in order to allow your objects to generate unique cryptographic
6518 signatures.")
6519 (license (package-license perl))))
6520
6521 (define-public perl-ole-storage-lite
6522 (package
6523 (name "perl-ole-storage-lite")
6524 (version "0.19")
6525 (source
6526 (origin
6527 (method url-fetch)
6528 (uri (string-append
6529 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6530 version
6531 ".tar.gz"))
6532 (sha256
6533 (base32
6534 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6535 (build-system perl-build-system)
6536 (home-page "http://search.cpan.org/dist/OLE-Storage_Lite/")
6537 (synopsis "Read and write OLE storage files")
6538 (description "This module allows you to read and write
6539 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6540 technology to store hierarchical information such as links to other
6541 documents within a single file.")
6542 (license (package-license perl))))
6543
6544 (define-public perl-package-anon
6545 (package
6546 (name "perl-package-anon")
6547 (version "0.05")
6548 (source
6549 (origin
6550 (method url-fetch)
6551 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6552 "Package-Anon-" version ".tar.gz"))
6553 (sha256
6554 (base32
6555 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6556 (build-system perl-build-system)
6557 (propagated-inputs
6558 `(("perl-sub-exporter" ,perl-sub-exporter)
6559 ("perl-params-util" ,perl-params-util)))
6560 (home-page "http://search.cpan.org/dist/Package-Anon/")
6561 (synopsis "Anonymous packages")
6562 (description "This module allows for anonymous packages that are
6563 independent of the main namespace and only available through an object
6564 instance, not by name.")
6565 (license (package-license perl))))
6566
6567 (define-public perl-package-deprecationmanager
6568 (package
6569 (name "perl-package-deprecationmanager")
6570 (version "0.17")
6571 (source
6572 (origin
6573 (method url-fetch)
6574 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6575 "Package-DeprecationManager-" version ".tar.gz"))
6576 (sha256
6577 (base32
6578 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6579 (build-system perl-build-system)
6580 (native-inputs
6581 `(("perl-test-fatal" ,perl-test-fatal)
6582 ("perl-test-requires" ,perl-test-requires)
6583 ("perl-test-output" ,perl-test-output)))
6584 (propagated-inputs
6585 `(("perl-list-moreutils" ,perl-list-moreutils)
6586 ("perl-params-util" ,perl-params-util)
6587 ("perl-sub-install" ,perl-sub-install)))
6588 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6589 (home-page "http://search.cpan.org/dist/Package-DeprecationManager/")
6590 (synopsis "Manage deprecation warnings for your distribution")
6591 (description "This module allows you to manage a set of deprecations for
6592 one or more modules.")
6593 (license artistic2.0)))
6594
6595 (define-public perl-package-stash
6596 (package
6597 (name "perl-package-stash")
6598 (version "0.37")
6599 (source
6600 (origin
6601 (method url-fetch)
6602 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6603 "Package-Stash-" version ".tar.gz"))
6604 (sha256
6605 (base32
6606 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
6607 (build-system perl-build-system)
6608 (native-inputs
6609 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6610 ("perl-test-fatal" ,perl-test-fatal)
6611 ("perl-test-requires" ,perl-test-requires)
6612 ("perl-package-anon" ,perl-package-anon)))
6613 (propagated-inputs
6614 `(("perl-module-implementation" ,perl-module-implementation)
6615 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6616 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6617 (home-page "http://search.cpan.org/dist/Package-Stash/")
6618 (synopsis "Routines for manipulating stashes")
6619 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6620 necessary, but incredibly messy, and easy to get wrong. This module hides all
6621 of that behind a simple API.")
6622 (license (package-license perl))))
6623
6624 (define-public perl-package-stash-xs
6625 (package
6626 (name "perl-package-stash-xs")
6627 (version "0.28")
6628 (source
6629 (origin
6630 (method url-fetch)
6631 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6632 "Package-Stash-XS-" version ".tar.gz"))
6633 (sha256
6634 (base32
6635 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
6636 (build-system perl-build-system)
6637 (native-inputs
6638 `(("perl-test-fatal" ,perl-test-fatal)
6639 ("perl-test-requires" ,perl-test-requires)
6640 ("perl-package-anon" ,perl-package-anon)))
6641 (home-page "http://search.cpan.org/dist/Package-Stash-XS/")
6642 (synopsis "Faster implementation of the Package::Stash API")
6643 (description "This is a backend for Package::Stash, which provides the
6644 functionality in a way that's less buggy and much faster. It will be used by
6645 default if it's installed, and should be preferred in all environments with a
6646 compiler.")
6647 (license (package-license perl))))
6648
6649 (define-public perl-padwalker
6650 (package
6651 (name "perl-padwalker")
6652 (version "2.0")
6653 (source
6654 (origin
6655 (method url-fetch)
6656 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6657 "PadWalker-" version ".tar.gz"))
6658 (sha256
6659 (base32
6660 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
6661 (build-system perl-build-system)
6662 (home-page "http://search.cpan.org/dist/PadWalker/")
6663 (synopsis "Play with other peoples' lexical variables")
6664 (description "PadWalker is a module which allows you to inspect (and even
6665 change) lexical variables in any subroutine which called you. It will only
6666 show those variables which are in scope at the point of the call. PadWalker
6667 is particularly useful for debugging.")
6668 (license (package-license perl))))
6669
6670 (define-public perl-parallel-forkmanager
6671 (package
6672 (name "perl-parallel-forkmanager")
6673 (version "1.19")
6674 (source
6675 (origin
6676 (method url-fetch)
6677 (uri (string-append
6678 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6679 version
6680 ".tar.gz"))
6681 (sha256
6682 (base32
6683 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6684 (build-system perl-build-system)
6685 (native-inputs
6686 `(("perl-test-warn" ,perl-test-warn)))
6687 (home-page "http://search.cpan.org/dist/Parallel-ForkManager/")
6688 (synopsis "Simple parallel processing fork manager")
6689 (description "@code{Parallel::ForkManager} is intended for use in
6690 operations that can be done in parallel where the number of
6691 processes to be forked off should be limited.")
6692 (license (package-license perl))))
6693
6694 (define-public perl-params-util
6695 (package
6696 (name "perl-params-util")
6697 (version "1.07")
6698 (source
6699 (origin
6700 (method url-fetch)
6701 (uri (string-append
6702 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6703 version ".tar.gz"))
6704 (sha256
6705 (base32
6706 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6707 (build-system perl-build-system)
6708 (home-page "http://search.cpan.org/dist/Params-Util/")
6709 (synopsis "Simple, compact and correct param-checking functions")
6710 (description
6711 "Params::Util provides a basic set of importable functions that makes
6712 checking parameters easier.")
6713 (license (package-license perl))))
6714
6715 (define-public perl-params-validate
6716 (package
6717 (name "perl-params-validate")
6718 (version "1.26")
6719 (source
6720 (origin
6721 (method url-fetch)
6722 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6723 "Params-Validate-" version ".tar.gz"))
6724 (sha256
6725 (base32
6726 "1vbj78qd46ip09i06dsbb62jfwpzp4bg7yi617v98nvim77w66l2"))))
6727 (build-system perl-build-system)
6728 (native-inputs
6729 `(("perl-module-build" ,perl-module-build)
6730 ("perl-test-fatal" ,perl-test-fatal)
6731 ("perl-test-requires" ,perl-test-requires)))
6732 (propagated-inputs
6733 `(("perl-module-implementation" ,perl-module-implementation)))
6734 (home-page "http://search.cpan.org/dist/Params-Validate/")
6735 (synopsis "Validate method/function parameters")
6736 (description "The Params::Validate module allows you to validate method or
6737 function call parameters to an arbitrary level of specificity.")
6738 (license artistic2.0)))
6739
6740 (define-public perl-params-validationcompiler
6741 (package
6742 (name "perl-params-validationcompiler")
6743 (version "0.27")
6744 (source
6745 (origin
6746 (method url-fetch)
6747 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6748 "Params-ValidationCompiler-" version ".tar.gz"))
6749 (sha256
6750 (base32
6751 "1cpr188c2xm0kkmdir6slcsgv7v6ibqff4lax8s0whwx6ml9kaah"))))
6752 (build-system perl-build-system)
6753 (native-inputs
6754 ;; For tests.
6755 `(("perl-test-without-module" ,perl-test-without-module)
6756 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6757 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6758 ("perl-type-tiny" ,perl-type-tiny)))
6759 (propagated-inputs
6760 `(("perl-eval-closure" ,perl-eval-closure)
6761 ("perl-exception-class" ,perl-exception-class)
6762 ("perl-specio" ,perl-specio)))
6763 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6764 (synopsis "Build an optimized subroutine parameter validator")
6765 (description "This module creates a customized, highly efficient
6766 parameter checking subroutine. It can handle named or positional
6767 parameters, and can return the parameters as key/value pairs or a list
6768 of values. In addition to type checks, it also supports parameter
6769 defaults, optional parameters, and extra \"slurpy\" parameters.")
6770 (license artistic2.0)))
6771
6772 (define-public perl-par-dist
6773 (package
6774 (name "perl-par-dist")
6775 (version "0.49")
6776 (source
6777 (origin
6778 (method url-fetch)
6779 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6780 "PAR-Dist-" version ".tar.gz"))
6781 (sha256
6782 (base32
6783 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6784 (build-system perl-build-system)
6785 (home-page "http://search.cpan.org/dist/PAR-Dist/")
6786 (synopsis "Create and manipulate PAR distributions")
6787 (description "PAR::Dist is a toolkit to create and manipulate PAR
6788 distributions.")
6789 (license (package-license perl))))
6790
6791 (define-public perl-parent
6792 (package
6793 (name "perl-parent")
6794 (version "0.228")
6795 (source
6796 (origin
6797 (method url-fetch)
6798 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6799 "parent-" version ".tar.gz"))
6800 (sha256
6801 (base32
6802 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
6803 (build-system perl-build-system)
6804 (home-page "http://search.cpan.org/dist/parent/")
6805 (synopsis "Establish an ISA relationship with base classes at compile time")
6806 (description "Allows you to both load one or more modules, while setting
6807 up inheritance from those modules at the same time.")
6808 (license (package-license perl))))
6809
6810 (define-public perl-path-class
6811 (package
6812 (name "perl-path-class")
6813 (version "0.37")
6814 (source
6815 (origin
6816 (method url-fetch)
6817 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6818 "Path-Class-" version ".tar.gz"))
6819 (sha256
6820 (base32
6821 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6822 (build-system perl-build-system)
6823 (native-inputs `(("perl-module-build" ,perl-module-build)))
6824 (home-page "http://search.cpan.org/dist/Path-Class/")
6825 (synopsis "Path specification manipulation")
6826 (description "Path::Class is a module for manipulation of file and
6827 directory specifications in a cross-platform manner.")
6828 (license (package-license perl))))
6829
6830 (define-public perl-pathtools
6831 (package
6832 (name "perl-pathtools")
6833 (version "3.74")
6834 (source
6835 (origin
6836 (method url-fetch)
6837 (uri (string-append
6838 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6839 version ".tar.gz"))
6840 (sha256
6841 (base32 "04bfjdvn5p78hirljcinpxv8djcjn8nyg5gcmnmvz8sr9k2lqwi5"))))
6842 (build-system perl-build-system)
6843 (arguments
6844 `(#:phases
6845 (modify-phases %standard-phases
6846 (add-after 'unpack 'patch-pwd-path
6847 (lambda* (#:key inputs #:allow-other-keys)
6848 (substitute* "Cwd.pm"
6849 (("'/bin/pwd'")
6850 (string-append "'" (assoc-ref inputs "coreutils")
6851 "/bin/pwd'"))))))))
6852 (inputs
6853 `(("coreutils" ,coreutils)))
6854 (home-page "http://search.cpan.org/dist/PathTools/")
6855 (synopsis "Tools for working with directory and file names")
6856 (description "This package provides functions to work with directory and
6857 file names.")
6858 (license perl-license)))
6859
6860 (define-public perl-path-tiny
6861 (package
6862 (name "perl-path-tiny")
6863 (version "0.104")
6864 (source (origin
6865 (method url-fetch)
6866 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6867 "Path-Tiny-" version ".tar.gz"))
6868 (sha256
6869 (base32
6870 "1vxaczi44d2acfyyzwa7p6c5gx3rgm6c36zbdl40982axg7iv7y6"))))
6871 (build-system perl-build-system)
6872 (arguments
6873 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6874 ;; (native-inputs
6875 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6876 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6877 (inputs
6878 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6879 (home-page "http://search.cpan.org/dist/Path-Tiny/")
6880 (synopsis "File path utility")
6881 (description "This module provides a small, fast utility for working
6882 with file paths.")
6883 (license asl2.0)))
6884
6885 (define-public perl-perlio-utf8_strict
6886 (package
6887 (name "perl-perlio-utf8-strict")
6888 (version "0.006")
6889 (source (origin
6890 (method url-fetch)
6891 (uri (string-append
6892 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6893 version ".tar.gz"))
6894 (sha256
6895 (base32
6896 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
6897 (build-system perl-build-system)
6898 (native-inputs
6899 `(("perl-test-exception" ,perl-test-exception)))
6900 (home-page
6901 "http://search.cpan.org/dist/PerlIO-utf8_strict/")
6902 (synopsis "Fast and correct UTF-8 IO")
6903 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6904 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6905 for correctness.")
6906 (license (package-license perl))))
6907
6908 (define-public perl-pegex
6909 (package
6910 (name "perl-pegex")
6911 (version "0.64")
6912 (source
6913 (origin
6914 (method url-fetch)
6915 (uri (string-append
6916 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6917 version ".tar.gz"))
6918 (sha256
6919 (base32
6920 "1kb7y2cc3nibbn8i8y3vrzz1f9h3892nbf8jj88c5fdgpmj05q17"))))
6921 (build-system perl-build-system)
6922 (native-inputs
6923 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6924 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6925 (home-page "http://search.cpan.org/dist/Pegex/")
6926 (synopsis "Acmeist PEG Parser Framework")
6927 (description "Pegex is an Acmeist parser framework. It allows you to easily
6928 create parsers that will work equivalently in lots of programming languages.
6929 The inspiration for Pegex comes from the parsing engine upon which the
6930 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6931 to the other justmodern languages that have a normal regular expression engine
6932 available.")
6933 (license (package-license perl))))
6934
6935 (define-public perl-pod-coverage
6936 (package
6937 (name "perl-pod-coverage")
6938 (version "0.23")
6939 (source
6940 (origin
6941 (method url-fetch)
6942 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6943 "Pod-Coverage-" version ".tar.gz"))
6944 (sha256
6945 (base32
6946 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
6947 (build-system perl-build-system)
6948 (propagated-inputs
6949 `(("perl-devel-symdump" ,perl-devel-symdump)))
6950 (home-page "http://search.cpan.org/dist/Pod-Coverage/")
6951 (synopsis "Check for comprehensive documentation of a module")
6952 (description "This module provides a mechanism for determining if the pod
6953 for a given module is comprehensive.")
6954 (license (package-license perl))))
6955
6956 (define-public perl-pod-simple
6957 (package
6958 (name "perl-pod-simple")
6959 (version "3.35")
6960 (source (origin
6961 (method url-fetch)
6962 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
6963 "Pod-Simple-" version ".tar.gz"))
6964 (sha256
6965 (base32
6966 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
6967 (build-system perl-build-system)
6968 (home-page "http://search.cpan.org/dist/Pod-Simple/")
6969 (synopsis "Parsing library for text in Pod format")
6970 (description "@code{Pod::Simple} is a Perl library for parsing text in
6971 the @dfn{Pod} (plain old documentation) markup language that is typically
6972 used for writing documentation for Perl and for Perl modules.")
6973 (license (package-license perl))))
6974
6975 (define-public perl-posix-strftime-compiler
6976 (package
6977 (name "perl-posix-strftime-compiler")
6978 (version "0.41")
6979 (source
6980 (origin
6981 (method url-fetch)
6982 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
6983 "POSIX-strftime-Compiler-" version ".tar.gz"))
6984 (sha256
6985 (base32
6986 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
6987 (build-system perl-build-system)
6988 (native-inputs `(("perl-module-build" ,perl-module-build)))
6989 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
6990 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler/")
6991 (synopsis "GNU C library compatible strftime for loggers and servers")
6992 (description "POSIX::strftime::Compiler provides GNU C library compatible
6993 strftime(3). But this module is not affected by the system locale. This
6994 feature is useful when you want to write loggers, servers, and portable
6995 applications.")
6996 (license (package-license perl))))
6997
6998 (define-public perl-probe-perl
6999 (package
7000 (name "perl-probe-perl")
7001 (version "0.03")
7002 (source (origin
7003 (method url-fetch)
7004 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7005 "Probe-Perl-" version ".tar.gz"))
7006 (sha256
7007 (base32
7008 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7009 (build-system perl-build-system)
7010 (synopsis "Information about the currently running perl")
7011 (description
7012 "Probe::Perl provides methods for obtaining information about the
7013 currently running perl interpreter. It originally began life as code in the
7014 Module::Build project, but has been externalized here for general use.")
7015 (home-page (string-append "http://search.cpan.org/~kwilliams//"
7016 "Probe-Perl-" version))
7017 (license (package-license perl))))
7018
7019 (define-public perl-proc-invokeeditor
7020 (package
7021 (name "perl-proc-invokeeditor")
7022 (version "1.13")
7023 (source
7024 (origin
7025 (method url-fetch)
7026 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7027 version ".tar.gz"))
7028 (sha256
7029 (base32
7030 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7031 (build-system perl-build-system)
7032 (arguments
7033 `(#:phases
7034 (modify-phases %standard-phases
7035 (add-after 'unpack 'set-EDITOR
7036 (lambda _ (setenv "EDITOR" "echo") #t)))))
7037 (propagated-inputs
7038 `(("perl-carp-assert" ,perl-carp-assert)))
7039 (home-page "http://search.cpan.org/dist/Proc-InvokeEditor/")
7040 (synopsis "Interface to external editor from Perl")
7041 (description "This module provides the ability to supply some text to an
7042 external text editor, have it edited by the user, and retrieve the results.")
7043 (license (package-license perl))))
7044
7045 (define-public perl-readonly
7046 (package
7047 (name "perl-readonly")
7048 (version "2.00")
7049 (source
7050 (origin
7051 (method url-fetch)
7052 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7053 "Readonly-" version ".tar.gz"))
7054 (sha256
7055 (base32
7056 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7057 (build-system perl-build-system)
7058 (native-inputs `(("perl-module-build" ,perl-module-build)))
7059 (home-page "http://search.cpan.org/dist/Readonly/")
7060 (synopsis "Create read-only scalars, arrays, hashes")
7061 (description "This module provides a facility for creating non-modifiable
7062 variables in Perl. This is useful for configuration files, headers, etc. It
7063 can also be useful as a development and debugging tool for catching updates to
7064 variables that should not be changed.")
7065 (license (package-license perl))))
7066
7067 (define-public perl-ref-util-xs
7068 (package
7069 (name "perl-ref-util-xs")
7070 (version "0.117")
7071 (source
7072 (origin
7073 (method url-fetch)
7074 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7075 "Ref-Util-XS-" version ".tar.gz"))
7076 (sha256
7077 (base32
7078 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7079 (build-system perl-build-system)
7080 (home-page "http://search.cpan.org/dist/Ref-Util-XS/")
7081 (synopsis "XS implementation for Ref::Util")
7082 (description "@code{Ref::Util::XS} is the XS implementation of
7083 @code{Ref::Util}, which provides several functions to help identify references
7084 in a more convenient way than the usual approach of examining the return value
7085 of @code{ref}.")
7086 (license x11)))
7087
7088 (define-public perl-regexp-common
7089 (package
7090 (name "perl-regexp-common")
7091 (version "2017060201")
7092 (source (origin
7093 (method url-fetch)
7094 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7095 "Regexp-Common-" version ".tar.gz"))
7096 (sha256
7097 (base32
7098 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7099 (build-system perl-build-system)
7100 (synopsis "Provide commonly requested regular expressions")
7101 (description
7102 "This module exports a single hash (`%RE') that stores or generates
7103 commonly needed regular expressions. Patterns currently provided include:
7104 balanced parentheses and brackets, delimited text (with escapes), integers and
7105 floating-point numbers in any base (up to 36), comments in 44 languages,
7106 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7107 codes.")
7108 (home-page (string-append "http://search.cpan.org/~abigail//"
7109 "Regexp-Common-" version))
7110 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7111 (license (list (package-license perl) x11 bsd-3))))
7112
7113 (define-public perl-regexp-util
7114 (package
7115 (name "perl-regexp-util")
7116 (version "0.003")
7117 (source
7118 (origin
7119 (method url-fetch)
7120 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7121 "Regexp-Util-" version ".tar.gz"))
7122 (sha256
7123 (base32
7124 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7125 (build-system perl-build-system)
7126 (home-page "http://search.cpan.org/dist/Regexp-Util/")
7127 (synopsis "Selection of general-utility regexp subroutines")
7128 (description "This package provides a selection of regular expression
7129 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7130 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7131 and @code{deserialize_regexp}.")
7132 (license (package-license perl))))
7133
7134 (define-public perl-role-tiny
7135 (package
7136 (name "perl-role-tiny")
7137 (version "1.003004")
7138 (source
7139 (origin
7140 (method url-fetch)
7141 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7142 "Role-Tiny-" version ".tar.gz"))
7143 (sha256
7144 (base32
7145 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7146 (build-system perl-build-system)
7147 (native-inputs
7148 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7149 ("perl-test-fatal" ,perl-test-fatal)))
7150 (propagated-inputs
7151 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7152 (home-page "http://search.cpan.org/dist/Role-Tiny/")
7153 (synopsis "Roles, as a slice of Moose")
7154 (description "Role::Tiny is a minimalist role composition tool.")
7155 (license (package-license perl))))
7156
7157 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7158 (define-public perl-role-tiny-2
7159 (package
7160 (inherit perl-role-tiny)
7161 (version "2.000006")
7162 (source
7163 (origin
7164 (method url-fetch)
7165 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7166 "Role-Tiny-" version ".tar.gz"))
7167 (sha256
7168 (base32
7169 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7170
7171 (define-public perl-safe-isa
7172 (package
7173 (name "perl-safe-isa")
7174 (version "1.000010")
7175 (source
7176 (origin
7177 (method url-fetch)
7178 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7179 "Safe-Isa-" version ".tar.gz"))
7180 (sha256
7181 (base32
7182 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7183 (build-system perl-build-system)
7184 (home-page "http://search.cpan.org/dist/Safe-Isa/")
7185 (synopsis "Call isa, can, does, and DOES safely")
7186 (description "This module allows you to call isa, can, does, and DOES
7187 safely on things that may not be objects.")
7188 (license (package-license perl))))
7189
7190 (define-public perl-scope-guard
7191 (package
7192 (name "perl-scope-guard")
7193 (version "0.21")
7194 (source
7195 (origin
7196 (method url-fetch)
7197 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7198 "Scope-Guard-" version ".tar.gz"))
7199 (sha256
7200 (base32
7201 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7202 (build-system perl-build-system)
7203 (home-page "http://search.cpan.org/dist/Scope-Guard/")
7204 (synopsis "Lexically-scoped resource management")
7205 (description "This module provides a convenient way to perform cleanup or
7206 other forms of resource management at the end of a scope. It is particularly
7207 useful when dealing with exceptions: the Scope::Guard constructor takes a
7208 reference to a subroutine that is guaranteed to be called even if the thread
7209 of execution is aborted prematurely. This effectively allows lexically-scoped
7210 \"promises\" to be made that are automatically honoured by perl's garbage
7211 collector.")
7212 (license (package-license perl))))
7213
7214 (define-public perl-set-infinite
7215 (package
7216 (name "perl-set-infinite")
7217 (version "0.65")
7218 (source
7219 (origin
7220 (method url-fetch)
7221 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7222 "Set-Infinite-" version ".tar.gz"))
7223 (sha256
7224 (base32
7225 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7226 (build-system perl-build-system)
7227 (home-page "http://search.cpan.org/dist/Set-Infinite/")
7228 (synopsis "Infinite sets")
7229 (description "Set::Infinite is a set theory module for infinite sets.")
7230 (license (package-license perl))))
7231
7232 (define-public perl-set-intspan
7233 (package
7234 (name "perl-set-intspan")
7235 (version "1.19")
7236 (source (origin
7237 (method url-fetch)
7238 (uri (string-append
7239 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7240 version ".tar.gz"))
7241 (sha256
7242 (base32
7243 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7244 (build-system perl-build-system)
7245 (home-page "http://search.cpan.org/dist/Set-IntSpan/")
7246 (synopsis "Manage sets of integers")
7247 (description "@code{Set::IntSpan} manages sets of integers. It is
7248 optimized for sets that have long runs of consecutive integers.")
7249 (license perl-license)))
7250
7251 (define-public perl-set-object
7252 (package
7253 (name "perl-set-object")
7254 (version "1.35")
7255 (source
7256 (origin
7257 (method url-fetch)
7258 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7259 "Set-Object-" version ".tar.gz"))
7260 (sha256
7261 (base32
7262 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
7263 (build-system perl-build-system)
7264 (propagated-inputs
7265 `(("perl-moose" ,perl-moose)
7266 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7267 (home-page "http://search.cpan.org/dist/Set-Object/")
7268 (synopsis "Unordered collections of Perl Objects")
7269 (description "Set::Object provides efficient sets, unordered collections
7270 of Perl objects without duplicates for scalars and references.")
7271 (license artistic2.0)))
7272
7273 (define-public perl-set-scalar
7274 (package
7275 (name "perl-set-scalar")
7276 (version "1.29")
7277 (source
7278 (origin
7279 (method url-fetch)
7280 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7281 "Set-Scalar-" version ".tar.gz"))
7282 (sha256
7283 (base32
7284 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7285 (build-system perl-build-system)
7286 (home-page "http://search.cpan.org/dist/Set-Scalar/")
7287 (synopsis "Set operations for Perl")
7288 (description "The first priority of Set::Scalar is to be a convenient
7289 interface to sets (as in: unordered collections of Perl scalars). While not
7290 designed to be slow or big, neither has it been designed to be fast or
7291 compact.")
7292 (license (package-license perl))))
7293
7294 (define-public perl-sort-key
7295 (package
7296 (name "perl-sort-key")
7297 (version "1.33")
7298 (source
7299 (origin
7300 (method url-fetch)
7301 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7302 version ".tar.gz"))
7303 (sha256
7304 (base32
7305 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7306 (build-system perl-build-system)
7307 (home-page "http://search.cpan.org/dist/Sort-Key/")
7308 (synopsis "Sort arrays by one or multiple calculated keys")
7309 (description "This Perl module provides various functions to quickly sort
7310 arrays by one or multiple calculated keys.")
7311 (license (package-license perl))))
7312
7313 (define-public perl-sort-naturally
7314 (package
7315 (name "perl-sort-naturally")
7316 (version "1.03")
7317 (source
7318 (origin
7319 (method url-fetch)
7320 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7321 version ".tar.gz"))
7322 (sha256
7323 (base32
7324 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7325 (build-system perl-build-system)
7326 (home-page "http://search.cpan.org/dist/Sort-Naturally/")
7327 (synopsis "Sort lexically, but sort numeral parts numerically")
7328 (description "This module exports two functions, @code{nsort} and
7329 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7330 Under natural sorting, numeric substrings are compared numerically, and other
7331 word-characters are compared lexically.")
7332 (license (package-license perl))))
7333
7334 (define-public perl-specio
7335 (package
7336 (name "perl-specio")
7337 (version "0.38")
7338 (source
7339 (origin
7340 (method url-fetch)
7341 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7342 "Specio-" version ".tar.gz"))
7343 (sha256
7344 (base32
7345 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7346 (build-system perl-build-system)
7347 (propagated-inputs
7348 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7349 ("perl-eval-closure" ,perl-eval-closure)
7350 ("perl-module-runtime" ,perl-module-runtime)
7351 ("perl-mro-compat" ,perl-mro-compat)
7352 ("perl-role-tiny" ,perl-role-tiny)
7353 ("perl-test-fatal" ,perl-test-fatal)
7354 ("perl-test-needs" ,perl-test-needs)))
7355 (home-page "http://search.cpan.org/dist/Specio//")
7356 (synopsis "Classes for representing type constraints and coercion")
7357 (description "The Specio distribution provides classes for representing type
7358 constraints and coercion, along with syntax sugar for declaring them. Note that
7359 this is not a proper type system for Perl. Nothing in this distribution will
7360 magically make the Perl interpreter start checking a value's type on assignment
7361 to a variable. In fact, there's no built-in way to apply a type to a variable at
7362 all. Instead, you can explicitly check a value against a type, and optionally
7363 coerce values to that type.")
7364 (license artistic2.0)))
7365
7366 (define-public perl-spiffy
7367 (package
7368 (name "perl-spiffy")
7369 (version "0.46")
7370 (source
7371 (origin
7372 (method url-fetch)
7373 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7374 "Spiffy-" version ".tar.gz"))
7375 (sha256
7376 (base32
7377 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7378 (build-system perl-build-system)
7379 (home-page "http://search.cpan.org/dist/Spiffy/")
7380 (synopsis "Spiffy Perl Interface Framework For You")
7381 (description "Spiffy is a framework and methodology for doing object
7382 oriented (OO) programming in Perl. Spiffy combines the best parts of
7383 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7384 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7385 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7386 other OO languages like Python, Ruby, Java and Perl 6.")
7387 (license (package-license perl))))
7388
7389 (define-public perl-statistics-basic
7390 (package
7391 (name "perl-statistics-basic")
7392 (version "1.6611")
7393 (source (origin
7394 (method url-fetch)
7395 (uri (string-append
7396 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7397 version ".tar.gz"))
7398 (sha256
7399 (base32
7400 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7401 (build-system perl-build-system)
7402 (inputs
7403 `(("perl-number-format" ,perl-number-format)))
7404 (home-page "http://search.cpan.org/dist/Statistics-Basic/")
7405 (synopsis "Collection of very basic statistics modules")
7406 (description "This package provides basic statistics functions like
7407 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7408 (license lgpl2.0)))
7409
7410 (define-public perl-stream-buffered
7411 (package
7412 (name "perl-stream-buffered")
7413 (version "0.03")
7414 (source
7415 (origin
7416 (method url-fetch)
7417 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7418 "Stream-Buffered-" version ".tar.gz"))
7419 (sha256
7420 (base32
7421 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7422 (build-system perl-build-system)
7423 (home-page "http://search.cpan.org/dist/Stream-Buffered/")
7424 (synopsis "Temporary buffer to save bytes")
7425 (description "Stream::Buffered is a buffer class to store arbitrary length
7426 of byte strings and then get a seekable filehandle once everything is
7427 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7428 on the length of the size.")
7429 (license (package-license perl))))
7430
7431 (define-public perl-strictures
7432 (package
7433 (name "perl-strictures")
7434 (version "1.005005")
7435 (source
7436 (origin
7437 (method url-fetch)
7438 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7439 "strictures-" version ".tar.gz"))
7440 (sha256
7441 (base32
7442 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7443 (build-system perl-build-system)
7444 (home-page "http://search.cpan.org/dist/strictures/")
7445 (synopsis "Turn on strict and make all warnings fatal")
7446 (description "Strictures turns on strict and make all warnings fatal when
7447 run from within a source-controlled directory.")
7448 (license (package-license perl))))
7449
7450 ;; Some packages don't yet work with this newer version of ‘strictures’.
7451 (define-public perl-strictures-2
7452 (package
7453 (inherit perl-strictures)
7454 (version "2.000004")
7455 (source
7456 (origin
7457 (method url-fetch)
7458 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7459 "strictures-" version ".tar.gz"))
7460 (sha256
7461 (base32
7462 "0lzp0q6kwk6vgf7zdlvy9zz28fj6n1b776irm556c7gylcq29113"))))))
7463
7464 (define-public perl-string-camelcase
7465 (package
7466 (name "perl-string-camelcase")
7467 (version "0.02")
7468 (source
7469 (origin
7470 (method url-fetch)
7471 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7472 "String-CamelCase-" version ".tar.gz"))
7473 (sha256
7474 (base32
7475 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
7476 (build-system perl-build-system)
7477 (arguments
7478 `(#:phases
7479 (modify-phases %standard-phases
7480 (add-before 'configure 'set-perl-search-path
7481 (lambda _
7482 ;; Work around "dotless @INC" build failure.
7483 (setenv "PERL5LIB"
7484 (string-append (getcwd) ":"
7485 (getenv "PERL5LIB")))
7486 #t)))))
7487 (home-page "http://search.cpan.org/dist/String-CamelCase/")
7488 (synopsis "Camelcase and de-camelcase")
7489 (description "This module may be used to convert from under_score text to
7490 CamelCase and back again.")
7491 (license (package-license perl))))
7492
7493 (define-public perl-string-escape
7494 (package
7495 (name "perl-string-escape")
7496 (version "2010.002")
7497 (source
7498 (origin
7499 (method url-fetch)
7500 (uri (string-append
7501 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7502 version ".tar.gz"))
7503 (sha256
7504 (base32
7505 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7506 (build-system perl-build-system)
7507 (home-page "http://search.cpan.org/dist/String-Escape/")
7508 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7509 (description "This module provides a flexible calling interface to some
7510 frequently-performed string conversion functions, including applying and
7511 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7512 removing double-quotes, and truncating to fit within a desired length.")
7513 (license (package-license perl))))
7514
7515 (define-public perl-string-rewriteprefix
7516 (package
7517 (name "perl-string-rewriteprefix")
7518 (version "0.007")
7519 (source
7520 (origin
7521 (method url-fetch)
7522 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7523 "String-RewritePrefix-" version ".tar.gz"))
7524 (sha256
7525 (base32
7526 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7527 (build-system perl-build-system)
7528 (propagated-inputs
7529 `(("perl-sub-exporter" ,perl-sub-exporter)))
7530 (home-page "http://search.cpan.org/dist/String-RewritePrefix/")
7531 (synopsis "Rewrite strings based on a set of known prefixes")
7532 (description "This module allows you to rewrite strings based on a set of
7533 known prefixes.")
7534 (license (package-license perl))))
7535
7536 (define-public perl-string-print
7537 (package
7538 (name "perl-string-print")
7539 (version "0.15")
7540 (source (origin
7541 (method url-fetch)
7542 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7543 "String-Print-" version ".tar.gz"))
7544 (sha256
7545 (base32
7546 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7547 (build-system perl-build-system)
7548 (propagated-inputs
7549 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7550 (home-page "http://search.cpan.org/dist/String-Print/")
7551 (synopsis "String printing alternatives to printf")
7552 (description
7553 "This module inserts values into (translated) strings. It provides
7554 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7555 a functional interface.")
7556 (license (package-license perl))))
7557
7558 (define-public perl-sub-exporter
7559 (package
7560 (name "perl-sub-exporter")
7561 (version "0.987")
7562 (source
7563 (origin
7564 (method url-fetch)
7565 (uri (string-append
7566 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7567 version ".tar.gz"))
7568 (sha256
7569 (base32
7570 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7571 (build-system perl-build-system)
7572 (propagated-inputs
7573 `(("perl-data-optlist" ,perl-data-optlist)
7574 ("perl-params-util" ,perl-params-util)))
7575 (home-page "http://search.cpan.org/dist/Sub-Exporter/")
7576 (synopsis "Sophisticated exporter for custom-built routines")
7577 (description
7578 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7579 custom-built routines.")
7580 (license (package-license perl))))
7581
7582 (define-public perl-sub-exporter-progressive
7583 (package
7584 (name "perl-sub-exporter-progressive")
7585 (version "0.001013")
7586 (source
7587 (origin
7588 (method url-fetch)
7589 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7590 "Sub-Exporter-Progressive-" version ".tar.gz"))
7591 (sha256
7592 (base32
7593 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7594 (build-system perl-build-system)
7595 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7596 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive/")
7597 (synopsis "Only use Sub::Exporter if you need it")
7598 (description "Sub::Exporter is an incredibly powerful module, but with
7599 that power comes great responsibility, as well as some runtime penalties.
7600 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7601 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7602 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7603 renaming exports, if they try to use them.")
7604 (license (package-license perl))))
7605
7606 (define-public perl-sub-identify
7607 (package
7608 (name "perl-sub-identify")
7609 (version "0.10")
7610 (source
7611 (origin
7612 (method url-fetch)
7613 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7614 "Sub-Identify-" version ".tar.gz"))
7615 (sha256
7616 (base32
7617 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
7618 (build-system perl-build-system)
7619 (home-page "http://search.cpan.org/dist/Sub-Identify/")
7620 (synopsis "Retrieve names of code references")
7621 (description "Sub::Identify allows you to retrieve the real name of code
7622 references.")
7623 (license (package-license perl))))
7624
7625 (define-public perl-sub-info
7626 (package
7627 (name "perl-sub-info")
7628 (version "0.002")
7629 (source
7630 (origin
7631 (method url-fetch)
7632 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7633 version ".tar.gz"))
7634 (sha256
7635 (base32
7636 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7637 (build-system perl-build-system)
7638 (propagated-inputs
7639 `(("perl-importer" ,perl-importer)))
7640 (home-page "http://search.cpan.org/dist/Sub-Info//")
7641 (synopsis "Tool to inspect subroutines")
7642 (description "This package provides tools for inspecting subroutines
7643 in Perl.")
7644 (license (package-license perl))))
7645
7646 (define-public perl-sub-install
7647 (package
7648 (name "perl-sub-install")
7649 (version "0.928")
7650 (source
7651 (origin
7652 (method url-fetch)
7653 (uri (string-append
7654 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7655 version ".tar.gz"))
7656 (sha256
7657 (base32
7658 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7659 (build-system perl-build-system)
7660 (home-page "http://search.cpan.org/dist/Sub-Install/")
7661 (synopsis "Install subroutines into packages easily")
7662 (description
7663 "Sub::Install makes it easy to install subroutines into packages without
7664 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7665 can see them.")
7666 (license (package-license perl))))
7667
7668 (define-public perl-sub-name
7669 (package
7670 (name "perl-sub-name")
7671 (version "0.21")
7672 (source
7673 (origin
7674 (method url-fetch)
7675 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7676 "Sub-Name-" version ".tar.gz"))
7677 (sha256
7678 (base32
7679 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7680 (build-system perl-build-system)
7681 (native-inputs
7682 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7683 (home-page "http://search.cpan.org/dist/Sub-Name/")
7684 (synopsis "(Re)name a sub")
7685 (description "Assigns a new name to referenced sub. If package
7686 specification is omitted in the name, then the current package is used. The
7687 return value is the sub.")
7688 (license (package-license perl))))
7689
7690 (define-public perl-sub-quote
7691 (package
7692 (name "perl-sub-quote")
7693 (version "2.005001")
7694 (source
7695 (origin
7696 (method url-fetch)
7697 (uri (string-append
7698 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7699 version ".tar.gz"))
7700 (sha256
7701 (base32
7702 "01xsvfdpxzimsbrp9mqipsr93y83nhj21q05g8v1bw6yfl3lzayn"))))
7703 (build-system perl-build-system)
7704 (native-inputs
7705 `(("perl-test-fatal" ,perl-test-fatal)))
7706 (propagated-inputs
7707 `(("perl-sub-name" ,perl-sub-name)))
7708 (home-page "http://search.cpan.org/dist/Sub-Quote/")
7709 (synopsis "Efficient generation of subroutines via string eval")
7710 (description "Sub::Quote provides an efficient generation of subroutines
7711 via string eval.")
7712 (license (package-license perl))))
7713
7714 (define-public perl-sub-uplevel
7715 (package
7716 (name "perl-sub-uplevel")
7717 (version "0.24")
7718 (source
7719 (origin
7720 (method url-fetch)
7721 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7722 "Sub-Uplevel-" version ".tar.gz"))
7723 (sha256
7724 (base32
7725 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7726 (build-system perl-build-system)
7727 (home-page "http://search.cpan.org/dist/Sub-Uplevel/")
7728 (synopsis "Apparently run a function in a higher stack frame")
7729 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7730 The idea is just to fool caller(). All the really naughty bits of Tcl's
7731 uplevel() are avoided.")
7732 (license (package-license perl))))
7733
7734 (define-public perl-super
7735 (package
7736 (name "perl-super")
7737 (version "1.20141117")
7738 (source
7739 (origin
7740 (method url-fetch)
7741 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7742 "SUPER-" version ".tar.gz"))
7743 (sha256
7744 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7745 (build-system perl-build-system)
7746 (native-inputs
7747 `(("perl-module-build" ,perl-module-build)))
7748 (propagated-inputs
7749 `(("perl-sub-identify" ,perl-sub-identify)))
7750 (home-page "http://search.cpan.org/dist/SUPER/")
7751 (synopsis "Control superclass method dispatching")
7752 (description
7753 "When subclassing a class, you may occasionally want to dispatch control to
7754 the superclass---at least conditionally and temporarily. This module provides
7755 nicer equivalents to the native Perl syntax for calling superclasses, along with
7756 a universal @code{super} method to determine a class' own superclass, and better
7757 support for run-time mix-ins and roles.")
7758 (license perl-license)))
7759
7760 (define-public perl-svg
7761 (package
7762 (name "perl-svg")
7763 (version "2.63")
7764 (source
7765 (origin
7766 (method url-fetch)
7767 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7768 version ".tar.gz"))
7769 (sha256
7770 (base32
7771 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
7772 (build-system perl-build-system)
7773 (home-page "http://search.cpan.org/dist/SVG/")
7774 (synopsis "Perl extension for generating SVG documents")
7775 (description "SVG is a Perl module which generates a nested data structure
7776 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7777 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7778 access the DOM object, create and access Javascript, and generate SMIL
7779 animation content.")
7780 (license (package-license perl))))
7781
7782 (define-public perl-switch
7783 (package
7784 (name "perl-switch")
7785 (version "2.17")
7786 (source
7787 (origin
7788 (method url-fetch)
7789 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7790 version ".tar.gz"))
7791 (sha256
7792 (base32
7793 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7794 (build-system perl-build-system)
7795 (home-page "http://search.cpan.org/dist/Switch/")
7796 (synopsis "Switch statement for Perl")
7797 (description "Switch is a Perl module which implements a generalized case
7798 mechanism. The module augments the standard Perl syntax with two new
7799 statements: @code{switch} and @code{case}.")
7800 (license (package-license perl))))
7801
7802 (define-public perl-sys-cpu
7803 (package
7804 (name "perl-sys-cpu")
7805 (version "0.61")
7806 (source (origin
7807 (method url-fetch)
7808 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7809 "Sys-CPU-" version ".tar.gz"))
7810 (sha256
7811 (base32
7812 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7813 (modules '((guix build utils)))
7814 (snippet
7815 '(begin
7816 ;; The contents of /proc/cpuinfo can differ and confuse the
7817 ;; cpu_clock and cpu_type methods, so we replace the test
7818 ;; with one that marks cpu_clock and cpu_type as TODO.
7819 ;; Borrowed from Debian.
7820 (call-with-output-file "t/Sys-CPU.t"
7821 (lambda (port)
7822 (format port "#!/usr/bin/perl
7823
7824 use Test::More tests => 4;
7825
7826 BEGIN { use_ok('Sys::CPU'); }
7827
7828 $number = &Sys::CPU::cpu_count();
7829 ok( defined($number), \"CPU Count: $number\" );
7830
7831 TODO: {
7832 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7833 $speed = &Sys::CPU::cpu_clock();
7834 ok( defined($speed), \"CPU Speed: $speed\" );
7835 }
7836
7837 TODO: {
7838 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7839 $type = &Sys::CPU::cpu_type();
7840 ok( defined($type), \"CPU Type: $type\" );
7841 }~%")))))))
7842 (build-system perl-build-system)
7843 (synopsis "Perl extension for getting CPU information")
7844 (description
7845 "Sys::CPU is a module for counting the number of CPUs on a system, and
7846 determining their type and clock speed.")
7847 (home-page (string-append "http://search.cpan.org/~mzsanford//"
7848 "Sys-CPU-" version))
7849 (license (package-license perl))))
7850
7851 (define-public perl-sys-hostname-long
7852 (package
7853 (name "perl-sys-hostname-long")
7854 (version "1.5")
7855 (source
7856 (origin
7857 (method url-fetch)
7858 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7859 "Sys-Hostname-Long-" version ".tar.gz"))
7860 (sha256
7861 (base32
7862 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7863 (build-system perl-build-system)
7864 (arguments `(#:tests? #f)) ;no `hostname' during build
7865 (home-page "http://search.cpan.org/dist/Sys-Hostname-Long/")
7866 (synopsis "Get full hostname in Perl")
7867 (description "Sys::Hostname::Long tries very hard to get the full hostname
7868 of a system.")
7869 (license (package-license perl))))
7870
7871 (define-public perl-task-weaken
7872 (package
7873 (name "perl-task-weaken")
7874 (version "1.06")
7875 (source
7876 (origin
7877 (method url-fetch)
7878 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7879 "Task-Weaken-" version ".tar.gz"))
7880 (sha256
7881 (base32
7882 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7883 (build-system perl-build-system)
7884 (arguments
7885 '(#:phases (modify-phases %standard-phases
7886 (add-before 'configure 'set-search-path
7887 (lambda _
7888 ;; Work around "dotless @INC" build failure.
7889 (setenv "PERL5LIB"
7890 (string-append (getcwd) ":"
7891 (getenv "PERL5LIB")))
7892 #t)))))
7893 (home-page "http://search.cpan.org/dist/Task-Weaken/")
7894 (synopsis "Ensure that a platform has weaken support")
7895 (description "One recurring problem in modules that use Scalar::Util's
7896 weaken function is that it is not present in the pure-perl variant. If
7897 Scalar::Util is not available at all, it will issue a normal dependency on the
7898 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7899 module does not have weaken, the install will bail out altogether with a long
7900 error encouraging the user to seek support.")
7901 (license (package-license perl))))
7902
7903 (define-public perl-template-toolkit
7904 (package
7905 (name "perl-template-toolkit")
7906 (version "2.26")
7907 (source
7908 (origin
7909 (method url-fetch)
7910 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7911 "Template-Toolkit-" version ".tar.gz"))
7912 (sha256
7913 (base32
7914 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
7915 (build-system perl-build-system)
7916 (propagated-inputs
7917 `(("perl-appconfig" ,perl-appconfig)
7918 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7919 (home-page "http://search.cpan.org/dist/Template-Toolkit/")
7920 (synopsis "Template processing system for Perl")
7921 (description "The Template Toolkit is a collection of modules which
7922 implement an extensible template processing system. It was originally
7923 designed and remains primarily useful for generating dynamic web content, but
7924 it can be used equally well for processing any other kind of text based
7925 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7926 (license (package-license perl))))
7927
7928 (define-public perl-template-timer
7929 (package
7930 (name "perl-template-timer")
7931 (version "1.00")
7932 (source
7933 (origin
7934 (method url-fetch)
7935 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7936 "Template-Timer-" version ".tar.gz"))
7937 (sha256
7938 (base32
7939 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7940 (build-system perl-build-system)
7941 (propagated-inputs
7942 `(("perl-template-toolkit" ,perl-template-toolkit)))
7943 (home-page "http://search.cpan.org/dist/Template-Timer/")
7944 (synopsis "Profiling for Template Toolkit")
7945 (description "Template::Timer provides inline profiling of the template
7946 processing in Perl code.")
7947 (license (list gpl3 artistic2.0))))
7948
7949 (define-public perl-term-encoding
7950 (package
7951 (name "perl-term-encoding")
7952 (version "0.02")
7953 (source
7954 (origin
7955 (method url-fetch)
7956 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
7957 "Term-Encoding-" version ".tar.gz"))
7958 (sha256
7959 (base32
7960 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
7961 (build-system perl-build-system)
7962 (native-inputs
7963 `(("perl-module-install" ,perl-module-install)))
7964 (home-page "http://search.cpan.org/dist/Term-Encoding/")
7965 (synopsis "Detect encoding of the current terminal")
7966 (description "Term::Encoding is a simple module to detect the encoding of
7967 the current terminal expects in various ways.")
7968 (license (package-license perl))))
7969
7970 (define-public perl-term-progressbar
7971 (package
7972 (name "perl-term-progressbar")
7973 (version "2.17")
7974 (source
7975 (origin
7976 (method url-fetch)
7977 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
7978 "Term-ProgressBar-" version ".tar.gz"))
7979 (sha256
7980 (base32
7981 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
7982 (build-system perl-build-system)
7983 (native-inputs
7984 `(("perl-capture-tiny" ,perl-capture-tiny)
7985 ("perl-test-exception" ,perl-test-exception)))
7986 (propagated-inputs
7987 `(("perl-class-methodmaker" ,perl-class-methodmaker)
7988 ("perl-term-readkey" ,perl-term-readkey)))
7989 (home-page "http://search.cpan.org/dist/Term-ProgressBar/")
7990 (synopsis "Progress meter on a standard terminal")
7991 (description "Term::ProgressBar provides a simple progress bar on the
7992 terminal, to let the user know that something is happening, roughly how much
7993 stuff has been done, and maybe an estimate at how long remains.")
7994 (license (package-license perl))))
7995
7996 (define-public perl-term-progressbar-quiet
7997 (package
7998 (name "perl-term-progressbar-quiet")
7999 (version "0.31")
8000 (source
8001 (origin
8002 (method url-fetch)
8003 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8004 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8005 (sha256
8006 (base32
8007 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8008 (build-system perl-build-system)
8009 (propagated-inputs
8010 `(("perl-io-interactive" ,perl-io-interactive)
8011 ("perl-term-progressbar" ,perl-term-progressbar)
8012 ("perl-test-mockobject" ,perl-test-mockobject)))
8013 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet/")
8014 (synopsis "Progress meter if run interactively")
8015 (description "Term::ProgressBar is a wonderful module for showing progress
8016 bars on the terminal. This module acts very much like that module when it is
8017 run interactively. However, when it is not run interactively (for example, as
8018 a cron job) then it does not show the progress bar.")
8019 (license (package-license perl))))
8020
8021 (define-public perl-term-progressbar-simple
8022 (package
8023 (name "perl-term-progressbar-simple")
8024 (version "0.03")
8025 (source
8026 (origin
8027 (method url-fetch)
8028 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8029 "Term-ProgressBar-Simple-" version ".tar.gz"))
8030 (sha256
8031 (base32
8032 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8033 (build-system perl-build-system)
8034 (propagated-inputs
8035 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8036 (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple/")
8037 (synopsis "Simple progress bars")
8038 (description "Term::ProgressBar::Simple tells you how much work has been
8039 done, how much is left to do, and estimate how long it will take.")
8040 (license (package-license perl))))
8041
8042 (define-public perl-term-readkey
8043 (package
8044 (name "perl-term-readkey")
8045 (version "2.37")
8046 (source
8047 (origin
8048 (method url-fetch)
8049 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8050 "TermReadKey-" version ".tar.gz"))
8051 (sha256
8052 (base32
8053 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8054 (build-system perl-build-system)
8055 (home-page "http://search.cpan.org/dist/TermReadKey/")
8056 (synopsis "Simple terminal control")
8057 (description "This module, ReadKey, provides ioctl control for terminals
8058 so the input modes can be changed (thus allowing reads of a single character
8059 at a time), and also provides non-blocking reads of stdin, as well as several
8060 other terminal related features, including retrieval/modification of the
8061 screen size, and retrieval/modification of the control characters.")
8062 (license (package-license perl))))
8063
8064 (define-public perl-term-size-any
8065 (package
8066 (name "perl-term-size-any")
8067 (version "0.002")
8068 (source
8069 (origin
8070 (method url-fetch)
8071 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8072 "Term-Size-Any-" version ".tar.gz"))
8073 (sha256
8074 (base32
8075 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8076 (build-system perl-build-system)
8077 (native-inputs
8078 `(("perl-devel-hide" ,perl-devel-hide)))
8079 (propagated-inputs
8080 `(("perl-term-size-perl" ,perl-term-size-perl)))
8081 (home-page "http://search.cpan.org/dist/Term-Size-Any/")
8082 (synopsis "Retrieve terminal size")
8083 (description "This is a unified interface to retrieve terminal size. It
8084 loads one module of a list of known alternatives, each implementing some way
8085 to get the desired terminal information. This loaded module will actually do
8086 the job on behalf of @code{Term::Size::Any}.")
8087 (license (package-license perl))))
8088
8089 (define-public perl-term-size-perl
8090 (package
8091 (name "perl-term-size-perl")
8092 (version "0.029")
8093 (source
8094 (origin
8095 (method url-fetch)
8096 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8097 "Term-Size-Perl-" version ".tar.gz"))
8098 (sha256
8099 (base32
8100 "1rvm91bhdlxfwx5zka023p7szf2s7gm16wl27qiivvj66svsl6lc"))))
8101 (build-system perl-build-system)
8102 (home-page "http://search.cpan.org/dist/Term-Size-Perl/")
8103 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8104 (description "This is yet another implementation of @code{Term::Size}.
8105 Now in pure Perl, with the exception of a C probe run at build time.")
8106 (license (package-license perl))))
8107
8108 (define-public perl-term-table
8109 (package
8110 (name "perl-term-table")
8111 (version "0.008")
8112 (source
8113 (origin
8114 (method url-fetch)
8115 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8116 version ".tar.gz"))
8117 (sha256
8118 (base32
8119 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8120 (build-system perl-build-system)
8121 (propagated-inputs
8122 `(("perl-importer" ,perl-importer)))
8123 (home-page "http://search.cpan.org/dist/Term-Table//")
8124 (synopsis "Format a header and rows into a table")
8125 (description "This module is able to generically format rows of data
8126 into tables.")
8127 (license (package-license perl))))
8128
8129 (define-public perl-text-aligner
8130 (package
8131 (name "perl-text-aligner")
8132 (version "0.12")
8133 (source
8134 (origin
8135 (method url-fetch)
8136 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8137 "Text-Aligner-" version ".tar.gz"))
8138 (sha256
8139 (base32
8140 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
8141 (build-system perl-build-system)
8142 (native-inputs `(("perl-module-build" ,perl-module-build)))
8143 (home-page "http://search.cpan.org/dist/Text-Aligner/")
8144 (synopsis "Align text")
8145 (description "Text::Aligner exports a single function, align(), which is
8146 used to justify strings to various alignment styles.")
8147 (license x11)))
8148
8149 (define-public perl-text-balanced
8150 (package
8151 (name "perl-text-balanced")
8152 (version "2.02")
8153 (source
8154 (origin
8155 (method url-fetch)
8156 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
8157 "Text-Balanced-" version ".tar.gz"))
8158 (sha256
8159 (base32
8160 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
8161 (build-system perl-build-system)
8162 (home-page "http://search.cpan.org/dist/Text-Balanced/")
8163 (synopsis "Extract delimited text sequences from strings")
8164 (description "The Text::Balanced module can be used to extract delimited
8165 text sequences from strings.")
8166 (license (package-license perl))))
8167
8168 (define-public perl-text-csv
8169 (package
8170 (name "perl-text-csv")
8171 (version "1.33")
8172 (source
8173 (origin
8174 (method url-fetch)
8175 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8176 "Text-CSV-" version ".tar.gz"))
8177 (sha256
8178 (base32
8179 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8180 (build-system perl-build-system)
8181 (home-page "http://search.cpan.org/dist/Text-CSV/")
8182 (synopsis "Manipulate comma-separated values")
8183 (description "Text::CSV provides facilities for the composition and
8184 decomposition of comma-separated values. An instance of the Text::CSV class
8185 can combine fields into a CSV string and parse a CSV string into fields.")
8186 (license (package-license perl))))
8187
8188 (define-public perl-text-csv-xs
8189 (package
8190 (name "perl-text-csv-xs")
8191 (version "1.25")
8192 (source
8193 (origin
8194 (method url-fetch)
8195 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8196 "Text-CSV_XS-" version ".tgz"))
8197 (sha256
8198 (base32
8199 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8200 (build-system perl-build-system)
8201 (home-page "http://search.cpan.org/dist/Text-CSV_XS/")
8202 (synopsis "Rountines for manipulating CSV files")
8203 (description "@code{Text::CSV_XS} provides facilities for the composition
8204 and decomposition of comma-separated values. An instance of the
8205 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8206 CSV string into fields. The module accepts either strings or files as input
8207 and support the use of user-specified characters for delimiters, separators,
8208 and escapes.")
8209 (license (package-license perl))))
8210
8211 (define-public perl-text-diff
8212 (package
8213 (name "perl-text-diff")
8214 (version "1.45")
8215 (source
8216 (origin
8217 (method url-fetch)
8218 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8219 "Text-Diff-" version ".tar.gz"))
8220 (sha256
8221 (base32
8222 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8223 (build-system perl-build-system)
8224 (propagated-inputs
8225 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8226 (home-page "http://search.cpan.org/dist/Text-Diff/")
8227 (synopsis "Perform diffs on files and record sets")
8228 (description "Text::Diff provides a basic set of services akin to the GNU
8229 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8230 is better integrated with Perl and available on all platforms. It is often
8231 faster than shelling out to a system's diff executable for small files, and
8232 generally slower on larger files.")
8233 (license (package-license perl))))
8234
8235 (define-public perl-text-format
8236 (package
8237 (name "perl-text-format")
8238 (version "0.61")
8239 (source (origin
8240 (method url-fetch)
8241 (uri (string-append
8242 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8243 version ".tar.gz"))
8244 (sha256
8245 (base32
8246 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8247 (build-system perl-build-system)
8248 (native-inputs
8249 `(("perl-module-build" ,perl-module-build)
8250 ("perl-test-pod" ,perl-test-pod)
8251 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8252 (home-page "http://search.cpan.org/dist/Text-Format/")
8253 (synopsis "Various subroutines to format text")
8254 (description "This package provides functions to format text in various
8255 ways like centering, paragraphing, and converting tabs to spaces and spaces
8256 to tabs.")
8257 (license perl-license)))
8258
8259 (define-public perl-text-glob
8260 (package
8261 (name "perl-text-glob")
8262 (version "0.11")
8263 (source
8264 (origin
8265 (method url-fetch)
8266 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8267 "Text-Glob-" version ".tar.gz"))
8268 (sha256
8269 (base32
8270 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8271 (build-system perl-build-system)
8272 (native-inputs `(("perl-module-build" ,perl-module-build)))
8273 (home-page "http://search.cpan.org/dist/Text-Glob/")
8274 (synopsis "Match globbing patterns against text")
8275 (description "Text::Glob implements glob(3) style matching that can be
8276 used to match against text, rather than fetching names from a file system. If
8277 you want to do full file globbing use the File::Glob module instead.")
8278 (license (package-license perl))))
8279
8280 (define-public perl-text-neattemplate
8281 (package
8282 (name "perl-text-neattemplate")
8283 (version "0.1101")
8284 (source
8285 (origin
8286 (method url-fetch)
8287 (uri (string-append
8288 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8289 "Text-NeatTemplate-" version ".tar.gz"))
8290 (sha256
8291 (base32
8292 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8293 (build-system perl-build-system)
8294 (native-inputs
8295 `(("perl-module-build" ,perl-module-build)))
8296 (home-page
8297 "http://search.cpan.org/dist/Text-NeatTemplate/")
8298 (synopsis "Fast, middleweight template engine")
8299 (description
8300 "Text::NeatTemplate provides a simple, middleweight but fast
8301 template engine, for when you need speed rather than complex features,
8302 yet need more features than simple variable substitution.")
8303 (license (package-license perl))))
8304
8305 (define-public perl-text-roman
8306 (package
8307 (name "perl-text-roman")
8308 (version "3.5")
8309 (source
8310 (origin
8311 (method url-fetch)
8312 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8313 version ".tar.gz"))
8314 (sha256
8315 (base32
8316 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8317 (build-system perl-build-system)
8318 (home-page "http://search.cpan.org/dist/Text-Roman/")
8319 (synopsis "Convert between Roman and Arabic algorisms")
8320 (description "This package provides functions to convert between Roman and
8321 Arabic algorisms. It supports both conventional Roman algorisms (which range
8322 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8323 algorism to indicate multiplication by 1000.")
8324 (license (package-license perl))))
8325
8326 (define-public perl-text-simpletable
8327 (package
8328 (name "perl-text-simpletable")
8329 (version "2.04")
8330 (source
8331 (origin
8332 (method url-fetch)
8333 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8334 "Text-SimpleTable-" version ".tar.gz"))
8335 (sha256
8336 (base32
8337 "14sjmdcy7s73sk740g3ccmzmwhwd52x5ay3bjmibjlql1cag70ld"))))
8338 (build-system perl-build-system)
8339 (home-page "http://search.cpan.org/dist/Text-SimpleTable/")
8340 (synopsis "Simple ASCII tables")
8341 (description "Text::SimpleTable draws simple ASCII tables.")
8342 (license artistic2.0)))
8343
8344 (define-public perl-text-table
8345 (package
8346 (name "perl-text-table")
8347 (version "1.133")
8348 (source
8349 (origin
8350 (method url-fetch)
8351 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8352 "Text-Table-" version ".tar.gz"))
8353 (sha256
8354 (base32
8355 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8356 (build-system perl-build-system)
8357 (native-inputs
8358 `(("perl-module-build" ,perl-module-build)))
8359 (propagated-inputs
8360 `(("perl-text-aligner" ,perl-text-aligner)))
8361 (home-page "http://search.cpan.org/dist/Text-Table/")
8362 (synopsis "Organize Data in Tables")
8363 (description "Text::Table renders plaintext tables.")
8364 (license x11)))
8365
8366 (define-public perl-text-template
8367 (package
8368 (name "perl-text-template")
8369 (version "1.47")
8370 (source
8371 (origin
8372 (method url-fetch)
8373 (uri (string-append
8374 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8375 version
8376 ".tar.gz"))
8377 (sha256
8378 (base32
8379 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8380 (build-system perl-build-system)
8381 (home-page
8382 "http://search.cpan.org/dist/Text-Template/")
8383 (synopsis
8384 "Expand template text with embedded Perl")
8385 (description
8386 "This is a library for generating letters, building HTML pages, or
8387 filling in templates generally. A template is a piece of text that has little
8388 Perl programs embedded in it here and there. When you fill in a template, you
8389 evaluate the little programs and replace them with their values.")
8390 (license perl-license)))
8391
8392 (define-public perl-text-unidecode
8393 (package
8394 (name "perl-text-unidecode")
8395 (version "1.23")
8396 (source
8397 (origin
8398 (method url-fetch)
8399 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8400 "Text-Unidecode-" version ".tar.gz"))
8401 (sha256
8402 (base32
8403 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8404 (build-system perl-build-system)
8405 (home-page "http://search.cpan.org/dist/Text-Unidecode/")
8406 (synopsis "Provide plain ASCII transliterations of Unicode text")
8407 (description "Text::Unidecode provides a function, unidecode(...) that
8408 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8409 universally displayable characters between 0x00 and 0x7F). The representation
8410 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8411 letters, the pronunciation expressed by the text in some other writing
8412 system.")
8413 (license (package-license perl))))
8414
8415 (define-public perl-threads
8416 (package
8417 (name "perl-threads")
8418 (version "2.21")
8419 (source
8420 (origin
8421 (method url-fetch)
8422 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8423 version ".tar.gz"))
8424 (sha256
8425 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8426 (build-system perl-build-system)
8427 (home-page "http://search.cpan.org/dist/threads/")
8428 (synopsis "Perl interpreter-based threads")
8429 (description "This module exposes interpreter threads to the Perl level.")
8430 (license perl-license)))
8431
8432 (define-public perl-throwable
8433 (package
8434 (name "perl-throwable")
8435 (version "0.200013")
8436 (source
8437 (origin
8438 (method url-fetch)
8439 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8440 "Throwable-" version ".tar.gz"))
8441 (sha256
8442 (base32
8443 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8444 (build-system perl-build-system)
8445 (native-inputs
8446 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8447 (propagated-inputs
8448 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8449 ("perl-module-runtime" ,perl-module-runtime)
8450 ("perl-moo" ,perl-moo)))
8451 (home-page "http://search.cpan.org/dist/Throwable/")
8452 (synopsis "Role for classes that can be thrown")
8453 (description "Throwable is a role for classes that are meant to be thrown
8454 as exceptions to standard program flow.")
8455 (license (package-license perl))))
8456
8457 (define-public perltidy
8458 (package
8459 (name "perltidy")
8460 (version "20160302")
8461 (source (origin
8462 (method url-fetch)
8463 (uri (string-append "mirror://sourceforge/perltidy/" version
8464 "/Perl-Tidy-" version ".tar.gz"))
8465 (sha256
8466 (base32
8467 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
8468 (build-system perl-build-system)
8469 (home-page "http://perltidy.sourceforge.net/")
8470 (synopsis "Perl script tidier")
8471 (description "This package contains a Perl script which indents and
8472 reformats Perl scripts to make them easier to read. The formatting can be
8473 controlled with command line parameters. The default parameter settings
8474 approximately follow the suggestions in the Perl Style Guide.")
8475 (license gpl2+)))
8476
8477 (define-public perl-tie-cycle
8478 (package
8479 (name "perl-tie-cycle")
8480 (version "1.225")
8481 (source
8482 (origin
8483 (method url-fetch)
8484 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8485 version ".tar.gz"))
8486 (sha256
8487 (base32
8488 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8489 (build-system perl-build-system)
8490 (home-page "http://search.cpan.org/dist/Tie-Cycle/")
8491 (synopsis "Cycle through a list of values")
8492 (description "You use @code{Tie::Cycle} to go through a list over and over
8493 again. Once you get to the end of the list, you go back to the beginning.")
8494 (license (package-license perl))))
8495
8496 (define-public perl-tie-ixhash
8497 (package
8498 (name "perl-tie-ixhash")
8499 (version "1.23")
8500 (source
8501 (origin
8502 (method url-fetch)
8503 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8504 "Tie-IxHash-" version ".tar.gz"))
8505 (sha256
8506 (base32
8507 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8508 (build-system perl-build-system)
8509 (native-inputs `(("perl-module-build" ,perl-module-build)))
8510 (home-page "http://search.cpan.org/dist/Tie-IxHash/")
8511 (synopsis "Ordered associative arrays for Perl")
8512 (description "This Perl module implements Perl hashes that preserve the
8513 order in which the hash elements were added. The order is not affected when
8514 values corresponding to existing keys in the IxHash are changed. The elements
8515 can also be set to any arbitrary supplied order. The familiar perl array
8516 operations can also be performed on the IxHash.")
8517 (license (package-license perl))))
8518
8519 (define-public perl-tie-toobject
8520 (package
8521 (name "perl-tie-toobject")
8522 (version "0.03")
8523 (source
8524 (origin
8525 (method url-fetch)
8526 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8527 "Tie-ToObject-" version ".tar.gz"))
8528 (sha256
8529 (base32
8530 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8531 (build-system perl-build-system)
8532 (propagated-inputs
8533 `(("perl-test-simple" ,perl-test-simple)))
8534 (home-page "http://search.cpan.org/dist/Tie-ToObject/")
8535 (synopsis "Tie to an existing Perl object")
8536 (description "This class provides a tie constructor that returns the
8537 object it was given as it's first argument. This way side effects of calling
8538 $object->TIEHASH are avoided.")
8539 (license (package-license perl))))
8540
8541 (define-public perl-time-duration
8542 (package
8543 (name "perl-time-duration")
8544 (version "1.1")
8545 (source
8546 (origin
8547 (method url-fetch)
8548 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8549 "Time-Duration-" version ".tar.gz"))
8550 (sha256
8551 (base32
8552 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8553 (build-system perl-build-system)
8554 (native-inputs
8555 `(("perl-module-install" ,perl-module-install)
8556 ("perl-test-pod" ,perl-test-pod)
8557 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8558 (home-page "http://search.cpan.org/dist/Time-Duration/")
8559 (synopsis "English expression of durations")
8560 (description "This module provides functions for expressing durations in
8561 rounded or exact terms.")
8562 (license (package-license perl))))
8563
8564 (define-public perl-time-duration-parse
8565 (package
8566 (name "perl-time-duration-parse")
8567 (version "0.13")
8568 (source
8569 (origin
8570 (method url-fetch)
8571 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8572 "Time-Duration-Parse-" version ".tar.gz"))
8573 (sha256
8574 (base32
8575 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8576 (build-system perl-build-system)
8577 (native-inputs
8578 `(("perl-time-duration" ,perl-time-duration)))
8579 (propagated-inputs
8580 `(("perl-exporter-lite" ,perl-exporter-lite)))
8581 (home-page "http://search.cpan.org/dist/Time-Duration-Parse/")
8582 (synopsis "Parse time duration strings")
8583 (description "Time::Duration::Parse is a module to parse human readable
8584 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8585 (license (package-license perl))))
8586
8587 (define-public perl-time-hires
8588 (package
8589 (name "perl-time-hires")
8590 (version "1.9758")
8591 (source (origin
8592 (method url-fetch)
8593 (uri (string-append
8594 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8595 version ".tar.gz"))
8596 (sha256
8597 (base32
8598 "07jbydcdzpjm6i4nidci0rlklx4kla210fsl6zishw0yq5di9yjv"))))
8599 (build-system perl-build-system)
8600 (home-page "http://search.cpan.org/dist/Time-HiRes/")
8601 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8602 (description "This package implements @code{usleep}, @code{ualarm}, and
8603 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8604 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8605 (license perl-license)))
8606
8607 (define-public perl-time-local
8608 (package
8609 (name "perl-time-local")
8610 (version "1.2300")
8611 (source
8612 (origin
8613 (method url-fetch)
8614 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8615 "Time-Local-" version ".tar.gz"))
8616 (sha256
8617 (base32
8618 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8619 (build-system perl-build-system)
8620 (home-page "http://search.cpan.org/dist/Time-Local/")
8621 (synopsis "Efficiently compute time from local and GMT time")
8622 (description "This module provides functions that are the inverse of
8623 built-in perl functions localtime() and gmtime(). They accept a date as a
8624 six-element array, and return the corresponding time(2) value in seconds since
8625 the system epoch.")
8626 (license (package-license perl))))
8627
8628 (define-public perl-time-piece
8629 (package
8630 (name "perl-time-piece")
8631 (version "1.3203")
8632 (source
8633 (origin
8634 (method url-fetch)
8635 (uri (string-append
8636 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8637 version ".tar.gz"))
8638 (sha256
8639 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8640 (build-system perl-build-system)
8641 (home-page "http://search.cpan.org/dist/Time-Piece/")
8642 (synopsis "Object-Oriented time objects")
8643 (description
8644 "This module replaces the standard @code{localtime} and @code{gmtime}
8645 functions with implementations that return objects. It does so in a
8646 backwards-compatible manner, so that using these functions as documented will
8647 still work as expected.")
8648 (license perl-license)))
8649
8650 (define-public perl-timedate
8651 (package
8652 (name "perl-timedate")
8653 (version "2.30")
8654 (source
8655 (origin
8656 (method url-fetch)
8657 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8658 "TimeDate-" version ".tar.gz"))
8659 (sha256
8660 (base32
8661 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8662 (build-system perl-build-system)
8663 (home-page "http://search.cpan.org/dist/TimeDate/")
8664 (synopsis "Date parsing/formatting subroutines")
8665 (description "This module provides routines for parsing date string into
8666 time values and formatting dates into ASCII strings.")
8667 (license (package-license perl))))
8668
8669 (define-public perl-time-mock
8670 (package
8671 (name "perl-time-mock")
8672 (version "v0.0.2")
8673 (source
8674 (origin
8675 (method url-fetch)
8676 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8677 "Time-Mock-" version ".tar.gz"))
8678 (sha256
8679 (base32
8680 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8681 (build-system perl-build-system)
8682 (native-inputs
8683 `(("perl-module-build" ,perl-module-build)))
8684 (propagated-inputs
8685 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8686 (home-page "http://search.cpan.org/dist/Time-Mock/")
8687 (synopsis "Shift and scale time")
8688 (description "This module allows you to speed up your sleep(), alarm(),
8689 and time() calls.")
8690 (license (package-license perl))))
8691
8692 (define-public perl-tree-simple
8693 (package
8694 (name "perl-tree-simple")
8695 (version "1.25")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8700 "Tree-Simple-" version ".tgz"))
8701 (sha256
8702 (base32
8703 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8704 (build-system perl-build-system)
8705 (native-inputs
8706 `(("perl-module-build" ,perl-module-build)
8707 ("perl-test-exception" ,perl-test-exception)))
8708 (propagated-inputs
8709 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8710 (home-page "http://search.cpan.org/dist/Tree-Simple/")
8711 (synopsis "Simple tree object")
8712 (description "This module in a fully object-oriented implementation of a
8713 simple n-ary tree.")
8714 (license (package-license perl))))
8715
8716 (define-public perl-tree-simple-visitorfactory
8717 (package
8718 (name "perl-tree-simple-visitorfactory")
8719 (version "0.12")
8720 (source
8721 (origin
8722 (method url-fetch)
8723 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8724 "Tree-Simple-VisitorFactory-" version ".tgz"))
8725 (sha256
8726 (base32
8727 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8728 (build-system perl-build-system)
8729 (native-inputs
8730 `(("perl-module-build" ,perl-module-build)
8731 ("perl-test-exception" ,perl-test-exception)))
8732 (propagated-inputs
8733 `(("perl-tree-simple" ,perl-tree-simple)
8734 ("perl-base" ,perl-base)))
8735 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory/")
8736 (synopsis "Factory object for dispensing Visitor objects")
8737 (description "This module is a factory for dispensing
8738 Tree::Simple::Visitor::* objects.")
8739 (license (package-license perl))))
8740
8741 (define-public perl-try-tiny
8742 (package
8743 (name "perl-try-tiny")
8744 (version "0.22")
8745 (source
8746 (origin
8747 (method url-fetch)
8748 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8749 "Try-Tiny-" version ".tar.gz"))
8750 (sha256
8751 (base32
8752 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8753 (build-system perl-build-system)
8754 (home-page "http://search.cpan.org/dist/Try-Tiny/")
8755 (synopsis "Minimal try/catch with proper preservation of $@@")
8756 (description "This module provides bare bones try/catch/finally statements
8757 that are designed to minimize common mistakes with eval blocks, and nothing
8758 else.")
8759 (license x11)))
8760
8761 (define-public perl-type-tie
8762 (package
8763 (name "perl-type-tie")
8764 (version "0.009")
8765 (source
8766 (origin
8767 (method url-fetch)
8768 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8769 "Type-Tie-" version ".tar.gz"))
8770 (sha256
8771 (base32
8772 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8773 (build-system perl-build-system)
8774 (native-inputs
8775 `(("perl-test-fatal" ,perl-test-fatal)
8776 ("perl-test-requires" ,perl-test-requires)))
8777 (propagated-inputs
8778 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8779 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8780 (home-page "http://search.cpan.org/dist/Type-Tie/")
8781 (synopsis "Tie a variable to a type constraint")
8782 (description "This module exports a single function: @code{ttie}. It ties
8783 a variable to a type constraint, ensuring that whatever values stored in the
8784 variable will conform to the type constraint. If the type constraint has
8785 coercions, these will be used if necessary to ensure values assigned to the
8786 variable conform.")
8787 (license (package-license perl))))
8788
8789 (define-public perl-type-tiny
8790 (package
8791 (name "perl-type-tiny")
8792 (version "1.002002")
8793 (source
8794 (origin
8795 (method url-fetch)
8796 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8797 "Type-Tiny-" version ".tar.gz"))
8798 (sha256
8799 (base32
8800 "0b48v28rvl20969gyr62yg6gr6a2nj9qik0bixavbjdmk67hqnx8"))))
8801 (build-system perl-build-system)
8802 (native-inputs
8803 `(("perl-test-warnings" ,perl-test-warnings)))
8804 (propagated-inputs
8805 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8806 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8807 ("perl-exporter-tiny" ,perl-exporter-tiny)
8808 ("perl-moo" ,perl-moo)
8809 ("perl-moose" ,perl-moose)
8810 ("perl-mouse" ,perl-mouse)
8811 ("perl-ref-util-xs" ,perl-ref-util-xs)
8812 ("perl-regexp-util" ,perl-regexp-util)
8813 ("perl-type-tie" ,perl-type-tie)))
8814 (home-page "http://search.cpan.org/dist/Type-Tiny/")
8815 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8816 (description "@code{Type::Tiny} is a small class for writing type
8817 constraints, inspired by Moose's type constraint API. It has only one
8818 non-core dependency (and even that is simply a module that was previously
8819 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8820 be used with Moose, Mouse and Moo (or none of the above).")
8821 (license (package-license perl))))
8822
8823 (define-public perl-type-tiny-xs
8824 (package
8825 (name "perl-type-tiny-xs")
8826 (version "0.012")
8827 (source
8828 (origin
8829 (method url-fetch)
8830 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8831 version ".tar.gz"))
8832 (sha256
8833 (base32
8834 "05nbr898cvjjh1wsy55l84zasx65gijdxc6dnn558ihns8zx6gm9"))))
8835 (build-system perl-build-system)
8836 (home-page "http://search.cpan.org/dist/Type-Tiny-XS/")
8837 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8838 (description "This module is optionally used by @code{Type::Tiny} to
8839 provide faster, C-based implementations of some type constraints. This
8840 package has only core dependencies, and does not depend on @code{Type::Tiny},
8841 so other data validation frameworks might also consider using it.")
8842 (license perl-license)))
8843
8844 (define-public perl-types-path-tiny
8845 (package
8846 (name "perl-types-path-tiny")
8847 (version "0.005")
8848 (source
8849 (origin
8850 (method url-fetch)
8851 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8852 "Types-Path-Tiny-" version ".tar.gz"))
8853 (sha256
8854 (base32
8855 "09nf167ssi4rgj8hhzylwp3zdx61njdpyfri43arcmk9aqn7f0pp"))))
8856 (build-system perl-build-system)
8857 (propagated-inputs
8858 `(("perl-file-pushd" ,perl-file-pushd)
8859 ("perl-path-tiny" ,perl-path-tiny)
8860 ("perl-type-tiny" ,perl-type-tiny)
8861 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8862 (home-page "http://search.cpan.org/dist/Types-Path-Tiny/")
8863 (synopsis "Types and coercions for Moose and Moo")
8864 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8865 etc. It handles two important types of coercion: coercing objects with
8866 overloaded stringification, and coercing to absolute paths. It also can check
8867 to ensure that files or directories exist.")
8868 (license artistic2.0)))
8869
8870 (define-public perl-types-serialiser
8871 (package
8872 (name "perl-types-serialiser")
8873 (version "1.0")
8874 (source
8875 (origin
8876 (method url-fetch)
8877 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8878 "Types-Serialiser-" version ".tar.gz"))
8879 (sha256
8880 (base32
8881 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8882 (build-system perl-build-system)
8883 (propagated-inputs
8884 `(("perl-common-sense" ,perl-common-sense)))
8885 (home-page "http://search.cpan.org/dist/Types-Serialiser/")
8886 (synopsis "Data types for common serialisation formats")
8887 (description "This module provides some extra datatypes that are used by
8888 common serialisation formats such as JSON or CBOR.")
8889 (license (package-license perl))))
8890
8891 (define-public perl-unicode-normalize
8892 (package
8893 (name "perl-unicode-normalize")
8894 (version "1.25")
8895 (source
8896 (origin
8897 (method url-fetch)
8898 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8899 "Unicode-Normalize-" version ".tar.gz"))
8900 (sha256
8901 (base32
8902 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8903 (build-system perl-build-system)
8904 (arguments
8905 '(#:phases (modify-phases %standard-phases
8906 (add-before 'configure 'set-search-path
8907 (lambda _
8908 ;; Work around "dotless @INC" build failure.
8909 (setenv "PERL5LIB"
8910 (string-append (getcwd) ":"
8911 (getenv "PERL5LIB")))
8912 #t)))))
8913 (home-page "http://search.cpan.org/dist/Unicode-Normalize/")
8914 (synopsis "Unicode normalization forms")
8915 (description "This Perl module provides Unicode normalization forms.")
8916 (license (package-license perl))))
8917
8918 (define-public perl-unicode-collate
8919 (package
8920 (name "perl-unicode-collate")
8921 (version "1.18")
8922 (source
8923 (origin
8924 (method url-fetch)
8925 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8926 "Unicode-Collate-" version ".tar.gz"))
8927 (sha256
8928 (base32
8929 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8930 (build-system perl-build-system)
8931 (arguments
8932 `(#:phases
8933 (modify-phases %standard-phases
8934 (add-before 'configure 'set-perl-search-path
8935 (lambda _
8936 ;; Work around "dotless @INC" build failure.
8937 (setenv "PERL5LIB"
8938 (string-append (getcwd) ":"
8939 (getenv "PERL5LIB")))
8940 #t)))))
8941 (propagated-inputs
8942 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8943 (home-page "http://search.cpan.org/dist/Unicode-Collate/")
8944 (synopsis "Unicode collation algorithm")
8945 (description "This package provides tools for sorting and comparing
8946 Unicode data.")
8947 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8948 ;; license.
8949 (license (list (package-license perl) expat))))
8950
8951 (define-public perl-unicode-linebreak
8952 (package
8953 (name "perl-unicode-linebreak")
8954 (version "2016.003")
8955 (source (origin
8956 (method url-fetch)
8957 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8958 "Unicode-LineBreak-" version ".tar.gz"))
8959 (sha256
8960 (base32
8961 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
8962 (build-system perl-build-system)
8963 (propagated-inputs
8964 `(("perl-mime-charset" ,perl-mime-charset)))
8965 (home-page "http://search.cpan.org/dist/Unicode-LineBreak/")
8966 (synopsis "Unicode line breaking algorithm")
8967 (description
8968 "@code{Unicode::LineBreak} implements the line breaking algorithm
8969 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8970 defined by Annex #11 is used to determine breaking positions.")
8971 (license (package-license perl))))
8972
8973 (define-public perl-unicode-utf8
8974 (package
8975 (name "perl-unicode-utf8")
8976 (version "0.62")
8977 (source (origin
8978 (method url-fetch)
8979 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
8980 "Unicode-UTF8-" version ".tar.gz"))
8981 (sha256
8982 (base32
8983 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
8984 (build-system perl-build-system)
8985 (native-inputs
8986 `(("perl-test-fatal" ,perl-test-fatal)
8987 ("perl-test-leaktrace" ,perl-test-leaktrace)
8988 ("perl-variable-magic" ,perl-variable-magic)
8989 ("perl-test-pod" ,perl-test-pod)))
8990 (home-page "http://search.cpan.org/dist/Unicode-UTF8/")
8991 (synopsis "Encoding and decoding of UTF-8 encoding form")
8992 (description
8993 "This module provides functions to encode and decode UTF-8 encoding form
8994 as specified by Unicode and ISO/IEC 10646:2011.")
8995 (license (package-license perl))))
8996
8997 (define-public perl-universal-can
8998 (package
8999 (name "perl-universal-can")
9000 (version "1.20140328")
9001 (source
9002 (origin
9003 (method url-fetch)
9004 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9005 "UNIVERSAL-can-" version ".tar.gz"))
9006 (sha256
9007 (base32
9008 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9009 (build-system perl-build-system)
9010 (home-page "http://search.cpan.org/dist/UNIVERSAL-can/")
9011 (synopsis "UNIVERSAL::can() reimplementation")
9012 (description "This module attempts to work around people calling
9013 UNIVERSAL::can() as a function, which it is not.")
9014 (license (package-license perl))))
9015
9016 (define-public perl-universal-isa
9017 (package
9018 (name "perl-universal-isa")
9019 (version "1.20140927")
9020 (source
9021 (origin
9022 (method url-fetch)
9023 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9024 "UNIVERSAL-isa-" version ".tar.gz"))
9025 (sha256
9026 (base32
9027 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
9028 (build-system perl-build-system)
9029 (native-inputs
9030 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9031 (home-page "http://search.cpan.org/dist/UNIVERSAL-isa/")
9032 (synopsis "UNIVERSAL::isa() reimplementation")
9033 (description "This module attempts to recover from people calling
9034 UNIVERSAL::isa as a function.")
9035 (license (package-license perl))))
9036
9037 (define-public perl-universal-require
9038 (package
9039 (name "perl-universal-require")
9040 (version "0.18")
9041 (source
9042 (origin
9043 (method url-fetch)
9044 (uri (string-append
9045 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9046 version ".tar.gz"))
9047 (sha256
9048 (base32
9049 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9050 (build-system perl-build-system)
9051 (home-page "http://search.cpan.org/dist/UNIVERSAL-require/")
9052 (synopsis "Require modules from a variable")
9053 (description "This module lets you require other modules where the module
9054 name is in a variable, something you can't do with the @code{require}
9055 built-in.")
9056 (license (package-license perl))))
9057
9058 (define-public perl-variable-magic
9059 (package
9060 (name "perl-variable-magic")
9061 (version "0.62")
9062 (source
9063 (origin
9064 (method url-fetch)
9065 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9066 "Variable-Magic-" version ".tar.gz"))
9067 (sha256
9068 (base32
9069 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9070 (build-system perl-build-system)
9071 (home-page "http://search.cpan.org/dist/Variable-Magic/")
9072 (synopsis "Associate user-defined magic to variables from Perl")
9073 (description "Magic is Perl's way of enhancing variables. This mechanism
9074 lets the user add extra data to any variable and hook syntactical
9075 operations (such as access, assignment or destruction) that can be applied to
9076 it. With this module, you can add your own magic to any variable without
9077 having to write a single line of XS.")
9078 (license (package-license perl))))
9079
9080 (define-public perl-xml-writer
9081 (package
9082 (name "perl-xml-writer")
9083 (version "0.625")
9084 (source
9085 (origin
9086 (method url-fetch)
9087 (uri (string-append
9088 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9089 version
9090 ".tar.gz"))
9091 (sha256
9092 (base32
9093 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9094 (build-system perl-build-system)
9095 (home-page "http://search.cpan.org/dist/XML-Writer/")
9096 (synopsis "Easily generate well-formed, namespace-aware XML")
9097 (description "@code{XML::Writer} is a simple Perl module for writing XML
9098 documents: it takes care of constructing markup and escaping data correctly.
9099 By default, it also performs a significant amount of well-formedness checking
9100 on the output to make certain (for example) that start and end tags match,
9101 that there is exactly one document element, and that there are not duplicate
9102 attribute names.")
9103 ;; Redistribution and use in source and compiled forms, with or without
9104 ;; modification, are permitted under any circumstances. No warranty.
9105 (license public-domain)))
9106
9107 (define-public perl-xs-object-magic
9108 (package
9109 (name "perl-xs-object-magic")
9110 (version "0.04")
9111 (source (origin
9112 (method url-fetch)
9113 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9114 "XS-Object-Magic-" version ".tar.gz"))
9115 (sha256
9116 (base32
9117 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9118 (build-system perl-build-system)
9119 (native-inputs
9120 `(("perl-extutils-depends" ,perl-extutils-depends)
9121 ("perl-module-install" ,perl-module-install)
9122 ("perl-test-fatal" ,perl-test-fatal)))
9123 (home-page "http://search.cpan.org/dist/XS-Object-Magic/")
9124 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9125 (description
9126 "This way of associating structs with Perl space objects is designed to
9127 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9128 (structs can be associated with any data type) and opaque (the C pointer is
9129 neither visible nor modifiable from Perl space).")
9130 (license (package-license perl))))
9131
9132 (define-public perl-yaml
9133 (package
9134 (name "perl-yaml")
9135 (version "1.24")
9136 (source
9137 (origin
9138 (method url-fetch)
9139 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9140 "YAML-" version ".tar.gz"))
9141 (sha256
9142 (base32
9143 "1dpzgnjbd8yvf94vf45cmyj5bc6vrm6bchhx9xqwxqd5f9d093dm"))))
9144 (build-system perl-build-system)
9145 (native-inputs
9146 `(("perl-test-yaml" ,perl-test-yaml)))
9147 (home-page "http://search.cpan.org/dist/YAML/")
9148 (synopsis "YAML for Perl")
9149 (description "The YAML.pm module implements a YAML Loader and Dumper based
9150 on the YAML 1.0 specification.")
9151 (license (package-license perl))))
9152
9153 (define-public perl-yaml-libyaml
9154 (package
9155 (name "perl-yaml-libyaml")
9156 (version "0.69")
9157 (source
9158 (origin
9159 (method url-fetch)
9160 (uri (string-append
9161 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9162 version
9163 ".tar.gz"))
9164 (sha256
9165 (base32
9166 "06msvj3vmjszl5zj1k7g47ll0kkds9gdb5sky0q27lh4zw1vlj33"))))
9167 (build-system perl-build-system)
9168 (home-page
9169 "http://search.cpan.org/dist/YAML-LibYAML/")
9170 (synopsis
9171 "Perl YAML Serialization using XS and libyaml")
9172 (description
9173 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9174 best YAML support to date.")
9175 (license perl-license)))
9176
9177 (define-public perl-yaml-tiny
9178 (package
9179 (name "perl-yaml-tiny")
9180 (version "1.66")
9181 (source
9182 (origin
9183 (method url-fetch)
9184 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9185 "YAML-Tiny-" version ".tar.gz"))
9186 (sha256
9187 (base32
9188 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
9189 (build-system perl-build-system)
9190 (native-inputs
9191 `(("perl-json-maybexs" ,perl-json-maybexs)
9192 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9193 (arguments
9194 `(#:tests? #f)) ;requires Test::More >= 0.99
9195 (home-page "http://search.cpan.org/dist/YAML-Tiny/")
9196 (synopsis "Read/Write YAML files")
9197 (description "YAML::Tiny is a perl class for reading and writing
9198 YAML-style files, written with as little code as possible, reducing load time
9199 and memory overhead.")
9200 (license (package-license perl))))
9201
9202 (define-public perl-parse-recdescent
9203 (package
9204 (name "perl-parse-recdescent")
9205 (version "1.967015")
9206 (source
9207 (origin
9208 (method url-fetch)
9209 (uri (string-append
9210 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9211 version
9212 ".tar.gz"))
9213 (sha256
9214 (base32
9215 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9216 (build-system perl-build-system)
9217 (native-inputs
9218 `(("perl-module-build" ,perl-module-build)))
9219 (home-page
9220 "http://search.cpan.org/dist/Parse-RecDescent/")
9221 (synopsis "Generate recursive-descent parsers")
9222 (description
9223 "@code{Parse::RecDescent} can incrementally generate top-down
9224 recursive-descent text parsers from simple yacc-like grammar specifications.")
9225 (license perl-license)))
9226
9227 (define-public perl-parse-yapp
9228 (package
9229 (name "perl-parse-yapp")
9230 (version "1.2")
9231 (source
9232 (origin
9233 (method url-fetch)
9234 (uri (string-append
9235 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9236 version
9237 ".tar.gz"))
9238 (sha256
9239 (base32
9240 "16p4qgqg28cy76ylcf4wq1r693gqpx8xq0w32b3564i67h49zljb"))))
9241 (build-system perl-build-system)
9242 (home-page "http://search.cpan.org/dist/Parse-Yapp/")
9243 (synopsis "Generate and use LALR parsers")
9244 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9245 grammars to generate Perl object oriented parser modules.")
9246 (license (package-license perl))))
9247
9248 \f
9249 ;;; Some packaged modules need versions of core modules that are newer than
9250 ;;; those in our perl 5.16.1.
9251
9252 (define-public perl-cpan-meta
9253 (package
9254 (name "perl-cpan-meta")
9255 (version "2.143240")
9256 (source
9257 (origin
9258 (method url-fetch)
9259 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9260 "CPAN-Meta-" version ".tar.gz"))
9261 (sha256
9262 (base32
9263 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9264 (build-system perl-build-system)
9265 (propagated-inputs
9266 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9267 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9268 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9269 (home-page "http://search.cpan.org/dist/CPAN-Meta/")
9270 (synopsis "Distribution metadata for a CPAN dist")
9271 (description "Software distributions released to the CPAN include a
9272 META.json or, for older distributions, META.yml, which describes the
9273 distribution, its contents, and the requirements for building and installing
9274 the distribution. The data structure stored in the META.json file is
9275 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9276 represent this distribution metadata (or distmeta), along with some helpful
9277 methods for interrogating that data.")
9278 (license (package-license perl))))
9279
9280 (define-public perl-cpan-meta-requirements
9281 (package
9282 (name "perl-cpan-meta-requirements")
9283 (version "2.140")
9284 (source
9285 (origin
9286 (method url-fetch)
9287 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9288 "CPAN-Meta-Requirements-" version ".tar.gz"))
9289 (sha256
9290 (base32
9291 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9292 (build-system perl-build-system)
9293 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements/")
9294 (synopsis "Set of version requirements for a CPAN dist")
9295 (description "A CPAN::Meta::Requirements object models a set of version
9296 constraints like those specified in the META.yml or META.json files in CPAN
9297 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9298 adding more and more constraints, and will reduce them to the simplest
9299 representation.")
9300 (license (package-license perl))))
9301
9302 (define-public perl-cpan-meta-yaml
9303 (package
9304 (name "perl-cpan-meta-yaml")
9305 (version "0.018")
9306 (source
9307 (origin
9308 (method url-fetch)
9309 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9310 "CPAN-Meta-YAML-" version ".tar.gz"))
9311 (sha256
9312 (base32
9313 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9314 (build-system perl-build-system)
9315 (arguments
9316 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9317 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML/")
9318 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9319 (description "This module implements a subset of the YAML specification
9320 for use in reading and writing CPAN metadata files like META.yml and
9321 MYMETA.yml.")
9322 (license (package-license perl))))
9323
9324 (define-public perl-module-build
9325 (package
9326 (name "perl-module-build")
9327 (version "0.4220")
9328 (source
9329 (origin
9330 (method url-fetch)
9331 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9332 "Module-Build-" version ".tar.gz"))
9333 (sha256
9334 (base32
9335 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9336 (build-system perl-build-system)
9337 (propagated-inputs
9338 `(("perl-cpan-meta" ,perl-cpan-meta)))
9339 (home-page "http://search.cpan.org/dist/Module-Build/")
9340 (synopsis "Build and install Perl modules")
9341 (description "@code{Module::Build} is a system for building, testing, and
9342 installing Perl modules; it used to be part of Perl itself until version 5.22,
9343 which dropped it. It is meant to be an alternative to
9344 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9345 through subclassing in a much more straightforward way than with
9346 @code{MakeMaker}. It also does not require a @command{make} on your
9347 system---most of the @code{Module::Build} code is pure-Perl.")
9348 (license (package-license perl))))
9349
9350 (define-public perl-parse-cpan-meta
9351 (package
9352 (name "perl-parse-cpan-meta")
9353 (version "2.150010")
9354 (source
9355 (origin
9356 (method url-fetch)
9357 ;; This module is now known as CPAN::Meta on CPAN.
9358 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9359 "CPAN-Meta-" version ".tar.gz"))
9360 (sha256
9361 (base32
9362 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9363 (build-system perl-build-system)
9364 (propagated-inputs
9365 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9366 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta/")
9367 (synopsis "Parse META.yml and META.json CPAN metadata files")
9368 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9369 files, using JSON::PP and/or CPAN::Meta::YAML.")
9370 (license (package-license perl))))
9371
9372 (define-public perl-scalar-list-utils
9373 (package
9374 (name "perl-scalar-list-utils")
9375 (version "1.50")
9376 (source
9377 (origin
9378 (method url-fetch)
9379 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9380 "Scalar-List-Utils-" version ".tar.gz"))
9381 (sha256
9382 (base32
9383 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9384 (build-system perl-build-system)
9385 (home-page "http://search.cpan.org/dist/Scalar-List-Utils/")
9386 (synopsis "Common Scalar and List utility subroutines")
9387 (description "This package contains a selection of subroutines that people
9388 have expressed would be nice to have in the perl core, but the usage would not
9389 really be high enough to warrant the use of a keyword, and the size so small
9390 such that being individual extensions would be wasteful.")
9391 (license (package-license perl))))
9392
9393 (define-public perl-shell-command
9394 (package
9395 (name "perl-shell-command")
9396 (version "0.06")
9397 (source
9398 (origin
9399 (method url-fetch)
9400 (uri (string-append
9401 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9402 version
9403 ".tar.gz"))
9404 (sha256
9405 (base32
9406 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9407 (build-system perl-build-system)
9408 (home-page
9409 "http://search.cpan.org/dist/Shell-Command/")
9410 (synopsis
9411 "Cross-platform functions emulating common shell commands")
9412 (description
9413 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9414 (license (package-license perl))))
9415
9416 ;;; END: Core module overrides
9417
9418 (define-public perl-file-find-object
9419 (package
9420 (name "perl-file-find-object")
9421 (version "v0.2.13")
9422 (source
9423 (origin
9424 (method url-fetch)
9425 (uri (string-append
9426 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9427 version
9428 ".tar.gz"))
9429 (sha256
9430 (base32
9431 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9432 (build-system perl-build-system)
9433 (native-inputs
9434 `(("perl-module-build" ,perl-module-build)))
9435 (inputs
9436 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9437 (home-page
9438 "http://search.cpan.org/dist/File-Find-Object/")
9439 (synopsis
9440 "Object-oriented File::Find replacement in Perl")
9441 (description "File::Find::Object is an object-oriented
9442 File::Find replacement in Perl.")
9443 (license artistic2.0)))
9444
9445 (define-public perl-file-find-object-rule
9446 (package
9447 (name "perl-file-find-object-rule")
9448 (version "0.0305")
9449 (source
9450 (origin
9451 (method url-fetch)
9452 (uri (string-append
9453 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9454 version
9455 ".tar.gz"))
9456 (sha256
9457 (base32
9458 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9459 (build-system perl-build-system)
9460 (native-inputs
9461 `(("perl-module-build" ,perl-module-build)))
9462 (inputs
9463 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9464 ("perl-file-find-object" ,perl-file-find-object)
9465 ("perl-number-compare" ,perl-number-compare)
9466 ("perl-text-glob" ,perl-text-glob)))
9467 (home-page
9468 "http://search.cpan.org/dist/File-Find-Object-Rule/")
9469 (synopsis
9470 "Alternative interface to File::Find::Object")
9471 (description "File::Find::Object::Rule is an alternative Perl
9472 interface to File::Find::Object.")
9473 (license (package-license perl))))
9474
9475 (define-public perl-font-ttf
9476 (package
9477 (name "perl-font-ttf")
9478 (version "1.06")
9479 (source (origin
9480 (method url-fetch)
9481 (uri (string-append
9482 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9483 version ".tar.gz"))
9484 (sha256
9485 (base32
9486 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9487 (build-system perl-build-system)
9488 (propagated-inputs
9489 `(("perl-io-string" ,perl-io-string)))
9490 (home-page "http://search.cpan.org/dist/Font-TTF/")
9491 (synopsis "TTF font support for Perl")
9492 (description "This package provides a Perl module for TrueType/OpenType
9493 font hacking. It supports reading, processing and writing of the following
9494 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9495 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9496 prop, vhea, vmtx and the reading and writing of all other table types.")
9497 (license artistic2.0)))
9498
9499 (define-public perl-libtime-parsedate
9500 (package
9501 (name "perl-libtime-parsedate")
9502 (version "2015.103")
9503 (source
9504 (origin
9505 (method url-fetch)
9506 (uri (string-append
9507 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9508 version ".tar.gz"))
9509 (sha256
9510 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9511 (build-system perl-build-system)
9512 (arguments
9513 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9514 ;; doesn't support it yet.
9515 ;;
9516 ;; #:disallowed-references (,tzdata-for-tests)
9517
9518 #:phases
9519 (modify-phases %standard-phases
9520 ;; This is needed for tests
9521 (add-after 'unpack 'set-TZDIR
9522 (lambda* (#:key inputs #:allow-other-keys)
9523 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9524 "/share/zoneinfo"))
9525 #t)))))
9526 (native-inputs
9527 `(("perl-module-build" ,perl-module-build)
9528 ("tzdata" ,tzdata-for-tests)))
9529 (home-page "https://metacpan.org/release/Time-ParseDate")
9530 (synopsis "Collection of Perl modules for time/date manipulation")
9531 (description "Provides several perl modules for date/time manipulation:
9532 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9533 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9534 ;; License text:
9535 ;; "License hereby granted for anyone to use, modify or redistribute this
9536 ;; module at their own risk. Please feed useful changes back to
9537 ;; cpan@dave.sharnoff.org."
9538 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9539 changelogs/main/libt/libtime-parsedate-perl/\
9540 libtime-parsedate-perl_2015.103-2_copyright"))))
9541
9542 (define-public perl-libtime-period
9543 (package
9544 (name "perl-libtime-period")
9545 (version "1.20")
9546 (source
9547 (origin
9548 (method url-fetch)
9549 (uri (string-append
9550 "http://http.debian.net/debian/pool/main/libt/"
9551 "libtime-period-perl/libtime-period-perl_"
9552 version ".orig.tar.gz"))
9553 (sha256
9554 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9555 (build-system perl-build-system)
9556 (native-inputs
9557 `(("perl-module-build" ,perl-module-build)))
9558 ;; Unless some other homepage is out there...
9559 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9560 (synopsis "Perl library for testing if a time() is in a specific period")
9561 (description "This Perl library provides a function which tells whether a
9562 specific time falls within a specified time period. Its syntax for specifying
9563 time periods allows you to test for conditions like \"Monday to Friday, 9am
9564 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9565 4:15pm\" and \"in the first half of each minute\" and \"in January of
9566 1998\".")
9567 (license perl-license)))
9568
9569 (define-public perl-path-iterator-rule
9570 (package
9571 (name "perl-path-iterator-rule")
9572 (version "1.012")
9573 (source
9574 (origin
9575 (method url-fetch)
9576 (uri (string-append
9577 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9578 version ".tar.gz"))
9579 (sha256
9580 (base32
9581 "1z76avwvwgv4bw28kzx79mmb4449s5l345sn0wljq3dbf4wqigd1"))))
9582 (build-system perl-build-system)
9583 (native-inputs
9584 `(("perl-file-pushd" ,perl-file-pushd)
9585 ("perl-path-tiny" ,perl-path-tiny)
9586 ("perl-test-deep" ,perl-test-deep)
9587 ("perl-test-filename" ,perl-test-filename)))
9588 (propagated-inputs
9589 `(("perl-number-compare" ,perl-number-compare)
9590 ("perl-text-glob" ,perl-text-glob)
9591 ("perl-try-tiny" ,perl-try-tiny)))
9592 (home-page "http://search.cpan.org/dist/Path-Iterator-Rule/")
9593 (synopsis "Iterative, recursive file finder")
9594 (description "Path::Iterator::Rule iterates over files and directories to
9595 identify ones matching a user-defined set of rules. The API is based heavily
9596 on File::Find::Rule, but with more explicit distinction between matching rules
9597 and options that influence how directories are searched. A
9598 Path::Iterator::Rule object is a collection of rules (match criteria) with
9599 methods to add additional criteria. Options that control directory traversal
9600 are given as arguments to the method that generates an iterator.
9601
9602 A summary of features for comparison to other file finding modules:
9603
9604 @itemize
9605 @item provides many helper methods for specifying rules
9606 @item offers (lazy) iterator and flattened list interfaces
9607 @item custom rules implemented with callbacks
9608 @item breadth-first (default) or pre- or post-order depth-first searching
9609 @item follows symlinks (by default, but can be disabled)
9610 @item directories visited only once (no infinite loop; can be disabled)
9611 @item doesn't chdir during operation
9612 @item provides an API for extensions
9613 @end itemize
9614
9615 As a convenience, the PIR module is an empty subclass of this one that is less
9616 arduous to type for one-liners.")
9617 (license asl2.0)))
9618
9619 (define-public perl-pod-constants
9620 (package
9621 (name "perl-pod-constants")
9622 (version "0.19")
9623 (source
9624 (origin
9625 (method url-fetch)
9626 (uri (string-append
9627 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9628 version ".tar.gz"))
9629 (sha256
9630 (base32
9631 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9632 (build-system perl-build-system)
9633 (home-page "http://search.cpan.org/dist/Pod-Constants/")
9634 (synopsis "Include constants from POD")
9635 (description "This module allows you to specify those constants that
9636 should be documented in your POD, and pull them out a run time in a fairly
9637 arbitrary fashion.
9638
9639 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9640 to open the source file it is called from, and does so directly either by
9641 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9642 (or it can't find %INC{caller()}).")
9643 (license artistic2.0)))
9644
9645 (define-public perl-regexp-pattern
9646 (package
9647 (name "perl-regexp-pattern")
9648 (version "0.1.4")
9649 (source
9650 (origin
9651 (method url-fetch)
9652 (uri (string-append
9653 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9654 version ".tar.gz"))
9655 (sha256
9656 (base32
9657 "0rwpl6dxd1yl2ng3d4jdy68jz3mggmdl35rphrw1x619sm1aa876"))))
9658 (build-system perl-build-system)
9659 (native-inputs
9660 `(("perl-test-exception" ,perl-test-exception)))
9661 (home-page "http://search.cpan.org/dist/Regexp-Pattern/")
9662 (synopsis "Collection of regexp patterns")
9663 (description "Regexp::Pattern is a convention for organizing reusable
9664 regexp patterns in modules.")
9665 (license (package-license perl))))