gnu: emacs-sly: Update to 20200228.
[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, 2019 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016, 2017, 2019, 2020 Eric Bavier <bavier@posteo.net>
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, 2020 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, 2020 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, 2019 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
23 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
24 ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
25 ;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
26 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
27 ;;;
28 ;;; This file is part of GNU Guix.
29 ;;;
30 ;;; GNU Guix is free software; you can redistribute it and/or modify it
31 ;;; under the terms of the GNU General Public License as published by
32 ;;; the Free Software Foundation; either version 3 of the License, or (at
33 ;;; your option) any later version.
34 ;;;
35 ;;; GNU Guix is distributed in the hope that it will be useful, but
36 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
37 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38 ;;; GNU General Public License for more details.
39 ;;;
40 ;;; You should have received a copy of the GNU General Public License
41 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
42
43 (define-module (gnu packages perl)
44 #:use-module (srfi srfi-1)
45 #:use-module (guix licenses)
46 #:use-module (gnu packages)
47 #:use-module (guix packages)
48 #:use-module (guix download)
49 #:use-module (guix utils)
50 #:use-module (guix build-system gnu)
51 #:use-module (guix build-system perl)
52 #:use-module (gnu packages base)
53 #:use-module (gnu packages compression)
54 #:use-module (gnu packages freedesktop)
55 #:use-module (gnu packages less)
56 #:use-module (gnu packages ncurses)
57 #:use-module (gnu packages perl-check)
58 #:use-module (gnu packages perl-compression)
59 #:use-module (gnu packages perl-web)
60 #:use-module (gnu packages pkg-config)
61 #:use-module (gnu packages readline)
62 #:use-module (gnu packages textutils))
63
64 ;;;
65 ;;; Please: Try to add new module packages in alphabetic order.
66 ;;;
67
68 \f
69 (define-public perl
70 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
71 (package
72 (name "perl")
73 (version "5.30.0")
74 (source (origin
75 (method url-fetch)
76 (uri (string-append "mirror://cpan/src/5.0/perl-"
77 version ".tar.gz"))
78 (sha256
79 (base32
80 "1wkmz6xn3fswpqhz29akiklcxclnlykhp96a8bqcz36rak3i64l5"))
81 (patches (search-patches
82 "perl-no-sys-dirs.patch"
83 "perl-autosplit-default-time.patch"
84 "perl-deterministic-ordering.patch"
85 "perl-reproducible-build-date.patch"))))
86 (build-system gnu-build-system)
87 (arguments
88 '(#:tests? #f
89 #:configure-flags
90 (let ((out (assoc-ref %outputs "out"))
91 (libc (assoc-ref %build-inputs "libc")))
92 (list
93 (string-append "-Dprefix=" out)
94 (string-append "-Dman1dir=" out "/share/man/man1")
95 (string-append "-Dman3dir=" out "/share/man/man3")
96 "-de" "-Dcc=gcc"
97 "-Uinstallusrbinperl"
98 "-Dinstallstyle=lib/perl5"
99 "-Duseshrplib"
100 (string-append "-Dlocincpth=" libc "/include")
101 (string-append "-Dloclibpth=" libc "/lib")
102 "-Dusethreads"))
103 #:phases
104 (modify-phases %standard-phases
105 (add-before 'configure 'setup-configure
106 (lambda _
107 ;; Use the right path for `pwd'.
108 (substitute* "dist/PathTools/Cwd.pm"
109 (("/bin/pwd")
110 (which "pwd")))
111
112 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
113 ;; <bits/string3.h>.
114 (substitute* "cflags.SH"
115 (("-std=c89")
116 "-std=gnu89"))
117 #t))
118 (replace 'configure
119 (lambda* (#:key configure-flags #:allow-other-keys)
120 (format #t "Perl configure flags: ~s~%" configure-flags)
121 (apply invoke "./Configure" configure-flags)))
122 (add-before
123 'strip 'make-shared-objects-writable
124 (lambda* (#:key outputs #:allow-other-keys)
125 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
126 ;; writable so that 'strip' actually strips them.
127 (let* ((out (assoc-ref outputs "out"))
128 (lib (string-append out "/lib")))
129 (for-each (lambda (dso)
130 (chmod dso #o755))
131 (find-files lib "\\.so$"))
132 #t)))
133
134 (add-after 'install 'remove-extra-references
135 (lambda* (#:key inputs outputs #:allow-other-keys)
136 (let* ((out (assoc-ref outputs "out"))
137 (libc (assoc-ref inputs "libc"))
138 (config1 (car (find-files (string-append out "/lib/perl5")
139 "^Config_heavy\\.pl$")))
140 (config2 (find-files (string-append out "/lib/perl5")
141 "^Config\\.pm$")))
142 ;; Force the library search path to contain only libc because
143 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
144 ;; want to keep a reference to everything that's in
145 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
146 ;; etc.)
147 (substitute* config1
148 (("^incpth=.*$")
149 (string-append "incpth='" libc "/include'\n"))
150 (("^(libpth|plibpth|libspath)=.*$" _ variable)
151 (string-append variable "='" libc "/lib'\n")))
152
153 (for-each (lambda (file)
154 (substitute* config2
155 (("libpth => .*$")
156 (string-append "libpth => '" libc
157 "/lib',\n"))))
158 config2)
159 #t))))))
160 (native-search-paths (list (search-path-specification
161 (variable "PERL5LIB")
162 (files '("lib/perl5/site_perl")))))
163 (synopsis "Implementation of the Perl programming language")
164 (description
165 "Perl is a general-purpose programming language originally developed for
166 text manipulation and now used for a wide range of tasks including system
167 administration, web development, network programming, GUI development, and
168 more.")
169 (home-page "https://www.perl.org/")
170 (license gpl1+))) ; or "Artistic"
171
172 (define-public perl-algorithm-c3
173 (package
174 (name "perl-algorithm-c3")
175 (version "0.10")
176 (source
177 (origin
178 (method url-fetch)
179 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
180 "Algorithm-C3-" version ".tar.gz"))
181 (sha256
182 (base32
183 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
184 (build-system perl-build-system)
185 (home-page "https://metacpan.org/release/Algorithm-C3")
186 (synopsis "Module for merging hierarchies using the C3 algorithm")
187 (description "This module implements the C3 algorithm, which aims to
188 provide a sane method resolution order under multiple inheritance.")
189 (license (package-license perl))))
190
191 (define-public perl-algorithm-diff
192 (package
193 (name "perl-algorithm-diff")
194 (version "1.1903")
195 (source
196 (origin
197 (method url-fetch)
198 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
199 "Algorithm-Diff-" version ".tar.gz"))
200 (sha256
201 (base32
202 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
203 (build-system perl-build-system)
204 (home-page "https://metacpan.org/release/Algorithm-Diff")
205 (synopsis "Compute differences between two files or lists")
206 (description "This is a module for computing the difference between two
207 files, two strings, or any other two lists of things. It uses an intelligent
208 algorithm similar to (or identical to) the one used by the Unix \"diff\"
209 program. It is guaranteed to find the *smallest possible* set of
210 differences.")
211 (license (package-license perl))))
212
213 (define-public perl-aliased
214 (package
215 (name "perl-aliased")
216 (version "0.34")
217 (source
218 (origin
219 (method url-fetch)
220 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
221 "aliased-" version ".tar.gz"))
222 (sha256
223 (base32
224 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
225 (build-system perl-build-system)
226 (native-inputs `(("perl-module-build" ,perl-module-build)))
227 (home-page "https://metacpan.org/release/aliased")
228 (synopsis "Use shorter versions of class names")
229 (description "The alias module loads the class you specify and exports
230 into your namespace a subroutine that returns the class name. You can
231 explicitly alias the class to another name or, if you prefer, you can do so
232 implicitly.")
233 (license (package-license perl))))
234
235 (define-public perl-any-moose
236 (package
237 (name "perl-any-moose")
238 (version "0.27")
239 (source (origin
240 (method url-fetch)
241 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
242 "Any-Moose-" version ".tar.gz"))
243 (sha256
244 (base32
245 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
246 (build-system perl-build-system)
247 (native-inputs
248 `(("perl-mouse" ,perl-mouse)
249 ("perl-moose" ,perl-moose)))
250 (home-page "https://metacpan.org/release/Any-Moose")
251 (synopsis "Transparently use Moose or Mouse modules")
252 (description
253 "This module facilitates using @code{Moose} or @code{Mouse} modules
254 without changing the code. By default, Mouse will be provided to libraries,
255 unless Moose is already loaded, or explicitly requested by the end-user. End
256 users can force the decision of which backend to use by setting the environment
257 variable ANY_MOOSE to be Moose or Mouse.")
258 (license (package-license perl))))
259
260 (define-public perl-appconfig
261 (package
262 (name "perl-appconfig")
263 (version "1.71")
264 (source
265 (origin
266 (method url-fetch)
267 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
268 "AppConfig-" version ".tar.gz"))
269 (sha256
270 (base32
271 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
272 (build-system perl-build-system)
273 (native-inputs
274 `(("perl-test-pod" ,perl-test-pod)))
275 (home-page "https://metacpan.org/release/AppConfig")
276 (synopsis "Configuration files and command line parsing")
277 (description "AppConfig is a bundle of Perl5 modules for reading
278 configuration files and parsing command line arguments.")
279 (license (package-license perl))))
280
281 (define-public perl-array-utils
282 (package
283 (name "perl-array-utils")
284 (version "0.5")
285 (source
286 (origin
287 (method url-fetch)
288 (uri (string-append
289 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
290 version
291 ".tar.gz"))
292 (sha256
293 (base32
294 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
295 (build-system perl-build-system)
296 (home-page "https://metacpan.org/release/Array-Utils")
297 (synopsis "Small utils for array manipulation")
298 (description "@code{Array::Utils} is a small pure-perl module containing
299 list manipulation routines.")
300 (license (package-license perl))))
301
302 (define-public perl-async-interrupt
303 (package
304 (name "perl-async-interrupt")
305 (version "1.25")
306 (source (origin
307 (method url-fetch)
308 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
309 "Async-Interrupt-" version ".tar.gz"))
310 (sha256
311 (base32
312 "0jh94wj1b6a0cnni8prsb59g5lak5rfj2fw5ng96291zmz2yqp1w"))))
313 (build-system perl-build-system)
314 (native-inputs
315 `(("perl-canary-stability" ,perl-canary-stability)))
316 (propagated-inputs
317 `(("perl-common-sense" ,perl-common-sense)))
318 (home-page "https://metacpan.org/release/Async-Interrupt")
319 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
320 (description
321 "@code{Async::Interrupt} implements a single feature only of interest
322 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
323 signals\", which are very similar).
324
325 Sometimes, modules wish to run code asynchronously (in another thread,
326 or from a signal handler), and then signal the perl interpreter on
327 certain events. One common way is to write some data to a pipe and use
328 an event handling toolkit to watch for I/O events. Another way is to
329 send a signal. Those methods are slow, and in the case of a pipe, also
330 not asynchronous - it won't interrupt a running perl interpreter.
331
332 This module implements asynchronous notifications that enable you to
333 signal running perl code from another thread, asynchronously, and
334 sometimes even without using a single syscall.")
335 (license (package-license perl))))
336
337 (define-public perl-attribute-util
338 (package
339 (name "perl-attribute-util")
340 (version "1.07")
341 (source (origin
342 (method url-fetch)
343 (uri (string-append
344 "https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/"
345 "Attribute-Util-" version ".tar.gz"))
346 (sha256
347 (base32
348 "1z79d845dy96lg0pxw0kr2za0gniwnpn963r7ccajfpj6k7jfw07"))))
349 (build-system perl-build-system)
350 (home-page "https://metacpan.org/pod/Attribute::Util")
351 (synopsis "Assorted general utility attributes")
352 (description "This packages provides various utility functions. When used
353 without argument, this module provides four universally accessible attributes
354 of general interest as follows:
355 @itemize
356 @item Abstract
357 @item Alias
358 @item Memoize
359 @item Method
360 @item SigHandler
361 @end itemize")
362 (license (package-license perl))))
363
364 (define-public perl-autovivification
365 (package
366 (name "perl-autovivification")
367 (version "0.18")
368 (source
369 (origin
370 (method url-fetch)
371 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
372 "autovivification-" version ".tar.gz"))
373 (sha256
374 (base32
375 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
376 (build-system perl-build-system)
377 (home-page "https://metacpan.org/release/autovivification")
378 (synopsis "Lexically disable autovivification")
379 (description "When an undefined variable is dereferenced, it gets silently
380 upgraded to an array or hash reference (depending of the type of the
381 dereferencing). This behaviour is called autovivification and usually does
382 what you mean but it may be unnatural or surprising because your variables get
383 populated behind your back. This is especially true when several levels of
384 dereferencing are involved, in which case all levels are vivified up to the
385 last, or when it happens in intuitively read-only constructs like
386 @code{exists}. The pragma provided by this package lets you disable
387 autovivification for some constructs and optionally throws a warning or an
388 error when it would have happened.")
389 (license (package-license perl))))
390
391 (define-public perl-bareword-filehandles
392 (package
393 (name "perl-bareword-filehandles")
394 (version "0.006")
395 (source
396 (origin
397 (method url-fetch)
398 (uri (string-append
399 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
400 version ".tar.gz"))
401 (sha256
402 (base32
403 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
404 (build-system perl-build-system)
405 (native-inputs
406 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
407 ("perl-extutils-depends" ,perl-extutils-depends)))
408 (propagated-inputs
409 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
410 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
411 (home-page "https://metacpan.org/release/bareword-filehandles")
412 (synopsis "Disables bareword filehandles")
413 (description "This module disables bareword filehandles.")
414 (license (package-license perl))))
415
416 (define-public perl-base
417 (deprecated-package "perl-base" perl))
418
419 (define-public perl-browser-open
420 (package
421 (name "perl-browser-open")
422 (version "0.04")
423 (source
424 (origin
425 (method url-fetch)
426 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
427 version ".tar.gz"))
428 (sha256
429 (base32
430 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
431 (build-system perl-build-system)
432 (home-page "https://metacpan.org/release/Browser-Open")
433 (synopsis "Open a browser in a given URL")
434 (description "The functions exported by this module allow you to open URLs
435 in the user's browser. A set of known commands per OS-name is tested for
436 presence, and the first one found is executed. With an optional parameter,
437 all known commands are checked.")
438 (license (package-license perl))))
439
440 (define-public perl-b-hooks-endofscope
441 (package
442 (name "perl-b-hooks-endofscope")
443 (version "0.24")
444 (source
445 (origin
446 (method url-fetch)
447 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
448 "B-Hooks-EndOfScope-" version ".tar.gz"))
449 (sha256
450 (base32
451 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
452 (build-system perl-build-system)
453 (propagated-inputs
454 `(("perl-module-runtime" ,perl-module-runtime)
455 ("perl-module-implementation" ,perl-module-implementation)
456 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
457 ("perl-variable-magic" ,perl-variable-magic)))
458 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
459 (synopsis "Execute code after a scope finished compilation")
460 (description "This module allows you to execute code when perl finished
461 compiling the surrounding scope.")
462 (license (package-license perl))))
463
464 (define-public perl-b-hooks-op-check
465 (package
466 (name "perl-b-hooks-op-check")
467 (version "0.22")
468 (source
469 (origin
470 (method url-fetch)
471 (uri (string-append
472 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
473 version ".tar.gz"))
474 (sha256
475 (base32
476 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
477 (build-system perl-build-system)
478 (native-inputs
479 `(("perl-extutils-depends" ,perl-extutils-depends)))
480 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
481 (synopsis "Wrap OP check callbacks")
482 (description "This module allows you to wrap OP check callbacks.")
483 (license (package-license perl))))
484
485 (define-public perl-b-keywords
486 (package
487 (name "perl-b-keywords")
488 (version "1.20")
489 (source
490 (origin
491 (method url-fetch)
492 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
493 version ".tar.gz"))
494 (sha256
495 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
496 (build-system perl-build-system)
497 (home-page "https://metacpan.org/release/B-Keywords")
498 (synopsis "Lists of reserved barewords and symbol names")
499 (description "@code{B::Keywords} supplies several arrays of exportable
500 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
501 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
502 @@ExporterSymbols}.")
503 ;; GPLv2 only
504 (license gpl2)))
505
506 (define-public perl-benchmark-timer
507 (package
508 (name "perl-benchmark-timer")
509 (version "0.7102")
510 (source (origin
511 (method url-fetch)
512 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
513 "Benchmark-Timer-" version ".tar.gz"))
514 (sha256
515 (base32
516 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
517 (build-system perl-build-system)
518 (native-inputs
519 `(("perl-module-install" ,perl-module-install)))
520 ;; The optional input module Statistics::PointEstimation (from
521 ;; Statistics-TTest) lists no license.
522 (synopsis "Benchmarking with statistical confidence")
523 (description
524 "The Benchmark::Timer class allows you to time portions of code
525 conveniently, as well as benchmark code by allowing timings of repeated
526 trials. It is perfect for when you need more precise information about the
527 running time of portions of your code than the Benchmark module will give you,
528 but don't want to go all out and profile your code.")
529 (home-page "https://metacpan.org/release/Benchmark-Timer")
530 (license gpl2)))
531
532 (define-public perl-bit-vector
533 (package
534 (name "perl-bit-vector")
535 (version "7.4")
536 (source
537 (origin
538 (method url-fetch)
539 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
540 "Bit-Vector-" version ".tar.gz"))
541 (sha256
542 (base32
543 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
544 (build-system perl-build-system)
545 (propagated-inputs
546 `(("perl-carp-clan" ,perl-carp-clan)))
547 (home-page "https://metacpan.org/release/Bit-Vector")
548 (synopsis "Bit vector library")
549 (description "Bit::Vector is an efficient C library which allows you to
550 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
551 matrices, all of arbitrary sizes. The package also includes an
552 object-oriented Perl module for accessing the C library from Perl, and
553 optionally features overloaded operators for maximum ease of use. The C
554 library can nevertheless be used stand-alone, without Perl.")
555 (license (list (package-license perl) lgpl2.0+))))
556
557 (define-public perl-boolean
558 (package
559 (name "perl-boolean")
560 (version "0.46")
561 (source
562 (origin
563 (method url-fetch)
564 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
565 "boolean-" version ".tar.gz"))
566 (sha256
567 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
568 (build-system perl-build-system)
569 (home-page "https://metacpan.org/release/boolean")
570 (synopsis "Boolean support for Perl")
571 (description "This module provides basic Boolean support, by defining two
572 special objects: true and false.")
573 (license (package-license perl))))
574
575 (define-public perl-business-isbn-data
576 (package
577 (name "perl-business-isbn-data")
578 (version "20140910.003")
579 (source
580 (origin
581 (method url-fetch)
582 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
583 "Business-ISBN-Data-" version ".tar.gz"))
584 (sha256
585 (base32
586 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
587 (build-system perl-build-system)
588 (home-page "https://metacpan.org/release/Business-ISBN-Data")
589 (synopsis "Data files for Business::ISBN")
590 (description "This package provides a data pack for @code{Business::ISBN}.
591 These data are generated from the RangeMessage.xml file provided by the ISBN
592 Agency.")
593 (license (package-license perl))))
594
595 (define-public perl-business-isbn
596 (package
597 (name "perl-business-isbn")
598 (version "3.004")
599 (source
600 (origin
601 (method url-fetch)
602 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
603 "Business-ISBN-" version ".tar.gz"))
604 (sha256
605 (base32
606 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
607 (build-system perl-build-system)
608 (propagated-inputs
609 `(("perl-business-isbn-data" ,perl-business-isbn-data)
610 ("perl-mojolicious" ,perl-mojolicious)))
611 (home-page "https://metacpan.org/release/Business-ISBN")
612 (synopsis "Work with International Standard Book Numbers")
613 (description "This modules provides tools to deal with International
614 Standard Book Numbers, including ISBN-10 and ISBN-13.")
615 (license artistic2.0)))
616
617 (define-public perl-business-issn
618 (package
619 (name "perl-business-issn")
620 (version "1.003")
621 (source
622 (origin
623 (method url-fetch)
624 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
625 "Business-ISSN-" version ".tar.gz"))
626 (sha256
627 (base32
628 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
629 (build-system perl-build-system)
630 (home-page "https://metacpan.org/release/Business-ISSN")
631 (synopsis "Work with International Standard Serial Numbers")
632 (description "This modules provides tools to deal with International
633 Standard Serial Numbers.")
634 (license (package-license perl))))
635
636 (define-public perl-business-ismn
637 (package
638 (name "perl-business-ismn")
639 (version "1.201")
640 (source
641 (origin
642 (method url-fetch)
643 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
644 "Business-ISMN-" version ".tar.gz"))
645 (sha256
646 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
647 (build-system perl-build-system)
648 (native-inputs
649 `(("perl-tie-cycle" ,perl-tie-cycle)))
650 (home-page "https://metacpan.org/release/Business-ISMN")
651 (synopsis "Work with International Standard Music Numbers")
652 (description "This modules provides tools to deal with International
653 Standard Music Numbers.")
654 (license (package-license perl))))
655
656 (define-public perl-cache-cache
657 (package
658 (name "perl-cache-cache")
659 (version "1.08")
660 (source (origin
661 (method url-fetch)
662 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
663 "Cache-Cache-" version ".tar.gz"))
664 (sha256
665 (base32
666 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
667 (build-system perl-build-system)
668 (propagated-inputs
669 `(("perl-digest-sha1" ,perl-digest-sha1)
670 ("perl-error" ,perl-error)
671 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
672 (home-page "https://metacpan.org/release/Cache-Cache")
673 (synopsis "Cache interface for Perl")
674 (description "The Cache modules are designed to assist a developer in
675 persisting data for a specified period of time. Often these modules are used
676 in web applications to store data locally to save repeated and redundant
677 expensive calls to remote machines or databases. People have also been known
678 to use Cache::Cache for its straightforward interface in sharing data between
679 runs of an application or invocations of a CGI-style script or simply as an
680 easy to use abstraction of the file system or shared memory.")
681 (license (package-license perl))))
682
683 (define-public perl-cache-fastmmap
684 (package
685 (name "perl-cache-fastmmap")
686 (version "1.48")
687 (source
688 (origin
689 (method url-fetch)
690 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
691 "Cache-FastMmap-" version ".tar.gz"))
692 (sha256
693 (base32 "118y5lxwa092zrii7mcwnqypff7424w1dpgfkg8zlnz7h2mmnd9c"))))
694 (build-system perl-build-system)
695 (home-page "https://metacpan.org/release/Cache-FastMmap")
696 (synopsis "Shared memory interprocess cache via mmap")
697 (description "A shared memory cache through an mmap'ed file. It's core is
698 written in C for performance. It uses fcntl locking to ensure multiple
699 processes can safely access the cache at the same time. It uses a basic LRU
700 algorithm to keep the most used entries in the cache.")
701 (license (package-license perl))))
702
703 (define-public perl-capture-tiny
704 (package
705 (name "perl-capture-tiny")
706 (version "0.48")
707 (source
708 (origin
709 (method url-fetch)
710 (uri (string-append
711 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
712 version ".tar.gz"))
713 (sha256
714 (base32
715 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
716 (build-system perl-build-system)
717 (home-page "https://metacpan.org/release/Capture-Tiny")
718 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
719 (description
720 "Capture::Tiny provides a simple, portable way to capture almost anything
721 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
722 code or from an external program. Optionally, output can be teed so that it
723 is captured while being passed through to the original file handles.")
724 (license asl2.0)))
725
726 (define-public perl-canary-stability
727 (package
728 (name "perl-canary-stability")
729 (version "2013")
730 (source (origin
731 (method url-fetch)
732 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
733 "Canary-Stability-" version ".tar.gz"))
734 (sha256
735 (base32
736 "1smnsx371x9zrqmylgq145991xh8561mraqfyrlbiz4mrxi1rjd5"))))
737 (build-system perl-build-system)
738 (home-page "https://metacpan.org/release/Canary-Stability")
739 (synopsis "Check compatibility with the installed perl version")
740 (description
741 "This module is used by Schmorp's modules during configuration stage
742 to test the installed perl for compatibility with his modules.")
743 (license (package-license perl))))
744
745 (define-public perl-carp
746 (package
747 (name "perl-carp")
748 (version "1.50")
749 (source (origin
750 (method url-fetch)
751 (uri (string-append
752 "mirror://cpan/authors/id/X/XS/XSAWYERX/Carp-"
753 version ".tar.gz"))
754 (sha256
755 (base32
756 "1ngbpjyd9qi7n4h5r3q3qibd8by7rfiv7364jqlv4lbd3973n9zm"))))
757 (build-system perl-build-system)
758 (home-page "https://metacpan.org/release/Carp")
759 (synopsis "Alternative warn and die for modules")
760 (description "The @code{Carp} routines are useful in your own modules
761 because they act like @code{die()} or @code{warn()}, but with a message
762 which is more likely to be useful to a user of your module. In the case
763 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
764 summary of every call in the call-stack. For a shorter message you can use
765 @code{carp} or @code{croak} which report the error as being from where your
766 module was called. There is no guarantee that that is where the error was,
767 but it is a good educated guess.")
768 (license (package-license perl))))
769
770 (define-public perl-carp-always
771 (package
772 (name "perl-carp-always")
773 (version "0.16")
774 (source
775 (origin
776 (method url-fetch)
777 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
778 version ".tar.gz"))
779 (sha256
780 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
781 (build-system perl-build-system)
782 (native-inputs
783 `(("perl-test-base" ,perl-test-base)))
784 (home-page "https://metacpan.org/release/Carp-Always")
785 (synopsis "Warns and dies noisily with stack backtraces/")
786 (description "This module is meant as a debugging aid. It can be used to
787 make a script complain loudly with stack backtraces when @code{warn()}-ing or
788 @code{die()}ing.")
789 (license (package-license perl))))
790
791 (define-public perl-carp-assert
792 (package
793 (name "perl-carp-assert")
794 (version "0.21")
795 (source
796 (origin
797 (method url-fetch)
798 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
799 "Carp-Assert-" version ".tar.gz"))
800 (sha256
801 (base32
802 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
803 (build-system perl-build-system)
804 (home-page "https://metacpan.org/release/Carp-Assert")
805 (synopsis "Executable comments for Perl")
806 (description "Carp::Assert is intended for a purpose like the ANSI C
807 library assert.h.")
808 (license (package-license perl))))
809
810 (define-public perl-carp-assert-more
811 (package
812 (name "perl-carp-assert-more")
813 (version "1.20")
814 (source
815 (origin
816 (method url-fetch)
817 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
818 "Carp-Assert-More-" version ".tar.gz"))
819 (sha256
820 (base32 "16jnhdjgfwymrc5fki4xlf1rlziszf9k6q0245g976124k708ac5"))))
821 (build-system perl-build-system)
822 (native-inputs
823 `(("perl-test-exception" ,perl-test-exception)))
824 (propagated-inputs
825 `(("perl-carp-assert" ,perl-carp-assert)))
826 (home-page "https://metacpan.org/release/Carp-Assert-More")
827 (synopsis "Convenience wrappers around Carp::Assert")
828 (description "Carp::Assert::More is a set of handy assertion functions for
829 Perl.")
830 (license artistic2.0)))
831
832 (define-public perl-carp-clan
833 (package
834 (name "perl-carp-clan")
835 (version "6.08")
836 (source
837 (origin
838 (method url-fetch)
839 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
840 "Carp-Clan-" version ".tar.gz"))
841 (sha256
842 (base32 "0237xx3rqa72sr4vdvws9r1m453h5f25bl85mdjmmk128kir4py7"))))
843 (build-system perl-build-system)
844 (native-inputs
845 `(("perl-test-exception" ,perl-test-exception)))
846 (home-page "https://metacpan.org/release/Carp-Clan")
847 (synopsis "Report errors from a \"clan\" of modules")
848 (description "This module allows errors from a clan (or family) of modules
849 to appear to originate from the caller of the clan. This is necessary in
850 cases where the clan modules are not classes derived from each other, and thus
851 the Carp.pm module doesn't help.")
852 (license (package-license perl))))
853
854 (define-public perl-cddb-get
855 (package
856 (name "perl-cddb-get")
857 (version "2.28")
858 (source (origin
859 (method url-fetch)
860 (uri (string-append
861 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
862 version ".tar.gz"))
863 (sha256
864 (base32
865 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
866 (build-system perl-build-system)
867 (home-page "https://metacpan.org/release/CDDB_get")
868 (synopsis "Read the CDDB entry for an audio CD in your drive")
869 (description "This module can retrieve information from the CDDB.")
870 ;; Either GPLv2 or the "Artistic" license.
871 (license (list gpl2 artistic2.0))))
872
873 (define-public perl-class-accessor
874 (package
875 (name "perl-class-accessor")
876 (version "0.51")
877 (source
878 (origin
879 (method url-fetch)
880 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
881 "Class-Accessor-" version ".tar.gz"))
882 (sha256
883 (base32
884 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
885 (build-system perl-build-system)
886 (native-inputs
887 `(("perl-sub-name" ,perl-sub-name)))
888 (home-page "https://metacpan.org/release/Class-Accessor")
889 (synopsis "Automated accessor generation")
890 (description "This module automagically generates accessors/mutators for
891 your class.")
892 (license (package-license perl))))
893
894 (define-public perl-class-accessor-chained
895 (package
896 (name "perl-class-accessor-chained")
897 (version "0.01")
898 (source
899 (origin
900 (method url-fetch)
901 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
902 "Class-Accessor-Chained-" version ".tar.gz"))
903 (sha256
904 (base32
905 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
906 (build-system perl-build-system)
907 (native-inputs
908 `(("perl-module-build" ,perl-module-build)))
909 (propagated-inputs
910 `(("perl-class-accessor" ,perl-class-accessor)))
911 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
912 (synopsis "Faster, but less expandable, chained accessors")
913 (description "A chained accessor is one that always returns the object
914 when called with parameters (to set), and the value of the field when called
915 with no arguments. This module subclasses Class::Accessor in order to provide
916 the same mk_accessors interface.")
917 (license (package-license perl))))
918
919 (define-public perl-class-accessor-grouped
920 (package
921 (name "perl-class-accessor-grouped")
922 (version "0.10014")
923 (source
924 (origin
925 (method url-fetch)
926 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
927 "Class-Accessor-Grouped-" version ".tar.gz"))
928 (sha256
929 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
930 (build-system perl-build-system)
931 (native-inputs
932 `(("perl-module-install" ,perl-module-install)
933 ("perl-test-exception" ,perl-test-exception)))
934 (propagated-inputs
935 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
936 ("perl-module-runtime" ,perl-module-runtime)
937 ("perl-sub-name" ,perl-sub-name)))
938 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
939 (synopsis "Build groups of accessors")
940 (description "This class lets you build groups of accessors that will call
941 different getters and setters.")
942 (license (package-license perl))))
943
944 (define-public perl-class-c3
945 (package
946 (name "perl-class-c3")
947 (version "0.34")
948 (source
949 (origin
950 (method url-fetch)
951 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
952 "Class-C3-" version ".tar.gz"))
953 (sha256
954 (base32 "1dcibc31v5jwmi6hsdzi7c5ag1sb4wp3kxkibc889qrdj7jm12sd"))))
955 (build-system perl-build-system)
956 (propagated-inputs
957 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
958 (home-page "https://metacpan.org/release//Class-C3")
959 (synopsis "Pragma to use the C3 method resolution order algorithm")
960 (description "This is pragma to change Perl 5's standard method resolution
961 order from depth-first left-to-right (a.k.a - pre-order) to the more
962 sophisticated C3 method resolution order.")
963 (license (package-license perl))))
964
965 (define-public perl-class-c3-adopt-next
966 (package
967 (name "perl-class-c3-adopt-next")
968 (version "0.14")
969 (source
970 (origin
971 (method url-fetch)
972 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
973 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
974 (sha256
975 (base32 "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"))))
976 (build-system perl-build-system)
977 (native-inputs
978 `(("perl-module-build" ,perl-module-build)
979 ("perl-module-build-tiny" ,perl-module-build-tiny)
980 ("perl-test-exception" ,perl-test-exception)))
981 (propagated-inputs
982 `(("perl-list-moreutils" ,perl-list-moreutils)
983 ("perl-mro-compat" ,perl-mro-compat)))
984 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
985 (synopsis "Drop-in replacement for NEXT")
986 (description "This module is intended as a drop-in replacement for NEXT,
987 supporting the same interface, but using Class::C3 to do the hard work.")
988 (license (package-license perl))))
989
990 (define-public perl-class-c3-componentised
991 (package
992 (name "perl-class-c3-componentised")
993 (version "1.001002")
994 (source
995 (origin
996 (method url-fetch)
997 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
998 "Class-C3-Componentised-" version ".tar.gz"))
999 (sha256
1000 (base32 "14wn1g45z3b5apqq7dcai5drk01hfyqydsd2m6hsxzhyvi3b2l9h"))))
1001 (build-system perl-build-system)
1002 (native-inputs
1003 `(("perl-module-install" ,perl-module-install)
1004 ("perl-test-exception" ,perl-test-exception)))
1005 (propagated-inputs
1006 `(("perl-class-c3" ,perl-class-c3)
1007 ("perl-class-inspector" ,perl-class-inspector)
1008 ("perl-mro-compat" ,perl-mro-compat)))
1009 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1010 (synopsis "Load mix-ins or components to your C3-based class")
1011 (description "This module will inject base classes to your module using
1012 the Class::C3 method resolution order.")
1013 (license (package-license perl))))
1014
1015 (define-public perl-class-data-inheritable
1016 (package
1017 (name "perl-class-data-inheritable")
1018 (version "0.08")
1019 (source
1020 (origin
1021 (method url-fetch)
1022 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1023 "Class-Data-Inheritable-" version ".tar.gz"))
1024 (sha256
1025 (base32
1026 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1027 (build-system perl-build-system)
1028 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1029 (synopsis "Inheritable, overridable class data")
1030 (description "Class::Data::Inheritable is for creating accessor/mutators
1031 to class data. That is, if you want to store something about your class as a
1032 whole (instead of about a single object). This data is then inherited by your
1033 subclasses and can be overridden.")
1034 (license (package-license perl))))
1035
1036 (define-public perl-class-date
1037 (package
1038 (name "perl-class-date")
1039 (version "1.1.17")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/"
1044 "Class-Date-" version ".tar.gz"))
1045 (sha256
1046 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1047 (build-system perl-build-system)
1048 (arguments `(#:tests? #f)) ;timezone tests in chroot
1049 (home-page "https://metacpan.org/release/Class-Date")
1050 (synopsis "Class for easy date and time manipulation")
1051 (description "This module provides a general-purpose date and datetime
1052 type for perl.")
1053 (license (package-license perl))))
1054
1055 (define-public perl-class-errorhandler
1056 (package
1057 (name "perl-class-errorhandler")
1058 (version "0.04")
1059 (source (origin
1060 (method url-fetch)
1061 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1062 "Class-ErrorHandler-" version ".tar.gz"))
1063 (sha256
1064 (base32
1065 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1066 (build-system perl-build-system)
1067 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1068 (synopsis "Base class for error handling")
1069 (description
1070 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1071 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1072 its two error-handling methods, error and errstr, to communicate error messages back
1073 to the calling program.")
1074 (license (package-license perl))))
1075
1076 (define-public perl-class-factory-util
1077 (package
1078 (name "perl-class-factory-util")
1079 (version "1.7")
1080 (source
1081 (origin
1082 (method url-fetch)
1083 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1084 "Class-Factory-Util-" version ".tar.gz"))
1085 (sha256
1086 (base32
1087 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1088 (build-system perl-build-system)
1089 (native-inputs `(("perl-module-build" ,perl-module-build)))
1090 (home-page "https://metacpan.org/release/Class-Factory-Util")
1091 (synopsis "Utility methods for factory classes")
1092 (description "This module exports methods useful for factory classes.")
1093 (license (package-license perl))))
1094
1095 (define-public perl-class-inspector
1096 (package
1097 (name "perl-class-inspector")
1098 (version "1.36")
1099 (source
1100 (origin
1101 (method url-fetch)
1102 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1103 "Class-Inspector-" version ".tar.gz"))
1104 (sha256
1105 (base32
1106 "0kk900bp8iq7bw5jyllfb31gvf93mmp24n4x90j7qs3jlhimsafc"))))
1107 (build-system perl-build-system)
1108 (home-page "https://metacpan.org/release/Class-Inspector")
1109 (synopsis "Get information about a class and its structure")
1110 (description "Class::Inspector allows you to get information about a
1111 loaded class.")
1112 (license (package-license perl))))
1113
1114 (define-public perl-class-load
1115 (package
1116 (name "perl-class-load")
1117 (version "0.25")
1118 (source
1119 (origin
1120 (method url-fetch)
1121 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1122 "Class-Load-" version ".tar.gz"))
1123 (sha256
1124 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1125 (build-system perl-build-system)
1126 (native-inputs
1127 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1128 ("perl-test-fatal" ,perl-test-fatal)
1129 ("perl-test-needs" ,perl-test-needs)
1130 ("perl-test-without-module" ,perl-test-without-module)))
1131 (propagated-inputs
1132 `(("perl-package-stash" ,perl-package-stash)
1133 ("perl-data-optlist" ,perl-data-optlist)
1134 ("perl-namespace-clean" ,perl-namespace-clean)
1135 ("perl-module-runtime" ,perl-module-runtime)
1136 ("perl-module-implementation" ,perl-module-implementation)))
1137 (home-page "https://metacpan.org/release/Class-Load")
1138 (synopsis "Working (require \"Class::Name\") and more")
1139 (description "\"require EXPR\" only accepts Class/Name.pm style module
1140 names, not Class::Name. For that, this module provides \"load_class
1141 'Class::Name'\".")
1142 (license (package-license perl))))
1143
1144 (define-public perl-class-load-xs
1145 (package
1146 (name "perl-class-load-xs")
1147 (version "0.10")
1148 (source
1149 (origin
1150 (method url-fetch)
1151 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1152 "Class-Load-XS-" version ".tar.gz"))
1153 (sha256
1154 (base32
1155 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1156 (build-system perl-build-system)
1157 (native-inputs
1158 `(("perl-test-fatal" ,perl-test-fatal)
1159 ("perl-test-needs" ,perl-test-needs)
1160 ("perl-test-without-module" ,perl-test-without-module)))
1161 (inputs `(("perl-class-load" ,perl-class-load)))
1162 (home-page "https://metacpan.org/release/Class-Load-XS")
1163 (synopsis "XS implementation of parts of Class::Load")
1164 (description "This module provides an XS implementation for portions of
1165 Class::Load.")
1166 (license artistic2.0)))
1167
1168 (define-public perl-class-methodmaker
1169 (package
1170 (name "perl-class-methodmaker")
1171 (version "2.24")
1172 (source
1173 (origin
1174 (method url-fetch)
1175 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1176 "class-methodmaker/Class-MethodMaker-"
1177 version ".tar.gz"))
1178 (sha256
1179 (base32
1180 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1181 (build-system perl-build-system)
1182 (home-page "https://metacpan.org/release/Class-MethodMaker")
1183 (synopsis "Create generic methods for OO Perl")
1184 (description "This module solves the problem of having to continually
1185 write accessor methods for your objects that perform standard tasks.")
1186 (license (package-license perl))))
1187
1188 (define-public perl-class-method-modifiers
1189 (package
1190 (name "perl-class-method-modifiers")
1191 (version "2.13")
1192 (source
1193 (origin
1194 (method url-fetch)
1195 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1196 "Class-Method-Modifiers-" version ".tar.gz"))
1197 (sha256
1198 (base32 "0qzx83mgd71hlc2m1kpw15dqsjzjq7b2cj3sdgg45a0q23vhfn5b"))))
1199 (build-system perl-build-system)
1200 (native-inputs
1201 `(("perl-test-fatal" ,perl-test-fatal)
1202 ("perl-test-needs" ,perl-test-needs)))
1203 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1204 (synopsis "Moose-like method modifiers")
1205 (description "Class::Method::Modifiers provides three modifiers:
1206 @code{before}, @code{around}, and @code{after}. @code{before} and @code{after}
1207 are run just before and after the method they modify, but can not really affect
1208 that original method. @code{around} is run in place of the original method,
1209 with a hook to easily call that original method.")
1210 (license (package-license perl))))
1211
1212 (define-public perl-class-singleton
1213 (package
1214 (name "perl-class-singleton")
1215 (version "1.5")
1216 (source
1217 (origin
1218 (method url-fetch)
1219 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1220 "Class-Singleton-" version ".tar.gz"))
1221 (sha256
1222 (base32
1223 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1224 (build-system perl-build-system)
1225 (home-page "https://metacpan.org/release/Class-Singleton")
1226 (synopsis "Implementation of a singleton class for Perl")
1227 (description "This module implements a Singleton class from which other
1228 classes can be derived. By itself, the Class::Singleton module does very
1229 little other than manage the instantiation of a single object.")
1230 (license (package-license perl))))
1231
1232 (define-public perl-class-tiny
1233 (package
1234 (name "perl-class-tiny")
1235 (version "1.006")
1236 (source
1237 (origin
1238 (method url-fetch)
1239 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1240 "Class-Tiny-" version ".tar.gz"))
1241 (sha256
1242 (base32
1243 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1244 (build-system perl-build-system)
1245 (home-page "https://metacpan.org/release/Class-Tiny")
1246 (synopsis "Minimalist class construction")
1247 (description "This module offers a minimalist class construction kit. It
1248 uses no non-core modules for any recent Perl.")
1249 (license asl2.0)))
1250
1251 (define-public perl-class-unload
1252 (package
1253 (name "perl-class-unload")
1254 (version "0.11")
1255 (source
1256 (origin
1257 (method url-fetch)
1258 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1259 "Class-Unload-" version ".tar.gz"))
1260 (sha256
1261 (base32 "0pqa98z3ij6a3v9wkmvc8b410kv30y0xxqf0i6if3lp4lx3rgqjj"))))
1262 (build-system perl-build-system)
1263 (native-inputs
1264 `(("perl-test-requires" ,perl-test-requires)))
1265 (propagated-inputs
1266 `(("perl-class-inspector" ,perl-class-inspector)))
1267 (home-page "https://metacpan.org/release/Class-Unload")
1268 (synopsis "Unload a class")
1269 (description "Class:Unload unloads a given class by clearing out its
1270 symbol table and removing it from %INC.")
1271 (license (package-license perl))))
1272
1273 (define-public perl-class-xsaccessor
1274 (package
1275 (name "perl-class-xsaccessor")
1276 (version "1.19")
1277 (source
1278 (origin
1279 (method url-fetch)
1280 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1281 "Class-XSAccessor-" version ".tar.gz"))
1282 (sha256
1283 (base32
1284 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1285 (build-system perl-build-system)
1286 (home-page "https://metacpan.org/release/Class-XSAccessor")
1287 (synopsis "Generate fast XS accessors without runtime compilation")
1288 (description "Class::XSAccessor implements fast read, write, and
1289 read/write accessors in XS. Additionally, it can provide predicates such as
1290 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1291 object. It only works with objects that are implemented as ordinary hashes.
1292 Class::XSAccessor::Array implements the same interface for objects that use
1293 arrays for their internal representation.")
1294 (license (package-license perl))))
1295
1296 (define-public perl-clone
1297 (package
1298 (name "perl-clone")
1299 (version "0.43")
1300 (source (origin
1301 (method url-fetch)
1302 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
1303 "Clone-" version ".tar.gz"))
1304 (sha256
1305 (base32
1306 "1npf5s4b90ds6lv8gn76b2w4bdh0z5ni5zk4skgc2db5d12560lr"))))
1307 (build-system perl-build-system)
1308 (synopsis "Recursively copy Perl datatypes")
1309 (description
1310 "This module provides a clone() method which makes recursive copies of
1311 nested hash, array, scalar and reference types, including tied variables and
1312 objects.")
1313 (home-page "https://metacpan.org/release/Clone")
1314 (license (package-license perl))))
1315
1316 (define-public perl-clone-choose
1317 (package
1318 (name "perl-clone-choose")
1319 (version "0.010")
1320 (source
1321 (origin
1322 (method url-fetch)
1323 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
1324 "Clone-Choose-" version ".tar.gz"))
1325 (sha256
1326 (base32
1327 "0cin2bjn5z8xhm9v4j7pwlkx88jnvz8al0njdjwyvs6fb0glh8sn"))))
1328 (build-system perl-build-system)
1329 (native-inputs
1330 `(("perl-clone" ,perl-clone)
1331 ("perl-clone-pp" ,perl-clone-pp)
1332 ("perl-test-without-module" ,perl-test-without-module)))
1333 (propagated-inputs
1334 `(("perl-module-runtime" ,perl-module-runtime)))
1335 (home-page "https://metacpan.org/release/Clone-Choose")
1336 (synopsis "Choose appropriate Perl @code{clone} utility")
1337 (description "This @code{Clone::Choose} module checks several different
1338 modules which provide a @code{clone()} function and selects an appropriate
1339 one.")
1340 (license perl-license)))
1341
1342 (define-public perl-clone-pp
1343 (package
1344 (name "perl-clone-pp")
1345 (version "1.07")
1346 (source
1347 (origin
1348 (method url-fetch)
1349 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1350 version ".tar.gz"))
1351 (sha256
1352 (base32
1353 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1354 (build-system perl-build-system)
1355 (home-page "https://metacpan.org/release/Clone-PP")
1356 (synopsis "Recursively copy Perl datatypes")
1357 (description "This module provides a general-purpose @code{clone} function
1358 to make deep copies of Perl data structures. It calls itself recursively to
1359 copy nested hash, array, scalar and reference types, including tied variables
1360 and objects.")
1361 (license (package-license perl))))
1362
1363 (define-public perl-common-sense
1364 (package
1365 (name "perl-common-sense")
1366 (version "3.74")
1367 (source
1368 (origin
1369 (method url-fetch)
1370 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1371 "common-sense-" version ".tar.gz"))
1372 (sha256
1373 (base32
1374 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1375 (build-system perl-build-system)
1376 (home-page "https://metacpan.org/release/common-sense")
1377 (synopsis "Sane defaults for Perl programs")
1378 (description "This module implements some sane defaults for Perl programs,
1379 as defined by two typical specimens of Perl coders.")
1380 (license (package-license perl))))
1381
1382 (define-public perl-conf-libconfig
1383 (package
1384 (name "perl-conf-libconfig")
1385 (version "0.100")
1386 (source
1387 (origin
1388 (method url-fetch)
1389 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1390 "Conf-Libconfig-" version ".tar.gz"))
1391 (sha256
1392 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1393 (build-system perl-build-system)
1394 (native-inputs
1395 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1396 ("perl-test-deep" ,perl-test-deep)
1397 ("perl-test-exception" ,perl-test-exception)
1398 ("perl-test-warn" ,perl-test-warn)))
1399 (inputs
1400 `(("libconfig" ,libconfig)))
1401 (home-page "https://metacpan.org/release/Conf-Libconfig")
1402 (synopsis "Perl extension for libconfig")
1403 (description
1404 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1405 library. It support scalar, array, and hash data structures just like its C/C++
1406 counterpart. It reduces the effort required to implement a configuration file
1407 parser in your Perl programme and allows sharing configuration files between
1408 languages.")
1409 (license bsd-3)))
1410
1411 (define-public perl-config-grammar
1412 (package
1413 (name "perl-config-grammar")
1414 (version "1.13")
1415 (source
1416 (origin
1417 (method url-fetch)
1418 (uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
1419 "Config-Grammar-" version ".tar.gz"))
1420 (sha256
1421 (base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
1422 (build-system perl-build-system)
1423 (home-page "https://metacpan.org/release/Config-Grammar")
1424 (synopsis "Grammar-based config parser")
1425 (description
1426 "Config::Grammar is a module to parse configuration files. The
1427 configuration may consist of multiple-level sections with assignments and
1428 tabular data.")
1429 (license (package-license perl))))
1430
1431 (define-public perl-config-any
1432 (package
1433 (name "perl-config-any")
1434 (version "0.32")
1435 (source
1436 (origin
1437 (method url-fetch)
1438 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1439 "Config-Any-" version ".tar.gz"))
1440 (sha256
1441 (base32
1442 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1443 (build-system perl-build-system)
1444 (propagated-inputs
1445 `(("perl-module-pluggable" ,perl-module-pluggable)))
1446 (home-page "https://metacpan.org/release/Config-Any")
1447 (synopsis "Load configuration from different file formats")
1448 (description "Config::Any provides a facility for Perl applications and
1449 libraries to load configuration data from multiple different file formats. It
1450 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1451 (license (package-license perl))))
1452
1453 (define-public perl-config-inifiles
1454 (package
1455 (name "perl-config-inifiles")
1456 (version "3.000002")
1457 (source
1458 (origin
1459 (method url-fetch)
1460 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/"
1461 "Config-IniFiles-" version ".tar.gz"))
1462 (sha256
1463 (base32 "02dsz3inh5jwgaxmbcz8qxwgin8mkhm6vj9jyzfmm3dr5pnxcbnr"))))
1464 (build-system perl-build-system)
1465 (propagated-inputs
1466 `(("perl-module-build" ,perl-module-build)
1467 ("perl-io-stringy",perl-io-stringy)))
1468 (home-page "https://metacpan.org/pod/Config::IniFiles")
1469 (synopsis "Package for configuration files outside your Perl script")
1470 (description "This package provides a way to have readable configuration
1471 files outside your Perl script. Configurations can be imported, sections
1472 can be grouped, and settings can be accessed from a tied hash.")
1473 (license (package-license perl))))
1474
1475 (define-public perl-config-autoconf
1476 (package
1477 (name "perl-config-autoconf")
1478 (version "0.317")
1479 (source
1480 (origin
1481 (method url-fetch)
1482 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1483 "Config-AutoConf-" version ".tar.gz"))
1484 (sha256
1485 (base32
1486 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1487 (build-system perl-build-system)
1488 (propagated-inputs
1489 `(("perl-capture-tiny" ,perl-capture-tiny)))
1490 (home-page "https://metacpan.org/release/Config-AutoConf")
1491 (synopsis "Module to implement some AutoConf macros in Perl")
1492 (description "Config::AutoConf is intended to provide the same
1493 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1494 (license (package-license perl))))
1495
1496 (define-public perl-config-general
1497 (package
1498 (name "perl-config-general")
1499 (version "2.63")
1500 (source
1501 (origin
1502 (method url-fetch)
1503 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1504 "Config-General-" version ".tar.gz"))
1505 (sha256
1506 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1507 (build-system perl-build-system)
1508 (home-page "https://metacpan.org/release/Config-General")
1509 (synopsis "Generic Config Module")
1510 (description "This module opens a config file and parses its contents for
1511 you. The format of config files supported by Config::General is inspired by
1512 the well known Apache config format and is 100% compatible with Apache
1513 configs, but you can also just use simple name/value pairs in your config
1514 files. In addition to the capabilities of an Apache config file it supports
1515 some enhancements such as here-documents, C-style comments, and multiline
1516 options.")
1517 (license (package-license perl))))
1518
1519 (define-public perl-config-gitlike
1520 (package
1521 (name "perl-config-gitlike")
1522 (version "1.17")
1523 (source
1524 (origin
1525 (method url-fetch)
1526 (uri (string-append
1527 "mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
1528 version
1529 ".tar.gz"))
1530 (sha256
1531 (base32
1532 "0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
1533 (build-system perl-build-system)
1534 (native-inputs
1535 `(("perl-test-exception" ,perl-test-exception)))
1536 (propagated-inputs
1537 `(("perl-moo" ,perl-moo)
1538 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
1539 (home-page "https://metacpan.org/release/Config-GitLike")
1540 (synopsis "Parse Git style configuration files")
1541 (description
1542 "This module handles parsing, modifying and creating configuration files
1543 of the style used by the Git version control system.")
1544 (license perl-license)))
1545
1546 (define-public perl-config-ini
1547 (package
1548 (name "perl-config-ini")
1549 (version "0.025")
1550 (source (origin
1551 (method url-fetch)
1552 (uri (string-append
1553 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1554 version ".tar.gz"))
1555 (sha256
1556 (base32
1557 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1558 (build-system perl-build-system)
1559 (inputs
1560 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1561 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1562 ("perl-sub-exporter" ,perl-sub-exporter)))
1563 (home-page "https://metacpan.org/release/Config-INI")
1564 (synopsis "Simple .ini-file format reader and writer")
1565 (description "@code{Config::INI} is a module that facilates the reading
1566 and writing of @code{.ini}-style configuration files.")
1567 (license (package-license perl))))
1568
1569 (define-public perl-context-preserve
1570 (package
1571 (name "perl-context-preserve")
1572 (version "0.03")
1573 (source
1574 (origin
1575 (method url-fetch)
1576 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1577 "Context-Preserve-" version ".tar.gz"))
1578 (sha256
1579 (base32
1580 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1581 (build-system perl-build-system)
1582 (native-inputs
1583 `(("perl-test-exception" ,perl-test-exception)
1584 ("perl-test-simple" ,perl-test-simple)))
1585 (home-page "https://metacpan.org/release/Context-Preserve")
1586 (synopsis "Preserve context during subroutine call")
1587 (description "This module runs code after a subroutine call, preserving
1588 the context the subroutine would have seen if it were the last statement in
1589 the caller.")
1590 (license (package-license perl))))
1591
1592 (define-public perl-convert-binhex
1593 (package
1594 (name "perl-convert-binhex")
1595 (version "1.125")
1596 (source
1597 (origin
1598 (method url-fetch)
1599 (uri (string-append
1600 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1601 version
1602 ".tar.gz"))
1603 (sha256
1604 (base32
1605 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1606 (build-system perl-build-system)
1607 (native-inputs
1608 `(("perl-file-slurp" ,perl-file-slurp)
1609 ("perl-test-most" ,perl-test-most)))
1610 (home-page
1611 "https://metacpan.org/release/Convert-BinHex")
1612 (synopsis "Extract data from Macintosh BinHex files")
1613 (description
1614 "BinHex is a format for transporting files safely through electronic
1615 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1616 provides a means of converting those data streams back into into binary
1617 data.")
1618 (license perl-license)))
1619
1620 (define-public perl-cpan-changes
1621 (package
1622 (name "perl-cpan-changes")
1623 (version "0.400002")
1624 (source
1625 (origin
1626 (method url-fetch)
1627 (uri (string-append
1628 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1629 version ".tar.gz"))
1630 (sha256
1631 (base32
1632 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1633 (build-system perl-build-system)
1634 (home-page "https://metacpan.org/release/CPAN-Changes")
1635 (synopsis "Read and write @file{Changes} files")
1636 (description
1637 "@code{CPAN::Changes} helps users programmatically read and write
1638 @file{Changes} files that conform to a common specification.")
1639 (license perl-license)))
1640
1641 (define-public perl-cpan-distnameinfo
1642 (package
1643 (name "perl-cpan-distnameinfo")
1644 (version "0.12")
1645 (source
1646 (origin
1647 (method url-fetch)
1648 (uri (string-append
1649 "mirror://cpan/authors/id/G/GB/GBARR/CPAN-DistnameInfo-"
1650 version
1651 ".tar.gz"))
1652 (sha256
1653 (base32
1654 "0d94kx596w7k328cvq4y96z1gz12hdhn3z1mklkbrb7fyzlzn91g"))))
1655 (build-system perl-build-system)
1656 (home-page "https://metacpan.org/release/CPAN-DistnameInfo")
1657 (synopsis "Extract the name and version from a distribution filename")
1658 (description
1659 "@code{CPAN::DistnameInfo} uses heuristics to extract the distribution
1660 name and version from filenames.")
1661 (license perl-license)))
1662
1663 (define-public perl-cpan-meta-check
1664 (package
1665 (name "perl-cpan-meta-check")
1666 (version "0.014")
1667 (source
1668 (origin
1669 (method url-fetch)
1670 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1671 "CPAN-Meta-Check-" version ".tar.gz"))
1672 (sha256
1673 (base32
1674 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1675 (build-system perl-build-system)
1676 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1677 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1678 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1679 (synopsis "Verify requirements in a CPAN::Meta object")
1680 (description "This module verifies if requirements described in a
1681 CPAN::Meta object are present.")
1682 (license (package-license perl))))
1683
1684 (define-public perl-cpanel-json-xs
1685 (package
1686 (name "perl-cpanel-json-xs")
1687 (version "4.18")
1688 (source
1689 (origin
1690 (method url-fetch)
1691 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1692 "Cpanel-JSON-XS-" version ".tar.gz"))
1693 (sha256
1694 (base32 "1dnnf6bjz0fi9hk8gzmsklmh5y0z137vk62k3d7s88q30maf3rk3"))))
1695 (build-system perl-build-system)
1696 (propagated-inputs
1697 `(("perl-common-sense" ,perl-common-sense)))
1698 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1699 (synopsis "JSON::XS for Cpanel")
1700 (description "This module converts Perl data structures to JSON and vice
1701 versa.")
1702 (license (package-license perl))))
1703
1704 (define-public perl-crypt-randpasswd
1705 (package
1706 (name "perl-crypt-randpasswd")
1707 (version "0.06")
1708 (source
1709 (origin
1710 (method url-fetch)
1711 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1712 "Crypt-RandPasswd-" version ".tar.gz"))
1713 (sha256
1714 (base32
1715 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1716 (build-system perl-build-system)
1717 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
1718 (synopsis "Random password generator")
1719 (description "Crypt::RandPasswd provides three functions that can be used
1720 to generate random passwords, constructed from words, letters, or characters.
1721 This code is a Perl implementation of the Automated Password Generator
1722 standard, like the program described in \"A Random Word Generator For
1723 Pronounceable Passwords\". This code is a re-engineering of the program
1724 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1725 Password Generator\".")
1726 (license (package-license perl))))
1727
1728 (define-public perl-crypt-rc4
1729 (package
1730 (name "perl-crypt-rc4")
1731 (version "2.02")
1732 (source
1733 (origin
1734 (method url-fetch)
1735 (uri (string-append
1736 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1737 version
1738 ".tar.gz"))
1739 (sha256
1740 (base32
1741 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1742 (build-system perl-build-system)
1743 (home-page "https://metacpan.org/release//Crypt-RC4")
1744 (synopsis "Perl implementation of the RC4 encryption algorithm")
1745 (description "A pure Perl implementation of the RC4 algorithm.")
1746 (license (package-license perl))))
1747
1748 (define-public perl-cwd-guard
1749 (package
1750 (name "perl-cwd-guard")
1751 (version "0.05")
1752 (source (origin
1753 (method url-fetch)
1754 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1755 "Cwd-Guard-" version ".tar.gz"))
1756 (sha256
1757 (base32
1758 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1759 (build-system perl-build-system)
1760 (native-inputs
1761 `(("perl-module-build" ,perl-module-build)
1762 ("perl-test-requires" ,perl-test-requires)))
1763 (home-page "https://metacpan.org/release/Cwd-Guard")
1764 (synopsis "Temporarily change working directory")
1765 (description
1766 "@code{Cwd::Guard} changes the current directory using a limited scope.
1767 It returns to the previous working directory when the object is destroyed.")
1768 (license (package-license perl))))
1769
1770 (define-public perl-czplib
1771 (package
1772 (name "perl-czplib")
1773 (version "1.0.5")
1774 (source
1775 (origin
1776 (method url-fetch)
1777 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1778 version ".tgz"))
1779 (sha256
1780 (base32
1781 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1782 (modules '((guix build utils)))
1783 (snippet
1784 '(begin
1785 ;; Remove .git directory
1786 (delete-file-recursively ".git")
1787 #t))))
1788 (build-system perl-build-system)
1789 (arguments
1790 `(#:phases
1791 (modify-phases %standard-phases
1792 (delete 'configure)
1793 (delete 'build)
1794 (replace
1795 'install
1796 (lambda* (#:key outputs #:allow-other-keys)
1797 (copy-recursively "."
1798 (string-append (assoc-ref outputs "out")
1799 "/lib/perl5/site_perl/"
1800 ,(package-version perl)))
1801 #t)))))
1802 (home-page "https://sourceforge.net/projects/czplib/")
1803 (synopsis "Library for genomic analysis")
1804 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1805 functions and data structures for processing and analysing genomic and
1806 bioinformatics data.")
1807 (license gpl3+)))
1808
1809 (define-public perl-data
1810 (package
1811 (name "perl-data")
1812 (version "0.002009")
1813 (source
1814 (origin
1815 (method url-fetch)
1816 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1817 "Data-Perl-" version ".tar.gz"))
1818 (sha256
1819 (base32
1820 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1821 (build-system perl-build-system)
1822 (native-inputs
1823 `(("perl-test-deep" ,perl-test-deep)
1824 ("perl-test-output" ,perl-test-output)
1825 ("perl-test-fatal" ,perl-test-fatal)))
1826 (inputs
1827 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1828 ("perl-list-moreutils" ,perl-list-moreutils)
1829 ("perl-module-runtime" ,perl-module-runtime)
1830 ("perl-role-tiny" ,perl-role-tiny)
1831 ("perl-strictures" ,perl-strictures)))
1832 (home-page "https://metacpan.org/release/Data-Perl")
1833 (synopsis "Base classes wrapping fundamental Perl data types")
1834 (description "Collection of classes that wrap fundamental data types that
1835 exist in Perl. These classes and methods as they exist today are an attempt
1836 to mirror functionality provided by Moose's Native Traits. One important
1837 thing to note is all classes currently do no validation on constructor
1838 input.")
1839 (license (package-license perl))))
1840
1841 (define-public perl-data-compare
1842 (package
1843 (name "perl-data-compare")
1844 (version "1.27")
1845 (source
1846 (origin
1847 (method url-fetch)
1848 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1849 "Data-Compare-" version ".tar.gz"))
1850 (sha256
1851 (base32 "1gg8rqbv3x6a1lrpabv6vnlab53zxmpwz2ygad9fcx4gygqj12l1"))))
1852 (build-system perl-build-system)
1853 (propagated-inputs
1854 `(("perl-clone" ,perl-clone)
1855 ("perl-file-find-rule" ,perl-file-find-rule)))
1856 (home-page "https://metacpan.org/release/Data-Compare")
1857 (synopsis "Compare Perl data structures")
1858 (description "This module compares arbitrary data structures to see if
1859 they are copies of each other.")
1860 (license (package-license perl))))
1861
1862 (define-public perl-data-uniqid
1863 (package
1864 (name "perl-data-uniqid")
1865 (version "0.12")
1866 (source
1867 (origin
1868 (method url-fetch)
1869 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1870 version ".tar.gz"))
1871 (sha256
1872 (base32
1873 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1874 (build-system perl-build-system)
1875 (home-page "https://metacpan.org/release/Data-Uniqid")
1876 (synopsis "Perl extension for generating unique identifiers")
1877 (description "@code{Data::Uniqid} provides three simple routines for
1878 generating unique ids. These ids are coded with a Base62 system to make them
1879 short and handy (e.g. to use it as part of a URL).")
1880 (license (package-license perl))))
1881
1882 (define-public perl-data-dump
1883 (package
1884 (name "perl-data-dump")
1885 (version "1.23")
1886 (source
1887 (origin
1888 (method url-fetch)
1889 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1890 "Data-Dump-" version ".tar.gz"))
1891 (sha256
1892 (base32
1893 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1894 (build-system perl-build-system)
1895 (home-page "https://metacpan.org/release/Data-Dump")
1896 (synopsis "Pretty printing of data structures")
1897 (description "This module provide functions that takes a list of values as
1898 their argument and produces a string as its result. The string contains Perl
1899 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1900 (license (package-license perl))))
1901
1902 (define-public perl-data-dumper
1903 (package
1904 (name "perl-data-dumper")
1905 (version "2.173")
1906 (source
1907 (origin
1908 (method url-fetch)
1909 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
1910 "Data-Dumper-" version ".tar.gz"))
1911 (sha256
1912 (base32
1913 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
1914 (build-system perl-build-system)
1915 (home-page "https://metacpan.org/release/Data-Dumper")
1916 (synopsis "Convert data structures to strings")
1917 (description "Given a list of scalars or reference variables,
1918 @code{Data::Dumper} writes out their contents in Perl syntax. The references
1919 can also be objects. The content of each variable is output in a single Perl
1920 statement. It handles self-referential structures correctly.")
1921 (license perl-license)))
1922
1923 (define-public perl-data-dumper-concise
1924 (package
1925 (name "perl-data-dumper-concise")
1926 (version "2.023")
1927 (source
1928 (origin
1929 (method url-fetch)
1930 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1931 "Data-Dumper-Concise-" version ".tar.gz"))
1932 (sha256
1933 (base32
1934 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1935 (build-system perl-build-system)
1936 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
1937 (synopsis "Concise data dumper")
1938 (description "Data::Dumper::Concise provides a dumper with Less
1939 indentation and newlines plus sub deparsing.")
1940 (license (package-license perl))))
1941
1942 (define-public perl-data-optlist
1943 (package
1944 (name "perl-data-optlist")
1945 (version "0.110")
1946 (source
1947 (origin
1948 (method url-fetch)
1949 (uri (string-append
1950 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1951 version ".tar.gz"))
1952 (sha256
1953 (base32
1954 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1955 (build-system perl-build-system)
1956 (propagated-inputs
1957 `(("perl-sub-install" ,perl-sub-install)
1958 ("perl-params-util" ,perl-params-util)))
1959 (home-page "https://metacpan.org/release/Data-OptList")
1960 (synopsis "Parse and validate simple name/value option pairs")
1961 (description
1962 "Data::OptList provides a simple syntax for name/value option pairs.")
1963 (license (package-license perl))))
1964
1965 (define-public perl-data-page
1966 (package
1967 (name "perl-data-page")
1968 (version "2.03")
1969 (source
1970 (origin
1971 (method url-fetch)
1972 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1973 "Data-Page-" version ".tar.gz"))
1974 (sha256
1975 (base32 "12rxrr2b11qjk0c437cisw2kfqkafw1awcng09cv6yhzglb55yif"))))
1976 (build-system perl-build-system)
1977 (native-inputs
1978 `(("perl-module-build" ,perl-module-build)
1979 ("perl-test-exception" ,perl-test-exception)))
1980 (propagated-inputs
1981 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1982 (home-page "https://metacpan.org/release/Data-Page")
1983 (synopsis "Help when paging through sets of results")
1984 (description "When searching through large amounts of data, it is often
1985 the case that a result set is returned that is larger than we want to display
1986 on one page. This results in wanting to page through various pages of data.
1987 The maths behind this is unfortunately fiddly, hence this module.")
1988 (license (package-license perl))))
1989
1990 (define-public perl-data-perl
1991 (package
1992 (name "perl-data-perl")
1993 (version "0.002009")
1994 (source
1995 (origin
1996 (method url-fetch)
1997 (uri (string-append
1998 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1999 version
2000 ".tar.gz"))
2001 (sha256
2002 (base32
2003 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2004 (build-system perl-build-system)
2005 (native-inputs
2006 `(("perl-test-deep" ,perl-test-deep)
2007 ("perl-test-fatal" ,perl-test-fatal)
2008 ("perl-test-output" ,perl-test-output)))
2009 (inputs
2010 `(("perl-class-method-modifiers"
2011 ,perl-class-method-modifiers)
2012 ("perl-module-runtime" ,perl-module-runtime)
2013 ("perl-role-tiny" ,perl-role-tiny)
2014 ("perl-strictures" ,perl-strictures)))
2015 (propagated-inputs
2016 `(("perl-list-moreutils" ,perl-list-moreutils)))
2017 (home-page
2018 "https://metacpan.org/release/Data-Perl")
2019 (synopsis "Base classes wrapping fundamental Perl data types")
2020 (description
2021 "@code{Data::Perl} is a container class for the following classes:
2022 @itemize
2023 @item @code{Data::Perl::Collection::Hash}
2024 @item @code{Data::Perl::Collection::Array}
2025 @item @code{Data::Perl::String}
2026 @item @code{Data::Perl::Number}
2027 @item @code{Data::Perl::Counter}
2028 @item @code{Data::Perl::Bool}
2029 @item @code{Data::Perl::Code}
2030 @end itemize")
2031 (license perl-license)))
2032
2033 (define-public perl-data-printer
2034 (package
2035 (name "perl-data-printer")
2036 (version "0.40")
2037 (source
2038 (origin
2039 (method url-fetch)
2040 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
2041 version ".tar.gz"))
2042 (sha256
2043 (base32
2044 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
2045 (build-system perl-build-system)
2046 (propagated-inputs
2047 `(("perl-clone-pp" ,perl-clone-pp)
2048 ("perl-file-homedir" ,perl-file-homedir)
2049 ("perl-package-stash" ,perl-package-stash)
2050 ("perl-sort-naturally" ,perl-sort-naturally)))
2051 (home-page "https://metacpan.org/release/Data-Printer")
2052 (synopsis "Colored pretty-print of Perl data structures and objects")
2053 (description "Display Perl variables and objects on screen, properly
2054 formatted (to be inspected by a human).")
2055 (license (package-license perl))))
2056
2057 (define-public perl-data-record
2058 (package
2059 (name "perl-data-record")
2060 (version "0.02")
2061 (source
2062 (origin
2063 (method url-fetch)
2064 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
2065 "Data-Record-" version ".tar.gz"))
2066 (sha256
2067 (base32
2068 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
2069 (build-system perl-build-system)
2070 (native-inputs
2071 `(("perl-test-exception" ,perl-test-exception)
2072 ("perl-module-build" ,perl-module-build)))
2073 (propagated-inputs
2074 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
2075 (home-page "https://metacpan.org/release/Data-Record")
2076 (synopsis "Conditionally split data into records")
2077 (description "This Perl module allows you to split data into records by
2078 not only specifying what you wish to split the data on, but also by specifying
2079 an \"unless\" regular expression. If the text in question matches the
2080 \"unless\" regex, it will not be split there. This allows us to do things
2081 like split on newlines unless newlines are embedded in quotes.")
2082 (license (package-license perl))))
2083
2084 (define-public perl-data-section
2085 (package
2086 (name "perl-data-section")
2087 (version "0.200007")
2088 (source
2089 (origin
2090 (method url-fetch)
2091 (uri (string-append
2092 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
2093 version
2094 ".tar.gz"))
2095 (sha256
2096 (base32
2097 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
2098 (build-system perl-build-system)
2099 (native-inputs
2100 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
2101 (propagated-inputs
2102 `(("perl-mro-compat" ,perl-mro-compat)
2103 ("perl-sub-exporter" ,perl-sub-exporter)))
2104 (home-page "https://metacpan.org/release/Data-Section")
2105 (synopsis "Read multiple hunks of data out of your DATA section")
2106 (description "This package provides a Perl library to read multiple hunks
2107 of data out of your DATA section.")
2108 (license (package-license perl))))
2109
2110 (define-public perl-data-stag
2111 (package
2112 (name "perl-data-stag")
2113 (version "0.14")
2114 (source
2115 (origin
2116 (method url-fetch)
2117 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
2118 "Data-Stag-" version ".tar.gz"))
2119 (sha256
2120 (base32
2121 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
2122 (build-system perl-build-system)
2123 (propagated-inputs
2124 `(("perl-io-string" ,perl-io-string)))
2125 (home-page "https://metacpan.org/release/Data-Stag")
2126 (synopsis "Structured tags datastructures")
2127 (description
2128 "This module is for manipulating data as hierarchical tag/value
2129 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2130 be represented as nested arrays, which have the advantage of being native to
2131 Perl.")
2132 (license (package-license perl))))
2133
2134 (define-public perl-data-stream-bulk
2135 (package
2136 (name "perl-data-stream-bulk")
2137 (version "0.11")
2138 (source
2139 (origin
2140 (method url-fetch)
2141 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2142 "Data-Stream-Bulk-" version ".tar.gz"))
2143 (sha256
2144 (base32
2145 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2146 (build-system perl-build-system)
2147 (native-inputs
2148 `(("perl-test-requires" ,perl-test-requires)))
2149 (propagated-inputs
2150 `(("perl-moose" ,perl-moose)
2151 ("perl-namespace-clean" ,perl-namespace-clean)
2152 ("perl-path-class" ,perl-path-class)
2153 ("perl-sub-exporter" ,perl-sub-exporter)))
2154 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2155 (synopsis "N at a time iteration API")
2156 (description "This module tries to find middle ground between one at a
2157 time and all at once processing of data sets. The purpose of this module is
2158 to avoid the overhead of implementing an iterative api when this isn't
2159 necessary, without breaking forward compatibility in case that becomes
2160 necessary later on.")
2161 (license (package-license perl))))
2162
2163 (define-public perl-data-tumbler
2164 (package
2165 (name "perl-data-tumbler")
2166 (version "0.010")
2167 (source
2168 (origin
2169 (method url-fetch)
2170 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2171 "Data-Tumbler-" version ".tar.gz"))
2172 (sha256
2173 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2174 (build-system perl-build-system)
2175 (native-inputs
2176 `(("perl-test-most" ,perl-test-most)))
2177 (propagated-inputs
2178 `(("perl-file-homedir" ,perl-file-homedir)))
2179 (home-page "https://metacpan.org/release/Data-Tumbler")
2180 (synopsis "Dynamic generation of nested combinations of variants")
2181 (description "Data::Tumbler - Dynamic generation of nested combinations of
2182 variants.")
2183 (license (package-license perl))))
2184
2185 (define-public perl-data-visitor
2186 (package
2187 (name "perl-data-visitor")
2188 (version "0.30")
2189 (source
2190 (origin
2191 (method url-fetch)
2192 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2193 "Data-Visitor-" version ".tar.gz"))
2194 (sha256
2195 (base32
2196 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2197 (build-system perl-build-system)
2198 (native-inputs
2199 `(("perl-test-requires" ,perl-test-requires)))
2200 (propagated-inputs
2201 `(("perl-class-load" ,perl-class-load)
2202 ("perl-moose" ,perl-moose)
2203 ("perl-namespace-clean" ,perl-namespace-clean)
2204 ("perl-task-weaken" ,perl-task-weaken)
2205 ("perl-tie-toobject" ,perl-tie-toobject)))
2206 (home-page "https://metacpan.org/release/Data-Visitor")
2207 (synopsis "Visitor style traversal of Perl data structures")
2208 (description "This module is a simple visitor implementation for Perl
2209 values. It has a main dispatcher method, visit, which takes a single perl
2210 value and then calls the methods appropriate for that value. It can
2211 recursively map (cloning as necessary) or just traverse most structures, with
2212 support for per-object behavior, circular structures, visiting tied
2213 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2214 (license (package-license perl))))
2215
2216 (define-public perl-date-calc
2217 (package
2218 (name "perl-date-calc")
2219 (version "6.4")
2220 (source
2221 (origin
2222 (method url-fetch)
2223 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2224 "Date-Calc-" version ".tar.gz"))
2225 (sha256
2226 (base32
2227 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2228 (build-system perl-build-system)
2229 (propagated-inputs
2230 `(("perl-bit-vector" ,perl-bit-vector)
2231 ("perl-carp-clan" ,perl-carp-clan)))
2232 (home-page "https://metacpan.org/release/Date-Calc")
2233 (synopsis "Gregorian calendar date calculations")
2234 (description "This package consists of a Perl module for date calculations
2235 based on the Gregorian calendar, thereby complying with all relevant norms and
2236 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2237 applicable).")
2238 (license (package-license perl))))
2239
2240 (define-public perl-date-calc-xs
2241 (package
2242 (name "perl-date-calc-xs")
2243 (version "6.4")
2244 (source
2245 (origin
2246 (method url-fetch)
2247 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2248 "Date-Calc-XS-" version ".tar.gz"))
2249 (sha256
2250 (base32
2251 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2252 (build-system perl-build-system)
2253 (propagated-inputs
2254 `(("perl-bit-vector" ,perl-bit-vector)
2255 ("perl-carp-clan" ,perl-carp-clan)
2256 ("perl-date-calc" ,perl-date-calc)))
2257 (home-page "https://metacpan.org/release/Date-Calc-XS")
2258 (synopsis "XS wrapper for Date::Calc")
2259 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2260 Date::Calc.")
2261 (license (list (package-license perl) lgpl2.0+))))
2262
2263 (define-public perl-date-manip
2264 (package
2265 (name "perl-date-manip")
2266 (version "6.78")
2267 (source
2268 (origin
2269 (method url-fetch)
2270 (uri (string-append "mirror://cpan/authors/id/S/SB/SBECK/"
2271 "Date-Manip-" version ".tar.gz"))
2272 (sha256
2273 (base32 "1faxj6gafrqir9hvy9r8q57s93n57b412s04qycrks7r0520hdnb"))))
2274 (build-system perl-build-system)
2275 (arguments
2276 ;; Tests would require tzdata for timezone information, but tzdata is in
2277 ;; (gnu packages base) which would create a circular dependency. TODO:
2278 ;; Maybe put this package elsewhere so we can turn on tests.
2279 '(#:tests? #f))
2280 (home-page "https://metacpan.org/release/Date-Manip")
2281 (synopsis "Date manipulation routines")
2282 (description "Date::Manip is a series of modules for common date/time
2283 operations, such as comparing two times, determining a date a given amount of
2284 time from another, or parsing international times.")
2285 (license (package-license perl))))
2286
2287 (define-public perl-date-simple
2288 (package
2289 (name "perl-date-simple")
2290 (version "3.03")
2291 (source
2292 (origin
2293 (method url-fetch)
2294 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2295 "Date-Simple-" version ".tar.gz"))
2296 (sha256
2297 (base32
2298 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2299 (build-system perl-build-system)
2300 (home-page "https://metacpan.org/release/Date-Simple")
2301 (synopsis "Simple date handling")
2302 (description "Dates are complex enough without times and timezones. This
2303 module may be used to create simple date objects. It handles validation,
2304 interval arithmetic, and day-of-week calculation. It does not deal with
2305 hours, minutes, seconds, and time zones.")
2306 ;; Can be used with either license.
2307 (license (list (package-license perl) gpl2+))))
2308
2309 (define-public perl-datetime
2310 (package
2311 (name "perl-datetime")
2312 (version "1.51")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2317 "DateTime-" version ".tar.gz"))
2318 (sha256
2319 (base32 "1ibfq6acz1ih28vl613yygbb3r2d8ykx6di669vajhvswl6xl8ny"))))
2320 (build-system perl-build-system)
2321 (native-inputs
2322 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2323 ("perl-module-build" ,perl-module-build)
2324 ("perl-test-fatal" ,perl-test-fatal)
2325 ("perl-test-warnings" ,perl-test-warnings)))
2326 (propagated-inputs
2327 `(("perl-datetime-locale" ,perl-datetime-locale)
2328 ("perl-datetime-timezone" ,perl-datetime-timezone)
2329 ("perl-file-sharedir" ,perl-file-sharedir)
2330 ("perl-params-validate" ,perl-params-validate)
2331 ("perl-try-tiny" ,perl-try-tiny)))
2332 (home-page "https://metacpan.org/release/DateTime")
2333 (synopsis "Date and time object for Perl")
2334 (description "DateTime is a class for the representation of date/time
2335 combinations. It represents the Gregorian calendar, extended backwards in
2336 time before its creation (in 1582).")
2337 (license artistic2.0)))
2338
2339 (define-public perl-datetime-calendar-julian
2340 (package
2341 (name "perl-datetime-calendar-julian")
2342 (version "0.102")
2343 (source
2344 (origin
2345 (method url-fetch)
2346 (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/"
2347 "DateTime-Calendar-Julian-" version ".tar.gz"))
2348 (sha256
2349 (base32 "0j95dhma66spjyb04zi6rwy7l33hibnrx02mn0znd9m89aiq52s6"))))
2350 (build-system perl-build-system)
2351 ;; Only needed for tests
2352 (native-inputs
2353 `(("perl-datetime" ,perl-datetime)))
2354 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2355 (synopsis "Dates in the Julian calendar")
2356 (description "This package is a companion module to @code{DateTime.pm}.
2357 It implements the Julian calendar. It supports everything that
2358 @code{DateTime.pm} supports and more: about one day per century more, to be
2359 precise.")
2360 (license (package-license perl))))
2361
2362 (define-public perl-datetime-set
2363 (package
2364 (name "perl-datetime-set")
2365 (version "0.3900")
2366 (source
2367 (origin
2368 (method url-fetch)
2369 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2370 "DateTime-Set-" version ".tar.gz"))
2371 (sha256
2372 (base32
2373 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2374 (build-system perl-build-system)
2375 (native-inputs
2376 `(("perl-module-build" ,perl-module-build)))
2377 (propagated-inputs
2378 `(("perl-datetime" ,perl-datetime)
2379 ("perl-params-validate" ,perl-params-validate)
2380 ("perl-set-infinite" ,perl-set-infinite)))
2381 (home-page "https://metacpan.org/release/DateTime-Set")
2382 (synopsis "DateTime set objects")
2383 (description "The DateTime::Set module provides a date/time sets
2384 implementation. It allows, for example, the generation of groups of dates,
2385 like \"every wednesday\", and then find all the dates matching that pattern,
2386 within a time range.")
2387 (license (package-license perl))))
2388
2389 (define-public perl-datetime-event-ical
2390 (package
2391 (name "perl-datetime-event-ical")
2392 (version "0.13")
2393 (source
2394 (origin
2395 (method url-fetch)
2396 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2397 "DateTime-Event-ICal-" version ".tar.gz"))
2398 (sha256
2399 (base32
2400 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2401 (build-system perl-build-system)
2402 (propagated-inputs
2403 `(("perl-datetime" ,perl-datetime)
2404 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2405 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2406 (synopsis "DateTime rfc2445 recurrences")
2407 (description "This module provides convenience methods that let you easily
2408 create DateTime::Set objects for RFC 2445 style recurrences.")
2409 (license (package-license perl))))
2410
2411 (define-public perl-datetime-event-recurrence
2412 (package
2413 (name "perl-datetime-event-recurrence")
2414 (version "0.19")
2415 (source
2416 (origin
2417 (method url-fetch)
2418 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2419 "DateTime-Event-Recurrence-" version ".tar.gz"))
2420 (sha256
2421 (base32
2422 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2423 (build-system perl-build-system)
2424 (propagated-inputs
2425 `(("perl-datetime" ,perl-datetime)
2426 ("perl-datetime-set" ,perl-datetime-set)))
2427 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2428 (synopsis "DateTime::Set extension for basic recurrences")
2429 (description "This module provides convenience methods that let you easily
2430 create DateTime::Set objects for various recurrences, such as \"once a month\"
2431 or \"every day\". You can also create more complicated recurrences, such as
2432 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2433 (license (package-license perl))))
2434
2435 (define-public perl-datetime-format-builder
2436 (package
2437 (name "perl-datetime-format-builder")
2438 (version "0.82")
2439 (source
2440 (origin
2441 (method url-fetch)
2442 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2443 "DateTime-Format-Builder-" version ".tar.gz"))
2444 (sha256
2445 (base32
2446 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
2447 (build-system perl-build-system)
2448 (propagated-inputs
2449 `(("perl-class-factory-util" ,perl-class-factory-util)
2450 ("perl-datetime" ,perl-datetime)
2451 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2452 ("perl-params-validate" ,perl-params-validate)))
2453 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
2454 (synopsis "Create DateTime parser classes and objects")
2455 (description "DateTime::Format::Builder creates DateTime parsers. Many
2456 string formats of dates and times are simple and just require a basic regular
2457 expression to extract the relevant information. Builder provides a simple way
2458 to do this without writing reams of structural code.")
2459 (license artistic2.0)))
2460
2461 (define-public perl-datetime-format-flexible
2462 (package
2463 (name "perl-datetime-format-flexible")
2464 (version "0.32")
2465 (source
2466 (origin
2467 (method url-fetch)
2468 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2469 "DateTime-Format-Flexible-" version ".tar.gz"))
2470 (sha256
2471 (base32 "1vnq3a8bwhidcv3z9cvcmfiq2qa84hikr993ffr19fw7nbzbk9sh"))))
2472 (build-system perl-build-system)
2473 (native-inputs
2474 `(("perl-test-exception" ,perl-test-exception)
2475 ("perl-test-nowarnings" ,perl-test-nowarnings)
2476 ("perl-test-mocktime" ,perl-test-mocktime)))
2477 (propagated-inputs
2478 `(("perl-datetime" ,perl-datetime)
2479 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2480 ("perl-datetime-timezone" ,perl-datetime-timezone)
2481 ("perl-list-moreutils" ,perl-list-moreutils)
2482 ("perl-module-pluggable" ,perl-module-pluggable)))
2483 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
2484 (synopsis "Parse date and time strings")
2485 (description "DateTime::Format::Flexible attempts to take any string you
2486 give it and parse it into a DateTime object.")
2487 (license (package-license perl))))
2488
2489 (define-public perl-datetime-format-ical
2490 (package
2491 (name "perl-datetime-format-ical")
2492 (version "0.09")
2493 (source
2494 (origin
2495 (method url-fetch)
2496 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2497 "DateTime-Format-ICal-" version ".tar.gz"))
2498 (sha256
2499 (base32
2500 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2501 (build-system perl-build-system)
2502 (native-inputs
2503 `(("perl-module-build" ,perl-module-build)))
2504 (propagated-inputs
2505 `(("perl-datetime" ,perl-datetime)
2506 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2507 ("perl-datetime-set" ,perl-datetime-set)
2508 ("perl-datetime-timezone" ,perl-datetime-timezone)
2509 ("perl-params-validate" ,perl-params-validate)))
2510 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
2511 (synopsis "Parse and format iCal datetime and duration strings")
2512 (description "This module understands the ICal date/time and duration
2513 formats, as defined in RFC 2445. It can be used to parse these formats in
2514 order to create the appropriate objects.")
2515 (license (package-license perl))))
2516
2517 (define-public perl-datetime-format-natural
2518 (package
2519 (name "perl-datetime-format-natural")
2520 (version "1.06")
2521 (source
2522 (origin
2523 (method url-fetch)
2524 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2525 "DateTime-Format-Natural-" version ".tar.gz"))
2526 (sha256
2527 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
2528 (build-system perl-build-system)
2529 (native-inputs
2530 `(("perl-module-build" ,perl-module-build)
2531 ("perl-module-util" ,perl-module-util)
2532 ("perl-test-mocktime" ,perl-test-mocktime)))
2533 (propagated-inputs
2534 `(("perl-boolean" ,perl-boolean)
2535 ("perl-clone" ,perl-clone)
2536 ("perl-date-calc" ,perl-date-calc)
2537 ("perl-date-calc-xs" ,perl-date-calc-xs)
2538 ("perl-datetime" ,perl-datetime)
2539 ("perl-datetime-timezone" ,perl-datetime-timezone)
2540 ("perl-list-moreutils" ,perl-list-moreutils)
2541 ("perl-params-validate" ,perl-params-validate)))
2542 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
2543 (synopsis "Machine-readable date/time with natural parsing")
2544 (description "DateTime::Format::Natural takes a string with a human
2545 readable date/time and creates a machine readable one by applying natural
2546 parsing logic.")
2547 (license (package-license perl))))
2548
2549 (define-public perl-datetime-format-strptime
2550 (package
2551 (name "perl-datetime-format-strptime")
2552 (version "1.76")
2553 (source
2554 (origin
2555 (method url-fetch)
2556 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2557 "DateTime-Format-Strptime-" version ".tar.gz"))
2558 (sha256
2559 (base32
2560 "03dmzi9n6jmnfjmf0ld5sdmi3ib6jrhz25cjzv7d58ypdr32cg2r"))))
2561 (build-system perl-build-system)
2562 (propagated-inputs
2563 `(("perl-datetime" ,perl-datetime)
2564 ("perl-datetime-locale" ,perl-datetime-locale)
2565 ("perl-datetime-timezone" ,perl-datetime-timezone)
2566 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2567 ("perl-params-validate" ,perl-params-validate)
2568 ("perl-sub-name" ,perl-sub-name)
2569 ("perl-test-warnings" ,perl-test-warnings)))
2570 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
2571 (synopsis "Parse and format strp and strf time patterns")
2572 (description "This module implements most of `strptime(3)`, the POSIX
2573 function that is the reverse of `strftime(3)`, for `DateTime`. While
2574 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2575 takes a string and a pattern and returns the `DateTime` object associated.")
2576 (license artistic2.0)))
2577
2578 (define-public perl-datetime-locale
2579 (package
2580 (name "perl-datetime-locale")
2581 (version "1.23")
2582 (source
2583 (origin
2584 (method url-fetch)
2585 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2586 "DateTime-Locale-" version ".tar.gz"))
2587 (sha256
2588 (base32
2589 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
2590 (build-system perl-build-system)
2591 (native-inputs
2592 `(("perl-file-sharedir" ,perl-file-sharedir)
2593 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
2594 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2595 ("perl-test-warnings" ,perl-test-warnings)
2596 ("perl-test-requires" ,perl-test-requires)
2597 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2598 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2599 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2600 ("perl-module-build" ,perl-module-build)))
2601 (propagated-inputs
2602 `(("perl-list-moreutils" ,perl-list-moreutils)
2603 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2604 (home-page "https://metacpan.org/release/DateTime-Locale")
2605 (synopsis "Localization support for DateTime.pm")
2606 (description "The DateTime::Locale modules provide localization data for
2607 the DateTime.pm class.")
2608 (license (package-license perl))))
2609
2610 (define-public perl-datetime-timezone
2611 (package
2612 (name "perl-datetime-timezone")
2613 (version "2.23")
2614 (source
2615 (origin
2616 (method url-fetch)
2617 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2618 "DateTime-TimeZone-" version ".tar.gz"))
2619 (sha256
2620 (base32
2621 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
2622 (build-system perl-build-system)
2623 (arguments
2624 '(#:phases
2625 (modify-phases %standard-phases
2626 (add-after 'unpack 'patch-tzdata
2627 (lambda* (#:key inputs #:allow-other-keys)
2628 (substitute* "lib/DateTime/TimeZone/Local/Unix.pm"
2629 (("our \\$ZoneinfoDir = '\\/usr\\/share\\/zoneinfo';")
2630 (string-append "our $ZoneinfoDir = '"
2631 (assoc-ref inputs "tzdata") "/share/zoneinfo"
2632 "';")))
2633 #t)))))
2634 (native-inputs
2635 `(("perl-test-fatal" ,perl-test-fatal)
2636 ("perl-test-requires" ,perl-test-requires)))
2637 (inputs
2638 `(("tzdata" ,tzdata)))
2639 (propagated-inputs
2640 `(("perl-class-singleton" ,perl-class-singleton)
2641 ("perl-list-allutils" ,perl-list-allutils)
2642 ("perl-module-runtime" ,perl-module-runtime)
2643 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2644 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2645 ("perl-try-tiny" ,perl-try-tiny)))
2646 (home-page "https://metacpan.org/release/DateTime-TimeZone")
2647 (synopsis "Time zone object for Perl")
2648 (description "This class is the base class for all time zone objects. A
2649 time zone is represented internally as a set of observances, each of which
2650 describes the offset from GMT for a given time period. Note that without the
2651 DateTime module, this module does not do much. It's primary interface is
2652 through a DateTime object, and most users will not need to directly use
2653 DateTime::TimeZone methods.")
2654 (license (package-license perl))))
2655
2656 (define-public perl-datetimex-easy
2657 (package
2658 (name "perl-datetimex-easy")
2659 (version "0.089")
2660 (source
2661 (origin
2662 (method url-fetch)
2663 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2664 "DateTimeX-Easy-" version ".tar.gz"))
2665 (sha256
2666 (base32
2667 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2668 (build-system perl-build-system)
2669 (native-inputs
2670 `(("perl-test-most" ,perl-test-most)))
2671 (propagated-inputs
2672 `(("perl-datetime" ,perl-datetime)
2673 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2674 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2675 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2676 ("perl-timedate" ,perl-timedate)))
2677 (home-page "https://metacpan.org/release/DateTimeX-Easy")
2678 (synopsis "Parse date/time strings")
2679 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2680 to create DateTime objects, with some custom tweaks to smooth out the rough
2681 edges (mainly concerning timezone detection and selection).")
2682 (license (package-license perl))))
2683
2684 (define-public perl-datetime-format-mail
2685 (package
2686 (name "perl-datetime-format-mail")
2687 (version "0.403")
2688 (source (origin
2689 (method url-fetch)
2690 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2691 "DateTime-Format-Mail-" version ".tar.gz"))
2692 (sha256
2693 (base32
2694 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2695 (build-system perl-build-system)
2696 (inputs
2697 `(("perl-datetime" ,perl-datetime)
2698 ("perl-params-validate" ,perl-params-validate)))
2699 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
2700 (synopsis "Convert between DateTime and RFC2822/822 formats")
2701 (description "RFCs 2822 and 822 specify date formats to be used by email.
2702 This module parses and emits such dates.")
2703 (license (package-license perl))))
2704
2705 (define-public perl-datetime-format-w3cdtf
2706 (package
2707 (name "perl-datetime-format-w3cdtf")
2708 (version "0.07")
2709 (source (origin
2710 (method url-fetch)
2711 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2712 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2713 (sha256
2714 (base32
2715 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2716 (build-system perl-build-system)
2717 (inputs
2718 `(("perl-datetime" ,perl-datetime)))
2719 (native-inputs
2720 `(("perl-test-pod" ,perl-test-pod)
2721 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2722 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
2723 (synopsis "Parse and format W3CDTF datetime strings")
2724 (description
2725 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2726 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2727 format of RSS 1.0. It can be used to parse these formats in order to create
2728 the appropriate objects.")
2729 (license (package-license perl))))
2730
2731 (define-public perl-devel-caller
2732 (package
2733 (name "perl-devel-caller")
2734 (version "2.06")
2735 (source
2736 (origin
2737 (method url-fetch)
2738 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2739 "Devel-Caller-" version ".tar.gz"))
2740 (sha256
2741 (base32
2742 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2743 (build-system perl-build-system)
2744 (propagated-inputs
2745 `(("perl-padwalker" ,perl-padwalker)))
2746 (home-page "https://metacpan.org/release/Devel-Caller")
2747 (synopsis "Meatier version of caller")
2748 (description "Devel::Caller provides meatier version of caller.")
2749 (license (package-license perl))))
2750
2751 (define-public perl-devel-checkbin
2752 (package
2753 (name "perl-devel-checkbin")
2754 (version "0.04")
2755 (source
2756 (origin
2757 (method url-fetch)
2758 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2759 "Devel-CheckBin-" version ".tar.gz"))
2760 (sha256
2761 (base32
2762 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
2763 (build-system perl-build-system)
2764 (native-inputs `(("perl-module-build" ,perl-module-build)))
2765 (home-page "https://metacpan.org/release/Devel-CheckBin")
2766 (synopsis "Check that a command is available")
2767 (description "Devel::CheckBin is a perl module that checks whether a
2768 particular command is available.")
2769 (license (package-license perl))))
2770
2771 (define-public perl-devel-checklib
2772 (package
2773 (name "perl-devel-checklib")
2774 (version "1.14")
2775 (source
2776 (origin
2777 (method url-fetch)
2778 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
2779 version ".tar.gz"))
2780 (sha256
2781 (base32 "15621qh5gaan1sgmk9y9svl70nm8viw17x5h1kf0zknkk8lmw77j"))))
2782 (build-system perl-build-system)
2783 (native-inputs
2784 `(("perl-capture-tiny" ,perl-capture-tiny)
2785 ("perl-mock-config" ,perl-mock-config)))
2786 (home-page "https://metacpan.org/release/Devel-CheckLib")
2787 (synopsis "Check that a library is available")
2788 (description
2789 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
2790 C library and its headers are available. You can also check for the presence of
2791 particular functions in a library, or even that those functions return
2792 particular results.")
2793 (license perl-license)))
2794
2795 (define-public perl-devel-checkcompiler
2796 (package
2797 (name "perl-devel-checkcompiler")
2798 (version "0.07")
2799 (source (origin
2800 (method url-fetch)
2801 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2802 "Devel-CheckCompiler-" version ".tar.gz"))
2803 (sha256
2804 (base32
2805 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2806 (build-system perl-build-system)
2807 (native-inputs
2808 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2809 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
2810 (synopsis "Check compiler availability")
2811 (description "@code{Devel::CheckCompiler} is a tiny module to check
2812 whether a compiler is available. It can test for a C99 compiler, or
2813 you can tell it to compile a C source file with optional linker flags.")
2814 (license (package-license perl))))
2815
2816 (define-public perl-devel-cycle
2817 (package
2818 (name "perl-devel-cycle")
2819 (version "1.12")
2820 (source
2821 (origin
2822 (method url-fetch)
2823 (uri (string-append
2824 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2825 version
2826 ".tar.gz"))
2827 (sha256
2828 (base32
2829 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2830 (build-system perl-build-system)
2831 (home-page
2832 "https://metacpan.org/release/Devel-Cycle")
2833 (synopsis "Find memory cycles in objects")
2834 (description
2835 "@code{Devel::Cycle} This is a tool for finding circular references in
2836 objects and other types of references. Because of Perl's reference-count
2837 based memory management, circular references will cause memory leaks.")
2838 (license perl-license)))
2839
2840 (define-public perl-devel-globaldestruction
2841 (package
2842 (name "perl-devel-globaldestruction")
2843 (version "0.14")
2844 (source
2845 (origin
2846 (method url-fetch)
2847 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2848 "Devel-GlobalDestruction-" version ".tar.gz"))
2849 (sha256
2850 (base32
2851 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2852 (build-system perl-build-system)
2853 (propagated-inputs
2854 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2855 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
2856 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2857 (description "Devel::GlobalDestruction provides a function returning the
2858 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2859 (license (package-license perl))))
2860
2861 (define-public perl-devel-hide
2862 (package
2863 (name "perl-devel-hide")
2864 (version "0.0010")
2865 (source
2866 (origin
2867 (method url-fetch)
2868 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2869 version ".tar.gz"))
2870 (sha256
2871 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
2872 (build-system perl-build-system)
2873 (propagated-inputs
2874 `(("perl-test-pod" ,perl-test-pod)
2875 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2876 (home-page "https://metacpan.org/release/Devel-Hide")
2877 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2878 (description "Given a list of Perl modules/filenames, this module makes
2879 @code{require} and @code{use} statements fail (no matter whether the specified
2880 files/modules are installed or not).")
2881 (license (package-license perl))))
2882
2883 (define-public perl-devel-leak
2884 (package
2885 (name "perl-devel-leak")
2886 (version "0.03")
2887 (source
2888 (origin
2889 (method url-fetch)
2890 (uri (string-append "mirror://cpan/authors/id/N/NI/NI-S/"
2891 "Devel-Leak-" version ".tar.gz"))
2892 (sha256
2893 (base32
2894 "0lkj2xwc3lhxv7scl43r8kfmls4am0b98sqf5vmf7d72257w6hkg"))))
2895 (build-system perl-build-system)
2896 (home-page "https://metacpan.org/release/Devel-Leak")
2897 (synopsis "Utility for looking for perl objects that are not reclaimed")
2898 (description
2899 "This module provides a basic way to discover if a piece of perl code is
2900 allocating perl data and not releasing them again.")
2901 (license perl-license)))
2902
2903 (define-public perl-devel-lexalias
2904 (package
2905 (name "perl-devel-lexalias")
2906 (version "0.05")
2907 (source
2908 (origin
2909 (method url-fetch)
2910 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2911 "Devel-LexAlias-" version ".tar.gz"))
2912 (sha256
2913 (base32
2914 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2915 (build-system perl-build-system)
2916 (propagated-inputs
2917 `(("perl-devel-caller" ,perl-devel-caller)))
2918 (home-page "https://metacpan.org/release/Devel-LexAlias")
2919 (synopsis "Alias lexical variables")
2920 (description "Devel::LexAlias provides the ability to alias a lexical
2921 variable in a subroutines scope to one of your choosing.")
2922 (license (package-license perl))))
2923
2924 (define-public perl-devel-overloadinfo
2925 (package
2926 (name "perl-devel-overloadinfo")
2927 (version "0.005")
2928 (source
2929 (origin
2930 (method url-fetch)
2931 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2932 "Devel-OverloadInfo-" version ".tar.gz"))
2933 (sha256
2934 (base32
2935 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2936 (build-system perl-build-system)
2937 (native-inputs
2938 `(("perl-test-fatal" ,perl-test-fatal)))
2939 (propagated-inputs
2940 `(("perl-package-stash" ,perl-package-stash)
2941 ("perl-sub-identify" ,perl-sub-identify)
2942 ("perl-mro-compat" ,perl-mro-compat)))
2943 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
2944 (synopsis "Introspect overloaded operators")
2945 (description "Devel::OverloadInfo returns information about overloaded
2946 operators for a given class (or object), including where in the inheritance
2947 hierarchy the overloads are declared and where the code implementing it is.")
2948 (license (package-license perl))))
2949
2950 (define-public perl-devel-partialdump
2951 (package
2952 (name "perl-devel-partialdump")
2953 (version "0.18")
2954 (source
2955 (origin
2956 (method url-fetch)
2957 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2958 "Devel-PartialDump-" version ".tar.gz"))
2959 (sha256
2960 (base32
2961 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2962 (build-system perl-build-system)
2963 (native-inputs
2964 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2965 ("perl-test-warn" ,perl-test-warn)
2966 ("perl-test-simple" ,perl-test-simple)))
2967 (propagated-inputs
2968 `(("perl-class-tiny" ,perl-class-tiny)
2969 ("perl-sub-exporter" ,perl-sub-exporter)
2970 ("perl-namespace-clean" ,perl-namespace-clean)))
2971 (home-page "https://metacpan.org/release/Devel-PartialDump")
2972 (synopsis "Partial dumping of data structures")
2973 (description "This module is a data dumper optimized for logging of
2974 arbitrary parameters.")
2975 (license (package-license perl))))
2976
2977 (define-public perl-devel-stacktrace
2978 (package
2979 (name "perl-devel-stacktrace")
2980 (version "2.04")
2981 (source
2982 (origin
2983 (method url-fetch)
2984 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2985 "Devel-StackTrace-" version ".tar.gz"))
2986 (sha256
2987 (base32 "0mb8bngjq7s3kbh95h3ig4p3jfb156c4r0d53z344gbxaknh6g6d"))))
2988 (build-system perl-build-system)
2989 (home-page "https://metacpan.org/release/Devel-StackTrace")
2990 (synopsis "Object representing a stack trace")
2991 (description "The Devel::StackTrace module contains two classes,
2992 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2993 information that can be retrieved via Perl's caller() function, as well as
2994 providing a simple interface to this data.")
2995 (license artistic2.0)))
2996
2997 (define-public perl-devel-stacktrace-ashtml
2998 (package
2999 (name "perl-devel-stacktrace-ashtml")
3000 (version "0.15")
3001 (source
3002 (origin
3003 (method url-fetch)
3004 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3005 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
3006 (sha256
3007 (base32
3008 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
3009 (build-system perl-build-system)
3010 (propagated-inputs
3011 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
3012 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
3013 (synopsis "Displays stack trace in HTML")
3014 (description "Devel::StackTrace::AsHTML adds as_html method to
3015 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
3016 snippet context and function parameters. If you call it on an instance of
3017 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
3018 each stack frame.")
3019 (license (package-license perl))))
3020
3021 (define-public perl-devel-symdump
3022 (package
3023 (name "perl-devel-symdump")
3024 (version "2.18")
3025 (source
3026 (origin
3027 (method url-fetch)
3028 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
3029 "Devel-Symdump-" version ".tar.gz"))
3030 (sha256
3031 (base32
3032 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
3033 (build-system perl-build-system)
3034 (home-page "https://metacpan.org/release/Devel-Symdump")
3035 (synopsis "Dump symbol names or the symbol table")
3036 (description "Devel::Symdump provides access to the perl symbol table.")
3037 (license (package-license perl))))
3038
3039 (define-public perl-digest-hmac
3040 (package
3041 (name "perl-digest-hmac")
3042 (version "1.03")
3043 (source
3044 (origin
3045 (method url-fetch)
3046 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3047 "Digest-HMAC-" version ".tar.gz"))
3048 (sha256
3049 (base32
3050 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
3051 (build-system perl-build-system)
3052 (home-page "https://metacpan.org/release/Digest-HMAC")
3053 (synopsis "Keyed-Hashing for Message Authentication")
3054 (description "The Digest::HMAC module follows the common Digest::
3055 interface for the RFC 2104 HMAC mechanism.")
3056 (license (package-license perl))))
3057
3058 (define-public perl-digest-md5
3059 (package
3060 (name "perl-digest-md5")
3061 (version "2.55")
3062 (source
3063 (origin
3064 (method url-fetch)
3065 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
3066 version ".tar.gz"))
3067 (sha256
3068 (base32
3069 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
3070 (build-system perl-build-system)
3071 (arguments
3072 `(#:phases
3073 (modify-phases %standard-phases
3074 (add-after 'build 'set-permissions
3075 (lambda _
3076 ;; Make MD5.so read-write so it can be stripped.
3077 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
3078 #t)))))
3079 (home-page "https://metacpan.org/release/Digest-MD5")
3080 (synopsis "Perl interface to the MD-5 algorithm")
3081 (description
3082 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
3083 algorithm from within Perl programs. The algorithm takes as
3084 input a message of arbitrary length and produces as output a
3085 128-bit \"fingerprint\" or \"message digest\" of the input.")
3086 (license (package-license perl))))
3087
3088 (define-public perl-digest-sha1
3089 (package
3090 (name "perl-digest-sha1")
3091 (version "2.13")
3092 (source (origin
3093 (method url-fetch)
3094 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3095 "Digest-SHA1-" version ".tar.gz"))
3096 (sha256
3097 (base32
3098 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
3099 (build-system perl-build-system)
3100 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
3101 (description
3102 "This package provides @code{Digest::SHA1}, an implementation of the NIST
3103 SHA-1 message digest algorithm for use by Perl programs.")
3104 (home-page "https://metacpan.org/release/Digest-SHA1")
3105 (license (package-license perl))))
3106
3107 (define-public perl-dist-checkconflicts
3108 (package
3109 (name "perl-dist-checkconflicts")
3110 (version "0.11")
3111 (source (origin
3112 (method url-fetch)
3113 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3114 "Dist-CheckConflicts-" version ".tar.gz"))
3115 (sha256
3116 (base32
3117 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
3118 (build-system perl-build-system)
3119 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
3120 (propagated-inputs
3121 `(("perl-module-runtime" ,perl-module-runtime)))
3122 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
3123 (synopsis "Declare version conflicts for your dist")
3124 (description "This module allows you to specify conflicting versions of
3125 modules separately and deal with them after the module is done installing.")
3126 (license (package-license perl))))
3127
3128 (define-public perl-encode-detect
3129 (package
3130 (name "perl-encode-detect")
3131 (version "1.01")
3132 (source
3133 (origin
3134 (method url-fetch)
3135 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
3136 "Encode-Detect-" version ".tar.gz"))
3137 (sha256
3138 (base32
3139 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
3140 (build-system perl-build-system)
3141 (native-inputs
3142 `(("perl-module-build" ,perl-module-build)))
3143 (home-page "https://metacpan.org/release/Encode-Detect")
3144 (synopsis "Detect the encoding of data")
3145 (description "This package provides a class @code{Encode::Detect} to detect
3146 the encoding of data.")
3147 (license mpl1.1)))
3148
3149 (define-public perl-encode-eucjpascii
3150 (package
3151 (name "perl-encode-eucjpascii")
3152 (version "0.03")
3153 (source
3154 (origin
3155 (method url-fetch)
3156 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3157 "Encode-EUCJPASCII-" version ".tar.gz"))
3158 (sha256
3159 (base32
3160 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3161 (build-system perl-build-system)
3162 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3163 (synopsis "ASCII mapping for eucJP encoding")
3164 (description "This package provides an ASCII mapping for the eucJP
3165 encoding.")
3166 (license (package-license perl))))
3167
3168 (define-public perl-encode-jis2k
3169 (package
3170 (name "perl-encode-jis2k")
3171 (version "0.03")
3172 (source
3173 (origin
3174 (method url-fetch)
3175 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3176 "Encode-JIS2K-" version ".tar.gz"))
3177 (sha256
3178 (base32
3179 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3180 (build-system perl-build-system)
3181 (home-page "https://metacpan.org/release/Encode-JIS2K")
3182 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3183 (description "This package provides encodings for JIS X 0212, which is
3184 also known as JIS 2000.")
3185 (license (package-license perl))))
3186
3187 (define-public perl-encode-hanextra
3188 (package
3189 (name "perl-encode-hanextra")
3190 (version "0.23")
3191 (source
3192 (origin
3193 (method url-fetch)
3194 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3195 "Encode-HanExtra-" version ".tar.gz"))
3196 (sha256
3197 (base32
3198 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3199 (build-system perl-build-system)
3200 (arguments
3201 '(#:phases
3202 (modify-phases %standard-phases
3203 (add-after 'unpack 'set-env
3204 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3205 (home-page "https://metacpan.org/release/Encode-HanExtra")
3206 (synopsis "Additional Chinese encodings")
3207 (description "This Perl module provides Chinese encodings that are not
3208 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3209 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3210 \"UNISYS\".")
3211 (license expat)))
3212
3213 (define-public perl-env-path
3214 (package
3215 (name "perl-env-path")
3216 (version "0.19")
3217 (source
3218 (origin
3219 (method url-fetch)
3220 (uri (string-append
3221 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3222 version
3223 ".tar.gz"))
3224 (sha256
3225 (base32
3226 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3227 (build-system perl-build-system)
3228 (home-page "https://metacpan.org/release/Env-Path")
3229 (synopsis "Advanced operations on path variables")
3230 (description "@code{Env::Path} presents an object-oriented interface to
3231 path variables, defined as that subclass of environment variables which name
3232 an ordered list of file system elements separated by a platform-standard
3233 separator.")
3234 (license (package-license perl))))
3235
3236 (define-public perl-error
3237 (package
3238 (name "perl-error")
3239 (version "0.17028")
3240 (source (origin
3241 (method url-fetch)
3242 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3243 "Error-" version ".tar.gz"))
3244 (sha256
3245 (base32
3246 "0q796nwwiarfc6pga97380c9z8xva5545632001qj75kb1g5rn1s"))))
3247 (build-system perl-build-system)
3248 (native-inputs `(("perl-module-build" ,perl-module-build)))
3249 (home-page "https://metacpan.org/release/Error")
3250 (synopsis "OO-ish Error/Exception handling for Perl")
3251 (description "The Error package provides two interfaces. Firstly Error
3252 provides a procedural interface to exception handling. Secondly Error is a
3253 base class for errors/exceptions that can either be thrown, for subsequent
3254 catch, or can simply be recorded.")
3255 (license (package-license perl))))
3256
3257 (define-public perl-eval-closure
3258 (package
3259 (name "perl-eval-closure")
3260 (version "0.14")
3261 (source
3262 (origin
3263 (method url-fetch)
3264 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3265 "Eval-Closure-" version ".tar.gz"))
3266 (sha256
3267 (base32
3268 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3269 (build-system perl-build-system)
3270 (native-inputs
3271 `(("perl-test-fatal" ,perl-test-fatal)
3272 ("perl-test-requires" ,perl-test-requires)))
3273 (propagated-inputs
3274 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3275 (home-page "https://metacpan.org/release/Eval-Closure")
3276 (synopsis "Safely and cleanly create closures via string eval")
3277 (description "String eval is often used for dynamic code generation. For
3278 instance, Moose uses it heavily, to generate inlined versions of accessors and
3279 constructors, which speeds code up at runtime by a significant amount. String
3280 eval is not without its issues however - it's difficult to control the scope
3281 it's used in (which determines which variables are in scope inside the eval),
3282 and it's easy to miss compilation errors, since eval catches them and sticks
3283 them in $@@ instead. This module attempts to solve these problems. It
3284 provides an eval_closure function, which evals a string in a clean
3285 environment, other than a fixed list of specified variables. Compilation
3286 errors are rethrown automatically.")
3287 (license (package-license perl))))
3288
3289 (define-public perl-exception-class
3290 (package
3291 (name "perl-exception-class")
3292 (version "1.44")
3293 (source
3294 (origin
3295 (method url-fetch)
3296 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3297 "Exception-Class-" version ".tar.gz"))
3298 (sha256
3299 (base32
3300 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3301 (build-system perl-build-system)
3302 (propagated-inputs
3303 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3304 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3305 (home-page "https://metacpan.org/release/Exception-Class")
3306 (synopsis "Allows you to declare real exception classes in Perl")
3307 (description "Exception::Class allows you to declare exception hierarchies
3308 in your modules in a \"Java-esque\" manner.")
3309 (license (package-license perl))))
3310
3311 (define-public perl-exporter-lite
3312 (package
3313 (name "perl-exporter-lite")
3314 (version "0.08")
3315 (source (origin
3316 (method url-fetch)
3317 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3318 "Exporter-Lite-" version ".tar.gz"))
3319 (sha256
3320 (base32
3321 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3322 (build-system perl-build-system)
3323 (synopsis "Lightweight exporting of functions and variables")
3324 (description
3325 "Exporter::Lite is an alternative to Exporter, intended to provide a
3326 lightweight subset of the most commonly-used functionality. It supports
3327 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3328 (home-page "https://metacpan.org/release/Exporter-Lite")
3329 (license (package-license perl))))
3330
3331 (define-public perl-exporter-tiny
3332 (package
3333 (name "perl-exporter-tiny")
3334 (version "1.002001")
3335 (source
3336 (origin
3337 (method url-fetch)
3338 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3339 "Exporter-Tiny-" version ".tar.gz"))
3340 (sha256
3341 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
3342 (build-system perl-build-system)
3343 (home-page "https://metacpan.org/release/Exporter-Tiny")
3344 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3345 (description "Exporter::Tiny supports many of Sub::Exporter's
3346 external-facing features including renaming imported functions with the `-as`,
3347 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3348 and alternative installers with the `installler` option. But it's written in
3349 only about 40% as many lines of code and with zero non-core dependencies.")
3350 (license (package-license perl))))
3351
3352 (define-public perl-extutils-installpaths
3353 (package
3354 (name "perl-extutils-installpaths")
3355 (version "0.012")
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3360 "ExtUtils-InstallPaths-" version ".tar.gz"))
3361 (sha256
3362 (base32
3363 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
3364 (build-system perl-build-system)
3365 (propagated-inputs
3366 `(("perl-extutils-config" ,perl-extutils-config)))
3367 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
3368 (synopsis "Build.PL install path logic made easy")
3369 (description "This module tries to make install path resolution as easy as
3370 possible.")
3371 (license (package-license perl))))
3372
3373 (define-public perl-extutils-config
3374 (package
3375 (name "perl-extutils-config")
3376 (version "0.008")
3377 (source
3378 (origin
3379 (method url-fetch)
3380 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3381 "ExtUtils-Config-" version ".tar.gz"))
3382 (sha256
3383 (base32
3384 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3385 (build-system perl-build-system)
3386 (home-page "https://metacpan.org/release/ExtUtils-Config")
3387 (synopsis "Wrapper for perl's configuration")
3388 (description "ExtUtils::Config is an abstraction around the %Config hash.
3389 By itself it is not a particularly interesting module by any measure, however
3390 it ties together a family of modern toolchain modules.")
3391 (license (package-license perl))))
3392
3393 (define-public perl-extutils-cppguess
3394 (package
3395 (name "perl-extutils-cppguess")
3396 (version "0.20")
3397 (source
3398 (origin
3399 (method url-fetch)
3400 (uri (string-append
3401 "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
3402 version
3403 ".tar.gz"))
3404 (sha256
3405 (base32
3406 "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
3407 (build-system perl-build-system)
3408 (native-inputs
3409 `(("perl-capture-tiny" ,perl-capture-tiny)
3410 ("perl-module-build" ,perl-module-build)))
3411 (propagated-inputs
3412 `(("perl-capture-tiny" ,perl-capture-tiny)))
3413 (home-page
3414 "https://metacpan.org/release/ExtUtils-CppGuess")
3415 (synopsis "Tool for guessing C++ compiler and flags")
3416 (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
3417 is compatible with the C compiler used to build perl.")
3418 (license (package-license perl))))
3419
3420 (define-public perl-extutils-depends
3421 (package
3422 (name "perl-extutils-depends")
3423 (version "0.405")
3424 (source (origin
3425 (method url-fetch)
3426 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3427 "ExtUtils-Depends-" version ".tar.gz"))
3428 (sha256
3429 (base32
3430 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3431 (build-system perl-build-system)
3432 (native-inputs
3433 `(("perl-test-number-delta" ,perl-test-number-delta)))
3434 (home-page "https://metacpan.org/release/ExtUtils-Depends")
3435 (synopsis "Easily build XS extensions that depend on XS extensions")
3436 (description
3437 "This module tries to make it easy to build Perl extensions that use
3438 functions and typemaps provided by other perl extensions. This means that a
3439 perl extension is treated like a shared library that provides also a C and an
3440 XS interface besides the perl one.")
3441 (license (package-license perl))))
3442
3443 (define-public perl-extutils-helpers
3444 (package
3445 (name "perl-extutils-helpers")
3446 (version "0.026")
3447 (source
3448 (origin
3449 (method url-fetch)
3450 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3451 "ExtUtils-Helpers-" version ".tar.gz"))
3452 (sha256
3453 (base32
3454 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
3455 (build-system perl-build-system)
3456 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
3457 (synopsis "Various portability utilities for module builders")
3458 (description "This module provides various portable helper functions for
3459 module building modules.")
3460 (license (package-license perl))))
3461
3462 (define-public perl-extutils-libbuilder
3463 (package
3464 (name "perl-extutils-libbuilder")
3465 (version "0.08")
3466 (source
3467 (origin
3468 (method url-fetch)
3469 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3470 "ExtUtils-LibBuilder-" version ".tar.gz"))
3471 (sha256
3472 (base32
3473 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3474 (build-system perl-build-system)
3475 (native-inputs
3476 `(("perl-module-build" ,perl-module-build)))
3477 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
3478 (synopsis "Tool to build C libraries")
3479 (description "Some Perl modules need to ship C libraries together with
3480 their Perl code. Although there are mechanisms to compile and link (or glue)
3481 C code in your Perl programs, there isn't a clear method to compile standard,
3482 self-contained C libraries. This module main goal is to help in that task.")
3483 (license (package-license perl))))
3484
3485 (define-public perl-extutils-parsexs
3486 (package
3487 (name "perl-extutils-parsexs")
3488 (version "3.35")
3489 (source
3490 (origin
3491 (method url-fetch)
3492 (uri (string-append
3493 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-"
3494 version
3495 ".tar.gz"))
3496 (sha256
3497 (base32
3498 "077fqiyabydm8j34wxzxwxskyidh8nmwq9gskaxai8kq298z1pj1"))))
3499 (build-system perl-build-system)
3500 (home-page
3501 "https://metacpan.org/release/ExtUtils-ParseXS")
3502 (synopsis "Module to convert Perl XS code into C code")
3503 (description "The package contains the ExtUtils::ParseXS module to
3504 convert Perl XS code into C code, the ExtUtils::Typemaps module to
3505 handle Perl/XS typemap files, and their submodules.")
3506 (license (package-license perl))))
3507
3508 (define-public perl-extutils-pkgconfig
3509 (package
3510 (name "perl-extutils-pkgconfig")
3511 (version "1.16")
3512 (source (origin
3513 (method url-fetch)
3514 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3515 "ExtUtils-PkgConfig-" version ".tar.gz"))
3516 (sha256
3517 (base32
3518 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3519 (build-system perl-build-system)
3520 (propagated-inputs
3521 `(("pkg-config" ,pkg-config)))
3522 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
3523 (synopsis "Simplistic interface to pkg-config")
3524 (description
3525 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3526 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3527 of perl extensions which bind libraries that @command{pkg-config} knows.
3528 It is really just boilerplate code that you would have written yourself.")
3529 (license lgpl2.1+)))
3530
3531 (define-public perl-extutils-typemaps-default
3532 (package
3533 (name "perl-extutils-typemaps-default")
3534 (version "1.05")
3535 (source
3536 (origin
3537 (method url-fetch)
3538 (uri (string-append
3539 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-Typemaps-Default-"
3540 version
3541 ".tar.gz"))
3542 (sha256
3543 (base32
3544 "1phmha0ks95kvzl00r1kgnd5hvg7qb1q9jmzjmw01p5zgs1zbyix"))))
3545 (build-system perl-build-system)
3546 (native-inputs
3547 `(("perl-module-build" ,perl-module-build)))
3548 (home-page
3549 "https://metacpan.org/release/ExtUtils-Typemaps-Default")
3550 (synopsis "Set of useful typemaps")
3551 (description "The package provides a number of useful typemaps as
3552 submodules of ExtUtils::Typemaps.")
3553 (license (package-license perl))))
3554
3555 (define-public perl-extutils-xspp
3556 (package
3557 (name "perl-extutils-xspp")
3558 (version "0.18")
3559 (source
3560 (origin
3561 (method url-fetch)
3562 (uri (string-append
3563 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-"
3564 version
3565 ".tar.gz"))
3566 (sha256
3567 (base32
3568 "1zx84f93lkymqz7qa4d63gzlnhnkxm5i3gvsrwkvvqr9cxjasxli"))))
3569 (build-system perl-build-system)
3570 (native-inputs
3571 `(("perl-module-build" ,perl-module-build)
3572 ("perl-test-base" ,perl-test-base)
3573 ("perl-test-differences" ,perl-test-differences)))
3574 (home-page
3575 "https://metacpan.org/release/ExtUtils-XSpp")
3576 (synopsis "XS for C++")
3577 (description "This module implements the Perl foreign function
3578 interface XS for C++; it is a thin layer over plain XS.")
3579 (license (package-license perl))))
3580
3581 (define-public perl-file-changenotify
3582 (package
3583 (name "perl-file-changenotify")
3584 (version "0.24")
3585 (source
3586 (origin
3587 (method url-fetch)
3588 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3589 "File-ChangeNotify-" version ".tar.gz"))
3590 (sha256
3591 (base32
3592 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3593 (build-system perl-build-system)
3594 (native-inputs
3595 `(("perl-module-build" ,perl-module-build)
3596 ("perl-test-exception" ,perl-test-exception)))
3597 (propagated-inputs
3598 `(("perl-class-load" ,perl-class-load)
3599 ("perl-list-moreutils" ,perl-list-moreutils)
3600 ("perl-module-pluggable" ,perl-module-pluggable)
3601 ("perl-moose" ,perl-moose)
3602 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3603 ("perl-moosex-semiaffordanceaccessor"
3604 ,perl-moosex-semiaffordanceaccessor)
3605 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3606 (home-page "https://metacpan.org/release/File-ChangeNotify")
3607 (synopsis "Watch for changes to files")
3608 (description "This module provides a class to monitor a directory for
3609 changes made to any file.")
3610 (license artistic2.0)))
3611
3612 (define-public perl-file-configdir
3613 (package
3614 (name "perl-file-configdir")
3615 (version "0.021")
3616 (source
3617 (origin
3618 (method url-fetch)
3619 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3620 "File-ConfigDir-" version ".tar.gz"))
3621 (sha256
3622 (base32
3623 "1ihlhdbwaybyj3xqfxpx4ii0ypa41907b6zdh94rvr4wyqa5lh3b"))))
3624 (build-system perl-build-system)
3625 (propagated-inputs
3626 `(("perl-file-homedir" ,perl-file-homedir)
3627 ("perl-list-moreutils" ,perl-list-moreutils)
3628 ("perl-test-without-module" ,perl-test-without-module)))
3629 (home-page "https://metacpan.org/release/File-ConfigDir")
3630 (synopsis "Get directories of configuration files")
3631 (description "This module is a helper for installing, reading and finding
3632 configuration file locations. @code{File::ConfigDir} is a module to help out
3633 when Perl modules (especially applications) need to read and store
3634 configuration files from more than one location.")
3635 (license (package-license perl))))
3636
3637 (define-public perl-file-copy-recursive
3638 (package
3639 (name "perl-file-copy-recursive")
3640 (version "0.38")
3641 (source
3642 (origin
3643 (method url-fetch)
3644 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3645 "File-Copy-Recursive-" version ".tar.gz"))
3646 (sha256
3647 (base32
3648 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3649 (build-system perl-build-system)
3650 (home-page "https://metacpan.org/release/File-Copy-Recursive")
3651 (synopsis "Recursively copy files and directories")
3652 (description "This module has 3 functions: one to copy files only, one to
3653 copy directories only, and one to do either depending on the argument's
3654 type.")
3655 (license (package-license perl))))
3656
3657 (define-public perl-file-find-rule
3658 (package
3659 (name "perl-file-find-rule")
3660 (version "0.34")
3661 (source
3662 (origin
3663 (method url-fetch)
3664 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3665 "File-Find-Rule-" version ".tar.gz"))
3666 (sha256
3667 (base32
3668 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3669 (build-system perl-build-system)
3670 (propagated-inputs
3671 `(("perl-text-glob" ,perl-text-glob)
3672 ("perl-number-compare" ,perl-number-compare)))
3673 (home-page "https://metacpan.org/release/File-Find-Rule")
3674 (synopsis "Alternative interface to File::Find")
3675 (description "File::Find::Rule is a friendlier interface to File::Find.
3676 It allows you to build rules which specify the desired files and
3677 directories.")
3678 (license (package-license perl))))
3679
3680 (define-public perl-file-find-rule-perl
3681 (package
3682 (name "perl-file-find-rule-perl")
3683 (version "1.15")
3684 (source
3685 (origin
3686 (method url-fetch)
3687 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3688 "File-Find-Rule-Perl-" version ".tar.gz"))
3689 (sha256
3690 (base32
3691 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3692 (build-system perl-build-system)
3693 (propagated-inputs
3694 `(("perl-file-find-rule" ,perl-file-find-rule)
3695 ("perl-params-util" ,perl-params-util)
3696 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3697 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
3698 (synopsis "Common rules for searching for Perl things")
3699 (description "File::Find::Rule::Perl provides methods for finding various
3700 types Perl-related files, or replicating search queries run on a distribution
3701 in various parts of the CPAN ecosystem.")
3702 (license (package-license perl))))
3703
3704 (define-public perl-file-grep
3705 (package
3706 (name "perl-file-grep")
3707 (version "0.02")
3708 (source
3709 (origin
3710 (method url-fetch)
3711 (uri (string-append
3712 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3713 version
3714 ".tar.gz"))
3715 (sha256
3716 (base32
3717 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3718 (build-system perl-build-system)
3719 (home-page "https://metacpan.org/release/File-Grep")
3720 (synopsis "Matches patterns in a series of files")
3721 (description "@code{File::Grep} provides similar functionality as perl's
3722 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3723 over a passed filelist instead of arrays. While trivial, this module can
3724 provide a quick dropin when such functionality is needed.")
3725 (license (package-license perl))))
3726
3727 (define-public perl-file-homedir
3728 (package
3729 (name "perl-file-homedir")
3730 (version "1.004")
3731 (source
3732 (origin
3733 (method url-fetch)
3734 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3735 "File-HomeDir-" version ".tar.gz"))
3736 (sha256
3737 (base32
3738 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
3739 (build-system perl-build-system)
3740 (propagated-inputs
3741 `(("perl-file-which" ,perl-file-which)))
3742 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3743 (home-page "https://metacpan.org/release/File-HomeDir")
3744 (synopsis "Find your home and other directories on any platform")
3745 (description "File::HomeDir is a module for locating the directories that
3746 are @code{owned} by a user (typically your user) and to solve the various issues
3747 that arise trying to find them consistently across a wide variety of
3748 platforms.")
3749 (license (package-license perl))))
3750
3751 (define-public perl-file-path
3752 (package
3753 (name "perl-file-path")
3754 (version "2.16")
3755 (source
3756 (origin
3757 (method url-fetch)
3758 (uri (string-append
3759 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3760 version
3761 ".tar.gz"))
3762 (sha256
3763 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
3764 (build-system perl-build-system)
3765 (home-page "https://metacpan.org/release/File-Path")
3766 (synopsis "Create or remove directory trees")
3767 (description "This module provide a convenient way to create directories
3768 of arbitrary depth and to delete an entire directory subtree from the
3769 file system.")
3770 (license (package-license perl))))
3771
3772 (define-public perl-file-pushd
3773 (package
3774 (name "perl-file-pushd")
3775 (version "1.016")
3776 (source
3777 (origin
3778 (method url-fetch)
3779 (uri (string-append
3780 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3781 version
3782 ".tar.gz"))
3783 (sha256
3784 (base32
3785 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3786 (build-system perl-build-system)
3787 (home-page
3788 "https://metacpan.org/release/File-pushd")
3789 (synopsis
3790 "Change directory temporarily for a limited scope")
3791 (description "@code{File::pushd} does a temporary @code{chdir} that is
3792 easily and automatically reverted, similar to @code{pushd} in some Unix
3793 command shells. It works by creating an object that caches the original
3794 working directory. When the object is destroyed, the destructor calls
3795 @code{chdir} to revert to the original working directory. By storing the
3796 object in a lexical variable with a limited scope, this happens automatically
3797 at the end of the scope.")
3798 (license asl2.0)))
3799
3800 (define-public perl-file-list
3801 (package
3802 (name "perl-file-list")
3803 (version "0.3.1")
3804 (source (origin
3805 (method url-fetch)
3806 (uri (string-append
3807 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3808 version ".tar.gz"))
3809 (sha256
3810 (base32
3811 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3812 (build-system perl-build-system)
3813 (arguments
3814 `(#:phases
3815 (modify-phases %standard-phases
3816 (add-after 'unpack 'cd
3817 (lambda _ (chdir "List") #t)))))
3818 (license (package-license perl))
3819 (synopsis "Perl extension for crawling directory trees and compiling
3820 lists of files")
3821 (description
3822 "The File::List module crawls the directory tree starting at the
3823 provided base directory and can return files (and/or directories if desired)
3824 matching a regular expression.")
3825 (home-page "https://metacpan.org/release/File-List")))
3826
3827 (define-public perl-file-readbackwards
3828 (package
3829 (name "perl-file-readbackwards")
3830 (version "1.05")
3831 (source
3832 (origin
3833 (method url-fetch)
3834 (uri (string-append
3835 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3836 version
3837 ".tar.gz"))
3838 (sha256
3839 (base32
3840 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3841 (build-system perl-build-system)
3842 (home-page "https://metacpan.org/release/File-ReadBackwards")
3843 (synopsis "Read a file backwards by lines")
3844 (description "This module reads a file backwards line by line. It is
3845 simple to use, memory efficient and fast. It supports both an object and a
3846 tied handle interface.
3847
3848 It is intended for processing log and other similar text files which typically
3849 have their newest entries appended to them. By default files are assumed to
3850 be plain text and have a line ending appropriate to the OS. But you can set
3851 the input record separator string on a per file basis.")
3852 (license perl-license)))
3853
3854 (define-public perl-file-remove
3855 (package
3856 (name "perl-file-remove")
3857 (version "1.58")
3858 (source
3859 (origin
3860 (method url-fetch)
3861 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3862 "File-Remove-" version ".tar.gz"))
3863 (sha256
3864 (base32
3865 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
3866 (build-system perl-build-system)
3867 (native-inputs
3868 `(("perl-module-build" ,perl-module-build)))
3869 (home-page "https://metacpan.org/release/File-Remove")
3870 (synopsis "Remove files and directories in Perl")
3871 (description "@code{File::Remove::remove} removes files and directories.
3872 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
3873 given a list of files, it will not remove directories; this module remedies
3874 that. It also accepts wildcards, * and ?, as arguments for file names.")
3875 (license (package-license perl))))
3876
3877 (define-public perl-file-sharedir
3878 (package
3879 (name "perl-file-sharedir")
3880 (version "1.116")
3881 (source
3882 (origin
3883 (method url-fetch)
3884 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3885 "File-ShareDir-" version ".tar.gz"))
3886 (sha256
3887 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
3888 (build-system perl-build-system)
3889 (native-inputs
3890 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3891 (propagated-inputs
3892 `(("perl-class-inspector" ,perl-class-inspector)))
3893 (home-page "https://metacpan.org/release/File-ShareDir")
3894 (synopsis "Locate per-dist and per-module shared files")
3895 (description "The intent of File::ShareDir is to provide a companion to
3896 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3897 module to have access to a large amount of read-only data that is stored on
3898 the file-system at run-time. Once the files have been installed to the
3899 correct directory, you can use File::ShareDir to find your files again after
3900 the installation.")
3901 (license (package-license perl))))
3902
3903 (define-public perl-file-sharedir-dist
3904 (package
3905 (name "perl-file-sharedir-dist")
3906 (version "0.07")
3907 (source
3908 (origin
3909 (method url-fetch)
3910 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3911 "File-ShareDir-Dist-" version ".tar.gz"))
3912 (sha256
3913 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
3914 (build-system perl-build-system)
3915 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
3916 (synopsis "Locate per-dist shared files")
3917 (description "File::ShareDir::Dist finds share directories for
3918 distributions. It is a companion module to File::ShareDir.")
3919 (license (package-license perl))))
3920
3921 (define-public perl-file-sharedir-install
3922 (package
3923 (name "perl-file-sharedir-install")
3924 (version "0.13")
3925 (source
3926 (origin
3927 (method url-fetch)
3928 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3929 "File-ShareDir-Install-" version ".tar.gz"))
3930 (sha256
3931 (base32
3932 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3933 (build-system perl-build-system)
3934 (native-inputs
3935 `(("perl-module-build" ,perl-module-build)))
3936 (home-page "https://metacpan.org/release/File-ShareDir-Install")
3937 (synopsis "Install shared files")
3938 (description "File::ShareDir::Install allows you to install read-only data
3939 files from a distribution. It is a companion module to File::ShareDir, which
3940 allows you to locate these files after installation.")
3941 (license (package-license perl))))
3942
3943 (define-public perl-file-slurp
3944 (package
3945 (name "perl-file-slurp")
3946 (version "9999.28")
3947 (source
3948 (origin
3949 (method url-fetch)
3950 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
3951 "File-Slurp-" version ".tar.gz"))
3952 (sha256
3953 (base32 "1vkwh880lbyr2qcrfka7yb3z4yz9id4va52gfjgdnyfb1c0wx1q5"))))
3954 (build-system perl-build-system)
3955 (home-page "https://metacpan.org/release/File-Slurp")
3956 (synopsis "Reading/Writing/Modifying of complete files")
3957 (description "File::Slurp provides subroutines to read or write entire
3958 files with a simple call. It also has a subroutine for reading the list of
3959 file names in a directory.")
3960 (license (package-license perl))))
3961
3962 (define-public perl-file-slurper
3963 (package
3964 (name "perl-file-slurper")
3965 (version "0.012")
3966 (source
3967 (origin
3968 (method url-fetch)
3969 (uri (string-append
3970 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3971 version
3972 ".tar.gz"))
3973 (sha256
3974 (base32
3975 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
3976 (build-system perl-build-system)
3977 (native-inputs
3978 `(("perl-test-warnings" ,perl-test-warnings)))
3979 (propagated-inputs
3980 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3981 (home-page "https://metacpan.org/release/File-Slurper")
3982 (synopsis "Simple, sane and efficient module to slurp a file")
3983 (description "This module provides functions for fast and correct file
3984 slurping and spewing. All functions are optionally exported.")
3985 (license (package-license perl))))
3986
3987 (define-public perl-file-slurp-tiny
3988 (package
3989 (name "perl-file-slurp-tiny")
3990 (version "0.004")
3991 (source (origin
3992 (method url-fetch)
3993 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3994 "File-Slurp-Tiny-" version ".tar.gz"))
3995 (sha256
3996 (base32
3997 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3998 (build-system perl-build-system)
3999 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
4000 (synopsis "Simple file reader and writer")
4001 (description
4002 "This module provides functions for fast reading and writing of files.")
4003 (license (package-license perl))))
4004
4005 (define-public perl-file-temp
4006 (package
4007 (name "perl-file-temp")
4008 (version "0.2309")
4009 (source
4010 (origin
4011 (method url-fetch)
4012 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4013 "File-Temp-" version ".tar.gz"))
4014 (sha256
4015 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
4016 (build-system perl-build-system)
4017 (home-page "https://metacpan.org/release/File-Temp")
4018 (synopsis "Return name and handle of a temporary file safely")
4019 (description "File::Temp can be used to create and open temporary files in
4020 a safe way.")
4021 (license (package-license perl))))
4022
4023 (define-public perl-file-which
4024 (package
4025 (name "perl-file-which")
4026 (version "1.23")
4027 (source (origin
4028 (method url-fetch)
4029 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4030 "File-Which-" version ".tar.gz"))
4031 (sha256
4032 (base32
4033 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
4034 (build-system perl-build-system)
4035 (native-inputs `(("test-script" ,perl-test-script)))
4036 (synopsis "Portable implementation of the `which' utility")
4037 (description
4038 "File::Which was created to be able to get the paths to executable
4039 programs on systems under which the `which' program wasn't implemented in the
4040 shell.")
4041 (home-page "https://metacpan.org/release/File-Which")
4042 (license (package-license perl))))
4043
4044 (define-public perl-file-zglob
4045 (package
4046 (name "perl-file-zglob")
4047 (version "0.11")
4048 (source (origin
4049 (method url-fetch)
4050 (uri (string-append
4051 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
4052 version ".tar.gz"))
4053 (sha256
4054 (base32
4055 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
4056 (build-system perl-build-system)
4057 (native-inputs
4058 `(("perl-module-install" ,perl-module-install)))
4059 (home-page "https://metacpan.org/release/File-Zglob")
4060 (synopsis "Extended Unix style glob functionality")
4061 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
4062 functionality; it returns a list of file names that match the given pattern.
4063 For instance, it supports the @code{**/*.pm} form.")
4064 (license (package-license perl))))
4065
4066 (define-public perl-filesys-notify-simple
4067 (package
4068 (name "perl-filesys-notify-simple")
4069 (version "0.13")
4070 (source
4071 (origin
4072 (method url-fetch)
4073 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
4074 "Filesys-Notify-Simple-" version ".tar.gz"))
4075 (sha256
4076 (base32
4077 "18jv96k1pf8wqf4vn2ahs7dv44lc9cyqj0bja9z17qici3dx7qxd"))))
4078 (build-system perl-build-system)
4079 (native-inputs
4080 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
4081 (home-page "https://metacpan.org/release/Filesys-Notify-Simple")
4082 (synopsis "Simple and dumb file system watcher")
4083 (description
4084 "@code{Filesys::Notify::Simple} is a simple but unified interface to get
4085 notifications of changes to a given file system path. It uses inotify2 on
4086 Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
4087 @code{FindFirstChangeNotification} on Windows if they're installed, and falls
4088 back to a full directory scan if none of these are available.")
4089 (license perl-license)))
4090
4091 (define-public perl-getopt-long
4092 (package
4093 (name "perl-getopt-long")
4094 (version "v2.49.1")
4095 (source
4096 (origin
4097 (method url-fetch)
4098 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
4099 "Getopt-Long-" (substring version 1) ".tar.gz"))
4100 (sha256
4101 (base32
4102 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
4103 (build-system perl-build-system)
4104 (home-page "https://metacpan.org/release/Getopt-Long")
4105 (synopsis "Module to handle parsing command line options")
4106 (description "The @code{Getopt::Long} module implements an extended getopt
4107 function called @code{GetOptions()}. It parses the command line from
4108 @code{ARGV}, recognizing and removing specified options and their possible
4109 values.
4110
4111 This function adheres to the POSIX syntax for command line options, with GNU
4112 extensions. In general, this means that options have long names instead of
4113 single letters, and are introduced with a double dash \"--\". Support for
4114 bundling of command line options, as was the case with the more traditional
4115 single-letter approach, is provided but not enabled by default.")
4116 ;; Can be used with either license.
4117 (license (list (package-license perl) gpl2+))))
4118
4119 (define-public perl-getopt-long-descriptive
4120 (package
4121 (name "perl-getopt-long-descriptive")
4122 (version "0.103")
4123 (source
4124 (origin
4125 (method url-fetch)
4126 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4127 "Getopt-Long-Descriptive-" version ".tar.gz"))
4128 (sha256
4129 (base32
4130 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
4131 (build-system perl-build-system)
4132 (native-inputs
4133 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4134 ("perl-test-fatal" ,perl-test-fatal)
4135 ("perl-test-warnings" ,perl-test-warnings)))
4136 (propagated-inputs
4137 `(("perl-params-validate" ,perl-params-validate)
4138 ("perl-sub-exporter" ,perl-sub-exporter)))
4139 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
4140 (synopsis "Getopt::Long, but simpler and more powerful")
4141 (description "Getopt::Long::Descriptive is yet another Getopt library.
4142 It's built atop Getopt::Long, and gets a lot of its features, but tries to
4143 avoid making you think about its huge array of options. It also provides
4144 usage (help) messages, data validation, and a few other useful features.")
4145 (license (package-license perl))))
4146
4147 (define-public perl-getopt-tabular
4148 (package
4149 (name "perl-getopt-tabular")
4150 (version "0.3")
4151 (source (origin
4152 (method url-fetch)
4153 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
4154 "Getopt-Tabular-" version ".tar.gz"))
4155 (sha256
4156 (base32
4157 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
4158 (build-system perl-build-system)
4159 (synopsis "Table-driven argument parsing for Perl")
4160 (description
4161 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
4162 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
4163 (home-page "https://metacpan.org/release/Getopt-Tabular")
4164 (license (package-license perl))))
4165
4166 (define-public perl-graph
4167 (package
4168 (name "perl-graph")
4169 (version "0.9704")
4170 (source
4171 (origin
4172 (method url-fetch)
4173 (uri (string-append
4174 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
4175 version
4176 ".tar.gz"))
4177 (sha256
4178 (base32
4179 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
4180 (build-system perl-build-system)
4181 (home-page "https://metacpan.org/release/Graph")
4182 (synopsis "Graph data structures and algorithms")
4183 (description "This is @code{Graph}, a Perl module for dealing with graphs,
4184 the abstract data structures.")
4185 (license (package-license perl))))
4186
4187 (define-public perl-guard
4188 (package
4189 (name "perl-guard")
4190 (version "1.023")
4191 (source (origin
4192 (method url-fetch)
4193 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
4194 version ".tar.gz"))
4195 (sha256
4196 (base32
4197 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
4198 (build-system perl-build-system)
4199 (home-page "https://metacpan.org/release/Guard")
4200 (synopsis "Safe cleanup blocks implemented as guards")
4201 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
4202 something (usually an object) that \"guards\" a resource, ensuring that it is
4203 cleaned up when expected.
4204
4205 Specifically, this module supports two different types of guards: guard
4206 objects, which execute a given code block when destroyed, and scoped guards,
4207 which are tied to the scope exit.")
4208 (license (package-license perl))))
4209
4210 (define-public perl-hash-fieldhash
4211 (package
4212 (name "perl-hash-fieldhash")
4213 (version "0.15")
4214 (source
4215 (origin
4216 (method url-fetch)
4217 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
4218 "Hash-FieldHash-" version ".tar.gz"))
4219 (sha256
4220 (base32
4221 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
4222 (build-system perl-build-system)
4223 (arguments
4224 `(#:phases
4225 (modify-phases %standard-phases
4226 (add-before 'configure 'set-perl-search-path
4227 (lambda _
4228 ;; Work around "dotless @INC" build failure.
4229 (setenv "PERL5LIB"
4230 (string-append (getcwd) ":"
4231 (getenv "PERL5LIB")))
4232 #t)))))
4233 (native-inputs
4234 `(("perl-module-build" ,perl-module-build)
4235 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4236 (home-page "https://metacpan.org/release/Hash-FieldHash")
4237 (synopsis "Lightweight field hash for inside-out objects")
4238 (description "@code{Hash::FieldHash} provides the field hash mechanism
4239 which supports the inside-out technique. It is an alternative to
4240 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
4241 relic support.")
4242 (license (package-license perl))))
4243
4244 (define-public perl-hash-merge
4245 (package
4246 (name "perl-hash-merge")
4247 (version "0.300")
4248 (source
4249 (origin
4250 (method url-fetch)
4251 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4252 "Hash-Merge-" version ".tar.gz"))
4253 (sha256
4254 (base32
4255 "0h3wfnpv5d4d3f9xzmwkchay6251nhzngdv3f6xia56mj4hxabs0"))))
4256 (build-system perl-build-system)
4257 (propagated-inputs
4258 `(("perl-clone-choose" ,perl-clone-choose)))
4259 (home-page "https://metacpan.org/release/Hash-Merge")
4260 (synopsis "Merge arbitrarily deep hashes into a single hash")
4261 (description "Hash::Merge merges two arbitrarily deep hashes into a single
4262 hash. That is, at any level, it will add non-conflicting key-value pairs from
4263 one hash to the other, and follows a set of specific rules when there are key
4264 value conflicts. The hash is followed recursively, so that deeply nested
4265 hashes that are at the same level will be merged when the parent hashes are
4266 merged.")
4267 (license (package-license perl))))
4268
4269 (define-public perl-hash-multivalue
4270 (package
4271 (name "perl-hash-multivalue")
4272 (version "0.16")
4273 (source
4274 (origin
4275 (method url-fetch)
4276 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
4277 "Hash-MultiValue-" version ".tar.gz"))
4278 (sha256
4279 (base32
4280 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
4281 (build-system perl-build-system)
4282 (home-page "https://metacpan.org/release/Hash-MultiValue")
4283 (synopsis "Store multiple values per key")
4284 (description "Hash::MultiValue is an object (and a plain hash reference)
4285 that may contain multiple values per key, inspired by MultiDict of WebOb.")
4286 (license (package-license perl))))
4287
4288 (define-public perl-importer
4289 (package
4290 (name "perl-importer")
4291 (version "0.025")
4292 (source
4293 (origin
4294 (method url-fetch)
4295 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4296 version ".tar.gz"))
4297 (sha256
4298 (base32
4299 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4300 (build-system perl-build-system)
4301 (home-page "https://metacpan.org/release/Importer")
4302 (synopsis "Alternative but compatible interface to modules that export symbols")
4303 (description "This module acts as a layer between Exporter and modules which
4304 consume exports. It is feature-compatible with Exporter, plus some much needed
4305 extras. You can use this to import symbols from any exporter that follows
4306 Exporters specification. The exporter modules themselves do not need to use or
4307 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4308 variables.")
4309 (license (package-license perl))))
4310
4311 (define-public perl-import-into
4312 (package
4313 (name "perl-import-into")
4314 (version "1.002005")
4315 (source
4316 (origin
4317 (method url-fetch)
4318 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4319 "Import-Into-" version ".tar.gz"))
4320 (sha256
4321 (base32
4322 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4323 (build-system perl-build-system)
4324 (propagated-inputs
4325 `(("perl-module-runtime" ,perl-module-runtime)))
4326 (home-page "https://metacpan.org/release/Import-Into")
4327 (synopsis "Import packages into other packages")
4328 (description "Writing exporters is a pain. Some use Exporter, some use
4329 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4330 some things are pragmas. Exporting on someone else's behalf is harder. The
4331 exporters don't provide a consistent API for this, and pragmas need to have
4332 their import method called directly, since they effect the current unit of
4333 compilation. Import::Into provides global methods to make this painless.")
4334 (license (package-license perl))))
4335
4336 (define-public perl-inc-latest
4337 (package
4338 (name "perl-inc-latest")
4339 (version "0.500")
4340 (source
4341 (origin
4342 (method url-fetch)
4343 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4344 "inc-latest-" version ".tar.gz"))
4345 (sha256
4346 (base32
4347 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4348 (build-system perl-build-system)
4349 (home-page "https://metacpan.org/release/inc-latest")
4350 (synopsis "Use modules in inc/ if newer than installed")
4351 (description "The inc::latest module helps bootstrap configure-time
4352 dependencies for CPAN distributions. These dependencies get bundled into the
4353 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4354 (license asl2.0)))
4355
4356 (define-public perl-indirect
4357 (package
4358 (name "perl-indirect")
4359 (version "0.39")
4360 (source
4361 (origin
4362 (method url-fetch)
4363 (uri (string-append
4364 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4365 version ".tar.gz"))
4366 (sha256
4367 (base32 "1r971mykvvsrzrp6a9ccl649ihr84h254jmlfpazv64f6i63qwvi"))))
4368 (build-system perl-build-system)
4369 (home-page "https://metacpan.org/release/indirect")
4370 (synopsis "Lexically warn about using the indirect method call syntax")
4371 (description
4372 "Indirect warns about using the indirect method call syntax.")
4373 (license (package-license perl))))
4374
4375 (define-public perl-inline
4376 (package
4377 (name "perl-inline")
4378 (version "0.81")
4379 (source
4380 (origin
4381 (method url-fetch)
4382 (uri (string-append
4383 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
4384 version ".tar.gz"))
4385 (sha256
4386 (base32
4387 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
4388 (build-system perl-build-system)
4389 (native-inputs
4390 `(("perl-test-warn" ,perl-test-warn)))
4391 (home-page "https://metacpan.org/release/Inline")
4392 (synopsis "Write Perl subroutines in other programming languages")
4393 (description "The @code{Inline} module allows you to put source code
4394 from other programming languages directly (inline) in a Perl script or
4395 module. The code is automatically compiled as needed, and then loaded
4396 for immediate access from Perl.")
4397 (license (package-license perl))))
4398
4399 (define-public perl-inline-c
4400 (package
4401 (name "perl-inline-c")
4402 (version "0.78")
4403 (source
4404 (origin
4405 (method url-fetch)
4406 (uri (string-append
4407 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4408 version ".tar.gz"))
4409 (sha256
4410 (base32
4411 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4412 (build-system perl-build-system)
4413 (native-inputs
4414 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4415 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4416 ("perl-test-warn" ,perl-test-warn)
4417 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4418 (propagated-inputs
4419 `(("perl-inline" ,perl-inline)
4420 ("perl-parse-recdescent" ,perl-parse-recdescent)
4421 ("perl-pegex" ,perl-pegex)))
4422 (home-page "https://metacpan.org/release/Inline-C")
4423 (synopsis "C Language Support for Inline")
4424 (description "The @code{Inline::C} module allows you to write Perl
4425 subroutines in C. Since version 0.30 the @code{Inline} module supports
4426 multiple programming languages and each language has its own support module.
4427 This document describes how to use Inline with the C programming language.
4428 It also goes a bit into Perl C internals.")
4429 (license (package-license perl))))
4430
4431 (define-public perl-io-all
4432 (package
4433 (name "perl-io-all")
4434 (version "0.87")
4435 (source
4436 (origin
4437 (method url-fetch)
4438 (uri (string-append
4439 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4440 version
4441 ".tar.gz"))
4442 (sha256
4443 (base32
4444 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4445 (build-system perl-build-system)
4446 (propagated-inputs
4447 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4448 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4449 (home-page "https://metacpan.org/release/IO-All")
4450 (synopsis "@code{IO::All} to Larry Wall!")
4451 (description "@code{IO::All} combines all of the best Perl IO modules into
4452 a single nifty object oriented interface to greatly simplify your everyday
4453 Perl IO idioms. It exports a single function called io, which returns a new
4454 @code{IO::All} object. And that object can do it all!")
4455 (license perl-license)))
4456
4457 (define-public perl-io-captureoutput
4458 (package
4459 (name "perl-io-captureoutput")
4460 (version "1.1105")
4461 (source
4462 (origin
4463 (method url-fetch)
4464 (uri (string-append
4465 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4466 version
4467 ".tar.gz"))
4468 (sha256
4469 (base32 "11zlfbahac09q3jvwmpijmkwgihwxps85jwy2q7q0wqjragh16df"))))
4470 (build-system perl-build-system)
4471 (home-page "https://metacpan.org/release/IO-CaptureOutput")
4472 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4473 (description "@code{IO::CaptureOutput} provides routines for capturing
4474 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4475 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4476
4477 This module is no longer recommended by its maintainer. Users are advised to
4478 try @code{Capture::Tiny} instead.")
4479 (license (package-license perl))))
4480
4481 (define-public perl-io-interactive
4482 (package
4483 (name "perl-io-interactive")
4484 (version "1.022")
4485 (source
4486 (origin
4487 (method url-fetch)
4488 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4489 "IO-Interactive-" version ".tar.gz"))
4490 (sha256
4491 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
4492 (build-system perl-build-system)
4493 (home-page "https://metacpan.org/release/IO-Interactive")
4494 (synopsis "Utilities for interactive I/O")
4495 (description "This module provides three utility subroutines that make it
4496 easier to develop interactive applications: is_interactive(), interactive(),
4497 and busy().")
4498 (license (package-license perl))))
4499
4500 (define-public perl-io-pager
4501 (package
4502 (name "perl-io-pager")
4503 (version "0.44")
4504 (source
4505 (origin
4506 (method url-fetch)
4507 (uri (string-append
4508 "mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-"
4509 version
4510 ".tgz"))
4511 (sha256
4512 (base32 "0h52gplhc3rij18xc4ngpg5kqv6mylxfzig18xll1aqda8iwa8kl"))))
4513 (build-system perl-build-system)
4514 (arguments
4515 '(#:phases
4516 (modify-phases %standard-phases
4517 (add-after 'unpack 'patch-less
4518 (lambda _
4519 (substitute* "lib/IO/Pager.pm"
4520 (("/usr/local/bin/less', '/usr/bin/less")
4521 (which "less")))
4522 #t)))))
4523 (propagated-inputs
4524 `(("perl-file-which" ,perl-file-which)))
4525 (inputs
4526 `(("less" ,less)))
4527 (home-page "https://metacpan.org/release/IO-Pager")
4528 (synopsis "Select a pager and pipe text to it")
4529 (description
4530 "@code{IO::Pager} can be used to locate an available pager and use it to
4531 display output if a TTY is in use.")
4532 (license (package-license perl))))
4533
4534 (define-public perl-io-string
4535 (package
4536 (name "perl-io-string")
4537 (version "1.08")
4538 (source
4539 (origin
4540 (method url-fetch)
4541 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4542 "IO-String-" version ".tar.gz"))
4543 (sha256
4544 (base32
4545 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4546 (build-system perl-build-system)
4547 (home-page "https://metacpan.org/release/IO-String")
4548 (synopsis "Emulate file interface for in-core strings")
4549 (description "IO::String is an IO::File (and IO::Handle) compatible class
4550 that reads or writes data from in-core strings.")
4551 (license (package-license perl))))
4552
4553 (define-public perl-io-stringy
4554 (package
4555 (name "perl-io-stringy")
4556 (version "2.111")
4557 (source
4558 (origin
4559 (method url-fetch)
4560 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4561 "IO-stringy-" version ".tar.gz"))
4562 (sha256
4563 (base32
4564 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4565 (build-system perl-build-system)
4566 (home-page "https://metacpan.org/release/IO-stringy")
4567 (synopsis "IO:: interface for reading/writing an array of lines")
4568 (description "This toolkit primarily provides modules for performing both
4569 traditional and object-oriented i/o) on things *other* than normal
4570 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4571 (license (package-license perl))))
4572
4573 (define-public perl-io-tty
4574 (package
4575 (name "perl-io-tty")
4576 (version "1.12")
4577 (source (origin
4578 (method url-fetch)
4579 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4580 version ".tar.gz"))
4581 (sha256
4582 (base32
4583 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4584 (build-system perl-build-system)
4585 (home-page "https://metacpan.org/release/IO-Tty")
4586 (synopsis "Perl interface to pseudo ttys")
4587 (description
4588 "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl
4589 interfaces to pseudo ttys.")
4590 (license (package-license perl))))
4591
4592 (define-public perl-ipc-cmd
4593 (package
4594 (name "perl-ipc-cmd")
4595 (version "1.02")
4596 (source
4597 (origin
4598 (method url-fetch)
4599 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4600 version ".tar.gz"))
4601 (sha256
4602 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
4603 (build-system perl-build-system)
4604 (home-page "https://metacpan.org/release/IPC-Cmd")
4605 (synopsis "Run interactive command-line programs")
4606 (description "@code{IPC::Cmd} allows for the searching and execution of
4607 any binary on your system. It adheres to verbosity settings and is able to
4608 run interactively. It also has an option to capture output/error buffers.")
4609 (license (package-license perl))))
4610
4611 (define-public perl-ipc-run
4612 (package
4613 (name "perl-ipc-run")
4614 (version "20180523.0")
4615 (source
4616 (origin
4617 (method url-fetch)
4618 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4619 "IPC-Run-" version ".tar.gz"))
4620 (sha256
4621 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
4622 (build-system perl-build-system)
4623 (propagated-inputs
4624 `(("perl-io-tty" ,perl-io-tty)))
4625 (arguments
4626 `(#:phases (modify-phases %standard-phases
4627 (add-before
4628 'check 'disable-w32-test
4629 (lambda _
4630 ;; This test fails, and we're not really interested in
4631 ;; it, so disable it.
4632 (delete-file "t/win32_compile.t")
4633 #t)))))
4634 (home-page "https://metacpan.org/release/IPC-Run")
4635 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4636 (description "IPC::Run allows you run and interact with child processes
4637 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4638 are supported and may be mixed. Likewise, functional and OO API styles are
4639 both supported and may be mixed.")
4640 (license (package-license perl))))
4641
4642 (define-public perl-ipc-run3
4643 (package
4644 (name "perl-ipc-run3")
4645 (version "0.048")
4646 (source (origin
4647 (method url-fetch)
4648 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4649 "IPC-Run3-" version ".tar.gz"))
4650 (sha256
4651 (base32
4652 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4653 (build-system perl-build-system)
4654 (synopsis "Run a subprocess with input/output redirection")
4655 (description
4656 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4657 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4658 99% of the need for using system, qx, and open3 with a simple, extremely
4659 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4660 (home-page "https://metacpan.org/release/IPC-Run3")
4661 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4662 ;; licenses, any version."
4663 (license (list bsd-3 gpl3+))))
4664
4665 (define-public perl-ipc-sharelite
4666 (package
4667 (name "perl-ipc-sharelite")
4668 (version "0.17")
4669 (source
4670 (origin
4671 (method url-fetch)
4672 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4673 "IPC-ShareLite-" version ".tar.gz"))
4674 (sha256
4675 (base32
4676 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4677 (build-system perl-build-system)
4678 (home-page "https://metacpan.org/release/IPC-ShareLite")
4679 (synopsis "Lightweight interface to shared memory")
4680 (description "IPC::ShareLite provides a simple interface to shared memory,
4681 allowing data to be efficiently communicated between processes.")
4682 (license (package-license perl))))
4683
4684 (define-public perl-ipc-system-simple
4685 (package
4686 (name "perl-ipc-system-simple")
4687 (version "1.25")
4688 (source (origin
4689 (method url-fetch)
4690 (uri (string-append
4691 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4692 version ".tar.gz"))
4693 (sha256
4694 (base32
4695 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4696 (build-system perl-build-system)
4697 (home-page "https://metacpan.org/release/IPC-System-Simple")
4698 (synopsis "Run commands simply, with detailed diagnostics")
4699 (description "Calling Perl's in-built @code{system} function is easy,
4700 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4701 nicest variable in the world to play with, and even if you do check it,
4702 producing a well-formatted error string takes a lot of work.
4703
4704 @code{IPC::System::Simple} takes the hard work out of calling external
4705 commands.")
4706 (license (package-license perl))))
4707
4708 (define-public perl-json
4709 (package
4710 (name "perl-json")
4711 (version "4.02")
4712 (source
4713 (origin
4714 (method url-fetch)
4715 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
4716 "JSON-" version ".tar.gz"))
4717 (sha256
4718 (base32
4719 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
4720 (build-system perl-build-system)
4721 (propagated-inputs
4722 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4723 (home-page "https://metacpan.org/release/JSON")
4724 (synopsis "JSON encoder/decoder for Perl")
4725 (description "This module converts Perl data structures to JSON and vice
4726 versa using either JSON::XS or JSON::PP.")
4727 (license (package-license perl))))
4728
4729 (define-public perl-json-any
4730 (package
4731 (name "perl-json-any")
4732 (version "1.39")
4733 (source
4734 (origin
4735 (method url-fetch)
4736 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4737 "JSON-Any-" version ".tar.gz"))
4738 (sha256
4739 (base32
4740 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4741 (build-system perl-build-system)
4742 (native-inputs
4743 `(("perl-test-fatal" ,perl-test-fatal)
4744 ("perl-test-requires" ,perl-test-requires)
4745 ("perl-test-warnings" ,perl-test-warnings)
4746 ("perl-test-without-module" ,perl-test-without-module)))
4747 (propagated-inputs
4748 `(("perl-namespace-clean" ,perl-namespace-clean)))
4749 (home-page "https://metacpan.org/release/JSON-Any")
4750 (synopsis "Wrapper for Perl JSON classes")
4751 (description
4752 "This module tries to provide a coherent API to bring together the
4753 various JSON modules currently on CPAN. This module will allow you to code to
4754 any JSON API and have it work regardless of which JSON module is actually
4755 installed.")
4756 (license (package-license perl))))
4757
4758 (define-public perl-json-maybexs
4759 (package
4760 (name "perl-json-maybexs")
4761 (version "1.004000")
4762 (source
4763 (origin
4764 (method url-fetch)
4765 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4766 "JSON-MaybeXS-" version ".tar.gz"))
4767 (sha256
4768 (base32
4769 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
4770 (build-system perl-build-system)
4771 (native-inputs
4772 `(("perl-test-without-module" ,perl-test-without-module)))
4773 (inputs
4774 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4775 (home-page "https://metacpan.org/release/JSON-MaybeXS")
4776 (synopsis "Cpanel::JSON::XS with fallback")
4777 (description "This module first checks to see if either Cpanel::JSON::XS
4778 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4779 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4780 either uses the first module it finds or throws an error.")
4781 (license (package-license perl))))
4782
4783 (define-public perl-json-xs
4784 (package
4785 (name "perl-json-xs")
4786 (version "4.0")
4787 (source
4788 (origin
4789 (method url-fetch)
4790 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4791 "JSON-XS-" version ".tar.gz"))
4792 (sha256
4793 (base32
4794 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
4795 (build-system perl-build-system)
4796 (native-inputs
4797 `(("perl-canary-stability" ,perl-canary-stability)))
4798 (propagated-inputs
4799 `(("perl-common-sense" ,perl-common-sense)
4800 ("perl-types-serialiser" ,perl-types-serialiser)))
4801 (home-page "https://metacpan.org/release/JSON-XS")
4802 (synopsis "JSON serialising/deserialising for Perl")
4803 (description "This module converts Perl data structures to JSON and vice
4804 versa.")
4805 (license (package-license perl))))
4806
4807 (define-public perl-lexical-sealrequirehints
4808 (package
4809 (name "perl-lexical-sealrequirehints")
4810 (version "0.011")
4811 (source
4812 (origin
4813 (method url-fetch)
4814 (uri (string-append
4815 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4816 version
4817 ".tar.gz"))
4818 (sha256
4819 (base32
4820 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4821 (build-system perl-build-system)
4822 (native-inputs
4823 `(("perl-module-build" ,perl-module-build)))
4824 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
4825 (synopsis "Prevent leakage of lexical hints")
4826 (description
4827 "Lexical::SealRequireHints prevents leakage of lexical hints")
4828 (license (package-license perl))))
4829
4830 (define-public perl-log-any
4831 (package
4832 (name "perl-log-any")
4833 (version "1.707")
4834 (source
4835 (origin
4836 (method url-fetch)
4837 (uri (string-append "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-"
4838 version ".tar.gz"))
4839 (sha256
4840 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
4841 (build-system perl-build-system)
4842 (home-page "https://metacpan.org/release/Log-Any")
4843 (synopsis "Bringing loggers and listeners together")
4844 (description "@code{Log::Any} provides a standard log production API for
4845 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4846 for log consumption, whether screen, file or another logging mechanism like
4847 @code{Log::Dispatch} or @code{Log::Log4perl}.
4848
4849 A CPAN module uses @code{Log::Any} to get a log producer object. An
4850 application, in turn, may choose one or more logging mechanisms via
4851 @code{Log::Any::Adapter}, or none at all.
4852
4853 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4854 itself, which makes it appropriate for even small CPAN modules to use. It
4855 defaults to @code{null} logging activity, so a module can safely log without
4856 worrying about whether the application has chosen (or will ever choose) a
4857 logging mechanism.")
4858 (license (package-license perl))))
4859
4860 (define-public perl-log-any-adapter-log4perl
4861 (package
4862 (name "perl-log-any-adapter-log4perl")
4863 (version "0.09")
4864 (source
4865 (origin
4866 (method url-fetch)
4867 (uri (string-append
4868 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4869 version
4870 ".tar.gz"))
4871 (sha256
4872 (base32
4873 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4874 (build-system perl-build-system)
4875 (propagated-inputs
4876 `(("perl-log-any" ,perl-log-any)
4877 ("perl-log-log4perl" ,perl-log-log4perl)))
4878 (home-page
4879 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
4880 (synopsis "Log::Any adapter for Log::Log4perl")
4881 (description "@code{Log::Any::Adapter::Log4perl} provides a
4882 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4883 (license (package-license perl))))
4884
4885 (define-public perl-log-log4perl
4886 (package
4887 (name "perl-log-log4perl")
4888 (version "1.49")
4889 (source
4890 (origin
4891 (method url-fetch)
4892 (uri (string-append
4893 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4894 version
4895 ".tar.gz"))
4896 (sha256
4897 (base32
4898 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4899 (build-system perl-build-system)
4900 (home-page
4901 "https://metacpan.org/release/Log-Log4perl")
4902 (synopsis "Log4j implementation for Perl")
4903 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4904 the logging behaviour of your system from the outside. It implements the
4905 widely popular (Java-based) Log4j logging package in pure Perl.")
4906 (license (package-license perl))))
4907
4908 (define-public perl-log-report-optional
4909 (package
4910 (name "perl-log-report-optional")
4911 (version "1.06")
4912 (source (origin
4913 (method url-fetch)
4914 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4915 "Log-Report-Optional-" version ".tar.gz"))
4916 (sha256
4917 (base32
4918 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
4919 (build-system perl-build-system)
4920 (propagated-inputs
4921 `(("perl-string-print" ,perl-string-print)))
4922 (home-page "https://metacpan.org/release/Log-Report-Optional")
4923 (synopsis "Log::Report in the lightest form")
4924 (description
4925 "This module allows libraries to have a dependency to a small module
4926 instead of the full Log-Report distribution. The full power of
4927 @code{Log::Report} is only released when the main program uses that module.
4928 In that case, the module using the @code{Optional} will also use the full
4929 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4930 version.")
4931 (license (package-license perl))))
4932
4933 (define-public perl-log-report
4934 (package
4935 (name "perl-log-report")
4936 (version "1.10")
4937 (source (origin
4938 (method url-fetch)
4939 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4940 "Log-Report-" version ".tar.gz"))
4941 (sha256
4942 (base32
4943 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4944 (build-system perl-build-system)
4945 (propagated-inputs
4946 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4947 ("perl-log-report-optional" ,perl-log-report-optional)
4948 ("perl-string-print" ,perl-string-print)))
4949 (home-page "https://metacpan.org/release/Log-Report")
4950 (synopsis "Get messages to users and logs")
4951 (description
4952 "@code{Log::Report} combines three tasks which are closely related in
4953 one: logging, exceptions, and translations.")
4954 (license (package-license perl))))
4955
4956 (define-public perl-libintl-perl
4957 (package
4958 (name "perl-libintl-perl")
4959 (version "1.31")
4960 (source
4961 (origin
4962 (method url-fetch)
4963 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4964 "libintl-perl-" version ".tar.gz"))
4965 (sha256
4966 (base32 "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"))))
4967 (build-system perl-build-system)
4968 (arguments
4969 `(#:phases
4970 (modify-phases %standard-phases
4971 (add-before 'configure 'set-perl-search-path
4972 (lambda _
4973 ;; Work around "dotless @INC" build failure.
4974 (setenv "PERL5LIB" (string-append (getcwd) ":"
4975 (getenv "PERL5LIB")))
4976 #t)))))
4977 (propagated-inputs
4978 `(("perl-file-sharedir" ,perl-file-sharedir)))
4979 (home-page "https://metacpan.org/release/libintl-perl")
4980 (synopsis "High-level interface to Uniforum message translation")
4981 (description "This package is an internationalization library for Perl
4982 that aims to be compatible with the Uniforum message translations system as
4983 implemented for example in GNU gettext.")
4984 (license gpl3+)))
4985
4986 (define-public perl-lingua-translit
4987 (package
4988 (name "perl-lingua-translit")
4989 (version "0.28")
4990 (source
4991 (origin
4992 (method url-fetch)
4993 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4994 "Lingua-Translit-" version ".tar.gz"))
4995 (sha256
4996 (base32
4997 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
4998 (build-system perl-build-system)
4999 (home-page "https://metacpan.org/release/Lingua-Translit")
5000 (synopsis "Transliterate text between writing systems")
5001 (description "@code{Lingua::Translit} can be used to convert text from one
5002 writing system to another, based on national or international transliteration
5003 tables. Where possible a reverse transliteration is supported.")
5004 (license (package-license perl))))
5005
5006 (define-public perl-list-allutils
5007 (package
5008 (name "perl-list-allutils")
5009 (version "0.09")
5010 (source
5011 (origin
5012 (method url-fetch)
5013 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5014 "List-AllUtils-" version ".tar.gz"))
5015 (sha256
5016 (base32
5017 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
5018 (build-system perl-build-system)
5019 (native-inputs
5020 `(("perl-test-warnings" ,perl-test-warnings)))
5021 (propagated-inputs
5022 `(("perl-list-moreutils" ,perl-list-moreutils)
5023 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
5024 (home-page "https://metacpan.org/release/List-AllUtils")
5025 (synopsis "Combination of List::Util and List::MoreUtils")
5026 (description "This module exports all of the functions that either
5027 List::Util or List::MoreUtils defines, with preference to List::Util.")
5028 (license (package-license perl))))
5029
5030 (define-public perl-list-compare
5031 (package
5032 (name "perl-list-compare")
5033 (version "0.53")
5034 (source
5035 (origin
5036 (method url-fetch)
5037 (uri (string-append
5038 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
5039 version
5040 ".tar.gz"))
5041 (sha256
5042 (base32
5043 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
5044 (build-system perl-build-system)
5045 (native-inputs
5046 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
5047 (home-page "https://metacpan.org/release/List-Compare")
5048 (synopsis "Compare elements of two or more lists")
5049 (description "@code{List::Compare} provides a module to perform
5050 comparative operations on two or more lists. Provided operations include
5051 intersections, unions, unique elements, complements and many more.")
5052 (license (package-license perl))))
5053
5054 (define-public perl-list-moreutils
5055 (package
5056 (name "perl-list-moreutils")
5057 (version "0.428")
5058 (source
5059 (origin
5060 (method url-fetch)
5061 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5062 "List-MoreUtils-" version ".tar.gz"))
5063 (sha256
5064 (base32
5065 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
5066 (build-system perl-build-system)
5067 (arguments
5068 `(#:phases
5069 (modify-phases %standard-phases
5070 (add-before 'configure 'set-perl-search-path
5071 (lambda _
5072 ;; Work around "dotless @INC" build failure.
5073 (setenv "PERL5LIB"
5074 (string-append (getcwd) ":"
5075 (getenv "PERL5LIB")))
5076 #t)))))
5077 (native-inputs
5078 `(("perl-config-autoconf" ,perl-config-autoconf)
5079 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5080 (propagated-inputs
5081 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5082 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
5083 (home-page "https://metacpan.org/release/List-MoreUtils")
5084 (synopsis "Provide the stuff missing in List::Util")
5085 (description "List::MoreUtils provides some trivial but commonly needed
5086 functionality on lists which is not going to go into List::Util.")
5087 (license (package-license perl))))
5088
5089 (define-public perl-list-moreutils-xs
5090 (package
5091 (name "perl-list-moreutils-xs")
5092 (version "0.428")
5093 (source
5094 (origin
5095 (method url-fetch)
5096 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
5097 version ".tar.gz"))
5098 (sha256
5099 (base32
5100 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
5101 (build-system perl-build-system)
5102 (native-inputs
5103 `(("perl-config-autoconf" ,perl-config-autoconf)
5104 ("perl-inc-latest" ,perl-inc-latest)
5105 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5106 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
5107 (synopsis "Provide the stuff missing in List::Util in XS")
5108 (description "@code{List::MoreUtils::XS} provides some trivial but
5109 commonly needed functionality on lists which is not going to go into
5110 @code{List::Util}.")
5111 (license asl2.0)))
5112
5113 (define-public perl-list-someutils
5114 (package
5115 (name "perl-list-someutils")
5116 (version "0.56")
5117 (source
5118 (origin
5119 (method url-fetch)
5120 (uri (string-append
5121 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
5122 version
5123 ".tar.gz"))
5124 (sha256
5125 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
5126 (build-system perl-build-system)
5127 (native-inputs
5128 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
5129 (inputs
5130 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5131 ("perl-module-implementation"
5132 ,perl-module-implementation)))
5133 (home-page "https://metacpan.org/release/List-SomeUtils")
5134 (synopsis "Provide the stuff missing in List::Util")
5135 (description "@code{List::SomeUtils} provides some trivial but commonly
5136 needed functionality on lists which is not going to go into @code{List::Util}.
5137
5138 All of the below functions are implementable in only a couple of lines of Perl
5139 code. Using the functions from this module however should give slightly
5140 better performance as everything is implemented in C. The pure-Perl
5141 implementation of these functions only serves as a fallback in case the C
5142 portions of this module couldn't be compiled on this machine.")
5143 (license (package-license perl))))
5144
5145 (define-public perl-mailtools
5146 (package
5147 (name "perl-mailtools")
5148 (version "2.21")
5149 (source
5150 (origin
5151 (method url-fetch)
5152 (uri (string-append
5153 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
5154 version
5155 ".tar.gz"))
5156 (sha256
5157 (base32
5158 "1js43bp2dnd8n2rv8clsv749166jnyqnc91k4wkkmw5n4rlbvnaa"))))
5159 (build-system perl-build-system)
5160 (propagated-inputs
5161 `(("perl-timedate" ,perl-timedate)))
5162 (home-page
5163 "https://metacpan.org/release/MailTools")
5164 (synopsis "Bundle of ancient email modules")
5165 (description "MailTools contains the following modules:
5166 @table @asis
5167 @item Mail::Address
5168 Parse email address from a header line.
5169 @item Mail::Cap
5170 Interpret mailcap files: mappings of file-types to applications as used by
5171 many command-line email programs.
5172 @item Mail::Field
5173 Simplifies access to (some) email header fields. Used by Mail::Header.
5174 @item Mail::Filter
5175 Process Mail::Internet messages.
5176 @item Mail::Header
5177 Collection of Mail::Field objects, representing the header of a Mail::Internet
5178 object.
5179 @item Mail::Internet
5180 Represents a single email message, with header and body.
5181 @item Mail::Mailer
5182 Send Mail::Internet emails via direct smtp or local MTA's.
5183 @item Mail::Send
5184 Build a Mail::Internet object, and then send it out using Mail::Mailer.
5185 @item Mail::Util
5186 \"Smart functions\" you should not depend on.
5187 @end table")
5188 (license perl-license)))
5189
5190 (define-public perl-math-bezier
5191 (package
5192 (name "perl-math-bezier")
5193 (version "0.01")
5194 (source (origin
5195 (method url-fetch)
5196 (uri (string-append
5197 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
5198 version ".tar.gz"))
5199 (sha256
5200 (base32
5201 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
5202 (build-system perl-build-system)
5203 (home-page "https://metacpan.org/release/Math-Bezier")
5204 (synopsis "Solution of bezier curves")
5205 (description "This module implements the algorithm for the solution of Bezier
5206 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
5207 Bezier Curve Drawing\".")
5208 (license perl-license)))
5209
5210 (define-public perl-math-round
5211 (package
5212 (name "perl-math-round")
5213 (version "0.07")
5214 (source (origin
5215 (method url-fetch)
5216 (uri (string-append
5217 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
5218 version ".tar.gz"))
5219 (sha256
5220 (base32
5221 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
5222 (build-system perl-build-system)
5223 (home-page "https://metacpan.org/release/Math-Round")
5224 (synopsis "Perl extension for rounding numbers")
5225 (description "@code{Math::Round} provides functions to round numbers,
5226 both positive and negative, in various ways.")
5227 (license perl-license)))
5228
5229 (define-public perl-memoize
5230 (package
5231 (name "perl-memoize")
5232 (version "1.03")
5233 (source (origin
5234 (method url-fetch)
5235 (uri (string-append
5236 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
5237 version".tgz"))
5238 (sha256
5239 (base32
5240 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
5241 (build-system perl-build-system)
5242 (home-page "https://metacpan.org/release/Memoize")
5243 (synopsis "Make functions faster by trading space for time")
5244 (description "This package transparently speeds up functions by caching
5245 return values, trading space for time.")
5246 (license perl-license)))
5247
5248 (define-public perl-memoize-expirelru
5249 (package
5250 (name "perl-memoize-expirelru")
5251 (version "0.56")
5252 (source
5253 (origin
5254 (method url-fetch)
5255 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
5256 "Memoize-ExpireLRU-" version ".tar.gz"))
5257 (sha256
5258 (base32
5259 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
5260 (build-system perl-build-system)
5261 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
5262 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
5263 (description "This module implements an expiry policy for Memoize that
5264 follows LRU semantics, that is, the last n results, where n is specified as
5265 the argument to the CACHESIZE parameter, will be cached.")
5266 (license (package-license perl))))
5267
5268 (define-public perl-mime-charset
5269 (package
5270 (name "perl-mime-charset")
5271 (version "1.012.2")
5272 (source (origin
5273 (method url-fetch)
5274 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
5275 "MIME-Charset-" version ".tar.gz"))
5276 (sha256
5277 (base32
5278 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
5279 (build-system perl-build-system)
5280 (home-page "https://metacpan.org/release/MIME-Charset")
5281 (synopsis "Charset information for MIME messages")
5282 (description
5283 "@code{MIME::Charset} provides information about character sets used for
5284 MIME messages on Internet.")
5285 (license (package-license perl))))
5286
5287 (define-public perl-mime-tools
5288 (package
5289 (name "perl-mime-tools")
5290 (version "5.509")
5291 (source
5292 (origin
5293 (method url-fetch)
5294 (uri (string-append
5295 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
5296 version
5297 ".tar.gz"))
5298 (sha256
5299 (base32
5300 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
5301 (build-system perl-build-system)
5302 (native-inputs
5303 `(("perl-test-deep" ,perl-test-deep)))
5304 (inputs
5305 `(("perl-convert-binhex" ,perl-convert-binhex)))
5306 (propagated-inputs
5307 `(("perl-mailtools" ,perl-mailtools)))
5308 (home-page
5309 "https://metacpan.org/release/MIME-tools")
5310 (synopsis "Tools to manipulate MIME messages")
5311 (description
5312 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
5313 decoding, and generating single- or multipart (even nested multipart) MIME
5314 messages.")
5315 (license perl-license)))
5316
5317 (define-public perl-mime-types
5318 (package
5319 (name "perl-mime-types")
5320 (version "2.17")
5321 (source
5322 (origin
5323 (method url-fetch)
5324 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5325 "MIME-Types-" version ".tar.gz"))
5326 (sha256
5327 (base32
5328 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
5329 (build-system perl-build-system)
5330 (home-page "https://metacpan.org/release/MIME-Types")
5331 (synopsis "Definition of MIME types")
5332 (description "This module provides a list of known mime-types, combined
5333 from various sources. For instance, it contains all IANA types and the
5334 knowledge of Apache.")
5335 (license (package-license perl))))
5336
5337 (define-public perl-mixin-linewise
5338 (package
5339 (name "perl-mixin-linewise")
5340 (version "0.108")
5341 (source (origin
5342 (method url-fetch)
5343 (uri (string-append
5344 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5345 version ".tar.gz"))
5346 (sha256
5347 (base32
5348 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5349 (build-system perl-build-system)
5350 (inputs
5351 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5352 ("perl-sub-exporter" ,perl-sub-exporter)))
5353 (home-page "https://metacpan.org/release/Mixin-Linewise")
5354 (synopsis "Write your linewise code for handles; this does the rest")
5355 (description "It's boring to deal with opening files for IO, converting
5356 strings to handle-like objects, and all that. With
5357 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5358 just write a method to handle handles, and methods for handling strings and
5359 file names are added for you.")
5360 (license (package-license perl))))
5361
5362 (define-public perl-modern-perl
5363 (package
5364 (name "perl-modern-perl")
5365 (version "1.20181021")
5366 (source
5367 (origin
5368 (method url-fetch)
5369 (uri (string-append
5370 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5371 version ".tar.gz"))
5372 (sha256
5373 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
5374 (build-system perl-build-system)
5375 (native-inputs
5376 `(("perl-module-build" ,perl-module-build)))
5377 (home-page
5378 "https://metacpan.org/release/Modern-Perl")
5379 (synopsis
5380 "Enable all of the features of Modern Perl with one import")
5381 (description "@code{Modern::Perl} provides a simple way to enable
5382 multiple, by now, standard libraries in a Perl program.")
5383 (license (package-license perl))))
5384
5385 (define-public perl-module-build-tiny
5386 (package
5387 (name "perl-module-build-tiny")
5388 (version "0.039")
5389 (source
5390 (origin
5391 (method url-fetch)
5392 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5393 "Module-Build-Tiny-" version ".tar.gz"))
5394 (sha256
5395 (base32
5396 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5397 (build-system perl-build-system)
5398 (native-inputs
5399 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5400 ("perl-extutils-config" ,perl-extutils-config)
5401 ("perl-extutils-helpers" ,perl-extutils-helpers)
5402 ("perl-test-harness" ,perl-test-harness)))
5403 (propagated-inputs
5404 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5405 ("perl-extutils-config" ,perl-extutils-config)
5406 ("perl-extutils-helpers" ,perl-extutils-helpers)
5407 ("perl-test-harness" ,perl-test-harness)))
5408 (home-page "https://metacpan.org/release/Module-Build-Tiny")
5409 (synopsis "Tiny replacement for Module::Build")
5410 (description "Many Perl distributions use a Build.PL file instead of a
5411 Makefile.PL file to drive distribution configuration, build, test and
5412 installation. Traditionally, Build.PL uses Module::Build as the underlying
5413 build system. This module provides a simple, lightweight, drop-in
5414 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5415 has less than 120, yet supports the features needed by most distributions.")
5416 (license (package-license perl))))
5417
5418 (define-public perl-module-build-withxspp
5419 (package
5420 (name "perl-module-build-withxspp")
5421 (version "0.14")
5422 (source
5423 (origin
5424 (method url-fetch)
5425 (uri (string-append
5426 "mirror://cpan/authors/id/S/SM/SMUELLER/Module-Build-WithXSpp-"
5427 version
5428 ".tar.gz"))
5429 (sha256
5430 (base32
5431 "0d39fjg9c0n820bk3fb50vvlwhdny4hdl69xmlyzql5xzp4cicsk"))))
5432 (build-system perl-build-system)
5433 (native-inputs
5434 `(("perl-module-build" ,perl-module-build)))
5435 (propagated-inputs
5436 `(("perl-extutils-cppguess" ,perl-extutils-cppguess)
5437 ("perl-extutils-xspp" ,perl-extutils-xspp)
5438 ("perl-module-build" ,perl-module-build)))
5439 (home-page
5440 "https://metacpan.org/release/Module-Build-WithXSpp")
5441 (synopsis
5442 "The module provides an XS++ enhanced flavour of Module::Build")
5443 (description "This subclass of Module::Build adds some tools and
5444 processes to make it easier to use for wrapping C++ using XS++
5445 (ExtUtils::XSpp).")
5446 (license (package-license perl))))
5447
5448 (define-public perl-module-build-xsutil
5449 (package
5450 (name "perl-module-build-xsutil")
5451 (version "0.16")
5452 (source (origin
5453 (method url-fetch)
5454 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5455 "Module-Build-XSUtil-" version ".tar.gz"))
5456 (sha256
5457 (base32
5458 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5459 (build-system perl-build-system)
5460 (native-inputs
5461 `(("perl-capture-tiny" ,perl-capture-tiny)
5462 ("perl-cwd-guard" ,perl-cwd-guard)
5463 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5464 ("perl-module-build" ,perl-module-build)))
5465 (propagated-inputs
5466 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5467 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
5468 (synopsis "Module::Build class for building XS modules")
5469 (description
5470 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5471 for support building XS modules.
5472
5473 This is a list of a new parameters in the @code{Module::Build::new} method:
5474
5475 @enumerate
5476 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5477 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5478 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5479 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5480 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5481 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5482 @file{ppport.h}, and defines some portability stuff which are not supported by
5483 @file{ppport.h}.
5484
5485 It is ported from @code{Module::Install::XSUtil}.
5486 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5487 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5488 debug options.
5489 @end enumerate")
5490 (license (package-license perl))))
5491
5492 (define-public perl-module-find
5493 (package
5494 (name "perl-module-find")
5495 (version "0.13")
5496 (source
5497 (origin
5498 (method url-fetch)
5499 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5500 "Module-Find-" version ".tar.gz"))
5501 (sha256
5502 (base32
5503 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5504 (build-system perl-build-system)
5505 (home-page "https://metacpan.org/release/Module-Find")
5506 (synopsis "Find and use installed modules in a (sub)category")
5507 (description "Module::Find lets you find and use modules in categories.
5508 This can be useful for auto-detecting driver or plugin modules. You can
5509 differentiate between looking in the category itself or in all
5510 subcategories.")
5511 (license (package-license perl))))
5512
5513 (define-public perl-module-implementation
5514 (package
5515 (name "perl-module-implementation")
5516 (version "0.09")
5517 (source
5518 (origin
5519 (method url-fetch)
5520 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5521 "Module-Implementation-" version ".tar.gz"))
5522 (sha256
5523 (base32
5524 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5525 (build-system perl-build-system)
5526 (native-inputs
5527 `(("perl-test-fatal" ,perl-test-fatal)
5528 ("perl-test-requires" ,perl-test-requires)))
5529 (propagated-inputs
5530 `(("perl-module-runtime" ,perl-module-runtime)
5531 ("perl-try-tiny" ,perl-try-tiny)))
5532 (home-page "https://metacpan.org/release/Module-Implementation")
5533 (synopsis "Loads alternate underlying implementations for a module")
5534 (description "This module abstracts out the process of choosing one of
5535 several underlying implementations for a module. This can be used to provide
5536 XS and pure Perl implementations of a module, or it could be used to load an
5537 implementation for a given OS or any other case of needing to provide multiple
5538 implementations.")
5539 (license artistic2.0)))
5540
5541 (define-public perl-module-install
5542 (package
5543 (name "perl-module-install")
5544 (version "1.19")
5545 (source
5546 (origin
5547 (method url-fetch)
5548 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5549 "Module-Install-" version ".tar.gz"))
5550 (sha256
5551 (base32
5552 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5553 (build-system perl-build-system)
5554 (native-inputs
5555 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5556 (propagated-inputs
5557 `(("perl-archive-zip" ,perl-archive-zip)
5558 ("perl-file-homedir" ,perl-file-homedir)
5559 ("perl-file-remove" ,perl-file-remove)
5560 ("perl-json" ,perl-json)
5561 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5562 ;; would cause a circular dependency with (gnu packages web), so we
5563 ;; leave it out. It may be resolved at runtime, however.
5564 ;("perl-libwww-perl" ,perl-libwww-perl)
5565 ("perl-module-scandeps" ,perl-module-scandeps)
5566 ("perl-par-dist" ,perl-par-dist)
5567 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5568 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5569 ;; character handling.
5570 (arguments `(#:tests? #f))
5571 (home-page "https://metacpan.org/release/Module-Install")
5572 (synopsis "Standalone, extensible Perl module installer")
5573 (description "Module::Install is a package for writing installers for
5574 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5575 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5576 installation version 5.005 or newer.")
5577 (license (package-license perl))))
5578
5579 (define-public perl-module-manifest
5580 (package
5581 (name "perl-module-manifest")
5582 (version "1.09")
5583 (source
5584 (origin
5585 (method url-fetch)
5586 (uri (string-append
5587 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
5588 version ".tar.gz"))
5589 (sha256
5590 (base32
5591 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
5592 (build-system perl-build-system)
5593 (native-inputs
5594 `(("perl-test-exception" ,perl-test-exception)
5595 ("perl-test-warn" ,perl-test-warn)))
5596 (propagated-inputs
5597 `(("perl-params-util" ,perl-params-util)))
5598 (home-page "https://metacpan.org/release/Module-Manifest")
5599 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
5600 (description
5601 "@code{Module::Manifest} is a simple utility module created originally for
5602 use in @code{Module::Inspector}.
5603
5604 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
5605 examine the contents, and perform some simple tasks. It can also load the
5606 @file{MANIFEST.SKIP} file and check that.")
5607 (license perl-license)))
5608
5609 (define-public perl-module-pluggable
5610 (package
5611 (name "perl-module-pluggable")
5612 (version "5.2")
5613 (source
5614 (origin
5615 (method url-fetch)
5616 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5617 "Module-Pluggable-" version ".tar.gz"))
5618 (sha256
5619 (base32
5620 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5621 (patches (search-patches "perl-module-pluggable-search.patch"))))
5622 (build-system perl-build-system)
5623 (home-page "https://metacpan.org/release/Module-Pluggable")
5624 (synopsis "Give your Perl module the ability to have plugins")
5625 (description "This module provides a simple but extensible way of having
5626 @code{plugins} for your Perl module.")
5627 (license (package-license perl))))
5628
5629 (define-public perl-module-runtime
5630 (package
5631 (name "perl-module-runtime")
5632 (version "0.016")
5633 (source
5634 (origin
5635 (method url-fetch)
5636 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5637 "Module-Runtime-" version ".tar.gz"))
5638 (sha256
5639 (base32
5640 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
5641 (build-system perl-build-system)
5642 (native-inputs `(("perl-module-build" ,perl-module-build)))
5643 (home-page "https://metacpan.org/release/Module-Runtime")
5644 (synopsis "Perl runtime module handling")
5645 (description "The functions exported by this module deal with runtime
5646 handling of Perl modules, which are normally handled at compile time.")
5647 (license (package-license perl))))
5648
5649 (define-public perl-module-runtime-conflicts
5650 (package
5651 (name "perl-module-runtime-conflicts")
5652 (version "0.003")
5653 (source
5654 (origin
5655 (method url-fetch)
5656 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5657 "Module-Runtime-Conflicts-" version ".tar.gz"))
5658 (sha256
5659 (base32
5660 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5661 (build-system perl-build-system)
5662 (native-inputs
5663 `(("perl-module-build" ,perl-module-build)))
5664 (propagated-inputs
5665 `(("perl-module-runtime" ,perl-module-runtime)
5666 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5667 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
5668 (synopsis "Provide information on conflicts for Module::Runtime")
5669 (description "This module provides conflicts checking for Module::Runtime,
5670 which had a recent release that broke some versions of Moose. It is called
5671 from Moose::Conflicts and moose-outdated.")
5672 (license (package-license perl))))
5673
5674 (define-public perl-module-scandeps
5675 (package
5676 (name "perl-module-scandeps")
5677 (version "1.27")
5678 (source
5679 (origin
5680 (method url-fetch)
5681 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5682 "Module-ScanDeps-" version ".tar.gz"))
5683 (sha256
5684 (base32
5685 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
5686 (build-system perl-build-system)
5687 (native-inputs
5688 `(("perl-test-requires" ,perl-test-requires)))
5689 (home-page "https://metacpan.org/release/Module-ScanDeps")
5690 (synopsis "Recursively scan Perl code for dependencies")
5691 (description "Module::ScanDeps is a module to recursively scan Perl
5692 programs for dependencies.")
5693 (license (package-license perl))))
5694
5695 (define-public perl-module-util
5696 (package
5697 (name "perl-module-util")
5698 (version "1.09")
5699 (source
5700 (origin
5701 (method url-fetch)
5702 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5703 "Module-Util-" version ".tar.gz"))
5704 (sha256
5705 (base32
5706 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5707 (build-system perl-build-system)
5708 (native-inputs
5709 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5710 (home-page "https://metacpan.org/release/Module-Util")
5711 (synopsis "Module name tools and transformations")
5712 (description "This module provides a few useful functions for manipulating
5713 module names. Its main aim is to centralise some of the functions commonly
5714 used by modules that manipulate other modules in some way, like converting
5715 module names to relative paths.")
5716 (license (package-license perl))))
5717
5718 (define-public perl-moo
5719 (package
5720 (name "perl-moo")
5721 (version "1.007000")
5722 (source
5723 (origin
5724 (method url-fetch)
5725 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5726 "Moo-" version ".tar.gz"))
5727 (sha256
5728 (base32
5729 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5730 (build-system perl-build-system)
5731 (native-inputs
5732 `(("perl-test-fatal" ,perl-test-fatal)))
5733 (propagated-inputs
5734 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5735 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5736 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5737 ("perl-import-into" ,perl-import-into)
5738 ("perl-module-runtime" ,perl-module-runtime)
5739 ("perl-role-tiny" ,perl-role-tiny)
5740 ("perl-strictures" ,perl-strictures)))
5741 (home-page "https://metacpan.org/release/Moo")
5742 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5743 (description "Moo is an extremely light-weight Object Orientation system.
5744 It allows one to concisely define objects and roles with a convenient syntax
5745 that avoids the details of Perl's object system. Moo contains a subset of
5746 Moose and is optimised for rapid startup.")
5747 (license (package-license perl))))
5748
5749 ;; Some packages don't yet work with this newer version of ‘Moo’.
5750 (define-public perl-moo-2
5751 (package
5752 (inherit perl-moo)
5753 (name "perl-moo-2")
5754 (version "2.003006")
5755 (source
5756 (origin
5757 (method url-fetch)
5758 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5759 "Moo-" version ".tar.gz"))
5760 (sha256
5761 (base32 "0wi4gyp5kn4lbags0hrax3c9jj9spxg4d11fbrdh0ican4m0kcmw"))))
5762 (propagated-inputs
5763 `(("perl-role-tiny" ,perl-role-tiny-2)
5764 ("perl-sub-name" ,perl-sub-name)
5765 ("perl-sub-quote" ,perl-sub-quote)
5766 ("perl-strictures" ,perl-strictures-2)
5767 ,@(alist-delete "perl-strictures"
5768 (alist-delete "perl-role-tiny"
5769 (package-propagated-inputs perl-moo)))))
5770 (arguments
5771 `(#:phases
5772 (modify-phases %standard-phases
5773 (add-before 'configure 'set-perl-search-path
5774 (lambda _
5775 ;; Use perl-strictures for testing.
5776 (setenv "MOO_FATAL_WARNINGS" "=1")
5777 #t)))))))
5778
5779 (define-public perl-moose
5780 (package
5781 (name "perl-moose")
5782 (version "2.2012")
5783 (source (origin
5784 (method url-fetch)
5785 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5786 "Moose-" version ".tar.gz"))
5787 (sha256
5788 (base32
5789 "0s9m2pskc8h1k94pbvx0lvf0xgv9xca349isbcsrqdqnkmxf9fs6"))))
5790 (build-system perl-build-system)
5791 (native-inputs
5792 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5793 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5794 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5795 ("perl-test-fatal" ,perl-test-fatal)
5796 ("perl-test-requires" ,perl-test-requires)
5797 ("perl-test-warnings" ,perl-test-warnings)))
5798 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5799 ;; # === Other Modules ===
5800 ;; #
5801 ;; # Module Want Have
5802 ;; # ---------------------------- ---- -------
5803 ;; # Algorithm::C3 any missing
5804 ;; # DBM::Deep any missing
5805 ;; # DateTime any missing
5806 ;; # DateTime::Calendar::Mayan any missing
5807 ;; # DateTime::Format::MySQL any missing
5808 ;; # Declare::Constraints::Simple any missing
5809 ;; # Dist::CheckConflicts any 0.11
5810 ;; # HTTP::Headers any missing
5811 ;; # IO::File any 1.16
5812 ;; # IO::String any missing
5813 ;; # Locale::US any missing
5814 ;; # Module::Refresh any missing
5815 ;; # MooseX::NonMoose any missing
5816 ;; # Params::Coerce any missing
5817 ;; # Regexp::Common any missing
5818 ;; # SUPER any missing
5819 ;; # Test::Deep any missing
5820 ;; # Test::DependentModules any missing
5821 ;; # Test::LeakTrace any missing
5822 ;; # Test::Output any missing
5823 ;; # URI any missing
5824 (propagated-inputs
5825 `(("perl-class-load" ,perl-class-load)
5826 ("perl-class-load-xs" ,perl-class-load-xs)
5827 ("perl-data-optlist" ,perl-data-optlist)
5828 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5829 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5830 ("perl-devel-partialdump" ,perl-devel-partialdump)
5831 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5832 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5833 ("perl-eval-closure" ,perl-eval-closure)
5834 ("perl-list-moreutils" ,perl-list-moreutils)
5835 ("perl-module-runtime" ,perl-module-runtime)
5836 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5837 ("perl-mro-compat" ,perl-mro-compat)
5838 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5839 ("perl-package-stash" ,perl-package-stash)
5840 ("perl-package-stash-xs" ,perl-package-stash-xs)
5841 ("perl-params-util" ,perl-params-util)
5842 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5843 ("perl-sub-exporter" ,perl-sub-exporter)
5844 ("perl-sub-name" ,perl-sub-name)
5845 ("perl-task-weaken" ,perl-task-weaken)
5846 ("perl-try-tiny" ,perl-try-tiny)))
5847 (home-page "https://metacpan.org/release/Moose")
5848 (synopsis "Postmodern object system for Perl 5")
5849 (description
5850 "Moose is a complete object system for Perl 5. It provides keywords for
5851 attribute declaration, object construction, inheritance, and maybe more. With
5852 Moose, you define your class declaratively, without needing to know about
5853 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5854 logical structure of your classes, focusing on \"what\" rather than \"how\".
5855 A class definition with Moose reads like a list of very concise English
5856 sentences.")
5857 (license (package-license perl))))
5858
5859 (define-public perl-moosex-emulate-class-accessor-fast
5860 (package
5861 (name "perl-moosex-emulate-class-accessor-fast")
5862 (version "0.009032")
5863 (source
5864 (origin
5865 (method url-fetch)
5866 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5867 "MooseX-Emulate-Class-Accessor-Fast-"
5868 version ".tar.gz"))
5869 (sha256
5870 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
5871 (build-system perl-build-system)
5872 (native-inputs
5873 `(("perl-module-install" ,perl-module-install)
5874 ("perl-test-exception" ,perl-test-exception)))
5875 (propagated-inputs
5876 `(("perl-moose" ,perl-moose)))
5877 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
5878 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5879 (description "This module attempts to emulate the behavior of
5880 Class::Accessor::Fast as accurately as possible using the Moose attribute
5881 system. The public API of Class::Accessor::Fast is wholly supported, but the
5882 private methods are not.")
5883 (license (package-license perl))))
5884
5885 (define-public perl-moosex-getopt
5886 (package
5887 (name "perl-moosex-getopt")
5888 (version "0.74")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5893 "MooseX-Getopt-" version ".tar.gz"))
5894 (sha256
5895 (base32 "091crga5gjyhj2lz55w3ba37xq6pmjg5dx5xccsrzghy8cxxzq0x"))))
5896 (build-system perl-build-system)
5897 (native-inputs
5898 `(("perl-module-build" ,perl-module-build)
5899 ("perl-module-build-tiny" ,perl-module-build-tiny)
5900 ("perl-path-tiny" ,perl-path-tiny)
5901 ("perl-test-deep" ,perl-test-deep)
5902 ("perl-test-fatal" ,perl-test-fatal)
5903 ("perl-test-needs" ,perl-test-needs)
5904 ("perl-test-requires" ,perl-test-requires)
5905 ("perl-test-trap" ,perl-test-trap)
5906 ("perl-test-warnings" ,perl-test-warnings)))
5907 (propagated-inputs
5908 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5909 ("perl-moose" ,perl-moose)
5910 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5911 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5912 (home-page "https://metacpan.org/release/MooseX-Getopt")
5913 (synopsis "Moose role for processing command line options")
5914 (description "This is a Moose role which provides an alternate constructor
5915 for creating objects using parameters passed in from the command line.")
5916 (license (package-license perl))))
5917
5918 (define-public perl-moosex-markasmethods
5919 (package
5920 (name "perl-moosex-markasmethods")
5921 (version "0.15")
5922 (source
5923 (origin
5924 (method url-fetch)
5925 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5926 "MooseX-MarkAsMethods-" version ".tar.gz"))
5927 (sha256
5928 (base32
5929 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5930 (build-system perl-build-system)
5931 (inputs
5932 `(("perl-moose" ,perl-moose)
5933 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5934 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
5935 (synopsis "Mark overload code symbols as methods")
5936 (description "MooseX::MarkAsMethods allows one to easily mark certain
5937 functions as Moose methods. This will allow other packages such as
5938 namespace::autoclean to operate without blowing away your overloads. After
5939 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5940 being methods, and class extension as well as composition from roles with
5941 overloads will \"just work\".")
5942 (license lgpl2.1)))
5943
5944 (define-public perl-moosex-methodattributes
5945 (package
5946 (name "perl-moosex-methodattributes")
5947 (version "0.31")
5948 (source
5949 (origin
5950 (method url-fetch)
5951 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5952 "MooseX-MethodAttributes-" version ".tar.gz"))
5953 (sha256
5954 (base32
5955 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
5956 (build-system perl-build-system)
5957 (native-inputs
5958 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5959 ("perl-test-fatal" ,perl-test-fatal)
5960 ("perl-test-requires" ,perl-test-requires)))
5961 (propagated-inputs
5962 `(("perl-moose" ,perl-moose)
5963 ("perl-moosex-types" ,perl-moosex-types)
5964 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5965 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
5966 (synopsis "Code attribute introspection")
5967 (description "This module allows code attributes of methods to be
5968 introspected using Moose meta method objects.")
5969 (license (package-license perl))))
5970
5971 (define-public perl-moosex-nonmoose
5972 (package
5973 (name "perl-moosex-nonmoose")
5974 (version "0.26")
5975 (source
5976 (origin
5977 (method url-fetch)
5978 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5979 "MooseX-NonMoose-" version ".tar.gz"))
5980 (sha256
5981 (base32
5982 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5983 (build-system perl-build-system)
5984 (native-inputs
5985 `(("perl-moose" ,perl-moose)
5986 ("perl-test-fatal" ,perl-test-fatal)))
5987 (propagated-inputs
5988 `(("perl-list-moreutils" ,perl-list-moreutils)
5989 ("perl-module-runtime" ,perl-module-runtime)
5990 ("perl-moose" ,perl-moose)
5991 ("perl-try-tiny" ,perl-try-tiny)))
5992 (home-page "https://metacpan.org/release/MooseX-NonMoose")
5993 (synopsis "Subclassing of non-Moose classes")
5994 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5995 classes with Moose, taking care of the details connected with doing this, such
5996 as setting up proper inheritance from Moose::Object and installing (and
5997 inlining, at make_immutable time) a constructor that makes sure things like
5998 BUILD methods are called. It tries to be as non-intrusive as possible.")
5999 (license (package-license perl))))
6000
6001 (define-public perl-moosex-params-validate
6002 (package
6003 (name "perl-moosex-params-validate")
6004 (version "0.21")
6005 (source
6006 (origin
6007 (method url-fetch)
6008 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6009 "MooseX-Params-Validate-" version ".tar.gz"))
6010 (sha256
6011 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
6012 (build-system perl-build-system)
6013 (native-inputs
6014 `(("perl-moose" ,perl-moose)
6015 ("perl-test-fatal" ,perl-test-fatal)))
6016 (propagated-inputs
6017 `(("perl-devel-caller" ,perl-devel-caller)
6018 ("perl-moose" ,perl-moose)
6019 ("perl-params-validate" ,perl-params-validate)
6020 ("perl-sub-exporter" ,perl-sub-exporter)))
6021 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
6022 (synopsis "Extension of Params::Validate using Moose's types")
6023 (description "This module fills a gap in Moose by adding method parameter
6024 validation to Moose.")
6025 (license (package-license perl))))
6026
6027 (define-public perl-moosex-relatedclassroles
6028 (package
6029 (name "perl-moosex-relatedclassroles")
6030 (version "0.004")
6031 (source
6032 (origin
6033 (method url-fetch)
6034 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
6035 "MooseX-RelatedClassRoles-" version ".tar.gz"))
6036 (sha256
6037 (base32
6038 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
6039 (build-system perl-build-system)
6040 (propagated-inputs
6041 `(("perl-moose" ,perl-moose)
6042 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
6043 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
6044 (synopsis "Apply roles to a related Perl class")
6045 (description "This module applies roles to make a subclass instead of
6046 manually setting up a subclass.")
6047 (license (package-license perl))))
6048
6049 (define-public perl-moosex-role-parameterized
6050 (package
6051 (name "perl-moosex-role-parameterized")
6052 (version "1.10")
6053 (source
6054 (origin
6055 (method url-fetch)
6056 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6057 "MooseX-Role-Parameterized-" version ".tar.gz"))
6058 (sha256
6059 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
6060 (build-system perl-build-system)
6061 (native-inputs
6062 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6063 ("perl-module-build" ,perl-module-build)
6064 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
6065 ("perl-test-fatal" ,perl-test-fatal)
6066 ("perl-test-requires" ,perl-test-requires)))
6067 (propagated-inputs
6068 `(("perl-moose" ,perl-moose)
6069 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6070 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
6071 (synopsis "Moose roles with composition parameters")
6072 (description "Because Moose roles serve many different masters, they
6073 usually provide only the least common denominator of functionality. To
6074 empower roles further, more configurability than -alias and -excludes is
6075 required. Perhaps your role needs to know which method to call when it is
6076 done processing, or what default value to use for its url attribute.
6077 Parameterized roles offer a solution to these (and other) kinds of problems.")
6078 (license (package-license perl))))
6079
6080 (define-public perl-moosex-role-withoverloading
6081 (package
6082 (name "perl-moosex-role-withoverloading")
6083 (version "0.17")
6084 (source
6085 (origin
6086 (method url-fetch)
6087 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6088 "MooseX-Role-WithOverloading-" version ".tar.gz"))
6089 (sha256
6090 (base32
6091 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
6092 (build-system perl-build-system)
6093 (propagated-inputs
6094 `(("perl-aliased" ,perl-aliased)
6095 ("perl-moose" ,perl-moose)
6096 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6097 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
6098 (synopsis "Roles which support overloading")
6099 (description "MooseX::Role::WithOverloading allows you to write a
6100 Moose::Role which defines overloaded operators and allows those overload
6101 methods to be composed into the classes/roles/instances it's compiled to,
6102 where plain Moose::Roles would lose the overloading.")
6103 (license (package-license perl))))
6104
6105 (define-public perl-moosex-semiaffordanceaccessor
6106 (package
6107 (name "perl-moosex-semiaffordanceaccessor")
6108 (version "0.10")
6109 (source
6110 (origin
6111 (method url-fetch)
6112 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6113 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
6114 (sha256
6115 (base32
6116 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
6117 (build-system perl-build-system)
6118 (propagated-inputs
6119 `(("perl-moose" ,perl-moose)))
6120 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
6121 (synopsis "Name your accessors foo() and set_foo()")
6122 (description "This module does not provide any methods. Simply loading it
6123 changes the default naming policy for the loading class so that accessors are
6124 separated into get and set methods. The get methods have the same name as the
6125 accessor, while set methods are prefixed with \"_set_\".")
6126 (license artistic2.0)))
6127
6128 (define-public perl-moosex-strictconstructor
6129 (package
6130 (name "perl-moosex-strictconstructor")
6131 (version "0.19")
6132 (source
6133 (origin
6134 (method url-fetch)
6135 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6136 "MooseX-StrictConstructor-" version ".tar.gz"))
6137 (sha256
6138 (base32
6139 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
6140 (build-system perl-build-system)
6141 (native-inputs
6142 `(("perl-moose" ,perl-moose)
6143 ("perl-test-fatal" ,perl-test-fatal)))
6144 (propagated-inputs
6145 `(("perl-moose" ,perl-moose)
6146 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6147 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
6148 (synopsis "Strict object constructors for Moose")
6149 (description "Simply loading this module makes your constructors
6150 \"strict\". If your constructor is called with an attribute init argument
6151 that your class does not declare, then it calls Moose->throw_error().")
6152 (license artistic2.0)))
6153
6154 (define-public perl-moosex-traits-pluggable
6155 (package
6156 (name "perl-moosex-traits-pluggable")
6157 (version "0.12")
6158 (source
6159 (origin
6160 (method url-fetch)
6161 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
6162 "MooseX-Traits-Pluggable-" version ".tar.gz"))
6163 (sha256
6164 (base32
6165 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
6166 (build-system perl-build-system)
6167 (native-inputs
6168 `(("perl-moose" ,perl-moose)
6169 ("perl-test-exception" ,perl-test-exception)))
6170 (propagated-inputs
6171 `(("perl-class-load" ,perl-class-load)
6172 ("perl-list-moreutils" ,perl-list-moreutils)
6173 ("perl-moose" ,perl-moose)
6174 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6175 (home-page
6176 "https://metacpan.org/release/MooseX-Traits-Pluggable")
6177 (synopsis "Trait loading and resolution for Moose")
6178 (description "Adds support on top of MooseX::Traits for class precedence
6179 search for traits and some extra attributes.")
6180 (license (package-license perl))))
6181
6182 (define-public perl-moosex-types
6183 (package
6184 (name "perl-moosex-types")
6185 (version "0.45")
6186 (source
6187 (origin
6188 (method url-fetch)
6189 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6190 "MooseX-Types-" version ".tar.gz"))
6191 (sha256
6192 (base32
6193 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
6194 (build-system perl-build-system)
6195 (native-inputs
6196 `(("perl-module-build" ,perl-module-build)
6197 ("perl-test-fatal" ,perl-test-fatal)
6198 ("perl-test-requires" ,perl-test-requires)))
6199 (propagated-inputs
6200 `(("perl-carp-clan" ,perl-carp-clan)
6201 ("perl-moose" ,perl-moose)
6202 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6203 (home-page "https://metacpan.org/release/MooseX-Types")
6204 (synopsis "Organise your Moose types in libraries")
6205 (description "This package lets you declare types using short names, but
6206 behind the scenes it namespaces all your type declarations, effectively
6207 prevent name clashes between packages.")
6208 (license (package-license perl))))
6209
6210 (define-public perl-moosex-types-datetime
6211 (package
6212 (name "perl-moosex-types-datetime")
6213 (version "0.13")
6214 (source
6215 (origin
6216 (method url-fetch)
6217 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6218 "MooseX-Types-DateTime-" version ".tar.gz"))
6219 (sha256
6220 (base32
6221 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
6222 (build-system perl-build-system)
6223 (native-inputs
6224 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6225 ("perl-moose" ,perl-moose)
6226 ("perl-test-fatal" ,perl-test-fatal)
6227 ("perl-test-simple" ,perl-test-simple)))
6228 (propagated-inputs
6229 `(("perl-datetime" ,perl-datetime)
6230 ("perl-datetime-locale" ,perl-datetime-locale)
6231 ("perl-datetime-timezone" ,perl-datetime-timezone)
6232 ("perl-moose" ,perl-moose)
6233 ("perl-moosex-types" ,perl-moosex-types)
6234 ("perl-namespace-clean" ,perl-namespace-clean)))
6235 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
6236 (synopsis "DateTime related constraints and coercions for Moose")
6237 (description "This module packages several Moose::Util::TypeConstraints
6238 with coercions, designed to work with the DateTime suite of objects.")
6239 (license (package-license perl))))
6240
6241 (define-public perl-moosex-types-datetime-morecoercions
6242 (package
6243 (name "perl-moosex-types-datetime-morecoercions")
6244 (version "0.15")
6245 (source
6246 (origin
6247 (method url-fetch)
6248 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6249 "MooseX-Types-DateTime-MoreCoercions-"
6250 version ".tar.gz"))
6251 (sha256
6252 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
6253 (build-system perl-build-system)
6254 (native-inputs
6255 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6256 ("perl-test-fatal" ,perl-test-fatal)
6257 ("perl-test-simple" ,perl-test-simple)))
6258 (propagated-inputs
6259 `(("perl-datetime" ,perl-datetime)
6260 ("perl-datetimex-easy" ,perl-datetimex-easy)
6261 ("perl-moose" ,perl-moose)
6262 ("perl-moosex-types" ,perl-moosex-types)
6263 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
6264 ("perl-namespace-clean" ,perl-namespace-clean)
6265 ("perl-time-duration-parse" ,perl-time-duration-parse)))
6266 (home-page
6267 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
6268 (synopsis "Extensions to MooseX::Types::DateTime")
6269 (description "This module builds on MooseX::Types::DateTime to add
6270 additional custom types and coercions. Since it builds on an existing type,
6271 all coercions and constraints are inherited.")
6272 (license (package-license perl))))
6273
6274 (define-public perl-moosex-types-loadableclass
6275 (package
6276 (name "perl-moosex-types-loadableclass")
6277 (version "0.015")
6278 (source
6279 (origin
6280 (method url-fetch)
6281 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6282 "MooseX-Types-LoadableClass-" version ".tar.gz"))
6283 (sha256
6284 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
6285 (build-system perl-build-system)
6286 (native-inputs
6287 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6288 ("perl-namespace-clean" ,perl-namespace-clean)
6289 ("perl-moose" ,perl-moose)
6290 ("perl-test-fatal" ,perl-test-fatal)
6291 ("perl-class-load" ,perl-class-load)))
6292 (propagated-inputs
6293 `(("perl-module-runtime" ,perl-module-runtime)
6294 ("perl-moosex-types" ,perl-moosex-types)
6295 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6296 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
6297 (synopsis "ClassName type constraints for Moose")
6298 (description "MooseX::Types::LoadableClass provides a ClassName type
6299 constraint with coercion to load the class.")
6300 (license (package-license perl))))
6301
6302 (define-public perl-moox
6303 (package
6304 (name "perl-moox")
6305 (version "0.101")
6306 (source
6307 (origin
6308 (method url-fetch)
6309 (uri (string-append
6310 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
6311 version
6312 ".tar.gz"))
6313 (sha256
6314 (base32
6315 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
6316 (build-system perl-build-system)
6317 (inputs
6318 `(("perl-data-optlist" ,perl-data-optlist)
6319 ("perl-import-into" ,perl-import-into)
6320 ("perl-module-runtime" ,perl-module-runtime)
6321 ("perl-moo" ,perl-moo)))
6322 (home-page "https://metacpan.org/release/MooX")
6323 (synopsis
6324 "Using Moo and MooX:: packages the most lazy way")
6325 (description "Contains the MooX and MooX::Role packages.")
6326 (license perl-license)))
6327
6328 (define-public perl-moox-cmd
6329 (package
6330 (name "perl-moox-cmd")
6331 (version "0.017")
6332 (source
6333 (origin
6334 (method url-fetch)
6335 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
6336 version ".tar.gz"))
6337 (sha256
6338 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
6339 (build-system perl-build-system)
6340 (native-inputs
6341 `(("perl-capture-tiny" ,perl-capture-tiny)
6342 ("perl-list-moreutils" ,perl-list-moreutils)))
6343 (propagated-inputs
6344 `(("perl-module-pluggable" ,perl-module-pluggable)
6345 ("perl-module-runtime" ,perl-module-runtime)
6346 ("perl-moo" ,perl-moo)
6347 ("perl-package-stash" ,perl-package-stash)
6348 ("perl-params-util" ,perl-params-util)
6349 ("perl-regexp-common" ,perl-regexp-common)))
6350 (home-page "https://metacpan.org/release/MooX-Cmd")
6351 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
6352 (description "This package eases the writing of command line utilities,
6353 accepting commands and subcommands and so on. These commands can form a tree,
6354 which is mirrored in the package structure. On invocation, each command along
6355 the path through the tree (starting from the top-level command through to the
6356 most specific one) is instantiated.")
6357 (license (package-license perl))))
6358
6359 (define-public perl-moox-configfromfile
6360 (package
6361 (name "perl-moox-configfromfile")
6362 (version "0.008")
6363 (source
6364 (origin
6365 (method url-fetch)
6366 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6367 "MooX-ConfigFromFile-" version ".tar.gz"))
6368 (sha256
6369 (base32
6370 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6371 (build-system perl-build-system)
6372 (native-inputs
6373 `(("perl-hash-merge" ,perl-hash-merge)
6374 ("perl-json" ,perl-json)
6375 ("perl-moox-cmd" ,perl-moox-cmd)))
6376 (propagated-inputs
6377 `(("perl-config-any" ,perl-config-any)
6378 ("perl-file-configdir" ,perl-file-configdir)
6379 ("perl-file-find-rule" ,perl-file-find-rule)
6380 ("perl-hash-merge" ,perl-hash-merge)
6381 ("perl-moo" ,perl-moo)
6382 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6383 ("perl-namespace-clean" ,perl-namespace-clean)))
6384 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
6385 (synopsis "Moo eXtension for initializing objects from config file")
6386 (description "This module is intended to easily load initialization values
6387 for attributes on object construction from an appropriate config file. The
6388 building is done in @code{MooX::ConfigFromFile::Role}---using
6389 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6390 (license (package-license perl))))
6391
6392 (define-public perl-moox-file-configdir
6393 (package
6394 (name "perl-moox-file-configdir")
6395 (version "0.007")
6396 (source
6397 (origin
6398 (method url-fetch)
6399 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6400 "MooX-File-ConfigDir-" version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6404 (build-system perl-build-system)
6405 (propagated-inputs
6406 `(("perl-file-configdir" ,perl-file-configdir)
6407 ("perl-moo" ,perl-moo)
6408 ("perl-namespace-clean" ,perl-namespace-clean)))
6409 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
6410 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6411 (description "This module is a helper for easily finding configuration
6412 file locations. This information can be used to find a suitable place for
6413 installing configuration files or for finding any piece of settings.")
6414 (license (package-license perl))))
6415
6416 (define-public perl-moox-handlesvia
6417 (package
6418 (name "perl-moox-handlesvia")
6419 (version "0.001008")
6420 (source
6421 (origin
6422 (method url-fetch)
6423 (uri (string-append
6424 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6425 version
6426 ".tar.gz"))
6427 (sha256
6428 (base32
6429 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6430 (build-system perl-build-system)
6431 (native-inputs
6432 `(("perl-moox-types-mooselike"
6433 ,perl-moox-types-mooselike)
6434 ("perl-test-exception" ,perl-test-exception)
6435 ("perl-test-fatal" ,perl-test-fatal)))
6436 (inputs
6437 `(("perl-class-method-modifiers"
6438 ,perl-class-method-modifiers)
6439 ("perl-module-runtime" ,perl-module-runtime)
6440 ("perl-moo" ,perl-moo)
6441 ("perl-role-tiny" ,perl-role-tiny)))
6442 (propagated-inputs
6443 `(("perl-data-perl" ,perl-data-perl)))
6444 (home-page
6445 "https://metacpan.org/release/MooX-HandlesVia")
6446 (synopsis "NativeTrait-like behavior for Moo")
6447 (description
6448 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6449 attribute functionality. It provides a means of proxying functionality from
6450 an external class to the given attribute.")
6451 (license perl-license)))
6452
6453 (define-public perl-moox-late
6454 (package
6455 (name "perl-moox-late")
6456 (version "0.016")
6457 (source
6458 (origin
6459 (method url-fetch)
6460 (uri (string-append
6461 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6462 version ".tar.gz"))
6463 (sha256
6464 (base32 "0kjy86rrpzfy6w5r9ykjq7njwdnvp7swd6r2k4gfrh3picz3kdhz"))))
6465 (build-system perl-build-system)
6466 (native-inputs
6467 `(("perl-test-fatal" ,perl-test-fatal)
6468 ("perl-test-requires" ,perl-test-requires)))
6469 (inputs
6470 `(("perl-moo" ,perl-moo)
6471 ("perl-moox" ,perl-moox)
6472 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6473 (propagated-inputs
6474 `(("perl-type-tiny" ,perl-type-tiny)))
6475 (home-page "https://metacpan.org/release/MooX-late")
6476 (synopsis "Easily translate Moose code to Moo")
6477 (description
6478 "MooX::late does the following:
6479 @enumerate
6480 @item Supports isa => $stringytype
6481 @item Supports does => $rolename
6482 @item Supports lazy_build => 1
6483 @item Exports blessed and confess functions to your namespace.
6484 @item Handles certain attribute traits
6485 Currently Hash, Array and Code are supported. This feature requires
6486 MooX::HandlesVia.
6487 @end enumerate")
6488 (license perl-license)))
6489
6490 (define-public perl-moox-options
6491 (package
6492 (name "perl-moox-options")
6493 (version "4.023")
6494 (source
6495 (origin
6496 (method url-fetch)
6497 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6498 "MooX-Options-" version ".tar.gz"))
6499 (sha256
6500 (base32
6501 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6502 (build-system perl-build-system)
6503 (native-inputs
6504 `(("perl-capture-tiny" ,perl-capture-tiny)
6505 ("perl-import-into" ,perl-import-into)
6506 ("perl-module-build" ,perl-module-build)
6507 ("perl-moo" ,perl-moo)
6508 ("perl-moose" ,perl-moose)
6509 ("perl-moox-cmd" ,perl-moox-cmd)
6510 ("perl-namespace-clean" ,perl-namespace-clean)
6511 ("perl-role-tiny" ,perl-role-tiny)
6512 ("perl-test-requires" ,perl-test-requires)
6513 ("perl-test-trap" ,perl-test-trap)
6514 ("perl-test-pod" ,perl-test-pod)
6515 ("perl-try-tiny" ,perl-try-tiny)))
6516 (propagated-inputs
6517 `(("perl-config-any" ,perl-config-any)
6518 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6519 ("perl-data-record" ,perl-data-record)
6520 ("perl-file-configdir" ,perl-file-configdir)
6521 ("perl-file-find-rule" ,perl-file-find-rule)
6522 ("perl-file-sharedir" ,perl-file-sharedir)
6523 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6524 ("perl-json-maybexs" ,perl-json-maybexs)
6525 ("perl-libintl-perl" ,perl-libintl-perl)
6526 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6527 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6528 ("perl-path-class" ,perl-path-class)
6529 ("perl-regexp-common" ,perl-regexp-common)
6530 ("perl-term-size-any" ,perl-term-size-any)
6531 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6532 (home-page "https://metacpan.org/release/MooX-Options")
6533 (synopsis "Explicit Options eXtension for Object Class")
6534 (description "Create a command line tool with your Mo, Moo, Moose objects.
6535 You have an @code{option} keyword to replace the usual @code{has} to
6536 explicitly use your attribute on the command line. The @code{option} keyword
6537 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6538 generate a command line tool.")
6539 (license (package-license perl))))
6540
6541 (define-public perl-moox-strictconstructor
6542 (package
6543 (name "perl-moox-strictconstructor")
6544 (version "0.010")
6545 (source
6546 (origin
6547 (method url-fetch)
6548 (uri (string-append
6549 "mirror://cpan/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-"
6550 version
6551 ".tar.gz"))
6552 (sha256
6553 (base32
6554 "0vvjgz7xbfmf69yav7sxsxmvklqv835xvh7h47w0apxmlkm9fjgr"))))
6555 (build-system perl-build-system)
6556 (native-inputs
6557 `(("perl-test-fatal" ,perl-test-fatal)))
6558 (propagated-inputs
6559 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
6560 ("perl-moo" ,perl-moo)
6561 ("perl-strictures" ,perl-strictures)))
6562 (home-page "https://metacpan.org/release/MooX-StrictConstructor")
6563 (synopsis "Make Moo-based object constructors blow up on unknown attributes")
6564 (description
6565 "Loading @code{MooX::StrictConstructor} makes your constructors \"strict\".
6566 If your constructor is called with an attribute init argument that your class
6567 does not declare, then it dies.")
6568 (license perl-license)))
6569
6570 (define-public perl-moox-types-mooselike
6571 (package
6572 (name "perl-moox-types-mooselike")
6573 (version "0.29")
6574 (source
6575 (origin
6576 (method url-fetch)
6577 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6578 "MooX-Types-MooseLike-" version ".tar.gz"))
6579 (sha256
6580 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
6581 (build-system perl-build-system)
6582 (native-inputs
6583 `(("perl-moo" ,perl-moo)
6584 ("perl-test-fatal" ,perl-test-fatal)))
6585 (propagated-inputs
6586 `(("perl-module-runtime" ,perl-module-runtime)
6587 ("perl-strictures" ,perl-strictures)))
6588 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
6589 (synopsis "Moosish types and type builder")
6590 (description "MooX::Types::MooseLike provides a possibility to build your
6591 own set of Moose-like types. These custom types can then be used to describe
6592 fields in Moo-based classes.")
6593 (license (package-license perl))))
6594
6595 (define-public perl-mouse
6596 (package
6597 (name "perl-mouse")
6598 (version "2.5.6")
6599 (source (origin
6600 (method url-fetch)
6601 (uri (string-append
6602 "mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v"
6603 version
6604 ".tar.gz"))
6605 (sha256
6606 (base32
6607 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
6608 (build-system perl-build-system)
6609 (native-inputs
6610 `(("perl-module-build" ,perl-module-build)
6611 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6612 ("perl-test-exception" ,perl-test-exception)
6613 ("perl-test-fatal" ,perl-test-fatal)
6614 ("perl-test-leaktrace" ,perl-test-leaktrace)
6615 ("perl-test-output" ,perl-test-output)
6616 ("perl-test-requires" ,perl-test-requires)
6617 ("perl-try-tiny" ,perl-try-tiny)))
6618 (home-page "https://github.com/gfx/p5-Mouse")
6619 (synopsis "Fast Moose-compatible object system for perl5")
6620 (description
6621 "Mouse is a @code{Moose} compatible object system that implements a
6622 subset of the functionality for reduced startup time.")
6623 (license (package-license perl))))
6624
6625 (define-public perl-mousex-nativetraits
6626 (package
6627 (name "perl-mousex-nativetraits")
6628 (version "1.09")
6629 (source (origin
6630 (method url-fetch)
6631 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6632 "MouseX-NativeTraits-" version ".tar.gz"))
6633 (sha256
6634 (base32
6635 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6636 (build-system perl-build-system)
6637 (native-inputs
6638 `(("perl-any-moose" ,perl-any-moose)
6639 ("perl-module-install" ,perl-module-install)
6640 ("perl-test-fatal" ,perl-test-fatal)))
6641 (propagated-inputs
6642 `(("perl-mouse" ,perl-mouse)))
6643 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
6644 (synopsis "Extend attribute interfaces for Mouse")
6645 (description
6646 "While @code{Mouse} attributes provide a way to name your accessors,
6647 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6648 provides commonly used attribute helper methods for more specific types
6649 of data.")
6650 (license (package-license perl))))
6651
6652 (define-public perl-mozilla-ca
6653 (package
6654 (name "perl-mozilla-ca")
6655 (version "20180117")
6656 (source
6657 (origin
6658 (method url-fetch)
6659 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6660 version ".tar.gz"))
6661 (sha256
6662 (base32
6663 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6664 (build-system perl-build-system)
6665 (home-page "https://metacpan.org/release/Mozilla-CA")
6666 (synopsis "Mozilla's CA cert bundle in PEM format")
6667 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6668 Certificate Authority certificates in a form that can be consumed by modules
6669 and libraries based on OpenSSL.")
6670 (license mpl2.0)))
6671
6672 (define-public perl-multidimensional
6673 (package
6674 (name "perl-multidimensional")
6675 (version "0.014")
6676 (source
6677 (origin
6678 (method url-fetch)
6679 (uri (string-append
6680 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6681 version ".tar.gz"))
6682 (sha256
6683 (base32
6684 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6685 (build-system perl-build-system)
6686 (native-inputs
6687 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6688 ("perl-extutils-depends" ,perl-extutils-depends)))
6689 (propagated-inputs
6690 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6691 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6692 (home-page "https://metacpan.org/release/multidimensional")
6693 (synopsis "Disable multidimensional array emulation")
6694 (description
6695 "Multidimensional disables multidimensional array emulation.")
6696 (license (package-license perl))))
6697
6698 (define-public perl-mro-compat
6699 (package
6700 (name "perl-mro-compat")
6701 (version "0.13")
6702 (source
6703 (origin
6704 (method url-fetch)
6705 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6706 "MRO-Compat-" version ".tar.gz"))
6707 (sha256
6708 (base32
6709 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6710 (build-system perl-build-system)
6711 (home-page "https://metacpan.org/release/MRO-Compat")
6712 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6713 (description "The \"mro\" namespace provides several utilities for dealing
6714 with method resolution order and method caching in general in Perl 5.9.5 and
6715 higher. This module provides those interfaces for earlier versions of
6716 Perl (back to 5.6.0).")
6717 (license (package-license perl))))
6718
6719 (define-public perl-namespace-autoclean
6720 (package
6721 (name "perl-namespace-autoclean")
6722 (version "0.29")
6723 (source
6724 (origin
6725 (method url-fetch)
6726 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6727 "namespace-autoclean-" version ".tar.gz"))
6728 (sha256
6729 (base32 "012qqs561xyyhm082znmzsl8lz4n299fa6p0v246za2l9bkdiss5"))))
6730 (build-system perl-build-system)
6731 (native-inputs
6732 `(("perl-module-build" ,perl-module-build)
6733 ("perl-test-needs" ,perl-test-needs)))
6734 (propagated-inputs
6735 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6736 ("perl-namespace-clean" ,perl-namespace-clean)
6737 ("perl-sub-identify" ,perl-sub-identify)))
6738 (home-page "https://metacpan.org/release/namespace-autoclean")
6739 (synopsis "Keep imports out of your namespace")
6740 (description "The namespace::autoclean pragma will remove all imported
6741 symbols at the end of the current package's compile cycle. Functions called
6742 in the package itself will still be bound by their name, but they won't show
6743 up as methods on your class or instances. It is very similar to
6744 namespace::clean, except it will clean all imported functions, no matter if
6745 you imported them before or after you used the pragma. It will also not touch
6746 anything that looks like a method.")
6747 (license (package-license perl))))
6748
6749 (define-public perl-namespace-clean
6750 (package
6751 (name "perl-namespace-clean")
6752 (version "0.27")
6753 (source
6754 (origin
6755 (method url-fetch)
6756 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6757 "namespace-clean-" version ".tar.gz"))
6758 (sha256
6759 (base32
6760 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
6761 (build-system perl-build-system)
6762 (propagated-inputs
6763 `(("perl-package-stash" ,perl-package-stash)
6764 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6765 (home-page "https://metacpan.org/release/namespace-clean")
6766 (synopsis "Keep imports and functions out of your namespace")
6767 (description "The namespace::clean pragma will remove all previously
6768 declared or imported symbols at the end of the current package's compile
6769 cycle. Functions called in the package itself will still be bound by their
6770 name, but they won't show up as methods on your class or instances.")
6771 (license (package-license perl))))
6772
6773 (define-public perl-net-bgp
6774 (package
6775 (name "perl-net-bgp")
6776 (version "0.17")
6777 (source
6778 (origin
6779 (method url-fetch)
6780 (uri (string-append
6781 "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
6782 (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y"))))
6783 (build-system perl-build-system)
6784 (home-page "https://metacpan.org/release/Net-BGP")
6785 (synopsis "Object-oriented API to the BGP protocol")
6786 (description
6787 "This module is an implementation of the BGP-4 inter-domain routing protocol.
6788 It encapsulates all of the functionality needed to establish and maintain a
6789 BGP peering session and exchange routing update information with the peer.
6790 It aims to provide a simple API to the BGP protocol for the purposes of
6791 automation, logging, monitoring, testing, and similar tasks using the
6792 power and flexibility of perl. The module does not implement the
6793 functionality of a RIB (Routing Information Base) nor does it modify the
6794 kernel routing table of the host system. However, such operations could be
6795 implemented using the API provided by the module.")
6796 (license perl-license)))
6797
6798 (define-public perl-net-dns-native
6799 (package
6800 (name "perl-net-dns-native")
6801 (version "0.22")
6802 (source
6803 (origin
6804 (method url-fetch)
6805 (uri (string-append
6806 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6807 version ".tar.gz"))
6808 (sha256
6809 (base32 "1m9hbj83ikg52wvq7z8bjm78i50qvqk5alh11mmazzxrpbnrv38h"))))
6810 (build-system perl-build-system)
6811 (home-page "https://metacpan.org/release/Net-DNS-Native")
6812 (synopsis "Non-blocking system DNS resolver")
6813 (description
6814 "This class provides several methods for host name resolution. It is
6815 designed to be used with event loops. Names are resolved by your system's
6816 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6817 avoid blocking the entire application. Threading overhead is limited by using
6818 system threads instead of Perl threads.")
6819 (license perl-license)))
6820
6821 (define-public perl-net-idn-encode
6822 (package
6823 (name "perl-net-idn-encode")
6824 (version "2.500")
6825 (source
6826 (origin
6827 (method url-fetch)
6828 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
6829 "Net-IDN-Encode-" version ".tar.gz"))
6830 (sha256
6831 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
6832 (build-system perl-build-system)
6833 (native-inputs
6834 `(("perl-module-build" ,perl-module-build)
6835 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6836 (home-page "https://metacpan.org/release/Net-IDN-Encode")
6837 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
6838 (description
6839 "Internationalized Domain Names (IDNs) use characters drawn from a large
6840 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6841 represented using only the ASCII characters already allowed in so-called host
6842 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6843
6844 Use this module if you just want to convert domain names (or email addresses),
6845 using whatever IDNA standard is the best choice at the moment.")
6846 (license perl-license)))
6847
6848 (define-public perl-net-statsd
6849 (package
6850 (name "perl-net-statsd")
6851 (version "0.12")
6852 (source
6853 (origin
6854 (method url-fetch)
6855 (uri (string-append
6856 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6857 version
6858 ".tar.gz"))
6859 (sha256
6860 (base32
6861 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6862 (build-system perl-build-system)
6863 (home-page
6864 "https://metacpan.org/release/Net-Statsd")
6865 (synopsis "Perl client for Etsy's statsd daemon")
6866 (description "This module implement a UDP client for the statsd statistics
6867 collector daemon in use at Etsy.com.")
6868 (license (package-license perl))))
6869
6870 (define-public perl-number-compare
6871 (package
6872 (name "perl-number-compare")
6873 (version "0.03")
6874 (source
6875 (origin
6876 (method url-fetch)
6877 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6878 "Number-Compare-" version ".tar.gz"))
6879 (sha256
6880 (base32
6881 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6882 (build-system perl-build-system)
6883 (home-page "https://metacpan.org/release/Number-Compare")
6884 (synopsis "Numeric comparisons")
6885 (description "Number::Compare compiles a simple comparison to an anonymous
6886 subroutine, which you can call with a value to be tested against.")
6887 (license (package-license perl))))
6888
6889 (define-public perl-number-format
6890 (package
6891 (name "perl-number-format")
6892 (version "1.75")
6893 (source (origin
6894 (method url-fetch)
6895 (uri (string-append
6896 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6897 version ".tar.gz"))
6898 (sha256
6899 (base32
6900 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6901 (build-system perl-build-system)
6902 (home-page "https://metacpan.org/release/Number-Format")
6903 (synopsis "Convert numbers to strings with pretty formatting")
6904 (description "@code{Number::Format} is a library for formatting numbers.
6905 Functions are provided for converting numbers to strings in a variety of ways,
6906 and to convert strings that contain numbers back into numeric form. The
6907 output formats may include thousands separators - characters inserted between
6908 each group of three characters counting right to left from the decimal point.
6909 The characters used for the decimal point and the thousands separator come from
6910 the locale information or can be specified by the user.")
6911 (license perl-license)))
6912
6913 (define-public perl-number-range
6914 (package
6915 (name "perl-number-range")
6916 (version "0.12")
6917 (source
6918 (origin
6919 (method url-fetch)
6920 (uri (string-append
6921 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6922 version ".tar.gz"))
6923 (sha256
6924 (base32
6925 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6926 (build-system perl-build-system)
6927 (home-page "https://metacpan.org/release/Number-Range")
6928 (synopsis "Perl extension defining ranges of numbers")
6929 (description "Number::Range is an object-oriented interface to test if a
6930 number exists in a given range, and to be able to manipulate the range.")
6931 (license (package-license perl))))
6932
6933 (define-public perl-object-signature
6934 (package
6935 (name "perl-object-signature")
6936 (version "1.08")
6937 (source
6938 (origin
6939 (method url-fetch)
6940 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6941 "Object-Signature-" version ".tar.gz"))
6942 (sha256
6943 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
6944 (build-system perl-build-system)
6945 (native-inputs
6946 `(("perl-module-install" ,perl-module-install)))
6947 (home-page "https://metacpan.org/release/Object-Signature")
6948 (synopsis "Generate cryptographic signatures for objects")
6949 (description "Object::Signature is an abstract base class that you can
6950 inherit from in order to allow your objects to generate unique cryptographic
6951 signatures.")
6952 (license (package-license perl))))
6953
6954 (define-public perl-ole-storage-lite
6955 (package
6956 (name "perl-ole-storage-lite")
6957 (version "0.20")
6958 (source
6959 (origin
6960 (method url-fetch)
6961 (uri (string-append
6962 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6963 version
6964 ".tar.gz"))
6965 (sha256
6966 (base32
6967 "1fpqhhgb8blj4hhs97fsbnbhk29s9yms057a9s9yl20f3hbsc65b"))))
6968 (build-system perl-build-system)
6969 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
6970 (synopsis "Read and write OLE storage files")
6971 (description "This module allows you to read and write
6972 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6973 technology to store hierarchical information such as links to other
6974 documents within a single file.")
6975 (license (package-license perl))))
6976
6977 (define-public perl-package-anon
6978 (package
6979 (name "perl-package-anon")
6980 (version "0.05")
6981 (source
6982 (origin
6983 (method url-fetch)
6984 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6985 "Package-Anon-" version ".tar.gz"))
6986 (sha256
6987 (base32
6988 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6989 (build-system perl-build-system)
6990 (propagated-inputs
6991 `(("perl-sub-exporter" ,perl-sub-exporter)
6992 ("perl-params-util" ,perl-params-util)))
6993 (home-page "https://metacpan.org/release/Package-Anon")
6994 (synopsis "Anonymous packages")
6995 (description "This module allows for anonymous packages that are
6996 independent of the main namespace and only available through an object
6997 instance, not by name.")
6998 (license (package-license perl))))
6999
7000 (define-public perl-package-deprecationmanager
7001 (package
7002 (name "perl-package-deprecationmanager")
7003 (version "0.17")
7004 (source
7005 (origin
7006 (method url-fetch)
7007 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7008 "Package-DeprecationManager-" version ".tar.gz"))
7009 (sha256
7010 (base32
7011 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
7012 (build-system perl-build-system)
7013 (native-inputs
7014 `(("perl-test-fatal" ,perl-test-fatal)
7015 ("perl-test-requires" ,perl-test-requires)
7016 ("perl-test-output" ,perl-test-output)))
7017 (propagated-inputs
7018 `(("perl-list-moreutils" ,perl-list-moreutils)
7019 ("perl-params-util" ,perl-params-util)
7020 ("perl-sub-install" ,perl-sub-install)))
7021 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
7022 (home-page "https://metacpan.org/release/Package-DeprecationManager")
7023 (synopsis "Manage deprecation warnings for your distribution")
7024 (description "This module allows you to manage a set of deprecations for
7025 one or more modules.")
7026 (license artistic2.0)))
7027
7028 (define-public perl-package-stash
7029 (package
7030 (name "perl-package-stash")
7031 (version "0.38")
7032 (source
7033 (origin
7034 (method url-fetch)
7035 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7036 "Package-Stash-" version ".tar.gz"))
7037 (sha256
7038 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
7039 (build-system perl-build-system)
7040 (native-inputs
7041 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7042 ("perl-test-fatal" ,perl-test-fatal)
7043 ("perl-test-requires" ,perl-test-requires)
7044 ("perl-package-anon" ,perl-package-anon)))
7045 (propagated-inputs
7046 `(("perl-module-implementation" ,perl-module-implementation)
7047 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7048 ("perl-package-stash-xs" ,perl-package-stash-xs)))
7049 (home-page "https://metacpan.org/release/Package-Stash")
7050 (synopsis "Routines for manipulating stashes")
7051 (description "Manipulating stashes (Perl's symbol tables) is occasionally
7052 necessary, but incredibly messy, and easy to get wrong. This module hides all
7053 of that behind a simple API.")
7054 (license (package-license perl))))
7055
7056 (define-public perl-package-stash-xs
7057 (package
7058 (name "perl-package-stash-xs")
7059 (version "0.29")
7060 (source
7061 (origin
7062 (method url-fetch)
7063 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7064 "Package-Stash-XS-" version ".tar.gz"))
7065 (sha256
7066 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
7067 (build-system perl-build-system)
7068 (native-inputs
7069 `(("perl-test-fatal" ,perl-test-fatal)
7070 ("perl-test-requires" ,perl-test-requires)
7071 ("perl-package-anon" ,perl-package-anon)))
7072 (home-page "https://metacpan.org/release/Package-Stash-XS")
7073 (synopsis "Faster implementation of the Package::Stash API")
7074 (description "This is a backend for Package::Stash, which provides the
7075 functionality in a way that's less buggy and much faster. It will be used by
7076 default if it's installed, and should be preferred in all environments with a
7077 compiler.")
7078 (license (package-license perl))))
7079
7080 (define-public perl-padwalker
7081 (package
7082 (name "perl-padwalker")
7083 (version "2.3")
7084 (source
7085 (origin
7086 (method url-fetch)
7087 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
7088 "PadWalker-" version ".tar.gz"))
7089 (sha256
7090 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
7091 (build-system perl-build-system)
7092 (home-page "https://metacpan.org/release/PadWalker")
7093 (synopsis "Play with other peoples' lexical variables")
7094 (description "PadWalker is a module which allows you to inspect (and even
7095 change) lexical variables in any subroutine which called you. It will only
7096 show those variables which are in scope at the point of the call. PadWalker
7097 is particularly useful for debugging.")
7098 (license (package-license perl))))
7099
7100 (define-public perl-parallel-forkmanager
7101 (package
7102 (name "perl-parallel-forkmanager")
7103 (version "1.19")
7104 (source
7105 (origin
7106 (method url-fetch)
7107 (uri (string-append
7108 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
7109 version
7110 ".tar.gz"))
7111 (sha256
7112 (base32
7113 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
7114 (build-system perl-build-system)
7115 (native-inputs
7116 `(("perl-test-warn" ,perl-test-warn)))
7117 (home-page "https://metacpan.org/release/Parallel-ForkManager")
7118 (synopsis "Simple parallel processing fork manager")
7119 (description "@code{Parallel::ForkManager} is intended for use in
7120 operations that can be done in parallel where the number of
7121 processes to be forked off should be limited.")
7122 (license (package-license perl))))
7123
7124 (define-public perl-params-util
7125 (package
7126 (name "perl-params-util")
7127 (version "1.07")
7128 (source
7129 (origin
7130 (method url-fetch)
7131 (uri (string-append
7132 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
7133 version ".tar.gz"))
7134 (sha256
7135 (base32
7136 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
7137 (build-system perl-build-system)
7138 (home-page "https://metacpan.org/release/Params-Util")
7139 (synopsis "Simple, compact and correct param-checking functions")
7140 (description
7141 "Params::Util provides a basic set of importable functions that makes
7142 checking parameters easier.")
7143 (license (package-license perl))))
7144
7145 (define-public perl-params-validate
7146 (package
7147 (name "perl-params-validate")
7148 (version "1.29")
7149 (source
7150 (origin
7151 (method url-fetch)
7152 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7153 "Params-Validate-" version ".tar.gz"))
7154 (sha256
7155 (base32
7156 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
7157 (build-system perl-build-system)
7158 (native-inputs
7159 `(("perl-module-build" ,perl-module-build)
7160 ("perl-test-fatal" ,perl-test-fatal)
7161 ("perl-test-requires" ,perl-test-requires)))
7162 (propagated-inputs
7163 `(("perl-module-implementation" ,perl-module-implementation)))
7164 (home-page "https://metacpan.org/release/Params-Validate")
7165 (synopsis "Validate method/function parameters")
7166 (description "The Params::Validate module allows you to validate method or
7167 function call parameters to an arbitrary level of specificity.")
7168 (license artistic2.0)))
7169
7170 (define-public perl-params-validationcompiler
7171 (package
7172 (name "perl-params-validationcompiler")
7173 (version "0.30")
7174 (source
7175 (origin
7176 (method url-fetch)
7177 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7178 "Params-ValidationCompiler-" version ".tar.gz"))
7179 (sha256
7180 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
7181 (build-system perl-build-system)
7182 (native-inputs
7183 ;; For tests.
7184 `(("perl-test-without-module" ,perl-test-without-module)
7185 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
7186 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
7187 ("perl-type-tiny" ,perl-type-tiny)))
7188 (propagated-inputs
7189 `(("perl-eval-closure" ,perl-eval-closure)
7190 ("perl-exception-class" ,perl-exception-class)
7191 ("perl-specio" ,perl-specio)))
7192 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
7193 (synopsis "Build an optimized subroutine parameter validator")
7194 (description "This module creates a customized, highly efficient
7195 parameter checking subroutine. It can handle named or positional
7196 parameters, and can return the parameters as key/value pairs or a list
7197 of values. In addition to type checks, it also supports parameter
7198 defaults, optional parameters, and extra \"slurpy\" parameters.")
7199 (license artistic2.0)))
7200
7201 (define-public perl-par-dist
7202 (package
7203 (name "perl-par-dist")
7204 (version "0.49")
7205 (source
7206 (origin
7207 (method url-fetch)
7208 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
7209 "PAR-Dist-" version ".tar.gz"))
7210 (sha256
7211 (base32
7212 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
7213 (build-system perl-build-system)
7214 (home-page "https://metacpan.org/release/PAR-Dist")
7215 (synopsis "Create and manipulate PAR distributions")
7216 (description "PAR::Dist is a toolkit to create and manipulate PAR
7217 distributions.")
7218 (license (package-license perl))))
7219
7220 (define-public perl-parent
7221 (deprecated-package "perl-parent" perl))
7222
7223 (define-public perl-path-class
7224 (package
7225 (name "perl-path-class")
7226 (version "0.37")
7227 (source
7228 (origin
7229 (method url-fetch)
7230 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7231 "Path-Class-" version ".tar.gz"))
7232 (sha256
7233 (base32
7234 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
7235 (build-system perl-build-system)
7236 (native-inputs `(("perl-module-build" ,perl-module-build)))
7237 (home-page "https://metacpan.org/release/Path-Class")
7238 (synopsis "Path specification manipulation")
7239 (description "Path::Class is a module for manipulation of file and
7240 directory specifications in a cross-platform manner.")
7241 (license (package-license perl))))
7242
7243 (define-public perl-pathtools
7244 (package
7245 (name "perl-pathtools")
7246 (version "3.75")
7247 (source
7248 (origin
7249 (method url-fetch)
7250 (uri (string-append
7251 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
7252 version ".tar.gz"))
7253 (sha256
7254 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
7255 (build-system perl-build-system)
7256 (arguments
7257 `(#:phases
7258 (modify-phases %standard-phases
7259 (add-after 'unpack 'patch-pwd-path
7260 (lambda* (#:key inputs #:allow-other-keys)
7261 (substitute* "Cwd.pm"
7262 (("'/bin/pwd'")
7263 (string-append "'" (assoc-ref inputs "coreutils")
7264 "/bin/pwd'")))
7265 #t)))))
7266 (inputs
7267 `(("coreutils" ,coreutils)))
7268 (home-page "https://metacpan.org/release/PathTools")
7269 (synopsis "Tools for working with directory and file names")
7270 (description "This package provides functions to work with directory and
7271 file names.")
7272 (license perl-license)))
7273
7274 (define-public perl-path-tiny
7275 (package
7276 (name "perl-path-tiny")
7277 (version "0.108")
7278 (source (origin
7279 (method url-fetch)
7280 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7281 "Path-Tiny-" version ".tar.gz"))
7282 (sha256
7283 (base32
7284 "1x9zf8r3cynf4vqlycyyspsr70v4zw6bk9bkgvfpvsxkw8mlhj9w"))))
7285 (build-system perl-build-system)
7286 (arguments
7287 `(#:tests? #f)) ; Tests require additional test modules to be packaged
7288 ;; (native-inputs
7289 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
7290 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
7291 (inputs
7292 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
7293 (home-page "https://metacpan.org/release/Path-Tiny")
7294 (synopsis "File path utility")
7295 (description "This module provides a small, fast utility for working
7296 with file paths.")
7297 (license asl2.0)))
7298
7299 (define-public perl-pdf-api2
7300 (package
7301 (name "perl-pdf-api2")
7302 (version "2.036")
7303 (source (origin
7304 (method url-fetch)
7305 (uri (string-append
7306 "mirror://cpan/authors/id/S/SS/SSIMMS/PDF-API2-"
7307 version ".tar.gz"))
7308 (sha256
7309 (base32
7310 "0x0pa75wpb87pcshl92y5nh8pzikjp46ljlr2pqvdgpqzvll8107"))))
7311 (build-system perl-build-system)
7312 (native-inputs
7313 `(("perl-test-exception" ,perl-test-exception)
7314 ("perl-test-memory-cycle" ,perl-test-memory-cycle)))
7315 (propagated-inputs
7316 `(("perl-font-ttf" ,perl-font-ttf)))
7317 (home-page "https://metacpan.org/release/PDF-API2")
7318 (synopsis "Facilitates the creation and modification of PDF files")
7319 (description "This Perl module facilitates the creation and modification
7320 of PDF files.")
7321 (license lgpl2.1)))
7322
7323 (define-public perl-perlio-utf8_strict
7324 (package
7325 (name "perl-perlio-utf8-strict")
7326 (version "0.007")
7327 (source (origin
7328 (method url-fetch)
7329 (uri (string-append
7330 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
7331 version ".tar.gz"))
7332 (sha256
7333 (base32
7334 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
7335 (build-system perl-build-system)
7336 (native-inputs
7337 `(("perl-test-exception" ,perl-test-exception)))
7338 (home-page
7339 "https://metacpan.org/release/PerlIO-utf8_strict")
7340 (synopsis "Fast and correct UTF-8 IO")
7341 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
7342 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
7343 for correctness.")
7344 (license (package-license perl))))
7345
7346 (define-public perl-pegex
7347 (package
7348 (name "perl-pegex")
7349 (version "0.70")
7350 (source
7351 (origin
7352 (method url-fetch)
7353 (uri (string-append
7354 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
7355 version ".tar.gz"))
7356 (sha256
7357 (base32
7358 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
7359 (build-system perl-build-system)
7360 (native-inputs
7361 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
7362 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
7363 (home-page "https://metacpan.org/release/Pegex")
7364 (synopsis "Acmeist PEG Parser Framework")
7365 (description "Pegex is an Acmeist parser framework. It allows you to easily
7366 create parsers that will work equivalently in lots of programming languages.
7367 The inspiration for Pegex comes from the parsing engine upon which the
7368 postmodern programming language Perl 6 is based on. Pegex brings this beauty
7369 to the other justmodern languages that have a normal regular expression engine
7370 available.")
7371 (license (package-license perl))))
7372
7373 (define-public perl-pod-coverage
7374 (package
7375 (name "perl-pod-coverage")
7376 (version "0.23")
7377 (source
7378 (origin
7379 (method url-fetch)
7380 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7381 "Pod-Coverage-" version ".tar.gz"))
7382 (sha256
7383 (base32
7384 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
7385 (build-system perl-build-system)
7386 (propagated-inputs
7387 `(("perl-devel-symdump" ,perl-devel-symdump)))
7388 (home-page "https://metacpan.org/release/Pod-Coverage")
7389 (synopsis "Check for comprehensive documentation of a module")
7390 (description "This module provides a mechanism for determining if the pod
7391 for a given module is comprehensive.")
7392 (license (package-license perl))))
7393
7394 (define-public perl-pod-simple
7395 (package
7396 (name "perl-pod-simple")
7397 (version "3.35")
7398 (source (origin
7399 (method url-fetch)
7400 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
7401 "Pod-Simple-" version ".tar.gz"))
7402 (sha256
7403 (base32
7404 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
7405 (build-system perl-build-system)
7406 (home-page "https://metacpan.org/release/Pod-Simple")
7407 (synopsis "Parsing library for text in Pod format")
7408 (description "@code{Pod::Simple} is a Perl library for parsing text in
7409 the @dfn{Pod} (plain old documentation) markup language that is typically
7410 used for writing documentation for Perl and for Perl modules.")
7411 (license (package-license perl))))
7412
7413 (define-public perl-posix-strftime-compiler
7414 (package
7415 (name "perl-posix-strftime-compiler")
7416 (version "0.42")
7417 (source
7418 (origin
7419 (method url-fetch)
7420 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
7421 "POSIX-strftime-Compiler-" version ".tar.gz"))
7422 (sha256
7423 (base32
7424 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
7425 (build-system perl-build-system)
7426 (native-inputs `(("perl-module-build" ,perl-module-build)))
7427 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
7428 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
7429 (synopsis "GNU C library compatible strftime for loggers and servers")
7430 (description "POSIX::strftime::Compiler provides GNU C library compatible
7431 strftime(3). But this module is not affected by the system locale. This
7432 feature is useful when you want to write loggers, servers, and portable
7433 applications.")
7434 (license (package-license perl))))
7435
7436 (define-public perl-probe-perl
7437 (package
7438 (name "perl-probe-perl")
7439 (version "0.03")
7440 (source (origin
7441 (method url-fetch)
7442 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7443 "Probe-Perl-" version ".tar.gz"))
7444 (sha256
7445 (base32
7446 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7447 (build-system perl-build-system)
7448 (synopsis "Information about the currently running perl")
7449 (description
7450 "Probe::Perl provides methods for obtaining information about the
7451 currently running perl interpreter. It originally began life as code in the
7452 Module::Build project, but has been externalized here for general use.")
7453 (home-page "https://metacpan.org/release/Probe-Perl")
7454 (license (package-license perl))))
7455
7456 (define-public perl-proc-invokeeditor
7457 (package
7458 (name "perl-proc-invokeeditor")
7459 (version "1.13")
7460 (source
7461 (origin
7462 (method url-fetch)
7463 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7464 version ".tar.gz"))
7465 (sha256
7466 (base32
7467 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7468 (build-system perl-build-system)
7469 (arguments
7470 `(#:phases
7471 (modify-phases %standard-phases
7472 (add-after 'unpack 'set-EDITOR
7473 (lambda _ (setenv "EDITOR" "echo") #t)))))
7474 (propagated-inputs
7475 `(("perl-carp-assert" ,perl-carp-assert)))
7476 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
7477 (synopsis "Interface to external editor from Perl")
7478 (description "This module provides the ability to supply some text to an
7479 external text editor, have it edited by the user, and retrieve the results.")
7480 (license (package-license perl))))
7481
7482 (define-public perl-readonly
7483 (package
7484 (name "perl-readonly")
7485 (version "2.00")
7486 (source
7487 (origin
7488 (method url-fetch)
7489 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7490 "Readonly-" version ".tar.gz"))
7491 (sha256
7492 (base32
7493 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7494 (build-system perl-build-system)
7495 (native-inputs `(("perl-module-build" ,perl-module-build)))
7496 (home-page "https://metacpan.org/release/Readonly")
7497 (synopsis "Create read-only scalars, arrays, hashes")
7498 (description "This module provides a facility for creating non-modifiable
7499 variables in Perl. This is useful for configuration files, headers, etc. It
7500 can also be useful as a development and debugging tool for catching updates to
7501 variables that should not be changed.")
7502 (license (package-license perl))))
7503
7504 (define-public perl-ref-util-xs
7505 (package
7506 (name "perl-ref-util-xs")
7507 (version "0.117")
7508 (source
7509 (origin
7510 (method url-fetch)
7511 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7512 "Ref-Util-XS-" version ".tar.gz"))
7513 (sha256
7514 (base32
7515 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7516 (build-system perl-build-system)
7517 (home-page "https://metacpan.org/release/Ref-Util-XS")
7518 (synopsis "XS implementation for Ref::Util")
7519 (description "@code{Ref::Util::XS} is the XS implementation of
7520 @code{Ref::Util}, which provides several functions to help identify references
7521 in a more convenient way than the usual approach of examining the return value
7522 of @code{ref}.")
7523 (license x11)))
7524
7525 (define-public perl-regexp-common
7526 (package
7527 (name "perl-regexp-common")
7528 (version "2017060201")
7529 (source (origin
7530 (method url-fetch)
7531 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7532 "Regexp-Common-" version ".tar.gz"))
7533 (sha256
7534 (base32
7535 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7536 (build-system perl-build-system)
7537 (synopsis "Provide commonly requested regular expressions")
7538 (description
7539 "This module exports a single hash (@code{%RE}) that stores or generates
7540 commonly needed regular expressions. Patterns currently provided include:
7541 balanced parentheses and brackets, delimited text (with escapes), integers and
7542 floating-point numbers in any base (up to 36), comments in 44 languages,
7543 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7544 codes.")
7545 (home-page "https://metacpan.org/release/Regexp-Common")
7546 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7547 (license (list (package-license perl) x11 bsd-3))))
7548
7549 (define-public perl-regexp-util
7550 (package
7551 (name "perl-regexp-util")
7552 (version "0.003")
7553 (source
7554 (origin
7555 (method url-fetch)
7556 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7557 "Regexp-Util-" version ".tar.gz"))
7558 (sha256
7559 (base32
7560 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7561 (build-system perl-build-system)
7562 (home-page "https://metacpan.org/release/Regexp-Util")
7563 (synopsis "Selection of general-utility regexp subroutines")
7564 (description "This package provides a selection of regular expression
7565 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7566 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7567 and @code{deserialize_regexp}.")
7568 (license (package-license perl))))
7569
7570 (define-public perl-role-tiny
7571 (package
7572 (name "perl-role-tiny")
7573 (version "1.003004")
7574 (source
7575 (origin
7576 (method url-fetch)
7577 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7578 "Role-Tiny-" version ".tar.gz"))
7579 (sha256
7580 (base32
7581 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7582 (build-system perl-build-system)
7583 (native-inputs
7584 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7585 ("perl-test-fatal" ,perl-test-fatal)))
7586 (propagated-inputs
7587 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7588 (home-page "https://metacpan.org/release/Role-Tiny")
7589 (synopsis "Roles, as a slice of Moose")
7590 (description "Role::Tiny is a minimalist role composition tool.")
7591 (license (package-license perl))))
7592
7593 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7594 (define-public perl-role-tiny-2
7595 (package
7596 (inherit perl-role-tiny)
7597 (version "2.001001")
7598 (source
7599 (origin
7600 (method url-fetch)
7601 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7602 "Role-Tiny-" version ".tar.gz"))
7603 (sha256
7604 (base32 "16yryg3cr14xw201gm8k8ci00hs60fy8lk2xhnaqa85n5m68flk8"))))))
7605
7606 (define-public perl-safe-isa
7607 (package
7608 (name "perl-safe-isa")
7609 (version "1.000010")
7610 (source
7611 (origin
7612 (method url-fetch)
7613 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7614 "Safe-Isa-" version ".tar.gz"))
7615 (sha256
7616 (base32
7617 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7618 (build-system perl-build-system)
7619 (home-page "https://metacpan.org/release/Safe-Isa")
7620 (synopsis "Call isa, can, does, and DOES safely")
7621 (description "This module allows you to call isa, can, does, and DOES
7622 safely on things that may not be objects.")
7623 (license (package-license perl))))
7624
7625 (define-public perl-scope-guard
7626 (package
7627 (name "perl-scope-guard")
7628 (version "0.21")
7629 (source
7630 (origin
7631 (method url-fetch)
7632 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7633 "Scope-Guard-" version ".tar.gz"))
7634 (sha256
7635 (base32
7636 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7637 (build-system perl-build-system)
7638 (home-page "https://metacpan.org/release/Scope-Guard")
7639 (synopsis "Lexically-scoped resource management")
7640 (description "This module provides a convenient way to perform cleanup or
7641 other forms of resource management at the end of a scope. It is particularly
7642 useful when dealing with exceptions: the Scope::Guard constructor takes a
7643 reference to a subroutine that is guaranteed to be called even if the thread
7644 of execution is aborted prematurely. This effectively allows lexically-scoped
7645 \"promises\" to be made that are automatically honoured by perl's garbage
7646 collector.")
7647 (license (package-license perl))))
7648
7649 (define-public perl-set-infinite
7650 (package
7651 (name "perl-set-infinite")
7652 (version "0.65")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7657 "Set-Infinite-" version ".tar.gz"))
7658 (sha256
7659 (base32
7660 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7661 (build-system perl-build-system)
7662 (home-page "https://metacpan.org/release/Set-Infinite")
7663 (synopsis "Infinite sets")
7664 (description "Set::Infinite is a set theory module for infinite sets.")
7665 (license (package-license perl))))
7666
7667 (define-public perl-set-intspan
7668 (package
7669 (name "perl-set-intspan")
7670 (version "1.19")
7671 (source (origin
7672 (method url-fetch)
7673 (uri (string-append
7674 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7675 version ".tar.gz"))
7676 (sha256
7677 (base32
7678 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7679 (build-system perl-build-system)
7680 (home-page "https://metacpan.org/release/Set-IntSpan")
7681 (synopsis "Manage sets of integers")
7682 (description "@code{Set::IntSpan} manages sets of integers. It is
7683 optimized for sets that have long runs of consecutive integers.")
7684 (license perl-license)))
7685
7686 (define-public perl-set-object
7687 (package
7688 (name "perl-set-object")
7689 (version "1.39")
7690 (source
7691 (origin
7692 (method url-fetch)
7693 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7694 "Set-Object-" version ".tar.gz"))
7695 (sha256
7696 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
7697 (build-system perl-build-system)
7698 (propagated-inputs
7699 `(("perl-moose" ,perl-moose)
7700 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7701 (home-page "https://metacpan.org/release/Set-Object")
7702 (synopsis "Unordered collections of Perl Objects")
7703 (description "Set::Object provides efficient sets, unordered collections
7704 of Perl objects without duplicates for scalars and references.")
7705 (license artistic2.0)))
7706
7707 (define-public perl-set-scalar
7708 (package
7709 (name "perl-set-scalar")
7710 (version "1.29")
7711 (source
7712 (origin
7713 (method url-fetch)
7714 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7715 "Set-Scalar-" version ".tar.gz"))
7716 (sha256
7717 (base32
7718 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7719 (build-system perl-build-system)
7720 (home-page "https://metacpan.org/release/Set-Scalar")
7721 (synopsis "Set operations for Perl")
7722 (description "The first priority of Set::Scalar is to be a convenient
7723 interface to sets (as in: unordered collections of Perl scalars). While not
7724 designed to be slow or big, neither has it been designed to be fast or
7725 compact.")
7726 (license (package-license perl))))
7727
7728 (define-public perl-sort-key
7729 (package
7730 (name "perl-sort-key")
7731 (version "1.33")
7732 (source
7733 (origin
7734 (method url-fetch)
7735 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7736 version ".tar.gz"))
7737 (sha256
7738 (base32
7739 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7740 (build-system perl-build-system)
7741 (home-page "https://metacpan.org/release/Sort-Key")
7742 (synopsis "Sort arrays by one or multiple calculated keys")
7743 (description "This Perl module provides various functions to quickly sort
7744 arrays by one or multiple calculated keys.")
7745 (license (package-license perl))))
7746
7747 (define-public perl-sort-naturally
7748 (package
7749 (name "perl-sort-naturally")
7750 (version "1.03")
7751 (source
7752 (origin
7753 (method url-fetch)
7754 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7755 version ".tar.gz"))
7756 (sha256
7757 (base32
7758 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7759 (build-system perl-build-system)
7760 (home-page "https://metacpan.org/release/Sort-Naturally")
7761 (synopsis "Sort lexically, but sort numeral parts numerically")
7762 (description "This module exports two functions, @code{nsort} and
7763 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7764 Under natural sorting, numeric substrings are compared numerically, and other
7765 word-characters are compared lexically.")
7766 (license (package-license perl))))
7767
7768 (define-public perl-specio
7769 (package
7770 (name "perl-specio")
7771 (version "0.38")
7772 (source
7773 (origin
7774 (method url-fetch)
7775 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7776 "Specio-" version ".tar.gz"))
7777 (sha256
7778 (base32
7779 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7780 (build-system perl-build-system)
7781 (propagated-inputs
7782 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7783 ("perl-eval-closure" ,perl-eval-closure)
7784 ("perl-module-runtime" ,perl-module-runtime)
7785 ("perl-mro-compat" ,perl-mro-compat)
7786 ("perl-role-tiny" ,perl-role-tiny)
7787 ("perl-test-fatal" ,perl-test-fatal)
7788 ("perl-test-needs" ,perl-test-needs)))
7789 (home-page "https://metacpan.org/release/Specio")
7790 (synopsis "Classes for representing type constraints and coercion")
7791 (description "The Specio distribution provides classes for representing type
7792 constraints and coercion, along with syntax sugar for declaring them. Note that
7793 this is not a proper type system for Perl. Nothing in this distribution will
7794 magically make the Perl interpreter start checking a value's type on assignment
7795 to a variable. In fact, there's no built-in way to apply a type to a variable at
7796 all. Instead, you can explicitly check a value against a type, and optionally
7797 coerce values to that type.")
7798 (license artistic2.0)))
7799
7800 (define-public perl-spiffy
7801 (package
7802 (name "perl-spiffy")
7803 (version "0.46")
7804 (source
7805 (origin
7806 (method url-fetch)
7807 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7808 "Spiffy-" version ".tar.gz"))
7809 (sha256
7810 (base32
7811 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7812 (build-system perl-build-system)
7813 (home-page "https://metacpan.org/release/Spiffy")
7814 (synopsis "Spiffy Perl Interface Framework For You")
7815 (description "Spiffy is a framework and methodology for doing object
7816 oriented (OO) programming in Perl. Spiffy combines the best parts of
7817 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7818 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7819 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7820 other OO languages like Python, Ruby, Java and Perl 6.")
7821 (license (package-license perl))))
7822
7823 (define-public perl-statistics-basic
7824 (package
7825 (name "perl-statistics-basic")
7826 (version "1.6611")
7827 (source (origin
7828 (method url-fetch)
7829 (uri (string-append
7830 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7831 version ".tar.gz"))
7832 (sha256
7833 (base32
7834 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7835 (build-system perl-build-system)
7836 (inputs
7837 `(("perl-number-format" ,perl-number-format)))
7838 (home-page "https://metacpan.org/release/Statistics-Basic")
7839 (synopsis "Collection of very basic statistics modules")
7840 (description "This package provides basic statistics functions like
7841 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7842 (license lgpl2.0)))
7843
7844 (define-public perl-stream-buffered
7845 (package
7846 (name "perl-stream-buffered")
7847 (version "0.03")
7848 (source
7849 (origin
7850 (method url-fetch)
7851 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7852 "Stream-Buffered-" version ".tar.gz"))
7853 (sha256
7854 (base32
7855 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7856 (build-system perl-build-system)
7857 (home-page "https://metacpan.org/release/Stream-Buffered")
7858 (synopsis "Temporary buffer to save bytes")
7859 (description "Stream::Buffered is a buffer class to store arbitrary length
7860 of byte strings and then get a seekable filehandle once everything is
7861 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7862 on the length of the size.")
7863 (license (package-license perl))))
7864
7865 (define-public perl-strictures
7866 (package
7867 (name "perl-strictures")
7868 (version "1.005005")
7869 (source
7870 (origin
7871 (method url-fetch)
7872 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7873 "strictures-" version ".tar.gz"))
7874 (sha256
7875 (base32
7876 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7877 (build-system perl-build-system)
7878 (home-page "https://metacpan.org/release/strictures")
7879 (synopsis "Turn on strict and make all warnings fatal")
7880 (description "Strictures turns on strict and make all warnings fatal when
7881 run from within a source-controlled directory.")
7882 (license (package-license perl))))
7883
7884 ;; Some packages don't yet work with this newer version of ‘strictures’.
7885 (define-public perl-strictures-2
7886 (package
7887 (inherit perl-strictures)
7888 (version "2.000006")
7889 (source
7890 (origin
7891 (method url-fetch)
7892 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7893 "strictures-" version ".tar.gz"))
7894 (sha256
7895 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
7896
7897 (define-public perl-string-camelcase
7898 (package
7899 (name "perl-string-camelcase")
7900 (version "0.04")
7901 (source
7902 (origin
7903 (method url-fetch)
7904 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7905 "String-CamelCase-" version ".tar.gz"))
7906 (sha256
7907 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
7908 (build-system perl-build-system)
7909 (arguments
7910 `(#:phases
7911 (modify-phases %standard-phases
7912 (add-before 'configure 'set-perl-search-path
7913 (lambda _
7914 ;; Work around "dotless @INC" build failure.
7915 (setenv "PERL5LIB"
7916 (string-append (getcwd) ":"
7917 (getenv "PERL5LIB")))
7918 #t)))))
7919 (home-page "https://metacpan.org/release/String-CamelCase")
7920 (synopsis "Camelcase and de-camelcase")
7921 (description "This module may be used to convert from under_score text to
7922 CamelCase and back again.")
7923 (license (package-license perl))))
7924
7925 (define-public perl-string-escape
7926 (package
7927 (name "perl-string-escape")
7928 (version "2010.002")
7929 (source
7930 (origin
7931 (method url-fetch)
7932 (uri (string-append
7933 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7934 version ".tar.gz"))
7935 (sha256
7936 (base32
7937 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7938 (build-system perl-build-system)
7939 (home-page "https://metacpan.org/release/String-Escape")
7940 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7941 (description "This module provides a flexible calling interface to some
7942 frequently-performed string conversion functions, including applying and
7943 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7944 removing double-quotes, and truncating to fit within a desired length.")
7945 (license (package-license perl))))
7946
7947 (define-public perl-string-formatter
7948 (package
7949 (name "perl-string-formatter")
7950 (version "0.102084")
7951 (source
7952 (origin
7953 (method url-fetch)
7954 (uri (string-append
7955 "mirror://cpan/authors/id/R/RJ/RJBS/String-Formatter-"
7956 version
7957 ".tar.gz"))
7958 (sha256
7959 (base32
7960 "0mlwm0rirv46gj4h072q8gdync5zxxsxy8p028gdyrhczl942dc3"))))
7961 (build-system perl-build-system)
7962 (propagated-inputs
7963 `(("perl-params-util" ,perl-params-util)
7964 ("perl-sub-exporter" ,perl-sub-exporter)))
7965 (home-page "https://metacpan.org/release/String-Formatter")
7966 (synopsis "Build your own sprintf-like functions")
7967 (description
7968 "@code{String::Formatter} is a tool for building sprintf-like formatting
7969 routines. It supports named or positional formatting, custom conversions,
7970 fixed string interpolation, and simple width-matching.")
7971 (license gpl2)))
7972
7973 (define-public perl-string-rewriteprefix
7974 (package
7975 (name "perl-string-rewriteprefix")
7976 (version "0.007")
7977 (source
7978 (origin
7979 (method url-fetch)
7980 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7981 "String-RewritePrefix-" version ".tar.gz"))
7982 (sha256
7983 (base32
7984 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7985 (build-system perl-build-system)
7986 (propagated-inputs
7987 `(("perl-sub-exporter" ,perl-sub-exporter)))
7988 (home-page "https://metacpan.org/release/String-RewritePrefix")
7989 (synopsis "Rewrite strings based on a set of known prefixes")
7990 (description "This module allows you to rewrite strings based on a set of
7991 known prefixes.")
7992 (license (package-license perl))))
7993
7994 (define-public perl-string-shellquote
7995 (package
7996 (name "perl-string-shellquote")
7997 (version "1.04")
7998 (source
7999 (origin
8000 (method url-fetch)
8001 (uri (string-append
8002 "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
8003 version
8004 ".tar.gz"))
8005 (sha256
8006 (base32
8007 "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
8008 (build-system perl-build-system)
8009 (home-page "https://metacpan.org/release/String-ShellQuote")
8010 (synopsis "Quote strings for passing through a shell")
8011 (description
8012 "@code{shell-quote} lets you pass arbitrary strings through the shell so
8013 that they won't be changed.")
8014 (license (package-license perl))))
8015
8016 (define-public perl-string-print
8017 (package
8018 (name "perl-string-print")
8019 (version "0.15")
8020 (source (origin
8021 (method url-fetch)
8022 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
8023 "String-Print-" version ".tar.gz"))
8024 (sha256
8025 (base32
8026 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
8027 (build-system perl-build-system)
8028 (propagated-inputs
8029 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
8030 (home-page "https://metacpan.org/release/String-Print")
8031 (synopsis "String printing alternatives to printf")
8032 (description
8033 "This module inserts values into (translated) strings. It provides
8034 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
8035 a functional interface.")
8036 (license (package-license perl))))
8037
8038 (define-public perl-sub-exporter
8039 (package
8040 (name "perl-sub-exporter")
8041 (version "0.987")
8042 (source
8043 (origin
8044 (method url-fetch)
8045 (uri (string-append
8046 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
8047 version ".tar.gz"))
8048 (sha256
8049 (base32
8050 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
8051 (build-system perl-build-system)
8052 (propagated-inputs
8053 `(("perl-data-optlist" ,perl-data-optlist)
8054 ("perl-params-util" ,perl-params-util)))
8055 (home-page "https://metacpan.org/release/Sub-Exporter")
8056 (synopsis "Sophisticated exporter for custom-built routines")
8057 (description
8058 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
8059 custom-built routines.")
8060 (license (package-license perl))))
8061
8062 (define-public perl-sub-exporter-progressive
8063 (package
8064 (name "perl-sub-exporter-progressive")
8065 (version "0.001013")
8066 (source
8067 (origin
8068 (method url-fetch)
8069 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
8070 "Sub-Exporter-Progressive-" version ".tar.gz"))
8071 (sha256
8072 (base32
8073 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
8074 (build-system perl-build-system)
8075 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
8076 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
8077 (synopsis "Only use Sub::Exporter if you need it")
8078 (description "Sub::Exporter is an incredibly powerful module, but with
8079 that power comes great responsibility, as well as some runtime penalties.
8080 This module is a \"Sub::Exporter\" wrapper that will let your users just use
8081 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
8082 if your users try to use \"Sub::Exporter\"'s more advanced features, like
8083 renaming exports, if they try to use them.")
8084 (license (package-license perl))))
8085
8086 (define-public perl-sub-identify
8087 (package
8088 (name "perl-sub-identify")
8089 (version "0.14")
8090 (source
8091 (origin
8092 (method url-fetch)
8093 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
8094 "Sub-Identify-" version ".tar.gz"))
8095 (sha256
8096 (base32
8097 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
8098 (build-system perl-build-system)
8099 (home-page "https://metacpan.org/release/Sub-Identify")
8100 (synopsis "Retrieve names of code references")
8101 (description "Sub::Identify allows you to retrieve the real name of code
8102 references.")
8103 (license (package-license perl))))
8104
8105 (define-public perl-sub-info
8106 (package
8107 (name "perl-sub-info")
8108 (version "0.002")
8109 (source
8110 (origin
8111 (method url-fetch)
8112 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
8113 version ".tar.gz"))
8114 (sha256
8115 (base32
8116 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
8117 (build-system perl-build-system)
8118 (propagated-inputs
8119 `(("perl-importer" ,perl-importer)))
8120 (home-page "https://metacpan.org/release/Sub-Info")
8121 (synopsis "Tool to inspect subroutines")
8122 (description "This package provides tools for inspecting subroutines
8123 in Perl.")
8124 (license (package-license perl))))
8125
8126 (define-public perl-sub-install
8127 (package
8128 (name "perl-sub-install")
8129 (version "0.928")
8130 (source
8131 (origin
8132 (method url-fetch)
8133 (uri (string-append
8134 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
8135 version ".tar.gz"))
8136 (sha256
8137 (base32
8138 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
8139 (build-system perl-build-system)
8140 (home-page "https://metacpan.org/release/Sub-Install")
8141 (synopsis "Install subroutines into packages easily")
8142 (description
8143 "Sub::Install makes it easy to install subroutines into packages without
8144 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
8145 can see them.")
8146 (license (package-license perl))))
8147
8148 (define-public perl-sub-name
8149 (package
8150 (name "perl-sub-name")
8151 (version "0.21")
8152 (source
8153 (origin
8154 (method url-fetch)
8155 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8156 "Sub-Name-" version ".tar.gz"))
8157 (sha256
8158 (base32
8159 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
8160 (build-system perl-build-system)
8161 (native-inputs
8162 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
8163 (home-page "https://metacpan.org/release/Sub-Name")
8164 (synopsis "(Re)name a sub")
8165 (description "Assigns a new name to referenced sub. If package
8166 specification is omitted in the name, then the current package is used. The
8167 return value is the sub.")
8168 (license (package-license perl))))
8169
8170 (define-public perl-sub-quote
8171 (package
8172 (name "perl-sub-quote")
8173 (version "2.006006")
8174 (source
8175 (origin
8176 (method url-fetch)
8177 (uri (string-append
8178 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
8179 version ".tar.gz"))
8180 (sha256
8181 (base32 "17fq4iskrisnqs96amrz493vxikwvqbj9s7014k6vyl84gs2lkkf"))))
8182 (build-system perl-build-system)
8183 (native-inputs
8184 `(("perl-test-fatal" ,perl-test-fatal)))
8185 (propagated-inputs
8186 `(("perl-sub-name" ,perl-sub-name)))
8187 (home-page "https://metacpan.org/release/Sub-Quote")
8188 (synopsis "Efficient generation of subroutines via string eval")
8189 (description "Sub::Quote provides an efficient generation of subroutines
8190 via string eval.")
8191 (license (package-license perl))))
8192
8193 (define-public perl-sub-uplevel
8194 (package
8195 (name "perl-sub-uplevel")
8196 (version "0.24")
8197 (source
8198 (origin
8199 (method url-fetch)
8200 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8201 "Sub-Uplevel-" version ".tar.gz"))
8202 (sha256
8203 (base32
8204 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
8205 (build-system perl-build-system)
8206 (home-page "https://metacpan.org/release/Sub-Uplevel")
8207 (synopsis "Apparently run a function in a higher stack frame")
8208 (description "Like Tcl's uplevel() function, but not quite so dangerous.
8209 The idea is just to fool caller(). All the really naughty bits of Tcl's
8210 uplevel() are avoided.")
8211 (license (package-license perl))))
8212
8213 (define-public perl-super
8214 (package
8215 (name "perl-super")
8216 (version "1.20190531")
8217 (source
8218 (origin
8219 (method url-fetch)
8220 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
8221 "SUPER-" version ".tar.gz"))
8222 (sha256
8223 (base32 "16nk2za9fwyg7mcifacr69qi075iz1yvy8r9jh3903kzdvkiwpb8"))))
8224 (build-system perl-build-system)
8225 (native-inputs
8226 `(("perl-module-build" ,perl-module-build)))
8227 (propagated-inputs
8228 `(("perl-sub-identify" ,perl-sub-identify)))
8229 (home-page "https://metacpan.org/release/SUPER")
8230 (synopsis "Control superclass method dispatching")
8231 (description
8232 "When subclassing a class, you may occasionally want to dispatch control to
8233 the superclass---at least conditionally and temporarily. This module provides
8234 nicer equivalents to the native Perl syntax for calling superclasses, along with
8235 a universal @code{super} method to determine a class' own superclass, and better
8236 support for run-time mix-ins and roles.")
8237 (license perl-license)))
8238
8239 (define-public perl-svg
8240 (package
8241 (name "perl-svg")
8242 (version "2.84")
8243 (source
8244 (origin
8245 (method url-fetch)
8246 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/SVG-"
8247 version ".tar.gz"))
8248 (sha256
8249 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
8250 (build-system perl-build-system)
8251 (home-page "https://metacpan.org/release/SVG")
8252 (synopsis "Perl extension for generating SVG documents")
8253 (description "SVG is a Perl module which generates a nested data structure
8254 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
8255 Using SVG, you can generate SVG objects, embed other SVG instances into it,
8256 access the DOM object, create and access Javascript, and generate SMIL
8257 animation content.")
8258 (license (package-license perl))))
8259
8260 (define-public perl-switch
8261 (package
8262 (name "perl-switch")
8263 (version "2.17")
8264 (source
8265 (origin
8266 (method url-fetch)
8267 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
8268 version ".tar.gz"))
8269 (sha256
8270 (base32
8271 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
8272 (build-system perl-build-system)
8273 (home-page "https://metacpan.org/release/Switch")
8274 (synopsis "Switch statement for Perl")
8275 (description "Switch is a Perl module which implements a generalized case
8276 mechanism. The module augments the standard Perl syntax with two new
8277 statements: @code{switch} and @code{case}.")
8278 (license (package-license perl))))
8279
8280 (define-public perl-sys-cpu
8281 (package
8282 (name "perl-sys-cpu")
8283 (version "0.61")
8284 (source (origin
8285 (method url-fetch)
8286 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
8287 "Sys-CPU-" version ".tar.gz"))
8288 (sha256
8289 (base32
8290 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
8291 (modules '((guix build utils)))
8292 (snippet
8293 '(begin
8294 ;; The contents of /proc/cpuinfo can differ and confuse the
8295 ;; cpu_clock and cpu_type methods, so we replace the test
8296 ;; with one that marks cpu_clock and cpu_type as TODO.
8297 ;; Borrowed from Debian.
8298 (call-with-output-file "t/Sys-CPU.t"
8299 (lambda (port)
8300 (format port "#!/usr/bin/perl
8301
8302 use Test::More tests => 4;
8303
8304 BEGIN { use_ok('Sys::CPU'); }
8305
8306 $number = &Sys::CPU::cpu_count();
8307 ok( defined($number), \"CPU Count: $number\" );
8308
8309 TODO: {
8310 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
8311 $speed = &Sys::CPU::cpu_clock();
8312 ok( defined($speed), \"CPU Speed: $speed\" );
8313 }
8314
8315 TODO: {
8316 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
8317 $type = &Sys::CPU::cpu_type();
8318 ok( defined($type), \"CPU Type: $type\" );
8319 }~%")))
8320 #t))))
8321 (build-system perl-build-system)
8322 (synopsis "Perl extension for getting CPU information")
8323 (description
8324 "Sys::CPU is a module for counting the number of CPUs on a system, and
8325 determining their type and clock speed.")
8326 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
8327 (license (package-license perl))))
8328
8329 (define-public perl-sys-hostname-long
8330 (package
8331 (name "perl-sys-hostname-long")
8332 (version "1.5")
8333 (source
8334 (origin
8335 (method url-fetch)
8336 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
8337 "Sys-Hostname-Long-" version ".tar.gz"))
8338 (sha256
8339 (base32
8340 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
8341 (build-system perl-build-system)
8342 (arguments `(#:tests? #f)) ;no `hostname' during build
8343 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
8344 (synopsis "Get full hostname in Perl")
8345 (description "Sys::Hostname::Long tries very hard to get the full hostname
8346 of a system.")
8347 (license (package-license perl))))
8348
8349 (define-public perl-sys-syscall
8350 (package
8351 (name "perl-sys-syscall")
8352 (version "0.25")
8353 (source
8354 (origin
8355 (method url-fetch)
8356 (uri (string-append "mirror://cpan/authors/id/B/BR/BRADFITZ/"
8357 "Sys-Syscall-" version ".tar.gz"))
8358 (sha256
8359 (base32
8360 "1r8k4q04dhs191zgdfgiagvbra770hx0bm6x24jsykxn0c6ghi8y"))))
8361 (build-system perl-build-system)
8362 (home-page "https://metacpan.org/release/Sys-Syscall")
8363 (synopsis
8364 "Access system calls that Perl doesn't normally provide access to")
8365 (description
8366 "Sys::Syscall allows one to use epoll and sendfile system calls from
8367 Perl. Support is mostly Linux-only for now, but other syscalls/OSes are
8368 planned for the future.")
8369 (license perl-license)))
8370
8371 (define-public perl-task-weaken
8372 (package
8373 (name "perl-task-weaken")
8374 (version "1.06")
8375 (source
8376 (origin
8377 (method url-fetch)
8378 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8379 "Task-Weaken-" version ".tar.gz"))
8380 (sha256
8381 (base32
8382 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
8383 (build-system perl-build-system)
8384 (arguments
8385 '(#:phases (modify-phases %standard-phases
8386 (add-before 'configure 'set-search-path
8387 (lambda _
8388 ;; Work around "dotless @INC" build failure.
8389 (setenv "PERL5LIB"
8390 (string-append (getcwd) ":"
8391 (getenv "PERL5LIB")))
8392 #t)))))
8393 (home-page "https://metacpan.org/release/Task-Weaken")
8394 (synopsis "Ensure that a platform has weaken support")
8395 (description "One recurring problem in modules that use Scalar::Util's
8396 weaken function is that it is not present in the pure-perl variant. If
8397 Scalar::Util is not available at all, it will issue a normal dependency on the
8398 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
8399 module does not have weaken, the install will bail out altogether with a long
8400 error encouraging the user to seek support.")
8401 (license (package-license perl))))
8402
8403 (define-public perl-template-toolkit
8404 (package
8405 (name "perl-template-toolkit")
8406 (version "2.28")
8407 (source
8408 (origin
8409 (method url-fetch)
8410 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
8411 "Template-Toolkit-" version ".tar.gz"))
8412 (sha256
8413 (base32
8414 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
8415 (build-system perl-build-system)
8416 (propagated-inputs
8417 `(("perl-appconfig" ,perl-appconfig)
8418 ("perl-test-leaktrace" ,perl-test-leaktrace)))
8419 (home-page "https://metacpan.org/release/Template-Toolkit")
8420 (synopsis "Template processing system for Perl")
8421 (description "The Template Toolkit is a collection of modules which
8422 implement an extensible template processing system. It was originally
8423 designed and remains primarily useful for generating dynamic web content, but
8424 it can be used equally well for processing any other kind of text based
8425 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
8426 (license (package-license perl))))
8427
8428 (define-public perl-template-timer
8429 (package
8430 (name "perl-template-timer")
8431 (version "1.00")
8432 (source
8433 (origin
8434 (method url-fetch)
8435 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
8436 "Template-Timer-" version ".tar.gz"))
8437 (sha256
8438 (base32
8439 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
8440 (build-system perl-build-system)
8441 (propagated-inputs
8442 `(("perl-template-toolkit" ,perl-template-toolkit)))
8443 (home-page "https://metacpan.org/release/Template-Timer")
8444 (synopsis "Profiling for Template Toolkit")
8445 (description "Template::Timer provides inline profiling of the template
8446 processing in Perl code.")
8447 (license (list gpl3 artistic2.0))))
8448
8449 (define-public perl-template-tiny
8450 (package
8451 (name "perl-template-tiny")
8452 (version "1.12")
8453 (source
8454 (origin
8455 (method url-fetch)
8456 (uri (string-append
8457 "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-"
8458 version
8459 ".tar.gz"))
8460 (sha256
8461 (base32
8462 "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7"))))
8463 (build-system perl-build-system)
8464 (home-page "https://metacpan.org/release/Template-Tiny")
8465 (synopsis "Template Toolkit reimplemented in as little code as possible")
8466 (description
8467 "@code{Template::Tiny} is a reimplementation of a subset of the
8468 functionality from Template Toolkit in as few lines of code as possible.
8469
8470 It is intended for use in light-usage, low-memory, or low-cpu templating
8471 situations, where you may need to upgrade to the full feature set in the
8472 future, or if you want the retain the familiarity of TT-style templates.")
8473 (license perl-license)))
8474
8475 (define-public perl-term-encoding
8476 (package
8477 (name "perl-term-encoding")
8478 (version "0.02")
8479 (source
8480 (origin
8481 (method url-fetch)
8482 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
8483 "Term-Encoding-" version ".tar.gz"))
8484 (sha256
8485 (base32
8486 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
8487 (build-system perl-build-system)
8488 (native-inputs
8489 `(("perl-module-install" ,perl-module-install)))
8490 (home-page "https://metacpan.org/release/Term-Encoding")
8491 (synopsis "Detect encoding of the current terminal")
8492 (description "Term::Encoding is a simple module to detect the encoding of
8493 the current terminal expects in various ways.")
8494 (license (package-license perl))))
8495
8496 (define-public perl-term-progressbar
8497 (package
8498 (name "perl-term-progressbar")
8499 (version "2.17")
8500 (source
8501 (origin
8502 (method url-fetch)
8503 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
8504 "Term-ProgressBar-" version ".tar.gz"))
8505 (sha256
8506 (base32
8507 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
8508 (build-system perl-build-system)
8509 (native-inputs
8510 `(("perl-capture-tiny" ,perl-capture-tiny)
8511 ("perl-test-exception" ,perl-test-exception)))
8512 (propagated-inputs
8513 `(("perl-class-methodmaker" ,perl-class-methodmaker)
8514 ("perl-term-readkey" ,perl-term-readkey)))
8515 (home-page "https://metacpan.org/release/Term-ProgressBar")
8516 (synopsis "Progress meter on a standard terminal")
8517 (description "Term::ProgressBar provides a simple progress bar on the
8518 terminal, to let the user know that something is happening, roughly how much
8519 stuff has been done, and maybe an estimate at how long remains.")
8520 (license (package-license perl))))
8521
8522 (define-public perl-term-progressbar-quiet
8523 (package
8524 (name "perl-term-progressbar-quiet")
8525 (version "0.31")
8526 (source
8527 (origin
8528 (method url-fetch)
8529 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8530 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8531 (sha256
8532 (base32
8533 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8534 (build-system perl-build-system)
8535 (propagated-inputs
8536 `(("perl-io-interactive" ,perl-io-interactive)
8537 ("perl-term-progressbar" ,perl-term-progressbar)
8538 ("perl-test-mockobject" ,perl-test-mockobject)))
8539 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
8540 (synopsis "Progress meter if run interactively")
8541 (description "Term::ProgressBar is a wonderful module for showing progress
8542 bars on the terminal. This module acts very much like that module when it is
8543 run interactively. However, when it is not run interactively (for example, as
8544 a cron job) then it does not show the progress bar.")
8545 (license (package-license perl))))
8546
8547 (define-public perl-term-progressbar-simple
8548 (package
8549 (name "perl-term-progressbar-simple")
8550 (version "0.03")
8551 (source
8552 (origin
8553 (method url-fetch)
8554 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8555 "Term-ProgressBar-Simple-" version ".tar.gz"))
8556 (sha256
8557 (base32
8558 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8559 (build-system perl-build-system)
8560 (propagated-inputs
8561 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8562 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
8563 (synopsis "Simple progress bars")
8564 (description "Term::ProgressBar::Simple tells you how much work has been
8565 done, how much is left to do, and estimate how long it will take.")
8566 (license (package-license perl))))
8567
8568 (define-public perl-term-readkey
8569 (package
8570 (name "perl-term-readkey")
8571 (version "2.37")
8572 (source
8573 (origin
8574 (method url-fetch)
8575 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8576 "TermReadKey-" version ".tar.gz"))
8577 (sha256
8578 (base32
8579 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8580 (build-system perl-build-system)
8581 (home-page "https://metacpan.org/release/TermReadKey")
8582 (synopsis "Simple terminal control")
8583 (description "This module, ReadKey, provides ioctl control for terminals
8584 so the input modes can be changed (thus allowing reads of a single character
8585 at a time), and also provides non-blocking reads of stdin, as well as several
8586 other terminal related features, including retrieval/modification of the
8587 screen size, and retrieval/modification of the control characters.")
8588 (license (package-license perl))))
8589
8590 (define-public perl-term-readline-gnu
8591 (package
8592 (name "perl-term-readline-gnu")
8593 (version "1.36")
8594 (source
8595 (origin
8596 (method url-fetch)
8597 (uri (string-append "mirror://cpan/authors/id/H/HA/HAYASHI/"
8598 "Term-ReadLine-Gnu-" version ".tar.gz"))
8599 (sha256
8600 (base32
8601 "09b9mcmp09kdfh5jaqdr528yny8746hvn3f185aqd6rw06jgf24s"))))
8602 (build-system perl-build-system)
8603 (inputs
8604 `(("readline" ,readline)
8605 ("ncurses" ,ncurses)))
8606 (arguments
8607 `(#:tests? #f ; Tests fail without other Term::ReadLine interfaces present
8608 #:phases (modify-phases %standard-phases
8609 (add-before 'configure 'patch-search-lib
8610 (lambda* (#:key inputs #:allow-other-keys)
8611 (substitute* "Makefile.PL"
8612 ;; The configuration provides no way easy was to pass
8613 ;; additional directories to search for libraries, so
8614 ;; just patch in the flags.
8615 (("-lreadline" &)
8616 (format #f "-L~a/lib ~a" (assoc-ref inputs "readline") &))
8617 (("&search_lib\\('-lncurses'\\)")
8618 (string-append "'-L" (assoc-ref inputs "ncurses") "/lib"
8619 " -lncurses'"))))))))
8620 (home-page "https://metacpan.org/release/Term-ReadLine-Gnu")
8621 (synopsis "GNU Readline/History Library interface for Perl")
8622 (description "This module implements an interface to the GNU Readline
8623 library. It gives you input line editing facilities, input history management
8624 facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards
8625 compatible with Term::ReadLine.")
8626 (license (package-license perl))))
8627
8628 (define-public perl-term-size-any
8629 (package
8630 (name "perl-term-size-any")
8631 (version "0.002")
8632 (source
8633 (origin
8634 (method url-fetch)
8635 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8636 "Term-Size-Any-" version ".tar.gz"))
8637 (sha256
8638 (base32
8639 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8640 (build-system perl-build-system)
8641 (native-inputs
8642 `(("perl-devel-hide" ,perl-devel-hide)))
8643 (propagated-inputs
8644 `(("perl-term-size-perl" ,perl-term-size-perl)))
8645 (home-page "https://metacpan.org/release/Term-Size-Any")
8646 (synopsis "Retrieve terminal size")
8647 (description "This is a unified interface to retrieve terminal size. It
8648 loads one module of a list of known alternatives, each implementing some way
8649 to get the desired terminal information. This loaded module will actually do
8650 the job on behalf of @code{Term::Size::Any}.")
8651 (license (package-license perl))))
8652
8653 (define-public perl-term-size-perl
8654 (package
8655 (name "perl-term-size-perl")
8656 (version "0.031")
8657 (source
8658 (origin
8659 (method url-fetch)
8660 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8661 "Term-Size-Perl-" version ".tar.gz"))
8662 (sha256
8663 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
8664 (build-system perl-build-system)
8665 (home-page "https://metacpan.org/release/Term-Size-Perl")
8666 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8667 (description "This is yet another implementation of @code{Term::Size}.
8668 Now in pure Perl, with the exception of a C probe run at build time.")
8669 (license (package-license perl))))
8670
8671 (define-public perl-term-table
8672 (package
8673 (name "perl-term-table")
8674 (version "0.008")
8675 (source
8676 (origin
8677 (method url-fetch)
8678 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8679 version ".tar.gz"))
8680 (sha256
8681 (base32
8682 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8683 (build-system perl-build-system)
8684 (propagated-inputs
8685 `(("perl-importer" ,perl-importer)))
8686 (home-page "https://metacpan.org/release/Term-Table")
8687 (synopsis "Format a header and rows into a table")
8688 (description "This module is able to generically format rows of data
8689 into tables.")
8690 (license (package-license perl))))
8691
8692 (define-public perl-text-aligner
8693 (package
8694 (name "perl-text-aligner")
8695 (version "0.13")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8700 "Text-Aligner-" version ".tar.gz"))
8701 (sha256
8702 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
8703 (build-system perl-build-system)
8704 (native-inputs `(("perl-module-build" ,perl-module-build)))
8705 (home-page "https://metacpan.org/release/Text-Aligner")
8706 (synopsis "Align text")
8707 (description "Text::Aligner exports a single function, align(), which is
8708 used to justify strings to various alignment styles.")
8709 (license x11)))
8710
8711 (define-public perl-text-balanced
8712 (package
8713 (name "perl-text-balanced")
8714 (version "2.03")
8715 (source
8716 (origin
8717 (method url-fetch)
8718 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8719 "Text-Balanced-" version ".tar.gz"))
8720 (sha256
8721 (base32
8722 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8723 (build-system perl-build-system)
8724 (home-page "https://metacpan.org/release/Text-Balanced")
8725 (synopsis "Extract delimited text sequences from strings")
8726 (description "The Text::Balanced module can be used to extract delimited
8727 text sequences from strings.")
8728 (license (package-license perl))))
8729
8730 (define-public perl-text-csv
8731 (package
8732 (name "perl-text-csv")
8733 (version "2.00")
8734 (source
8735 (origin
8736 (method url-fetch)
8737 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
8738 "Text-CSV-" version ".tar.gz"))
8739 (sha256
8740 (base32 "1hmjrc8h622nybdq8lpqi3hlrcjvb474s4a4b2cjs8h5b0cxkjwc"))))
8741 (build-system perl-build-system)
8742 (home-page "https://metacpan.org/release/Text-CSV")
8743 (synopsis "Manipulate comma-separated values")
8744 (description "Text::CSV provides facilities for the composition and
8745 decomposition of comma-separated values. An instance of the Text::CSV class
8746 can combine fields into a CSV string and parse a CSV string into fields.")
8747 (license (package-license perl))))
8748
8749 (define-public perl-text-csv-xs
8750 (package
8751 (name "perl-text-csv-xs")
8752 (version "1.39")
8753 (source
8754 (origin
8755 (method url-fetch)
8756 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8757 "Text-CSV_XS-" version ".tgz"))
8758 (sha256
8759 (base32 "1gcy1bxym6f7qsxivkl3c5p94r1bjhf9csy1x38a1gk8mx744kma"))))
8760 (build-system perl-build-system)
8761 (home-page "https://metacpan.org/release/Text-CSV_XS")
8762 (synopsis "Routines for manipulating CSV files")
8763 (description "@code{Text::CSV_XS} provides facilities for the composition
8764 and decomposition of comma-separated values. An instance of the
8765 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8766 CSV string into fields. The module accepts either strings or files as input
8767 and support the use of user-specified characters for delimiters, separators,
8768 and escapes.")
8769 (license (package-license perl))))
8770
8771 (define-public perl-text-diff
8772 (package
8773 (name "perl-text-diff")
8774 (version "1.45")
8775 (source
8776 (origin
8777 (method url-fetch)
8778 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8779 "Text-Diff-" version ".tar.gz"))
8780 (sha256
8781 (base32
8782 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8783 (build-system perl-build-system)
8784 (propagated-inputs
8785 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8786 (home-page "https://metacpan.org/release/Text-Diff")
8787 (synopsis "Perform diffs on files and record sets")
8788 (description "Text::Diff provides a basic set of services akin to the GNU
8789 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8790 is better integrated with Perl and available on all platforms. It is often
8791 faster than shelling out to a system's diff executable for small files, and
8792 generally slower on larger files.")
8793 (license (package-license perl))))
8794
8795 (define-public perl-text-format
8796 (package
8797 (name "perl-text-format")
8798 (version "0.61")
8799 (source (origin
8800 (method url-fetch)
8801 (uri (string-append
8802 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8803 version ".tar.gz"))
8804 (sha256
8805 (base32
8806 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8807 (build-system perl-build-system)
8808 (native-inputs
8809 `(("perl-module-build" ,perl-module-build)
8810 ("perl-test-pod" ,perl-test-pod)
8811 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8812 (home-page "https://metacpan.org/release/Text-Format")
8813 (synopsis "Various subroutines to format text")
8814 (description "This package provides functions to format text in various
8815 ways like centering, paragraphing, and converting tabs to spaces and spaces
8816 to tabs.")
8817 (license perl-license)))
8818
8819 (define-public perl-text-glob
8820 (package
8821 (name "perl-text-glob")
8822 (version "0.11")
8823 (source
8824 (origin
8825 (method url-fetch)
8826 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8827 "Text-Glob-" version ".tar.gz"))
8828 (sha256
8829 (base32
8830 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8831 (build-system perl-build-system)
8832 (native-inputs `(("perl-module-build" ,perl-module-build)))
8833 (home-page "https://metacpan.org/release/Text-Glob")
8834 (synopsis "Match globbing patterns against text")
8835 (description "Text::Glob implements glob(3) style matching that can be
8836 used to match against text, rather than fetching names from a file system. If
8837 you want to do full file globbing use the File::Glob module instead.")
8838 (license (package-license perl))))
8839
8840 (define-public perl-text-neattemplate
8841 (package
8842 (name "perl-text-neattemplate")
8843 (version "0.1101")
8844 (source
8845 (origin
8846 (method url-fetch)
8847 (uri (string-append
8848 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8849 "Text-NeatTemplate-" version ".tar.gz"))
8850 (sha256
8851 (base32
8852 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8853 (build-system perl-build-system)
8854 (native-inputs
8855 `(("perl-module-build" ,perl-module-build)))
8856 (home-page
8857 "https://metacpan.org/release/Text-NeatTemplate")
8858 (synopsis "Fast, middleweight template engine")
8859 (description
8860 "Text::NeatTemplate provides a simple, middleweight but fast
8861 template engine, for when you need speed rather than complex features,
8862 yet need more features than simple variable substitution.")
8863 (license (package-license perl))))
8864
8865 (define-public perl-text-roman
8866 (package
8867 (name "perl-text-roman")
8868 (version "3.5")
8869 (source
8870 (origin
8871 (method url-fetch)
8872 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8873 version ".tar.gz"))
8874 (sha256
8875 (base32
8876 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8877 (build-system perl-build-system)
8878 (home-page "https://metacpan.org/release/Text-Roman")
8879 (synopsis "Convert between Roman and Arabic algorisms")
8880 (description "This package provides functions to convert between Roman and
8881 Arabic algorisms. It supports both conventional Roman algorisms (which range
8882 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8883 algorism to indicate multiplication by 1000.")
8884 (license (package-license perl))))
8885
8886 (define-public perl-text-simpletable
8887 (package
8888 (name "perl-text-simpletable")
8889 (version "2.07")
8890 (source
8891 (origin
8892 (method url-fetch)
8893 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8894 "Text-SimpleTable-" version ".tar.gz"))
8895 (sha256
8896 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
8897 (build-system perl-build-system)
8898 (home-page "https://metacpan.org/release/Text-SimpleTable")
8899 (synopsis "Simple ASCII tables")
8900 (description "Text::SimpleTable draws simple ASCII tables.")
8901 (license artistic2.0)))
8902
8903 (define-public perl-text-table
8904 (package
8905 (name "perl-text-table")
8906 (version "1.133")
8907 (source
8908 (origin
8909 (method url-fetch)
8910 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8911 "Text-Table-" version ".tar.gz"))
8912 (sha256
8913 (base32
8914 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8915 (build-system perl-build-system)
8916 (native-inputs
8917 `(("perl-module-build" ,perl-module-build)))
8918 (propagated-inputs
8919 `(("perl-text-aligner" ,perl-text-aligner)))
8920 (home-page "https://metacpan.org/release/Text-Table")
8921 (synopsis "Organize Data in Tables")
8922 (description "Text::Table renders plaintext tables.")
8923 (license x11)))
8924
8925 (define-public perl-text-template
8926 (package
8927 (name "perl-text-template")
8928 (version "1.55")
8929 (source
8930 (origin
8931 (method url-fetch)
8932 (uri (string-append
8933 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8934 version
8935 ".tar.gz"))
8936 (sha256
8937 (base32
8938 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
8939 (build-system perl-build-system)
8940 (native-inputs
8941 `(("perl-test-more-utf8" ,perl-test-more-utf8)
8942 ("perl-test-warnings" ,perl-test-warnings)))
8943 (home-page
8944 "https://metacpan.org/release/Text-Template")
8945 (synopsis
8946 "Expand template text with embedded Perl")
8947 (description
8948 "This is a library for generating letters, building HTML pages, or
8949 filling in templates generally. A template is a piece of text that has little
8950 Perl programs embedded in it here and there. When you fill in a template, you
8951 evaluate the little programs and replace them with their values.")
8952 (license perl-license)))
8953
8954 (define-public perl-text-unidecode
8955 (package
8956 (name "perl-text-unidecode")
8957 (version "1.30")
8958 (source
8959 (origin
8960 (method url-fetch)
8961 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8962 "Text-Unidecode-" version ".tar.gz"))
8963 (sha256
8964 (base32 "1imii0p6wvhrxsr5z2zhazpx5vl4l4ybf1y2c5hy480xvi6z293c"))))
8965 (build-system perl-build-system)
8966 (home-page "https://metacpan.org/release/Text-Unidecode")
8967 (synopsis "Provide plain ASCII transliterations of Unicode text")
8968 (description "Text::Unidecode provides a function, unidecode(...) that
8969 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8970 universally displayable characters between 0x00 and 0x7F). The representation
8971 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8972 letters, the pronunciation expressed by the text in some other writing
8973 system.")
8974 (license (package-license perl))))
8975
8976 (define-public perl-threads
8977 (package
8978 (name "perl-threads")
8979 (version "2.21")
8980 (source
8981 (origin
8982 (method url-fetch)
8983 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8984 version ".tar.gz"))
8985 (sha256
8986 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8987 (build-system perl-build-system)
8988 (home-page "https://metacpan.org/release/threads")
8989 (synopsis "Perl interpreter-based threads")
8990 (description "This module exposes interpreter threads to the Perl level.")
8991 (license perl-license)))
8992
8993 (define-public perl-throwable
8994 (package
8995 (name "perl-throwable")
8996 (version "0.200013")
8997 (source
8998 (origin
8999 (method url-fetch)
9000 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
9001 "Throwable-" version ".tar.gz"))
9002 (sha256
9003 (base32
9004 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
9005 (build-system perl-build-system)
9006 (native-inputs
9007 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
9008 (propagated-inputs
9009 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
9010 ("perl-module-runtime" ,perl-module-runtime)
9011 ("perl-moo" ,perl-moo)))
9012 (home-page "https://metacpan.org/release/Throwable")
9013 (synopsis "Role for classes that can be thrown")
9014 (description "Throwable is a role for classes that are meant to be thrown
9015 as exceptions to standard program flow.")
9016 (license (package-license perl))))
9017
9018 (define-public perltidy
9019 (package
9020 (name "perltidy")
9021 (version "20180220")
9022 (source (origin
9023 (method url-fetch)
9024 (uri (string-append "mirror://sourceforge/perltidy/" version
9025 "/Perl-Tidy-" version ".tar.gz"))
9026 (sha256
9027 (base32
9028 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
9029 (build-system perl-build-system)
9030 (home-page "http://perltidy.sourceforge.net/")
9031 (synopsis "Perl script tidier")
9032 (description "This package contains a Perl script which indents and
9033 reformats Perl scripts to make them easier to read. The formatting can be
9034 controlled with command line parameters. The default parameter settings
9035 approximately follow the suggestions in the Perl Style Guide.")
9036 (license gpl2+)))
9037
9038 (define-public perl-tie-cycle
9039 (package
9040 (name "perl-tie-cycle")
9041 (version "1.225")
9042 (source
9043 (origin
9044 (method url-fetch)
9045 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
9046 version ".tar.gz"))
9047 (sha256
9048 (base32
9049 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
9050 (build-system perl-build-system)
9051 (home-page "https://metacpan.org/release/Tie-Cycle")
9052 (synopsis "Cycle through a list of values")
9053 (description "You use @code{Tie::Cycle} to go through a list over and over
9054 again. Once you get to the end of the list, you go back to the beginning.")
9055 (license (package-license perl))))
9056
9057 (define-public perl-tie-ixhash
9058 (package
9059 (name "perl-tie-ixhash")
9060 (version "1.23")
9061 (source
9062 (origin
9063 (method url-fetch)
9064 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
9065 "Tie-IxHash-" version ".tar.gz"))
9066 (sha256
9067 (base32
9068 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
9069 (build-system perl-build-system)
9070 (native-inputs `(("perl-module-build" ,perl-module-build)))
9071 (home-page "https://metacpan.org/release/Tie-IxHash")
9072 (synopsis "Ordered associative arrays for Perl")
9073 (description "This Perl module implements Perl hashes that preserve the
9074 order in which the hash elements were added. The order is not affected when
9075 values corresponding to existing keys in the IxHash are changed. The elements
9076 can also be set to any arbitrary supplied order. The familiar perl array
9077 operations can also be performed on the IxHash.")
9078 (license (package-license perl))))
9079
9080 (define-public perl-tie-handle-offset
9081 (package
9082 (name "perl-tie-handle-offset")
9083 (version "0.004")
9084 (source
9085 (origin
9086 (method url-fetch)
9087 (uri (string-append
9088 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
9089 version
9090 ".tar.gz"))
9091 (sha256
9092 (base32
9093 "17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
9094 (build-system perl-build-system)
9095 (home-page "https://metacpan.org/release/Tie-Handle-Offset")
9096 (synopsis "Special file handle that hides the beginning of a file")
9097 (description
9098 "This modules provides a file handle that hides the beginning of a file,
9099 by modifying the @code{seek()} and @code{tell()} calls.")
9100 (license asl2.0)))
9101
9102 (define-public perl-tie-toobject
9103 (package
9104 (name "perl-tie-toobject")
9105 (version "0.03")
9106 (source
9107 (origin
9108 (method url-fetch)
9109 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
9110 "Tie-ToObject-" version ".tar.gz"))
9111 (sha256
9112 (base32
9113 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
9114 (build-system perl-build-system)
9115 (propagated-inputs
9116 `(("perl-test-simple" ,perl-test-simple)))
9117 (home-page "https://metacpan.org/release/Tie-ToObject")
9118 (synopsis "Tie to an existing Perl object")
9119 (description "This class provides a tie constructor that returns the
9120 object it was given as it's first argument. This way side effects of calling
9121 $object->TIEHASH are avoided.")
9122 (license (package-license perl))))
9123
9124 (define-public perl-time-duration
9125 (package
9126 (name "perl-time-duration")
9127 (version "1.21")
9128 (source
9129 (origin
9130 (method url-fetch)
9131 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9132 "Time-Duration-" version ".tar.gz"))
9133 (sha256
9134 (base32 "1f59z2svfydxgd1gzrb5k3hl6d432kzmskk7jhv2dyb5hyx0wd7y"))))
9135 (build-system perl-build-system)
9136 (native-inputs
9137 `(("perl-module-install" ,perl-module-install)
9138 ("perl-test-pod" ,perl-test-pod)
9139 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9140 (home-page "https://metacpan.org/release/Time-Duration")
9141 (synopsis "English expression of durations")
9142 (description "This module provides functions for expressing durations in
9143 rounded or exact terms.")
9144 (license (package-license perl))))
9145
9146 (define-public perl-time-duration-parse
9147 (package
9148 (name "perl-time-duration-parse")
9149 (version "0.14")
9150 (source
9151 (origin
9152 (method url-fetch)
9153 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9154 "Time-Duration-Parse-" version ".tar.gz"))
9155 (sha256
9156 (base32 "17nh73r50mqqpgxdf3zpgdiqrizmjy0vdk0zd6xi9zcsdijrdhnc"))))
9157 (build-system perl-build-system)
9158 (native-inputs
9159 `(("perl-time-duration" ,perl-time-duration)))
9160 (propagated-inputs
9161 `(("perl-exporter-lite" ,perl-exporter-lite)))
9162 (home-page "https://metacpan.org/release/Time-Duration-Parse")
9163 (synopsis "Parse time duration strings")
9164 (description "Time::Duration::Parse is a module to parse human readable
9165 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
9166 (license (package-license perl))))
9167
9168 (define-public perl-time-hires
9169 (package
9170 (name "perl-time-hires")
9171 (version "1.9760")
9172 (source (origin
9173 (method url-fetch)
9174 (uri (string-append
9175 "mirror://cpan/authors/id/A/AT/ATOOMIC/Time-HiRes-"
9176 version ".tar.gz"))
9177 (sha256
9178 (base32
9179 "0avh25m5ffsqc2xnfczvlnlbfbisw5wjq9d3w0j01h9byjzrif1c"))))
9180 (build-system perl-build-system)
9181 (home-page "https://metacpan.org/release/Time-HiRes")
9182 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
9183 (description "This package implements @code{usleep}, @code{ualarm}, and
9184 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
9185 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
9186 (license perl-license)))
9187
9188 (define-public perl-time-local
9189 (package
9190 (name "perl-time-local")
9191 (version "1.28")
9192 (source
9193 (origin
9194 (method url-fetch)
9195 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
9196 "Time-Local-" version ".tar.gz"))
9197 (sha256
9198 (base32
9199 "03p1mxk75vmmi4l0ibpd05b6hncbh8afjhvss87vpp4rrkjvjy4j"))))
9200 (build-system perl-build-system)
9201 (home-page "https://metacpan.org/release/Time-Local")
9202 (synopsis "Efficiently compute time from local and GMT time")
9203 (description "This module provides functions that are the inverse of
9204 built-in perl functions localtime() and gmtime(). They accept a date as a
9205 six-element array, and return the corresponding time(2) value in seconds since
9206 the system epoch.")
9207 (license (package-license perl))))
9208
9209 (define-public perl-time-piece
9210 (package
9211 (name "perl-time-piece")
9212 (version "1.3203")
9213 (source
9214 (origin
9215 (method url-fetch)
9216 (uri (string-append
9217 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
9218 version ".tar.gz"))
9219 (sha256
9220 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
9221 (build-system perl-build-system)
9222 (home-page "https://metacpan.org/release/Time-Piece")
9223 (synopsis "Object-Oriented time objects")
9224 (description
9225 "This module replaces the standard @code{localtime} and @code{gmtime}
9226 functions with implementations that return objects. It does so in a
9227 backwards-compatible manner, so that using these functions as documented will
9228 still work as expected.")
9229 (license perl-license)))
9230
9231 (define-public perl-timedate
9232 (package
9233 (name "perl-timedate")
9234 (version "2.31")
9235 (source
9236 (origin
9237 (method url-fetch)
9238 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9239 "TimeDate-" version ".tar.gz"))
9240 (sha256
9241 (base32
9242 "10ad6l4ii2iahdpw8h0xqwasc1jblan31h597q3js4j5nbnhywjw"))))
9243 (build-system perl-build-system)
9244 (home-page "https://metacpan.org/release/TimeDate")
9245 (synopsis "Date parsing/formatting subroutines")
9246 (description "This module provides routines for parsing date string into
9247 time values and formatting dates into ASCII strings.")
9248 (license (package-license perl))))
9249
9250 (define-public perl-time-mock
9251 (package
9252 (name "perl-time-mock")
9253 (version "v0.0.2")
9254 (source
9255 (origin
9256 (method url-fetch)
9257 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
9258 "Time-Mock-" version ".tar.gz"))
9259 (sha256
9260 (base32
9261 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
9262 (build-system perl-build-system)
9263 (native-inputs
9264 `(("perl-module-build" ,perl-module-build)))
9265 (propagated-inputs
9266 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
9267 (home-page "https://metacpan.org/release/Time-Mock")
9268 (synopsis "Shift and scale time")
9269 (description "This module allows you to speed up your sleep(), alarm(),
9270 and time() calls.")
9271 (license (package-license perl))))
9272
9273 (define-public perl-tree-simple
9274 (package
9275 (name "perl-tree-simple")
9276 (version "1.33")
9277 (source
9278 (origin
9279 (method url-fetch)
9280 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
9281 "Tree-Simple-" version ".tgz"))
9282 (sha256
9283 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
9284 (build-system perl-build-system)
9285 (native-inputs
9286 `(("perl-module-build" ,perl-module-build)
9287 ("perl-test-exception" ,perl-test-exception)))
9288 (propagated-inputs
9289 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
9290 (home-page "https://metacpan.org/release/Tree-Simple")
9291 (synopsis "Simple tree object")
9292 (description "This module in a fully object-oriented implementation of a
9293 simple n-ary tree.")
9294 (license (package-license perl))))
9295
9296 (define-public perl-tree-simple-visitorfactory
9297 (package
9298 (name "perl-tree-simple-visitorfactory")
9299 (version "0.15")
9300 (source
9301 (origin
9302 (method url-fetch)
9303 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
9304 "Tree-Simple-VisitorFactory-" version ".tgz"))
9305 (sha256
9306 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
9307 (build-system perl-build-system)
9308 (native-inputs
9309 `(("perl-module-build" ,perl-module-build)
9310 ("perl-test-exception" ,perl-test-exception)))
9311 (propagated-inputs
9312 `(("perl-tree-simple" ,perl-tree-simple)))
9313 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
9314 (synopsis "Factory object for dispensing Visitor objects")
9315 (description "This module is a factory for dispensing
9316 Tree::Simple::Visitor::* objects.")
9317 (license (package-license perl))))
9318
9319 (define-public perl-try-tiny
9320 (package
9321 (name "perl-try-tiny")
9322 (version "0.30")
9323 (source
9324 (origin
9325 (method url-fetch)
9326 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9327 "Try-Tiny-" version ".tar.gz"))
9328 (sha256
9329 (base32
9330 "0szgvlz19yz3mq1lbzmwh8w5dh6agg5s16xv22zrnl83r7ax0nys"))))
9331 (build-system perl-build-system)
9332 (home-page "https://metacpan.org/release/Try-Tiny")
9333 (synopsis "Minimal try/catch with proper preservation of $@@")
9334 (description "This module provides bare bones try/catch/finally statements
9335 that are designed to minimize common mistakes with eval blocks, and nothing
9336 else.")
9337 (license x11)))
9338
9339 (define-public perl-type-tie
9340 (package
9341 (name "perl-type-tie")
9342 (version "0.014")
9343 (source
9344 (origin
9345 (method url-fetch)
9346 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
9347 "Type-Tie-" version ".tar.gz"))
9348 (sha256
9349 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
9350 (build-system perl-build-system)
9351 (native-inputs
9352 `(("perl-test-fatal" ,perl-test-fatal)
9353 ("perl-test-requires" ,perl-test-requires)))
9354 (propagated-inputs
9355 `(("perl-exporter-tiny" ,perl-exporter-tiny)
9356 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
9357 (home-page "https://metacpan.org/release/Type-Tie")
9358 (synopsis "Tie a variable to a type constraint")
9359 (description "This module exports a single function: @code{ttie}. It ties
9360 a variable to a type constraint, ensuring that whatever values stored in the
9361 variable will conform to the type constraint. If the type constraint has
9362 coercions, these will be used if necessary to ensure values assigned to the
9363 variable conform.")
9364 (license (package-license perl))))
9365
9366 (define-public perl-type-tiny
9367 (package
9368 (name "perl-type-tiny")
9369 (version "1.008003")
9370 (source
9371 (origin
9372 (method url-fetch)
9373 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
9374 "Type-Tiny-" version ".tar.gz"))
9375 (sha256
9376 (base32 "1x80rlnh7kl4xgm4qvyfbgahcyla4wbyh3b759nm21czn8x6wkm4"))))
9377 (build-system perl-build-system)
9378 (native-inputs
9379 `(("perl-test-warnings" ,perl-test-warnings)))
9380 (propagated-inputs
9381 `(("perl-devel-lexalias" ,perl-devel-lexalias)
9382 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
9383 ("perl-exporter-tiny" ,perl-exporter-tiny)
9384 ("perl-moo" ,perl-moo)
9385 ("perl-moose" ,perl-moose)
9386 ("perl-mouse" ,perl-mouse)
9387 ("perl-ref-util-xs" ,perl-ref-util-xs)
9388 ("perl-regexp-util" ,perl-regexp-util)
9389 ("perl-type-tie" ,perl-type-tie)))
9390 (home-page "https://metacpan.org/release/Type-Tiny")
9391 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
9392 (description "@code{Type::Tiny} is a small class for writing type
9393 constraints, inspired by Moose's type constraint API. It has only one
9394 non-core dependency (and even that is simply a module that was previously
9395 distributed as part of @code{Type::Tiny} but has since been spun off), and can
9396 be used with Moose, Mouse and Moo (or none of the above).")
9397 (license (package-license perl))))
9398
9399 (define-public perl-type-tiny-xs
9400 (package
9401 (name "perl-type-tiny-xs")
9402 (version "0.014")
9403 (source
9404 (origin
9405 (method url-fetch)
9406 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
9407 version ".tar.gz"))
9408 (sha256
9409 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
9410 (build-system perl-build-system)
9411 (home-page "https://metacpan.org/release/Type-Tiny-XS")
9412 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
9413 (description "This module is optionally used by @code{Type::Tiny} to
9414 provide faster, C-based implementations of some type constraints. This
9415 package has only core dependencies, and does not depend on @code{Type::Tiny},
9416 so other data validation frameworks might also consider using it.")
9417 (license perl-license)))
9418
9419 (define-public perl-types-path-tiny
9420 (package
9421 (name "perl-types-path-tiny")
9422 (version "0.006")
9423 (source
9424 (origin
9425 (method url-fetch)
9426 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9427 "Types-Path-Tiny-" version ".tar.gz"))
9428 (sha256
9429 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
9430 (build-system perl-build-system)
9431 (propagated-inputs
9432 `(("perl-file-pushd" ,perl-file-pushd)
9433 ("perl-path-tiny" ,perl-path-tiny)
9434 ("perl-type-tiny" ,perl-type-tiny)
9435 ("perl-exporter-tiny" ,perl-exporter-tiny)))
9436 (home-page "https://metacpan.org/release/Types-Path-Tiny")
9437 (synopsis "Types and coercions for Moose and Moo")
9438 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
9439 etc. It handles two important types of coercion: coercing objects with
9440 overloaded stringification, and coercing to absolute paths. It also can check
9441 to ensure that files or directories exist.")
9442 (license artistic2.0)))
9443
9444 (define-public perl-types-serialiser
9445 (package
9446 (name "perl-types-serialiser")
9447 (version "1.0")
9448 (source
9449 (origin
9450 (method url-fetch)
9451 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
9452 "Types-Serialiser-" version ".tar.gz"))
9453 (sha256
9454 (base32
9455 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
9456 (build-system perl-build-system)
9457 (propagated-inputs
9458 `(("perl-common-sense" ,perl-common-sense)))
9459 (home-page "https://metacpan.org/release/Types-Serialiser")
9460 (synopsis "Data types for common serialisation formats")
9461 (description "This module provides some extra datatypes that are used by
9462 common serialisation formats such as JSON or CBOR.")
9463 (license (package-license perl))))
9464
9465 (define-public perl-unicode-normalize
9466 (package
9467 (name "perl-unicode-normalize")
9468 (version "1.26")
9469 (source
9470 (origin
9471 (method url-fetch)
9472 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
9473 "Unicode-Normalize-" version ".tar.gz"))
9474 (sha256
9475 (base32
9476 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
9477 (build-system perl-build-system)
9478 (arguments
9479 '(#:phases (modify-phases %standard-phases
9480 (add-before 'configure 'set-search-path
9481 (lambda _
9482 ;; Work around "dotless @INC" build failure.
9483 (setenv "PERL5LIB"
9484 (string-append (getcwd) ":"
9485 (getenv "PERL5LIB")))
9486 #t)))))
9487 (home-page "https://metacpan.org/release/Unicode-Normalize")
9488 (synopsis "Unicode normalization forms")
9489 (description "This Perl module provides Unicode normalization forms.")
9490 (license (package-license perl))))
9491
9492 (define-public perl-unicode-collate
9493 (package
9494 (name "perl-unicode-collate")
9495 (version "1.27")
9496 (source
9497 (origin
9498 (method url-fetch)
9499 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
9500 "Unicode-Collate-" version ".tar.gz"))
9501 (sha256
9502 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
9503 (build-system perl-build-system)
9504 (arguments
9505 `(#:phases
9506 (modify-phases %standard-phases
9507 (add-before 'configure 'set-perl-search-path
9508 (lambda _
9509 ;; Work around "dotless @INC" build failure.
9510 (setenv "PERL5LIB"
9511 (string-append (getcwd) ":"
9512 (getenv "PERL5LIB")))
9513 #t)))))
9514 (propagated-inputs
9515 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
9516 (home-page "https://metacpan.org/release/Unicode-Collate")
9517 (synopsis "Unicode collation algorithm")
9518 (description "This package provides tools for sorting and comparing
9519 Unicode data.")
9520 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
9521 ;; license.
9522 (license (list (package-license perl) expat))))
9523
9524 (define-public perl-unicode-linebreak
9525 (package
9526 (name "perl-unicode-linebreak")
9527 (version "2019.001")
9528 (source (origin
9529 (method url-fetch)
9530 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
9531 "Unicode-LineBreak-" version ".tar.gz"))
9532 (sha256
9533 (base32
9534 "12iinva5gqc9g7qzxrvmh45n714z0ad9g7wq2dxwgp6drbj64rs8"))))
9535 (build-system perl-build-system)
9536 (propagated-inputs
9537 `(("perl-mime-charset" ,perl-mime-charset)))
9538 (home-page "https://metacpan.org/release/Unicode-LineBreak")
9539 (synopsis "Unicode line breaking algorithm")
9540 (description
9541 "@code{Unicode::LineBreak} implements the line breaking algorithm
9542 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
9543 defined by Annex #11 is used to determine breaking positions.")
9544 (license (package-license perl))))
9545
9546 (define-public perl-unicode-utf8
9547 (package
9548 (name "perl-unicode-utf8")
9549 (version "0.62")
9550 (source (origin
9551 (method url-fetch)
9552 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
9553 "Unicode-UTF8-" version ".tar.gz"))
9554 (sha256
9555 (base32
9556 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
9557 (build-system perl-build-system)
9558 ;; FIXME: Tests fail on 32-bit architectures:
9559 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
9560 (arguments `(#:tests? ,(target-64bit?)))
9561 (native-inputs
9562 `(("perl-test-fatal" ,perl-test-fatal)
9563 ("perl-test-leaktrace" ,perl-test-leaktrace)
9564 ("perl-variable-magic" ,perl-variable-magic)
9565 ("perl-test-pod" ,perl-test-pod)))
9566 (home-page "https://metacpan.org/release/Unicode-UTF8")
9567 (synopsis "Encoding and decoding of UTF-8 encoding form")
9568 (description
9569 "This module provides functions to encode and decode UTF-8 encoding form
9570 as specified by Unicode and ISO/IEC 10646:2011.")
9571 (license (package-license perl))))
9572
9573 (define-public perl-universal-can
9574 (package
9575 (name "perl-universal-can")
9576 (version "1.20140328")
9577 (source
9578 (origin
9579 (method url-fetch)
9580 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9581 "UNIVERSAL-can-" version ".tar.gz"))
9582 (sha256
9583 (base32
9584 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9585 (build-system perl-build-system)
9586 (home-page "https://metacpan.org/release/UNIVERSAL-can")
9587 (synopsis "UNIVERSAL::can() reimplementation")
9588 (description "This module attempts to work around people calling
9589 UNIVERSAL::can() as a function, which it is not.")
9590 (license (package-license perl))))
9591
9592 (define-public perl-universal-isa
9593 (package
9594 (name "perl-universal-isa")
9595 (version "1.20171012")
9596 (source
9597 (origin
9598 (method url-fetch)
9599 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9600 "UNIVERSAL-isa-" version ".tar.gz"))
9601 (sha256
9602 (base32
9603 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
9604 (build-system perl-build-system)
9605 (native-inputs
9606 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9607 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
9608 (synopsis "UNIVERSAL::isa() reimplementation")
9609 (description "This module attempts to recover from people calling
9610 UNIVERSAL::isa as a function.")
9611 (license (package-license perl))))
9612
9613 (define-public perl-universal-require
9614 (package
9615 (name "perl-universal-require")
9616 (version "0.18")
9617 (source
9618 (origin
9619 (method url-fetch)
9620 (uri (string-append
9621 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9622 version ".tar.gz"))
9623 (sha256
9624 (base32
9625 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9626 (build-system perl-build-system)
9627 (home-page "https://metacpan.org/release/UNIVERSAL-require")
9628 (synopsis "Require modules from a variable")
9629 (description "This module lets you require other modules where the module
9630 name is in a variable, something you can't do with the @code{require}
9631 built-in.")
9632 (license (package-license perl))))
9633
9634 (define-public perl-variable-magic
9635 (package
9636 (name "perl-variable-magic")
9637 (version "0.62")
9638 (source
9639 (origin
9640 (method url-fetch)
9641 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9642 "Variable-Magic-" version ".tar.gz"))
9643 (sha256
9644 (base32
9645 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9646 (build-system perl-build-system)
9647 (home-page "https://metacpan.org/release/Variable-Magic")
9648 (synopsis "Associate user-defined magic to variables from Perl")
9649 (description "Magic is Perl's way of enhancing variables. This mechanism
9650 lets the user add extra data to any variable and hook syntactical
9651 operations (such as access, assignment or destruction) that can be applied to
9652 it. With this module, you can add your own magic to any variable without
9653 having to write a single line of XS.")
9654 (license (package-license perl))))
9655
9656 (define-public perl-xml-writer
9657 (package
9658 (name "perl-xml-writer")
9659 (version "0.625")
9660 (source
9661 (origin
9662 (method url-fetch)
9663 (uri (string-append
9664 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9665 version
9666 ".tar.gz"))
9667 (sha256
9668 (base32
9669 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9670 (build-system perl-build-system)
9671 (home-page "https://metacpan.org/release/XML-Writer")
9672 (synopsis "Easily generate well-formed, namespace-aware XML")
9673 (description "@code{XML::Writer} is a simple Perl module for writing XML
9674 documents: it takes care of constructing markup and escaping data correctly.
9675 By default, it also performs a significant amount of well-formedness checking
9676 on the output to make certain (for example) that start and end tags match,
9677 that there is exactly one document element, and that there are not duplicate
9678 attribute names.")
9679 ;; Redistribution and use in source and compiled forms, with or without
9680 ;; modification, are permitted under any circumstances. No warranty.
9681 (license public-domain)))
9682
9683 (define-public perl-xs-object-magic
9684 (package
9685 (name "perl-xs-object-magic")
9686 (version "0.04")
9687 (source (origin
9688 (method url-fetch)
9689 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9690 "XS-Object-Magic-" version ".tar.gz"))
9691 (sha256
9692 (base32
9693 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9694 (build-system perl-build-system)
9695 (native-inputs
9696 `(("perl-extutils-depends" ,perl-extutils-depends)
9697 ("perl-module-install" ,perl-module-install)
9698 ("perl-test-fatal" ,perl-test-fatal)))
9699 (home-page "https://metacpan.org/release/XS-Object-Magic")
9700 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9701 (description
9702 "This way of associating structs with Perl space objects is designed to
9703 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9704 (structs can be associated with any data type) and opaque (the C pointer is
9705 neither visible nor modifiable from Perl space).")
9706 (license (package-license perl))))
9707
9708 (define-public perl-yaml
9709 (package
9710 (name "perl-yaml")
9711 (version "1.29")
9712 (source
9713 (origin
9714 (method url-fetch)
9715 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9716 "YAML-" version ".tar.gz"))
9717 (sha256
9718 (base32 "0gl5ssvrdajlbc85cy6z873n9cwlssk5q8z97a31vyiikhw5fp4w"))))
9719 (build-system perl-build-system)
9720 (native-inputs
9721 `(("perl-test-yaml" ,perl-test-yaml)))
9722 (home-page "https://metacpan.org/release/YAML")
9723 (synopsis "YAML for Perl")
9724 (description "The YAML.pm module implements a YAML Loader and Dumper based
9725 on the YAML 1.0 specification.")
9726 (license (package-license perl))))
9727
9728 (define-public perl-yaml-libyaml
9729 (package
9730 (name "perl-yaml-libyaml")
9731 (version "0.80")
9732 (source
9733 (origin
9734 (method url-fetch)
9735 (uri (string-append
9736 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9737 version ".tar.gz"))
9738 (sha256
9739 (base32 "1nhn4w52kpq757rxl052f61h36rdzsy416k740m3fy5ih7axhq4x"))))
9740 (build-system perl-build-system)
9741 (home-page "https://metacpan.org/release/YAML-LibYAML")
9742 (synopsis "Perl YAML Serialization using XS and libyaml")
9743 (description
9744 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9745 best YAML support to date.")
9746 (license perl-license)))
9747
9748 (define-public perl-yaml-tiny
9749 (package
9750 (name "perl-yaml-tiny")
9751 (version "1.73")
9752 (source
9753 (origin
9754 (method url-fetch)
9755 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9756 "YAML-Tiny-" version ".tar.gz"))
9757 (sha256
9758 (base32
9759 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
9760 (build-system perl-build-system)
9761 (native-inputs
9762 `(("perl-json-maybexs" ,perl-json-maybexs)
9763 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9764 (arguments
9765 `(#:tests? #f)) ;requires Test::More >= 0.99
9766 (home-page "https://metacpan.org/release/YAML-Tiny")
9767 (synopsis "Read/Write YAML files")
9768 (description "YAML::Tiny is a perl class for reading and writing
9769 YAML-style files, written with as little code as possible, reducing load time
9770 and memory overhead.")
9771 (license (package-license perl))))
9772
9773 (define-public perl-parse-recdescent
9774 (package
9775 (name "perl-parse-recdescent")
9776 (version "1.967015")
9777 (source
9778 (origin
9779 (method url-fetch)
9780 (uri (string-append
9781 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9782 version
9783 ".tar.gz"))
9784 (sha256
9785 (base32
9786 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9787 (build-system perl-build-system)
9788 (native-inputs
9789 `(("perl-module-build" ,perl-module-build)))
9790 (home-page
9791 "https://metacpan.org/release/Parse-RecDescent")
9792 (synopsis "Generate recursive-descent parsers")
9793 (description
9794 "@code{Parse::RecDescent} can incrementally generate top-down
9795 recursive-descent text parsers from simple yacc-like grammar specifications.")
9796 (license perl-license)))
9797
9798 (define-public perl-parse-yapp
9799 (package
9800 (name "perl-parse-yapp")
9801 (version "1.21")
9802 (source
9803 (origin
9804 (method url-fetch)
9805 (uri (string-append
9806 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9807 version
9808 ".tar.gz"))
9809 (sha256
9810 (base32
9811 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9812 (build-system perl-build-system)
9813 (home-page "https://metacpan.org/release/Parse-Yapp")
9814 (synopsis "Generate and use LALR parsers")
9815 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9816 grammars to generate Perl object oriented parser modules.")
9817 (license (package-license perl))))
9818
9819 \f
9820 ;;; Some packaged modules need versions of core modules that are newer than
9821 ;;; those in our perl 5.16.1.
9822
9823 (define-public perl-cpan-meta
9824 (package
9825 (name "perl-cpan-meta")
9826 (version "2.150010")
9827 (source
9828 (origin
9829 (method url-fetch)
9830 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9831 "CPAN-Meta-" version ".tar.gz"))
9832 (sha256
9833 (base32
9834 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9835 (build-system perl-build-system)
9836 (propagated-inputs
9837 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9838 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9839 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9840 (home-page "https://metacpan.org/release/CPAN-Meta")
9841 (synopsis "Distribution metadata for a CPAN dist")
9842 (description "Software distributions released to the CPAN include a
9843 META.json or, for older distributions, META.yml, which describes the
9844 distribution, its contents, and the requirements for building and installing
9845 the distribution. The data structure stored in the META.json file is
9846 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9847 represent this distribution metadata (or distmeta), along with some helpful
9848 methods for interrogating that data.")
9849 (license (package-license perl))))
9850
9851 (define-public perl-cpan-meta-requirements
9852 (package
9853 (name "perl-cpan-meta-requirements")
9854 (version "2.140")
9855 (source
9856 (origin
9857 (method url-fetch)
9858 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9859 "CPAN-Meta-Requirements-" version ".tar.gz"))
9860 (sha256
9861 (base32
9862 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9863 (build-system perl-build-system)
9864 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
9865 (synopsis "Set of version requirements for a CPAN dist")
9866 (description "A CPAN::Meta::Requirements object models a set of version
9867 constraints like those specified in the META.yml or META.json files in CPAN
9868 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9869 adding more and more constraints, and will reduce them to the simplest
9870 representation.")
9871 (license (package-license perl))))
9872
9873 (define-public perl-cpan-meta-yaml
9874 (package
9875 (name "perl-cpan-meta-yaml")
9876 (version "0.018")
9877 (source
9878 (origin
9879 (method url-fetch)
9880 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9881 "CPAN-Meta-YAML-" version ".tar.gz"))
9882 (sha256
9883 (base32
9884 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9885 (build-system perl-build-system)
9886 (arguments
9887 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9888 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
9889 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9890 (description "This module implements a subset of the YAML specification
9891 for use in reading and writing CPAN metadata files like META.yml and
9892 MYMETA.yml.")
9893 (license (package-license perl))))
9894
9895 (define-public perl-module-build
9896 (package
9897 (name "perl-module-build")
9898 (version "0.4229")
9899 (source
9900 (origin
9901 (method url-fetch)
9902 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9903 "Module-Build-" version ".tar.gz"))
9904 (sha256
9905 (base32
9906 "064c03wxia7jz0i578awj4srykj0nnigm4p5r0dv0559rnk93r0z"))))
9907 (build-system perl-build-system)
9908 (propagated-inputs
9909 `(("perl-cpan-meta" ,perl-cpan-meta)))
9910 (home-page "https://metacpan.org/release/Module-Build")
9911 (synopsis "Build and install Perl modules")
9912 (description "@code{Module::Build} is a system for building, testing, and
9913 installing Perl modules; it used to be part of Perl itself until version 5.22,
9914 which dropped it. It is meant to be an alternative to
9915 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9916 through subclassing in a much more straightforward way than with
9917 @code{MakeMaker}. It also does not require a @command{make} on your
9918 system---most of the @code{Module::Build} code is pure-Perl.")
9919 (license (package-license perl))))
9920
9921 (define-public perl-parse-cpan-meta
9922 (package
9923 (name "perl-parse-cpan-meta")
9924 (version "2.150010")
9925 (source
9926 (origin
9927 (method url-fetch)
9928 ;; This module is now known as CPAN::Meta on CPAN.
9929 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9930 "CPAN-Meta-" version ".tar.gz"))
9931 (sha256
9932 (base32
9933 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9934 (build-system perl-build-system)
9935 (propagated-inputs
9936 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9937 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
9938 (synopsis "Parse META.yml and META.json CPAN metadata files")
9939 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9940 files, using JSON::PP and/or CPAN::Meta::YAML.")
9941 (license (package-license perl))))
9942
9943 (define-public perl-scalar-list-utils
9944 (package
9945 (name "perl-scalar-list-utils")
9946 (version "1.53")
9947 (source
9948 (origin
9949 (method url-fetch)
9950 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9951 "Scalar-List-Utils-" version ".tar.gz"))
9952 (sha256
9953 (base32 "16dfpnrcf5846j998rdd6gra16m9030rnz9fpsh1hfzvcsq8ch5x"))))
9954 (build-system perl-build-system)
9955 (home-page "https://metacpan.org/release/Scalar-List-Utils")
9956 (synopsis "Common Scalar and List utility subroutines")
9957 (description "This package contains a selection of subroutines that people
9958 have expressed would be nice to have in the perl core, but the usage would not
9959 really be high enough to warrant the use of a keyword, and the size so small
9960 such that being individual extensions would be wasteful.")
9961 (license (package-license perl))))
9962
9963 (define-public perl-shell-command
9964 (package
9965 (name "perl-shell-command")
9966 (version "0.06")
9967 (source
9968 (origin
9969 (method url-fetch)
9970 (uri (string-append
9971 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9972 version
9973 ".tar.gz"))
9974 (sha256
9975 (base32
9976 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9977 (build-system perl-build-system)
9978 (home-page
9979 "https://metacpan.org/release/Shell-Command")
9980 (synopsis
9981 "Cross-platform functions emulating common shell commands")
9982 (description
9983 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9984 (license (package-license perl))))
9985
9986 ;;; END: Core module overrides
9987
9988 (define-public perl-file-find-object
9989 (package
9990 (name "perl-file-find-object")
9991 (version "v0.2.13")
9992 (source
9993 (origin
9994 (method url-fetch)
9995 (uri (string-append
9996 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9997 version
9998 ".tar.gz"))
9999 (sha256
10000 (base32
10001 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
10002 (build-system perl-build-system)
10003 (native-inputs
10004 `(("perl-module-build" ,perl-module-build)))
10005 (inputs
10006 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
10007 (home-page
10008 "https://metacpan.org/release/File-Find-Object")
10009 (synopsis
10010 "Object-oriented File::Find replacement in Perl")
10011 (description "File::Find::Object is an object-oriented
10012 File::Find replacement in Perl.")
10013 (license artistic2.0)))
10014
10015 (define-public perl-file-find-object-rule
10016 (package
10017 (name "perl-file-find-object-rule")
10018 (version "0.0311")
10019 (source
10020 (origin
10021 (method url-fetch)
10022 (uri (string-append
10023 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
10024 version
10025 ".tar.gz"))
10026 (sha256
10027 (base32 "0gjzfd5fz7mhr5abafxr7qic7nwhk7y9iv17as6l880973j952h3"))))
10028 (build-system perl-build-system)
10029 (native-inputs
10030 `(("perl-module-build" ,perl-module-build)))
10031 (inputs
10032 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
10033 ("perl-file-find-object" ,perl-file-find-object)
10034 ("perl-number-compare" ,perl-number-compare)
10035 ("perl-text-glob" ,perl-text-glob)))
10036 (home-page
10037 "https://metacpan.org/release/File-Find-Object-Rule")
10038 (synopsis
10039 "Alternative interface to File::Find::Object")
10040 (description "File::Find::Object::Rule is an alternative Perl
10041 interface to File::Find::Object.")
10042 (license (package-license perl))))
10043
10044 (define-public perl-file-finder
10045 (package
10046 (name "perl-file-finder")
10047 (version "0.53")
10048 (source
10049 (origin
10050 (method url-fetch)
10051 (uri (string-append
10052 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
10053 version ".tar.gz"))
10054 (sha256
10055 (base32
10056 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
10057 (build-system perl-build-system)
10058 (propagated-inputs
10059 `(("perl-text-glob" ,perl-text-glob)))
10060 (home-page "https://metacpan.org/release/File-Finder")
10061 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
10062 (description
10063 "@code{File::Find} is great, but constructing the wanted routine can
10064 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
10065 syntax that is directly mappable to the @code{find(1)} command's syntax.
10066
10067 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
10068 a series of steps that mimic find's predicates. Initially, a
10069 @code{File::Finder} object has no steps. Each step method clones the previous
10070 object's options and steps, and then adds the new step, returning the new
10071 object. In this manner, an object can be grown, step by step, by chaining
10072 method calls. Furthermore, a partial sequence can be created and held, and
10073 used as the head of many different sequences.")
10074 (license perl-license)))
10075
10076 (define-public perl-font-ttf
10077 (package
10078 (name "perl-font-ttf")
10079 (version "1.06")
10080 (source (origin
10081 (method url-fetch)
10082 (uri (string-append
10083 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
10084 version ".tar.gz"))
10085 (sha256
10086 (base32
10087 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
10088 (build-system perl-build-system)
10089 (propagated-inputs
10090 `(("perl-io-string" ,perl-io-string)))
10091 (home-page "https://metacpan.org/release/Font-TTF")
10092 (synopsis "TTF font support for Perl")
10093 (description "This package provides a Perl module for TrueType/OpenType
10094 font hacking. It supports reading, processing and writing of the following
10095 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
10096 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
10097 prop, vhea, vmtx and the reading and writing of all other table types.")
10098 (license artistic2.0)))
10099
10100 (define-public perl-libtime-parsedate
10101 (package
10102 (name "perl-libtime-parsedate")
10103 (version "2015.103")
10104 (source
10105 (origin
10106 (method url-fetch)
10107 (uri (string-append
10108 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
10109 version ".tar.gz"))
10110 (sha256
10111 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
10112 (build-system perl-build-system)
10113 (arguments
10114 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
10115 ;; doesn't support it yet.
10116 ;;
10117 ;; #:disallowed-references (,tzdata-for-tests)
10118
10119 #:phases
10120 (modify-phases %standard-phases
10121 ;; This is needed for tests
10122 (add-after 'unpack 'set-TZDIR
10123 (lambda* (#:key inputs #:allow-other-keys)
10124 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
10125 "/share/zoneinfo"))
10126 #t)))))
10127 (native-inputs
10128 `(("perl-module-build" ,perl-module-build)
10129 ("tzdata" ,tzdata-for-tests)))
10130 (home-page "https://metacpan.org/release/Time-ParseDate")
10131 (synopsis "Collection of Perl modules for time/date manipulation")
10132 (description "Provides several perl modules for date/time manipulation:
10133 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
10134 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
10135 ;; License text:
10136 ;; "License hereby granted for anyone to use, modify or redistribute this
10137 ;; module at their own risk. Please feed useful changes back to
10138 ;; cpan@dave.sharnoff.org."
10139 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
10140 changelogs/main/libt/libtime-parsedate-perl/\
10141 libtime-parsedate-perl_2015.103-2_copyright"))))
10142
10143 (define-public perl-libtime-period
10144 (package
10145 (name "perl-libtime-period")
10146 (version "1.20")
10147 (source
10148 (origin
10149 (method url-fetch)
10150 (uri (string-append
10151 "http://http.debian.net/debian/pool/main/libt/"
10152 "libtime-period-perl/libtime-period-perl_"
10153 version ".orig.tar.gz"))
10154 (sha256
10155 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
10156 (build-system perl-build-system)
10157 (native-inputs
10158 `(("perl-module-build" ,perl-module-build)))
10159 ;; Unless some other homepage is out there...
10160 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
10161 (synopsis "Perl library for testing if a time() is in a specific period")
10162 (description "This Perl library provides a function which tells whether a
10163 specific time falls within a specified time period. Its syntax for specifying
10164 time periods allows you to test for conditions like \"Monday to Friday, 9am
10165 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
10166 4:15pm\" and \"in the first half of each minute\" and \"in January of
10167 1998\".")
10168 (license perl-license)))
10169
10170 (define-public perl-path-iterator-rule
10171 (package
10172 (name "perl-path-iterator-rule")
10173 (version "1.014")
10174 (source
10175 (origin
10176 (method url-fetch)
10177 (uri (string-append
10178 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
10179 version ".tar.gz"))
10180 (sha256
10181 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
10182 (build-system perl-build-system)
10183 (native-inputs
10184 `(("perl-file-pushd" ,perl-file-pushd)
10185 ("perl-path-tiny" ,perl-path-tiny)
10186 ("perl-test-deep" ,perl-test-deep)
10187 ("perl-test-filename" ,perl-test-filename)))
10188 (propagated-inputs
10189 `(("perl-number-compare" ,perl-number-compare)
10190 ("perl-text-glob" ,perl-text-glob)
10191 ("perl-try-tiny" ,perl-try-tiny)))
10192 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
10193 (synopsis "Iterative, recursive file finder")
10194 (description "Path::Iterator::Rule iterates over files and directories to
10195 identify ones matching a user-defined set of rules. The API is based heavily
10196 on File::Find::Rule, but with more explicit distinction between matching rules
10197 and options that influence how directories are searched. A
10198 Path::Iterator::Rule object is a collection of rules (match criteria) with
10199 methods to add additional criteria. Options that control directory traversal
10200 are given as arguments to the method that generates an iterator.
10201
10202 A summary of features for comparison to other file finding modules:
10203
10204 @itemize
10205 @item provides many helper methods for specifying rules
10206 @item offers (lazy) iterator and flattened list interfaces
10207 @item custom rules implemented with callbacks
10208 @item breadth-first (default) or pre- or post-order depth-first searching
10209 @item follows symlinks (by default, but can be disabled)
10210 @item directories visited only once (no infinite loop; can be disabled)
10211 @item doesn't chdir during operation
10212 @item provides an API for extensions
10213 @end itemize
10214
10215 As a convenience, the PIR module is an empty subclass of this one that is less
10216 arduous to type for one-liners.")
10217 (license asl2.0)))
10218
10219 (define-public perl-pod-constants
10220 (package
10221 (name "perl-pod-constants")
10222 (version "0.19")
10223 (source
10224 (origin
10225 (method url-fetch)
10226 (uri (string-append
10227 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
10228 version ".tar.gz"))
10229 (sha256
10230 (base32
10231 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
10232 (build-system perl-build-system)
10233 (home-page "https://metacpan.org/release/Pod-Constants")
10234 (synopsis "Include constants from POD")
10235 (description "This module allows you to specify those constants that
10236 should be documented in your POD, and pull them out a run time in a fairly
10237 arbitrary fashion.
10238
10239 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
10240 to open the source file it is called from, and does so directly either by
10241 lookup in %INC or by assuming it is $0 if the caller is @code{main}
10242 (or it can't find %INC{caller()}).")
10243 (license artistic2.0)))
10244
10245 (define-public perl-regexp-pattern
10246 (package
10247 (name "perl-regexp-pattern")
10248 (version "0.2.8")
10249 (source
10250 (origin
10251 (method url-fetch)
10252 (uri (string-append
10253 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
10254 version ".tar.gz"))
10255 (sha256
10256 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
10257 (build-system perl-build-system)
10258 (native-inputs
10259 `(("perl-test-exception" ,perl-test-exception)))
10260 (home-page "https://metacpan.org/release/Regexp-Pattern")
10261 (synopsis "Collection of regexp patterns")
10262 (description "Regexp::Pattern is a convention for organizing reusable
10263 regexp patterns in modules.")
10264 (license (package-license perl))))
10265
10266 (define-public perl-data-sexpression
10267 (package
10268 (name "perl-data-sexpression")
10269 (version "0.41")
10270 (source
10271 (origin
10272 (method url-fetch)
10273 (uri (string-append
10274 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
10275 version ".tar.gz"))
10276 (sha256
10277 (base32
10278 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
10279 (build-system perl-build-system)
10280 (native-inputs
10281 `(("perl-module-install" ,perl-module-install)
10282 ("perl-test-deep" ,perl-test-deep)))
10283 (propagated-inputs
10284 `(("perl-class-accessor" ,perl-class-accessor)))
10285 (home-page "https://metacpan.org/release/Data-SExpression")
10286 (synopsis "Parse Lisp S-Expressions into Perl data structures")
10287 (description "Data::SExpression parses Lisp S-Expressions into Perl data
10288 structures.")
10289 (license perl-license)))