gnu: perl-params-validate: Update to 1.29.
[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, 2018 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 <mail@ambrevar.xyz>
23 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages perl)
41 #:use-module (srfi srfi-1)
42 #:use-module (guix licenses)
43 #:use-module (gnu packages)
44 #:use-module (guix packages)
45 #:use-module (guix download)
46 #:use-module (guix build-system gnu)
47 #:use-module (guix build-system perl)
48 #:use-module (guix utils) ;substitute-keyword-arguments for perl-5.26.2
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages compression)
51 #:use-module (gnu packages freedesktop)
52 #:use-module (gnu packages perl-check)
53 #:use-module (gnu packages perl-web)
54 #:use-module (gnu packages pkg-config))
55
56 ;;;
57 ;;; Please: Try to add new module packages in alphabetic order.
58 ;;;
59
60 \f
61 (define-public perl
62 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
63 (package
64 (name "perl")
65 (version "5.26.1")
66 (replacement perl/fixed)
67 (source (origin
68 (method url-fetch)
69 (uri (string-append "mirror://cpan/src/5.0/perl-"
70 version ".tar.gz"))
71 (sha256
72 (base32
73 "1p81wwvr5jb81m41d07kfywk5gvbk0axdrnvhc2aghcdbr4alqz7"))
74 (patches (search-patches
75 "perl-file-path-CVE-2017-6512.patch"
76 "perl-no-sys-dirs.patch"
77 "perl-autosplit-default-time.patch"
78 "perl-deterministic-ordering.patch"
79 "perl-reproducible-build-date.patch"))))
80 (build-system gnu-build-system)
81 (arguments
82 '(#:tests? #f
83 #:configure-flags
84 (let ((out (assoc-ref %outputs "out"))
85 (libc (assoc-ref %build-inputs "libc")))
86 (list
87 (string-append "-Dprefix=" out)
88 (string-append "-Dman1dir=" out "/share/man/man1")
89 (string-append "-Dman3dir=" out "/share/man/man3")
90 "-de" "-Dcc=gcc"
91 "-Uinstallusrbinperl"
92 "-Dinstallstyle=lib/perl5"
93 "-Duseshrplib"
94 (string-append "-Dlocincpth=" libc "/include")
95 (string-append "-Dloclibpth=" libc "/lib")
96 "-Dusethreads"))
97 #:phases
98 (modify-phases %standard-phases
99 (add-before 'configure 'setup-configure
100 (lambda _
101 ;; Use the right path for `pwd'.
102 (substitute* "dist/PathTools/Cwd.pm"
103 (("/bin/pwd")
104 (which "pwd")))
105
106 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
107 ;; <bits/string3.h>.
108 (substitute* "cflags.SH"
109 (("-std=c89")
110 "-std=gnu89"))
111 #t))
112 (replace 'configure
113 (lambda* (#:key configure-flags #:allow-other-keys)
114 (format #t "Perl configure flags: ~s~%" configure-flags)
115 (apply invoke "./Configure" configure-flags)))
116 (add-before
117 'strip 'make-shared-objects-writable
118 (lambda* (#:key outputs #:allow-other-keys)
119 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
120 ;; writable so that 'strip' actually strips them.
121 (let* ((out (assoc-ref outputs "out"))
122 (lib (string-append out "/lib")))
123 (for-each (lambda (dso)
124 (chmod dso #o755))
125 (find-files lib "\\.so$"))
126 #t)))
127
128 (add-after 'install 'remove-extra-references
129 (lambda* (#:key inputs outputs #:allow-other-keys)
130 (let* ((out (assoc-ref outputs "out"))
131 (libc (assoc-ref inputs "libc"))
132 (config1 (car (find-files (string-append out "/lib/perl5")
133 "^Config_heavy\\.pl$")))
134 (config2 (find-files (string-append out "/lib/perl5")
135 "^Config\\.pm$")))
136 ;; Force the library search path to contain only libc because
137 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
138 ;; want to keep a reference to everything that's in
139 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
140 ;; etc.)
141 (substitute* config1
142 (("^incpth=.*$")
143 (string-append "incpth='" libc "/include'\n"))
144 (("^(libpth|plibpth|libspath)=.*$" _ variable)
145 (string-append variable "='" libc "/lib'\n")))
146
147 (for-each (lambda (file)
148 (substitute* config2
149 (("libpth => .*$")
150 (string-append "libpth => '" libc
151 "/lib',\n"))))
152 config2)
153 #t))))))
154 (native-search-paths (list (search-path-specification
155 (variable "PERL5LIB")
156 (files '("lib/perl5/site_perl")))))
157 (synopsis "Implementation of the Perl programming language")
158 (description
159 "Perl is a general-purpose programming language originally developed for
160 text manipulation and now used for a wide range of tasks including system
161 administration, web development, network programming, GUI development, and
162 more.")
163 (home-page "http://www.perl.org/")
164 (license gpl1+))) ; or "Artistic"
165
166 ;; Fixes CVE-2018-6797, CVE-2018-6798, and CVE-2018-6913.
167 ;; See <https://metacpan.org/changes/release/SHAY/perl-5.26.2>.
168 (define perl-5.26.2
169 (package
170 (inherit perl)
171 (version "5.26.2")
172 (source (origin
173 (inherit (package-source perl))
174 (uri (string-append "mirror://cpan/src/5.0/perl-"
175 version ".tar.gz"))
176 (patches (append (origin-patches (package-source perl))
177 (search-patches "perl-archive-tar-CVE-2018-12015.patch")))
178 (sha256
179 (base32
180 "03gpnxx1g6hvlh0v4aqx00580h787sfywp1vlvw64q2xcbm9qbsp"))))))
181
182 ;; When grafting perl, complications arise when the replacement perl has a
183 ;; different version number than the original. So, here we create a version
184 ;; of perl-5.26.2 that thinks it is version 5.26.1. See
185 ;; <https://bugs.gnu.org/31210> and <https://bugs.gnu.org/31216>.
186 (define perl/fixed
187 (package
188 (inherit perl-5.26.2)
189 (version "5.26.1")
190 (arguments
191 (substitute-keyword-arguments (package-arguments perl-5.26.2)
192 ((#:phases phases)
193 `(modify-phases ,phases
194 (add-after 'unpack 'revert-perl-subversion
195 (lambda _
196 (substitute* "patchlevel.h"
197 (("^#define PERL_SUBVERSION 2")
198 "#define PERL_SUBVERSION 1"))
199 #t))))))))
200
201 (define-public perl-algorithm-c3
202 (package
203 (name "perl-algorithm-c3")
204 (version "0.10")
205 (source
206 (origin
207 (method url-fetch)
208 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
209 "Algorithm-C3-" version ".tar.gz"))
210 (sha256
211 (base32
212 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
213 (build-system perl-build-system)
214 (home-page "https://metacpan.org/release/Algorithm-C3")
215 (synopsis "Module for merging hierarchies using the C3 algorithm")
216 (description "This module implements the C3 algorithm, which aims to
217 provide a sane method resolution order under multiple inheritance.")
218 (license (package-license perl))))
219
220 (define-public perl-algorithm-diff
221 (package
222 (name "perl-algorithm-diff")
223 (version "1.1903")
224 (source
225 (origin
226 (method url-fetch)
227 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
228 "Algorithm-Diff-" version ".tar.gz"))
229 (sha256
230 (base32
231 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
232 (build-system perl-build-system)
233 (home-page "https://metacpan.org/release/Algorithm-Diff")
234 (synopsis "Compute differences between two files or lists")
235 (description "This is a module for computing the difference between two
236 files, two strings, or any other two lists of things. It uses an intelligent
237 algorithm similar to (or identical to) the one used by the Unix \"diff\"
238 program. It is guaranteed to find the *smallest possible* set of
239 differences.")
240 (license (package-license perl))))
241
242 (define-public perl-aliased
243 (package
244 (name "perl-aliased")
245 (version "0.34")
246 (source
247 (origin
248 (method url-fetch)
249 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
250 "aliased-" version ".tar.gz"))
251 (sha256
252 (base32
253 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
254 (build-system perl-build-system)
255 (native-inputs `(("perl-module-build" ,perl-module-build)))
256 (home-page "https://metacpan.org/release/aliased")
257 (synopsis "Use shorter versions of class names")
258 (description "The alias module loads the class you specify and exports
259 into your namespace a subroutine that returns the class name. You can
260 explicitly alias the class to another name or, if you prefer, you can do so
261 implicitly.")
262 (license (package-license perl))))
263
264 (define-public perl-any-moose
265 (package
266 (name "perl-any-moose")
267 (version "0.27")
268 (source (origin
269 (method url-fetch)
270 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
271 "Any-Moose-" version ".tar.gz"))
272 (sha256
273 (base32
274 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
275 (build-system perl-build-system)
276 (native-inputs
277 `(("perl-mouse" ,perl-mouse)
278 ("perl-moose" ,perl-moose)))
279 (home-page "https://metacpan.org/release/Any-Moose")
280 (synopsis "Transparently use Moose or Mouse modules")
281 (description
282 "This module facilitates using @code{Moose} or @code{Mouse} modules
283 without changing the code. By default, Mouse will be provided to libraries,
284 unless Moose is already loaded, or explicitly requested by the end-user. End
285 users can force the decision of which backend to use by setting the environment
286 variable ANY_MOOSE to be Moose or Mouse.")
287 (license (package-license perl))))
288
289 (define-public perl-appconfig
290 (package
291 (name "perl-appconfig")
292 (version "1.71")
293 (source
294 (origin
295 (method url-fetch)
296 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
297 "AppConfig-" version ".tar.gz"))
298 (sha256
299 (base32
300 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
301 (build-system perl-build-system)
302 (native-inputs
303 `(("perl-test-pod" ,perl-test-pod)))
304 (home-page "https://metacpan.org/release/AppConfig")
305 (synopsis "Configuration files and command line parsing")
306 (description "AppConfig is a bundle of Perl5 modules for reading
307 configuration files and parsing command line arguments.")
308 (license (package-license perl))))
309
310 (define-public perl-array-utils
311 (package
312 (name "perl-array-utils")
313 (version "0.5")
314 (source
315 (origin
316 (method url-fetch)
317 (uri (string-append
318 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
319 version
320 ".tar.gz"))
321 (sha256
322 (base32
323 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
324 (build-system perl-build-system)
325 (home-page "https://metacpan.org/release/Array-Utils")
326 (synopsis "Small utils for array manipulation")
327 (description "@code{Array::Utils} is a small pure-perl module containing
328 list manipulation routines.")
329 (license (package-license perl))))
330
331 (define-public perl-async-interrupt
332 (package
333 (name "perl-async-interrupt")
334 (version "1.21")
335 (source (origin
336 (method url-fetch)
337 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
338 "Async-Interrupt-" version ".tar.gz"))
339 (sha256
340 (base32
341 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
342 (build-system perl-build-system)
343 (propagated-inputs
344 `(("perl-common-sense" ,perl-common-sense)))
345 (home-page "https://metacpan.org/release/Async-Interrupt")
346 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
347 (description
348 "@code{Async::Interrupt} implements a single feature only of interest
349 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
350 signals\", which are very similar).
351
352 Sometimes, modules wish to run code asynchronously (in another thread,
353 or from a signal handler), and then signal the perl interpreter on
354 certain events. One common way is to write some data to a pipe and use
355 an event handling toolkit to watch for I/O events. Another way is to
356 send a signal. Those methods are slow, and in the case of a pipe, also
357 not asynchronous - it won't interrupt a running perl interpreter.
358
359 This module implements asynchronous notifications that enable you to
360 signal running perl code from another thread, asynchronously, and
361 sometimes even without using a single syscall.")
362 (license (package-license perl))))
363
364 (define-public perl-autovivification
365 (package
366 (name "perl-autovivification")
367 (version "0.16")
368 (source
369 (origin
370 (method url-fetch)
371 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
372 "autovivification-" version ".tar.gz"))
373 (sha256
374 (base32
375 "1422kw9fknv7rbjkgdfflg1q3mb69d3yryszp38dn0bgzkqhwkc1"))))
376 (build-system perl-build-system)
377 (home-page "https://metacpan.org/release/autovivification")
378 (synopsis "Lexically disable autovivification")
379 (description "When an undefined variable is dereferenced, it gets silently
380 upgraded to an array or hash reference (depending of the type of the
381 dereferencing). This behaviour is called autovivification and usually does
382 what you mean but it may be unnatural or surprising because your variables get
383 populated behind your back. This is especially true when several levels of
384 dereferencing are involved, in which case all levels are vivified up to the
385 last, or when it happens in intuitively read-only constructs like
386 @code{exists}. The pragma provided by this package lets you disable
387 autovivification for some constructs and optionally throws a warning or an
388 error when it would have happened.")
389 (license (package-license perl))))
390
391 (define-public perl-bareword-filehandles
392 (package
393 (name "perl-bareword-filehandles")
394 (version "0.006")
395 (source
396 (origin
397 (method url-fetch)
398 (uri (string-append
399 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
400 version ".tar.gz"))
401 (sha256
402 (base32
403 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
404 (build-system perl-build-system)
405 (native-inputs
406 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
407 ("perl-extutils-depends" ,perl-extutils-depends)))
408 (propagated-inputs
409 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
410 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
411 (home-page "https://metacpan.org/release/bareword-filehandles")
412 (synopsis "Disables bareword filehandles")
413 (description "This module disables bareword filehandles.")
414 (license (package-license perl))))
415
416 (define-public perl-base
417 (package
418 (name "perl-base")
419 (version "2.18")
420 (source
421 (origin
422 (method url-fetch)
423 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
424 "base-" version ".tar.gz"))
425 (sha256
426 (base32
427 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
428 (build-system perl-build-system)
429 (home-page "https://metacpan.org/release/base")
430 (synopsis "Establish an ISA relationship with base classes at compile time")
431 (description "Allows you to both load one or more modules, while setting
432 up inheritance from those modules at the same time. Unless you are using the
433 fields pragma, consider this module discouraged in favor of the lighter-weight
434 parent.")
435 (license (package-license perl)))) ;See README
436
437 (define-public perl-browser-open
438 (package
439 (name "perl-browser-open")
440 (version "0.04")
441 (source
442 (origin
443 (method url-fetch)
444 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
445 version ".tar.gz"))
446 (sha256
447 (base32
448 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
449 (build-system perl-build-system)
450 (home-page "https://metacpan.org/release/Browser-Open")
451 (synopsis "Open a browser in a given URL")
452 (description "The functions exported by this module allow you to open URLs
453 in the user's browser. A set of known commands per OS-name is tested for
454 presence, and the first one found is executed. With an optional parameter,
455 all known commands are checked.")
456 (license (package-license perl))))
457
458 (define-public perl-b-hooks-endofscope
459 (package
460 (name "perl-b-hooks-endofscope")
461 (version "0.24")
462 (source
463 (origin
464 (method url-fetch)
465 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
466 "B-Hooks-EndOfScope-" version ".tar.gz"))
467 (sha256
468 (base32
469 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
470 (build-system perl-build-system)
471 (propagated-inputs
472 `(("perl-module-runtime" ,perl-module-runtime)
473 ("perl-module-implementation" ,perl-module-implementation)
474 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
475 ("perl-variable-magic" ,perl-variable-magic)))
476 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
477 (synopsis "Execute code after a scope finished compilation")
478 (description "This module allows you to execute code when perl finished
479 compiling the surrounding scope.")
480 (license (package-license perl))))
481
482 (define-public perl-b-hooks-op-check
483 (package
484 (name "perl-b-hooks-op-check")
485 (version "0.22")
486 (source
487 (origin
488 (method url-fetch)
489 (uri (string-append
490 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
491 version ".tar.gz"))
492 (sha256
493 (base32
494 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
495 (build-system perl-build-system)
496 (native-inputs
497 `(("perl-extutils-depends" ,perl-extutils-depends)))
498 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
499 (synopsis "Wrap OP check callbacks")
500 (description "This module allows you to wrap OP check callbacks.")
501 (license (package-license perl))))
502
503 (define-public perl-b-keywords
504 (package
505 (name "perl-b-keywords")
506 (version "1.15")
507 (source
508 (origin
509 (method url-fetch)
510 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
511 version ".tar.gz"))
512 (sha256
513 (base32
514 "1nhdplmd0y69lnwyajg3anhk6pm13nm6qzm05nzpz8zl7j7fzlk5"))))
515 (build-system perl-build-system)
516 (home-page "https://metacpan.org/release/B-Keywords")
517 (synopsis "Lists of reserved barewords and symbol names")
518 (description "@code{B::Keywords} supplies several arrays of exportable
519 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
520 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
521 @@ExporterSymbols}.")
522 ;; GPLv2 only
523 (license gpl2)))
524
525 (define-public perl-benchmark-timer
526 (package
527 (name "perl-benchmark-timer")
528 (version "0.7102")
529 (source (origin
530 (method url-fetch)
531 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
532 "Benchmark-Timer-" version ".tar.gz"))
533 (sha256
534 (base32
535 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
536 (build-system perl-build-system)
537 (native-inputs
538 `(("perl-module-install" ,perl-module-install)))
539 ;; The optional input module Statistics::PointEstimation (from
540 ;; Statistics-TTest) lists no license.
541 (synopsis "Benchmarking with statistical confidence")
542 (description
543 "The Benchmark::Timer class allows you to time portions of code
544 conveniently, as well as benchmark code by allowing timings of repeated
545 trials. It is perfect for when you need more precise information about the
546 running time of portions of your code than the Benchmark module will give you,
547 but don't want to go all out and profile your code.")
548 (home-page "https://metacpan.org/release/Benchmark-Timer")
549 (license gpl2)))
550
551 (define-public perl-bit-vector
552 (package
553 (name "perl-bit-vector")
554 (version "7.4")
555 (source
556 (origin
557 (method url-fetch)
558 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
559 "Bit-Vector-" version ".tar.gz"))
560 (sha256
561 (base32
562 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
563 (build-system perl-build-system)
564 (propagated-inputs
565 `(("perl-carp-clan" ,perl-carp-clan)))
566 (home-page "https://metacpan.org/release/Bit-Vector")
567 (synopsis "Bit vector library")
568 (description "Bit::Vector is an efficient C library which allows you to
569 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
570 matrices, all of arbitrary sizes. The package also includes an
571 object-oriented Perl module for accessing the C library from Perl, and
572 optionally features overloaded operators for maximum ease of use. The C
573 library can nevertheless be used stand-alone, without Perl.")
574 (license (list (package-license perl) lgpl2.0+))))
575
576 (define-public perl-boolean
577 (package
578 (name "perl-boolean")
579 (version "0.45")
580 (source
581 (origin
582 (method url-fetch)
583 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
584 "boolean-" version ".tar.gz"))
585 (sha256
586 (base32
587 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
588 (build-system perl-build-system)
589 (home-page "https://metacpan.org/release/boolean")
590 (synopsis "Boolean support for Perl")
591 (description "This module provides basic Boolean support, by defining two
592 special objects: true and false.")
593 (license (package-license perl))))
594
595 (define-public perl-business-isbn-data
596 (package
597 (name "perl-business-isbn-data")
598 (version "20140910.003")
599 (source
600 (origin
601 (method url-fetch)
602 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
603 "Business-ISBN-Data-" version ".tar.gz"))
604 (sha256
605 (base32
606 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
607 (build-system perl-build-system)
608 (home-page "https://metacpan.org/release/Business-ISBN-Data")
609 (synopsis "Data files for Business::ISBN")
610 (description "This package provides a data pack for @code{Business::ISBN}.
611 These data are generated from the RangeMessage.xml file provided by the ISBN
612 Agency.")
613 (license (package-license perl))))
614
615 (define-public perl-business-isbn
616 (package
617 (name "perl-business-isbn")
618 (version "3.004")
619 (source
620 (origin
621 (method url-fetch)
622 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
623 "Business-ISBN-" version ".tar.gz"))
624 (sha256
625 (base32
626 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
627 (build-system perl-build-system)
628 (propagated-inputs
629 `(("perl-business-isbn-data" ,perl-business-isbn-data)
630 ("perl-mojolicious" ,perl-mojolicious)))
631 (home-page "https://metacpan.org/release/Business-ISBN")
632 (synopsis "Work with International Standard Book Numbers")
633 (description "This modules provides tools to deal with International
634 Standard Book Numbers, including ISBN-10 and ISBN-13.")
635 (license artistic2.0)))
636
637 (define-public perl-business-issn
638 (package
639 (name "perl-business-issn")
640 (version "0.91")
641 (source
642 (origin
643 (method url-fetch)
644 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
645 "Business-ISSN-" version ".tar.gz"))
646 (sha256
647 (base32
648 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
649 (build-system perl-build-system)
650 (home-page "https://metacpan.org/release/Business-ISSN")
651 (synopsis "Work with International Standard Serial Numbers")
652 (description "This modules provides tools to deal with International
653 Standard Serial Numbers.")
654 (license (package-license perl))))
655
656 (define-public perl-business-ismn
657 (package
658 (name "perl-business-ismn")
659 (version "1.131")
660 (source
661 (origin
662 (method url-fetch)
663 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
664 "Business-ISMN-" version ".tar.gz"))
665 (sha256
666 (base32
667 "1xyc7x4c4xl930rz7grs1l52f1vg4rbiv0c6xlxdsim8qsh7k94g"))))
668 (build-system perl-build-system)
669 (native-inputs
670 `(("perl-tie-cycle" ,perl-tie-cycle)))
671 (home-page "https://metacpan.org/release/Business-ISMN")
672 (synopsis "Work with International Standard Music Numbers")
673 (description "This modules provides tools to deal with International
674 Standard Music Numbers.")
675 (license (package-license perl))))
676
677 (define-public perl-cache-cache
678 (package
679 (name "perl-cache-cache")
680 (version "1.08")
681 (source (origin
682 (method url-fetch)
683 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
684 "Cache-Cache-" version ".tar.gz"))
685 (sha256
686 (base32
687 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
688 (build-system perl-build-system)
689 (propagated-inputs
690 `(("perl-digest-sha1" ,perl-digest-sha1)
691 ("perl-error" ,perl-error)
692 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
693 (home-page "https://metacpan.org/release/Cache-Cache")
694 (synopsis "Cache interface for Perl")
695 (description "The Cache modules are designed to assist a developer in
696 persisting data for a specified period of time. Often these modules are used
697 in web applications to store data locally to save repeated and redundant
698 expensive calls to remote machines or databases. People have also been known
699 to use Cache::Cache for its straightforward interface in sharing data between
700 runs of an application or invocations of a CGI-style script or simply as an
701 easy to use abstraction of the file system or shared memory.")
702 (license (package-license perl))))
703
704 (define-public perl-cache-fastmmap
705 (package
706 (name "perl-cache-fastmmap")
707 (version "1.40")
708 (source
709 (origin
710 (method url-fetch)
711 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
712 "Cache-FastMmap-" version ".tar.gz"))
713 (sha256
714 (base32
715 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
716 (build-system perl-build-system)
717 (home-page "https://metacpan.org/release/Cache-FastMmap")
718 (synopsis "Shared memory interprocess cache via mmap")
719 (description "A shared memory cache through an mmap'ed file. It's core is
720 written in C for performance. It uses fcntl locking to ensure multiple
721 processes can safely access the cache at the same time. It uses a basic LRU
722 algorithm to keep the most used entries in the cache.")
723 (license (package-license perl))))
724
725 (define-public perl-capture-tiny
726 (package
727 (name "perl-capture-tiny")
728 (version "0.48")
729 (source
730 (origin
731 (method url-fetch)
732 (uri (string-append
733 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
734 version ".tar.gz"))
735 (sha256
736 (base32
737 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
738 (build-system perl-build-system)
739 (home-page "https://metacpan.org/release/Capture-Tiny")
740 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
741 (description
742 "Capture::Tiny provides a simple, portable way to capture almost anything
743 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
744 code or from an external program. Optionally, output can be teed so that it
745 is captured while being passed through to the original file handles.")
746 (license asl2.0)))
747
748 (define-public perl-canary-stability
749 (package
750 (name "perl-canary-stability")
751 (version "2012")
752 (source (origin
753 (method url-fetch)
754 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
755 "Canary-Stability-" version ".tar.gz"))
756 (sha256
757 (base32
758 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
759 (build-system perl-build-system)
760 (home-page "https://metacpan.org/release/Canary-Stability")
761 (synopsis "Check compatibility with the installed perl version")
762 (description
763 "This module is used by Schmorp's modules during configuration stage
764 to test the installed perl for compatibility with his modules.")
765 (license (package-license perl))))
766
767 (define-public perl-carp
768 (package
769 (name "perl-carp")
770 (version "1.38")
771 (source (origin
772 (method url-fetch)
773 (uri (string-append
774 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
775 version ".tar.gz"))
776 (sha256
777 (base32
778 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
779 (build-system perl-build-system)
780 (home-page "https://metacpan.org/release/Carp")
781 (synopsis "Alternative warn and die for modules")
782 (description "The @code{Carp} routines are useful in your own modules
783 because they act like @code{die()} or @code{warn()}, but with a message
784 which is more likely to be useful to a user of your module. In the case
785 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
786 summary of every call in the call-stack. For a shorter message you can use
787 @code{carp} or @code{croak} which report the error as being from where your
788 module was called. There is no guarantee that that is where the error was,
789 but it is a good educated guess.")
790 (license (package-license perl))))
791
792 (define-public perl-carp-always
793 (package
794 (name "perl-carp-always")
795 (version "0.13")
796 (source
797 (origin
798 (method url-fetch)
799 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
800 version ".tar.gz"))
801 (sha256
802 (base32
803 "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1"))))
804 (build-system perl-build-system)
805 (native-inputs
806 `(("perl-test-base" ,perl-test-base)))
807 (home-page "https://metacpan.org/release/Carp-Always")
808 (synopsis "Warns and dies noisily with stack backtraces/")
809 (description "This module is meant as a debugging aid. It can be used to
810 make a script complain loudly with stack backtraces when @code{warn()}-ing or
811 @code{die()}ing.")
812 (license (package-license perl))))
813
814 (define-public perl-carp-assert
815 (package
816 (name "perl-carp-assert")
817 (version "0.21")
818 (source
819 (origin
820 (method url-fetch)
821 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
822 "Carp-Assert-" version ".tar.gz"))
823 (sha256
824 (base32
825 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
826 (build-system perl-build-system)
827 (home-page "https://metacpan.org/release/Carp-Assert")
828 (synopsis "Executable comments for Perl")
829 (description "Carp::Assert is intended for a purpose like the ANSI C
830 library assert.h.")
831 (license (package-license perl))))
832
833 (define-public perl-carp-assert-more
834 (package
835 (name "perl-carp-assert-more")
836 (version "1.14")
837 (source
838 (origin
839 (method url-fetch)
840 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
841 "Carp-Assert-More-" version ".tar.gz"))
842 (sha256
843 (base32
844 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
845 (build-system perl-build-system)
846 (native-inputs
847 `(("perl-test-exception" ,perl-test-exception)))
848 (propagated-inputs
849 `(("perl-carp-assert" ,perl-carp-assert)))
850 (home-page "https://metacpan.org/release/Carp-Assert-More")
851 (synopsis "Convenience wrappers around Carp::Assert")
852 (description "Carp::Assert::More is a set of handy assertion functions for
853 Perl.")
854 (license artistic2.0)))
855
856 (define-public perl-carp-clan
857 (package
858 (name "perl-carp-clan")
859 (version "6.06")
860 (source
861 (origin
862 (method url-fetch)
863 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
864 "Carp-Clan-" version ".tar.gz"))
865 (sha256
866 (base32
867 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
868 (build-system perl-build-system)
869 (native-inputs
870 `(("perl-test-exception" ,perl-test-exception)))
871 (home-page "https://metacpan.org/release/Carp-Clan")
872 (synopsis "Report errors from a \"clan\" of modules")
873 (description "This module allows errors from a clan (or family) of modules
874 to appear to originate from the caller of the clan. This is necessary in
875 cases where the clan modules are not classes derived from each other, and thus
876 the Carp.pm module doesn't help.")
877 (license (package-license perl))))
878
879 (define-public perl-cddb-get
880 (package
881 (name "perl-cddb-get")
882 (version "2.28")
883 (source (origin
884 (method url-fetch)
885 (uri (string-append
886 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
887 version ".tar.gz"))
888 (sha256
889 (base32
890 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
891 (build-system perl-build-system)
892 (home-page "https://metacpan.org/release/CDDB_get")
893 (synopsis "Read the CDDB entry for an audio CD in your drive")
894 (description "This module can retrieve information from the CDDB.")
895 ;; Either GPLv2 or the "Artistic" license.
896 (license (list gpl2 artistic2.0))))
897
898 (define-public perl-class-accessor
899 (package
900 (name "perl-class-accessor")
901 (version "0.51")
902 (source
903 (origin
904 (method url-fetch)
905 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
906 "Class-Accessor-" version ".tar.gz"))
907 (sha256
908 (base32
909 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
910 (build-system perl-build-system)
911 (native-inputs
912 `(("perl-sub-name" ,perl-sub-name)))
913 (propagated-inputs
914 `(("perl-base" ,perl-base)))
915 (home-page "https://metacpan.org/release/Class-Accessor")
916 (synopsis "Automated accessor generation")
917 (description "This module automagically generates accessors/mutators for
918 your class.")
919 (license (package-license perl))))
920
921 (define-public perl-class-accessor-chained
922 (package
923 (name "perl-class-accessor-chained")
924 (version "0.01")
925 (source
926 (origin
927 (method url-fetch)
928 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
929 "Class-Accessor-Chained-" version ".tar.gz"))
930 (sha256
931 (base32
932 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
933 (build-system perl-build-system)
934 (native-inputs
935 `(("perl-module-build" ,perl-module-build)))
936 (propagated-inputs
937 `(("perl-class-accessor" ,perl-class-accessor)))
938 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
939 (synopsis "Faster, but less expandable, chained accessors")
940 (description "A chained accessor is one that always returns the object
941 when called with parameters (to set), and the value of the field when called
942 with no arguments. This module subclasses Class::Accessor in order to provide
943 the same mk_accessors interface.")
944 (license (package-license perl))))
945
946 (define-public perl-class-accessor-grouped
947 (package
948 (name "perl-class-accessor-grouped")
949 (version "0.10012")
950 (source
951 (origin
952 (method url-fetch)
953 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
954 "Class-Accessor-Grouped-" version ".tar.gz"))
955 (sha256
956 (base32
957 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
958 (build-system perl-build-system)
959 (native-inputs
960 `(("perl-module-install" ,perl-module-install)
961 ("perl-test-exception" ,perl-test-exception)))
962 (propagated-inputs
963 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
964 ("perl-module-runtime" ,perl-module-runtime)
965 ("perl-sub-name" ,perl-sub-name)))
966 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
967 (synopsis "Build groups of accessors")
968 (description "This class lets you build groups of accessors that will call
969 different getters and setters.")
970 (license (package-license perl))))
971
972 (define-public perl-class-c3
973 (package
974 (name "perl-class-c3")
975 (version "0.27")
976 (source
977 (origin
978 (method url-fetch)
979 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
980 "Class-C3-" version ".tar.gz"))
981 (sha256
982 (base32
983 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
984 (build-system perl-build-system)
985 (propagated-inputs
986 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
987 (home-page "https://metacpan.org/release//Class-C3")
988 (synopsis "Pragma to use the C3 method resolution order algorithm")
989 (description "This is pragma to change Perl 5's standard method resolution
990 order from depth-first left-to-right (a.k.a - pre-order) to the more
991 sophisticated C3 method resolution order.")
992 (license (package-license perl))))
993
994 (define-public perl-class-c3-adopt-next
995 (package
996 (name "perl-class-c3-adopt-next")
997 (version "0.13")
998 (source
999 (origin
1000 (method url-fetch)
1001 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
1002 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1003 (sha256
1004 (base32
1005 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
1006 (build-system perl-build-system)
1007 (native-inputs
1008 `(("perl-test-exception" ,perl-test-exception)))
1009 (propagated-inputs
1010 `(("perl-list-moreutils" ,perl-list-moreutils)
1011 ("perl-mro-compat" ,perl-mro-compat)))
1012 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
1013 (synopsis "Drop-in replacement for NEXT")
1014 (description "This module is intended as a drop-in replacement for NEXT,
1015 supporting the same interface, but using Class::C3 to do the hard work.")
1016 (license (package-license perl))))
1017
1018 (define-public perl-class-c3-componentised
1019 (package
1020 (name "perl-class-c3-componentised")
1021 (version "1.001000")
1022 (source
1023 (origin
1024 (method url-fetch)
1025 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1026 "Class-C3-Componentised-" version ".tar.gz"))
1027 (sha256
1028 (base32
1029 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
1030 (build-system perl-build-system)
1031 (native-inputs
1032 `(("perl-module-install" ,perl-module-install)
1033 ("perl-test-exception" ,perl-test-exception)))
1034 (propagated-inputs
1035 `(("perl-class-c3" ,perl-class-c3)
1036 ("perl-class-inspector" ,perl-class-inspector)
1037 ("perl-mro-compat" ,perl-mro-compat)))
1038 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1039 (synopsis "Load mix-ins or components to your C3-based class")
1040 (description "This module will inject base classes to your module using
1041 the Class::C3 method resolution order.")
1042 (license (package-license perl))))
1043
1044 (define-public perl-class-data-inheritable
1045 (package
1046 (name "perl-class-data-inheritable")
1047 (version "0.08")
1048 (source
1049 (origin
1050 (method url-fetch)
1051 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1052 "Class-Data-Inheritable-" version ".tar.gz"))
1053 (sha256
1054 (base32
1055 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1056 (build-system perl-build-system)
1057 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1058 (synopsis "Inheritable, overridable class data")
1059 (description "Class::Data::Inheritable is for creating accessor/mutators
1060 to class data. That is, if you want to store something about your class as a
1061 whole (instead of about a single object). This data is then inherited by your
1062 subclasses and can be overridden.")
1063 (license (package-license perl))))
1064
1065 (define-public perl-class-date
1066 (package
1067 (name "perl-class-date")
1068 (version "1.1.15")
1069 (source
1070 (origin
1071 (method url-fetch)
1072 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1073 "Class-Date-" version ".tar.gz"))
1074 (sha256
1075 (base32
1076 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
1077 (build-system perl-build-system)
1078 (arguments `(#:tests? #f)) ;timezone tests in chroot
1079 (home-page "https://metacpan.org/release/Class-Date")
1080 (synopsis "Class for easy date and time manipulation")
1081 (description "This module provides a general-purpose date and datetime
1082 type for perl.")
1083 (license (package-license perl))))
1084
1085 (define-public perl-class-errorhandler
1086 (package
1087 (name "perl-class-errorhandler")
1088 (version "0.04")
1089 (source (origin
1090 (method url-fetch)
1091 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1092 "Class-ErrorHandler-" version ".tar.gz"))
1093 (sha256
1094 (base32
1095 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1096 (build-system perl-build-system)
1097 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1098 (synopsis "Base class for error handling")
1099 (description
1100 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1101 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1102 its two error-handling methods, error and errstr, to communicate error messages back
1103 to the calling program.")
1104 (license (package-license perl))))
1105
1106 (define-public perl-class-factory-util
1107 (package
1108 (name "perl-class-factory-util")
1109 (version "1.7")
1110 (source
1111 (origin
1112 (method url-fetch)
1113 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1114 "Class-Factory-Util-" version ".tar.gz"))
1115 (sha256
1116 (base32
1117 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1118 (build-system perl-build-system)
1119 (native-inputs `(("perl-module-build" ,perl-module-build)))
1120 (home-page "https://metacpan.org/release/Class-Factory-Util")
1121 (synopsis "Utility methods for factory classes")
1122 (description "This module exports methods useful for factory classes.")
1123 (license (package-license perl))))
1124
1125 (define-public perl-class-inspector
1126 (package
1127 (name "perl-class-inspector")
1128 (version "1.32")
1129 (source
1130 (origin
1131 (method url-fetch)
1132 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1133 "Class-Inspector-" version ".tar.gz"))
1134 (sha256
1135 (base32
1136 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1137 (build-system perl-build-system)
1138 (home-page "https://metacpan.org/release/Class-Inspector")
1139 (synopsis "Get information about a class and its structure")
1140 (description "Class::Inspector allows you to get information about a
1141 loaded class.")
1142 (license (package-license perl))))
1143
1144 (define-public perl-class-load
1145 (package
1146 (name "perl-class-load")
1147 (version "0.24")
1148 (source
1149 (origin
1150 (method url-fetch)
1151 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1152 "Class-Load-" version ".tar.gz"))
1153 (sha256
1154 (base32
1155 "0dnacm959vi5819h6cdl5qpi89fr81p6smbsqx7m6in18vd87f8b"))))
1156 (build-system perl-build-system)
1157 (native-inputs
1158 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1159 ("perl-test-fatal" ,perl-test-fatal)
1160 ("perl-test-needs" ,perl-test-needs)
1161 ("perl-test-without-module" ,perl-test-without-module)))
1162 (propagated-inputs
1163 `(("perl-package-stash" ,perl-package-stash)
1164 ("perl-data-optlist" ,perl-data-optlist)
1165 ("perl-namespace-clean" ,perl-namespace-clean)
1166 ("perl-module-runtime" ,perl-module-runtime)
1167 ("perl-module-implementation" ,perl-module-implementation)))
1168 (home-page "https://metacpan.org/release/Class-Load")
1169 (synopsis "Working (require \"Class::Name\") and more")
1170 (description "\"require EXPR\" only accepts Class/Name.pm style module
1171 names, not Class::Name. For that, this module provides \"load_class
1172 'Class::Name'\".")
1173 (license (package-license perl))))
1174
1175 (define-public perl-class-load-xs
1176 (package
1177 (name "perl-class-load-xs")
1178 (version "0.10")
1179 (source
1180 (origin
1181 (method url-fetch)
1182 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1183 "Class-Load-XS-" version ".tar.gz"))
1184 (sha256
1185 (base32
1186 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1187 (build-system perl-build-system)
1188 (native-inputs
1189 `(("perl-test-fatal" ,perl-test-fatal)
1190 ("perl-test-needs" ,perl-test-needs)
1191 ("perl-test-without-module" ,perl-test-without-module)))
1192 (inputs `(("perl-class-load" ,perl-class-load)))
1193 (home-page "https://metacpan.org/release/Class-Load-XS")
1194 (synopsis "XS implementation of parts of Class::Load")
1195 (description "This module provides an XS implementation for portions of
1196 Class::Load.")
1197 (license artistic2.0)))
1198
1199 (define-public perl-class-methodmaker
1200 (package
1201 (name "perl-class-methodmaker")
1202 (version "2.24")
1203 (source
1204 (origin
1205 (method url-fetch)
1206 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1207 "class-methodmaker/Class-MethodMaker-"
1208 version ".tar.gz"))
1209 (sha256
1210 (base32
1211 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1212 (build-system perl-build-system)
1213 (home-page "https://metacpan.org/release/Class-MethodMaker")
1214 (synopsis "Create generic methods for OO Perl")
1215 (description "This module solves the problem of having to continually
1216 write accessor methods for your objects that perform standard tasks.")
1217 (license (package-license perl))))
1218
1219 (define-public perl-class-method-modifiers
1220 (package
1221 (name "perl-class-method-modifiers")
1222 (version "2.12")
1223 (source
1224 (origin
1225 (method url-fetch)
1226 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1227 "Class-Method-Modifiers-" version ".tar.gz"))
1228 (sha256
1229 (base32
1230 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1231 (build-system perl-build-system)
1232 (native-inputs
1233 `(("perl-test-fatal" ,perl-test-fatal)
1234 ("perl-test-requires" ,perl-test-requires)))
1235 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1236 (synopsis "Moose-like method modifiers")
1237 (description "Class::Method::Modifiers provides three modifiers: 'before',
1238 'around', and 'after'. 'before' and 'after' are run just before and after the
1239 method they modify, but can not really affect that original method. 'around'
1240 is run in place of the original method, with a hook to easily call that
1241 original method.")
1242 (license (package-license perl))))
1243
1244 (define-public perl-class-singleton
1245 (package
1246 (name "perl-class-singleton")
1247 (version "1.5")
1248 (source
1249 (origin
1250 (method url-fetch)
1251 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1252 "Class-Singleton-" version ".tar.gz"))
1253 (sha256
1254 (base32
1255 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1256 (build-system perl-build-system)
1257 (home-page "https://metacpan.org/release/Class-Singleton")
1258 (synopsis "Implementation of a singleton class for Perl")
1259 (description "This module implements a Singleton class from which other
1260 classes can be derived. By itself, the Class::Singleton module does very
1261 little other than manage the instantiation of a single object.")
1262 (license (package-license perl))))
1263
1264 (define-public perl-class-tiny
1265 (package
1266 (name "perl-class-tiny")
1267 (version "1.006")
1268 (source
1269 (origin
1270 (method url-fetch)
1271 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1272 "Class-Tiny-" version ".tar.gz"))
1273 (sha256
1274 (base32
1275 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1276 (build-system perl-build-system)
1277 (home-page "https://metacpan.org/release/Class-Tiny")
1278 (synopsis "Minimalist class construction")
1279 (description "This module offers a minimalist class construction kit. It
1280 uses no non-core modules for any recent Perl.")
1281 (license asl2.0)))
1282
1283 (define-public perl-class-unload
1284 (package
1285 (name "perl-class-unload")
1286 (version "0.08")
1287 (source
1288 (origin
1289 (method url-fetch)
1290 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1291 "Class-Unload-" version ".tar.gz"))
1292 (sha256
1293 (base32
1294 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1295 (build-system perl-build-system)
1296 (propagated-inputs
1297 `(("perl-class-inspector" ,perl-class-inspector)))
1298 (home-page "https://metacpan.org/release/Class-Unload")
1299 (synopsis "Unload a class")
1300 (description "Class:Unload unloads a given class by clearing out its
1301 symbol table and removing it from %INC.")
1302 (license (package-license perl))))
1303
1304 (define-public perl-class-xsaccessor
1305 (package
1306 (name "perl-class-xsaccessor")
1307 (version "1.19")
1308 (source
1309 (origin
1310 (method url-fetch)
1311 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1312 "Class-XSAccessor-" version ".tar.gz"))
1313 (sha256
1314 (base32
1315 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1316 (build-system perl-build-system)
1317 (home-page "https://metacpan.org/release/Class-XSAccessor")
1318 (synopsis "Generate fast XS accessors without runtime compilation")
1319 (description "Class::XSAccessor implements fast read, write, and
1320 read/write accessors in XS. Additionally, it can provide predicates such as
1321 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1322 object. It only works with objects that are implemented as ordinary hashes.
1323 Class::XSAccessor::Array implements the same interface for objects that use
1324 arrays for their internal representation.")
1325 (license (package-license perl))))
1326
1327 (define-public perl-clone
1328 (package
1329 (name "perl-clone")
1330 (version "0.39")
1331 (source (origin
1332 (method url-fetch)
1333 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1334 "Clone-" version ".tar.gz"))
1335 (sha256
1336 (base32
1337 "0bgsidb96gxzf3zhy6v1ksj1c200vxbwykk32fqm1mj97rl4dc5c"))))
1338 (build-system perl-build-system)
1339 (synopsis "Recursively copy Perl datatypes")
1340 (description
1341 "This module provides a clone() method which makes recursive copies of
1342 nested hash, array, scalar and reference types, including tied variables and
1343 objects.")
1344 (home-page "https://metacpan.org/release/Clone")
1345 (license (package-license perl))))
1346
1347 (define-public perl-clone-pp
1348 (package
1349 (name "perl-clone-pp")
1350 (version "1.07")
1351 (source
1352 (origin
1353 (method url-fetch)
1354 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1355 version ".tar.gz"))
1356 (sha256
1357 (base32
1358 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1359 (build-system perl-build-system)
1360 (home-page "https://metacpan.org/release/Clone-PP")
1361 (synopsis "Recursively copy Perl datatypes")
1362 (description "This module provides a general-purpose @code{clone} function
1363 to make deep copies of Perl data structures. It calls itself recursively to
1364 copy nested hash, array, scalar and reference types, including tied variables
1365 and objects.")
1366 (license (package-license perl))))
1367
1368 (define-public perl-common-sense
1369 (package
1370 (name "perl-common-sense")
1371 (version "3.74")
1372 (source
1373 (origin
1374 (method url-fetch)
1375 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1376 "common-sense-" version ".tar.gz"))
1377 (sha256
1378 (base32
1379 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1380 (build-system perl-build-system)
1381 (home-page "https://metacpan.org/release/common-sense")
1382 (synopsis "Sane defaults for Perl programs")
1383 (description "This module implements some sane defaults for Perl programs,
1384 as defined by two typical specimens of Perl coders.")
1385 (license (package-license perl))))
1386
1387 (define-public perl-config-any
1388 (package
1389 (name "perl-config-any")
1390 (version "0.32")
1391 (source
1392 (origin
1393 (method url-fetch)
1394 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1395 "Config-Any-" version ".tar.gz"))
1396 (sha256
1397 (base32
1398 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1399 (build-system perl-build-system)
1400 (propagated-inputs
1401 `(("perl-module-pluggable" ,perl-module-pluggable)))
1402 (home-page "https://metacpan.org/release/Config-Any")
1403 (synopsis "Load configuration from different file formats")
1404 (description "Config::Any provides a facility for Perl applications and
1405 libraries to load configuration data from multiple different file formats. It
1406 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1407 (license (package-license perl))))
1408
1409 (define-public perl-config-autoconf
1410 (package
1411 (name "perl-config-autoconf")
1412 (version "0.315")
1413 (source
1414 (origin
1415 (method url-fetch)
1416 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1417 "Config-AutoConf-" version ".tar.gz"))
1418 (sha256
1419 (base32
1420 "0h39x9rzrhhilpg8yxlzpka269qrzsjg0iy0c1b9xflqlvhx2g2b"))))
1421 (build-system perl-build-system)
1422 (propagated-inputs
1423 `(("perl-capture-tiny" ,perl-capture-tiny)))
1424 (home-page "https://metacpan.org/release/Config-AutoConf")
1425 (synopsis "Module to implement some AutoConf macros in Perl")
1426 (description "Config::AutoConf is intended to provide the same
1427 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1428 (license (package-license perl))))
1429
1430 (define-public perl-config-general
1431 (package
1432 (name "perl-config-general")
1433 (version "2.56")
1434 (source
1435 (origin
1436 (method url-fetch)
1437 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1438 "Config-General-" version ".tar.gz"))
1439 (sha256
1440 (base32
1441 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1442 (build-system perl-build-system)
1443 (home-page "https://metacpan.org/release/Config-General")
1444 (synopsis "Generic Config Module")
1445 (description "This module opens a config file and parses its contents for
1446 you. The format of config files supported by Config::General is inspired by
1447 the well known Apache config format and is 100% compatible with Apache
1448 configs, but you can also just use simple name/value pairs in your config
1449 files. In addition to the capabilities of an Apache config file it supports
1450 some enhancements such as here-documents, C-style comments, and multiline
1451 options.")
1452 (license (package-license perl))))
1453
1454 (define-public perl-config-ini
1455 (package
1456 (name "perl-config-ini")
1457 (version "0.025")
1458 (source (origin
1459 (method url-fetch)
1460 (uri (string-append
1461 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1462 version ".tar.gz"))
1463 (sha256
1464 (base32
1465 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1466 (build-system perl-build-system)
1467 (inputs
1468 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1469 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1470 ("perl-sub-exporter" ,perl-sub-exporter)))
1471 (home-page "https://metacpan.org/release/Config-INI")
1472 (synopsis "Simple .ini-file format reader and writer")
1473 (description "@code{Config::INI} is a module that facilates the reading
1474 and writing of @code{.ini}-style configuration files.")
1475 (license (package-license perl))))
1476
1477 (define-public perl-context-preserve
1478 (package
1479 (name "perl-context-preserve")
1480 (version "0.03")
1481 (source
1482 (origin
1483 (method url-fetch)
1484 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1485 "Context-Preserve-" version ".tar.gz"))
1486 (sha256
1487 (base32
1488 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1489 (build-system perl-build-system)
1490 (native-inputs
1491 `(("perl-test-exception" ,perl-test-exception)
1492 ("perl-test-simple" ,perl-test-simple)))
1493 (home-page "https://metacpan.org/release/Context-Preserve")
1494 (synopsis "Preserve context during subroutine call")
1495 (description "This module runs code after a subroutine call, preserving
1496 the context the subroutine would have seen if it were the last statement in
1497 the caller.")
1498 (license (package-license perl))))
1499
1500 (define-public perl-convert-binhex
1501 (package
1502 (name "perl-convert-binhex")
1503 (version "1.125")
1504 (source
1505 (origin
1506 (method url-fetch)
1507 (uri (string-append
1508 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1509 version
1510 ".tar.gz"))
1511 (sha256
1512 (base32
1513 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1514 (build-system perl-build-system)
1515 (native-inputs
1516 `(("perl-file-slurp" ,perl-file-slurp)
1517 ("perl-test-most" ,perl-test-most)))
1518 (home-page
1519 "https://metacpan.org/release/Convert-BinHex")
1520 (synopsis "Extract data from Macintosh BinHex files")
1521 (description
1522 "BinHex is a format for transporting files safely through electronic
1523 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1524 provides a means of converting those data streams back into into binary
1525 data.")
1526 (license perl-license)))
1527
1528 (define-public perl-cpan-changes
1529 (package
1530 (name "perl-cpan-changes")
1531 (version "0.400002")
1532 (source
1533 (origin
1534 (method url-fetch)
1535 (uri (string-append
1536 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1537 version ".tar.gz"))
1538 (sha256
1539 (base32
1540 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1541 (build-system perl-build-system)
1542 (home-page "https://metacpan.org/release/CPAN-Changes")
1543 (synopsis "Read and write @file{Changes} files")
1544 (description
1545 "@code{CPAN::Changes} helps users programmatically read and write
1546 @file{Changes} files that conform to a common specification.")
1547 (license perl-license)))
1548
1549 (define-public perl-cpan-meta-check
1550 (package
1551 (name "perl-cpan-meta-check")
1552 (version "0.014")
1553 (source
1554 (origin
1555 (method url-fetch)
1556 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1557 "CPAN-Meta-Check-" version ".tar.gz"))
1558 (sha256
1559 (base32
1560 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1561 (build-system perl-build-system)
1562 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1563 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1564 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1565 (synopsis "Verify requirements in a CPAN::Meta object")
1566 (description "This module verifies if requirements described in a
1567 CPAN::Meta object are present.")
1568 (license (package-license perl))))
1569
1570 (define-public perl-cpanel-json-xs
1571 (package
1572 (name "perl-cpanel-json-xs")
1573 (version "3.0114")
1574 (source
1575 (origin
1576 (method url-fetch)
1577 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1578 "Cpanel-JSON-XS-" version ".tar.gz"))
1579 (sha256
1580 (base32
1581 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1582 (build-system perl-build-system)
1583 (propagated-inputs
1584 `(("perl-common-sense" ,perl-common-sense)))
1585 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1586 (synopsis "JSON::XS for Cpanel")
1587 (description "This module converts Perl data structures to JSON and vice
1588 versa.")
1589 (license (package-license perl))))
1590
1591 (define-public perl-crypt-randpasswd
1592 (package
1593 (name "perl-crypt-randpasswd")
1594 (version "0.06")
1595 (source
1596 (origin
1597 (method url-fetch)
1598 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1599 "Crypt-RandPasswd-" version ".tar.gz"))
1600 (sha256
1601 (base32
1602 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1603 (build-system perl-build-system)
1604 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
1605 (synopsis "Random password generator")
1606 (description "Crypt::RandPasswd provides three functions that can be used
1607 to generate random passwords, constructed from words, letters, or characters.
1608 This code is a Perl implementation of the Automated Password Generator
1609 standard, like the program described in \"A Random Word Generator For
1610 Pronounceable Passwords\". This code is a re-engineering of the program
1611 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1612 Password Generator\".")
1613 (license (package-license perl))))
1614
1615 (define-public perl-crypt-rc4
1616 (package
1617 (name "perl-crypt-rc4")
1618 (version "2.02")
1619 (source
1620 (origin
1621 (method url-fetch)
1622 (uri (string-append
1623 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1624 version
1625 ".tar.gz"))
1626 (sha256
1627 (base32
1628 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1629 (build-system perl-build-system)
1630 (home-page "https://metacpan.org/release//Crypt-RC4")
1631 (synopsis "Perl implementation of the RC4 encryption algorithm")
1632 (description "A pure Perl implementation of the RC4 algorithm.")
1633 (license (package-license perl))))
1634
1635 (define-public perl-cwd-guard
1636 (package
1637 (name "perl-cwd-guard")
1638 (version "0.05")
1639 (source (origin
1640 (method url-fetch)
1641 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1642 "Cwd-Guard-" version ".tar.gz"))
1643 (sha256
1644 (base32
1645 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1646 (build-system perl-build-system)
1647 (native-inputs
1648 `(("perl-module-build" ,perl-module-build)
1649 ("perl-test-requires" ,perl-test-requires)))
1650 (home-page "https://metacpan.org/release/Cwd-Guard")
1651 (synopsis "Temporarily change working directory")
1652 (description
1653 "@code{Cwd::Guard} changes the current directory using a limited scope.
1654 It returns to the previous working directory when the object is destroyed.")
1655 (license (package-license perl))))
1656
1657 (define-public perl-czplib
1658 (package
1659 (name "perl-czplib")
1660 (version "1.0.5")
1661 (source
1662 (origin
1663 (method url-fetch)
1664 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1665 version ".tgz"))
1666 (sha256
1667 (base32
1668 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1669 (modules '((guix build utils)))
1670 (snippet
1671 '(begin
1672 ;; Remove .git directory
1673 (delete-file-recursively ".git")
1674 #t))))
1675 (build-system perl-build-system)
1676 (arguments
1677 `(#:phases
1678 (modify-phases %standard-phases
1679 (delete 'configure)
1680 (delete 'build)
1681 (replace
1682 'install
1683 (lambda* (#:key outputs #:allow-other-keys)
1684 (copy-recursively "."
1685 (string-append (assoc-ref outputs "out")
1686 "/plib/perl5/site_perl/"
1687 ,(package-version perl)
1688 "/czplib/"))
1689 #t)))))
1690 (home-page "https://sourceforge.net/projects/czplib/")
1691 (synopsis "Library for genomic analysis")
1692 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1693 functions and data structures for processing and analysing genomic and
1694 bioinformatics data.")
1695 (license gpl3+)))
1696
1697 (define-public perl-data
1698 (package
1699 (name "perl-data")
1700 (version "0.002009")
1701 (source
1702 (origin
1703 (method url-fetch)
1704 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1705 "Data-Perl-" version ".tar.gz"))
1706 (sha256
1707 (base32
1708 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1709 (build-system perl-build-system)
1710 (native-inputs
1711 `(("perl-test-deep" ,perl-test-deep)
1712 ("perl-test-output" ,perl-test-output)
1713 ("perl-test-fatal" ,perl-test-fatal)))
1714 (inputs
1715 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1716 ("perl-list-moreutils" ,perl-list-moreutils)
1717 ("perl-module-runtime" ,perl-module-runtime)
1718 ("perl-role-tiny" ,perl-role-tiny)
1719 ("perl-strictures" ,perl-strictures)))
1720 (home-page "https://metacpan.org/release/Data-Perl")
1721 (synopsis "Base classes wrapping fundamental Perl data types")
1722 (description "Collection of classes that wrap fundamental data types that
1723 exist in Perl. These classes and methods as they exist today are an attempt
1724 to mirror functionality provided by Moose's Native Traits. One important
1725 thing to note is all classes currently do no validation on constructor
1726 input.")
1727 (license (package-license perl))))
1728
1729 (define-public perl-data-compare
1730 (package
1731 (name "perl-data-compare")
1732 (version "1.25")
1733 (source
1734 (origin
1735 (method url-fetch)
1736 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1737 "Data-Compare-" version ".tar.gz"))
1738 (sha256
1739 (base32
1740 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1741 (build-system perl-build-system)
1742 (propagated-inputs
1743 `(("perl-file-find-rule" ,perl-file-find-rule)))
1744 (home-page "https://metacpan.org/release/Data-Compare")
1745 (synopsis "Compare Perl data structures")
1746 (description "This module compares arbitrary data structures to see if
1747 they are copies of each other.")
1748 (license (package-license perl))))
1749
1750 (define-public perl-data-uniqid
1751 (package
1752 (name "perl-data-uniqid")
1753 (version "0.12")
1754 (source
1755 (origin
1756 (method url-fetch)
1757 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1758 version ".tar.gz"))
1759 (sha256
1760 (base32
1761 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1762 (build-system perl-build-system)
1763 (home-page "https://metacpan.org/release/Data-Uniqid")
1764 (synopsis "Perl extension for generating unique identifiers")
1765 (description "@code{Data::Uniqid} provides three simple routines for
1766 generating unique ids. These ids are coded with a Base62 systen to make them
1767 short and handy (e.g. to use it as part of a URL).")
1768 (license (package-license perl))))
1769
1770 (define-public perl-data-dump
1771 (package
1772 (name "perl-data-dump")
1773 (version "1.23")
1774 (source
1775 (origin
1776 (method url-fetch)
1777 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1778 "Data-Dump-" version ".tar.gz"))
1779 (sha256
1780 (base32
1781 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1782 (build-system perl-build-system)
1783 (home-page "https://metacpan.org/release/Data-Dump")
1784 (synopsis "Pretty printing of data structures")
1785 (description "This module provide functions that takes a list of values as
1786 their argument and produces a string as its result. The string contains Perl
1787 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1788 (license (package-license perl))))
1789
1790 (define-public perl-data-dumper-concise
1791 (package
1792 (name "perl-data-dumper-concise")
1793 (version "2.023")
1794 (source
1795 (origin
1796 (method url-fetch)
1797 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1798 "Data-Dumper-Concise-" version ".tar.gz"))
1799 (sha256
1800 (base32
1801 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1802 (build-system perl-build-system)
1803 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
1804 (synopsis "Concise data dumper")
1805 (description "Data::Dumper::Concise provides a dumper with Less
1806 indentation and newlines plus sub deparsing.")
1807 (license (package-license perl))))
1808
1809 (define-public perl-data-optlist
1810 (package
1811 (name "perl-data-optlist")
1812 (version "0.110")
1813 (source
1814 (origin
1815 (method url-fetch)
1816 (uri (string-append
1817 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1818 version ".tar.gz"))
1819 (sha256
1820 (base32
1821 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1822 (build-system perl-build-system)
1823 (propagated-inputs
1824 `(("perl-sub-install" ,perl-sub-install)
1825 ("perl-params-util" ,perl-params-util)))
1826 (home-page "https://metacpan.org/release/Data-OptList")
1827 (synopsis "Parse and validate simple name/value option pairs")
1828 (description
1829 "Data::OptList provides a simple syntax for name/value option pairs.")
1830 (license (package-license perl))))
1831
1832 (define-public perl-data-page
1833 (package
1834 (name "perl-data-page")
1835 (version "2.02")
1836 (source
1837 (origin
1838 (method url-fetch)
1839 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1840 "Data-Page-" version ".tar.gz"))
1841 (sha256
1842 (base32
1843 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1844 (build-system perl-build-system)
1845 (native-inputs
1846 `(("perl-module-build" ,perl-module-build)
1847 ("perl-test-exception" ,perl-test-exception)))
1848 (propagated-inputs
1849 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1850 (home-page "https://metacpan.org/release/Data-Page")
1851 (synopsis "Help when paging through sets of results")
1852 (description "When searching through large amounts of data, it is often
1853 the case that a result set is returned that is larger than we want to display
1854 on one page. This results in wanting to page through various pages of data.
1855 The maths behind this is unfortunately fiddly, hence this module.")
1856 (license (package-license perl))))
1857
1858 (define-public perl-data-perl
1859 (package
1860 (name "perl-data-perl")
1861 (version "0.002009")
1862 (source
1863 (origin
1864 (method url-fetch)
1865 (uri (string-append
1866 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1867 version
1868 ".tar.gz"))
1869 (sha256
1870 (base32
1871 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1872 (build-system perl-build-system)
1873 (native-inputs
1874 `(("perl-test-deep" ,perl-test-deep)
1875 ("perl-test-fatal" ,perl-test-fatal)
1876 ("perl-test-output" ,perl-test-output)))
1877 (inputs
1878 `(("perl-class-method-modifiers"
1879 ,perl-class-method-modifiers)
1880 ("perl-module-runtime" ,perl-module-runtime)
1881 ("perl-role-tiny" ,perl-role-tiny)
1882 ("perl-strictures" ,perl-strictures)))
1883 (propagated-inputs
1884 `(("perl-list-moreutils" ,perl-list-moreutils)))
1885 (home-page
1886 "https://metacpan.org/release/Data-Perl")
1887 (synopsis "Base classes wrapping fundamental Perl data types")
1888 (description
1889 "@code{Data::Perl} is a container class for the following classes:
1890 @itemize
1891 @item @code{Data::Perl::Collection::Hash}
1892 @item @code{Data::Perl::Collection::Array}
1893 @item @code{Data::Perl::String}
1894 @item @code{Data::Perl::Number}
1895 @item @code{Data::Perl::Counter}
1896 @item @code{Data::Perl::Bool}
1897 @item @code{Data::Perl::Code}
1898 @end itemize")
1899 (license perl-license)))
1900
1901 (define-public perl-data-printer
1902 (package
1903 (name "perl-data-printer")
1904 (version "0.40")
1905 (source
1906 (origin
1907 (method url-fetch)
1908 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1909 version ".tar.gz"))
1910 (sha256
1911 (base32
1912 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1913 (build-system perl-build-system)
1914 (propagated-inputs
1915 `(("perl-clone-pp" ,perl-clone-pp)
1916 ("perl-file-homedir" ,perl-file-homedir)
1917 ("perl-package-stash" ,perl-package-stash)
1918 ("perl-sort-naturally" ,perl-sort-naturally)))
1919 (home-page "https://metacpan.org/release/Data-Printer")
1920 (synopsis "Colored pretty-print of Perl data structures and objects")
1921 (description "Display Perl variables and objects on screen, properly
1922 formatted (to be inspected by a human).")
1923 (license (package-license perl))))
1924
1925 (define-public perl-data-record
1926 (package
1927 (name "perl-data-record")
1928 (version "0.02")
1929 (source
1930 (origin
1931 (method url-fetch)
1932 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1933 "Data-Record-" version ".tar.gz"))
1934 (sha256
1935 (base32
1936 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1937 (build-system perl-build-system)
1938 (native-inputs
1939 `(("perl-test-exception" ,perl-test-exception)
1940 ("perl-module-build" ,perl-module-build)))
1941 (propagated-inputs
1942 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1943 (home-page "https://metacpan.org/release/Data-Record")
1944 (synopsis "Conditionally split data into records")
1945 (description "This Perl module allows you to split data into records by
1946 not only specifying what you wish to split the data on, but also by specifying
1947 an \"unless\" regular expression. If the text in question matches the
1948 \"unless\" regex, it will not be split there. This allows us to do things
1949 like split on newlines unless newlines are embedded in quotes.")
1950 (license (package-license perl))))
1951
1952 (define-public perl-data-section
1953 (package
1954 (name "perl-data-section")
1955 (version "0.200007")
1956 (source
1957 (origin
1958 (method url-fetch)
1959 (uri (string-append
1960 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1961 version
1962 ".tar.gz"))
1963 (sha256
1964 (base32
1965 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1966 (build-system perl-build-system)
1967 (native-inputs
1968 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1969 (propagated-inputs
1970 `(("perl-mro-compat" ,perl-mro-compat)
1971 ("perl-sub-exporter" ,perl-sub-exporter)))
1972 (home-page "https://metacpan.org/release/Data-Section")
1973 (synopsis "Read multiple hunks of data out of your DATA section")
1974 (description "This package provides a Perl library to read multiple hunks
1975 of data out of your DATA section.")
1976 (license (package-license perl))))
1977
1978 (define-public perl-data-stag
1979 (package
1980 (name "perl-data-stag")
1981 (version "0.14")
1982 (source
1983 (origin
1984 (method url-fetch)
1985 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1986 "Data-Stag-" version ".tar.gz"))
1987 (sha256
1988 (base32
1989 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1990 (build-system perl-build-system)
1991 (propagated-inputs
1992 `(("perl-io-string" ,perl-io-string)))
1993 (home-page "https://metacpan.org/release/Data-Stag")
1994 (synopsis "Structured tags datastructures")
1995 (description
1996 "This module is for manipulating data as hierarchical tag/value
1997 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1998 be represented as nested arrays, which have the advantage of being native to
1999 Perl.")
2000 (license (package-license perl))))
2001
2002 (define-public perl-data-stream-bulk
2003 (package
2004 (name "perl-data-stream-bulk")
2005 (version "0.11")
2006 (source
2007 (origin
2008 (method url-fetch)
2009 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2010 "Data-Stream-Bulk-" version ".tar.gz"))
2011 (sha256
2012 (base32
2013 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2014 (build-system perl-build-system)
2015 (native-inputs
2016 `(("perl-test-requires" ,perl-test-requires)))
2017 (propagated-inputs
2018 `(("perl-moose" ,perl-moose)
2019 ("perl-namespace-clean" ,perl-namespace-clean)
2020 ("perl-path-class" ,perl-path-class)
2021 ("perl-sub-exporter" ,perl-sub-exporter)))
2022 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2023 (synopsis "N at a time iteration API")
2024 (description "This module tries to find middle ground between one at a
2025 time and all at once processing of data sets. The purpose of this module is
2026 to avoid the overhead of implementing an iterative api when this isn't
2027 necessary, without breaking forward compatibility in case that becomes
2028 necessary later on.")
2029 (license (package-license perl))))
2030
2031 (define-public perl-data-tumbler
2032 (package
2033 (name "perl-data-tumbler")
2034 (version "0.008")
2035 (source
2036 (origin
2037 (method url-fetch)
2038 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2039 "Data-Tumbler-" version ".tar.gz"))
2040 (sha256
2041 (base32
2042 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
2043 (build-system perl-build-system)
2044 (native-inputs
2045 `(("perl-test-most" ,perl-test-most)))
2046 (propagated-inputs
2047 `(("perl-file-homedir" ,perl-file-homedir)))
2048 (home-page "https://metacpan.org/release/Data-Tumbler")
2049 (synopsis "Dynamic generation of nested combinations of variants")
2050 (description "Data::Tumbler - Dynamic generation of nested combinations of
2051 variants.")
2052 (license (package-license perl))))
2053
2054 (define-public perl-data-visitor
2055 (package
2056 (name "perl-data-visitor")
2057 (version "0.30")
2058 (source
2059 (origin
2060 (method url-fetch)
2061 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2062 "Data-Visitor-" version ".tar.gz"))
2063 (sha256
2064 (base32
2065 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2066 (build-system perl-build-system)
2067 (native-inputs
2068 `(("perl-test-requires" ,perl-test-requires)))
2069 (propagated-inputs
2070 `(("perl-class-load" ,perl-class-load)
2071 ("perl-moose" ,perl-moose)
2072 ("perl-namespace-clean" ,perl-namespace-clean)
2073 ("perl-task-weaken" ,perl-task-weaken)
2074 ("perl-tie-toobject" ,perl-tie-toobject)))
2075 (home-page "https://metacpan.org/release/Data-Visitor")
2076 (synopsis "Visitor style traversal of Perl data structures")
2077 (description "This module is a simple visitor implementation for Perl
2078 values. It has a main dispatcher method, visit, which takes a single perl
2079 value and then calls the methods appropriate for that value. It can
2080 recursively map (cloning as necessary) or just traverse most structures, with
2081 support for per-object behavior, circular structures, visiting tied
2082 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2083 (license (package-license perl))))
2084
2085 (define-public perl-date-calc
2086 (package
2087 (name "perl-date-calc")
2088 (version "6.4")
2089 (source
2090 (origin
2091 (method url-fetch)
2092 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2093 "Date-Calc-" version ".tar.gz"))
2094 (sha256
2095 (base32
2096 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2097 (build-system perl-build-system)
2098 (propagated-inputs
2099 `(("perl-bit-vector" ,perl-bit-vector)
2100 ("perl-carp-clan" ,perl-carp-clan)))
2101 (home-page "https://metacpan.org/release/Date-Calc")
2102 (synopsis "Gregorian calendar date calculations")
2103 (description "This package consists of a Perl module for date calculations
2104 based on the Gregorian calendar, thereby complying with all relevant norms and
2105 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2106 applicable).")
2107 (license (package-license perl))))
2108
2109 (define-public perl-date-calc-xs
2110 (package
2111 (name "perl-date-calc-xs")
2112 (version "6.4")
2113 (source
2114 (origin
2115 (method url-fetch)
2116 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2117 "Date-Calc-XS-" version ".tar.gz"))
2118 (sha256
2119 (base32
2120 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2121 (build-system perl-build-system)
2122 (propagated-inputs
2123 `(("perl-bit-vector" ,perl-bit-vector)
2124 ("perl-carp-clan" ,perl-carp-clan)
2125 ("perl-date-calc" ,perl-date-calc)))
2126 (home-page "https://metacpan.org/release/Date-Calc-XS")
2127 (synopsis "XS wrapper for Date::Calc")
2128 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2129 Date::Calc.")
2130 (license (list (package-license perl) lgpl2.0+))))
2131
2132 (define-public perl-date-manip
2133 (package
2134 (name "perl-date-manip")
2135 (version "6.70")
2136 (source
2137 (origin
2138 (method url-fetch)
2139 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2140 "Date-Manip-" version ".tar.gz"))
2141 (sha256
2142 (base32
2143 "0r4k4ypb09xwhvq6das0vpx2c0xbhhhx83knq6jfpf8m55h8qi9r"))))
2144 (build-system perl-build-system)
2145 (native-inputs `(("perl-module-build" ,perl-module-build)))
2146 (arguments
2147 ;; Tests would require tzdata for timezone information, but tzdata is in
2148 ;; (gnu packages base) which would create a circular dependency. TODO:
2149 ;; Maybe put this package elsewhere so we can turn on tests.
2150 '(#:tests? #f))
2151 (home-page "https://metacpan.org/release/Date-Manip")
2152 (synopsis "Date manipulation routines")
2153 (description "Date::Manip is a series of modules for common date/time
2154 operations, such as comparing two times, determining a date a given amount of
2155 time from another, or parsing international times.")
2156 (license (package-license perl))))
2157
2158 (define-public perl-date-simple
2159 (package
2160 (name "perl-date-simple")
2161 (version "3.03")
2162 (source
2163 (origin
2164 (method url-fetch)
2165 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2166 "Date-Simple-" version ".tar.gz"))
2167 (sha256
2168 (base32
2169 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2170 (build-system perl-build-system)
2171 (home-page "https://metacpan.org/release/Date-Simple")
2172 (synopsis "Simple date handling")
2173 (description "Dates are complex enough without times and timezones. This
2174 module may be used to create simple date objects. It handles validation,
2175 interval arithmetic, and day-of-week calculation. It does not deal with
2176 hours, minutes, seconds, and time zones.")
2177 ;; Can be used with either license.
2178 (license (list (package-license perl) gpl2+))))
2179
2180 (define-public perl-datetime
2181 (package
2182 (name "perl-datetime")
2183 (version "1.49")
2184 (source
2185 (origin
2186 (method url-fetch)
2187 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2188 "DateTime-" version ".tar.gz"))
2189 (sha256
2190 (base32
2191 "0hbw4zq1562slnz7g7hyhfhyq98dzkk3i5g21x3xra5cvfix93kh"))))
2192 (build-system perl-build-system)
2193 (native-inputs
2194 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2195 ("perl-module-build" ,perl-module-build)
2196 ("perl-test-fatal" ,perl-test-fatal)
2197 ("perl-test-warnings" ,perl-test-warnings)))
2198 (propagated-inputs
2199 `(("perl-datetime-locale" ,perl-datetime-locale)
2200 ("perl-datetime-timezone" ,perl-datetime-timezone)
2201 ("perl-file-sharedir" ,perl-file-sharedir)
2202 ("perl-params-validate" ,perl-params-validate)
2203 ("perl-try-tiny" ,perl-try-tiny)))
2204 (home-page "https://metacpan.org/release/DateTime")
2205 (synopsis "Date and time object for Perl")
2206 (description "DateTime is a class for the representation of date/time
2207 combinations. It represents the Gregorian calendar, extended backwards in
2208 time before its creation (in 1582).")
2209 (license artistic2.0)))
2210
2211 (define-public perl-datetime-calendar-julian
2212 (package
2213 (name "perl-datetime-calendar-julian")
2214 (version "0.04")
2215 (source
2216 (origin
2217 (method url-fetch)
2218 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2219 "DateTime-Calendar-Julian-" version ".tar.gz"))
2220 (sha256
2221 (base32
2222 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
2223 (build-system perl-build-system)
2224 ;; Only needed for tests
2225 (native-inputs
2226 `(("perl-datetime" ,perl-datetime)))
2227 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2228 (synopsis "Dates in the Julian calendar")
2229 (description "This package is a companion module to @code{DateTime.pm}.
2230 It implements the Julian calendar. It supports everything that
2231 @code{DateTime.pm} supports and more: about one day per century more, to be
2232 precise.")
2233 (license (package-license perl))))
2234
2235 (define-public perl-datetime-set
2236 (package
2237 (name "perl-datetime-set")
2238 (version "0.3900")
2239 (source
2240 (origin
2241 (method url-fetch)
2242 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2243 "DateTime-Set-" version ".tar.gz"))
2244 (sha256
2245 (base32
2246 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2247 (build-system perl-build-system)
2248 (native-inputs
2249 `(("perl-module-build" ,perl-module-build)))
2250 (propagated-inputs
2251 `(("perl-datetime" ,perl-datetime)
2252 ("perl-params-validate" ,perl-params-validate)
2253 ("perl-set-infinite" ,perl-set-infinite)))
2254 (home-page "https://metacpan.org/release/DateTime-Set")
2255 (synopsis "DateTime set objects")
2256 (description "The DateTime::Set module provides a date/time sets
2257 implementation. It allows, for example, the generation of groups of dates,
2258 like \"every wednesday\", and then find all the dates matching that pattern,
2259 within a time range.")
2260 (license (package-license perl))))
2261
2262 (define-public perl-datetime-event-ical
2263 (package
2264 (name "perl-datetime-event-ical")
2265 (version "0.13")
2266 (source
2267 (origin
2268 (method url-fetch)
2269 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2270 "DateTime-Event-ICal-" version ".tar.gz"))
2271 (sha256
2272 (base32
2273 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2274 (build-system perl-build-system)
2275 (propagated-inputs
2276 `(("perl-datetime" ,perl-datetime)
2277 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2278 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2279 (synopsis "DateTime rfc2445 recurrences")
2280 (description "This module provides convenience methods that let you easily
2281 create DateTime::Set objects for RFC 2445 style recurrences.")
2282 (license (package-license perl))))
2283
2284 (define-public perl-datetime-event-recurrence
2285 (package
2286 (name "perl-datetime-event-recurrence")
2287 (version "0.19")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2292 "DateTime-Event-Recurrence-" version ".tar.gz"))
2293 (sha256
2294 (base32
2295 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2296 (build-system perl-build-system)
2297 (propagated-inputs
2298 `(("perl-datetime" ,perl-datetime)
2299 ("perl-datetime-set" ,perl-datetime-set)))
2300 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2301 (synopsis "DateTime::Set extension for basic recurrences")
2302 (description "This module provides convenience methods that let you easily
2303 create DateTime::Set objects for various recurrences, such as \"once a month\"
2304 or \"every day\". You can also create more complicated recurrences, such as
2305 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2306 (license (package-license perl))))
2307
2308 (define-public perl-datetime-format-builder
2309 (package
2310 (name "perl-datetime-format-builder")
2311 (version "0.81")
2312 (source
2313 (origin
2314 (method url-fetch)
2315 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2316 "DateTime-Format-Builder-" version ".tar.gz"))
2317 (sha256
2318 (base32
2319 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2320 (build-system perl-build-system)
2321 (propagated-inputs
2322 `(("perl-class-factory-util" ,perl-class-factory-util)
2323 ("perl-datetime" ,perl-datetime)
2324 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2325 ("perl-params-validate" ,perl-params-validate)))
2326 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
2327 (synopsis "Create DateTime parser classes and objects")
2328 (description "DateTime::Format::Builder creates DateTime parsers. Many
2329 string formats of dates and times are simple and just require a basic regular
2330 expression to extract the relevant information. Builder provides a simple way
2331 to do this without writing reams of structural code.")
2332 (license artistic2.0)))
2333
2334 (define-public perl-datetime-format-flexible
2335 (package
2336 (name "perl-datetime-format-flexible")
2337 (version "0.28")
2338 (source
2339 (origin
2340 (method url-fetch)
2341 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2342 "DateTime-Format-Flexible-" version ".tar.gz"))
2343 (sha256
2344 (base32
2345 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2346 (build-system perl-build-system)
2347 (propagated-inputs
2348 `(("perl-datetime" ,perl-datetime)
2349 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2350 ("perl-datetime-timezone" ,perl-datetime-timezone)
2351 ("perl-list-moreutils" ,perl-list-moreutils)
2352 ("perl-module-pluggable" ,perl-module-pluggable)
2353 ("perl-test-mocktime" ,perl-test-mocktime)))
2354 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
2355 (synopsis "Parse data/time strings")
2356 (description "DateTime::Format::Flexible attempts to take any string you
2357 give it and parse it into a DateTime object.")
2358 (license (package-license perl))))
2359
2360 (define-public perl-datetime-format-ical
2361 (package
2362 (name "perl-datetime-format-ical")
2363 (version "0.09")
2364 (source
2365 (origin
2366 (method url-fetch)
2367 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2368 "DateTime-Format-ICal-" version ".tar.gz"))
2369 (sha256
2370 (base32
2371 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2372 (build-system perl-build-system)
2373 (native-inputs
2374 `(("perl-module-build" ,perl-module-build)))
2375 (propagated-inputs
2376 `(("perl-datetime" ,perl-datetime)
2377 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2378 ("perl-datetime-set" ,perl-datetime-set)
2379 ("perl-datetime-timezone" ,perl-datetime-timezone)
2380 ("perl-params-validate" ,perl-params-validate)))
2381 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
2382 (synopsis "Parse and format iCal datetime and duration strings")
2383 (description "This module understands the ICal date/time and duration
2384 formats, as defined in RFC 2445. It can be used to parse these formats in
2385 order to create the appropriate objects.")
2386 (license (package-license perl))))
2387
2388 (define-public perl-datetime-format-natural
2389 (package
2390 (name "perl-datetime-format-natural")
2391 (version "1.05")
2392 (source
2393 (origin
2394 (method url-fetch)
2395 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2396 "DateTime-Format-Natural-" version ".tar.gz"))
2397 (sha256
2398 (base32
2399 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2400 (build-system perl-build-system)
2401 (native-inputs
2402 `(("perl-module-build" ,perl-module-build)
2403 ("perl-module-util" ,perl-module-util)
2404 ("perl-test-mocktime" ,perl-test-mocktime)))
2405 (propagated-inputs
2406 `(("perl-boolean" ,perl-boolean)
2407 ("perl-clone" ,perl-clone)
2408 ("perl-date-calc" ,perl-date-calc)
2409 ("perl-date-calc-xs" ,perl-date-calc-xs)
2410 ("perl-datetime" ,perl-datetime)
2411 ("perl-datetime-timezone" ,perl-datetime-timezone)
2412 ("perl-list-moreutils" ,perl-list-moreutils)
2413 ("perl-params-validate" ,perl-params-validate)))
2414 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
2415 (synopsis "Machine-readable date/time with natural parsing")
2416 (description "DateTime::Format::Natural takes a string with a human
2417 readable date/time and creates a machine readable one by applying natural
2418 parsing logic.")
2419 (license (package-license perl))))
2420
2421 (define-public perl-datetime-format-strptime
2422 (package
2423 (name "perl-datetime-format-strptime")
2424 (version "1.75")
2425 (source
2426 (origin
2427 (method url-fetch)
2428 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2429 "DateTime-Format-Strptime-" version ".tar.gz"))
2430 (sha256
2431 (base32
2432 "069wmgbchydgx3nm9klqw0g6ksnja28g61d4allgzmvr9ynb5ksg"))))
2433 (build-system perl-build-system)
2434 (propagated-inputs
2435 `(("perl-datetime" ,perl-datetime)
2436 ("perl-datetime-locale" ,perl-datetime-locale)
2437 ("perl-datetime-timezone" ,perl-datetime-timezone)
2438 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2439 ("perl-params-validate" ,perl-params-validate)
2440 ("perl-sub-name" ,perl-sub-name)
2441 ("perl-test-warnings" ,perl-test-warnings)))
2442 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
2443 (synopsis "Parse and format strp and strf time patterns")
2444 (description "This module implements most of `strptime(3)`, the POSIX
2445 function that is the reverse of `strftime(3)`, for `DateTime`. While
2446 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2447 takes a string and a pattern and returns the `DateTime` object associated.")
2448 (license artistic2.0)))
2449
2450 (define-public perl-datetime-locale
2451 (package
2452 (name "perl-datetime-locale")
2453 (version "1.17")
2454 (source
2455 (origin
2456 (method url-fetch)
2457 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2458 "DateTime-Locale-" version ".tar.gz"))
2459 (sha256
2460 (base32
2461 "1jawnci23kik5x4gln6ixvv9bxznd5f6ira024yjxsc97y5mk9hc"))))
2462 (build-system perl-build-system)
2463 (native-inputs
2464 `(("perl-file-sharedir" ,perl-file-sharedir)
2465 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2466 ("perl-test-warnings" ,perl-test-warnings)
2467 ("perl-test-requires" ,perl-test-requires)
2468 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2469 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2470 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2471 ("perl-module-build" ,perl-module-build)))
2472 (propagated-inputs
2473 `(("perl-list-moreutils" ,perl-list-moreutils)
2474 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2475 (home-page "https://metacpan.org/release/DateTime-Locale")
2476 (synopsis "Localization support for DateTime.pm")
2477 (description "The DateTime::Locale modules provide localization data for
2478 the DateTime.pm class.")
2479 (license (package-license perl))))
2480
2481 (define-public perl-datetime-timezone
2482 (package
2483 (name "perl-datetime-timezone")
2484 (version "2.19")
2485 (source
2486 (origin
2487 (method url-fetch)
2488 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2489 "DateTime-TimeZone-" version ".tar.gz"))
2490 (sha256
2491 (base32
2492 "1y54bsgq886sg35fgmxgj8wwmgs4l83qhwa0g3zv8w9d43z2w6dr"))))
2493 (build-system perl-build-system)
2494 (native-inputs
2495 `(("perl-test-fatal" ,perl-test-fatal)
2496 ("perl-test-requires" ,perl-test-requires)))
2497 (propagated-inputs
2498 `(("perl-class-singleton" ,perl-class-singleton)
2499 ("perl-list-allutils" ,perl-list-allutils)
2500 ("perl-module-runtime" ,perl-module-runtime)
2501 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2502 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2503 ("perl-try-tiny" ,perl-try-tiny)))
2504 (home-page "https://metacpan.org/release/DateTime-TimeZone")
2505 (synopsis "Time zone object for Perl")
2506 (description "This class is the base class for all time zone objects. A
2507 time zone is represented internally as a set of observances, each of which
2508 describes the offset from GMT for a given time period. Note that without the
2509 DateTime module, this module does not do much. It's primary interface is
2510 through a DateTime object, and most users will not need to directly use
2511 DateTime::TimeZone methods.")
2512 (license (package-license perl))))
2513
2514 (define-public perl-datetimex-easy
2515 (package
2516 (name "perl-datetimex-easy")
2517 (version "0.089")
2518 (source
2519 (origin
2520 (method url-fetch)
2521 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2522 "DateTimeX-Easy-" version ".tar.gz"))
2523 (sha256
2524 (base32
2525 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2526 (build-system perl-build-system)
2527 (native-inputs
2528 `(("perl-test-most" ,perl-test-most)))
2529 (propagated-inputs
2530 `(("perl-datetime" ,perl-datetime)
2531 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2532 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2533 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2534 ("perl-timedate" ,perl-timedate)))
2535 (home-page "https://metacpan.org/release/DateTimeX-Easy")
2536 (synopsis "Parse date/time strings")
2537 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2538 to create DateTime objects, with some custom tweaks to smooth out the rough
2539 edges (mainly concerning timezone detection and selection).")
2540 (license (package-license perl))))
2541
2542 (define-public perl-datetime-format-mail
2543 (package
2544 (name "perl-datetime-format-mail")
2545 (version "0.403")
2546 (source (origin
2547 (method url-fetch)
2548 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2549 "DateTime-Format-Mail-" version ".tar.gz"))
2550 (sha256
2551 (base32
2552 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2553 (build-system perl-build-system)
2554 (inputs
2555 `(("perl-datetime" ,perl-datetime)
2556 ("perl-params-validate" ,perl-params-validate)))
2557 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
2558 (synopsis "Convert between DateTime and RFC2822/822 formats")
2559 (description "RFCs 2822 and 822 specify date formats to be used by email.
2560 This module parses and emits such dates.")
2561 (license (package-license perl))))
2562
2563 (define-public perl-datetime-format-w3cdtf
2564 (package
2565 (name "perl-datetime-format-w3cdtf")
2566 (version "0.07")
2567 (source (origin
2568 (method url-fetch)
2569 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2570 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2571 (sha256
2572 (base32
2573 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2574 (build-system perl-build-system)
2575 (inputs
2576 `(("perl-datetime" ,perl-datetime)))
2577 (native-inputs
2578 `(("perl-test-pod" ,perl-test-pod)
2579 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2580 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
2581 (synopsis "Parse and format W3CDTF datetime strings")
2582 (description
2583 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2584 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2585 format of RSS 1.0. It can be used to parse these formats in order to create
2586 the appropriate objects.")
2587 (license (package-license perl))))
2588
2589 (define-public perl-devel-caller
2590 (package
2591 (name "perl-devel-caller")
2592 (version "2.06")
2593 (source
2594 (origin
2595 (method url-fetch)
2596 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2597 "Devel-Caller-" version ".tar.gz"))
2598 (sha256
2599 (base32
2600 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2601 (build-system perl-build-system)
2602 (propagated-inputs
2603 `(("perl-padwalker" ,perl-padwalker)))
2604 (home-page "https://metacpan.org/release/Devel-Caller")
2605 (synopsis "Meatier version of caller")
2606 (description "Devel::Caller provides meatier version of caller.")
2607 (license (package-license perl))))
2608
2609 (define-public perl-devel-checkbin
2610 (package
2611 (name "perl-devel-checkbin")
2612 (version "0.02")
2613 (source
2614 (origin
2615 (method url-fetch)
2616 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2617 "Devel-CheckBin-" version ".tar.gz"))
2618 (sha256
2619 (base32
2620 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2621 (build-system perl-build-system)
2622 (native-inputs `(("perl-module-build" ,perl-module-build)))
2623 (home-page "https://metacpan.org/release/Devel-CheckBin")
2624 (synopsis "Check that a command is available")
2625 (description "Devel::CheckBin is a perl module that checks whether a
2626 particular command is available.")
2627 (license (package-license perl))))
2628
2629 (define-public perl-devel-checkcompiler
2630 (package
2631 (name "perl-devel-checkcompiler")
2632 (version "0.07")
2633 (source (origin
2634 (method url-fetch)
2635 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2636 "Devel-CheckCompiler-" version ".tar.gz"))
2637 (sha256
2638 (base32
2639 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2640 (build-system perl-build-system)
2641 (native-inputs
2642 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2643 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
2644 (synopsis "Check compiler availability")
2645 (description "@code{Devel::CheckCompiler} is a tiny module to check
2646 whether a compiler is available. It can test for a C99 compiler, or
2647 you can tell it to compile a C source file with optional linker flags.")
2648 (license (package-license perl))))
2649
2650 (define-public perl-devel-cycle
2651 (package
2652 (name "perl-devel-cycle")
2653 (version "1.12")
2654 (source
2655 (origin
2656 (method url-fetch)
2657 (uri (string-append
2658 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2659 version
2660 ".tar.gz"))
2661 (sha256
2662 (base32
2663 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2664 (build-system perl-build-system)
2665 (home-page
2666 "https://metacpan.org/release/Devel-Cycle")
2667 (synopsis "Find memory cycles in objects")
2668 (description
2669 "@code{Devel::Cycle} This is a tool for finding circular references in
2670 objects and other types of references. Because of Perl's reference-count
2671 based memory management, circular references will cause memory leaks.")
2672 (license perl-license)))
2673
2674 (define-public perl-devel-globaldestruction
2675 (package
2676 (name "perl-devel-globaldestruction")
2677 (version "0.14")
2678 (source
2679 (origin
2680 (method url-fetch)
2681 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2682 "Devel-GlobalDestruction-" version ".tar.gz"))
2683 (sha256
2684 (base32
2685 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2686 (build-system perl-build-system)
2687 (propagated-inputs
2688 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2689 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
2690 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2691 (description "Devel::GlobalDestruction provides a function returning the
2692 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2693 (license (package-license perl))))
2694
2695 (define-public perl-devel-hide
2696 (package
2697 (name "perl-devel-hide")
2698 (version "0.0009")
2699 (source
2700 (origin
2701 (method url-fetch)
2702 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2703 version ".tar.gz"))
2704 (sha256
2705 (base32
2706 "1phnzbw58v6551nhv6sg86m72nx9w5j4msh1hg4jvkakkq5w9pki"))))
2707 (build-system perl-build-system)
2708 (propagated-inputs
2709 `(("perl-test-pod" ,perl-test-pod)
2710 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2711 (home-page "https://metacpan.org/release/Devel-Hide")
2712 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2713 (description "Given a list of Perl modules/filenames, this module makes
2714 @code{require} and @code{use} statements fail (no matter whether the specified
2715 files/modules are installed or not).")
2716 (license (package-license perl))))
2717
2718 (define-public perl-devel-lexalias
2719 (package
2720 (name "perl-devel-lexalias")
2721 (version "0.05")
2722 (source
2723 (origin
2724 (method url-fetch)
2725 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2726 "Devel-LexAlias-" version ".tar.gz"))
2727 (sha256
2728 (base32
2729 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2730 (build-system perl-build-system)
2731 (propagated-inputs
2732 `(("perl-devel-caller" ,perl-devel-caller)))
2733 (home-page "https://metacpan.org/release/Devel-LexAlias")
2734 (synopsis "Alias lexical variables")
2735 (description "Devel::LexAlias provides the ability to alias a lexical
2736 variable in a subroutines scope to one of your choosing.")
2737 (license (package-license perl))))
2738
2739 (define-public perl-devel-overloadinfo
2740 (package
2741 (name "perl-devel-overloadinfo")
2742 (version "0.005")
2743 (source
2744 (origin
2745 (method url-fetch)
2746 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2747 "Devel-OverloadInfo-" version ".tar.gz"))
2748 (sha256
2749 (base32
2750 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2751 (build-system perl-build-system)
2752 (native-inputs
2753 `(("perl-test-fatal" ,perl-test-fatal)))
2754 (propagated-inputs
2755 `(("perl-package-stash" ,perl-package-stash)
2756 ("perl-sub-identify" ,perl-sub-identify)
2757 ("perl-mro-compat" ,perl-mro-compat)))
2758 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
2759 (synopsis "Introspect overloaded operators")
2760 (description "Devel::OverloadInfo returns information about overloaded
2761 operators for a given class (or object), including where in the inheritance
2762 hierarchy the overloads are declared and where the code implementing it is.")
2763 (license (package-license perl))))
2764
2765 (define-public perl-devel-partialdump
2766 (package
2767 (name "perl-devel-partialdump")
2768 (version "0.18")
2769 (source
2770 (origin
2771 (method url-fetch)
2772 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2773 "Devel-PartialDump-" version ".tar.gz"))
2774 (sha256
2775 (base32
2776 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2777 (build-system perl-build-system)
2778 (native-inputs
2779 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2780 ("perl-test-warn" ,perl-test-warn)
2781 ("perl-test-simple" ,perl-test-simple)))
2782 (propagated-inputs
2783 `(("perl-class-tiny" ,perl-class-tiny)
2784 ("perl-sub-exporter" ,perl-sub-exporter)
2785 ("perl-namespace-clean" ,perl-namespace-clean)))
2786 (home-page "https://metacpan.org/release/Devel-PartialDump")
2787 (synopsis "Partial dumping of data structures")
2788 (description "This module is a data dumper optimized for logging of
2789 arbitrary parameters.")
2790 (license (package-license perl))))
2791
2792 (define-public perl-devel-stacktrace
2793 (package
2794 (name "perl-devel-stacktrace")
2795 (version "2.03")
2796 (source
2797 (origin
2798 (method url-fetch)
2799 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2800 "Devel-StackTrace-" version ".tar.gz"))
2801 (sha256
2802 (base32
2803 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2804 (build-system perl-build-system)
2805 (home-page "https://metacpan.org/release/Devel-StackTrace")
2806 (synopsis "Object representing a stack trace")
2807 (description "The Devel::StackTrace module contains two classes,
2808 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2809 information that can be retrieved via Perl's caller() function, as well as
2810 providing a simple interface to this data.")
2811 (license artistic2.0)))
2812
2813 (define-public perl-devel-stacktrace-ashtml
2814 (package
2815 (name "perl-devel-stacktrace-ashtml")
2816 (version "0.15")
2817 (source
2818 (origin
2819 (method url-fetch)
2820 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2821 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2822 (sha256
2823 (base32
2824 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2825 (build-system perl-build-system)
2826 (propagated-inputs
2827 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2828 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
2829 (synopsis "Displays stack trace in HTML")
2830 (description "Devel::StackTrace::AsHTML adds as_html method to
2831 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2832 snippet context and function parameters. If you call it on an instance of
2833 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2834 each stack frame.")
2835 (license (package-license perl))))
2836
2837 (define-public perl-devel-symdump
2838 (package
2839 (name "perl-devel-symdump")
2840 (version "2.18")
2841 (source
2842 (origin
2843 (method url-fetch)
2844 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2845 "Devel-Symdump-" version ".tar.gz"))
2846 (sha256
2847 (base32
2848 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2849 (build-system perl-build-system)
2850 (home-page "https://metacpan.org/release/Devel-Symdump")
2851 (synopsis "Dump symbol names or the symbol table")
2852 (description "Devel::Symdump provides access to the perl symbol table.")
2853 (license (package-license perl))))
2854
2855 (define-public perl-digest-hmac
2856 (package
2857 (name "perl-digest-hmac")
2858 (version "1.03")
2859 (source
2860 (origin
2861 (method url-fetch)
2862 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2863 "Digest-HMAC-" version ".tar.gz"))
2864 (sha256
2865 (base32
2866 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2867 (build-system perl-build-system)
2868 (home-page "https://metacpan.org/release/Digest-HMAC")
2869 (synopsis "Keyed-Hashing for Message Authentication")
2870 (description "The Digest::HMAC module follows the common Digest::
2871 interface for the RFC 2104 HMAC mechanism.")
2872 (license (package-license perl))))
2873
2874 (define-public perl-digest-md5
2875 (package
2876 (name "perl-digest-md5")
2877 (version "2.55")
2878 (source
2879 (origin
2880 (method url-fetch)
2881 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2882 version ".tar.gz"))
2883 (sha256
2884 (base32
2885 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2886 (build-system perl-build-system)
2887 (arguments
2888 `(#:phases
2889 (modify-phases %standard-phases
2890 (add-after 'build 'set-permissions
2891 (lambda _
2892 ;; Make MD5.so read-write so it can be stripped.
2893 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755))))))
2894 (home-page "https://metacpan.org/release/Digest-MD5")
2895 (synopsis "Perl interface to the MD-5 algorithm")
2896 (description
2897 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2898 algorithm from within Perl programs. The algorithm takes as
2899 input a message of arbitrary length and produces as output a
2900 128-bit \"fingerprint\" or \"message digest\" of the input.")
2901 (license (package-license perl))))
2902
2903 (define-public perl-digest-sha1
2904 (package
2905 (name "perl-digest-sha1")
2906 (version "2.13")
2907 (source (origin
2908 (method url-fetch)
2909 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2910 "Digest-SHA1-" version ".tar.gz"))
2911 (sha256
2912 (base32
2913 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2914 (build-system perl-build-system)
2915 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2916 (description
2917 "This package provides 'Digest::SHA1', an implementation of the NIST
2918 SHA-1 message digest algorithm for use by Perl programs.")
2919 (home-page "https://metacpan.org/release/Digest-SHA1")
2920 (license (package-license perl))))
2921
2922 (define-public perl-dist-checkconflicts
2923 (package
2924 (name "perl-dist-checkconflicts")
2925 (version "0.11")
2926 (source (origin
2927 (method url-fetch)
2928 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2929 "Dist-CheckConflicts-" version ".tar.gz"))
2930 (sha256
2931 (base32
2932 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2933 (build-system perl-build-system)
2934 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2935 (propagated-inputs
2936 `(("perl-module-runtime" ,perl-module-runtime)))
2937 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
2938 (synopsis "Declare version conflicts for your dist")
2939 (description "This module allows you to specify conflicting versions of
2940 modules separately and deal with them after the module is done installing.")
2941 (license (package-license perl))))
2942
2943 (define-public perl-encode-detect
2944 (package
2945 (name "perl-encode-detect")
2946 (version "1.01")
2947 (source
2948 (origin
2949 (method url-fetch)
2950 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2951 "Encode-Detect-" version ".tar.gz"))
2952 (sha256
2953 (base32
2954 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2955 (build-system perl-build-system)
2956 (native-inputs
2957 `(("perl-module-build" ,perl-module-build)))
2958 (home-page "https://metacpan.org/release/Encode-Detect")
2959 (synopsis "Detect the encoding of data")
2960 (description "This package provides a class @code{Encode::Detect} to detect
2961 the encoding of data.")
2962 (license mpl1.1)))
2963
2964 (define-public perl-encode-eucjpascii
2965 (package
2966 (name "perl-encode-eucjpascii")
2967 (version "0.03")
2968 (source
2969 (origin
2970 (method url-fetch)
2971 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2972 "Encode-EUCJPASCII-" version ".tar.gz"))
2973 (sha256
2974 (base32
2975 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2976 (build-system perl-build-system)
2977 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
2978 (synopsis "ASCII mapping for eucJP encoding")
2979 (description "This package provides an ASCII mapping for the eucJP
2980 encoding.")
2981 (license (package-license perl))))
2982
2983 (define-public perl-encode-jis2k
2984 (package
2985 (name "perl-encode-jis2k")
2986 (version "0.03")
2987 (source
2988 (origin
2989 (method url-fetch)
2990 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
2991 "Encode-JIS2K-" version ".tar.gz"))
2992 (sha256
2993 (base32
2994 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
2995 (build-system perl-build-system)
2996 (home-page "https://metacpan.org/release/Encode-JIS2K")
2997 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
2998 (description "This package provides encodings for JIS X 0212, which is
2999 also known as JIS 2000.")
3000 (license (package-license perl))))
3001
3002 (define-public perl-encode-hanextra
3003 (package
3004 (name "perl-encode-hanextra")
3005 (version "0.23")
3006 (source
3007 (origin
3008 (method url-fetch)
3009 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3010 "Encode-HanExtra-" version ".tar.gz"))
3011 (sha256
3012 (base32
3013 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3014 (build-system perl-build-system)
3015 (arguments
3016 '(#:phases
3017 (modify-phases %standard-phases
3018 (add-after 'unpack 'set-env
3019 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1"))))))
3020 (home-page "https://metacpan.org/release/Encode-HanExtra")
3021 (synopsis "Additional Chinese encodings")
3022 (description "This Perl module provides Chinese encodings that are not
3023 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3024 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3025 \"UNISYS\".")
3026 (license expat)))
3027
3028 (define-public perl-env-path
3029 (package
3030 (name "perl-env-path")
3031 (version "0.19")
3032 (source
3033 (origin
3034 (method url-fetch)
3035 (uri (string-append
3036 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3037 version
3038 ".tar.gz"))
3039 (sha256
3040 (base32
3041 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3042 (build-system perl-build-system)
3043 (home-page "https://metacpan.org/release/Env-Path")
3044 (synopsis "Advanced operations on path variables")
3045 (description "@code{Env::Path} presents an object-oriented interface to
3046 path variables, defined as that subclass of environment variables which name
3047 an ordered list of file system elements separated by a platform-standard
3048 separator.")
3049 (license (package-license perl))))
3050
3051 (define-public perl-error
3052 (package
3053 (name "perl-error")
3054 (version "0.17025")
3055 (source (origin
3056 (method url-fetch)
3057 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3058 "Error-" version ".tar.gz"))
3059 (sha256
3060 (base32
3061 "1bzgzmf1v4md02vadm46b4j4ilqxrcrfasvbzymhrznlsd54g7vc"))))
3062 (build-system perl-build-system)
3063 (native-inputs `(("perl-module-build" ,perl-module-build)))
3064 (home-page "https://metacpan.org/release/Error")
3065 (synopsis "OO-ish Error/Exception handling for Perl")
3066 (description "The Error package provides two interfaces. Firstly Error
3067 provides a procedural interface to exception handling. Secondly Error is a
3068 base class for errors/exceptions that can either be thrown, for subsequent
3069 catch, or can simply be recorded.")
3070 (license (package-license perl))))
3071
3072 (define-public perl-eval-closure
3073 (package
3074 (name "perl-eval-closure")
3075 (version "0.14")
3076 (source
3077 (origin
3078 (method url-fetch)
3079 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3080 "Eval-Closure-" version ".tar.gz"))
3081 (sha256
3082 (base32
3083 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3084 (build-system perl-build-system)
3085 (native-inputs
3086 `(("perl-test-fatal" ,perl-test-fatal)
3087 ("perl-test-requires" ,perl-test-requires)))
3088 (propagated-inputs
3089 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3090 (home-page "https://metacpan.org/release/Eval-Closure")
3091 (synopsis "Safely and cleanly create closures via string eval")
3092 (description "String eval is often used for dynamic code generation. For
3093 instance, Moose uses it heavily, to generate inlined versions of accessors and
3094 constructors, which speeds code up at runtime by a significant amount. String
3095 eval is not without its issues however - it's difficult to control the scope
3096 it's used in (which determines which variables are in scope inside the eval),
3097 and it's easy to miss compilation errors, since eval catches them and sticks
3098 them in $@@ instead. This module attempts to solve these problems. It
3099 provides an eval_closure function, which evals a string in a clean
3100 environment, other than a fixed list of specified variables. Compilation
3101 errors are rethrown automatically.")
3102 (license (package-license perl))))
3103
3104 (define-public perl-exception-class
3105 (package
3106 (name "perl-exception-class")
3107 (version "1.44")
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3112 "Exception-Class-" version ".tar.gz"))
3113 (sha256
3114 (base32
3115 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3116 (build-system perl-build-system)
3117 (propagated-inputs
3118 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3119 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3120 (home-page "https://metacpan.org/release/Exception-Class")
3121 (synopsis "Allows you to declare real exception classes in Perl")
3122 (description "Exception::Class allows you to declare exception hierarchies
3123 in your modules in a \"Java-esque\" manner.")
3124 (license (package-license perl))))
3125
3126 (define-public perl-exporter-lite
3127 (package
3128 (name "perl-exporter-lite")
3129 (version "0.08")
3130 (source (origin
3131 (method url-fetch)
3132 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3133 "Exporter-Lite-" version ".tar.gz"))
3134 (sha256
3135 (base32
3136 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3137 (build-system perl-build-system)
3138 (synopsis "Lightweight exporting of functions and variables")
3139 (description
3140 "Exporter::Lite is an alternative to Exporter, intended to provide a
3141 lightweight subset of the most commonly-used functionality. It supports
3142 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3143 (home-page "https://metacpan.org/release/Exporter-Lite")
3144 (license (package-license perl))))
3145
3146 (define-public perl-exporter-tiny
3147 (package
3148 (name "perl-exporter-tiny")
3149 (version "0.042")
3150 (source
3151 (origin
3152 (method url-fetch)
3153 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3154 "Exporter-Tiny-" version ".tar.gz"))
3155 (sha256
3156 (base32
3157 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
3158 (build-system perl-build-system)
3159 (home-page "https://metacpan.org/release/Exporter-Tiny")
3160 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3161 (description "Exporter::Tiny supports many of Sub::Exporter's
3162 external-facing features including renaming imported functions with the `-as`,
3163 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3164 and alternative installers with the `installler` option. But it's written in
3165 only about 40% as many lines of code and with zero non-core dependencies.")
3166 (license (package-license perl))))
3167
3168 (define-public perl-extutils-installpaths
3169 (package
3170 (name "perl-extutils-installpaths")
3171 (version "0.011")
3172 (source
3173 (origin
3174 (method url-fetch)
3175 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3176 "ExtUtils-InstallPaths-" version ".tar.gz"))
3177 (sha256
3178 (base32
3179 "0z06y0fhx9hy9x01abb7s2xdbqrh9x4ps7avmlf4bwfwih2gl2bn"))))
3180 (build-system perl-build-system)
3181 (propagated-inputs
3182 `(("perl-extutils-config" ,perl-extutils-config)))
3183 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
3184 (synopsis "Build.PL install path logic made easy")
3185 (description "This module tries to make install path resolution as easy as
3186 possible.")
3187 (license (package-license perl))))
3188
3189 (define-public perl-extutils-config
3190 (package
3191 (name "perl-extutils-config")
3192 (version "0.008")
3193 (source
3194 (origin
3195 (method url-fetch)
3196 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3197 "ExtUtils-Config-" version ".tar.gz"))
3198 (sha256
3199 (base32
3200 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3201 (build-system perl-build-system)
3202 (home-page "https://metacpan.org/release/ExtUtils-Config")
3203 (synopsis "Wrapper for perl's configuration")
3204 (description "ExtUtils::Config is an abstraction around the %Config hash.
3205 By itself it is not a particularly interesting module by any measure, however
3206 it ties together a family of modern toolchain modules.")
3207 (license (package-license perl))))
3208
3209 (define-public perl-extutils-depends
3210 (package
3211 (name "perl-extutils-depends")
3212 (version "0.405")
3213 (source (origin
3214 (method url-fetch)
3215 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3216 "ExtUtils-Depends-" version ".tar.gz"))
3217 (sha256
3218 (base32
3219 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3220 (build-system perl-build-system)
3221 (native-inputs
3222 `(("perl-test-number-delta" ,perl-test-number-delta)))
3223 (home-page "https://metacpan.org/release/ExtUtils-Depends")
3224 (synopsis "Easily build XS extensions that depend on XS extensions")
3225 (description
3226 "This module tries to make it easy to build Perl extensions that use
3227 functions and typemaps provided by other perl extensions. This means that a
3228 perl extension is treated like a shared library that provides also a C and an
3229 XS interface besides the perl one.")
3230 (license (package-license perl))))
3231
3232 (define-public perl-extutils-helpers
3233 (package
3234 (name "perl-extutils-helpers")
3235 (version "0.022")
3236 (source
3237 (origin
3238 (method url-fetch)
3239 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3240 "ExtUtils-Helpers-" version ".tar.gz"))
3241 (sha256
3242 (base32
3243 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
3244 (build-system perl-build-system)
3245 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
3246 (synopsis "Various portability utilities for module builders")
3247 (description "This module provides various portable helper functions for
3248 module building modules.")
3249 (license (package-license perl))))
3250
3251 (define-public perl-extutils-libbuilder
3252 (package
3253 (name "perl-extutils-libbuilder")
3254 (version "0.08")
3255 (source
3256 (origin
3257 (method url-fetch)
3258 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3259 "ExtUtils-LibBuilder-" version ".tar.gz"))
3260 (sha256
3261 (base32
3262 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3263 (build-system perl-build-system)
3264 (native-inputs
3265 `(("perl-module-build" ,perl-module-build)))
3266 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
3267 (synopsis "Tool to build C libraries")
3268 (description "Some Perl modules need to ship C libraries together with
3269 their Perl code. Although there are mechanisms to compile and link (or glue)
3270 C code in your Perl programs, there isn't a clear method to compile standard,
3271 self-contained C libraries. This module main goal is to help in that task.")
3272 (license (package-license perl))))
3273
3274 (define-public perl-extutils-pkgconfig
3275 (package
3276 (name "perl-extutils-pkgconfig")
3277 (version "1.16")
3278 (source (origin
3279 (method url-fetch)
3280 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3281 "ExtUtils-PkgConfig-" version ".tar.gz"))
3282 (sha256
3283 (base32
3284 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3285 (build-system perl-build-system)
3286 (propagated-inputs
3287 `(("pkg-config" ,pkg-config)))
3288 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
3289 (synopsis "Simplistic interface to pkg-config")
3290 (description
3291 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3292 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3293 of perl extensions which bind libraries that @command{pkg-config} knows.
3294 It is really just boilerplate code that you would have written yourself.")
3295 (license lgpl2.1+)))
3296
3297 (define-public perl-file-changenotify
3298 (package
3299 (name "perl-file-changenotify")
3300 (version "0.24")
3301 (source
3302 (origin
3303 (method url-fetch)
3304 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3305 "File-ChangeNotify-" version ".tar.gz"))
3306 (sha256
3307 (base32
3308 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3309 (build-system perl-build-system)
3310 (native-inputs
3311 `(("perl-module-build" ,perl-module-build)
3312 ("perl-test-exception" ,perl-test-exception)))
3313 (propagated-inputs
3314 `(("perl-class-load" ,perl-class-load)
3315 ("perl-list-moreutils" ,perl-list-moreutils)
3316 ("perl-module-pluggable" ,perl-module-pluggable)
3317 ("perl-moose" ,perl-moose)
3318 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3319 ("perl-moosex-semiaffordanceaccessor"
3320 ,perl-moosex-semiaffordanceaccessor)
3321 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3322 (home-page "https://metacpan.org/release/File-ChangeNotify")
3323 (synopsis "Watch for changes to files")
3324 (description "This module provides a class to monitor a directory for
3325 changes made to any file.")
3326 (license artistic2.0)))
3327
3328 (define-public perl-file-configdir
3329 (package
3330 (name "perl-file-configdir")
3331 (version "0.018")
3332 (source
3333 (origin
3334 (method url-fetch)
3335 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3336 "File-ConfigDir-" version ".tar.gz"))
3337 (sha256
3338 (base32
3339 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3340 (build-system perl-build-system)
3341 (propagated-inputs
3342 `(("perl-file-homedir" ,perl-file-homedir)
3343 ("perl-list-moreutils" ,perl-list-moreutils)))
3344 (home-page "https://metacpan.org/release/File-ConfigDir")
3345 (synopsis "Get directories of configuration files")
3346 (description "This module is a helper for installing, reading and finding
3347 configuration file locations. @code{File::ConfigDir} is a module to help out
3348 when Perl modules (especially applications) need to read and store
3349 configuration files from more than one location.")
3350 (license (package-license perl))))
3351
3352 (define-public perl-file-copy-recursive
3353 (package
3354 (name "perl-file-copy-recursive")
3355 (version "0.38")
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3360 "File-Copy-Recursive-" version ".tar.gz"))
3361 (sha256
3362 (base32
3363 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3364 (build-system perl-build-system)
3365 (home-page "https://metacpan.org/release/File-Copy-Recursive")
3366 (synopsis "Recursively copy files and directories")
3367 (description "This module has 3 functions: one to copy files only, one to
3368 copy directories only, and one to do either depending on the argument's
3369 type.")
3370 (license (package-license perl))))
3371
3372 (define-public perl-file-find-rule
3373 (package
3374 (name "perl-file-find-rule")
3375 (version "0.34")
3376 (source
3377 (origin
3378 (method url-fetch)
3379 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3380 "File-Find-Rule-" version ".tar.gz"))
3381 (sha256
3382 (base32
3383 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3384 (build-system perl-build-system)
3385 (propagated-inputs
3386 `(("perl-text-glob" ,perl-text-glob)
3387 ("perl-number-compare" ,perl-number-compare)))
3388 (home-page "https://metacpan.org/release/File-Find-Rule")
3389 (synopsis "Alternative interface to File::Find")
3390 (description "File::Find::Rule is a friendlier interface to File::Find.
3391 It allows you to build rules which specify the desired files and
3392 directories.")
3393 (license (package-license perl))))
3394
3395 (define-public perl-file-find-rule-perl
3396 (package
3397 (name "perl-file-find-rule-perl")
3398 (version "1.15")
3399 (source
3400 (origin
3401 (method url-fetch)
3402 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3403 "File-Find-Rule-Perl-" version ".tar.gz"))
3404 (sha256
3405 (base32
3406 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3407 (build-system perl-build-system)
3408 (propagated-inputs
3409 `(("perl-file-find-rule" ,perl-file-find-rule)
3410 ("perl-params-util" ,perl-params-util)
3411 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3412 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
3413 (synopsis "Common rules for searching for Perl things")
3414 (description "File::Find::Rule::Perl provides methods for finding various
3415 types Perl-related files, or replicating search queries run on a distribution
3416 in various parts of the CPAN ecosystem.")
3417 (license (package-license perl))))
3418
3419 (define-public perl-file-grep
3420 (package
3421 (name "perl-file-grep")
3422 (version "0.02")
3423 (source
3424 (origin
3425 (method url-fetch)
3426 (uri (string-append
3427 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3428 version
3429 ".tar.gz"))
3430 (sha256
3431 (base32
3432 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3433 (build-system perl-build-system)
3434 (home-page "https://metacpan.org/release/File-Grep")
3435 (synopsis "Matches patterns in a series of files")
3436 (description "@code{File::Grep} provides similar functionality as perl's
3437 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3438 over a passed filelist instead of arrays. While trivial, this module can
3439 provide a quick dropin when such functionality is needed.")
3440 (license (package-license perl))))
3441
3442 (define-public perl-file-homedir
3443 (package
3444 (name "perl-file-homedir")
3445 (version "1.002")
3446 (source
3447 (origin
3448 (method url-fetch)
3449 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3450 "File-HomeDir-" version ".tar.gz"))
3451 (sha256
3452 (base32
3453 "0x62hn8rc7ninf9nlp69h61yh21g4cbq2g81sh64cf2ify2hqk7b"))))
3454 (build-system perl-build-system)
3455 (propagated-inputs
3456 `(("perl-file-which" ,perl-file-which)))
3457 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3458 (home-page "https://metacpan.org/release/File-HomeDir")
3459 (synopsis "Find your home and other directories on any platform")
3460 (description "File::HomeDir is a module for locating the directories that
3461 are \"owned\" by a user (typically your user) and to solve the various issues
3462 that arise trying to find them consistently across a wide variety of
3463 platforms.")
3464 (license (package-license perl))))
3465
3466 (define-public perl-file-path
3467 (package
3468 (name "perl-file-path")
3469 (version "2.13")
3470 (source
3471 (origin
3472 (method url-fetch)
3473 (uri (string-append
3474 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3475 version
3476 ".tar.gz"))
3477 (sha256
3478 (base32
3479 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3480 (build-system perl-build-system)
3481 (home-page "https://metacpan.org/release/File-Path")
3482 (synopsis "Create or remove directory trees")
3483 (description "This module provide a convenient way to create directories
3484 of arbitrary depth and to delete an entire directory subtree from the
3485 file system.")
3486 (license (package-license perl))))
3487
3488 (define-public perl-file-pushd
3489 (package
3490 (name "perl-file-pushd")
3491 (version "1.016")
3492 (source
3493 (origin
3494 (method url-fetch)
3495 (uri (string-append
3496 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3497 version
3498 ".tar.gz"))
3499 (sha256
3500 (base32
3501 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3502 (build-system perl-build-system)
3503 (home-page
3504 "https://metacpan.org/release/File-pushd")
3505 (synopsis
3506 "Change directory temporarily for a limited scope")
3507 (description "@code{File::pushd} does a temporary @code{chdir} that is
3508 easily and automatically reverted, similar to @code{pushd} in some Unix
3509 command shells. It works by creating an object that caches the original
3510 working directory. When the object is destroyed, the destructor calls
3511 @code{chdir} to revert to the original working directory. By storing the
3512 object in a lexical variable with a limited scope, this happens automatically
3513 at the end of the scope.")
3514 (license asl2.0)))
3515
3516 (define-public perl-file-list
3517 (package
3518 (name "perl-file-list")
3519 (version "0.3.1")
3520 (source (origin
3521 (method url-fetch)
3522 (uri (string-append
3523 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3524 version ".tar.gz"))
3525 (sha256
3526 (base32
3527 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3528 (build-system perl-build-system)
3529 (arguments
3530 `(#:phases
3531 (modify-phases %standard-phases
3532 (add-after 'unpack 'cd
3533 (lambda _ (chdir "List") #t)))))
3534 (license (package-license perl))
3535 (synopsis "Perl extension for crawling directory trees and compiling
3536 lists of files")
3537 (description
3538 "The File::List module crawls the directory tree starting at the
3539 provided base directory and can return files (and/or directories if desired)
3540 matching a regular expression.")
3541 (home-page "https://metacpan.org/release/File-List")))
3542
3543 (define-public perl-file-readbackwards
3544 (package
3545 (name "perl-file-readbackwards")
3546 (version "1.05")
3547 (source
3548 (origin
3549 (method url-fetch)
3550 (uri (string-append
3551 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3552 version
3553 ".tar.gz"))
3554 (sha256
3555 (base32
3556 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3557 (build-system perl-build-system)
3558 (home-page "https://metacpan.org/release/File-ReadBackwards")
3559 (synopsis "Read a file backwards by lines")
3560 (description "This module reads a file backwards line by line. It is
3561 simple to use, memory efficient and fast. It supports both an object and a
3562 tied handle interface.
3563
3564 It is intended for processing log and other similar text files which typically
3565 have their newest entries appended to them. By default files are assumed to
3566 be plain text and have a line ending appropriate to the OS. But you can set
3567 the input record separator string on a per file basis.")
3568 (license perl-license)))
3569
3570 (define-public perl-file-remove
3571 (package
3572 (name "perl-file-remove")
3573 (version "1.57")
3574 (source
3575 (origin
3576 (method url-fetch)
3577 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3578 "File-Remove-" version ".tar.gz"))
3579 (sha256
3580 (base32
3581 "1b814lw181kkqh6c1n4p2zlzzsq6ic5pfpr831nphf2w2rhcvgmk"))))
3582 (build-system perl-build-system)
3583 (home-page "https://metacpan.org/release/File-Remove")
3584 (synopsis "Remove files and directories in Perl")
3585 (description "File::Remove::remove removes files and directories. It acts
3586 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
3587 files, it will not remove directories; this module remedies that. It also
3588 accepts wildcards, * and ?, as arguments for file names.")
3589 (license (package-license perl))))
3590
3591 (define-public perl-file-sharedir
3592 (package
3593 (name "perl-file-sharedir")
3594 (version "1.104")
3595 (source
3596 (origin
3597 (method url-fetch)
3598 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3599 "File-ShareDir-" version ".tar.gz"))
3600 (sha256
3601 (base32
3602 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3603 (build-system perl-build-system)
3604 (native-inputs
3605 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3606 (propagated-inputs
3607 `(("perl-class-inspector" ,perl-class-inspector)))
3608 (home-page "https://metacpan.org/release/File-ShareDir")
3609 (synopsis "Locate per-dist and per-module shared files")
3610 (description "The intent of File::ShareDir is to provide a companion to
3611 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3612 module to have access to a large amount of read-only data that is stored on
3613 the file-system at run-time. Once the files have been installed to the
3614 correct directory, you can use File::ShareDir to find your files again after
3615 the installation.")
3616 (license (package-license perl))))
3617
3618 (define-public perl-file-sharedir-dist
3619 (package
3620 (name "perl-file-sharedir-dist")
3621 (version "0.05")
3622 (source
3623 (origin
3624 (method url-fetch)
3625 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3626 "File-ShareDir-Dist-" version ".tar.gz"))
3627 (sha256
3628 (base32
3629 "1xkmrckp1qfi9ik098n2vz0r8g7wfwp2y05zjd100w6wcqwfzcpn"))))
3630 (build-system perl-build-system)
3631 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
3632 (synopsis "Locate per-dist shared files")
3633 (description "File::ShareDir::Dist finds share directories for
3634 distributions. It is a companion module to File::ShareDir.")
3635 (license (package-license perl))))
3636
3637 (define-public perl-file-sharedir-install
3638 (package
3639 (name "perl-file-sharedir-install")
3640 (version "0.13")
3641 (source
3642 (origin
3643 (method url-fetch)
3644 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3645 "File-ShareDir-Install-" version ".tar.gz"))
3646 (sha256
3647 (base32
3648 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3649 (build-system perl-build-system)
3650 (native-inputs
3651 `(("perl-module-build" ,perl-module-build)))
3652 (home-page "https://metacpan.org/release/File-ShareDir-Install")
3653 (synopsis "Install shared files")
3654 (description "File::ShareDir::Install allows you to install read-only data
3655 files from a distribution. It is a companion module to File::ShareDir, which
3656 allows you to locate these files after installation.")
3657 (license (package-license perl))))
3658
3659 (define-public perl-file-slurp
3660 (package
3661 (name "perl-file-slurp")
3662 (version "9999.19")
3663 (source
3664 (origin
3665 (method url-fetch)
3666 (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
3667 "File-Slurp-" version ".tar.gz"))
3668 (sha256
3669 (base32
3670 "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
3671 (build-system perl-build-system)
3672 (home-page "https://metacpan.org/release/File-Slurp")
3673 (synopsis "Reading/Writing/Modifying of complete files")
3674 (description "File::Slurp provides subroutines to read or write entire
3675 files with a simple call. It also has a subroutine for reading the list of
3676 file names in a directory.")
3677 (license (package-license perl))))
3678
3679 (define-public perl-file-slurper
3680 (package
3681 (name "perl-file-slurper")
3682 (version "0.008")
3683 (source
3684 (origin
3685 (method url-fetch)
3686 (uri (string-append
3687 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3688 version
3689 ".tar.gz"))
3690 (sha256
3691 (base32
3692 "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
3693 (build-system perl-build-system)
3694 (propagated-inputs
3695 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3696 (home-page "https://metacpan.org/release/File-Slurper")
3697 (synopsis "Simple, sane and efficient module to slurp a file")
3698 (description "This module provides functions for fast and correct file
3699 slurping and spewing. All functions are optionally exported.")
3700 (license (package-license perl))))
3701
3702 (define-public perl-file-slurp-tiny
3703 (package
3704 (name "perl-file-slurp-tiny")
3705 (version "0.004")
3706 (source (origin
3707 (method url-fetch)
3708 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3709 "File-Slurp-Tiny-" version ".tar.gz"))
3710 (sha256
3711 (base32
3712 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3713 (build-system perl-build-system)
3714 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
3715 (synopsis "Simple file reader and writer")
3716 (description
3717 "This module provides functions for fast reading and writing of files.")
3718 (license (package-license perl))))
3719
3720 (define-public perl-file-temp
3721 (package
3722 (name "perl-file-temp")
3723 (version "0.2304")
3724 (source
3725 (origin
3726 (method url-fetch)
3727 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3728 "File-Temp-" version ".tar.gz"))
3729 (sha256
3730 (base32
3731 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3732 (build-system perl-build-system)
3733 (propagated-inputs
3734 `(("perl-parent" ,perl-parent)))
3735 (home-page "https://metacpan.org/release/File-Temp")
3736 (synopsis "Return name and handle of a temporary file safely")
3737 (description "File::Temp can be used to create and open temporary files in
3738 a safe way.")
3739 (license (package-license perl))))
3740
3741 (define-public perl-file-which
3742 (package
3743 (name "perl-file-which")
3744 (version "1.09")
3745 (source (origin
3746 (method url-fetch)
3747 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3748 "File-Which-" version ".tar.gz"))
3749 (sha256
3750 (base32
3751 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
3752 (build-system perl-build-system)
3753 (native-inputs `(("test-script" ,perl-test-script)))
3754 (synopsis "Portable implementation of the `which' utility")
3755 (description
3756 "File::Which was created to be able to get the paths to executable
3757 programs on systems under which the `which' program wasn't implemented in the
3758 shell.")
3759 (home-page "https://metacpan.org/release/ADAMK/File-Which-1.09")
3760 (license (package-license perl))))
3761
3762 (define-public perl-file-zglob
3763 (package
3764 (name "perl-file-zglob")
3765 (version "0.11")
3766 (source (origin
3767 (method url-fetch)
3768 (uri (string-append
3769 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3770 version ".tar.gz"))
3771 (sha256
3772 (base32
3773 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3774 (build-system perl-build-system)
3775 (native-inputs
3776 `(("perl-module-install" ,perl-module-install)))
3777 (home-page "https://metacpan.org/release/File-Zglob")
3778 (synopsis "Extended Unix style glob functionality")
3779 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3780 functionality; it returns a list of file names that match the given pattern.
3781 For instance, it supports the @code{**/*.pm} form.")
3782 (license (package-license perl))))
3783
3784 (define-public perl-getopt-long
3785 (package
3786 (name "perl-getopt-long")
3787 (version "v2.49.1")
3788 (source
3789 (origin
3790 (method url-fetch)
3791 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3792 "Getopt-Long-" (substring version 1) ".tar.gz"))
3793 (sha256
3794 (base32
3795 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3796 (build-system perl-build-system)
3797 (home-page "https://metacpan.org/release/Getopt-Long")
3798 (synopsis "Module to handle parsing command line options")
3799 (description "The @code{Getopt::Long} module implements an extended getopt
3800 function called @code{GetOptions()}. It parses the command line from
3801 @code{ARGV}, recognizing and removing specified options and their possible
3802 values.
3803
3804 This function adheres to the POSIX syntax for command line options, with GNU
3805 extensions. In general, this means that options have long names instead of
3806 single letters, and are introduced with a double dash \"--\". Support for
3807 bundling of command line options, as was the case with the more traditional
3808 single-letter approach, is provided but not enabled by default.")
3809 ;; Can be used with either license.
3810 (license (list (package-license perl) gpl2+))))
3811
3812 (define-public perl-getopt-long-descriptive
3813 (package
3814 (name "perl-getopt-long-descriptive")
3815 (version "0.102")
3816 (source
3817 (origin
3818 (method url-fetch)
3819 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3820 "Getopt-Long-Descriptive-" version ".tar.gz"))
3821 (sha256
3822 (base32
3823 "0ii8xafvlph5vzcqp3dpc83lg7nkg3l1l2hmqdf5382a567vkm4s"))))
3824 (build-system perl-build-system)
3825 (native-inputs
3826 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3827 ("perl-test-fatal" ,perl-test-fatal)
3828 ("perl-test-warnings" ,perl-test-warnings)))
3829 (propagated-inputs
3830 `(("perl-params-validate" ,perl-params-validate)
3831 ("perl-sub-exporter" ,perl-sub-exporter)))
3832 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
3833 (synopsis "Getopt::Long, but simpler and more powerful")
3834 (description "Getopt::Long::Descriptive is yet another Getopt library.
3835 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3836 avoid making you think about its huge array of options. It also provides
3837 usage (help) messages, data validation, and a few other useful features.")
3838 (license (package-license perl))))
3839
3840 (define-public perl-getopt-tabular
3841 (package
3842 (name "perl-getopt-tabular")
3843 (version "0.3")
3844 (source (origin
3845 (method url-fetch)
3846 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3847 "Getopt-Tabular-" version ".tar.gz"))
3848 (sha256
3849 (base32
3850 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3851 (build-system perl-build-system)
3852 (synopsis "Table-driven argument parsing for Perl")
3853 (description
3854 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3855 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3856 (home-page "https://metacpan.org/release/Getopt-Tabular")
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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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.16")
3964 (source
3965 (origin
3966 (method url-fetch)
3967 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
3968 "Hash-MultiValue-" version ".tar.gz"))
3969 (sha256
3970 (base32
3971 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
3972 (build-system perl-build-system)
3973 (home-page "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/IO-String")
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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/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 "https://metacpan.org/release/IPC-Run3")
4322 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4323 ;; licenses, any version."
4324 (license (list bsd-3 gpl3+))))
4325
4326 (define-public perl-ipc-sharelite
4327 (package
4328 (name "perl-ipc-sharelite")
4329 (version "0.17")
4330 (source
4331 (origin
4332 (method url-fetch)
4333 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4334 "IPC-ShareLite-" version ".tar.gz"))
4335 (sha256
4336 (base32
4337 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4338 (build-system perl-build-system)
4339 (home-page "https://metacpan.org/release/IPC-ShareLite")
4340 (synopsis "Lightweight interface to shared memory")
4341 (description "IPC::ShareLite provides a simple interface to shared memory,
4342 allowing data to be efficiently communicated between processes.")
4343 (license (package-license perl))))
4344
4345 (define-public perl-ipc-system-simple
4346 (package
4347 (name "perl-ipc-system-simple")
4348 (version "1.25")
4349 (source (origin
4350 (method url-fetch)
4351 (uri (string-append
4352 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4353 version ".tar.gz"))
4354 (sha256
4355 (base32
4356 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4357 (build-system perl-build-system)
4358 (home-page "https://metacpan.org/release/IPC-System-Simple")
4359 (synopsis "Run commands simply, with detailed diagnostics")
4360 (description "Calling Perl's in-built @code{system} function is easy,
4361 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4362 nicest variable in the world to play with, and even if you do check it,
4363 producing a well-formatted error string takes a lot of work.
4364
4365 @code{IPC::System::Simple} takes the hard work out of calling external
4366 commands.")
4367 (license (package-license perl))))
4368
4369 (define-public perl-json
4370 (package
4371 (name "perl-json")
4372 (version "2.90")
4373 (source
4374 (origin
4375 (method url-fetch)
4376 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
4377 "JSON-" version ".tar.gz"))
4378 (sha256
4379 (base32
4380 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
4381 (build-system perl-build-system)
4382 (propagated-inputs
4383 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4384 (home-page "https://metacpan.org/release/JSON")
4385 (synopsis "JSON encoder/decoder for Perl")
4386 (description "This module converts Perl data structures to JSON and vice
4387 versa using either JSON::XS or JSON::PP.")
4388 (license (package-license perl))))
4389
4390 (define-public perl-json-any
4391 (package
4392 (name "perl-json-any")
4393 (version "1.39")
4394 (source
4395 (origin
4396 (method url-fetch)
4397 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4398 "JSON-Any-" version ".tar.gz"))
4399 (sha256
4400 (base32
4401 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4402 (build-system perl-build-system)
4403 (native-inputs
4404 `(("perl-test-fatal" ,perl-test-fatal)
4405 ("perl-test-requires" ,perl-test-requires)
4406 ("perl-test-warnings" ,perl-test-warnings)
4407 ("perl-test-without-module" ,perl-test-without-module)))
4408 (propagated-inputs
4409 `(("perl-namespace-clean" ,perl-namespace-clean)))
4410 (home-page "https://metacpan.org/release/JSON-Any")
4411 (synopsis "Wrapper for Perl JSON classes")
4412 (description
4413 "This module tries to provide a coherent API to bring together the
4414 various JSON modules currently on CPAN. This module will allow you to code to
4415 any JSON API and have it work regardless of which JSON module is actually
4416 installed.")
4417 (license (package-license perl))))
4418
4419 (define-public perl-json-maybexs
4420 (package
4421 (name "perl-json-maybexs")
4422 (version "1.003010")
4423 (source
4424 (origin
4425 (method url-fetch)
4426 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4427 "JSON-MaybeXS-" version ".tar.gz"))
4428 (sha256
4429 (base32
4430 "0hs504x5zsa2vl6r7b3rvbygsak1ly24m1lg636bqp3x7jirmb30"))))
4431 (build-system perl-build-system)
4432 (native-inputs
4433 `(("perl-test-without-module" ,perl-test-without-module)))
4434 (inputs
4435 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4436 (home-page "https://metacpan.org/release/JSON-MaybeXS")
4437 (synopsis "Cpanel::JSON::XS with fallback")
4438 (description "This module first checks to see if either Cpanel::JSON::XS
4439 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4440 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4441 either uses the first module it finds or throws an error.")
4442 (license (package-license perl))))
4443
4444 (define-public perl-json-xs
4445 (package
4446 (name "perl-json-xs")
4447 (version "3.01")
4448 (source
4449 (origin
4450 (method url-fetch)
4451 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4452 "JSON-XS-" version ".tar.gz"))
4453 (sha256
4454 (base32
4455 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
4456 (build-system perl-build-system)
4457 (propagated-inputs
4458 `(("perl-common-sense" ,perl-common-sense)
4459 ("perl-types-serialiser" ,perl-types-serialiser)))
4460 (home-page "https://metacpan.org/release/JSON-XS")
4461 (synopsis "JSON serialising/deserialising for Perl")
4462 (description "This module converts Perl data structures to JSON and vice
4463 versa.")
4464 (license (package-license perl))))
4465
4466 (define-public perl-lexical-sealrequirehints
4467 (package
4468 (name "perl-lexical-sealrequirehints")
4469 (version "0.011")
4470 (source
4471 (origin
4472 (method url-fetch)
4473 (uri (string-append
4474 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4475 version
4476 ".tar.gz"))
4477 (sha256
4478 (base32
4479 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4480 (build-system perl-build-system)
4481 (native-inputs
4482 `(("perl-module-build" ,perl-module-build)))
4483 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
4484 (synopsis "Prevent leakage of lexical hints")
4485 (description
4486 "Lexical::SealRequireHints prevents leakage of lexical hints")
4487 (license (package-license perl))))
4488
4489 (define-public perl-log-any
4490 (package
4491 (name "perl-log-any")
4492 (version "1.040")
4493 (source
4494 (origin
4495 (method url-fetch)
4496 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4497 version ".tar.gz"))
4498 (sha256
4499 (base32
4500 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
4501 (build-system perl-build-system)
4502 (home-page "https://metacpan.org/release/Log-Any")
4503 (synopsis "Bringing loggers and listeners together")
4504 (description "@code{Log::Any} provides a standard log production API for
4505 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4506 for log consumption, whether screen, file or another logging mechanism like
4507 @code{Log::Dispatch} or @code{Log::Log4perl}.
4508
4509 A CPAN module uses @code{Log::Any} to get a log producer object. An
4510 application, in turn, may choose one or more logging mechanisms via
4511 @code{Log::Any::Adapter}, or none at all.
4512
4513 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4514 itself, which makes it appropriate for even small CPAN modules to use. It
4515 defaults to 'null' logging activity, so a module can safely log without
4516 worrying about whether the application has chosen (or will ever choose) a
4517 logging mechanism.")
4518 (license (package-license perl))))
4519
4520 (define-public perl-log-any-adapter-log4perl
4521 (package
4522 (name "perl-log-any-adapter-log4perl")
4523 (version "0.09")
4524 (source
4525 (origin
4526 (method url-fetch)
4527 (uri (string-append
4528 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4529 version
4530 ".tar.gz"))
4531 (sha256
4532 (base32
4533 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4534 (build-system perl-build-system)
4535 (propagated-inputs
4536 `(("perl-log-any" ,perl-log-any)
4537 ("perl-log-log4perl" ,perl-log-log4perl)))
4538 (home-page
4539 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
4540 (synopsis "Log::Any adapter for Log::Log4perl")
4541 (description "@code{Log::Any::Adapter::Log4perl} provides a
4542 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4543 (license (package-license perl))))
4544
4545 (define-public perl-log-log4perl
4546 (package
4547 (name "perl-log-log4perl")
4548 (version "1.49")
4549 (source
4550 (origin
4551 (method url-fetch)
4552 (uri (string-append
4553 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4554 version
4555 ".tar.gz"))
4556 (sha256
4557 (base32
4558 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4559 (build-system perl-build-system)
4560 (home-page
4561 "https://metacpan.org/release/Log-Log4perl")
4562 (synopsis "Log4j implementation for Perl")
4563 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4564 the logging behaviour of your system from the outside. It implements the
4565 widely popular (Java-based) Log4j logging package in pure Perl.")
4566 (license (package-license perl))))
4567
4568 (define-public perl-log-report-optional
4569 (package
4570 (name "perl-log-report-optional")
4571 (version "1.01")
4572 (source (origin
4573 (method url-fetch)
4574 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4575 "Log-Report-Optional-" version ".tar.gz"))
4576 (sha256
4577 (base32
4578 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4579 (build-system perl-build-system)
4580 (propagated-inputs
4581 `(("perl-string-print" ,perl-string-print)))
4582 (home-page "https://metacpan.org/release/Log-Report-Optional")
4583 (synopsis "Log::Report in the lightest form")
4584 (description
4585 "This module allows libraries to have a dependency to a small module
4586 instead of the full Log-Report distribution. The full power of
4587 @code{Log::Report} is only released when the main program uses that module.
4588 In that case, the module using the 'Optional' will also use the full
4589 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4590 version.")
4591 (license (package-license perl))))
4592
4593 (define-public perl-log-report
4594 (package
4595 (name "perl-log-report")
4596 (version "1.10")
4597 (source (origin
4598 (method url-fetch)
4599 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4600 "Log-Report-" version ".tar.gz"))
4601 (sha256
4602 (base32
4603 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4604 (build-system perl-build-system)
4605 (propagated-inputs
4606 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4607 ("perl-log-report-optional" ,perl-log-report-optional)
4608 ("perl-string-print" ,perl-string-print)))
4609 (home-page "https://metacpan.org/release/Log-Report")
4610 (synopsis "Get messages to users and logs")
4611 (description
4612 "@code{Log::Report} combines three tasks which are closely related in
4613 one: logging, exceptions, and translations.")
4614 (license (package-license perl))))
4615
4616 (define-public perl-libintl-perl
4617 (package
4618 (name "perl-libintl-perl")
4619 (version "1.29")
4620 (source
4621 (origin
4622 (method url-fetch)
4623 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4624 "libintl-perl-" version ".tar.gz"))
4625 (sha256
4626 (base32
4627 "1cgvrgh4axd8jlr6497ndgphgvgnqc1axd306460hskdvc85z4vq"))))
4628 (build-system perl-build-system)
4629 (arguments
4630 `(#:phases
4631 (modify-phases %standard-phases
4632 (add-before 'configure 'set-perl-search-path
4633 (lambda _
4634 ;; Work around "dotless @INC" build failure.
4635 (setenv "PERL5LIB" (string-append (getcwd) ":"
4636 (getenv "PERL5LIB")))
4637 #t)))))
4638 (propagated-inputs
4639 `(("perl-file-sharedir" ,perl-file-sharedir)))
4640 (home-page "https://metacpan.org/release/libintl-perl")
4641 (synopsis "High-level interface to Uniforum message translation")
4642 (description "This package is an internationalization library for Perl
4643 that aims to be compatible with the Uniforum message translations system as
4644 implemented for example in GNU gettext.")
4645 (license gpl3+)))
4646
4647 (define-public perl-lingua-translit
4648 (package
4649 (name "perl-lingua-translit")
4650 (version "0.26")
4651 (source
4652 (origin
4653 (method url-fetch)
4654 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4655 "Lingua-Translit-" version ".tar.gz"))
4656 (sha256
4657 (base32
4658 "161589h08kzliga17i2g0hb0yn4cjmb8rdiyadq5bw97974bac14"))))
4659 (build-system perl-build-system)
4660 (home-page "https://metacpan.org/release/Lingua-Translit")
4661 (synopsis "Transliterate text between writing systems")
4662 (description "@code{Lingua::Translit} can be used to convert text from one
4663 writing system to another, based on national or international transliteration
4664 tables. Where possible a reverse transliteration is supported.")
4665 (license (package-license perl))))
4666
4667 (define-public perl-list-allutils
4668 (package
4669 (name "perl-list-allutils")
4670 (version "0.09")
4671 (source
4672 (origin
4673 (method url-fetch)
4674 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4675 "List-AllUtils-" version ".tar.gz"))
4676 (sha256
4677 (base32
4678 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4679 (build-system perl-build-system)
4680 (native-inputs
4681 `(("perl-test-warnings" ,perl-test-warnings)))
4682 (propagated-inputs
4683 `(("perl-list-moreutils" ,perl-list-moreutils)
4684 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4685 (home-page "https://metacpan.org/release/List-AllUtils")
4686 (synopsis "Combination of List::Util and List::MoreUtils")
4687 (description "This module exports all of the functions that either
4688 List::Util or List::MoreUtils defines, with preference to List::Util.")
4689 (license (package-license perl))))
4690
4691 (define-public perl-list-compare
4692 (package
4693 (name "perl-list-compare")
4694 (version "0.53")
4695 (source
4696 (origin
4697 (method url-fetch)
4698 (uri (string-append
4699 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4700 version
4701 ".tar.gz"))
4702 (sha256
4703 (base32
4704 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4705 (build-system perl-build-system)
4706 (native-inputs
4707 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4708 (home-page "https://metacpan.org/release/List-Compare")
4709 (synopsis "Compare elements of two or more lists")
4710 (description "@code{List::Compare} provides a module to perform
4711 comparative operations on two or more lists. Provided operations include
4712 intersections, unions, unique elements, complements and many more.")
4713 (license (package-license perl))))
4714
4715 (define-public perl-list-moreutils
4716 (package
4717 (name "perl-list-moreutils")
4718 (version "0.428")
4719 (source
4720 (origin
4721 (method url-fetch)
4722 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4723 "List-MoreUtils-" version ".tar.gz"))
4724 (sha256
4725 (base32
4726 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4727 (build-system perl-build-system)
4728 (arguments
4729 `(#:phases
4730 (modify-phases %standard-phases
4731 (add-before 'configure 'set-perl-search-path
4732 (lambda _
4733 ;; Work around "dotless @INC" build failure.
4734 (setenv "PERL5LIB"
4735 (string-append (getcwd) ":"
4736 (getenv "PERL5LIB")))
4737 #t)))))
4738 (native-inputs
4739 `(("perl-config-autoconf" ,perl-config-autoconf)
4740 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4741 (propagated-inputs
4742 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4743 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4744 (home-page "https://metacpan.org/release/List-MoreUtils")
4745 (synopsis "Provide the stuff missing in List::Util")
4746 (description "List::MoreUtils provides some trivial but commonly needed
4747 functionality on lists which is not going to go into List::Util.")
4748 (license (package-license perl))))
4749
4750 (define-public perl-list-moreutils-xs
4751 (package
4752 (name "perl-list-moreutils-xs")
4753 (version "0.428")
4754 (source
4755 (origin
4756 (method url-fetch)
4757 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4758 version ".tar.gz"))
4759 (sha256
4760 (base32
4761 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4762 (build-system perl-build-system)
4763 (native-inputs
4764 `(("perl-config-autoconf" ,perl-config-autoconf)
4765 ("perl-inc-latest" ,perl-inc-latest)
4766 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4767 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
4768 (synopsis "Provide the stuff missing in List::Util in XS")
4769 (description "@code{List::MoreUtils::XS} provides some trivial but
4770 commonly needed functionality on lists which is not going to go into
4771 @code{List::Util}.")
4772 (license asl2.0)))
4773
4774 (define-public perl-list-someutils
4775 (package
4776 (name "perl-list-someutils")
4777 (version "0.52")
4778 (source
4779 (origin
4780 (method url-fetch)
4781 (uri (string-append
4782 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4783 version
4784 ".tar.gz"))
4785 (sha256
4786 (base32
4787 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4788 (build-system perl-build-system)
4789 (native-inputs
4790 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4791 (inputs
4792 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4793 ("perl-module-implementation"
4794 ,perl-module-implementation)))
4795 (home-page "https://metacpan.org/release/List-SomeUtils")
4796 (synopsis "Provide the stuff missing in List::Util")
4797 (description "@code{List::SomeUtils} provides some trivial but commonly
4798 needed functionality on lists which is not going to go into @code{List::Util}.
4799
4800 All of the below functions are implementable in only a couple of lines of Perl
4801 code. Using the functions from this module however should give slightly
4802 better performance as everything is implemented in C. The pure-Perl
4803 implementation of these functions only serves as a fallback in case the C
4804 portions of this module couldn't be compiled on this machine.")
4805 (license (package-license perl))))
4806
4807 (define-public perl-mailtools
4808 (package
4809 (name "perl-mailtools")
4810 (version "2.20")
4811 (source
4812 (origin
4813 (method url-fetch)
4814 (uri (string-append
4815 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4816 version
4817 ".tar.gz"))
4818 (sha256
4819 (base32
4820 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4821 (build-system perl-build-system)
4822 (propagated-inputs
4823 `(("perl-timedate" ,perl-timedate)))
4824 (home-page
4825 "https://metacpan.org/release/MailTools")
4826 (synopsis "Bundle of ancient email modules")
4827 (description "MailTools contains the following modules:
4828 @table @asis
4829 @item Mail::Address
4830 Parse email address from a header line.
4831 @item Mail::Cap
4832 Interpret mailcap files: mappings of file-types to applications as used by
4833 many command-line email programs.
4834 @item Mail::Field
4835 Simplifies access to (some) email header fields. Used by Mail::Header.
4836 @item Mail::Filter
4837 Process Mail::Internet messages.
4838 @item Mail::Header
4839 Collection of Mail::Field objects, representing the header of a Mail::Internet
4840 object.
4841 @item Mail::Internet
4842 Represents a single email message, with header and body.
4843 @item Mail::Mailer
4844 Send Mail::Internet emails via direct smtp or local MTA's.
4845 @item Mail::Send
4846 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4847 @item Mail::Util
4848 \"Smart functions\" you should not depend on.
4849 @end table")
4850 (license perl-license)))
4851
4852 (define-public perl-math-bezier
4853 (package
4854 (name "perl-math-bezier")
4855 (version "0.01")
4856 (source (origin
4857 (method url-fetch)
4858 (uri (string-append
4859 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4860 version ".tar.gz"))
4861 (sha256
4862 (base32
4863 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4864 (build-system perl-build-system)
4865 (home-page "https://metacpan.org/release/Math-Bezier")
4866 (synopsis "Solution of bezier curves")
4867 (description "This module implements the algorithm for the solution of Bezier
4868 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4869 Bezier Curve Drawing\".")
4870 (license perl-license)))
4871
4872 (define-public perl-math-round
4873 (package
4874 (name "perl-math-round")
4875 (version "0.07")
4876 (source (origin
4877 (method url-fetch)
4878 (uri (string-append
4879 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4880 version ".tar.gz"))
4881 (sha256
4882 (base32
4883 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4884 (build-system perl-build-system)
4885 (home-page "https://metacpan.org/release/Math-Round")
4886 (synopsis "Perl extension for rounding numbers")
4887 (description "@code{Math::Round} provides functions to round numbers,
4888 both positive and negative, in various ways.")
4889 (license perl-license)))
4890
4891 (define-public perl-memoize
4892 (package
4893 (name "perl-memoize")
4894 (version "1.03")
4895 (source (origin
4896 (method url-fetch)
4897 (uri (string-append
4898 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4899 version".tgz"))
4900 (sha256
4901 (base32
4902 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4903 (build-system perl-build-system)
4904 (home-page "https://metacpan.org/release/Memoize")
4905 (synopsis "Make functions faster by trading space for time")
4906 (description "This package transparently speeds up functions by caching
4907 return values, trading space for time.")
4908 (license perl-license)))
4909
4910 (define-public perl-memoize-expirelru
4911 (package
4912 (name "perl-memoize-expirelru")
4913 (version "0.56")
4914 (source
4915 (origin
4916 (method url-fetch)
4917 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4918 "Memoize-ExpireLRU-" version ".tar.gz"))
4919 (sha256
4920 (base32
4921 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
4922 (build-system perl-build-system)
4923 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
4924 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4925 (description "This module implements an expiry policy for Memoize that
4926 follows LRU semantics, that is, the last n results, where n is specified as
4927 the argument to the CACHESIZE parameter, will be cached.")
4928 (license (package-license perl))))
4929
4930 (define-public perl-mime-charset
4931 (package
4932 (name "perl-mime-charset")
4933 (version "1.012.2")
4934 (source (origin
4935 (method url-fetch)
4936 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4937 "MIME-Charset-" version ".tar.gz"))
4938 (sha256
4939 (base32
4940 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4941 (build-system perl-build-system)
4942 (home-page "https://metacpan.org/release/MIME-Charset")
4943 (synopsis "Charset information for MIME messages")
4944 (description
4945 "@code{MIME::Charset} provides information about character sets used for
4946 MIME messages on Internet.")
4947 (license (package-license perl))))
4948
4949 (define-public perl-mime-tools
4950 (package
4951 (name "perl-mime-tools")
4952 (version "5.509")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (string-append
4957 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4958 version
4959 ".tar.gz"))
4960 (sha256
4961 (base32
4962 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4963 (build-system perl-build-system)
4964 (native-inputs
4965 `(("perl-test-deep" ,perl-test-deep)))
4966 (inputs
4967 `(("perl-convert-binhex" ,perl-convert-binhex)))
4968 (propagated-inputs
4969 `(("perl-mailtools" ,perl-mailtools)))
4970 (home-page
4971 "https://metacpan.org/release/MIME-tools")
4972 (synopsis "Tools to manipulate MIME messages")
4973 (description
4974 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4975 decoding, and generating single- or multipart (even nested multipart) MIME
4976 messages.")
4977 (license perl-license)))
4978
4979 (define-public perl-mime-types
4980 (package
4981 (name "perl-mime-types")
4982 (version "2.17")
4983 (source
4984 (origin
4985 (method url-fetch)
4986 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4987 "MIME-Types-" version ".tar.gz"))
4988 (sha256
4989 (base32
4990 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
4991 (build-system perl-build-system)
4992 (home-page "https://metacpan.org/release/MIME-Types")
4993 (synopsis "Definition of MIME types")
4994 (description "This module provides a list of known mime-types, combined
4995 from various sources. For instance, it contains all IANA types and the
4996 knowledge of Apache.")
4997 (license (package-license perl))))
4998
4999 (define-public perl-mixin-linewise
5000 (package
5001 (name "perl-mixin-linewise")
5002 (version "0.108")
5003 (source (origin
5004 (method url-fetch)
5005 (uri (string-append
5006 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5007 version ".tar.gz"))
5008 (sha256
5009 (base32
5010 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5011 (build-system perl-build-system)
5012 (inputs
5013 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5014 ("perl-sub-exporter" ,perl-sub-exporter)))
5015 (home-page "https://metacpan.org/release/Mixin-Linewise")
5016 (synopsis "Write your linewise code for handles; this does the rest")
5017 (description "It's boring to deal with opening files for IO, converting
5018 strings to handle-like objects, and all that. With
5019 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5020 just write a method to handle handles, and methods for handling strings and
5021 file names are added for you.")
5022 (license (package-license perl))))
5023
5024 (define-public perl-modern-perl
5025 (package
5026 (name "perl-modern-perl")
5027 (version "1.20170117")
5028 (source
5029 (origin
5030 (method url-fetch)
5031 (uri (string-append
5032 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5033 version ".tar.gz"))
5034 (sha256
5035 (base32
5036 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
5037 (build-system perl-build-system)
5038 (native-inputs
5039 `(("perl-module-build" ,perl-module-build)))
5040 (home-page
5041 "https://metacpan.org/release/Modern-Perl")
5042 (synopsis
5043 "Enable all of the features of Modern Perl with one import")
5044 (description "@code{Modern::Perl} provides a simple way to enable
5045 multiple, by now, standard libraries in a Perl program.")
5046 (license (package-license perl))))
5047
5048 (define-public perl-module-build-tiny
5049 (package
5050 (name "perl-module-build-tiny")
5051 (version "0.039")
5052 (source
5053 (origin
5054 (method url-fetch)
5055 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5056 "Module-Build-Tiny-" version ".tar.gz"))
5057 (sha256
5058 (base32
5059 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5060 (build-system perl-build-system)
5061 (native-inputs
5062 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5063 ("perl-extutils-config" ,perl-extutils-config)
5064 ("perl-extutils-helpers" ,perl-extutils-helpers)
5065 ("perl-test-harness" ,perl-test-harness)))
5066 (propagated-inputs
5067 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5068 ("perl-extutils-config" ,perl-extutils-config)
5069 ("perl-extutils-helpers" ,perl-extutils-helpers)
5070 ("perl-test-harness" ,perl-test-harness)))
5071 (home-page "https://metacpan.org/release/Module-Build-Tiny")
5072 (synopsis "Tiny replacement for Module::Build")
5073 (description "Many Perl distributions use a Build.PL file instead of a
5074 Makefile.PL file to drive distribution configuration, build, test and
5075 installation. Traditionally, Build.PL uses Module::Build as the underlying
5076 build system. This module provides a simple, lightweight, drop-in
5077 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5078 has less than 120, yet supports the features needed by most distributions.")
5079 (license (package-license perl))))
5080
5081 (define-public perl-module-build-xsutil
5082 (package
5083 (name "perl-module-build-xsutil")
5084 (version "0.16")
5085 (source (origin
5086 (method url-fetch)
5087 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5088 "Module-Build-XSUtil-" version ".tar.gz"))
5089 (sha256
5090 (base32
5091 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5092 (build-system perl-build-system)
5093 (native-inputs
5094 `(("perl-capture-tiny" ,perl-capture-tiny)
5095 ("perl-cwd-guard" ,perl-cwd-guard)
5096 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5097 ("perl-module-build" ,perl-module-build)))
5098 (propagated-inputs
5099 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5100 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
5101 (synopsis "Module::Build class for building XS modules")
5102 (description
5103 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5104 for support building XS modules.
5105
5106 This is a list of a new parameters in the @code{Module::Build::new} method:
5107
5108 @enumerate
5109 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5110 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5111 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5112 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5113 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5114 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5115 @file{ppport.h}, and defines some portability stuff which are not supported by
5116 @file{ppport.h}.
5117
5118 It is ported from @code{Module::Install::XSUtil}.
5119 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5120 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5121 debug options.
5122 @end enumerate")
5123 (license (package-license perl))))
5124
5125 (define-public perl-module-find
5126 (package
5127 (name "perl-module-find")
5128 (version "0.13")
5129 (source
5130 (origin
5131 (method url-fetch)
5132 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5133 "Module-Find-" version ".tar.gz"))
5134 (sha256
5135 (base32
5136 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5137 (build-system perl-build-system)
5138 (home-page "https://metacpan.org/release/Module-Find")
5139 (synopsis "Find and use installed modules in a (sub)category")
5140 (description "Module::Find lets you find and use modules in categories.
5141 This can be useful for auto-detecting driver or plugin modules. You can
5142 differentiate between looking in the category itself or in all
5143 subcategories.")
5144 (license (package-license perl))))
5145
5146 (define-public perl-module-implementation
5147 (package
5148 (name "perl-module-implementation")
5149 (version "0.09")
5150 (source
5151 (origin
5152 (method url-fetch)
5153 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5154 "Module-Implementation-" version ".tar.gz"))
5155 (sha256
5156 (base32
5157 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5158 (build-system perl-build-system)
5159 (native-inputs
5160 `(("perl-test-fatal" ,perl-test-fatal)
5161 ("perl-test-requires" ,perl-test-requires)))
5162 (propagated-inputs
5163 `(("perl-module-runtime" ,perl-module-runtime)
5164 ("perl-try-tiny" ,perl-try-tiny)))
5165 (home-page "https://metacpan.org/release/Module-Implementation")
5166 (synopsis "Loads alternate underlying implementations for a module")
5167 (description "This module abstracts out the process of choosing one of
5168 several underlying implementations for a module. This can be used to provide
5169 XS and pure Perl implementations of a module, or it could be used to load an
5170 implementation for a given OS or any other case of needing to provide multiple
5171 implementations.")
5172 (license artistic2.0)))
5173
5174 (define-public perl-module-install
5175 (package
5176 (name "perl-module-install")
5177 (version "1.19")
5178 (source
5179 (origin
5180 (method url-fetch)
5181 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5182 "Module-Install-" version ".tar.gz"))
5183 (sha256
5184 (base32
5185 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5186 (build-system perl-build-system)
5187 (native-inputs
5188 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5189 (propagated-inputs
5190 `(("perl-archive-zip" ,perl-archive-zip)
5191 ("perl-file-homedir" ,perl-file-homedir)
5192 ("perl-file-remove" ,perl-file-remove)
5193 ("perl-json" ,perl-json)
5194 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5195 ;; would cause a circular dependency with (gnu packages web), so we
5196 ;; leave it out. It may be resolved at runtime, however.
5197 ;("perl-libwww-perl" ,perl-libwww-perl)
5198 ("perl-module-scandeps" ,perl-module-scandeps)
5199 ("perl-par-dist" ,perl-par-dist)
5200 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5201 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5202 ;; character handling.
5203 (arguments `(#:tests? #f))
5204 (home-page "https://metacpan.org/release/Module-Install")
5205 (synopsis "Standalone, extensible Perl module installer")
5206 (description "Module::Install is a package for writing installers for
5207 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5208 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5209 installation version 5.005 or newer.")
5210 (license (package-license perl))))
5211
5212 (define-public perl-module-manifest
5213 (package
5214 (name "perl-module-manifest")
5215 (version "1.09")
5216 (source
5217 (origin
5218 (method url-fetch)
5219 (uri (string-append
5220 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
5221 version ".tar.gz"))
5222 (sha256
5223 (base32
5224 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
5225 (build-system perl-build-system)
5226 (native-inputs
5227 `(("perl-test-exception" ,perl-test-exception)
5228 ("perl-test-warn" ,perl-test-warn)))
5229 (propagated-inputs
5230 `(("perl-params-util" ,perl-params-util)))
5231 (home-page "https://metacpan.org/release/Module-Manifest")
5232 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
5233 (description
5234 "@code{Module::Manifest} is a simple utility module created originally for
5235 use in @code{Module::Inspector}.
5236
5237 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
5238 examine the contents, and perform some simple tasks. It can also load the
5239 @file{MANIFEST.SKIP} file and check that.")
5240 (license perl-license)))
5241
5242 (define-public perl-module-pluggable
5243 (package
5244 (name "perl-module-pluggable")
5245 (version "5.2")
5246 (source
5247 (origin
5248 (method url-fetch)
5249 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5250 "Module-Pluggable-" version ".tar.gz"))
5251 (sha256
5252 (base32
5253 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5254 (patches (search-patches "perl-module-pluggable-search.patch"))))
5255 (build-system perl-build-system)
5256 (home-page "https://metacpan.org/release/Module-Pluggable")
5257 (synopsis "Give your Perl module the ability to have plugins")
5258 (description "This module provides a simple but extensible way of having
5259 'plugins' for your Perl module.")
5260 (license (package-license perl))))
5261
5262 (define-public perl-module-runtime
5263 (package
5264 (name "perl-module-runtime")
5265 (version "0.014")
5266 (source
5267 (origin
5268 (method url-fetch)
5269 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5270 "Module-Runtime-" version ".tar.gz"))
5271 (sha256
5272 (base32
5273 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
5274 (build-system perl-build-system)
5275 (native-inputs `(("perl-module-build" ,perl-module-build)))
5276 (home-page "https://metacpan.org/release/Module-Runtime")
5277 (synopsis "Perl runtime module handling")
5278 (description "The functions exported by this module deal with runtime
5279 handling of Perl modules, which are normally handled at compile time.")
5280 (license (package-license perl))))
5281
5282 (define-public perl-module-runtime-conflicts
5283 (package
5284 (name "perl-module-runtime-conflicts")
5285 (version "0.003")
5286 (source
5287 (origin
5288 (method url-fetch)
5289 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5290 "Module-Runtime-Conflicts-" version ".tar.gz"))
5291 (sha256
5292 (base32
5293 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5294 (build-system perl-build-system)
5295 (native-inputs
5296 `(("perl-module-build" ,perl-module-build)))
5297 (propagated-inputs
5298 `(("perl-module-runtime" ,perl-module-runtime)
5299 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5300 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
5301 (synopsis "Provide information on conflicts for Module::Runtime")
5302 (description "This module provides conflicts checking for Module::Runtime,
5303 which had a recent release that broke some versions of Moose. It is called
5304 from Moose::Conflicts and moose-outdated.")
5305 (license (package-license perl))))
5306
5307 (define-public perl-module-scandeps
5308 (package
5309 (name "perl-module-scandeps")
5310 (version "1.25")
5311 (source
5312 (origin
5313 (method url-fetch)
5314 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5315 "Module-ScanDeps-" version ".tar.gz"))
5316 (sha256
5317 (base32
5318 "13280nq0d6zc58mcz3kvs2m85a741czq0fabk69ks1nr4j1w2nl4"))))
5319 (build-system perl-build-system)
5320 (native-inputs
5321 `(("perl-test-requires" ,perl-test-requires)))
5322 (home-page "https://metacpan.org/release/Module-ScanDeps")
5323 (synopsis "Recursively scan Perl code for dependencies")
5324 (description "Module::ScanDeps is a module to recursively scan Perl
5325 programs for dependencies.")
5326 (license (package-license perl))))
5327
5328 (define-public perl-module-util
5329 (package
5330 (name "perl-module-util")
5331 (version "1.09")
5332 (source
5333 (origin
5334 (method url-fetch)
5335 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5336 "Module-Util-" version ".tar.gz"))
5337 (sha256
5338 (base32
5339 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5340 (build-system perl-build-system)
5341 (native-inputs
5342 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5343 (home-page "https://metacpan.org/release/Module-Util")
5344 (synopsis "Module name tools and transformations")
5345 (description "This module provides a few useful functions for manipulating
5346 module names. Its main aim is to centralise some of the functions commonly
5347 used by modules that manipulate other modules in some way, like converting
5348 module names to relative paths.")
5349 (license (package-license perl))))
5350
5351 (define-public perl-moo
5352 (package
5353 (name "perl-moo")
5354 (version "1.007000")
5355 (source
5356 (origin
5357 (method url-fetch)
5358 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5359 "Moo-" version ".tar.gz"))
5360 (sha256
5361 (base32
5362 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5363 (build-system perl-build-system)
5364 (native-inputs
5365 `(("perl-test-fatal" ,perl-test-fatal)))
5366 (propagated-inputs
5367 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5368 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5369 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5370 ("perl-import-into" ,perl-import-into)
5371 ("perl-module-runtime" ,perl-module-runtime)
5372 ("perl-role-tiny" ,perl-role-tiny)
5373 ("perl-strictures" ,perl-strictures)))
5374 (home-page "https://metacpan.org/release/Moo")
5375 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5376 (description "Moo is an extremely light-weight Object Orientation system.
5377 It allows one to concisely define objects and roles with a convenient syntax
5378 that avoids the details of Perl's object system. Moo contains a subset of
5379 Moose and is optimised for rapid startup.")
5380 (license (package-license perl))))
5381
5382 ;; Some packages don't yet work with this newer version of ‘Moo’.
5383 (define-public perl-moo-2
5384 (package
5385 (inherit perl-moo)
5386 (name "perl-moo-2")
5387 (version "2.003004")
5388 (source
5389 (origin
5390 (method url-fetch)
5391 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5392 "Moo-" version ".tar.gz"))
5393 (sha256
5394 (base32
5395 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5396 (propagated-inputs
5397 `(("perl-role-tiny" ,perl-role-tiny-2)
5398 ("perl-sub-name" ,perl-sub-name)
5399 ("perl-sub-quote" ,perl-sub-quote)
5400 ("perl-strictures" ,perl-strictures-2)
5401 ,@(alist-delete "perl-strictures"
5402 (alist-delete "perl-role-tiny"
5403 (package-propagated-inputs perl-moo)))))
5404 (arguments
5405 `(#:phases
5406 (modify-phases %standard-phases
5407 (add-before 'configure 'set-perl-search-path
5408 (lambda _
5409 ;; Use perl-strictures for testing.
5410 (setenv "MOO_FATAL_WARNINGS" "=1")
5411 #t)))))))
5412
5413 (define-public perl-moose
5414 (package
5415 (name "perl-moose")
5416 (version "2.2004")
5417 (source (origin
5418 (method url-fetch)
5419 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5420 "Moose-" version ".tar.gz"))
5421 (sha256
5422 (base32
5423 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
5424 (build-system perl-build-system)
5425 (native-inputs
5426 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5427 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5428 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5429 ("perl-test-fatal" ,perl-test-fatal)
5430 ("perl-test-requires" ,perl-test-requires)
5431 ("perl-test-warnings" ,perl-test-warnings)))
5432 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5433 ;; # === Other Modules ===
5434 ;; #
5435 ;; # Module Want Have
5436 ;; # ---------------------------- ---- -------
5437 ;; # Algorithm::C3 any missing
5438 ;; # DBM::Deep any missing
5439 ;; # DateTime any missing
5440 ;; # DateTime::Calendar::Mayan any missing
5441 ;; # DateTime::Format::MySQL any missing
5442 ;; # Declare::Constraints::Simple any missing
5443 ;; # Dist::CheckConflicts any 0.11
5444 ;; # HTTP::Headers any missing
5445 ;; # IO::File any 1.16
5446 ;; # IO::String any missing
5447 ;; # Locale::US any missing
5448 ;; # Module::Refresh any missing
5449 ;; # MooseX::NonMoose any missing
5450 ;; # Params::Coerce any missing
5451 ;; # Regexp::Common any missing
5452 ;; # SUPER any missing
5453 ;; # Test::Deep any missing
5454 ;; # Test::DependentModules any missing
5455 ;; # Test::LeakTrace any missing
5456 ;; # Test::Output any missing
5457 ;; # URI any missing
5458 (propagated-inputs
5459 `(("perl-class-load" ,perl-class-load)
5460 ("perl-class-load-xs" ,perl-class-load-xs)
5461 ("perl-data-optlist" ,perl-data-optlist)
5462 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5463 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5464 ("perl-devel-partialdump" ,perl-devel-partialdump)
5465 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5466 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5467 ("perl-eval-closure" ,perl-eval-closure)
5468 ("perl-list-moreutils" ,perl-list-moreutils)
5469 ("perl-module-runtime" ,perl-module-runtime)
5470 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5471 ("perl-mro-compat" ,perl-mro-compat)
5472 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5473 ("perl-package-stash" ,perl-package-stash)
5474 ("perl-package-stash-xs" ,perl-package-stash-xs)
5475 ("perl-params-util" ,perl-params-util)
5476 ("perl-parent" ,perl-parent)
5477 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5478 ("perl-sub-exporter" ,perl-sub-exporter)
5479 ("perl-sub-name" ,perl-sub-name)
5480 ("perl-task-weaken" ,perl-task-weaken)
5481 ("perl-try-tiny" ,perl-try-tiny)))
5482 (home-page "https://metacpan.org/release/Moose")
5483 (synopsis "Postmodern object system for Perl 5")
5484 (description
5485 "Moose is a complete object system for Perl 5. It provides keywords for
5486 attribute declaration, object construction, inheritance, and maybe more. With
5487 Moose, you define your class declaratively, without needing to know about
5488 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5489 logical structure of your classes, focusing on \"what\" rather than \"how\".
5490 A class definition with Moose reads like a list of very concise English
5491 sentences.")
5492 (license (package-license perl))))
5493
5494 (define-public perl-moosex-emulate-class-accessor-fast
5495 (package
5496 (name "perl-moosex-emulate-class-accessor-fast")
5497 (version "0.00903")
5498 (source
5499 (origin
5500 (method url-fetch)
5501 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5502 "MooseX-Emulate-Class-Accessor-Fast-"
5503 version ".tar.gz"))
5504 (sha256
5505 (base32
5506 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
5507 (build-system perl-build-system)
5508 (native-inputs
5509 `(("perl-module-install" ,perl-module-install)
5510 ("perl-test-exception" ,perl-test-exception)))
5511 (propagated-inputs
5512 `(("perl-moose" ,perl-moose)))
5513 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
5514 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5515 (description "This module attempts to emulate the behavior of
5516 Class::Accessor::Fast as accurately as possible using the Moose attribute
5517 system. The public API of Class::Accessor::Fast is wholly supported, but the
5518 private methods are not.")
5519 (license (package-license perl))))
5520
5521 (define-public perl-moosex-getopt
5522 (package
5523 (name "perl-moosex-getopt")
5524 (version "0.71")
5525 (source
5526 (origin
5527 (method url-fetch)
5528 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5529 "MooseX-Getopt-" version ".tar.gz"))
5530 (sha256
5531 (base32
5532 "0nf2094qgir0irxjycwqavy53ygm530g9f7cxfywnl2n1bmgh66y"))))
5533 (build-system perl-build-system)
5534 (native-inputs
5535 `(("perl-module-build" ,perl-module-build)
5536 ("perl-test-deep" ,perl-test-deep)
5537 ("perl-test-fatal" ,perl-test-fatal)
5538 ("perl-test-requires" ,perl-test-requires)
5539 ("perl-test-trap" ,perl-test-trap)
5540 ("perl-test-warnings" ,perl-test-warnings)))
5541 (propagated-inputs
5542 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5543 ("perl-moose" ,perl-moose)
5544 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5545 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5546 (home-page "https://metacpan.org/release/MooseX-Getopt")
5547 (synopsis "Moose role for processing command line options")
5548 (description "This is a Moose role which provides an alternate constructor
5549 for creating objects using parameters passed in from the command line.")
5550 (license (package-license perl))))
5551
5552 (define-public perl-moosex-markasmethods
5553 (package
5554 (name "perl-moosex-markasmethods")
5555 (version "0.15")
5556 (source
5557 (origin
5558 (method url-fetch)
5559 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5560 "MooseX-MarkAsMethods-" version ".tar.gz"))
5561 (sha256
5562 (base32
5563 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5564 (build-system perl-build-system)
5565 (inputs
5566 `(("perl-moose" ,perl-moose)
5567 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5568 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
5569 (synopsis "Mark overload code symbols as methods")
5570 (description "MooseX::MarkAsMethods allows one to easily mark certain
5571 functions as Moose methods. This will allow other packages such as
5572 namespace::autoclean to operate without blowing away your overloads. After
5573 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5574 being methods, and class extension as well as composition from roles with
5575 overloads will \"just work\".")
5576 (license lgpl2.1)))
5577
5578 (define-public perl-moosex-methodattributes
5579 (package
5580 (name "perl-moosex-methodattributes")
5581 (version "0.31")
5582 (source
5583 (origin
5584 (method url-fetch)
5585 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5586 "MooseX-MethodAttributes-" version ".tar.gz"))
5587 (sha256
5588 (base32
5589 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
5590 (build-system perl-build-system)
5591 (native-inputs
5592 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5593 ("perl-test-fatal" ,perl-test-fatal)
5594 ("perl-test-requires" ,perl-test-requires)))
5595 (propagated-inputs
5596 `(("perl-moose" ,perl-moose)
5597 ("perl-moosex-types" ,perl-moosex-types)
5598 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5599 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
5600 (synopsis "Code attribute introspection")
5601 (description "This module allows code attributes of methods to be
5602 introspected using Moose meta method objects.")
5603 (license (package-license perl))))
5604
5605 (define-public perl-moosex-nonmoose
5606 (package
5607 (name "perl-moosex-nonmoose")
5608 (version "0.26")
5609 (source
5610 (origin
5611 (method url-fetch)
5612 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5613 "MooseX-NonMoose-" version ".tar.gz"))
5614 (sha256
5615 (base32
5616 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5617 (build-system perl-build-system)
5618 (native-inputs
5619 `(("perl-moose" ,perl-moose)
5620 ("perl-test-fatal" ,perl-test-fatal)))
5621 (propagated-inputs
5622 `(("perl-list-moreutils" ,perl-list-moreutils)
5623 ("perl-module-runtime" ,perl-module-runtime)
5624 ("perl-moose" ,perl-moose)
5625 ("perl-try-tiny" ,perl-try-tiny)))
5626 (home-page "https://metacpan.org/release/MooseX-NonMoose")
5627 (synopsis "Subclassing of non-Moose classes")
5628 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5629 classes with Moose, taking care of the details connected with doing this, such
5630 as setting up proper inheritance from Moose::Object and installing (and
5631 inlining, at make_immutable time) a constructor that makes sure things like
5632 BUILD methods are called. It tries to be as non-intrusive as possible.")
5633 (license (package-license perl))))
5634
5635 (define-public perl-moosex-params-validate
5636 (package
5637 (name "perl-moosex-params-validate")
5638 (version "0.19")
5639 (source
5640 (origin
5641 (method url-fetch)
5642 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5643 "MooseX-Params-Validate-" version ".tar.gz"))
5644 (sha256
5645 (base32
5646 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
5647 (build-system perl-build-system)
5648 (native-inputs
5649 `(("perl-moose" ,perl-moose)
5650 ("perl-test-fatal" ,perl-test-fatal)))
5651 (propagated-inputs
5652 `(("perl-devel-caller" ,perl-devel-caller)
5653 ("perl-moose" ,perl-moose)
5654 ("perl-params-validate" ,perl-params-validate)
5655 ("perl-sub-exporter" ,perl-sub-exporter)))
5656 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
5657 (synopsis "Extension of Params::Validate using Moose's types")
5658 (description "This module fills a gap in Moose by adding method parameter
5659 validation to Moose.")
5660 (license (package-license perl))))
5661
5662 (define-public perl-moosex-relatedclassroles
5663 (package
5664 (name "perl-moosex-relatedclassroles")
5665 (version "0.004")
5666 (source
5667 (origin
5668 (method url-fetch)
5669 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5670 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5671 (sha256
5672 (base32
5673 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5674 (build-system perl-build-system)
5675 (propagated-inputs
5676 `(("perl-moose" ,perl-moose)
5677 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5678 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
5679 (synopsis "Apply roles to a related Perl class")
5680 (description "This module applies roles to make a subclass instead of
5681 manually setting up a subclass.")
5682 (license (package-license perl))))
5683
5684 (define-public perl-moosex-role-parameterized
5685 (package
5686 (name "perl-moosex-role-parameterized")
5687 (version "1.08")
5688 (source
5689 (origin
5690 (method url-fetch)
5691 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5692 "MooseX-Role-Parameterized-" version ".tar.gz"))
5693 (sha256
5694 (base32
5695 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5696 (build-system perl-build-system)
5697 (native-inputs
5698 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5699 ("perl-module-build" ,perl-module-build)
5700 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5701 ("perl-test-fatal" ,perl-test-fatal)
5702 ("perl-test-requires" ,perl-test-requires)))
5703 (propagated-inputs
5704 `(("perl-moose" ,perl-moose)
5705 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5706 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
5707 (synopsis "Moose roles with composition parameters")
5708 (description "Because Moose roles serve many different masters, they
5709 usually provide only the least common denominator of functionality. To
5710 empower roles further, more configurability than -alias and -excludes is
5711 required. Perhaps your role needs to know which method to call when it is
5712 done processing, or what default value to use for its url attribute.
5713 Parameterized roles offer a solution to these (and other) kinds of problems.")
5714 (license (package-license perl))))
5715
5716 (define-public perl-moosex-role-withoverloading
5717 (package
5718 (name "perl-moosex-role-withoverloading")
5719 (version "0.16")
5720 (source
5721 (origin
5722 (method url-fetch)
5723 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5724 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5725 (sha256
5726 (base32
5727 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5728 (build-system perl-build-system)
5729 (propagated-inputs
5730 `(("perl-aliased" ,perl-aliased)
5731 ("perl-moose" ,perl-moose)
5732 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5733 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
5734 (synopsis "Roles which support overloading")
5735 (description "MooseX::Role::WithOverloading allows you to write a
5736 Moose::Role which defines overloaded operators and allows those overload
5737 methods to be composed into the classes/roles/instances it's compiled to,
5738 where plain Moose::Roles would lose the overloading.")
5739 (license (package-license perl))))
5740
5741 (define-public perl-moosex-semiaffordanceaccessor
5742 (package
5743 (name "perl-moosex-semiaffordanceaccessor")
5744 (version "0.10")
5745 (source
5746 (origin
5747 (method url-fetch)
5748 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5749 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5750 (sha256
5751 (base32
5752 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5753 (build-system perl-build-system)
5754 (propagated-inputs
5755 `(("perl-moose" ,perl-moose)))
5756 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
5757 (synopsis "Name your accessors foo() and set_foo()")
5758 (description "This module does not provide any methods. Simply loading it
5759 changes the default naming policy for the loading class so that accessors are
5760 separated into get and set methods. The get methods have the same name as the
5761 accessor, while set methods are prefixed with \"_set_\".")
5762 (license artistic2.0)))
5763
5764 (define-public perl-moosex-strictconstructor
5765 (package
5766 (name "perl-moosex-strictconstructor")
5767 (version "0.19")
5768 (source
5769 (origin
5770 (method url-fetch)
5771 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5772 "MooseX-StrictConstructor-" version ".tar.gz"))
5773 (sha256
5774 (base32
5775 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5776 (build-system perl-build-system)
5777 (native-inputs
5778 `(("perl-moose" ,perl-moose)
5779 ("perl-test-fatal" ,perl-test-fatal)))
5780 (propagated-inputs
5781 `(("perl-moose" ,perl-moose)
5782 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5783 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
5784 (synopsis "Strict object constructors for Moose")
5785 (description "Simply loading this module makes your constructors
5786 \"strict\". If your constructor is called with an attribute init argument
5787 that your class does not declare, then it calls Moose->throw_error().")
5788 (license artistic2.0)))
5789
5790 (define-public perl-moosex-traits-pluggable
5791 (package
5792 (name "perl-moosex-traits-pluggable")
5793 (version "0.12")
5794 (source
5795 (origin
5796 (method url-fetch)
5797 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5798 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5799 (sha256
5800 (base32
5801 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5802 (build-system perl-build-system)
5803 (native-inputs
5804 `(("perl-moose" ,perl-moose)
5805 ("perl-test-exception" ,perl-test-exception)))
5806 (propagated-inputs
5807 `(("perl-class-load" ,perl-class-load)
5808 ("perl-list-moreutils" ,perl-list-moreutils)
5809 ("perl-moose" ,perl-moose)
5810 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5811 (home-page
5812 "https://metacpan.org/release/MooseX-Traits-Pluggable")
5813 (synopsis "Trait loading and resolution for Moose")
5814 (description "Adds support on top of MooseX::Traits for class precedence
5815 search for traits and some extra attributes.")
5816 (license (package-license perl))))
5817
5818 (define-public perl-moosex-types
5819 (package
5820 (name "perl-moosex-types")
5821 (version "0.45")
5822 (source
5823 (origin
5824 (method url-fetch)
5825 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5826 "MooseX-Types-" version ".tar.gz"))
5827 (sha256
5828 (base32
5829 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5830 (build-system perl-build-system)
5831 (native-inputs
5832 `(("perl-module-build" ,perl-module-build)
5833 ("perl-test-fatal" ,perl-test-fatal)
5834 ("perl-test-requires" ,perl-test-requires)))
5835 (propagated-inputs
5836 `(("perl-carp-clan" ,perl-carp-clan)
5837 ("perl-moose" ,perl-moose)
5838 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5839 (home-page "https://metacpan.org/release/MooseX-Types")
5840 (synopsis "Organise your Moose types in libraries")
5841 (description "This package lets you declare types using short names, but
5842 behind the scenes it namespaces all your type declarations, effectively
5843 prevent name clashes between packages.")
5844 (license (package-license perl))))
5845
5846 (define-public perl-moosex-types-datetime
5847 (package
5848 (name "perl-moosex-types-datetime")
5849 (version "0.13")
5850 (source
5851 (origin
5852 (method url-fetch)
5853 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5854 "MooseX-Types-DateTime-" version ".tar.gz"))
5855 (sha256
5856 (base32
5857 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5858 (build-system perl-build-system)
5859 (native-inputs
5860 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5861 ("perl-moose" ,perl-moose)
5862 ("perl-test-fatal" ,perl-test-fatal)
5863 ("perl-test-simple" ,perl-test-simple)))
5864 (propagated-inputs
5865 `(("perl-datetime" ,perl-datetime)
5866 ("perl-datetime-locale" ,perl-datetime-locale)
5867 ("perl-datetime-timezone" ,perl-datetime-timezone)
5868 ("perl-moose" ,perl-moose)
5869 ("perl-moosex-types" ,perl-moosex-types)
5870 ("perl-namespace-clean" ,perl-namespace-clean)))
5871 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
5872 (synopsis "DateTime related constraints and coercions for Moose")
5873 (description "This module packages several Moose::Util::TypeConstraints
5874 with coercions, designed to work with the DateTime suite of objects.")
5875 (license (package-license perl))))
5876
5877 (define-public perl-moosex-types-datetime-morecoercions
5878 (package
5879 (name "perl-moosex-types-datetime-morecoercions")
5880 (version "0.14")
5881 (source
5882 (origin
5883 (method url-fetch)
5884 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5885 "MooseX-Types-DateTime-MoreCoercions-"
5886 version ".tar.gz"))
5887 (sha256
5888 (base32
5889 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5890 (build-system perl-build-system)
5891 (native-inputs
5892 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5893 ("perl-test-fatal" ,perl-test-fatal)
5894 ("perl-test-simple" ,perl-test-simple)))
5895 (propagated-inputs
5896 `(("perl-datetime" ,perl-datetime)
5897 ("perl-datetimex-easy" ,perl-datetimex-easy)
5898 ("perl-moose" ,perl-moose)
5899 ("perl-moosex-types" ,perl-moosex-types)
5900 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5901 ("perl-namespace-clean" ,perl-namespace-clean)
5902 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5903 (home-page
5904 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
5905 (synopsis "Extensions to MooseX::Types::DateTime")
5906 (description "This module builds on MooseX::Types::DateTime to add
5907 additional custom types and coercions. Since it builds on an existing type,
5908 all coercions and constraints are inherited.")
5909 (license (package-license perl))))
5910
5911 (define-public perl-moosex-types-loadableclass
5912 (package
5913 (name "perl-moosex-types-loadableclass")
5914 (version "0.013")
5915 (source
5916 (origin
5917 (method url-fetch)
5918 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5919 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5920 (sha256
5921 (base32
5922 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5923 (build-system perl-build-system)
5924 (native-inputs
5925 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5926 ("perl-namespace-clean" ,perl-namespace-clean)
5927 ("perl-moose" ,perl-moose)
5928 ("perl-test-fatal" ,perl-test-fatal)
5929 ("perl-class-load" ,perl-class-load)))
5930 (propagated-inputs
5931 `(("perl-module-runtime" ,perl-module-runtime)
5932 ("perl-moosex-types" ,perl-moosex-types)
5933 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5934 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
5935 (synopsis "ClassName type constraints for Moose")
5936 (description "MooseX::Types::LoadableClass provides a ClassName type
5937 constraint with coercion to load the class.")
5938 (license (package-license perl))))
5939
5940 (define-public perl-moox
5941 (package
5942 (name "perl-moox")
5943 (version "0.101")
5944 (source
5945 (origin
5946 (method url-fetch)
5947 (uri (string-append
5948 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5949 version
5950 ".tar.gz"))
5951 (sha256
5952 (base32
5953 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5954 (build-system perl-build-system)
5955 (inputs
5956 `(("perl-data-optlist" ,perl-data-optlist)
5957 ("perl-import-into" ,perl-import-into)
5958 ("perl-module-runtime" ,perl-module-runtime)
5959 ("perl-moo" ,perl-moo)))
5960 (home-page "https://metacpan.org/release/MooX")
5961 (synopsis
5962 "Using Moo and MooX:: packages the most lazy way")
5963 (description "Contains the MooX and MooX::Role packages.")
5964 (license perl-license)))
5965
5966 (define-public perl-moox-cmd
5967 (package
5968 (name "perl-moox-cmd")
5969 (version "0.015")
5970 (source
5971 (origin
5972 (method url-fetch)
5973 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
5974 version ".tar.gz"))
5975 (sha256
5976 (base32
5977 "0145ha8vnc6sbg82ps96wj716bznq2qamm657bia9ji2yxhbnsam"))))
5978 (build-system perl-build-system)
5979 (native-inputs
5980 `(("perl-capture-tiny" ,perl-capture-tiny)
5981 ("perl-list-moreutils" ,perl-list-moreutils)))
5982 (propagated-inputs
5983 `(("perl-module-pluggable" ,perl-module-pluggable)
5984 ("perl-module-runtime" ,perl-module-runtime)
5985 ("perl-moo" ,perl-moo)
5986 ("perl-package-stash" ,perl-package-stash)
5987 ("perl-params-util" ,perl-params-util)
5988 ("perl-regexp-common" ,perl-regexp-common)))
5989 (home-page "https://metacpan.org/release/MooX-Cmd")
5990 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
5991 (description "This package eases the writing of command line utilities,
5992 accepting commands and subcommands and so on. These commands can form a tree,
5993 which is mirrored in the package structure. On invocation, each command along
5994 the path through the tree (starting from the top-level command through to the
5995 most specific one) is instantiated.")
5996 (license (package-license perl))))
5997
5998 (define-public perl-moox-configfromfile
5999 (package
6000 (name "perl-moox-configfromfile")
6001 (version "0.008")
6002 (source
6003 (origin
6004 (method url-fetch)
6005 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6006 "MooX-ConfigFromFile-" version ".tar.gz"))
6007 (sha256
6008 (base32
6009 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6010 (build-system perl-build-system)
6011 (native-inputs
6012 `(("perl-hash-merge" ,perl-hash-merge)
6013 ("perl-json" ,perl-json)
6014 ("perl-moox-cmd" ,perl-moox-cmd)))
6015 (propagated-inputs
6016 `(("perl-config-any" ,perl-config-any)
6017 ("perl-file-configdir" ,perl-file-configdir)
6018 ("perl-file-find-rule" ,perl-file-find-rule)
6019 ("perl-hash-merge" ,perl-hash-merge)
6020 ("perl-moo" ,perl-moo)
6021 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6022 ("perl-namespace-clean" ,perl-namespace-clean)))
6023 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
6024 (synopsis "Moo eXtension for initializing objects from config file")
6025 (description "This module is intended to easily load initialization values
6026 for attributes on object construction from an appropriate config file. The
6027 building is done in @code{MooX::ConfigFromFile::Role}---using
6028 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6029 (license (package-license perl))))
6030
6031 (define-public perl-moox-file-configdir
6032 (package
6033 (name "perl-moox-file-configdir")
6034 (version "0.007")
6035 (source
6036 (origin
6037 (method url-fetch)
6038 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6039 "MooX-File-ConfigDir-" version ".tar.gz"))
6040 (sha256
6041 (base32
6042 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6043 (build-system perl-build-system)
6044 (propagated-inputs
6045 `(("perl-file-configdir" ,perl-file-configdir)
6046 ("perl-moo" ,perl-moo)
6047 ("perl-namespace-clean" ,perl-namespace-clean)))
6048 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
6049 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6050 (description "This module is a helper for easily finding configuration
6051 file locations. This information can be used to find a suitable place for
6052 installing configuration files or for finding any piece of settings.")
6053 (license (package-license perl))))
6054
6055 (define-public perl-moox-handlesvia
6056 (package
6057 (name "perl-moox-handlesvia")
6058 (version "0.001008")
6059 (source
6060 (origin
6061 (method url-fetch)
6062 (uri (string-append
6063 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6064 version
6065 ".tar.gz"))
6066 (sha256
6067 (base32
6068 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6069 (build-system perl-build-system)
6070 (native-inputs
6071 `(("perl-moox-types-mooselike"
6072 ,perl-moox-types-mooselike)
6073 ("perl-test-exception" ,perl-test-exception)
6074 ("perl-test-fatal" ,perl-test-fatal)))
6075 (inputs
6076 `(("perl-class-method-modifiers"
6077 ,perl-class-method-modifiers)
6078 ("perl-module-runtime" ,perl-module-runtime)
6079 ("perl-moo" ,perl-moo)
6080 ("perl-role-tiny" ,perl-role-tiny)))
6081 (propagated-inputs
6082 `(("perl-data-perl" ,perl-data-perl)))
6083 (home-page
6084 "https://metacpan.org/release/MooX-HandlesVia")
6085 (synopsis "NativeTrait-like behavior for Moo")
6086 (description
6087 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6088 attribute functionality. It provides a means of proxying functionality from
6089 an external class to the given atttribute.")
6090 (license perl-license)))
6091
6092 (define-public perl-moox-late
6093 (package
6094 (name "perl-moox-late")
6095 (version "0.015")
6096 (source
6097 (origin
6098 (method url-fetch)
6099 (uri (string-append
6100 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6101 version
6102 ".tar.gz"))
6103 (sha256
6104 (base32
6105 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6106 (build-system perl-build-system)
6107 (native-inputs
6108 `(("perl-test-fatal" ,perl-test-fatal)
6109 ("perl-test-requires" ,perl-test-requires)))
6110 (inputs
6111 `(("perl-moo" ,perl-moo)
6112 ("perl-moox" ,perl-moox)
6113 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6114 (propagated-inputs
6115 `(("perl-type-tiny" ,perl-type-tiny)))
6116 (home-page
6117 "https://metacpan.org/release/MooX-late")
6118 (synopsis "Easily translate Moose code to Moo")
6119 (description
6120 "MooX::late does the following:
6121 @enumerate
6122 @item Supports isa => $stringytype
6123 @item Supports does => $rolename
6124 @item Supports lazy_build => 1
6125 @item Exports blessed and confess functions to your namespace.
6126 @item Handles certain attribute traits
6127 Currently Hash, Array and Code are supported. This feature requires
6128 MooX::HandlesVia.
6129 @end enumerate")
6130 (license perl-license)))
6131
6132 (define-public perl-moox-options
6133 (package
6134 (name "perl-moox-options")
6135 (version "4.023")
6136 (source
6137 (origin
6138 (method url-fetch)
6139 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6140 "MooX-Options-" version ".tar.gz"))
6141 (sha256
6142 (base32
6143 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6144 (build-system perl-build-system)
6145 (native-inputs
6146 `(("perl-capture-tiny" ,perl-capture-tiny)
6147 ("perl-import-into" ,perl-import-into)
6148 ("perl-module-build" ,perl-module-build)
6149 ("perl-moo" ,perl-moo)
6150 ("perl-moose" ,perl-moose)
6151 ("perl-moox-cmd" ,perl-moox-cmd)
6152 ("perl-namespace-clean" ,perl-namespace-clean)
6153 ("perl-role-tiny" ,perl-role-tiny)
6154 ("perl-test-requires" ,perl-test-requires)
6155 ("perl-test-trap" ,perl-test-trap)
6156 ("perl-test-pod" ,perl-test-pod)
6157 ("perl-try-tiny" ,perl-try-tiny)))
6158 (propagated-inputs
6159 `(("perl-config-any" ,perl-config-any)
6160 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6161 ("perl-data-record" ,perl-data-record)
6162 ("perl-file-configdir" ,perl-file-configdir)
6163 ("perl-file-find-rule" ,perl-file-find-rule)
6164 ("perl-file-sharedir" ,perl-file-sharedir)
6165 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6166 ("perl-json-maybexs" ,perl-json-maybexs)
6167 ("perl-libintl-perl" ,perl-libintl-perl)
6168 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6169 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6170 ("perl-path-class" ,perl-path-class)
6171 ("perl-regexp-common" ,perl-regexp-common)
6172 ("perl-term-size-any" ,perl-term-size-any)
6173 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6174 (home-page "https://metacpan.org/release/MooX-Options")
6175 (synopsis "Explicit Options eXtension for Object Class")
6176 (description "Create a command line tool with your Mo, Moo, Moose objects.
6177 You have an @code{option} keyword to replace the usual @code{has} to
6178 explicitly use your attribute on the command line. The @code{option} keyword
6179 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6180 generate a command line tool.")
6181 (license (package-license perl))))
6182
6183 (define-public perl-moox-types-mooselike
6184 (package
6185 (name "perl-moox-types-mooselike")
6186 (version "0.28")
6187 (source
6188 (origin
6189 (method url-fetch)
6190 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6191 "MooX-Types-MooseLike-" version ".tar.gz"))
6192 (sha256
6193 (base32
6194 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
6195 (build-system perl-build-system)
6196 (native-inputs
6197 `(("perl-moo" ,perl-moo)
6198 ("perl-test-fatal" ,perl-test-fatal)))
6199 (propagated-inputs
6200 `(("perl-module-runtime" ,perl-module-runtime)
6201 ("perl-strictures" ,perl-strictures)))
6202 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
6203 (synopsis "Moosish types and type builder")
6204 (description "MooX::Types::MooseLike provides a possibility to build your
6205 own set of Moose-like types. These custom types can then be used to describe
6206 fields in Moo-based classes.")
6207 (license (package-license perl))))
6208
6209 (define-public perl-mouse
6210 (package
6211 (name "perl-mouse")
6212 (version "2.4.9")
6213 (source (origin
6214 (method url-fetch)
6215 (uri (string-append
6216 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6217 version
6218 ".tar.gz"))
6219 (sha256
6220 (base32
6221 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
6222 (build-system perl-build-system)
6223 (native-inputs
6224 `(("perl-module-build" ,perl-module-build)
6225 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6226 ("perl-test-exception" ,perl-test-exception)
6227 ("perl-test-fatal" ,perl-test-fatal)
6228 ("perl-test-leaktrace" ,perl-test-leaktrace)
6229 ("perl-test-output" ,perl-test-output)
6230 ("perl-test-requires" ,perl-test-requires)
6231 ("perl-try-tiny" ,perl-try-tiny)))
6232 (home-page "https://github.com/gfx/p5-Mouse")
6233 (synopsis "Fast Moose-compatible object system for perl5")
6234 (description
6235 "Mouse is a @code{Moose} compatible object system that implements a
6236 subset of the functionality for reduced startup time.")
6237 (license (package-license perl))))
6238
6239 (define-public perl-mousex-nativetraits
6240 (package
6241 (name "perl-mousex-nativetraits")
6242 (version "1.09")
6243 (source (origin
6244 (method url-fetch)
6245 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6246 "MouseX-NativeTraits-" version ".tar.gz"))
6247 (sha256
6248 (base32
6249 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6250 (build-system perl-build-system)
6251 (native-inputs
6252 `(("perl-any-moose" ,perl-any-moose)
6253 ("perl-module-install" ,perl-module-install)
6254 ("perl-test-fatal" ,perl-test-fatal)))
6255 (propagated-inputs
6256 `(("perl-mouse" ,perl-mouse)))
6257 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
6258 (synopsis "Extend attribute interfaces for Mouse")
6259 (description
6260 "While @code{Mouse} attributes provide a way to name your accessors,
6261 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6262 provides commonly used attribute helper methods for more specific types
6263 of data.")
6264 (license (package-license perl))))
6265
6266 (define-public perl-mozilla-ca
6267 (package
6268 (name "perl-mozilla-ca")
6269 (version "20180117")
6270 (source
6271 (origin
6272 (method url-fetch)
6273 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6274 version ".tar.gz"))
6275 (sha256
6276 (base32
6277 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6278 (build-system perl-build-system)
6279 (home-page "https://metacpan.org/release/Mozilla-CA")
6280 (synopsis "Mozilla's CA cert bundle in PEM format")
6281 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6282 Certificate Authority certificates in a form that can be consumed by modules
6283 and libraries based on OpenSSL.")
6284 (license mpl2.0)))
6285
6286 (define-public perl-multidimensional
6287 (package
6288 (name "perl-multidimensional")
6289 (version "0.014")
6290 (source
6291 (origin
6292 (method url-fetch)
6293 (uri (string-append
6294 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6295 version ".tar.gz"))
6296 (sha256
6297 (base32
6298 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6299 (build-system perl-build-system)
6300 (native-inputs
6301 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6302 ("perl-extutils-depends" ,perl-extutils-depends)))
6303 (propagated-inputs
6304 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6305 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6306 (home-page "https://metacpan.org/release/multidimensional")
6307 (synopsis "Disable multidimensional array emulation")
6308 (description
6309 "Multidimensional disables multidimensional array emulation.")
6310 (license (package-license perl))))
6311
6312 (define-public perl-mro-compat
6313 (package
6314 (name "perl-mro-compat")
6315 (version "0.13")
6316 (source
6317 (origin
6318 (method url-fetch)
6319 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6320 "MRO-Compat-" version ".tar.gz"))
6321 (sha256
6322 (base32
6323 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6324 (build-system perl-build-system)
6325 (home-page "https://metacpan.org/release/MRO-Compat")
6326 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6327 (description "The \"mro\" namespace provides several utilities for dealing
6328 with method resolution order and method caching in general in Perl 5.9.5 and
6329 higher. This module provides those interfaces for earlier versions of
6330 Perl (back to 5.6.0).")
6331 (license (package-license perl))))
6332
6333 (define-public perl-namespace-autoclean
6334 (package
6335 (name "perl-namespace-autoclean")
6336 (version "0.28")
6337 (source
6338 (origin
6339 (method url-fetch)
6340 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6341 "namespace-autoclean-" version ".tar.gz"))
6342 (sha256
6343 (base32
6344 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6345 (build-system perl-build-system)
6346 (native-inputs
6347 `(("perl-module-build" ,perl-module-build)
6348 ("perl-test-requires" ,perl-test-requires)))
6349 (propagated-inputs
6350 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6351 ("perl-namespace-clean" ,perl-namespace-clean)
6352 ("perl-sub-identify" ,perl-sub-identify)))
6353 (home-page "https://metacpan.org/release/namespace-autoclean")
6354 (synopsis "Keep imports out of your namespace")
6355 (description "The namespace::autoclean pragma will remove all imported
6356 symbols at the end of the current package's compile cycle. Functions called
6357 in the package itself will still be bound by their name, but they won't show
6358 up as methods on your class or instances. It is very similar to
6359 namespace::clean, except it will clean all imported functions, no matter if
6360 you imported them before or after you used the pragma. It will also not touch
6361 anything that looks like a method.")
6362 (license (package-license perl))))
6363
6364 (define-public perl-namespace-clean
6365 (package
6366 (name "perl-namespace-clean")
6367 (version "0.25")
6368 (source
6369 (origin
6370 (method url-fetch)
6371 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6372 "namespace-clean-" version ".tar.gz"))
6373 (sha256
6374 (base32
6375 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
6376 (build-system perl-build-system)
6377 (propagated-inputs
6378 `(("perl-package-stash" ,perl-package-stash)
6379 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6380 (home-page "https://metacpan.org/release/namespace-clean")
6381 (synopsis "Keep imports and functions out of your namespace")
6382 (description "The namespace::clean pragma will remove all previously
6383 declared or imported symbols at the end of the current package's compile
6384 cycle. Functions called in the package itself will still be bound by their
6385 name, but they won't show up as methods on your class or instances.")
6386 (license (package-license perl))))
6387
6388 (define-public perl-net-dns-native
6389 (package
6390 (name "perl-net-dns-native")
6391 (version "0.15")
6392 (source
6393 (origin
6394 (method url-fetch)
6395 (uri (string-append
6396 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6397 version ".tar.gz"))
6398 (sha256
6399 (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85"))))
6400 (build-system perl-build-system)
6401 (home-page "https://metacpan.org/release/Net-DNS-Native")
6402 (synopsis "Non-blocking system DNS resolver")
6403 (description
6404 "This class provides several methods for host name resolution. It is
6405 designed to be used with event loops. Names are resolved by your system's
6406 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6407 avoid blocking the entire application. Threading overhead is limited by using
6408 system threads instead of Perl threads.")
6409 (license perl-license)))
6410
6411 (define-public perl-net-idn-encode
6412 (package
6413 (name "perl-net-idn-encode")
6414 (version "2.400")
6415 (source
6416 (origin
6417 (method url-fetch)
6418 (uri (string-append
6419 "mirror://cpan/authors/id/C/CF/CFAERBER/Net-IDN-Encode-"
6420 version
6421 ".tar.gz"))
6422 (sha256
6423 (base32
6424 "0a9knav5f9kjldrkxx1k47ivd3p23zkmi8aqgyhnxidhgasz1dlq"))))
6425 (build-system perl-build-system)
6426 (native-inputs
6427 `(("perl-module-build" ,perl-module-build)
6428 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6429 (home-page
6430 "https://metacpan.org/release/Net-IDN-Encode")
6431 (synopsis
6432 "Internationalizing Domain Names in Applications (IDNA)")
6433 (description
6434 "Internationalized Domain Names (IDNs) use characters drawn from a large
6435 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6436 represented using only the ASCII characters already allowed in so-called host
6437 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6438
6439 Use this module if you just want to convert domain names (or email addresses),
6440 using whatever IDNA standard is the best choice at the moment.")
6441 (license perl-license)))
6442
6443 (define-public perl-net-statsd
6444 (package
6445 (name "perl-net-statsd")
6446 (version "0.12")
6447 (source
6448 (origin
6449 (method url-fetch)
6450 (uri (string-append
6451 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6452 version
6453 ".tar.gz"))
6454 (sha256
6455 (base32
6456 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6457 (build-system perl-build-system)
6458 (home-page
6459 "https://metacpan.org/release/Net-Statsd")
6460 (synopsis "Perl client for Etsy's statsd daemon")
6461 (description "This module implement a UDP client for the statsd statistics
6462 collector daemon in use at Etsy.com.")
6463 (license (package-license perl))))
6464
6465 (define-public perl-number-compare
6466 (package
6467 (name "perl-number-compare")
6468 (version "0.03")
6469 (source
6470 (origin
6471 (method url-fetch)
6472 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6473 "Number-Compare-" version ".tar.gz"))
6474 (sha256
6475 (base32
6476 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6477 (build-system perl-build-system)
6478 (home-page "https://metacpan.org/release/Number-Compare")
6479 (synopsis "Numeric comparisons")
6480 (description "Number::Compare compiles a simple comparison to an anonymous
6481 subroutine, which you can call with a value to be tested against.")
6482 (license (package-license perl))))
6483
6484 (define-public perl-number-format
6485 (package
6486 (name "perl-number-format")
6487 (version "1.75")
6488 (source (origin
6489 (method url-fetch)
6490 (uri (string-append
6491 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6492 version ".tar.gz"))
6493 (sha256
6494 (base32
6495 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6496 (build-system perl-build-system)
6497 (home-page "https://metacpan.org/release/Number-Format")
6498 (synopsis "Convert numbers to strings with pretty formatting")
6499 (description "@code{Number::Format} is a library for formatting numbers.
6500 Functions are provided for converting numbers to strings in a variety of ways,
6501 and to convert strings that contain numbers back into numeric form. The
6502 output formats may include thousands separators - characters inserted between
6503 each group of three characters counting right to left from the decimal point.
6504 The characters used for the decimal point and the thousands separator come from
6505 the locale information or can be specified by the user.")
6506 (license perl-license)))
6507
6508 (define-public perl-number-range
6509 (package
6510 (name "perl-number-range")
6511 (version "0.12")
6512 (source
6513 (origin
6514 (method url-fetch)
6515 (uri (string-append
6516 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6517 version ".tar.gz"))
6518 (sha256
6519 (base32
6520 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6521 (build-system perl-build-system)
6522 (home-page "https://metacpan.org/release/Number-Range")
6523 (synopsis "Perl extension defining ranges of numbers")
6524 (description "Number::Range is an object-oriented interface to test if a
6525 number exists in a given range, and to be able to manipulate the range.")
6526 (license (package-license perl))))
6527
6528 (define-public perl-object-signature
6529 (package
6530 (name "perl-object-signature")
6531 (version "1.07")
6532 (source
6533 (origin
6534 (method url-fetch)
6535 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6536 "Object-Signature-" version ".tar.gz"))
6537 (sha256
6538 (base32
6539 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
6540 (build-system perl-build-system)
6541 (native-inputs
6542 `(("perl-module-install" ,perl-module-install)))
6543 (home-page "https://metacpan.org/release/Object-Signature")
6544 (synopsis "Generate cryptographic signatures for objects")
6545 (description "Object::Signature is an abstract base class that you can
6546 inherit from in order to allow your objects to generate unique cryptographic
6547 signatures.")
6548 (license (package-license perl))))
6549
6550 (define-public perl-ole-storage-lite
6551 (package
6552 (name "perl-ole-storage-lite")
6553 (version "0.19")
6554 (source
6555 (origin
6556 (method url-fetch)
6557 (uri (string-append
6558 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6559 version
6560 ".tar.gz"))
6561 (sha256
6562 (base32
6563 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6564 (build-system perl-build-system)
6565 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
6566 (synopsis "Read and write OLE storage files")
6567 (description "This module allows you to read and write
6568 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6569 technology to store hierarchical information such as links to other
6570 documents within a single file.")
6571 (license (package-license perl))))
6572
6573 (define-public perl-package-anon
6574 (package
6575 (name "perl-package-anon")
6576 (version "0.05")
6577 (source
6578 (origin
6579 (method url-fetch)
6580 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6581 "Package-Anon-" version ".tar.gz"))
6582 (sha256
6583 (base32
6584 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6585 (build-system perl-build-system)
6586 (propagated-inputs
6587 `(("perl-sub-exporter" ,perl-sub-exporter)
6588 ("perl-params-util" ,perl-params-util)))
6589 (home-page "https://metacpan.org/release/Package-Anon")
6590 (synopsis "Anonymous packages")
6591 (description "This module allows for anonymous packages that are
6592 independent of the main namespace and only available through an object
6593 instance, not by name.")
6594 (license (package-license perl))))
6595
6596 (define-public perl-package-deprecationmanager
6597 (package
6598 (name "perl-package-deprecationmanager")
6599 (version "0.17")
6600 (source
6601 (origin
6602 (method url-fetch)
6603 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6604 "Package-DeprecationManager-" version ".tar.gz"))
6605 (sha256
6606 (base32
6607 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6608 (build-system perl-build-system)
6609 (native-inputs
6610 `(("perl-test-fatal" ,perl-test-fatal)
6611 ("perl-test-requires" ,perl-test-requires)
6612 ("perl-test-output" ,perl-test-output)))
6613 (propagated-inputs
6614 `(("perl-list-moreutils" ,perl-list-moreutils)
6615 ("perl-params-util" ,perl-params-util)
6616 ("perl-sub-install" ,perl-sub-install)))
6617 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6618 (home-page "https://metacpan.org/release/Package-DeprecationManager")
6619 (synopsis "Manage deprecation warnings for your distribution")
6620 (description "This module allows you to manage a set of deprecations for
6621 one or more modules.")
6622 (license artistic2.0)))
6623
6624 (define-public perl-package-stash
6625 (package
6626 (name "perl-package-stash")
6627 (version "0.37")
6628 (source
6629 (origin
6630 (method url-fetch)
6631 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6632 "Package-Stash-" version ".tar.gz"))
6633 (sha256
6634 (base32
6635 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
6636 (build-system perl-build-system)
6637 (native-inputs
6638 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6639 ("perl-test-fatal" ,perl-test-fatal)
6640 ("perl-test-requires" ,perl-test-requires)
6641 ("perl-package-anon" ,perl-package-anon)))
6642 (propagated-inputs
6643 `(("perl-module-implementation" ,perl-module-implementation)
6644 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6645 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6646 (home-page "https://metacpan.org/release/Package-Stash")
6647 (synopsis "Routines for manipulating stashes")
6648 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6649 necessary, but incredibly messy, and easy to get wrong. This module hides all
6650 of that behind a simple API.")
6651 (license (package-license perl))))
6652
6653 (define-public perl-package-stash-xs
6654 (package
6655 (name "perl-package-stash-xs")
6656 (version "0.28")
6657 (source
6658 (origin
6659 (method url-fetch)
6660 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6661 "Package-Stash-XS-" version ".tar.gz"))
6662 (sha256
6663 (base32
6664 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
6665 (build-system perl-build-system)
6666 (native-inputs
6667 `(("perl-test-fatal" ,perl-test-fatal)
6668 ("perl-test-requires" ,perl-test-requires)
6669 ("perl-package-anon" ,perl-package-anon)))
6670 (home-page "https://metacpan.org/release/Package-Stash-XS")
6671 (synopsis "Faster implementation of the Package::Stash API")
6672 (description "This is a backend for Package::Stash, which provides the
6673 functionality in a way that's less buggy and much faster. It will be used by
6674 default if it's installed, and should be preferred in all environments with a
6675 compiler.")
6676 (license (package-license perl))))
6677
6678 (define-public perl-padwalker
6679 (package
6680 (name "perl-padwalker")
6681 (version "2.0")
6682 (source
6683 (origin
6684 (method url-fetch)
6685 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6686 "PadWalker-" version ".tar.gz"))
6687 (sha256
6688 (base32
6689 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
6690 (build-system perl-build-system)
6691 (home-page "https://metacpan.org/release/PadWalker")
6692 (synopsis "Play with other peoples' lexical variables")
6693 (description "PadWalker is a module which allows you to inspect (and even
6694 change) lexical variables in any subroutine which called you. It will only
6695 show those variables which are in scope at the point of the call. PadWalker
6696 is particularly useful for debugging.")
6697 (license (package-license perl))))
6698
6699 (define-public perl-parallel-forkmanager
6700 (package
6701 (name "perl-parallel-forkmanager")
6702 (version "1.19")
6703 (source
6704 (origin
6705 (method url-fetch)
6706 (uri (string-append
6707 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6708 version
6709 ".tar.gz"))
6710 (sha256
6711 (base32
6712 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6713 (build-system perl-build-system)
6714 (native-inputs
6715 `(("perl-test-warn" ,perl-test-warn)))
6716 (home-page "https://metacpan.org/release/Parallel-ForkManager")
6717 (synopsis "Simple parallel processing fork manager")
6718 (description "@code{Parallel::ForkManager} is intended for use in
6719 operations that can be done in parallel where the number of
6720 processes to be forked off should be limited.")
6721 (license (package-license perl))))
6722
6723 (define-public perl-params-util
6724 (package
6725 (name "perl-params-util")
6726 (version "1.07")
6727 (source
6728 (origin
6729 (method url-fetch)
6730 (uri (string-append
6731 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6732 version ".tar.gz"))
6733 (sha256
6734 (base32
6735 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6736 (build-system perl-build-system)
6737 (home-page "https://metacpan.org/release/Params-Util")
6738 (synopsis "Simple, compact and correct param-checking functions")
6739 (description
6740 "Params::Util provides a basic set of importable functions that makes
6741 checking parameters easier.")
6742 (license (package-license perl))))
6743
6744 (define-public perl-params-validate
6745 (package
6746 (name "perl-params-validate")
6747 (version "1.29")
6748 (source
6749 (origin
6750 (method url-fetch)
6751 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6752 "Params-Validate-" version ".tar.gz"))
6753 (sha256
6754 (base32
6755 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
6756 (build-system perl-build-system)
6757 (native-inputs
6758 `(("perl-module-build" ,perl-module-build)
6759 ("perl-test-fatal" ,perl-test-fatal)
6760 ("perl-test-requires" ,perl-test-requires)))
6761 (propagated-inputs
6762 `(("perl-module-implementation" ,perl-module-implementation)))
6763 (home-page "https://metacpan.org/release/Params-Validate")
6764 (synopsis "Validate method/function parameters")
6765 (description "The Params::Validate module allows you to validate method or
6766 function call parameters to an arbitrary level of specificity.")
6767 (license artistic2.0)))
6768
6769 (define-public perl-params-validationcompiler
6770 (package
6771 (name "perl-params-validationcompiler")
6772 (version "0.27")
6773 (source
6774 (origin
6775 (method url-fetch)
6776 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6777 "Params-ValidationCompiler-" version ".tar.gz"))
6778 (sha256
6779 (base32
6780 "1cpr188c2xm0kkmdir6slcsgv7v6ibqff4lax8s0whwx6ml9kaah"))))
6781 (build-system perl-build-system)
6782 (native-inputs
6783 ;; For tests.
6784 `(("perl-test-without-module" ,perl-test-without-module)
6785 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6786 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6787 ("perl-type-tiny" ,perl-type-tiny)))
6788 (propagated-inputs
6789 `(("perl-eval-closure" ,perl-eval-closure)
6790 ("perl-exception-class" ,perl-exception-class)
6791 ("perl-specio" ,perl-specio)))
6792 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6793 (synopsis "Build an optimized subroutine parameter validator")
6794 (description "This module creates a customized, highly efficient
6795 parameter checking subroutine. It can handle named or positional
6796 parameters, and can return the parameters as key/value pairs or a list
6797 of values. In addition to type checks, it also supports parameter
6798 defaults, optional parameters, and extra \"slurpy\" parameters.")
6799 (license artistic2.0)))
6800
6801 (define-public perl-par-dist
6802 (package
6803 (name "perl-par-dist")
6804 (version "0.49")
6805 (source
6806 (origin
6807 (method url-fetch)
6808 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6809 "PAR-Dist-" version ".tar.gz"))
6810 (sha256
6811 (base32
6812 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6813 (build-system perl-build-system)
6814 (home-page "https://metacpan.org/release/PAR-Dist")
6815 (synopsis "Create and manipulate PAR distributions")
6816 (description "PAR::Dist is a toolkit to create and manipulate PAR
6817 distributions.")
6818 (license (package-license perl))))
6819
6820 (define-public perl-parent
6821 (package
6822 (name "perl-parent")
6823 (version "0.228")
6824 (source
6825 (origin
6826 (method url-fetch)
6827 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6828 "parent-" version ".tar.gz"))
6829 (sha256
6830 (base32
6831 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
6832 (build-system perl-build-system)
6833 (home-page "https://metacpan.org/release/parent")
6834 (synopsis "Establish an ISA relationship with base classes at compile time")
6835 (description "Allows you to both load one or more modules, while setting
6836 up inheritance from those modules at the same time.")
6837 (license (package-license perl))))
6838
6839 (define-public perl-path-class
6840 (package
6841 (name "perl-path-class")
6842 (version "0.37")
6843 (source
6844 (origin
6845 (method url-fetch)
6846 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6847 "Path-Class-" version ".tar.gz"))
6848 (sha256
6849 (base32
6850 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6851 (build-system perl-build-system)
6852 (native-inputs `(("perl-module-build" ,perl-module-build)))
6853 (home-page "https://metacpan.org/release/Path-Class")
6854 (synopsis "Path specification manipulation")
6855 (description "Path::Class is a module for manipulation of file and
6856 directory specifications in a cross-platform manner.")
6857 (license (package-license perl))))
6858
6859 (define-public perl-pathtools
6860 (package
6861 (name "perl-pathtools")
6862 (version "3.74")
6863 (source
6864 (origin
6865 (method url-fetch)
6866 (uri (string-append
6867 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6868 version ".tar.gz"))
6869 (sha256
6870 (base32 "04bfjdvn5p78hirljcinpxv8djcjn8nyg5gcmnmvz8sr9k2lqwi5"))))
6871 (build-system perl-build-system)
6872 (arguments
6873 `(#:phases
6874 (modify-phases %standard-phases
6875 (add-after 'unpack 'patch-pwd-path
6876 (lambda* (#:key inputs #:allow-other-keys)
6877 (substitute* "Cwd.pm"
6878 (("'/bin/pwd'")
6879 (string-append "'" (assoc-ref inputs "coreutils")
6880 "/bin/pwd'"))))))))
6881 (inputs
6882 `(("coreutils" ,coreutils)))
6883 (home-page "https://metacpan.org/release/PathTools")
6884 (synopsis "Tools for working with directory and file names")
6885 (description "This package provides functions to work with directory and
6886 file names.")
6887 (license perl-license)))
6888
6889 (define-public perl-path-tiny
6890 (package
6891 (name "perl-path-tiny")
6892 (version "0.104")
6893 (source (origin
6894 (method url-fetch)
6895 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6896 "Path-Tiny-" version ".tar.gz"))
6897 (sha256
6898 (base32
6899 "1vxaczi44d2acfyyzwa7p6c5gx3rgm6c36zbdl40982axg7iv7y6"))))
6900 (build-system perl-build-system)
6901 (arguments
6902 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6903 ;; (native-inputs
6904 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6905 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6906 (inputs
6907 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6908 (home-page "https://metacpan.org/release/Path-Tiny")
6909 (synopsis "File path utility")
6910 (description "This module provides a small, fast utility for working
6911 with file paths.")
6912 (license asl2.0)))
6913
6914 (define-public perl-perlio-utf8_strict
6915 (package
6916 (name "perl-perlio-utf8-strict")
6917 (version "0.006")
6918 (source (origin
6919 (method url-fetch)
6920 (uri (string-append
6921 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6922 version ".tar.gz"))
6923 (sha256
6924 (base32
6925 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
6926 (build-system perl-build-system)
6927 (native-inputs
6928 `(("perl-test-exception" ,perl-test-exception)))
6929 (home-page
6930 "https://metacpan.org/release/PerlIO-utf8_strict")
6931 (synopsis "Fast and correct UTF-8 IO")
6932 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6933 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6934 for correctness.")
6935 (license (package-license perl))))
6936
6937 (define-public perl-pegex
6938 (package
6939 (name "perl-pegex")
6940 (version "0.64")
6941 (source
6942 (origin
6943 (method url-fetch)
6944 (uri (string-append
6945 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6946 version ".tar.gz"))
6947 (sha256
6948 (base32
6949 "1kb7y2cc3nibbn8i8y3vrzz1f9h3892nbf8jj88c5fdgpmj05q17"))))
6950 (build-system perl-build-system)
6951 (native-inputs
6952 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6953 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6954 (home-page "https://metacpan.org/release/Pegex")
6955 (synopsis "Acmeist PEG Parser Framework")
6956 (description "Pegex is an Acmeist parser framework. It allows you to easily
6957 create parsers that will work equivalently in lots of programming languages.
6958 The inspiration for Pegex comes from the parsing engine upon which the
6959 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6960 to the other justmodern languages that have a normal regular expression engine
6961 available.")
6962 (license (package-license perl))))
6963
6964 (define-public perl-pod-coverage
6965 (package
6966 (name "perl-pod-coverage")
6967 (version "0.23")
6968 (source
6969 (origin
6970 (method url-fetch)
6971 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6972 "Pod-Coverage-" version ".tar.gz"))
6973 (sha256
6974 (base32
6975 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
6976 (build-system perl-build-system)
6977 (propagated-inputs
6978 `(("perl-devel-symdump" ,perl-devel-symdump)))
6979 (home-page "https://metacpan.org/release/Pod-Coverage")
6980 (synopsis "Check for comprehensive documentation of a module")
6981 (description "This module provides a mechanism for determining if the pod
6982 for a given module is comprehensive.")
6983 (license (package-license perl))))
6984
6985 (define-public perl-pod-simple
6986 (package
6987 (name "perl-pod-simple")
6988 (version "3.35")
6989 (source (origin
6990 (method url-fetch)
6991 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
6992 "Pod-Simple-" version ".tar.gz"))
6993 (sha256
6994 (base32
6995 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
6996 (build-system perl-build-system)
6997 (home-page "https://metacpan.org/release/Pod-Simple")
6998 (synopsis "Parsing library for text in Pod format")
6999 (description "@code{Pod::Simple} is a Perl library for parsing text in
7000 the @dfn{Pod} (plain old documentation) markup language that is typically
7001 used for writing documentation for Perl and for Perl modules.")
7002 (license (package-license perl))))
7003
7004 (define-public perl-posix-strftime-compiler
7005 (package
7006 (name "perl-posix-strftime-compiler")
7007 (version "0.42")
7008 (source
7009 (origin
7010 (method url-fetch)
7011 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
7012 "POSIX-strftime-Compiler-" version ".tar.gz"))
7013 (sha256
7014 (base32
7015 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
7016 (build-system perl-build-system)
7017 (native-inputs `(("perl-module-build" ,perl-module-build)))
7018 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
7019 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
7020 (synopsis "GNU C library compatible strftime for loggers and servers")
7021 (description "POSIX::strftime::Compiler provides GNU C library compatible
7022 strftime(3). But this module is not affected by the system locale. This
7023 feature is useful when you want to write loggers, servers, and portable
7024 applications.")
7025 (license (package-license perl))))
7026
7027 (define-public perl-probe-perl
7028 (package
7029 (name "perl-probe-perl")
7030 (version "0.03")
7031 (source (origin
7032 (method url-fetch)
7033 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7034 "Probe-Perl-" version ".tar.gz"))
7035 (sha256
7036 (base32
7037 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7038 (build-system perl-build-system)
7039 (synopsis "Information about the currently running perl")
7040 (description
7041 "Probe::Perl provides methods for obtaining information about the
7042 currently running perl interpreter. It originally began life as code in the
7043 Module::Build project, but has been externalized here for general use.")
7044 (home-page "https://metacpan.org/release/Probe-Perl")
7045 (license (package-license perl))))
7046
7047 (define-public perl-proc-invokeeditor
7048 (package
7049 (name "perl-proc-invokeeditor")
7050 (version "1.13")
7051 (source
7052 (origin
7053 (method url-fetch)
7054 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7055 version ".tar.gz"))
7056 (sha256
7057 (base32
7058 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7059 (build-system perl-build-system)
7060 (arguments
7061 `(#:phases
7062 (modify-phases %standard-phases
7063 (add-after 'unpack 'set-EDITOR
7064 (lambda _ (setenv "EDITOR" "echo") #t)))))
7065 (propagated-inputs
7066 `(("perl-carp-assert" ,perl-carp-assert)))
7067 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
7068 (synopsis "Interface to external editor from Perl")
7069 (description "This module provides the ability to supply some text to an
7070 external text editor, have it edited by the user, and retrieve the results.")
7071 (license (package-license perl))))
7072
7073 (define-public perl-readonly
7074 (package
7075 (name "perl-readonly")
7076 (version "2.00")
7077 (source
7078 (origin
7079 (method url-fetch)
7080 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7081 "Readonly-" version ".tar.gz"))
7082 (sha256
7083 (base32
7084 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7085 (build-system perl-build-system)
7086 (native-inputs `(("perl-module-build" ,perl-module-build)))
7087 (home-page "https://metacpan.org/release/Readonly")
7088 (synopsis "Create read-only scalars, arrays, hashes")
7089 (description "This module provides a facility for creating non-modifiable
7090 variables in Perl. This is useful for configuration files, headers, etc. It
7091 can also be useful as a development and debugging tool for catching updates to
7092 variables that should not be changed.")
7093 (license (package-license perl))))
7094
7095 (define-public perl-ref-util-xs
7096 (package
7097 (name "perl-ref-util-xs")
7098 (version "0.117")
7099 (source
7100 (origin
7101 (method url-fetch)
7102 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7103 "Ref-Util-XS-" version ".tar.gz"))
7104 (sha256
7105 (base32
7106 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7107 (build-system perl-build-system)
7108 (home-page "https://metacpan.org/release/Ref-Util-XS")
7109 (synopsis "XS implementation for Ref::Util")
7110 (description "@code{Ref::Util::XS} is the XS implementation of
7111 @code{Ref::Util}, which provides several functions to help identify references
7112 in a more convenient way than the usual approach of examining the return value
7113 of @code{ref}.")
7114 (license x11)))
7115
7116 (define-public perl-regexp-common
7117 (package
7118 (name "perl-regexp-common")
7119 (version "2017060201")
7120 (source (origin
7121 (method url-fetch)
7122 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7123 "Regexp-Common-" version ".tar.gz"))
7124 (sha256
7125 (base32
7126 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7127 (build-system perl-build-system)
7128 (synopsis "Provide commonly requested regular expressions")
7129 (description
7130 "This module exports a single hash (`%RE') that stores or generates
7131 commonly needed regular expressions. Patterns currently provided include:
7132 balanced parentheses and brackets, delimited text (with escapes), integers and
7133 floating-point numbers in any base (up to 36), comments in 44 languages,
7134 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7135 codes.")
7136 (home-page "https://metacpan.org/release/Regexp-Common")
7137 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7138 (license (list (package-license perl) x11 bsd-3))))
7139
7140 (define-public perl-regexp-util
7141 (package
7142 (name "perl-regexp-util")
7143 (version "0.003")
7144 (source
7145 (origin
7146 (method url-fetch)
7147 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7148 "Regexp-Util-" version ".tar.gz"))
7149 (sha256
7150 (base32
7151 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7152 (build-system perl-build-system)
7153 (home-page "https://metacpan.org/release/Regexp-Util")
7154 (synopsis "Selection of general-utility regexp subroutines")
7155 (description "This package provides a selection of regular expression
7156 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7157 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7158 and @code{deserialize_regexp}.")
7159 (license (package-license perl))))
7160
7161 (define-public perl-role-tiny
7162 (package
7163 (name "perl-role-tiny")
7164 (version "1.003004")
7165 (source
7166 (origin
7167 (method url-fetch)
7168 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7169 "Role-Tiny-" version ".tar.gz"))
7170 (sha256
7171 (base32
7172 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7173 (build-system perl-build-system)
7174 (native-inputs
7175 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7176 ("perl-test-fatal" ,perl-test-fatal)))
7177 (propagated-inputs
7178 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7179 (home-page "https://metacpan.org/release/Role-Tiny")
7180 (synopsis "Roles, as a slice of Moose")
7181 (description "Role::Tiny is a minimalist role composition tool.")
7182 (license (package-license perl))))
7183
7184 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7185 (define-public perl-role-tiny-2
7186 (package
7187 (inherit perl-role-tiny)
7188 (version "2.000006")
7189 (source
7190 (origin
7191 (method url-fetch)
7192 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7193 "Role-Tiny-" version ".tar.gz"))
7194 (sha256
7195 (base32
7196 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7197
7198 (define-public perl-safe-isa
7199 (package
7200 (name "perl-safe-isa")
7201 (version "1.000010")
7202 (source
7203 (origin
7204 (method url-fetch)
7205 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7206 "Safe-Isa-" version ".tar.gz"))
7207 (sha256
7208 (base32
7209 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7210 (build-system perl-build-system)
7211 (home-page "https://metacpan.org/release/Safe-Isa")
7212 (synopsis "Call isa, can, does, and DOES safely")
7213 (description "This module allows you to call isa, can, does, and DOES
7214 safely on things that may not be objects.")
7215 (license (package-license perl))))
7216
7217 (define-public perl-scope-guard
7218 (package
7219 (name "perl-scope-guard")
7220 (version "0.21")
7221 (source
7222 (origin
7223 (method url-fetch)
7224 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7225 "Scope-Guard-" version ".tar.gz"))
7226 (sha256
7227 (base32
7228 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7229 (build-system perl-build-system)
7230 (home-page "https://metacpan.org/release/Scope-Guard")
7231 (synopsis "Lexically-scoped resource management")
7232 (description "This module provides a convenient way to perform cleanup or
7233 other forms of resource management at the end of a scope. It is particularly
7234 useful when dealing with exceptions: the Scope::Guard constructor takes a
7235 reference to a subroutine that is guaranteed to be called even if the thread
7236 of execution is aborted prematurely. This effectively allows lexically-scoped
7237 \"promises\" to be made that are automatically honoured by perl's garbage
7238 collector.")
7239 (license (package-license perl))))
7240
7241 (define-public perl-set-infinite
7242 (package
7243 (name "perl-set-infinite")
7244 (version "0.65")
7245 (source
7246 (origin
7247 (method url-fetch)
7248 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7249 "Set-Infinite-" version ".tar.gz"))
7250 (sha256
7251 (base32
7252 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7253 (build-system perl-build-system)
7254 (home-page "https://metacpan.org/release/Set-Infinite")
7255 (synopsis "Infinite sets")
7256 (description "Set::Infinite is a set theory module for infinite sets.")
7257 (license (package-license perl))))
7258
7259 (define-public perl-set-intspan
7260 (package
7261 (name "perl-set-intspan")
7262 (version "1.19")
7263 (source (origin
7264 (method url-fetch)
7265 (uri (string-append
7266 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7267 version ".tar.gz"))
7268 (sha256
7269 (base32
7270 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7271 (build-system perl-build-system)
7272 (home-page "https://metacpan.org/release/Set-IntSpan")
7273 (synopsis "Manage sets of integers")
7274 (description "@code{Set::IntSpan} manages sets of integers. It is
7275 optimized for sets that have long runs of consecutive integers.")
7276 (license perl-license)))
7277
7278 (define-public perl-set-object
7279 (package
7280 (name "perl-set-object")
7281 (version "1.35")
7282 (source
7283 (origin
7284 (method url-fetch)
7285 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7286 "Set-Object-" version ".tar.gz"))
7287 (sha256
7288 (base32
7289 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
7290 (build-system perl-build-system)
7291 (propagated-inputs
7292 `(("perl-moose" ,perl-moose)
7293 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7294 (home-page "https://metacpan.org/release/Set-Object")
7295 (synopsis "Unordered collections of Perl Objects")
7296 (description "Set::Object provides efficient sets, unordered collections
7297 of Perl objects without duplicates for scalars and references.")
7298 (license artistic2.0)))
7299
7300 (define-public perl-set-scalar
7301 (package
7302 (name "perl-set-scalar")
7303 (version "1.29")
7304 (source
7305 (origin
7306 (method url-fetch)
7307 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7308 "Set-Scalar-" version ".tar.gz"))
7309 (sha256
7310 (base32
7311 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7312 (build-system perl-build-system)
7313 (home-page "https://metacpan.org/release/Set-Scalar")
7314 (synopsis "Set operations for Perl")
7315 (description "The first priority of Set::Scalar is to be a convenient
7316 interface to sets (as in: unordered collections of Perl scalars). While not
7317 designed to be slow or big, neither has it been designed to be fast or
7318 compact.")
7319 (license (package-license perl))))
7320
7321 (define-public perl-sort-key
7322 (package
7323 (name "perl-sort-key")
7324 (version "1.33")
7325 (source
7326 (origin
7327 (method url-fetch)
7328 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7329 version ".tar.gz"))
7330 (sha256
7331 (base32
7332 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7333 (build-system perl-build-system)
7334 (home-page "https://metacpan.org/release/Sort-Key")
7335 (synopsis "Sort arrays by one or multiple calculated keys")
7336 (description "This Perl module provides various functions to quickly sort
7337 arrays by one or multiple calculated keys.")
7338 (license (package-license perl))))
7339
7340 (define-public perl-sort-naturally
7341 (package
7342 (name "perl-sort-naturally")
7343 (version "1.03")
7344 (source
7345 (origin
7346 (method url-fetch)
7347 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7348 version ".tar.gz"))
7349 (sha256
7350 (base32
7351 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7352 (build-system perl-build-system)
7353 (home-page "https://metacpan.org/release/Sort-Naturally")
7354 (synopsis "Sort lexically, but sort numeral parts numerically")
7355 (description "This module exports two functions, @code{nsort} and
7356 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7357 Under natural sorting, numeric substrings are compared numerically, and other
7358 word-characters are compared lexically.")
7359 (license (package-license perl))))
7360
7361 (define-public perl-specio
7362 (package
7363 (name "perl-specio")
7364 (version "0.38")
7365 (source
7366 (origin
7367 (method url-fetch)
7368 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7369 "Specio-" version ".tar.gz"))
7370 (sha256
7371 (base32
7372 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7373 (build-system perl-build-system)
7374 (propagated-inputs
7375 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7376 ("perl-eval-closure" ,perl-eval-closure)
7377 ("perl-module-runtime" ,perl-module-runtime)
7378 ("perl-mro-compat" ,perl-mro-compat)
7379 ("perl-role-tiny" ,perl-role-tiny)
7380 ("perl-test-fatal" ,perl-test-fatal)
7381 ("perl-test-needs" ,perl-test-needs)))
7382 (home-page "https://metacpan.org/release/Specio")
7383 (synopsis "Classes for representing type constraints and coercion")
7384 (description "The Specio distribution provides classes for representing type
7385 constraints and coercion, along with syntax sugar for declaring them. Note that
7386 this is not a proper type system for Perl. Nothing in this distribution will
7387 magically make the Perl interpreter start checking a value's type on assignment
7388 to a variable. In fact, there's no built-in way to apply a type to a variable at
7389 all. Instead, you can explicitly check a value against a type, and optionally
7390 coerce values to that type.")
7391 (license artistic2.0)))
7392
7393 (define-public perl-spiffy
7394 (package
7395 (name "perl-spiffy")
7396 (version "0.46")
7397 (source
7398 (origin
7399 (method url-fetch)
7400 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7401 "Spiffy-" version ".tar.gz"))
7402 (sha256
7403 (base32
7404 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7405 (build-system perl-build-system)
7406 (home-page "https://metacpan.org/release/Spiffy")
7407 (synopsis "Spiffy Perl Interface Framework For You")
7408 (description "Spiffy is a framework and methodology for doing object
7409 oriented (OO) programming in Perl. Spiffy combines the best parts of
7410 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7411 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7412 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7413 other OO languages like Python, Ruby, Java and Perl 6.")
7414 (license (package-license perl))))
7415
7416 (define-public perl-statistics-basic
7417 (package
7418 (name "perl-statistics-basic")
7419 (version "1.6611")
7420 (source (origin
7421 (method url-fetch)
7422 (uri (string-append
7423 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7424 version ".tar.gz"))
7425 (sha256
7426 (base32
7427 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7428 (build-system perl-build-system)
7429 (inputs
7430 `(("perl-number-format" ,perl-number-format)))
7431 (home-page "https://metacpan.org/release/Statistics-Basic")
7432 (synopsis "Collection of very basic statistics modules")
7433 (description "This package provides basic statistics functions like
7434 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7435 (license lgpl2.0)))
7436
7437 (define-public perl-stream-buffered
7438 (package
7439 (name "perl-stream-buffered")
7440 (version "0.03")
7441 (source
7442 (origin
7443 (method url-fetch)
7444 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7445 "Stream-Buffered-" version ".tar.gz"))
7446 (sha256
7447 (base32
7448 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7449 (build-system perl-build-system)
7450 (home-page "https://metacpan.org/release/Stream-Buffered")
7451 (synopsis "Temporary buffer to save bytes")
7452 (description "Stream::Buffered is a buffer class to store arbitrary length
7453 of byte strings and then get a seekable filehandle once everything is
7454 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7455 on the length of the size.")
7456 (license (package-license perl))))
7457
7458 (define-public perl-strictures
7459 (package
7460 (name "perl-strictures")
7461 (version "1.005005")
7462 (source
7463 (origin
7464 (method url-fetch)
7465 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7466 "strictures-" version ".tar.gz"))
7467 (sha256
7468 (base32
7469 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7470 (build-system perl-build-system)
7471 (home-page "https://metacpan.org/release/strictures")
7472 (synopsis "Turn on strict and make all warnings fatal")
7473 (description "Strictures turns on strict and make all warnings fatal when
7474 run from within a source-controlled directory.")
7475 (license (package-license perl))))
7476
7477 ;; Some packages don't yet work with this newer version of ‘strictures’.
7478 (define-public perl-strictures-2
7479 (package
7480 (inherit perl-strictures)
7481 (version "2.000004")
7482 (source
7483 (origin
7484 (method url-fetch)
7485 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7486 "strictures-" version ".tar.gz"))
7487 (sha256
7488 (base32
7489 "0lzp0q6kwk6vgf7zdlvy9zz28fj6n1b776irm556c7gylcq29113"))))))
7490
7491 (define-public perl-string-camelcase
7492 (package
7493 (name "perl-string-camelcase")
7494 (version "0.02")
7495 (source
7496 (origin
7497 (method url-fetch)
7498 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7499 "String-CamelCase-" version ".tar.gz"))
7500 (sha256
7501 (base32
7502 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
7503 (build-system perl-build-system)
7504 (arguments
7505 `(#:phases
7506 (modify-phases %standard-phases
7507 (add-before 'configure 'set-perl-search-path
7508 (lambda _
7509 ;; Work around "dotless @INC" build failure.
7510 (setenv "PERL5LIB"
7511 (string-append (getcwd) ":"
7512 (getenv "PERL5LIB")))
7513 #t)))))
7514 (home-page "https://metacpan.org/release/String-CamelCase")
7515 (synopsis "Camelcase and de-camelcase")
7516 (description "This module may be used to convert from under_score text to
7517 CamelCase and back again.")
7518 (license (package-license perl))))
7519
7520 (define-public perl-string-escape
7521 (package
7522 (name "perl-string-escape")
7523 (version "2010.002")
7524 (source
7525 (origin
7526 (method url-fetch)
7527 (uri (string-append
7528 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7529 version ".tar.gz"))
7530 (sha256
7531 (base32
7532 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7533 (build-system perl-build-system)
7534 (home-page "https://metacpan.org/release/String-Escape")
7535 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7536 (description "This module provides a flexible calling interface to some
7537 frequently-performed string conversion functions, including applying and
7538 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7539 removing double-quotes, and truncating to fit within a desired length.")
7540 (license (package-license perl))))
7541
7542 (define-public perl-string-rewriteprefix
7543 (package
7544 (name "perl-string-rewriteprefix")
7545 (version "0.007")
7546 (source
7547 (origin
7548 (method url-fetch)
7549 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7550 "String-RewritePrefix-" version ".tar.gz"))
7551 (sha256
7552 (base32
7553 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7554 (build-system perl-build-system)
7555 (propagated-inputs
7556 `(("perl-sub-exporter" ,perl-sub-exporter)))
7557 (home-page "https://metacpan.org/release/String-RewritePrefix")
7558 (synopsis "Rewrite strings based on a set of known prefixes")
7559 (description "This module allows you to rewrite strings based on a set of
7560 known prefixes.")
7561 (license (package-license perl))))
7562
7563 (define-public perl-string-print
7564 (package
7565 (name "perl-string-print")
7566 (version "0.15")
7567 (source (origin
7568 (method url-fetch)
7569 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7570 "String-Print-" version ".tar.gz"))
7571 (sha256
7572 (base32
7573 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7574 (build-system perl-build-system)
7575 (propagated-inputs
7576 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7577 (home-page "https://metacpan.org/release/String-Print")
7578 (synopsis "String printing alternatives to printf")
7579 (description
7580 "This module inserts values into (translated) strings. It provides
7581 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7582 a functional interface.")
7583 (license (package-license perl))))
7584
7585 (define-public perl-sub-exporter
7586 (package
7587 (name "perl-sub-exporter")
7588 (version "0.987")
7589 (source
7590 (origin
7591 (method url-fetch)
7592 (uri (string-append
7593 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7594 version ".tar.gz"))
7595 (sha256
7596 (base32
7597 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7598 (build-system perl-build-system)
7599 (propagated-inputs
7600 `(("perl-data-optlist" ,perl-data-optlist)
7601 ("perl-params-util" ,perl-params-util)))
7602 (home-page "https://metacpan.org/release/Sub-Exporter")
7603 (synopsis "Sophisticated exporter for custom-built routines")
7604 (description
7605 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7606 custom-built routines.")
7607 (license (package-license perl))))
7608
7609 (define-public perl-sub-exporter-progressive
7610 (package
7611 (name "perl-sub-exporter-progressive")
7612 (version "0.001013")
7613 (source
7614 (origin
7615 (method url-fetch)
7616 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7617 "Sub-Exporter-Progressive-" version ".tar.gz"))
7618 (sha256
7619 (base32
7620 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7621 (build-system perl-build-system)
7622 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7623 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
7624 (synopsis "Only use Sub::Exporter if you need it")
7625 (description "Sub::Exporter is an incredibly powerful module, but with
7626 that power comes great responsibility, as well as some runtime penalties.
7627 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7628 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7629 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7630 renaming exports, if they try to use them.")
7631 (license (package-license perl))))
7632
7633 (define-public perl-sub-identify
7634 (package
7635 (name "perl-sub-identify")
7636 (version "0.14")
7637 (source
7638 (origin
7639 (method url-fetch)
7640 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7641 "Sub-Identify-" version ".tar.gz"))
7642 (sha256
7643 (base32
7644 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
7645 (build-system perl-build-system)
7646 (home-page "https://metacpan.org/release/Sub-Identify")
7647 (synopsis "Retrieve names of code references")
7648 (description "Sub::Identify allows you to retrieve the real name of code
7649 references.")
7650 (license (package-license perl))))
7651
7652 (define-public perl-sub-info
7653 (package
7654 (name "perl-sub-info")
7655 (version "0.002")
7656 (source
7657 (origin
7658 (method url-fetch)
7659 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7660 version ".tar.gz"))
7661 (sha256
7662 (base32
7663 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7664 (build-system perl-build-system)
7665 (propagated-inputs
7666 `(("perl-importer" ,perl-importer)))
7667 (home-page "https://metacpan.org/release/Sub-Info")
7668 (synopsis "Tool to inspect subroutines")
7669 (description "This package provides tools for inspecting subroutines
7670 in Perl.")
7671 (license (package-license perl))))
7672
7673 (define-public perl-sub-install
7674 (package
7675 (name "perl-sub-install")
7676 (version "0.928")
7677 (source
7678 (origin
7679 (method url-fetch)
7680 (uri (string-append
7681 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7682 version ".tar.gz"))
7683 (sha256
7684 (base32
7685 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7686 (build-system perl-build-system)
7687 (home-page "https://metacpan.org/release/Sub-Install")
7688 (synopsis "Install subroutines into packages easily")
7689 (description
7690 "Sub::Install makes it easy to install subroutines into packages without
7691 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7692 can see them.")
7693 (license (package-license perl))))
7694
7695 (define-public perl-sub-name
7696 (package
7697 (name "perl-sub-name")
7698 (version "0.21")
7699 (source
7700 (origin
7701 (method url-fetch)
7702 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7703 "Sub-Name-" version ".tar.gz"))
7704 (sha256
7705 (base32
7706 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7707 (build-system perl-build-system)
7708 (native-inputs
7709 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7710 (home-page "https://metacpan.org/release/Sub-Name")
7711 (synopsis "(Re)name a sub")
7712 (description "Assigns a new name to referenced sub. If package
7713 specification is omitted in the name, then the current package is used. The
7714 return value is the sub.")
7715 (license (package-license perl))))
7716
7717 (define-public perl-sub-quote
7718 (package
7719 (name "perl-sub-quote")
7720 (version "2.005001")
7721 (source
7722 (origin
7723 (method url-fetch)
7724 (uri (string-append
7725 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7726 version ".tar.gz"))
7727 (sha256
7728 (base32
7729 "01xsvfdpxzimsbrp9mqipsr93y83nhj21q05g8v1bw6yfl3lzayn"))))
7730 (build-system perl-build-system)
7731 (native-inputs
7732 `(("perl-test-fatal" ,perl-test-fatal)))
7733 (propagated-inputs
7734 `(("perl-sub-name" ,perl-sub-name)))
7735 (home-page "https://metacpan.org/release/Sub-Quote")
7736 (synopsis "Efficient generation of subroutines via string eval")
7737 (description "Sub::Quote provides an efficient generation of subroutines
7738 via string eval.")
7739 (license (package-license perl))))
7740
7741 (define-public perl-sub-uplevel
7742 (package
7743 (name "perl-sub-uplevel")
7744 (version "0.24")
7745 (source
7746 (origin
7747 (method url-fetch)
7748 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7749 "Sub-Uplevel-" version ".tar.gz"))
7750 (sha256
7751 (base32
7752 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7753 (build-system perl-build-system)
7754 (home-page "https://metacpan.org/release/Sub-Uplevel")
7755 (synopsis "Apparently run a function in a higher stack frame")
7756 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7757 The idea is just to fool caller(). All the really naughty bits of Tcl's
7758 uplevel() are avoided.")
7759 (license (package-license perl))))
7760
7761 (define-public perl-super
7762 (package
7763 (name "perl-super")
7764 (version "1.20141117")
7765 (source
7766 (origin
7767 (method url-fetch)
7768 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7769 "SUPER-" version ".tar.gz"))
7770 (sha256
7771 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7772 (build-system perl-build-system)
7773 (native-inputs
7774 `(("perl-module-build" ,perl-module-build)))
7775 (propagated-inputs
7776 `(("perl-sub-identify" ,perl-sub-identify)))
7777 (home-page "https://metacpan.org/release/SUPER")
7778 (synopsis "Control superclass method dispatching")
7779 (description
7780 "When subclassing a class, you may occasionally want to dispatch control to
7781 the superclass---at least conditionally and temporarily. This module provides
7782 nicer equivalents to the native Perl syntax for calling superclasses, along with
7783 a universal @code{super} method to determine a class' own superclass, and better
7784 support for run-time mix-ins and roles.")
7785 (license perl-license)))
7786
7787 (define-public perl-svg
7788 (package
7789 (name "perl-svg")
7790 (version "2.63")
7791 (source
7792 (origin
7793 (method url-fetch)
7794 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7795 version ".tar.gz"))
7796 (sha256
7797 (base32
7798 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
7799 (build-system perl-build-system)
7800 (home-page "https://metacpan.org/release/SVG")
7801 (synopsis "Perl extension for generating SVG documents")
7802 (description "SVG is a Perl module which generates a nested data structure
7803 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7804 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7805 access the DOM object, create and access Javascript, and generate SMIL
7806 animation content.")
7807 (license (package-license perl))))
7808
7809 (define-public perl-switch
7810 (package
7811 (name "perl-switch")
7812 (version "2.17")
7813 (source
7814 (origin
7815 (method url-fetch)
7816 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7817 version ".tar.gz"))
7818 (sha256
7819 (base32
7820 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7821 (build-system perl-build-system)
7822 (home-page "https://metacpan.org/release/Switch")
7823 (synopsis "Switch statement for Perl")
7824 (description "Switch is a Perl module which implements a generalized case
7825 mechanism. The module augments the standard Perl syntax with two new
7826 statements: @code{switch} and @code{case}.")
7827 (license (package-license perl))))
7828
7829 (define-public perl-sys-cpu
7830 (package
7831 (name "perl-sys-cpu")
7832 (version "0.61")
7833 (source (origin
7834 (method url-fetch)
7835 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7836 "Sys-CPU-" version ".tar.gz"))
7837 (sha256
7838 (base32
7839 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7840 (modules '((guix build utils)))
7841 (snippet
7842 '(begin
7843 ;; The contents of /proc/cpuinfo can differ and confuse the
7844 ;; cpu_clock and cpu_type methods, so we replace the test
7845 ;; with one that marks cpu_clock and cpu_type as TODO.
7846 ;; Borrowed from Debian.
7847 (call-with-output-file "t/Sys-CPU.t"
7848 (lambda (port)
7849 (format port "#!/usr/bin/perl
7850
7851 use Test::More tests => 4;
7852
7853 BEGIN { use_ok('Sys::CPU'); }
7854
7855 $number = &Sys::CPU::cpu_count();
7856 ok( defined($number), \"CPU Count: $number\" );
7857
7858 TODO: {
7859 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7860 $speed = &Sys::CPU::cpu_clock();
7861 ok( defined($speed), \"CPU Speed: $speed\" );
7862 }
7863
7864 TODO: {
7865 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7866 $type = &Sys::CPU::cpu_type();
7867 ok( defined($type), \"CPU Type: $type\" );
7868 }~%")))
7869 #t))))
7870 (build-system perl-build-system)
7871 (synopsis "Perl extension for getting CPU information")
7872 (description
7873 "Sys::CPU is a module for counting the number of CPUs on a system, and
7874 determining their type and clock speed.")
7875 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
7876 (license (package-license perl))))
7877
7878 (define-public perl-sys-hostname-long
7879 (package
7880 (name "perl-sys-hostname-long")
7881 (version "1.5")
7882 (source
7883 (origin
7884 (method url-fetch)
7885 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7886 "Sys-Hostname-Long-" version ".tar.gz"))
7887 (sha256
7888 (base32
7889 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7890 (build-system perl-build-system)
7891 (arguments `(#:tests? #f)) ;no `hostname' during build
7892 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
7893 (synopsis "Get full hostname in Perl")
7894 (description "Sys::Hostname::Long tries very hard to get the full hostname
7895 of a system.")
7896 (license (package-license perl))))
7897
7898 (define-public perl-task-weaken
7899 (package
7900 (name "perl-task-weaken")
7901 (version "1.06")
7902 (source
7903 (origin
7904 (method url-fetch)
7905 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7906 "Task-Weaken-" version ".tar.gz"))
7907 (sha256
7908 (base32
7909 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7910 (build-system perl-build-system)
7911 (arguments
7912 '(#:phases (modify-phases %standard-phases
7913 (add-before 'configure 'set-search-path
7914 (lambda _
7915 ;; Work around "dotless @INC" build failure.
7916 (setenv "PERL5LIB"
7917 (string-append (getcwd) ":"
7918 (getenv "PERL5LIB")))
7919 #t)))))
7920 (home-page "https://metacpan.org/release/Task-Weaken")
7921 (synopsis "Ensure that a platform has weaken support")
7922 (description "One recurring problem in modules that use Scalar::Util's
7923 weaken function is that it is not present in the pure-perl variant. If
7924 Scalar::Util is not available at all, it will issue a normal dependency on the
7925 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7926 module does not have weaken, the install will bail out altogether with a long
7927 error encouraging the user to seek support.")
7928 (license (package-license perl))))
7929
7930 (define-public perl-template-toolkit
7931 (package
7932 (name "perl-template-toolkit")
7933 (version "2.26")
7934 (source
7935 (origin
7936 (method url-fetch)
7937 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7938 "Template-Toolkit-" version ".tar.gz"))
7939 (sha256
7940 (base32
7941 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
7942 (build-system perl-build-system)
7943 (propagated-inputs
7944 `(("perl-appconfig" ,perl-appconfig)
7945 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7946 (home-page "https://metacpan.org/release/Template-Toolkit")
7947 (synopsis "Template processing system for Perl")
7948 (description "The Template Toolkit is a collection of modules which
7949 implement an extensible template processing system. It was originally
7950 designed and remains primarily useful for generating dynamic web content, but
7951 it can be used equally well for processing any other kind of text based
7952 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7953 (license (package-license perl))))
7954
7955 (define-public perl-template-timer
7956 (package
7957 (name "perl-template-timer")
7958 (version "1.00")
7959 (source
7960 (origin
7961 (method url-fetch)
7962 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7963 "Template-Timer-" version ".tar.gz"))
7964 (sha256
7965 (base32
7966 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7967 (build-system perl-build-system)
7968 (propagated-inputs
7969 `(("perl-template-toolkit" ,perl-template-toolkit)))
7970 (home-page "https://metacpan.org/release/Template-Timer")
7971 (synopsis "Profiling for Template Toolkit")
7972 (description "Template::Timer provides inline profiling of the template
7973 processing in Perl code.")
7974 (license (list gpl3 artistic2.0))))
7975
7976 (define-public perl-term-encoding
7977 (package
7978 (name "perl-term-encoding")
7979 (version "0.02")
7980 (source
7981 (origin
7982 (method url-fetch)
7983 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
7984 "Term-Encoding-" version ".tar.gz"))
7985 (sha256
7986 (base32
7987 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
7988 (build-system perl-build-system)
7989 (native-inputs
7990 `(("perl-module-install" ,perl-module-install)))
7991 (home-page "https://metacpan.org/release/Term-Encoding")
7992 (synopsis "Detect encoding of the current terminal")
7993 (description "Term::Encoding is a simple module to detect the encoding of
7994 the current terminal expects in various ways.")
7995 (license (package-license perl))))
7996
7997 (define-public perl-term-progressbar
7998 (package
7999 (name "perl-term-progressbar")
8000 (version "2.17")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
8005 "Term-ProgressBar-" version ".tar.gz"))
8006 (sha256
8007 (base32
8008 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
8009 (build-system perl-build-system)
8010 (native-inputs
8011 `(("perl-capture-tiny" ,perl-capture-tiny)
8012 ("perl-test-exception" ,perl-test-exception)))
8013 (propagated-inputs
8014 `(("perl-class-methodmaker" ,perl-class-methodmaker)
8015 ("perl-term-readkey" ,perl-term-readkey)))
8016 (home-page "https://metacpan.org/release/Term-ProgressBar")
8017 (synopsis "Progress meter on a standard terminal")
8018 (description "Term::ProgressBar provides a simple progress bar on the
8019 terminal, to let the user know that something is happening, roughly how much
8020 stuff has been done, and maybe an estimate at how long remains.")
8021 (license (package-license perl))))
8022
8023 (define-public perl-term-progressbar-quiet
8024 (package
8025 (name "perl-term-progressbar-quiet")
8026 (version "0.31")
8027 (source
8028 (origin
8029 (method url-fetch)
8030 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8031 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8032 (sha256
8033 (base32
8034 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8035 (build-system perl-build-system)
8036 (propagated-inputs
8037 `(("perl-io-interactive" ,perl-io-interactive)
8038 ("perl-term-progressbar" ,perl-term-progressbar)
8039 ("perl-test-mockobject" ,perl-test-mockobject)))
8040 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
8041 (synopsis "Progress meter if run interactively")
8042 (description "Term::ProgressBar is a wonderful module for showing progress
8043 bars on the terminal. This module acts very much like that module when it is
8044 run interactively. However, when it is not run interactively (for example, as
8045 a cron job) then it does not show the progress bar.")
8046 (license (package-license perl))))
8047
8048 (define-public perl-term-progressbar-simple
8049 (package
8050 (name "perl-term-progressbar-simple")
8051 (version "0.03")
8052 (source
8053 (origin
8054 (method url-fetch)
8055 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8056 "Term-ProgressBar-Simple-" version ".tar.gz"))
8057 (sha256
8058 (base32
8059 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8060 (build-system perl-build-system)
8061 (propagated-inputs
8062 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8063 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
8064 (synopsis "Simple progress bars")
8065 (description "Term::ProgressBar::Simple tells you how much work has been
8066 done, how much is left to do, and estimate how long it will take.")
8067 (license (package-license perl))))
8068
8069 (define-public perl-term-readkey
8070 (package
8071 (name "perl-term-readkey")
8072 (version "2.37")
8073 (source
8074 (origin
8075 (method url-fetch)
8076 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8077 "TermReadKey-" version ".tar.gz"))
8078 (sha256
8079 (base32
8080 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8081 (build-system perl-build-system)
8082 (home-page "https://metacpan.org/release/TermReadKey")
8083 (synopsis "Simple terminal control")
8084 (description "This module, ReadKey, provides ioctl control for terminals
8085 so the input modes can be changed (thus allowing reads of a single character
8086 at a time), and also provides non-blocking reads of stdin, as well as several
8087 other terminal related features, including retrieval/modification of the
8088 screen size, and retrieval/modification of the control characters.")
8089 (license (package-license perl))))
8090
8091 (define-public perl-term-size-any
8092 (package
8093 (name "perl-term-size-any")
8094 (version "0.002")
8095 (source
8096 (origin
8097 (method url-fetch)
8098 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8099 "Term-Size-Any-" version ".tar.gz"))
8100 (sha256
8101 (base32
8102 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8103 (build-system perl-build-system)
8104 (native-inputs
8105 `(("perl-devel-hide" ,perl-devel-hide)))
8106 (propagated-inputs
8107 `(("perl-term-size-perl" ,perl-term-size-perl)))
8108 (home-page "https://metacpan.org/release/Term-Size-Any")
8109 (synopsis "Retrieve terminal size")
8110 (description "This is a unified interface to retrieve terminal size. It
8111 loads one module of a list of known alternatives, each implementing some way
8112 to get the desired terminal information. This loaded module will actually do
8113 the job on behalf of @code{Term::Size::Any}.")
8114 (license (package-license perl))))
8115
8116 (define-public perl-term-size-perl
8117 (package
8118 (name "perl-term-size-perl")
8119 (version "0.029")
8120 (source
8121 (origin
8122 (method url-fetch)
8123 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8124 "Term-Size-Perl-" version ".tar.gz"))
8125 (sha256
8126 (base32
8127 "1rvm91bhdlxfwx5zka023p7szf2s7gm16wl27qiivvj66svsl6lc"))))
8128 (build-system perl-build-system)
8129 (home-page "https://metacpan.org/release/Term-Size-Perl")
8130 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8131 (description "This is yet another implementation of @code{Term::Size}.
8132 Now in pure Perl, with the exception of a C probe run at build time.")
8133 (license (package-license perl))))
8134
8135 (define-public perl-term-table
8136 (package
8137 (name "perl-term-table")
8138 (version "0.008")
8139 (source
8140 (origin
8141 (method url-fetch)
8142 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8143 version ".tar.gz"))
8144 (sha256
8145 (base32
8146 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8147 (build-system perl-build-system)
8148 (propagated-inputs
8149 `(("perl-importer" ,perl-importer)))
8150 (home-page "https://metacpan.org/release/Term-Table")
8151 (synopsis "Format a header and rows into a table")
8152 (description "This module is able to generically format rows of data
8153 into tables.")
8154 (license (package-license perl))))
8155
8156 (define-public perl-text-aligner
8157 (package
8158 (name "perl-text-aligner")
8159 (version "0.12")
8160 (source
8161 (origin
8162 (method url-fetch)
8163 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8164 "Text-Aligner-" version ".tar.gz"))
8165 (sha256
8166 (base32
8167 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
8168 (build-system perl-build-system)
8169 (native-inputs `(("perl-module-build" ,perl-module-build)))
8170 (home-page "https://metacpan.org/release/Text-Aligner")
8171 (synopsis "Align text")
8172 (description "Text::Aligner exports a single function, align(), which is
8173 used to justify strings to various alignment styles.")
8174 (license x11)))
8175
8176 (define-public perl-text-balanced
8177 (package
8178 (name "perl-text-balanced")
8179 (version "2.03")
8180 (source
8181 (origin
8182 (method url-fetch)
8183 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8184 "Text-Balanced-" version ".tar.gz"))
8185 (sha256
8186 (base32
8187 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8188 (build-system perl-build-system)
8189 (home-page "https://metacpan.org/release/Text-Balanced")
8190 (synopsis "Extract delimited text sequences from strings")
8191 (description "The Text::Balanced module can be used to extract delimited
8192 text sequences from strings.")
8193 (license (package-license perl))))
8194
8195 (define-public perl-text-csv
8196 (package
8197 (name "perl-text-csv")
8198 (version "1.33")
8199 (source
8200 (origin
8201 (method url-fetch)
8202 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8203 "Text-CSV-" version ".tar.gz"))
8204 (sha256
8205 (base32
8206 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8207 (build-system perl-build-system)
8208 (home-page "https://metacpan.org/release/Text-CSV")
8209 (synopsis "Manipulate comma-separated values")
8210 (description "Text::CSV provides facilities for the composition and
8211 decomposition of comma-separated values. An instance of the Text::CSV class
8212 can combine fields into a CSV string and parse a CSV string into fields.")
8213 (license (package-license perl))))
8214
8215 (define-public perl-text-csv-xs
8216 (package
8217 (name "perl-text-csv-xs")
8218 (version "1.25")
8219 (source
8220 (origin
8221 (method url-fetch)
8222 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8223 "Text-CSV_XS-" version ".tgz"))
8224 (sha256
8225 (base32
8226 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8227 (build-system perl-build-system)
8228 (home-page "https://metacpan.org/release/Text-CSV_XS")
8229 (synopsis "Rountines for manipulating CSV files")
8230 (description "@code{Text::CSV_XS} provides facilities for the composition
8231 and decomposition of comma-separated values. An instance of the
8232 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8233 CSV string into fields. The module accepts either strings or files as input
8234 and support the use of user-specified characters for delimiters, separators,
8235 and escapes.")
8236 (license (package-license perl))))
8237
8238 (define-public perl-text-diff
8239 (package
8240 (name "perl-text-diff")
8241 (version "1.45")
8242 (source
8243 (origin
8244 (method url-fetch)
8245 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8246 "Text-Diff-" version ".tar.gz"))
8247 (sha256
8248 (base32
8249 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8250 (build-system perl-build-system)
8251 (propagated-inputs
8252 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8253 (home-page "https://metacpan.org/release/Text-Diff")
8254 (synopsis "Perform diffs on files and record sets")
8255 (description "Text::Diff provides a basic set of services akin to the GNU
8256 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8257 is better integrated with Perl and available on all platforms. It is often
8258 faster than shelling out to a system's diff executable for small files, and
8259 generally slower on larger files.")
8260 (license (package-license perl))))
8261
8262 (define-public perl-text-format
8263 (package
8264 (name "perl-text-format")
8265 (version "0.61")
8266 (source (origin
8267 (method url-fetch)
8268 (uri (string-append
8269 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8270 version ".tar.gz"))
8271 (sha256
8272 (base32
8273 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8274 (build-system perl-build-system)
8275 (native-inputs
8276 `(("perl-module-build" ,perl-module-build)
8277 ("perl-test-pod" ,perl-test-pod)
8278 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8279 (home-page "https://metacpan.org/release/Text-Format")
8280 (synopsis "Various subroutines to format text")
8281 (description "This package provides functions to format text in various
8282 ways like centering, paragraphing, and converting tabs to spaces and spaces
8283 to tabs.")
8284 (license perl-license)))
8285
8286 (define-public perl-text-glob
8287 (package
8288 (name "perl-text-glob")
8289 (version "0.11")
8290 (source
8291 (origin
8292 (method url-fetch)
8293 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8294 "Text-Glob-" version ".tar.gz"))
8295 (sha256
8296 (base32
8297 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8298 (build-system perl-build-system)
8299 (native-inputs `(("perl-module-build" ,perl-module-build)))
8300 (home-page "https://metacpan.org/release/Text-Glob")
8301 (synopsis "Match globbing patterns against text")
8302 (description "Text::Glob implements glob(3) style matching that can be
8303 used to match against text, rather than fetching names from a file system. If
8304 you want to do full file globbing use the File::Glob module instead.")
8305 (license (package-license perl))))
8306
8307 (define-public perl-text-neattemplate
8308 (package
8309 (name "perl-text-neattemplate")
8310 (version "0.1101")
8311 (source
8312 (origin
8313 (method url-fetch)
8314 (uri (string-append
8315 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8316 "Text-NeatTemplate-" version ".tar.gz"))
8317 (sha256
8318 (base32
8319 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8320 (build-system perl-build-system)
8321 (native-inputs
8322 `(("perl-module-build" ,perl-module-build)))
8323 (home-page
8324 "https://metacpan.org/release/Text-NeatTemplate")
8325 (synopsis "Fast, middleweight template engine")
8326 (description
8327 "Text::NeatTemplate provides a simple, middleweight but fast
8328 template engine, for when you need speed rather than complex features,
8329 yet need more features than simple variable substitution.")
8330 (license (package-license perl))))
8331
8332 (define-public perl-text-roman
8333 (package
8334 (name "perl-text-roman")
8335 (version "3.5")
8336 (source
8337 (origin
8338 (method url-fetch)
8339 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8340 version ".tar.gz"))
8341 (sha256
8342 (base32
8343 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8344 (build-system perl-build-system)
8345 (home-page "https://metacpan.org/release/Text-Roman")
8346 (synopsis "Convert between Roman and Arabic algorisms")
8347 (description "This package provides functions to convert between Roman and
8348 Arabic algorisms. It supports both conventional Roman algorisms (which range
8349 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8350 algorism to indicate multiplication by 1000.")
8351 (license (package-license perl))))
8352
8353 (define-public perl-text-simpletable
8354 (package
8355 (name "perl-text-simpletable")
8356 (version "2.04")
8357 (source
8358 (origin
8359 (method url-fetch)
8360 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8361 "Text-SimpleTable-" version ".tar.gz"))
8362 (sha256
8363 (base32
8364 "14sjmdcy7s73sk740g3ccmzmwhwd52x5ay3bjmibjlql1cag70ld"))))
8365 (build-system perl-build-system)
8366 (home-page "https://metacpan.org/release/Text-SimpleTable")
8367 (synopsis "Simple ASCII tables")
8368 (description "Text::SimpleTable draws simple ASCII tables.")
8369 (license artistic2.0)))
8370
8371 (define-public perl-text-table
8372 (package
8373 (name "perl-text-table")
8374 (version "1.133")
8375 (source
8376 (origin
8377 (method url-fetch)
8378 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8379 "Text-Table-" version ".tar.gz"))
8380 (sha256
8381 (base32
8382 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8383 (build-system perl-build-system)
8384 (native-inputs
8385 `(("perl-module-build" ,perl-module-build)))
8386 (propagated-inputs
8387 `(("perl-text-aligner" ,perl-text-aligner)))
8388 (home-page "https://metacpan.org/release/Text-Table")
8389 (synopsis "Organize Data in Tables")
8390 (description "Text::Table renders plaintext tables.")
8391 (license x11)))
8392
8393 (define-public perl-text-template
8394 (package
8395 (name "perl-text-template")
8396 (version "1.47")
8397 (source
8398 (origin
8399 (method url-fetch)
8400 (uri (string-append
8401 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8402 version
8403 ".tar.gz"))
8404 (sha256
8405 (base32
8406 "1z781cgz7wbn80lf3kqr2ad0pg6g1wlnim0822h8liw28k3l5msh"))))
8407 (build-system perl-build-system)
8408 (home-page
8409 "https://metacpan.org/release/Text-Template")
8410 (synopsis
8411 "Expand template text with embedded Perl")
8412 (description
8413 "This is a library for generating letters, building HTML pages, or
8414 filling in templates generally. A template is a piece of text that has little
8415 Perl programs embedded in it here and there. When you fill in a template, you
8416 evaluate the little programs and replace them with their values.")
8417 (license perl-license)))
8418
8419 (define-public perl-text-unidecode
8420 (package
8421 (name "perl-text-unidecode")
8422 (version "1.23")
8423 (source
8424 (origin
8425 (method url-fetch)
8426 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8427 "Text-Unidecode-" version ".tar.gz"))
8428 (sha256
8429 (base32
8430 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8431 (build-system perl-build-system)
8432 (home-page "https://metacpan.org/release/Text-Unidecode")
8433 (synopsis "Provide plain ASCII transliterations of Unicode text")
8434 (description "Text::Unidecode provides a function, unidecode(...) that
8435 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8436 universally displayable characters between 0x00 and 0x7F). The representation
8437 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8438 letters, the pronunciation expressed by the text in some other writing
8439 system.")
8440 (license (package-license perl))))
8441
8442 (define-public perl-threads
8443 (package
8444 (name "perl-threads")
8445 (version "2.21")
8446 (source
8447 (origin
8448 (method url-fetch)
8449 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8450 version ".tar.gz"))
8451 (sha256
8452 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8453 (build-system perl-build-system)
8454 (home-page "https://metacpan.org/release/threads")
8455 (synopsis "Perl interpreter-based threads")
8456 (description "This module exposes interpreter threads to the Perl level.")
8457 (license perl-license)))
8458
8459 (define-public perl-throwable
8460 (package
8461 (name "perl-throwable")
8462 (version "0.200013")
8463 (source
8464 (origin
8465 (method url-fetch)
8466 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8467 "Throwable-" version ".tar.gz"))
8468 (sha256
8469 (base32
8470 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8471 (build-system perl-build-system)
8472 (native-inputs
8473 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8474 (propagated-inputs
8475 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8476 ("perl-module-runtime" ,perl-module-runtime)
8477 ("perl-moo" ,perl-moo)))
8478 (home-page "https://metacpan.org/release/Throwable")
8479 (synopsis "Role for classes that can be thrown")
8480 (description "Throwable is a role for classes that are meant to be thrown
8481 as exceptions to standard program flow.")
8482 (license (package-license perl))))
8483
8484 (define-public perltidy
8485 (package
8486 (name "perltidy")
8487 (version "20180220")
8488 (source (origin
8489 (method url-fetch)
8490 (uri (string-append "mirror://sourceforge/perltidy/" version
8491 "/Perl-Tidy-" version ".tar.gz"))
8492 (sha256
8493 (base32
8494 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
8495 (build-system perl-build-system)
8496 (home-page "http://perltidy.sourceforge.net/")
8497 (synopsis "Perl script tidier")
8498 (description "This package contains a Perl script which indents and
8499 reformats Perl scripts to make them easier to read. The formatting can be
8500 controlled with command line parameters. The default parameter settings
8501 approximately follow the suggestions in the Perl Style Guide.")
8502 (license gpl2+)))
8503
8504 (define-public perl-tie-cycle
8505 (package
8506 (name "perl-tie-cycle")
8507 (version "1.225")
8508 (source
8509 (origin
8510 (method url-fetch)
8511 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8512 version ".tar.gz"))
8513 (sha256
8514 (base32
8515 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8516 (build-system perl-build-system)
8517 (home-page "https://metacpan.org/release/Tie-Cycle")
8518 (synopsis "Cycle through a list of values")
8519 (description "You use @code{Tie::Cycle} to go through a list over and over
8520 again. Once you get to the end of the list, you go back to the beginning.")
8521 (license (package-license perl))))
8522
8523 (define-public perl-tie-ixhash
8524 (package
8525 (name "perl-tie-ixhash")
8526 (version "1.23")
8527 (source
8528 (origin
8529 (method url-fetch)
8530 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8531 "Tie-IxHash-" version ".tar.gz"))
8532 (sha256
8533 (base32
8534 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8535 (build-system perl-build-system)
8536 (native-inputs `(("perl-module-build" ,perl-module-build)))
8537 (home-page "https://metacpan.org/release/Tie-IxHash")
8538 (synopsis "Ordered associative arrays for Perl")
8539 (description "This Perl module implements Perl hashes that preserve the
8540 order in which the hash elements were added. The order is not affected when
8541 values corresponding to existing keys in the IxHash are changed. The elements
8542 can also be set to any arbitrary supplied order. The familiar perl array
8543 operations can also be performed on the IxHash.")
8544 (license (package-license perl))))
8545
8546 (define-public perl-tie-toobject
8547 (package
8548 (name "perl-tie-toobject")
8549 (version "0.03")
8550 (source
8551 (origin
8552 (method url-fetch)
8553 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8554 "Tie-ToObject-" version ".tar.gz"))
8555 (sha256
8556 (base32
8557 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8558 (build-system perl-build-system)
8559 (propagated-inputs
8560 `(("perl-test-simple" ,perl-test-simple)))
8561 (home-page "https://metacpan.org/release/Tie-ToObject")
8562 (synopsis "Tie to an existing Perl object")
8563 (description "This class provides a tie constructor that returns the
8564 object it was given as it's first argument. This way side effects of calling
8565 $object->TIEHASH are avoided.")
8566 (license (package-license perl))))
8567
8568 (define-public perl-time-duration
8569 (package
8570 (name "perl-time-duration")
8571 (version "1.1")
8572 (source
8573 (origin
8574 (method url-fetch)
8575 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8576 "Time-Duration-" version ".tar.gz"))
8577 (sha256
8578 (base32
8579 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8580 (build-system perl-build-system)
8581 (native-inputs
8582 `(("perl-module-install" ,perl-module-install)
8583 ("perl-test-pod" ,perl-test-pod)
8584 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8585 (home-page "https://metacpan.org/release/Time-Duration")
8586 (synopsis "English expression of durations")
8587 (description "This module provides functions for expressing durations in
8588 rounded or exact terms.")
8589 (license (package-license perl))))
8590
8591 (define-public perl-time-duration-parse
8592 (package
8593 (name "perl-time-duration-parse")
8594 (version "0.13")
8595 (source
8596 (origin
8597 (method url-fetch)
8598 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8599 "Time-Duration-Parse-" version ".tar.gz"))
8600 (sha256
8601 (base32
8602 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8603 (build-system perl-build-system)
8604 (native-inputs
8605 `(("perl-time-duration" ,perl-time-duration)))
8606 (propagated-inputs
8607 `(("perl-exporter-lite" ,perl-exporter-lite)))
8608 (home-page "https://metacpan.org/release/Time-Duration-Parse")
8609 (synopsis "Parse time duration strings")
8610 (description "Time::Duration::Parse is a module to parse human readable
8611 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8612 (license (package-license perl))))
8613
8614 (define-public perl-time-hires
8615 (package
8616 (name "perl-time-hires")
8617 (version "1.9758")
8618 (source (origin
8619 (method url-fetch)
8620 (uri (string-append
8621 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8622 version ".tar.gz"))
8623 (sha256
8624 (base32
8625 "07jbydcdzpjm6i4nidci0rlklx4kla210fsl6zishw0yq5di9yjv"))))
8626 (build-system perl-build-system)
8627 (home-page "https://metacpan.org/release/Time-HiRes")
8628 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8629 (description "This package implements @code{usleep}, @code{ualarm}, and
8630 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8631 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8632 (license perl-license)))
8633
8634 (define-public perl-time-local
8635 (package
8636 (name "perl-time-local")
8637 (version "1.2300")
8638 (source
8639 (origin
8640 (method url-fetch)
8641 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8642 "Time-Local-" version ".tar.gz"))
8643 (sha256
8644 (base32
8645 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8646 (build-system perl-build-system)
8647 (home-page "https://metacpan.org/release/Time-Local")
8648 (synopsis "Efficiently compute time from local and GMT time")
8649 (description "This module provides functions that are the inverse of
8650 built-in perl functions localtime() and gmtime(). They accept a date as a
8651 six-element array, and return the corresponding time(2) value in seconds since
8652 the system epoch.")
8653 (license (package-license perl))))
8654
8655 (define-public perl-time-piece
8656 (package
8657 (name "perl-time-piece")
8658 (version "1.3203")
8659 (source
8660 (origin
8661 (method url-fetch)
8662 (uri (string-append
8663 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8664 version ".tar.gz"))
8665 (sha256
8666 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8667 (build-system perl-build-system)
8668 (home-page "https://metacpan.org/release/Time-Piece")
8669 (synopsis "Object-Oriented time objects")
8670 (description
8671 "This module replaces the standard @code{localtime} and @code{gmtime}
8672 functions with implementations that return objects. It does so in a
8673 backwards-compatible manner, so that using these functions as documented will
8674 still work as expected.")
8675 (license perl-license)))
8676
8677 (define-public perl-timedate
8678 (package
8679 (name "perl-timedate")
8680 (version "2.30")
8681 (source
8682 (origin
8683 (method url-fetch)
8684 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8685 "TimeDate-" version ".tar.gz"))
8686 (sha256
8687 (base32
8688 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8689 (build-system perl-build-system)
8690 (home-page "https://metacpan.org/release/TimeDate")
8691 (synopsis "Date parsing/formatting subroutines")
8692 (description "This module provides routines for parsing date string into
8693 time values and formatting dates into ASCII strings.")
8694 (license (package-license perl))))
8695
8696 (define-public perl-time-mock
8697 (package
8698 (name "perl-time-mock")
8699 (version "v0.0.2")
8700 (source
8701 (origin
8702 (method url-fetch)
8703 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8704 "Time-Mock-" version ".tar.gz"))
8705 (sha256
8706 (base32
8707 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8708 (build-system perl-build-system)
8709 (native-inputs
8710 `(("perl-module-build" ,perl-module-build)))
8711 (propagated-inputs
8712 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8713 (home-page "https://metacpan.org/release/Time-Mock")
8714 (synopsis "Shift and scale time")
8715 (description "This module allows you to speed up your sleep(), alarm(),
8716 and time() calls.")
8717 (license (package-license perl))))
8718
8719 (define-public perl-tree-simple
8720 (package
8721 (name "perl-tree-simple")
8722 (version "1.25")
8723 (source
8724 (origin
8725 (method url-fetch)
8726 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8727 "Tree-Simple-" version ".tgz"))
8728 (sha256
8729 (base32
8730 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8731 (build-system perl-build-system)
8732 (native-inputs
8733 `(("perl-module-build" ,perl-module-build)
8734 ("perl-test-exception" ,perl-test-exception)))
8735 (propagated-inputs
8736 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8737 (home-page "https://metacpan.org/release/Tree-Simple")
8738 (synopsis "Simple tree object")
8739 (description "This module in a fully object-oriented implementation of a
8740 simple n-ary tree.")
8741 (license (package-license perl))))
8742
8743 (define-public perl-tree-simple-visitorfactory
8744 (package
8745 (name "perl-tree-simple-visitorfactory")
8746 (version "0.12")
8747 (source
8748 (origin
8749 (method url-fetch)
8750 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8751 "Tree-Simple-VisitorFactory-" version ".tgz"))
8752 (sha256
8753 (base32
8754 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8755 (build-system perl-build-system)
8756 (native-inputs
8757 `(("perl-module-build" ,perl-module-build)
8758 ("perl-test-exception" ,perl-test-exception)))
8759 (propagated-inputs
8760 `(("perl-tree-simple" ,perl-tree-simple)
8761 ("perl-base" ,perl-base)))
8762 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
8763 (synopsis "Factory object for dispensing Visitor objects")
8764 (description "This module is a factory for dispensing
8765 Tree::Simple::Visitor::* objects.")
8766 (license (package-license perl))))
8767
8768 (define-public perl-try-tiny
8769 (package
8770 (name "perl-try-tiny")
8771 (version "0.22")
8772 (source
8773 (origin
8774 (method url-fetch)
8775 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8776 "Try-Tiny-" version ".tar.gz"))
8777 (sha256
8778 (base32
8779 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8780 (build-system perl-build-system)
8781 (home-page "https://metacpan.org/release/Try-Tiny")
8782 (synopsis "Minimal try/catch with proper preservation of $@@")
8783 (description "This module provides bare bones try/catch/finally statements
8784 that are designed to minimize common mistakes with eval blocks, and nothing
8785 else.")
8786 (license x11)))
8787
8788 (define-public perl-type-tie
8789 (package
8790 (name "perl-type-tie")
8791 (version "0.009")
8792 (source
8793 (origin
8794 (method url-fetch)
8795 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8796 "Type-Tie-" version ".tar.gz"))
8797 (sha256
8798 (base32
8799 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8800 (build-system perl-build-system)
8801 (native-inputs
8802 `(("perl-test-fatal" ,perl-test-fatal)
8803 ("perl-test-requires" ,perl-test-requires)))
8804 (propagated-inputs
8805 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8806 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8807 (home-page "https://metacpan.org/release/Type-Tie")
8808 (synopsis "Tie a variable to a type constraint")
8809 (description "This module exports a single function: @code{ttie}. It ties
8810 a variable to a type constraint, ensuring that whatever values stored in the
8811 variable will conform to the type constraint. If the type constraint has
8812 coercions, these will be used if necessary to ensure values assigned to the
8813 variable conform.")
8814 (license (package-license perl))))
8815
8816 (define-public perl-type-tiny
8817 (package
8818 (name "perl-type-tiny")
8819 (version "1.002002")
8820 (source
8821 (origin
8822 (method url-fetch)
8823 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8824 "Type-Tiny-" version ".tar.gz"))
8825 (sha256
8826 (base32
8827 "0b48v28rvl20969gyr62yg6gr6a2nj9qik0bixavbjdmk67hqnx8"))))
8828 (build-system perl-build-system)
8829 (native-inputs
8830 `(("perl-test-warnings" ,perl-test-warnings)))
8831 (propagated-inputs
8832 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8833 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8834 ("perl-exporter-tiny" ,perl-exporter-tiny)
8835 ("perl-moo" ,perl-moo)
8836 ("perl-moose" ,perl-moose)
8837 ("perl-mouse" ,perl-mouse)
8838 ("perl-ref-util-xs" ,perl-ref-util-xs)
8839 ("perl-regexp-util" ,perl-regexp-util)
8840 ("perl-type-tie" ,perl-type-tie)))
8841 (home-page "https://metacpan.org/release/Type-Tiny")
8842 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8843 (description "@code{Type::Tiny} is a small class for writing type
8844 constraints, inspired by Moose's type constraint API. It has only one
8845 non-core dependency (and even that is simply a module that was previously
8846 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8847 be used with Moose, Mouse and Moo (or none of the above).")
8848 (license (package-license perl))))
8849
8850 (define-public perl-type-tiny-xs
8851 (package
8852 (name "perl-type-tiny-xs")
8853 (version "0.012")
8854 (source
8855 (origin
8856 (method url-fetch)
8857 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8858 version ".tar.gz"))
8859 (sha256
8860 (base32
8861 "05nbr898cvjjh1wsy55l84zasx65gijdxc6dnn558ihns8zx6gm9"))))
8862 (build-system perl-build-system)
8863 (home-page "https://metacpan.org/release/Type-Tiny-XS")
8864 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8865 (description "This module is optionally used by @code{Type::Tiny} to
8866 provide faster, C-based implementations of some type constraints. This
8867 package has only core dependencies, and does not depend on @code{Type::Tiny},
8868 so other data validation frameworks might also consider using it.")
8869 (license perl-license)))
8870
8871 (define-public perl-types-path-tiny
8872 (package
8873 (name "perl-types-path-tiny")
8874 (version "0.005")
8875 (source
8876 (origin
8877 (method url-fetch)
8878 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8879 "Types-Path-Tiny-" version ".tar.gz"))
8880 (sha256
8881 (base32
8882 "09nf167ssi4rgj8hhzylwp3zdx61njdpyfri43arcmk9aqn7f0pp"))))
8883 (build-system perl-build-system)
8884 (propagated-inputs
8885 `(("perl-file-pushd" ,perl-file-pushd)
8886 ("perl-path-tiny" ,perl-path-tiny)
8887 ("perl-type-tiny" ,perl-type-tiny)
8888 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8889 (home-page "https://metacpan.org/release/Types-Path-Tiny")
8890 (synopsis "Types and coercions for Moose and Moo")
8891 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8892 etc. It handles two important types of coercion: coercing objects with
8893 overloaded stringification, and coercing to absolute paths. It also can check
8894 to ensure that files or directories exist.")
8895 (license artistic2.0)))
8896
8897 (define-public perl-types-serialiser
8898 (package
8899 (name "perl-types-serialiser")
8900 (version "1.0")
8901 (source
8902 (origin
8903 (method url-fetch)
8904 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8905 "Types-Serialiser-" version ".tar.gz"))
8906 (sha256
8907 (base32
8908 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8909 (build-system perl-build-system)
8910 (propagated-inputs
8911 `(("perl-common-sense" ,perl-common-sense)))
8912 (home-page "https://metacpan.org/release/Types-Serialiser")
8913 (synopsis "Data types for common serialisation formats")
8914 (description "This module provides some extra datatypes that are used by
8915 common serialisation formats such as JSON or CBOR.")
8916 (license (package-license perl))))
8917
8918 (define-public perl-unicode-normalize
8919 (package
8920 (name "perl-unicode-normalize")
8921 (version "1.25")
8922 (source
8923 (origin
8924 (method url-fetch)
8925 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8926 "Unicode-Normalize-" version ".tar.gz"))
8927 (sha256
8928 (base32
8929 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8930 (build-system perl-build-system)
8931 (arguments
8932 '(#:phases (modify-phases %standard-phases
8933 (add-before 'configure 'set-search-path
8934 (lambda _
8935 ;; Work around "dotless @INC" build failure.
8936 (setenv "PERL5LIB"
8937 (string-append (getcwd) ":"
8938 (getenv "PERL5LIB")))
8939 #t)))))
8940 (home-page "https://metacpan.org/release/Unicode-Normalize")
8941 (synopsis "Unicode normalization forms")
8942 (description "This Perl module provides Unicode normalization forms.")
8943 (license (package-license perl))))
8944
8945 (define-public perl-unicode-collate
8946 (package
8947 (name "perl-unicode-collate")
8948 (version "1.18")
8949 (source
8950 (origin
8951 (method url-fetch)
8952 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8953 "Unicode-Collate-" version ".tar.gz"))
8954 (sha256
8955 (base32
8956 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8957 (build-system perl-build-system)
8958 (arguments
8959 `(#:phases
8960 (modify-phases %standard-phases
8961 (add-before 'configure 'set-perl-search-path
8962 (lambda _
8963 ;; Work around "dotless @INC" build failure.
8964 (setenv "PERL5LIB"
8965 (string-append (getcwd) ":"
8966 (getenv "PERL5LIB")))
8967 #t)))))
8968 (propagated-inputs
8969 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8970 (home-page "https://metacpan.org/release/Unicode-Collate")
8971 (synopsis "Unicode collation algorithm")
8972 (description "This package provides tools for sorting and comparing
8973 Unicode data.")
8974 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8975 ;; license.
8976 (license (list (package-license perl) expat))))
8977
8978 (define-public perl-unicode-linebreak
8979 (package
8980 (name "perl-unicode-linebreak")
8981 (version "2016.003")
8982 (source (origin
8983 (method url-fetch)
8984 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8985 "Unicode-LineBreak-" version ".tar.gz"))
8986 (sha256
8987 (base32
8988 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
8989 (build-system perl-build-system)
8990 (propagated-inputs
8991 `(("perl-mime-charset" ,perl-mime-charset)))
8992 (home-page "https://metacpan.org/release/Unicode-LineBreak")
8993 (synopsis "Unicode line breaking algorithm")
8994 (description
8995 "@code{Unicode::LineBreak} implements the line breaking algorithm
8996 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8997 defined by Annex #11 is used to determine breaking positions.")
8998 (license (package-license perl))))
8999
9000 (define-public perl-unicode-utf8
9001 (package
9002 (name "perl-unicode-utf8")
9003 (version "0.62")
9004 (source (origin
9005 (method url-fetch)
9006 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
9007 "Unicode-UTF8-" version ".tar.gz"))
9008 (sha256
9009 (base32
9010 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
9011 (build-system perl-build-system)
9012 (native-inputs
9013 `(("perl-test-fatal" ,perl-test-fatal)
9014 ("perl-test-leaktrace" ,perl-test-leaktrace)
9015 ("perl-variable-magic" ,perl-variable-magic)
9016 ("perl-test-pod" ,perl-test-pod)))
9017 (home-page "https://metacpan.org/release/Unicode-UTF8")
9018 (synopsis "Encoding and decoding of UTF-8 encoding form")
9019 (description
9020 "This module provides functions to encode and decode UTF-8 encoding form
9021 as specified by Unicode and ISO/IEC 10646:2011.")
9022 (license (package-license perl))))
9023
9024 (define-public perl-universal-can
9025 (package
9026 (name "perl-universal-can")
9027 (version "1.20140328")
9028 (source
9029 (origin
9030 (method url-fetch)
9031 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9032 "UNIVERSAL-can-" version ".tar.gz"))
9033 (sha256
9034 (base32
9035 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9036 (build-system perl-build-system)
9037 (home-page "https://metacpan.org/release/UNIVERSAL-can")
9038 (synopsis "UNIVERSAL::can() reimplementation")
9039 (description "This module attempts to work around people calling
9040 UNIVERSAL::can() as a function, which it is not.")
9041 (license (package-license perl))))
9042
9043 (define-public perl-universal-isa
9044 (package
9045 (name "perl-universal-isa")
9046 (version "1.20140927")
9047 (source
9048 (origin
9049 (method url-fetch)
9050 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9051 "UNIVERSAL-isa-" version ".tar.gz"))
9052 (sha256
9053 (base32
9054 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
9055 (build-system perl-build-system)
9056 (native-inputs
9057 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9058 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
9059 (synopsis "UNIVERSAL::isa() reimplementation")
9060 (description "This module attempts to recover from people calling
9061 UNIVERSAL::isa as a function.")
9062 (license (package-license perl))))
9063
9064 (define-public perl-universal-require
9065 (package
9066 (name "perl-universal-require")
9067 (version "0.18")
9068 (source
9069 (origin
9070 (method url-fetch)
9071 (uri (string-append
9072 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9073 version ".tar.gz"))
9074 (sha256
9075 (base32
9076 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9077 (build-system perl-build-system)
9078 (home-page "https://metacpan.org/release/UNIVERSAL-require")
9079 (synopsis "Require modules from a variable")
9080 (description "This module lets you require other modules where the module
9081 name is in a variable, something you can't do with the @code{require}
9082 built-in.")
9083 (license (package-license perl))))
9084
9085 (define-public perl-variable-magic
9086 (package
9087 (name "perl-variable-magic")
9088 (version "0.62")
9089 (source
9090 (origin
9091 (method url-fetch)
9092 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9093 "Variable-Magic-" version ".tar.gz"))
9094 (sha256
9095 (base32
9096 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9097 (build-system perl-build-system)
9098 (home-page "https://metacpan.org/release/Variable-Magic")
9099 (synopsis "Associate user-defined magic to variables from Perl")
9100 (description "Magic is Perl's way of enhancing variables. This mechanism
9101 lets the user add extra data to any variable and hook syntactical
9102 operations (such as access, assignment or destruction) that can be applied to
9103 it. With this module, you can add your own magic to any variable without
9104 having to write a single line of XS.")
9105 (license (package-license perl))))
9106
9107 (define-public perl-xml-writer
9108 (package
9109 (name "perl-xml-writer")
9110 (version "0.625")
9111 (source
9112 (origin
9113 (method url-fetch)
9114 (uri (string-append
9115 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9116 version
9117 ".tar.gz"))
9118 (sha256
9119 (base32
9120 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9121 (build-system perl-build-system)
9122 (home-page "https://metacpan.org/release/XML-Writer")
9123 (synopsis "Easily generate well-formed, namespace-aware XML")
9124 (description "@code{XML::Writer} is a simple Perl module for writing XML
9125 documents: it takes care of constructing markup and escaping data correctly.
9126 By default, it also performs a significant amount of well-formedness checking
9127 on the output to make certain (for example) that start and end tags match,
9128 that there is exactly one document element, and that there are not duplicate
9129 attribute names.")
9130 ;; Redistribution and use in source and compiled forms, with or without
9131 ;; modification, are permitted under any circumstances. No warranty.
9132 (license public-domain)))
9133
9134 (define-public perl-xs-object-magic
9135 (package
9136 (name "perl-xs-object-magic")
9137 (version "0.04")
9138 (source (origin
9139 (method url-fetch)
9140 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9141 "XS-Object-Magic-" version ".tar.gz"))
9142 (sha256
9143 (base32
9144 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9145 (build-system perl-build-system)
9146 (native-inputs
9147 `(("perl-extutils-depends" ,perl-extutils-depends)
9148 ("perl-module-install" ,perl-module-install)
9149 ("perl-test-fatal" ,perl-test-fatal)))
9150 (home-page "https://metacpan.org/release/XS-Object-Magic")
9151 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9152 (description
9153 "This way of associating structs with Perl space objects is designed to
9154 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9155 (structs can be associated with any data type) and opaque (the C pointer is
9156 neither visible nor modifiable from Perl space).")
9157 (license (package-license perl))))
9158
9159 (define-public perl-yaml
9160 (package
9161 (name "perl-yaml")
9162 (version "1.24")
9163 (source
9164 (origin
9165 (method url-fetch)
9166 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9167 "YAML-" version ".tar.gz"))
9168 (sha256
9169 (base32
9170 "1dpzgnjbd8yvf94vf45cmyj5bc6vrm6bchhx9xqwxqd5f9d093dm"))))
9171 (build-system perl-build-system)
9172 (native-inputs
9173 `(("perl-test-yaml" ,perl-test-yaml)))
9174 (home-page "https://metacpan.org/release/YAML")
9175 (synopsis "YAML for Perl")
9176 (description "The YAML.pm module implements a YAML Loader and Dumper based
9177 on the YAML 1.0 specification.")
9178 (license (package-license perl))))
9179
9180 (define-public perl-yaml-libyaml
9181 (package
9182 (name "perl-yaml-libyaml")
9183 (version "0.69")
9184 (source
9185 (origin
9186 (method url-fetch)
9187 (uri (string-append
9188 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9189 version
9190 ".tar.gz"))
9191 (sha256
9192 (base32
9193 "06msvj3vmjszl5zj1k7g47ll0kkds9gdb5sky0q27lh4zw1vlj33"))))
9194 (build-system perl-build-system)
9195 (home-page
9196 "https://metacpan.org/release/YAML-LibYAML")
9197 (synopsis
9198 "Perl YAML Serialization using XS and libyaml")
9199 (description
9200 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9201 best YAML support to date.")
9202 (license perl-license)))
9203
9204 (define-public perl-yaml-tiny
9205 (package
9206 (name "perl-yaml-tiny")
9207 (version "1.66")
9208 (source
9209 (origin
9210 (method url-fetch)
9211 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9212 "YAML-Tiny-" version ".tar.gz"))
9213 (sha256
9214 (base32
9215 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
9216 (build-system perl-build-system)
9217 (native-inputs
9218 `(("perl-json-maybexs" ,perl-json-maybexs)
9219 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9220 (arguments
9221 `(#:tests? #f)) ;requires Test::More >= 0.99
9222 (home-page "https://metacpan.org/release/YAML-Tiny")
9223 (synopsis "Read/Write YAML files")
9224 (description "YAML::Tiny is a perl class for reading and writing
9225 YAML-style files, written with as little code as possible, reducing load time
9226 and memory overhead.")
9227 (license (package-license perl))))
9228
9229 (define-public perl-parse-recdescent
9230 (package
9231 (name "perl-parse-recdescent")
9232 (version "1.967015")
9233 (source
9234 (origin
9235 (method url-fetch)
9236 (uri (string-append
9237 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9238 version
9239 ".tar.gz"))
9240 (sha256
9241 (base32
9242 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9243 (build-system perl-build-system)
9244 (native-inputs
9245 `(("perl-module-build" ,perl-module-build)))
9246 (home-page
9247 "https://metacpan.org/release/Parse-RecDescent")
9248 (synopsis "Generate recursive-descent parsers")
9249 (description
9250 "@code{Parse::RecDescent} can incrementally generate top-down
9251 recursive-descent text parsers from simple yacc-like grammar specifications.")
9252 (license perl-license)))
9253
9254 (define-public perl-parse-yapp
9255 (package
9256 (name "perl-parse-yapp")
9257 (version "1.21")
9258 (source
9259 (origin
9260 (method url-fetch)
9261 (uri (string-append
9262 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9263 version
9264 ".tar.gz"))
9265 (sha256
9266 (base32
9267 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9268 (build-system perl-build-system)
9269 (home-page "https://metacpan.org/release/Parse-Yapp")
9270 (synopsis "Generate and use LALR parsers")
9271 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9272 grammars to generate Perl object oriented parser modules.")
9273 (license (package-license perl))))
9274
9275 \f
9276 ;;; Some packaged modules need versions of core modules that are newer than
9277 ;;; those in our perl 5.16.1.
9278
9279 (define-public perl-cpan-meta
9280 (package
9281 (name "perl-cpan-meta")
9282 (version "2.143240")
9283 (source
9284 (origin
9285 (method url-fetch)
9286 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9287 "CPAN-Meta-" version ".tar.gz"))
9288 (sha256
9289 (base32
9290 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9291 (build-system perl-build-system)
9292 (propagated-inputs
9293 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9294 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9295 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9296 (home-page "https://metacpan.org/release/CPAN-Meta")
9297 (synopsis "Distribution metadata for a CPAN dist")
9298 (description "Software distributions released to the CPAN include a
9299 META.json or, for older distributions, META.yml, which describes the
9300 distribution, its contents, and the requirements for building and installing
9301 the distribution. The data structure stored in the META.json file is
9302 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9303 represent this distribution metadata (or distmeta), along with some helpful
9304 methods for interrogating that data.")
9305 (license (package-license perl))))
9306
9307 (define-public perl-cpan-meta-requirements
9308 (package
9309 (name "perl-cpan-meta-requirements")
9310 (version "2.140")
9311 (source
9312 (origin
9313 (method url-fetch)
9314 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9315 "CPAN-Meta-Requirements-" version ".tar.gz"))
9316 (sha256
9317 (base32
9318 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9319 (build-system perl-build-system)
9320 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
9321 (synopsis "Set of version requirements for a CPAN dist")
9322 (description "A CPAN::Meta::Requirements object models a set of version
9323 constraints like those specified in the META.yml or META.json files in CPAN
9324 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9325 adding more and more constraints, and will reduce them to the simplest
9326 representation.")
9327 (license (package-license perl))))
9328
9329 (define-public perl-cpan-meta-yaml
9330 (package
9331 (name "perl-cpan-meta-yaml")
9332 (version "0.018")
9333 (source
9334 (origin
9335 (method url-fetch)
9336 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9337 "CPAN-Meta-YAML-" version ".tar.gz"))
9338 (sha256
9339 (base32
9340 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9341 (build-system perl-build-system)
9342 (arguments
9343 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9344 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
9345 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9346 (description "This module implements a subset of the YAML specification
9347 for use in reading and writing CPAN metadata files like META.yml and
9348 MYMETA.yml.")
9349 (license (package-license perl))))
9350
9351 (define-public perl-module-build
9352 (package
9353 (name "perl-module-build")
9354 (version "0.4220")
9355 (source
9356 (origin
9357 (method url-fetch)
9358 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9359 "Module-Build-" version ".tar.gz"))
9360 (sha256
9361 (base32
9362 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9363 (build-system perl-build-system)
9364 (propagated-inputs
9365 `(("perl-cpan-meta" ,perl-cpan-meta)))
9366 (home-page "https://metacpan.org/release/Module-Build")
9367 (synopsis "Build and install Perl modules")
9368 (description "@code{Module::Build} is a system for building, testing, and
9369 installing Perl modules; it used to be part of Perl itself until version 5.22,
9370 which dropped it. It is meant to be an alternative to
9371 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9372 through subclassing in a much more straightforward way than with
9373 @code{MakeMaker}. It also does not require a @command{make} on your
9374 system---most of the @code{Module::Build} code is pure-Perl.")
9375 (license (package-license perl))))
9376
9377 (define-public perl-parse-cpan-meta
9378 (package
9379 (name "perl-parse-cpan-meta")
9380 (version "2.150010")
9381 (source
9382 (origin
9383 (method url-fetch)
9384 ;; This module is now known as CPAN::Meta on CPAN.
9385 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9386 "CPAN-Meta-" version ".tar.gz"))
9387 (sha256
9388 (base32
9389 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9390 (build-system perl-build-system)
9391 (propagated-inputs
9392 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9393 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
9394 (synopsis "Parse META.yml and META.json CPAN metadata files")
9395 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9396 files, using JSON::PP and/or CPAN::Meta::YAML.")
9397 (license (package-license perl))))
9398
9399 (define-public perl-scalar-list-utils
9400 (package
9401 (name "perl-scalar-list-utils")
9402 (version "1.50")
9403 (source
9404 (origin
9405 (method url-fetch)
9406 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9407 "Scalar-List-Utils-" version ".tar.gz"))
9408 (sha256
9409 (base32
9410 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9411 (build-system perl-build-system)
9412 (home-page "https://metacpan.org/release/Scalar-List-Utils")
9413 (synopsis "Common Scalar and List utility subroutines")
9414 (description "This package contains a selection of subroutines that people
9415 have expressed would be nice to have in the perl core, but the usage would not
9416 really be high enough to warrant the use of a keyword, and the size so small
9417 such that being individual extensions would be wasteful.")
9418 (license (package-license perl))))
9419
9420 (define-public perl-shell-command
9421 (package
9422 (name "perl-shell-command")
9423 (version "0.06")
9424 (source
9425 (origin
9426 (method url-fetch)
9427 (uri (string-append
9428 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9429 version
9430 ".tar.gz"))
9431 (sha256
9432 (base32
9433 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9434 (build-system perl-build-system)
9435 (home-page
9436 "https://metacpan.org/release/Shell-Command")
9437 (synopsis
9438 "Cross-platform functions emulating common shell commands")
9439 (description
9440 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9441 (license (package-license perl))))
9442
9443 ;;; END: Core module overrides
9444
9445 (define-public perl-file-find-object
9446 (package
9447 (name "perl-file-find-object")
9448 (version "v0.2.13")
9449 (source
9450 (origin
9451 (method url-fetch)
9452 (uri (string-append
9453 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9454 version
9455 ".tar.gz"))
9456 (sha256
9457 (base32
9458 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
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 (home-page
9465 "https://metacpan.org/release/File-Find-Object")
9466 (synopsis
9467 "Object-oriented File::Find replacement in Perl")
9468 (description "File::Find::Object is an object-oriented
9469 File::Find replacement in Perl.")
9470 (license artistic2.0)))
9471
9472 (define-public perl-file-find-object-rule
9473 (package
9474 (name "perl-file-find-object-rule")
9475 (version "0.0305")
9476 (source
9477 (origin
9478 (method url-fetch)
9479 (uri (string-append
9480 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9481 version
9482 ".tar.gz"))
9483 (sha256
9484 (base32
9485 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9486 (build-system perl-build-system)
9487 (native-inputs
9488 `(("perl-module-build" ,perl-module-build)))
9489 (inputs
9490 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9491 ("perl-file-find-object" ,perl-file-find-object)
9492 ("perl-number-compare" ,perl-number-compare)
9493 ("perl-text-glob" ,perl-text-glob)))
9494 (home-page
9495 "https://metacpan.org/release/File-Find-Object-Rule")
9496 (synopsis
9497 "Alternative interface to File::Find::Object")
9498 (description "File::Find::Object::Rule is an alternative Perl
9499 interface to File::Find::Object.")
9500 (license (package-license perl))))
9501
9502 (define-public perl-file-finder
9503 (package
9504 (name "perl-file-finder")
9505 (version "0.53")
9506 (source
9507 (origin
9508 (method url-fetch)
9509 (uri (string-append
9510 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
9511 version ".tar.gz"))
9512 (sha256
9513 (base32
9514 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
9515 (build-system perl-build-system)
9516 (propagated-inputs
9517 `(("perl-text-glob" ,perl-text-glob)))
9518 (home-page "https://metacpan.org/release/File-Finder")
9519 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
9520 (description
9521 "@code{File::Find} is great, but constructing the wanted routine can
9522 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
9523 syntax that is directly mappable to the @code{find(1)} command's syntax.
9524
9525 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
9526 a series of steps that mimic find's predicates. Initially, a
9527 @code{File::Finder} object has no steps. Each step method clones the previous
9528 object's options and steps, and then adds the new step, returning the new
9529 object. In this manner, an object can be grown, step by step, by chaining
9530 method calls. Furthermore, a partial sequence can be created and held, and
9531 used as the head of many different sequences.")
9532 (license perl-license)))
9533
9534 (define-public perl-font-ttf
9535 (package
9536 (name "perl-font-ttf")
9537 (version "1.06")
9538 (source (origin
9539 (method url-fetch)
9540 (uri (string-append
9541 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9542 version ".tar.gz"))
9543 (sha256
9544 (base32
9545 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9546 (build-system perl-build-system)
9547 (propagated-inputs
9548 `(("perl-io-string" ,perl-io-string)))
9549 (home-page "https://metacpan.org/release/Font-TTF")
9550 (synopsis "TTF font support for Perl")
9551 (description "This package provides a Perl module for TrueType/OpenType
9552 font hacking. It supports reading, processing and writing of the following
9553 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9554 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9555 prop, vhea, vmtx and the reading and writing of all other table types.")
9556 (license artistic2.0)))
9557
9558 (define-public perl-libtime-parsedate
9559 (package
9560 (name "perl-libtime-parsedate")
9561 (version "2015.103")
9562 (source
9563 (origin
9564 (method url-fetch)
9565 (uri (string-append
9566 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9567 version ".tar.gz"))
9568 (sha256
9569 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9570 (build-system perl-build-system)
9571 (arguments
9572 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9573 ;; doesn't support it yet.
9574 ;;
9575 ;; #:disallowed-references (,tzdata-for-tests)
9576
9577 #:phases
9578 (modify-phases %standard-phases
9579 ;; This is needed for tests
9580 (add-after 'unpack 'set-TZDIR
9581 (lambda* (#:key inputs #:allow-other-keys)
9582 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9583 "/share/zoneinfo"))
9584 #t)))))
9585 (native-inputs
9586 `(("perl-module-build" ,perl-module-build)
9587 ("tzdata" ,tzdata-for-tests)))
9588 (home-page "https://metacpan.org/release/Time-ParseDate")
9589 (synopsis "Collection of Perl modules for time/date manipulation")
9590 (description "Provides several perl modules for date/time manipulation:
9591 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9592 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9593 ;; License text:
9594 ;; "License hereby granted for anyone to use, modify or redistribute this
9595 ;; module at their own risk. Please feed useful changes back to
9596 ;; cpan@dave.sharnoff.org."
9597 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9598 changelogs/main/libt/libtime-parsedate-perl/\
9599 libtime-parsedate-perl_2015.103-2_copyright"))))
9600
9601 (define-public perl-libtime-period
9602 (package
9603 (name "perl-libtime-period")
9604 (version "1.20")
9605 (source
9606 (origin
9607 (method url-fetch)
9608 (uri (string-append
9609 "http://http.debian.net/debian/pool/main/libt/"
9610 "libtime-period-perl/libtime-period-perl_"
9611 version ".orig.tar.gz"))
9612 (sha256
9613 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9614 (build-system perl-build-system)
9615 (native-inputs
9616 `(("perl-module-build" ,perl-module-build)))
9617 ;; Unless some other homepage is out there...
9618 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9619 (synopsis "Perl library for testing if a time() is in a specific period")
9620 (description "This Perl library provides a function which tells whether a
9621 specific time falls within a specified time period. Its syntax for specifying
9622 time periods allows you to test for conditions like \"Monday to Friday, 9am
9623 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9624 4:15pm\" and \"in the first half of each minute\" and \"in January of
9625 1998\".")
9626 (license perl-license)))
9627
9628 (define-public perl-path-iterator-rule
9629 (package
9630 (name "perl-path-iterator-rule")
9631 (version "1.012")
9632 (source
9633 (origin
9634 (method url-fetch)
9635 (uri (string-append
9636 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9637 version ".tar.gz"))
9638 (sha256
9639 (base32
9640 "1z76avwvwgv4bw28kzx79mmb4449s5l345sn0wljq3dbf4wqigd1"))))
9641 (build-system perl-build-system)
9642 (native-inputs
9643 `(("perl-file-pushd" ,perl-file-pushd)
9644 ("perl-path-tiny" ,perl-path-tiny)
9645 ("perl-test-deep" ,perl-test-deep)
9646 ("perl-test-filename" ,perl-test-filename)))
9647 (propagated-inputs
9648 `(("perl-number-compare" ,perl-number-compare)
9649 ("perl-text-glob" ,perl-text-glob)
9650 ("perl-try-tiny" ,perl-try-tiny)))
9651 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
9652 (synopsis "Iterative, recursive file finder")
9653 (description "Path::Iterator::Rule iterates over files and directories to
9654 identify ones matching a user-defined set of rules. The API is based heavily
9655 on File::Find::Rule, but with more explicit distinction between matching rules
9656 and options that influence how directories are searched. A
9657 Path::Iterator::Rule object is a collection of rules (match criteria) with
9658 methods to add additional criteria. Options that control directory traversal
9659 are given as arguments to the method that generates an iterator.
9660
9661 A summary of features for comparison to other file finding modules:
9662
9663 @itemize
9664 @item provides many helper methods for specifying rules
9665 @item offers (lazy) iterator and flattened list interfaces
9666 @item custom rules implemented with callbacks
9667 @item breadth-first (default) or pre- or post-order depth-first searching
9668 @item follows symlinks (by default, but can be disabled)
9669 @item directories visited only once (no infinite loop; can be disabled)
9670 @item doesn't chdir during operation
9671 @item provides an API for extensions
9672 @end itemize
9673
9674 As a convenience, the PIR module is an empty subclass of this one that is less
9675 arduous to type for one-liners.")
9676 (license asl2.0)))
9677
9678 (define-public perl-pod-constants
9679 (package
9680 (name "perl-pod-constants")
9681 (version "0.19")
9682 (source
9683 (origin
9684 (method url-fetch)
9685 (uri (string-append
9686 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9687 version ".tar.gz"))
9688 (sha256
9689 (base32
9690 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9691 (build-system perl-build-system)
9692 (home-page "https://metacpan.org/release/Pod-Constants")
9693 (synopsis "Include constants from POD")
9694 (description "This module allows you to specify those constants that
9695 should be documented in your POD, and pull them out a run time in a fairly
9696 arbitrary fashion.
9697
9698 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9699 to open the source file it is called from, and does so directly either by
9700 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9701 (or it can't find %INC{caller()}).")
9702 (license artistic2.0)))
9703
9704 (define-public perl-regexp-pattern
9705 (package
9706 (name "perl-regexp-pattern")
9707 (version "0.1.4")
9708 (source
9709 (origin
9710 (method url-fetch)
9711 (uri (string-append
9712 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9713 version ".tar.gz"))
9714 (sha256
9715 (base32
9716 "0rwpl6dxd1yl2ng3d4jdy68jz3mggmdl35rphrw1x619sm1aa876"))))
9717 (build-system perl-build-system)
9718 (native-inputs
9719 `(("perl-test-exception" ,perl-test-exception)))
9720 (home-page "https://metacpan.org/release/Regexp-Pattern")
9721 (synopsis "Collection of regexp patterns")
9722 (description "Regexp::Pattern is a convention for organizing reusable
9723 regexp patterns in modules.")
9724 (license (package-license perl))))