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