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