gnu: perl-moose: Update to 2.2011.
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 ng0 <ng0@n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016, 2018 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
16 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
20 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
21 ;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
23 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
24 ;;;
25 ;;; This file is part of GNU Guix.
26 ;;;
27 ;;; GNU Guix is free software; you can redistribute it and/or modify it
28 ;;; under the terms of the GNU General Public License as published by
29 ;;; the Free Software Foundation; either version 3 of the License, or (at
30 ;;; your option) any later version.
31 ;;;
32 ;;; GNU Guix is distributed in the hope that it will be useful, but
33 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
34 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
35 ;;; GNU General Public License for more details.
36 ;;;
37 ;;; You should have received a copy of the GNU General Public License
38 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
39
40 (define-module (gnu packages perl)
41 #:use-module (srfi srfi-1)
42 #:use-module (guix licenses)
43 #:use-module (gnu packages)
44 #:use-module (guix packages)
45 #:use-module (guix download)
46 #:use-module (guix utils)
47 #:use-module (guix build-system gnu)
48 #:use-module (guix build-system perl)
49 #:use-module (gnu packages base)
50 #:use-module (gnu packages compression)
51 #:use-module (gnu packages freedesktop)
52 #:use-module (gnu packages perl-check)
53 #:use-module (gnu packages perl-compression)
54 #:use-module (gnu packages perl-web)
55 #:use-module (gnu packages pkg-config)
56 #:use-module (gnu packages textutils))
57
58 ;;;
59 ;;; Please: Try to add new module packages in alphabetic order.
60 ;;;
61
62 \f
63 (define-public perl
64 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
65 (package
66 (name "perl")
67 (version "5.28.0")
68 (source (origin
69 (method url-fetch)
70 (uri (string-append "mirror://cpan/src/5.0/perl-"
71 version ".tar.gz"))
72 (sha256
73 (base32
74 "1a3f822lcl8dr8v0hk80yyhpzqlljg49z9flb48rs3nbsij9z4ky"))
75 (patches (search-patches
76 "perl-no-sys-dirs.patch"
77 "perl-autosplit-default-time.patch"
78 "perl-deterministic-ordering.patch"
79 "perl-reproducible-build-date.patch"))))
80 (build-system gnu-build-system)
81 (arguments
82 '(#:tests? #f
83 #:configure-flags
84 (let ((out (assoc-ref %outputs "out"))
85 (libc (assoc-ref %build-inputs "libc")))
86 (list
87 (string-append "-Dprefix=" out)
88 (string-append "-Dman1dir=" out "/share/man/man1")
89 (string-append "-Dman3dir=" out "/share/man/man3")
90 "-de" "-Dcc=gcc"
91 "-Uinstallusrbinperl"
92 "-Dinstallstyle=lib/perl5"
93 "-Duseshrplib"
94 (string-append "-Dlocincpth=" libc "/include")
95 (string-append "-Dloclibpth=" libc "/lib")
96 "-Dusethreads"))
97 #:phases
98 (modify-phases %standard-phases
99 (add-before 'configure 'setup-configure
100 (lambda _
101 ;; Use the right path for `pwd'.
102 (substitute* "dist/PathTools/Cwd.pm"
103 (("/bin/pwd")
104 (which "pwd")))
105
106 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
107 ;; <bits/string3.h>.
108 (substitute* "cflags.SH"
109 (("-std=c89")
110 "-std=gnu89"))
111 #t))
112 (replace 'configure
113 (lambda* (#:key configure-flags #:allow-other-keys)
114 (format #t "Perl configure flags: ~s~%" configure-flags)
115 (apply invoke "./Configure" configure-flags)))
116 (add-before
117 'strip 'make-shared-objects-writable
118 (lambda* (#:key outputs #:allow-other-keys)
119 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
120 ;; writable so that 'strip' actually strips them.
121 (let* ((out (assoc-ref outputs "out"))
122 (lib (string-append out "/lib")))
123 (for-each (lambda (dso)
124 (chmod dso #o755))
125 (find-files lib "\\.so$"))
126 #t)))
127
128 (add-after 'install 'remove-extra-references
129 (lambda* (#:key inputs outputs #:allow-other-keys)
130 (let* ((out (assoc-ref outputs "out"))
131 (libc (assoc-ref inputs "libc"))
132 (config1 (car (find-files (string-append out "/lib/perl5")
133 "^Config_heavy\\.pl$")))
134 (config2 (find-files (string-append out "/lib/perl5")
135 "^Config\\.pm$")))
136 ;; Force the library search path to contain only libc because
137 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
138 ;; want to keep a reference to everything that's in
139 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
140 ;; etc.)
141 (substitute* config1
142 (("^incpth=.*$")
143 (string-append "incpth='" libc "/include'\n"))
144 (("^(libpth|plibpth|libspath)=.*$" _ variable)
145 (string-append variable "='" libc "/lib'\n")))
146
147 (for-each (lambda (file)
148 (substitute* config2
149 (("libpth => .*$")
150 (string-append "libpth => '" libc
151 "/lib',\n"))))
152 config2)
153 #t))))))
154 (native-search-paths (list (search-path-specification
155 (variable "PERL5LIB")
156 (files '("lib/perl5/site_perl")))))
157 (synopsis "Implementation of the Perl programming language")
158 (description
159 "Perl is a general-purpose programming language originally developed for
160 text manipulation and now used for a wide range of tasks including system
161 administration, web development, network programming, GUI development, and
162 more.")
163 (home-page "http://www.perl.org/")
164 (license gpl1+))) ; or "Artistic"
165
166 (define-public perl-algorithm-c3
167 (package
168 (name "perl-algorithm-c3")
169 (version "0.10")
170 (source
171 (origin
172 (method url-fetch)
173 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
174 "Algorithm-C3-" version ".tar.gz"))
175 (sha256
176 (base32
177 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
178 (build-system perl-build-system)
179 (home-page "https://metacpan.org/release/Algorithm-C3")
180 (synopsis "Module for merging hierarchies using the C3 algorithm")
181 (description "This module implements the C3 algorithm, which aims to
182 provide a sane method resolution order under multiple inheritance.")
183 (license (package-license perl))))
184
185 (define-public perl-algorithm-diff
186 (package
187 (name "perl-algorithm-diff")
188 (version "1.1903")
189 (source
190 (origin
191 (method url-fetch)
192 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
193 "Algorithm-Diff-" version ".tar.gz"))
194 (sha256
195 (base32
196 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
197 (build-system perl-build-system)
198 (home-page "https://metacpan.org/release/Algorithm-Diff")
199 (synopsis "Compute differences between two files or lists")
200 (description "This is a module for computing the difference between two
201 files, two strings, or any other two lists of things. It uses an intelligent
202 algorithm similar to (or identical to) the one used by the Unix \"diff\"
203 program. It is guaranteed to find the *smallest possible* set of
204 differences.")
205 (license (package-license perl))))
206
207 (define-public perl-aliased
208 (package
209 (name "perl-aliased")
210 (version "0.34")
211 (source
212 (origin
213 (method url-fetch)
214 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
215 "aliased-" version ".tar.gz"))
216 (sha256
217 (base32
218 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
219 (build-system perl-build-system)
220 (native-inputs `(("perl-module-build" ,perl-module-build)))
221 (home-page "https://metacpan.org/release/aliased")
222 (synopsis "Use shorter versions of class names")
223 (description "The alias module loads the class you specify and exports
224 into your namespace a subroutine that returns the class name. You can
225 explicitly alias the class to another name or, if you prefer, you can do so
226 implicitly.")
227 (license (package-license perl))))
228
229 (define-public perl-any-moose
230 (package
231 (name "perl-any-moose")
232 (version "0.27")
233 (source (origin
234 (method url-fetch)
235 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
236 "Any-Moose-" version ".tar.gz"))
237 (sha256
238 (base32
239 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
240 (build-system perl-build-system)
241 (native-inputs
242 `(("perl-mouse" ,perl-mouse)
243 ("perl-moose" ,perl-moose)))
244 (home-page "https://metacpan.org/release/Any-Moose")
245 (synopsis "Transparently use Moose or Mouse modules")
246 (description
247 "This module facilitates using @code{Moose} or @code{Mouse} modules
248 without changing the code. By default, Mouse will be provided to libraries,
249 unless Moose is already loaded, or explicitly requested by the end-user. End
250 users can force the decision of which backend to use by setting the environment
251 variable ANY_MOOSE to be Moose or Mouse.")
252 (license (package-license perl))))
253
254 (define-public perl-appconfig
255 (package
256 (name "perl-appconfig")
257 (version "1.71")
258 (source
259 (origin
260 (method url-fetch)
261 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
262 "AppConfig-" version ".tar.gz"))
263 (sha256
264 (base32
265 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
266 (build-system perl-build-system)
267 (native-inputs
268 `(("perl-test-pod" ,perl-test-pod)))
269 (home-page "https://metacpan.org/release/AppConfig")
270 (synopsis "Configuration files and command line parsing")
271 (description "AppConfig is a bundle of Perl5 modules for reading
272 configuration files and parsing command line arguments.")
273 (license (package-license perl))))
274
275 (define-public perl-array-utils
276 (package
277 (name "perl-array-utils")
278 (version "0.5")
279 (source
280 (origin
281 (method url-fetch)
282 (uri (string-append
283 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
284 version
285 ".tar.gz"))
286 (sha256
287 (base32
288 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
289 (build-system perl-build-system)
290 (home-page "https://metacpan.org/release/Array-Utils")
291 (synopsis "Small utils for array manipulation")
292 (description "@code{Array::Utils} is a small pure-perl module containing
293 list manipulation routines.")
294 (license (package-license perl))))
295
296 (define-public perl-async-interrupt
297 (package
298 (name "perl-async-interrupt")
299 (version "1.24")
300 (source (origin
301 (method url-fetch)
302 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
303 "Async-Interrupt-" version ".tar.gz"))
304 (sha256
305 (base32
306 "1lx4am3cqb9vvng9fhlwgfd7mk3afbrg8rps6xgpas6ij67dw8m0"))))
307 (build-system perl-build-system)
308 (native-inputs
309 `(("perl-canary-stability" ,perl-canary-stability)))
310 (propagated-inputs
311 `(("perl-common-sense" ,perl-common-sense)))
312 (home-page "https://metacpan.org/release/Async-Interrupt")
313 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
314 (description
315 "@code{Async::Interrupt} implements a single feature only of interest
316 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
317 signals\", which are very similar).
318
319 Sometimes, modules wish to run code asynchronously (in another thread,
320 or from a signal handler), and then signal the perl interpreter on
321 certain events. One common way is to write some data to a pipe and use
322 an event handling toolkit to watch for I/O events. Another way is to
323 send a signal. Those methods are slow, and in the case of a pipe, also
324 not asynchronous - it won't interrupt a running perl interpreter.
325
326 This module implements asynchronous notifications that enable you to
327 signal running perl code from another thread, asynchronously, and
328 sometimes even without using a single syscall.")
329 (license (package-license perl))))
330
331 (define-public perl-autovivification
332 (package
333 (name "perl-autovivification")
334 (version "0.18")
335 (source
336 (origin
337 (method url-fetch)
338 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
339 "autovivification-" version ".tar.gz"))
340 (sha256
341 (base32
342 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
343 (build-system perl-build-system)
344 (home-page "https://metacpan.org/release/autovivification")
345 (synopsis "Lexically disable autovivification")
346 (description "When an undefined variable is dereferenced, it gets silently
347 upgraded to an array or hash reference (depending of the type of the
348 dereferencing). This behaviour is called autovivification and usually does
349 what you mean but it may be unnatural or surprising because your variables get
350 populated behind your back. This is especially true when several levels of
351 dereferencing are involved, in which case all levels are vivified up to the
352 last, or when it happens in intuitively read-only constructs like
353 @code{exists}. The pragma provided by this package lets you disable
354 autovivification for some constructs and optionally throws a warning or an
355 error when it would have happened.")
356 (license (package-license perl))))
357
358 (define-public perl-bareword-filehandles
359 (package
360 (name "perl-bareword-filehandles")
361 (version "0.006")
362 (source
363 (origin
364 (method url-fetch)
365 (uri (string-append
366 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
367 version ".tar.gz"))
368 (sha256
369 (base32
370 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
371 (build-system perl-build-system)
372 (native-inputs
373 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
374 ("perl-extutils-depends" ,perl-extutils-depends)))
375 (propagated-inputs
376 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
377 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
378 (home-page "https://metacpan.org/release/bareword-filehandles")
379 (synopsis "Disables bareword filehandles")
380 (description "This module disables bareword filehandles.")
381 (license (package-license perl))))
382
383 (define-public perl-base
384 (package
385 (name "perl-base")
386 (version "2.23")
387 (source
388 (origin
389 (method url-fetch)
390 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
391 "base-" version ".tar.gz"))
392 (sha256
393 (base32 "1pjxcbbcpwlgzm0fzsbqd58zn8cj9vwril1wn3xfd7ws550mixa0"))))
394 (build-system perl-build-system)
395 (home-page "https://metacpan.org/release/base")
396 (synopsis "Establish an ISA relationship with base classes at compile time")
397 (description "Allows you to both load one or more modules, while setting
398 up inheritance from those modules at the same time. Unless you are using the
399 fields pragma, consider this module discouraged in favor of the lighter-weight
400 parent.")
401 (license (package-license perl)))) ;See README
402
403 (define-public perl-browser-open
404 (package
405 (name "perl-browser-open")
406 (version "0.04")
407 (source
408 (origin
409 (method url-fetch)
410 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
411 version ".tar.gz"))
412 (sha256
413 (base32
414 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
415 (build-system perl-build-system)
416 (home-page "https://metacpan.org/release/Browser-Open")
417 (synopsis "Open a browser in a given URL")
418 (description "The functions exported by this module allow you to open URLs
419 in the user's browser. A set of known commands per OS-name is tested for
420 presence, and the first one found is executed. With an optional parameter,
421 all known commands are checked.")
422 (license (package-license perl))))
423
424 (define-public perl-b-hooks-endofscope
425 (package
426 (name "perl-b-hooks-endofscope")
427 (version "0.24")
428 (source
429 (origin
430 (method url-fetch)
431 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
432 "B-Hooks-EndOfScope-" version ".tar.gz"))
433 (sha256
434 (base32
435 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
436 (build-system perl-build-system)
437 (propagated-inputs
438 `(("perl-module-runtime" ,perl-module-runtime)
439 ("perl-module-implementation" ,perl-module-implementation)
440 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
441 ("perl-variable-magic" ,perl-variable-magic)))
442 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
443 (synopsis "Execute code after a scope finished compilation")
444 (description "This module allows you to execute code when perl finished
445 compiling the surrounding scope.")
446 (license (package-license perl))))
447
448 (define-public perl-b-hooks-op-check
449 (package
450 (name "perl-b-hooks-op-check")
451 (version "0.22")
452 (source
453 (origin
454 (method url-fetch)
455 (uri (string-append
456 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
457 version ".tar.gz"))
458 (sha256
459 (base32
460 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
461 (build-system perl-build-system)
462 (native-inputs
463 `(("perl-extutils-depends" ,perl-extutils-depends)))
464 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
465 (synopsis "Wrap OP check callbacks")
466 (description "This module allows you to wrap OP check callbacks.")
467 (license (package-license perl))))
468
469 (define-public perl-b-keywords
470 (package
471 (name "perl-b-keywords")
472 (version "1.20")
473 (source
474 (origin
475 (method url-fetch)
476 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
477 version ".tar.gz"))
478 (sha256
479 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
480 (build-system perl-build-system)
481 (home-page "https://metacpan.org/release/B-Keywords")
482 (synopsis "Lists of reserved barewords and symbol names")
483 (description "@code{B::Keywords} supplies several arrays of exportable
484 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
485 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
486 @@ExporterSymbols}.")
487 ;; GPLv2 only
488 (license gpl2)))
489
490 (define-public perl-benchmark-timer
491 (package
492 (name "perl-benchmark-timer")
493 (version "0.7102")
494 (source (origin
495 (method url-fetch)
496 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
497 "Benchmark-Timer-" version ".tar.gz"))
498 (sha256
499 (base32
500 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
501 (build-system perl-build-system)
502 (native-inputs
503 `(("perl-module-install" ,perl-module-install)))
504 ;; The optional input module Statistics::PointEstimation (from
505 ;; Statistics-TTest) lists no license.
506 (synopsis "Benchmarking with statistical confidence")
507 (description
508 "The Benchmark::Timer class allows you to time portions of code
509 conveniently, as well as benchmark code by allowing timings of repeated
510 trials. It is perfect for when you need more precise information about the
511 running time of portions of your code than the Benchmark module will give you,
512 but don't want to go all out and profile your code.")
513 (home-page "https://metacpan.org/release/Benchmark-Timer")
514 (license gpl2)))
515
516 (define-public perl-bit-vector
517 (package
518 (name "perl-bit-vector")
519 (version "7.4")
520 (source
521 (origin
522 (method url-fetch)
523 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
524 "Bit-Vector-" version ".tar.gz"))
525 (sha256
526 (base32
527 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
528 (build-system perl-build-system)
529 (propagated-inputs
530 `(("perl-carp-clan" ,perl-carp-clan)))
531 (home-page "https://metacpan.org/release/Bit-Vector")
532 (synopsis "Bit vector library")
533 (description "Bit::Vector is an efficient C library which allows you to
534 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
535 matrices, all of arbitrary sizes. The package also includes an
536 object-oriented Perl module for accessing the C library from Perl, and
537 optionally features overloaded operators for maximum ease of use. The C
538 library can nevertheless be used stand-alone, without Perl.")
539 (license (list (package-license perl) lgpl2.0+))))
540
541 (define-public perl-boolean
542 (package
543 (name "perl-boolean")
544 (version "0.46")
545 (source
546 (origin
547 (method url-fetch)
548 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
549 "boolean-" version ".tar.gz"))
550 (sha256
551 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
552 (build-system perl-build-system)
553 (home-page "https://metacpan.org/release/boolean")
554 (synopsis "Boolean support for Perl")
555 (description "This module provides basic Boolean support, by defining two
556 special objects: true and false.")
557 (license (package-license perl))))
558
559 (define-public perl-business-isbn-data
560 (package
561 (name "perl-business-isbn-data")
562 (version "20140910.003")
563 (source
564 (origin
565 (method url-fetch)
566 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
567 "Business-ISBN-Data-" version ".tar.gz"))
568 (sha256
569 (base32
570 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
571 (build-system perl-build-system)
572 (home-page "https://metacpan.org/release/Business-ISBN-Data")
573 (synopsis "Data files for Business::ISBN")
574 (description "This package provides a data pack for @code{Business::ISBN}.
575 These data are generated from the RangeMessage.xml file provided by the ISBN
576 Agency.")
577 (license (package-license perl))))
578
579 (define-public perl-business-isbn
580 (package
581 (name "perl-business-isbn")
582 (version "3.004")
583 (source
584 (origin
585 (method url-fetch)
586 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
587 "Business-ISBN-" version ".tar.gz"))
588 (sha256
589 (base32
590 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
591 (build-system perl-build-system)
592 (propagated-inputs
593 `(("perl-business-isbn-data" ,perl-business-isbn-data)
594 ("perl-mojolicious" ,perl-mojolicious)))
595 (home-page "https://metacpan.org/release/Business-ISBN")
596 (synopsis "Work with International Standard Book Numbers")
597 (description "This modules provides tools to deal with International
598 Standard Book Numbers, including ISBN-10 and ISBN-13.")
599 (license artistic2.0)))
600
601 (define-public perl-business-issn
602 (package
603 (name "perl-business-issn")
604 (version "1.003")
605 (source
606 (origin
607 (method url-fetch)
608 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
609 "Business-ISSN-" version ".tar.gz"))
610 (sha256
611 (base32
612 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
613 (build-system perl-build-system)
614 (home-page "https://metacpan.org/release/Business-ISSN")
615 (synopsis "Work with International Standard Serial Numbers")
616 (description "This modules provides tools to deal with International
617 Standard Serial Numbers.")
618 (license (package-license perl))))
619
620 (define-public perl-business-ismn
621 (package
622 (name "perl-business-ismn")
623 (version "1.201")
624 (source
625 (origin
626 (method url-fetch)
627 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
628 "Business-ISMN-" version ".tar.gz"))
629 (sha256
630 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
631 (build-system perl-build-system)
632 (native-inputs
633 `(("perl-tie-cycle" ,perl-tie-cycle)))
634 (home-page "https://metacpan.org/release/Business-ISMN")
635 (synopsis "Work with International Standard Music Numbers")
636 (description "This modules provides tools to deal with International
637 Standard Music Numbers.")
638 (license (package-license perl))))
639
640 (define-public perl-cache-cache
641 (package
642 (name "perl-cache-cache")
643 (version "1.08")
644 (source (origin
645 (method url-fetch)
646 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
647 "Cache-Cache-" version ".tar.gz"))
648 (sha256
649 (base32
650 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
651 (build-system perl-build-system)
652 (propagated-inputs
653 `(("perl-digest-sha1" ,perl-digest-sha1)
654 ("perl-error" ,perl-error)
655 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
656 (home-page "https://metacpan.org/release/Cache-Cache")
657 (synopsis "Cache interface for Perl")
658 (description "The Cache modules are designed to assist a developer in
659 persisting data for a specified period of time. Often these modules are used
660 in web applications to store data locally to save repeated and redundant
661 expensive calls to remote machines or databases. People have also been known
662 to use Cache::Cache for its straightforward interface in sharing data between
663 runs of an application or invocations of a CGI-style script or simply as an
664 easy to use abstraction of the file system or shared memory.")
665 (license (package-license perl))))
666
667 (define-public perl-cache-fastmmap
668 (package
669 (name "perl-cache-fastmmap")
670 (version "1.47")
671 (source
672 (origin
673 (method url-fetch)
674 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
675 "Cache-FastMmap-" version ".tar.gz"))
676 (sha256
677 (base32 "0fdni3iyjfnx8ldgrz3h6z6yxbklrx76klcghg6xvmzd878yqlmi"))))
678 (build-system perl-build-system)
679 (home-page "https://metacpan.org/release/Cache-FastMmap")
680 (synopsis "Shared memory interprocess cache via mmap")
681 (description "A shared memory cache through an mmap'ed file. It's core is
682 written in C for performance. It uses fcntl locking to ensure multiple
683 processes can safely access the cache at the same time. It uses a basic LRU
684 algorithm to keep the most used entries in the cache.")
685 (license (package-license perl))))
686
687 (define-public perl-capture-tiny
688 (package
689 (name "perl-capture-tiny")
690 (version "0.48")
691 (source
692 (origin
693 (method url-fetch)
694 (uri (string-append
695 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
696 version ".tar.gz"))
697 (sha256
698 (base32
699 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
700 (build-system perl-build-system)
701 (home-page "https://metacpan.org/release/Capture-Tiny")
702 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
703 (description
704 "Capture::Tiny provides a simple, portable way to capture almost anything
705 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
706 code or from an external program. Optionally, output can be teed so that it
707 is captured while being passed through to the original file handles.")
708 (license asl2.0)))
709
710 (define-public perl-canary-stability
711 (package
712 (name "perl-canary-stability")
713 (version "2012")
714 (source (origin
715 (method url-fetch)
716 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
717 "Canary-Stability-" version ".tar.gz"))
718 (sha256
719 (base32
720 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
721 (build-system perl-build-system)
722 (home-page "https://metacpan.org/release/Canary-Stability")
723 (synopsis "Check compatibility with the installed perl version")
724 (description
725 "This module is used by Schmorp's modules during configuration stage
726 to test the installed perl for compatibility with his modules.")
727 (license (package-license perl))))
728
729 (define-public perl-carp
730 (package
731 (name "perl-carp")
732 (version "1.38")
733 (source (origin
734 (method url-fetch)
735 (uri (string-append
736 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
737 version ".tar.gz"))
738 (sha256
739 (base32
740 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
741 (build-system perl-build-system)
742 (home-page "https://metacpan.org/release/Carp")
743 (synopsis "Alternative warn and die for modules")
744 (description "The @code{Carp} routines are useful in your own modules
745 because they act like @code{die()} or @code{warn()}, but with a message
746 which is more likely to be useful to a user of your module. In the case
747 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
748 summary of every call in the call-stack. For a shorter message you can use
749 @code{carp} or @code{croak} which report the error as being from where your
750 module was called. There is no guarantee that that is where the error was,
751 but it is a good educated guess.")
752 (license (package-license perl))))
753
754 (define-public perl-carp-always
755 (package
756 (name "perl-carp-always")
757 (version "0.16")
758 (source
759 (origin
760 (method url-fetch)
761 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
762 version ".tar.gz"))
763 (sha256
764 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
765 (build-system perl-build-system)
766 (native-inputs
767 `(("perl-test-base" ,perl-test-base)))
768 (home-page "https://metacpan.org/release/Carp-Always")
769 (synopsis "Warns and dies noisily with stack backtraces/")
770 (description "This module is meant as a debugging aid. It can be used to
771 make a script complain loudly with stack backtraces when @code{warn()}-ing or
772 @code{die()}ing.")
773 (license (package-license perl))))
774
775 (define-public perl-carp-assert
776 (package
777 (name "perl-carp-assert")
778 (version "0.21")
779 (source
780 (origin
781 (method url-fetch)
782 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
783 "Carp-Assert-" version ".tar.gz"))
784 (sha256
785 (base32
786 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
787 (build-system perl-build-system)
788 (home-page "https://metacpan.org/release/Carp-Assert")
789 (synopsis "Executable comments for Perl")
790 (description "Carp::Assert is intended for a purpose like the ANSI C
791 library assert.h.")
792 (license (package-license perl))))
793
794 (define-public perl-carp-assert-more
795 (package
796 (name "perl-carp-assert-more")
797 (version "1.16")
798 (source
799 (origin
800 (method url-fetch)
801 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
802 "Carp-Assert-More-" version ".tar.gz"))
803 (sha256
804 (base32
805 "1x9jd6s3lq97na6gz7g0zaq62l8z297xsfpdj2v42p3ijpfirl4f"))))
806 (build-system perl-build-system)
807 (native-inputs
808 `(("perl-test-exception" ,perl-test-exception)))
809 (propagated-inputs
810 `(("perl-carp-assert" ,perl-carp-assert)))
811 (home-page "https://metacpan.org/release/Carp-Assert-More")
812 (synopsis "Convenience wrappers around Carp::Assert")
813 (description "Carp::Assert::More is a set of handy assertion functions for
814 Perl.")
815 (license artistic2.0)))
816
817 (define-public perl-carp-clan
818 (package
819 (name "perl-carp-clan")
820 (version "6.07")
821 (source
822 (origin
823 (method url-fetch)
824 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
825 "Carp-Clan-" version ".tar.gz"))
826 (sha256
827 (base32
828 "0gaa4ygd9q8lp2fn5d9s7miiwxz92a2lqs7j6smwmifq6w3mc20a"))))
829 (build-system perl-build-system)
830 (native-inputs
831 `(("perl-test-exception" ,perl-test-exception)))
832 (home-page "https://metacpan.org/release/Carp-Clan")
833 (synopsis "Report errors from a \"clan\" of modules")
834 (description "This module allows errors from a clan (or family) of modules
835 to appear to originate from the caller of the clan. This is necessary in
836 cases where the clan modules are not classes derived from each other, and thus
837 the Carp.pm module doesn't help.")
838 (license (package-license perl))))
839
840 (define-public perl-cddb-get
841 (package
842 (name "perl-cddb-get")
843 (version "2.28")
844 (source (origin
845 (method url-fetch)
846 (uri (string-append
847 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
848 version ".tar.gz"))
849 (sha256
850 (base32
851 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
852 (build-system perl-build-system)
853 (home-page "https://metacpan.org/release/CDDB_get")
854 (synopsis "Read the CDDB entry for an audio CD in your drive")
855 (description "This module can retrieve information from the CDDB.")
856 ;; Either GPLv2 or the "Artistic" license.
857 (license (list gpl2 artistic2.0))))
858
859 (define-public perl-class-accessor
860 (package
861 (name "perl-class-accessor")
862 (version "0.51")
863 (source
864 (origin
865 (method url-fetch)
866 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
867 "Class-Accessor-" version ".tar.gz"))
868 (sha256
869 (base32
870 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
871 (build-system perl-build-system)
872 (native-inputs
873 `(("perl-sub-name" ,perl-sub-name)))
874 (propagated-inputs
875 `(("perl-base" ,perl-base)))
876 (home-page "https://metacpan.org/release/Class-Accessor")
877 (synopsis "Automated accessor generation")
878 (description "This module automagically generates accessors/mutators for
879 your class.")
880 (license (package-license perl))))
881
882 (define-public perl-class-accessor-chained
883 (package
884 (name "perl-class-accessor-chained")
885 (version "0.01")
886 (source
887 (origin
888 (method url-fetch)
889 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
890 "Class-Accessor-Chained-" version ".tar.gz"))
891 (sha256
892 (base32
893 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
894 (build-system perl-build-system)
895 (native-inputs
896 `(("perl-module-build" ,perl-module-build)))
897 (propagated-inputs
898 `(("perl-class-accessor" ,perl-class-accessor)))
899 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
900 (synopsis "Faster, but less expandable, chained accessors")
901 (description "A chained accessor is one that always returns the object
902 when called with parameters (to set), and the value of the field when called
903 with no arguments. This module subclasses Class::Accessor in order to provide
904 the same mk_accessors interface.")
905 (license (package-license perl))))
906
907 (define-public perl-class-accessor-grouped
908 (package
909 (name "perl-class-accessor-grouped")
910 (version "0.10014")
911 (source
912 (origin
913 (method url-fetch)
914 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
915 "Class-Accessor-Grouped-" version ".tar.gz"))
916 (sha256
917 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
918 (build-system perl-build-system)
919 (native-inputs
920 `(("perl-module-install" ,perl-module-install)
921 ("perl-test-exception" ,perl-test-exception)))
922 (propagated-inputs
923 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
924 ("perl-module-runtime" ,perl-module-runtime)
925 ("perl-sub-name" ,perl-sub-name)))
926 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
927 (synopsis "Build groups of accessors")
928 (description "This class lets you build groups of accessors that will call
929 different getters and setters.")
930 (license (package-license perl))))
931
932 (define-public perl-class-c3
933 (package
934 (name "perl-class-c3")
935 (version "0.34")
936 (source
937 (origin
938 (method url-fetch)
939 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
940 "Class-C3-" version ".tar.gz"))
941 (sha256
942 (base32 "1dcibc31v5jwmi6hsdzi7c5ag1sb4wp3kxkibc889qrdj7jm12sd"))))
943 (build-system perl-build-system)
944 (propagated-inputs
945 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
946 (home-page "https://metacpan.org/release//Class-C3")
947 (synopsis "Pragma to use the C3 method resolution order algorithm")
948 (description "This is pragma to change Perl 5's standard method resolution
949 order from depth-first left-to-right (a.k.a - pre-order) to the more
950 sophisticated C3 method resolution order.")
951 (license (package-license perl))))
952
953 (define-public perl-class-c3-adopt-next
954 (package
955 (name "perl-class-c3-adopt-next")
956 (version "0.13")
957 (source
958 (origin
959 (method url-fetch)
960 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
961 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
962 (sha256
963 (base32
964 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
965 (build-system perl-build-system)
966 (native-inputs
967 `(("perl-test-exception" ,perl-test-exception)))
968 (propagated-inputs
969 `(("perl-list-moreutils" ,perl-list-moreutils)
970 ("perl-mro-compat" ,perl-mro-compat)))
971 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
972 (synopsis "Drop-in replacement for NEXT")
973 (description "This module is intended as a drop-in replacement for NEXT,
974 supporting the same interface, but using Class::C3 to do the hard work.")
975 (license (package-license perl))))
976
977 (define-public perl-class-c3-componentised
978 (package
979 (name "perl-class-c3-componentised")
980 (version "1.001000")
981 (source
982 (origin
983 (method url-fetch)
984 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
985 "Class-C3-Componentised-" version ".tar.gz"))
986 (sha256
987 (base32
988 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
989 (build-system perl-build-system)
990 (native-inputs
991 `(("perl-module-install" ,perl-module-install)
992 ("perl-test-exception" ,perl-test-exception)))
993 (propagated-inputs
994 `(("perl-class-c3" ,perl-class-c3)
995 ("perl-class-inspector" ,perl-class-inspector)
996 ("perl-mro-compat" ,perl-mro-compat)))
997 (home-page "https://metacpan.org/release/Class-C3-Componentised")
998 (synopsis "Load mix-ins or components to your C3-based class")
999 (description "This module will inject base classes to your module using
1000 the Class::C3 method resolution order.")
1001 (license (package-license perl))))
1002
1003 (define-public perl-class-data-inheritable
1004 (package
1005 (name "perl-class-data-inheritable")
1006 (version "0.08")
1007 (source
1008 (origin
1009 (method url-fetch)
1010 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1011 "Class-Data-Inheritable-" version ".tar.gz"))
1012 (sha256
1013 (base32
1014 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1015 (build-system perl-build-system)
1016 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1017 (synopsis "Inheritable, overridable class data")
1018 (description "Class::Data::Inheritable is for creating accessor/mutators
1019 to class data. That is, if you want to store something about your class as a
1020 whole (instead of about a single object). This data is then inherited by your
1021 subclasses and can be overridden.")
1022 (license (package-license perl))))
1023
1024 (define-public perl-class-date
1025 (package
1026 (name "perl-class-date")
1027 (version "1.1.17")
1028 (source
1029 (origin
1030 (method url-fetch)
1031 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1032 "Class-Date-" version ".tar.gz"))
1033 (sha256
1034 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1035 (build-system perl-build-system)
1036 (arguments `(#:tests? #f)) ;timezone tests in chroot
1037 (home-page "https://metacpan.org/release/Class-Date")
1038 (synopsis "Class for easy date and time manipulation")
1039 (description "This module provides a general-purpose date and datetime
1040 type for perl.")
1041 (license (package-license perl))))
1042
1043 (define-public perl-class-errorhandler
1044 (package
1045 (name "perl-class-errorhandler")
1046 (version "0.04")
1047 (source (origin
1048 (method url-fetch)
1049 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1050 "Class-ErrorHandler-" version ".tar.gz"))
1051 (sha256
1052 (base32
1053 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1054 (build-system perl-build-system)
1055 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1056 (synopsis "Base class for error handling")
1057 (description
1058 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1059 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1060 its two error-handling methods, error and errstr, to communicate error messages back
1061 to the calling program.")
1062 (license (package-license perl))))
1063
1064 (define-public perl-class-factory-util
1065 (package
1066 (name "perl-class-factory-util")
1067 (version "1.7")
1068 (source
1069 (origin
1070 (method url-fetch)
1071 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1072 "Class-Factory-Util-" version ".tar.gz"))
1073 (sha256
1074 (base32
1075 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1076 (build-system perl-build-system)
1077 (native-inputs `(("perl-module-build" ,perl-module-build)))
1078 (home-page "https://metacpan.org/release/Class-Factory-Util")
1079 (synopsis "Utility methods for factory classes")
1080 (description "This module exports methods useful for factory classes.")
1081 (license (package-license perl))))
1082
1083 (define-public perl-class-inspector
1084 (package
1085 (name "perl-class-inspector")
1086 (version "1.32")
1087 (source
1088 (origin
1089 (method url-fetch)
1090 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1091 "Class-Inspector-" version ".tar.gz"))
1092 (sha256
1093 (base32
1094 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1095 (build-system perl-build-system)
1096 (home-page "https://metacpan.org/release/Class-Inspector")
1097 (synopsis "Get information about a class and its structure")
1098 (description "Class::Inspector allows you to get information about a
1099 loaded class.")
1100 (license (package-license perl))))
1101
1102 (define-public perl-class-load
1103 (package
1104 (name "perl-class-load")
1105 (version "0.25")
1106 (source
1107 (origin
1108 (method url-fetch)
1109 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1110 "Class-Load-" version ".tar.gz"))
1111 (sha256
1112 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1113 (build-system perl-build-system)
1114 (native-inputs
1115 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1116 ("perl-test-fatal" ,perl-test-fatal)
1117 ("perl-test-needs" ,perl-test-needs)
1118 ("perl-test-without-module" ,perl-test-without-module)))
1119 (propagated-inputs
1120 `(("perl-package-stash" ,perl-package-stash)
1121 ("perl-data-optlist" ,perl-data-optlist)
1122 ("perl-namespace-clean" ,perl-namespace-clean)
1123 ("perl-module-runtime" ,perl-module-runtime)
1124 ("perl-module-implementation" ,perl-module-implementation)))
1125 (home-page "https://metacpan.org/release/Class-Load")
1126 (synopsis "Working (require \"Class::Name\") and more")
1127 (description "\"require EXPR\" only accepts Class/Name.pm style module
1128 names, not Class::Name. For that, this module provides \"load_class
1129 'Class::Name'\".")
1130 (license (package-license perl))))
1131
1132 (define-public perl-class-load-xs
1133 (package
1134 (name "perl-class-load-xs")
1135 (version "0.10")
1136 (source
1137 (origin
1138 (method url-fetch)
1139 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1140 "Class-Load-XS-" version ".tar.gz"))
1141 (sha256
1142 (base32
1143 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1144 (build-system perl-build-system)
1145 (native-inputs
1146 `(("perl-test-fatal" ,perl-test-fatal)
1147 ("perl-test-needs" ,perl-test-needs)
1148 ("perl-test-without-module" ,perl-test-without-module)))
1149 (inputs `(("perl-class-load" ,perl-class-load)))
1150 (home-page "https://metacpan.org/release/Class-Load-XS")
1151 (synopsis "XS implementation of parts of Class::Load")
1152 (description "This module provides an XS implementation for portions of
1153 Class::Load.")
1154 (license artistic2.0)))
1155
1156 (define-public perl-class-methodmaker
1157 (package
1158 (name "perl-class-methodmaker")
1159 (version "2.24")
1160 (source
1161 (origin
1162 (method url-fetch)
1163 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1164 "class-methodmaker/Class-MethodMaker-"
1165 version ".tar.gz"))
1166 (sha256
1167 (base32
1168 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1169 (build-system perl-build-system)
1170 (home-page "https://metacpan.org/release/Class-MethodMaker")
1171 (synopsis "Create generic methods for OO Perl")
1172 (description "This module solves the problem of having to continually
1173 write accessor methods for your objects that perform standard tasks.")
1174 (license (package-license perl))))
1175
1176 (define-public perl-class-method-modifiers
1177 (package
1178 (name "perl-class-method-modifiers")
1179 (version "2.12")
1180 (source
1181 (origin
1182 (method url-fetch)
1183 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1184 "Class-Method-Modifiers-" version ".tar.gz"))
1185 (sha256
1186 (base32
1187 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1188 (build-system perl-build-system)
1189 (native-inputs
1190 `(("perl-test-fatal" ,perl-test-fatal)
1191 ("perl-test-requires" ,perl-test-requires)))
1192 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1193 (synopsis "Moose-like method modifiers")
1194 (description "Class::Method::Modifiers provides three modifiers: 'before',
1195 'around', and 'after'. 'before' and 'after' are run just before and after the
1196 method they modify, but can not really affect that original method. 'around'
1197 is run in place of the original method, with a hook to easily call that
1198 original method.")
1199 (license (package-license perl))))
1200
1201 (define-public perl-class-singleton
1202 (package
1203 (name "perl-class-singleton")
1204 (version "1.5")
1205 (source
1206 (origin
1207 (method url-fetch)
1208 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1209 "Class-Singleton-" version ".tar.gz"))
1210 (sha256
1211 (base32
1212 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1213 (build-system perl-build-system)
1214 (home-page "https://metacpan.org/release/Class-Singleton")
1215 (synopsis "Implementation of a singleton class for Perl")
1216 (description "This module implements a Singleton class from which other
1217 classes can be derived. By itself, the Class::Singleton module does very
1218 little other than manage the instantiation of a single object.")
1219 (license (package-license perl))))
1220
1221 (define-public perl-class-tiny
1222 (package
1223 (name "perl-class-tiny")
1224 (version "1.006")
1225 (source
1226 (origin
1227 (method url-fetch)
1228 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1229 "Class-Tiny-" version ".tar.gz"))
1230 (sha256
1231 (base32
1232 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1233 (build-system perl-build-system)
1234 (home-page "https://metacpan.org/release/Class-Tiny")
1235 (synopsis "Minimalist class construction")
1236 (description "This module offers a minimalist class construction kit. It
1237 uses no non-core modules for any recent Perl.")
1238 (license asl2.0)))
1239
1240 (define-public perl-class-unload
1241 (package
1242 (name "perl-class-unload")
1243 (version "0.08")
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1248 "Class-Unload-" version ".tar.gz"))
1249 (sha256
1250 (base32
1251 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1252 (build-system perl-build-system)
1253 (propagated-inputs
1254 `(("perl-class-inspector" ,perl-class-inspector)))
1255 (home-page "https://metacpan.org/release/Class-Unload")
1256 (synopsis "Unload a class")
1257 (description "Class:Unload unloads a given class by clearing out its
1258 symbol table and removing it from %INC.")
1259 (license (package-license perl))))
1260
1261 (define-public perl-class-xsaccessor
1262 (package
1263 (name "perl-class-xsaccessor")
1264 (version "1.19")
1265 (source
1266 (origin
1267 (method url-fetch)
1268 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1269 "Class-XSAccessor-" version ".tar.gz"))
1270 (sha256
1271 (base32
1272 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1273 (build-system perl-build-system)
1274 (home-page "https://metacpan.org/release/Class-XSAccessor")
1275 (synopsis "Generate fast XS accessors without runtime compilation")
1276 (description "Class::XSAccessor implements fast read, write, and
1277 read/write accessors in XS. Additionally, it can provide predicates such as
1278 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1279 object. It only works with objects that are implemented as ordinary hashes.
1280 Class::XSAccessor::Array implements the same interface for objects that use
1281 arrays for their internal representation.")
1282 (license (package-license perl))))
1283
1284 (define-public perl-clone
1285 (package
1286 (name "perl-clone")
1287 (version "0.41")
1288 (source (origin
1289 (method url-fetch)
1290 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1291 "Clone-" version ".tar.gz"))
1292 (sha256
1293 (base32
1294 "060mlm31lacirpnp5fl9jqk4m9cl07vjlh89k83qk25wykf5dh78"))))
1295 (build-system perl-build-system)
1296 (synopsis "Recursively copy Perl datatypes")
1297 (description
1298 "This module provides a clone() method which makes recursive copies of
1299 nested hash, array, scalar and reference types, including tied variables and
1300 objects.")
1301 (home-page "https://metacpan.org/release/Clone")
1302 (license (package-license perl))))
1303
1304 (define-public perl-clone-pp
1305 (package
1306 (name "perl-clone-pp")
1307 (version "1.07")
1308 (source
1309 (origin
1310 (method url-fetch)
1311 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1312 version ".tar.gz"))
1313 (sha256
1314 (base32
1315 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1316 (build-system perl-build-system)
1317 (home-page "https://metacpan.org/release/Clone-PP")
1318 (synopsis "Recursively copy Perl datatypes")
1319 (description "This module provides a general-purpose @code{clone} function
1320 to make deep copies of Perl data structures. It calls itself recursively to
1321 copy nested hash, array, scalar and reference types, including tied variables
1322 and objects.")
1323 (license (package-license perl))))
1324
1325 (define-public perl-common-sense
1326 (package
1327 (name "perl-common-sense")
1328 (version "3.74")
1329 (source
1330 (origin
1331 (method url-fetch)
1332 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1333 "common-sense-" version ".tar.gz"))
1334 (sha256
1335 (base32
1336 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1337 (build-system perl-build-system)
1338 (home-page "https://metacpan.org/release/common-sense")
1339 (synopsis "Sane defaults for Perl programs")
1340 (description "This module implements some sane defaults for Perl programs,
1341 as defined by two typical specimens of Perl coders.")
1342 (license (package-license perl))))
1343
1344 (define-public perl-conf-libconfig
1345 (package
1346 (name "perl-conf-libconfig")
1347 (version "0.100")
1348 (source
1349 (origin
1350 (method url-fetch)
1351 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1352 "Conf-Libconfig-" version ".tar.gz"))
1353 (sha256
1354 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1355 (build-system perl-build-system)
1356 (native-inputs
1357 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1358 ("perl-test-deep" ,perl-test-deep)
1359 ("perl-test-exception" ,perl-test-exception)
1360 ("perl-test-warn" ,perl-test-warn)))
1361 (inputs
1362 `(("libconfig" ,libconfig)))
1363 (home-page "https://metacpan.org/release/Conf-Libconfig")
1364 (synopsis "Perl extension for libconfig")
1365 (description
1366 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1367 library. It support scalar, array, and hash data structures just like its C/C++
1368 counterpart. It reduces the effort required to implement a configuration file
1369 parser in your Perl programme and allows sharing configuration files between
1370 languages.")
1371 (license bsd-3)))
1372
1373 (define-public perl-config-any
1374 (package
1375 (name "perl-config-any")
1376 (version "0.32")
1377 (source
1378 (origin
1379 (method url-fetch)
1380 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1381 "Config-Any-" version ".tar.gz"))
1382 (sha256
1383 (base32
1384 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1385 (build-system perl-build-system)
1386 (propagated-inputs
1387 `(("perl-module-pluggable" ,perl-module-pluggable)))
1388 (home-page "https://metacpan.org/release/Config-Any")
1389 (synopsis "Load configuration from different file formats")
1390 (description "Config::Any provides a facility for Perl applications and
1391 libraries to load configuration data from multiple different file formats. It
1392 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1393 (license (package-license perl))))
1394
1395 (define-public perl-config-autoconf
1396 (package
1397 (name "perl-config-autoconf")
1398 (version "0.317")
1399 (source
1400 (origin
1401 (method url-fetch)
1402 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1403 "Config-AutoConf-" version ".tar.gz"))
1404 (sha256
1405 (base32
1406 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1407 (build-system perl-build-system)
1408 (propagated-inputs
1409 `(("perl-capture-tiny" ,perl-capture-tiny)))
1410 (home-page "https://metacpan.org/release/Config-AutoConf")
1411 (synopsis "Module to implement some AutoConf macros in Perl")
1412 (description "Config::AutoConf is intended to provide the same
1413 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1414 (license (package-license perl))))
1415
1416 (define-public perl-config-general
1417 (package
1418 (name "perl-config-general")
1419 (version "2.63")
1420 (source
1421 (origin
1422 (method url-fetch)
1423 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1424 "Config-General-" version ".tar.gz"))
1425 (sha256
1426 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1427 (build-system perl-build-system)
1428 (home-page "https://metacpan.org/release/Config-General")
1429 (synopsis "Generic Config Module")
1430 (description "This module opens a config file and parses its contents for
1431 you. The format of config files supported by Config::General is inspired by
1432 the well known Apache config format and is 100% compatible with Apache
1433 configs, but you can also just use simple name/value pairs in your config
1434 files. In addition to the capabilities of an Apache config file it supports
1435 some enhancements such as here-documents, C-style comments, and multiline
1436 options.")
1437 (license (package-license perl))))
1438
1439 (define-public perl-config-ini
1440 (package
1441 (name "perl-config-ini")
1442 (version "0.025")
1443 (source (origin
1444 (method url-fetch)
1445 (uri (string-append
1446 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1447 version ".tar.gz"))
1448 (sha256
1449 (base32
1450 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1451 (build-system perl-build-system)
1452 (inputs
1453 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1454 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1455 ("perl-sub-exporter" ,perl-sub-exporter)))
1456 (home-page "https://metacpan.org/release/Config-INI")
1457 (synopsis "Simple .ini-file format reader and writer")
1458 (description "@code{Config::INI} is a module that facilates the reading
1459 and writing of @code{.ini}-style configuration files.")
1460 (license (package-license perl))))
1461
1462 (define-public perl-context-preserve
1463 (package
1464 (name "perl-context-preserve")
1465 (version "0.03")
1466 (source
1467 (origin
1468 (method url-fetch)
1469 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1470 "Context-Preserve-" version ".tar.gz"))
1471 (sha256
1472 (base32
1473 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1474 (build-system perl-build-system)
1475 (native-inputs
1476 `(("perl-test-exception" ,perl-test-exception)
1477 ("perl-test-simple" ,perl-test-simple)))
1478 (home-page "https://metacpan.org/release/Context-Preserve")
1479 (synopsis "Preserve context during subroutine call")
1480 (description "This module runs code after a subroutine call, preserving
1481 the context the subroutine would have seen if it were the last statement in
1482 the caller.")
1483 (license (package-license perl))))
1484
1485 (define-public perl-convert-binhex
1486 (package
1487 (name "perl-convert-binhex")
1488 (version "1.125")
1489 (source
1490 (origin
1491 (method url-fetch)
1492 (uri (string-append
1493 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1494 version
1495 ".tar.gz"))
1496 (sha256
1497 (base32
1498 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1499 (build-system perl-build-system)
1500 (native-inputs
1501 `(("perl-file-slurp" ,perl-file-slurp)
1502 ("perl-test-most" ,perl-test-most)))
1503 (home-page
1504 "https://metacpan.org/release/Convert-BinHex")
1505 (synopsis "Extract data from Macintosh BinHex files")
1506 (description
1507 "BinHex is a format for transporting files safely through electronic
1508 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1509 provides a means of converting those data streams back into into binary
1510 data.")
1511 (license perl-license)))
1512
1513 (define-public perl-cpan-changes
1514 (package
1515 (name "perl-cpan-changes")
1516 (version "0.400002")
1517 (source
1518 (origin
1519 (method url-fetch)
1520 (uri (string-append
1521 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1522 version ".tar.gz"))
1523 (sha256
1524 (base32
1525 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1526 (build-system perl-build-system)
1527 (home-page "https://metacpan.org/release/CPAN-Changes")
1528 (synopsis "Read and write @file{Changes} files")
1529 (description
1530 "@code{CPAN::Changes} helps users programmatically read and write
1531 @file{Changes} files that conform to a common specification.")
1532 (license perl-license)))
1533
1534 (define-public perl-cpan-meta-check
1535 (package
1536 (name "perl-cpan-meta-check")
1537 (version "0.014")
1538 (source
1539 (origin
1540 (method url-fetch)
1541 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1542 "CPAN-Meta-Check-" version ".tar.gz"))
1543 (sha256
1544 (base32
1545 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1546 (build-system perl-build-system)
1547 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1548 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1549 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1550 (synopsis "Verify requirements in a CPAN::Meta object")
1551 (description "This module verifies if requirements described in a
1552 CPAN::Meta object are present.")
1553 (license (package-license perl))))
1554
1555 (define-public perl-cpanel-json-xs
1556 (package
1557 (name "perl-cpanel-json-xs")
1558 (version "4.10")
1559 (source
1560 (origin
1561 (method url-fetch)
1562 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1563 "Cpanel-JSON-XS-" version ".tar.gz"))
1564 (sha256
1565 (base32 "1r92b03hkmqr0brp00cj67b1iklfd4yas481d6a5nx2941c03h3p"))))
1566 (build-system perl-build-system)
1567 (propagated-inputs
1568 `(("perl-common-sense" ,perl-common-sense)))
1569 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1570 (synopsis "JSON::XS for Cpanel")
1571 (description "This module converts Perl data structures to JSON and vice
1572 versa.")
1573 (license (package-license perl))))
1574
1575 (define-public perl-crypt-randpasswd
1576 (package
1577 (name "perl-crypt-randpasswd")
1578 (version "0.06")
1579 (source
1580 (origin
1581 (method url-fetch)
1582 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1583 "Crypt-RandPasswd-" version ".tar.gz"))
1584 (sha256
1585 (base32
1586 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1587 (build-system perl-build-system)
1588 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
1589 (synopsis "Random password generator")
1590 (description "Crypt::RandPasswd provides three functions that can be used
1591 to generate random passwords, constructed from words, letters, or characters.
1592 This code is a Perl implementation of the Automated Password Generator
1593 standard, like the program described in \"A Random Word Generator For
1594 Pronounceable Passwords\". This code is a re-engineering of the program
1595 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1596 Password Generator\".")
1597 (license (package-license perl))))
1598
1599 (define-public perl-crypt-rc4
1600 (package
1601 (name "perl-crypt-rc4")
1602 (version "2.02")
1603 (source
1604 (origin
1605 (method url-fetch)
1606 (uri (string-append
1607 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1608 version
1609 ".tar.gz"))
1610 (sha256
1611 (base32
1612 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1613 (build-system perl-build-system)
1614 (home-page "https://metacpan.org/release//Crypt-RC4")
1615 (synopsis "Perl implementation of the RC4 encryption algorithm")
1616 (description "A pure Perl implementation of the RC4 algorithm.")
1617 (license (package-license perl))))
1618
1619 (define-public perl-cwd-guard
1620 (package
1621 (name "perl-cwd-guard")
1622 (version "0.05")
1623 (source (origin
1624 (method url-fetch)
1625 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1626 "Cwd-Guard-" version ".tar.gz"))
1627 (sha256
1628 (base32
1629 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1630 (build-system perl-build-system)
1631 (native-inputs
1632 `(("perl-module-build" ,perl-module-build)
1633 ("perl-test-requires" ,perl-test-requires)))
1634 (home-page "https://metacpan.org/release/Cwd-Guard")
1635 (synopsis "Temporarily change working directory")
1636 (description
1637 "@code{Cwd::Guard} changes the current directory using a limited scope.
1638 It returns to the previous working directory when the object is destroyed.")
1639 (license (package-license perl))))
1640
1641 (define-public perl-czplib
1642 (package
1643 (name "perl-czplib")
1644 (version "1.0.5")
1645 (source
1646 (origin
1647 (method url-fetch)
1648 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1649 version ".tgz"))
1650 (sha256
1651 (base32
1652 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1653 (modules '((guix build utils)))
1654 (snippet
1655 '(begin
1656 ;; Remove .git directory
1657 (delete-file-recursively ".git")
1658 #t))))
1659 (build-system perl-build-system)
1660 (arguments
1661 `(#:phases
1662 (modify-phases %standard-phases
1663 (delete 'configure)
1664 (delete 'build)
1665 (replace
1666 'install
1667 (lambda* (#:key outputs #:allow-other-keys)
1668 (copy-recursively "."
1669 (string-append (assoc-ref outputs "out")
1670 "/lib/perl5/site_perl/"
1671 ,(package-version perl)))
1672 #t)))))
1673 (home-page "https://sourceforge.net/projects/czplib/")
1674 (synopsis "Library for genomic analysis")
1675 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1676 functions and data structures for processing and analysing genomic and
1677 bioinformatics data.")
1678 (license gpl3+)))
1679
1680 (define-public perl-data
1681 (package
1682 (name "perl-data")
1683 (version "0.002009")
1684 (source
1685 (origin
1686 (method url-fetch)
1687 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1688 "Data-Perl-" version ".tar.gz"))
1689 (sha256
1690 (base32
1691 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1692 (build-system perl-build-system)
1693 (native-inputs
1694 `(("perl-test-deep" ,perl-test-deep)
1695 ("perl-test-output" ,perl-test-output)
1696 ("perl-test-fatal" ,perl-test-fatal)))
1697 (inputs
1698 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1699 ("perl-list-moreutils" ,perl-list-moreutils)
1700 ("perl-module-runtime" ,perl-module-runtime)
1701 ("perl-role-tiny" ,perl-role-tiny)
1702 ("perl-strictures" ,perl-strictures)))
1703 (home-page "https://metacpan.org/release/Data-Perl")
1704 (synopsis "Base classes wrapping fundamental Perl data types")
1705 (description "Collection of classes that wrap fundamental data types that
1706 exist in Perl. These classes and methods as they exist today are an attempt
1707 to mirror functionality provided by Moose's Native Traits. One important
1708 thing to note is all classes currently do no validation on constructor
1709 input.")
1710 (license (package-license perl))))
1711
1712 (define-public perl-data-compare
1713 (package
1714 (name "perl-data-compare")
1715 (version "1.25")
1716 (source
1717 (origin
1718 (method url-fetch)
1719 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1720 "Data-Compare-" version ".tar.gz"))
1721 (sha256
1722 (base32
1723 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1724 (build-system perl-build-system)
1725 (propagated-inputs
1726 `(("perl-file-find-rule" ,perl-file-find-rule)))
1727 (home-page "https://metacpan.org/release/Data-Compare")
1728 (synopsis "Compare Perl data structures")
1729 (description "This module compares arbitrary data structures to see if
1730 they are copies of each other.")
1731 (license (package-license perl))))
1732
1733 (define-public perl-data-uniqid
1734 (package
1735 (name "perl-data-uniqid")
1736 (version "0.12")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1741 version ".tar.gz"))
1742 (sha256
1743 (base32
1744 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1745 (build-system perl-build-system)
1746 (home-page "https://metacpan.org/release/Data-Uniqid")
1747 (synopsis "Perl extension for generating unique identifiers")
1748 (description "@code{Data::Uniqid} provides three simple routines for
1749 generating unique ids. These ids are coded with a Base62 systen to make them
1750 short and handy (e.g. to use it as part of a URL).")
1751 (license (package-license perl))))
1752
1753 (define-public perl-data-dump
1754 (package
1755 (name "perl-data-dump")
1756 (version "1.23")
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1761 "Data-Dump-" version ".tar.gz"))
1762 (sha256
1763 (base32
1764 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1765 (build-system perl-build-system)
1766 (home-page "https://metacpan.org/release/Data-Dump")
1767 (synopsis "Pretty printing of data structures")
1768 (description "This module provide functions that takes a list of values as
1769 their argument and produces a string as its result. The string contains Perl
1770 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1771 (license (package-license perl))))
1772
1773 (define-public perl-data-dumper
1774 (package
1775 (name "perl-data-dumper")
1776 (version "2.173")
1777 (source
1778 (origin
1779 (method url-fetch)
1780 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
1781 "Data-Dumper-" version ".tar.gz"))
1782 (sha256
1783 (base32
1784 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
1785 (build-system perl-build-system)
1786 (home-page "https://metacpan.org/release/Data-Dumper")
1787 (synopsis "Convert data structures to strings")
1788 (description "Given a list of scalars or reference variables,
1789 @code{Data::Dumper} writes out their contents in Perl syntax. The references
1790 can also be objects. The content of each variable is output in a single Perl
1791 statement. It handles self-referential structures correctly.")
1792 (license perl-license)))
1793
1794 (define-public perl-data-dumper-concise
1795 (package
1796 (name "perl-data-dumper-concise")
1797 (version "2.023")
1798 (source
1799 (origin
1800 (method url-fetch)
1801 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1802 "Data-Dumper-Concise-" version ".tar.gz"))
1803 (sha256
1804 (base32
1805 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1806 (build-system perl-build-system)
1807 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
1808 (synopsis "Concise data dumper")
1809 (description "Data::Dumper::Concise provides a dumper with Less
1810 indentation and newlines plus sub deparsing.")
1811 (license (package-license perl))))
1812
1813 (define-public perl-data-optlist
1814 (package
1815 (name "perl-data-optlist")
1816 (version "0.110")
1817 (source
1818 (origin
1819 (method url-fetch)
1820 (uri (string-append
1821 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1822 version ".tar.gz"))
1823 (sha256
1824 (base32
1825 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1826 (build-system perl-build-system)
1827 (propagated-inputs
1828 `(("perl-sub-install" ,perl-sub-install)
1829 ("perl-params-util" ,perl-params-util)))
1830 (home-page "https://metacpan.org/release/Data-OptList")
1831 (synopsis "Parse and validate simple name/value option pairs")
1832 (description
1833 "Data::OptList provides a simple syntax for name/value option pairs.")
1834 (license (package-license perl))))
1835
1836 (define-public perl-data-page
1837 (package
1838 (name "perl-data-page")
1839 (version "2.02")
1840 (source
1841 (origin
1842 (method url-fetch)
1843 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1844 "Data-Page-" version ".tar.gz"))
1845 (sha256
1846 (base32
1847 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1848 (build-system perl-build-system)
1849 (native-inputs
1850 `(("perl-module-build" ,perl-module-build)
1851 ("perl-test-exception" ,perl-test-exception)))
1852 (propagated-inputs
1853 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1854 (home-page "https://metacpan.org/release/Data-Page")
1855 (synopsis "Help when paging through sets of results")
1856 (description "When searching through large amounts of data, it is often
1857 the case that a result set is returned that is larger than we want to display
1858 on one page. This results in wanting to page through various pages of data.
1859 The maths behind this is unfortunately fiddly, hence this module.")
1860 (license (package-license perl))))
1861
1862 (define-public perl-data-perl
1863 (package
1864 (name "perl-data-perl")
1865 (version "0.002009")
1866 (source
1867 (origin
1868 (method url-fetch)
1869 (uri (string-append
1870 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1871 version
1872 ".tar.gz"))
1873 (sha256
1874 (base32
1875 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1876 (build-system perl-build-system)
1877 (native-inputs
1878 `(("perl-test-deep" ,perl-test-deep)
1879 ("perl-test-fatal" ,perl-test-fatal)
1880 ("perl-test-output" ,perl-test-output)))
1881 (inputs
1882 `(("perl-class-method-modifiers"
1883 ,perl-class-method-modifiers)
1884 ("perl-module-runtime" ,perl-module-runtime)
1885 ("perl-role-tiny" ,perl-role-tiny)
1886 ("perl-strictures" ,perl-strictures)))
1887 (propagated-inputs
1888 `(("perl-list-moreutils" ,perl-list-moreutils)))
1889 (home-page
1890 "https://metacpan.org/release/Data-Perl")
1891 (synopsis "Base classes wrapping fundamental Perl data types")
1892 (description
1893 "@code{Data::Perl} is a container class for the following classes:
1894 @itemize
1895 @item @code{Data::Perl::Collection::Hash}
1896 @item @code{Data::Perl::Collection::Array}
1897 @item @code{Data::Perl::String}
1898 @item @code{Data::Perl::Number}
1899 @item @code{Data::Perl::Counter}
1900 @item @code{Data::Perl::Bool}
1901 @item @code{Data::Perl::Code}
1902 @end itemize")
1903 (license perl-license)))
1904
1905 (define-public perl-data-printer
1906 (package
1907 (name "perl-data-printer")
1908 (version "0.40")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1913 version ".tar.gz"))
1914 (sha256
1915 (base32
1916 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1917 (build-system perl-build-system)
1918 (propagated-inputs
1919 `(("perl-clone-pp" ,perl-clone-pp)
1920 ("perl-file-homedir" ,perl-file-homedir)
1921 ("perl-package-stash" ,perl-package-stash)
1922 ("perl-sort-naturally" ,perl-sort-naturally)))
1923 (home-page "https://metacpan.org/release/Data-Printer")
1924 (synopsis "Colored pretty-print of Perl data structures and objects")
1925 (description "Display Perl variables and objects on screen, properly
1926 formatted (to be inspected by a human).")
1927 (license (package-license perl))))
1928
1929 (define-public perl-data-record
1930 (package
1931 (name "perl-data-record")
1932 (version "0.02")
1933 (source
1934 (origin
1935 (method url-fetch)
1936 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1937 "Data-Record-" version ".tar.gz"))
1938 (sha256
1939 (base32
1940 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1941 (build-system perl-build-system)
1942 (native-inputs
1943 `(("perl-test-exception" ,perl-test-exception)
1944 ("perl-module-build" ,perl-module-build)))
1945 (propagated-inputs
1946 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1947 (home-page "https://metacpan.org/release/Data-Record")
1948 (synopsis "Conditionally split data into records")
1949 (description "This Perl module allows you to split data into records by
1950 not only specifying what you wish to split the data on, but also by specifying
1951 an \"unless\" regular expression. If the text in question matches the
1952 \"unless\" regex, it will not be split there. This allows us to do things
1953 like split on newlines unless newlines are embedded in quotes.")
1954 (license (package-license perl))))
1955
1956 (define-public perl-data-section
1957 (package
1958 (name "perl-data-section")
1959 (version "0.200007")
1960 (source
1961 (origin
1962 (method url-fetch)
1963 (uri (string-append
1964 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1965 version
1966 ".tar.gz"))
1967 (sha256
1968 (base32
1969 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1970 (build-system perl-build-system)
1971 (native-inputs
1972 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1973 (propagated-inputs
1974 `(("perl-mro-compat" ,perl-mro-compat)
1975 ("perl-sub-exporter" ,perl-sub-exporter)))
1976 (home-page "https://metacpan.org/release/Data-Section")
1977 (synopsis "Read multiple hunks of data out of your DATA section")
1978 (description "This package provides a Perl library to read multiple hunks
1979 of data out of your DATA section.")
1980 (license (package-license perl))))
1981
1982 (define-public perl-data-stag
1983 (package
1984 (name "perl-data-stag")
1985 (version "0.14")
1986 (source
1987 (origin
1988 (method url-fetch)
1989 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1990 "Data-Stag-" version ".tar.gz"))
1991 (sha256
1992 (base32
1993 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1994 (build-system perl-build-system)
1995 (propagated-inputs
1996 `(("perl-io-string" ,perl-io-string)))
1997 (home-page "https://metacpan.org/release/Data-Stag")
1998 (synopsis "Structured tags datastructures")
1999 (description
2000 "This module is for manipulating data as hierarchical tag/value
2001 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2002 be represented as nested arrays, which have the advantage of being native to
2003 Perl.")
2004 (license (package-license perl))))
2005
2006 (define-public perl-data-stream-bulk
2007 (package
2008 (name "perl-data-stream-bulk")
2009 (version "0.11")
2010 (source
2011 (origin
2012 (method url-fetch)
2013 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2014 "Data-Stream-Bulk-" version ".tar.gz"))
2015 (sha256
2016 (base32
2017 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2018 (build-system perl-build-system)
2019 (native-inputs
2020 `(("perl-test-requires" ,perl-test-requires)))
2021 (propagated-inputs
2022 `(("perl-moose" ,perl-moose)
2023 ("perl-namespace-clean" ,perl-namespace-clean)
2024 ("perl-path-class" ,perl-path-class)
2025 ("perl-sub-exporter" ,perl-sub-exporter)))
2026 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2027 (synopsis "N at a time iteration API")
2028 (description "This module tries to find middle ground between one at a
2029 time and all at once processing of data sets. The purpose of this module is
2030 to avoid the overhead of implementing an iterative api when this isn't
2031 necessary, without breaking forward compatibility in case that becomes
2032 necessary later on.")
2033 (license (package-license perl))))
2034
2035 (define-public perl-data-tumbler
2036 (package
2037 (name "perl-data-tumbler")
2038 (version "0.010")
2039 (source
2040 (origin
2041 (method url-fetch)
2042 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2043 "Data-Tumbler-" version ".tar.gz"))
2044 (sha256
2045 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2046 (build-system perl-build-system)
2047 (native-inputs
2048 `(("perl-test-most" ,perl-test-most)))
2049 (propagated-inputs
2050 `(("perl-file-homedir" ,perl-file-homedir)))
2051 (home-page "https://metacpan.org/release/Data-Tumbler")
2052 (synopsis "Dynamic generation of nested combinations of variants")
2053 (description "Data::Tumbler - Dynamic generation of nested combinations of
2054 variants.")
2055 (license (package-license perl))))
2056
2057 (define-public perl-data-visitor
2058 (package
2059 (name "perl-data-visitor")
2060 (version "0.30")
2061 (source
2062 (origin
2063 (method url-fetch)
2064 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2065 "Data-Visitor-" version ".tar.gz"))
2066 (sha256
2067 (base32
2068 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2069 (build-system perl-build-system)
2070 (native-inputs
2071 `(("perl-test-requires" ,perl-test-requires)))
2072 (propagated-inputs
2073 `(("perl-class-load" ,perl-class-load)
2074 ("perl-moose" ,perl-moose)
2075 ("perl-namespace-clean" ,perl-namespace-clean)
2076 ("perl-task-weaken" ,perl-task-weaken)
2077 ("perl-tie-toobject" ,perl-tie-toobject)))
2078 (home-page "https://metacpan.org/release/Data-Visitor")
2079 (synopsis "Visitor style traversal of Perl data structures")
2080 (description "This module is a simple visitor implementation for Perl
2081 values. It has a main dispatcher method, visit, which takes a single perl
2082 value and then calls the methods appropriate for that value. It can
2083 recursively map (cloning as necessary) or just traverse most structures, with
2084 support for per-object behavior, circular structures, visiting tied
2085 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2086 (license (package-license perl))))
2087
2088 (define-public perl-date-calc
2089 (package
2090 (name "perl-date-calc")
2091 (version "6.4")
2092 (source
2093 (origin
2094 (method url-fetch)
2095 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2096 "Date-Calc-" version ".tar.gz"))
2097 (sha256
2098 (base32
2099 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2100 (build-system perl-build-system)
2101 (propagated-inputs
2102 `(("perl-bit-vector" ,perl-bit-vector)
2103 ("perl-carp-clan" ,perl-carp-clan)))
2104 (home-page "https://metacpan.org/release/Date-Calc")
2105 (synopsis "Gregorian calendar date calculations")
2106 (description "This package consists of a Perl module for date calculations
2107 based on the Gregorian calendar, thereby complying with all relevant norms and
2108 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2109 applicable).")
2110 (license (package-license perl))))
2111
2112 (define-public perl-date-calc-xs
2113 (package
2114 (name "perl-date-calc-xs")
2115 (version "6.4")
2116 (source
2117 (origin
2118 (method url-fetch)
2119 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2120 "Date-Calc-XS-" version ".tar.gz"))
2121 (sha256
2122 (base32
2123 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2124 (build-system perl-build-system)
2125 (propagated-inputs
2126 `(("perl-bit-vector" ,perl-bit-vector)
2127 ("perl-carp-clan" ,perl-carp-clan)
2128 ("perl-date-calc" ,perl-date-calc)))
2129 (home-page "https://metacpan.org/release/Date-Calc-XS")
2130 (synopsis "XS wrapper for Date::Calc")
2131 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2132 Date::Calc.")
2133 (license (list (package-license perl) lgpl2.0+))))
2134
2135 (define-public perl-date-manip
2136 (package
2137 (name "perl-date-manip")
2138 (version "6.76")
2139 (source
2140 (origin
2141 (method url-fetch)
2142 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2143 "Date-Manip-" version ".tar.gz"))
2144 (sha256
2145 (base32 "1a33mpkx7qqb9nqxyh2kkb596d8xq6jw0ljrd4xrwiz30f6cg1qw"))))
2146 (build-system perl-build-system)
2147 (native-inputs `(("perl-module-build" ,perl-module-build)))
2148 (arguments
2149 ;; Tests would require tzdata for timezone information, but tzdata is in
2150 ;; (gnu packages base) which would create a circular dependency. TODO:
2151 ;; Maybe put this package elsewhere so we can turn on tests.
2152 '(#:tests? #f))
2153 (home-page "https://metacpan.org/release/Date-Manip")
2154 (synopsis "Date manipulation routines")
2155 (description "Date::Manip is a series of modules for common date/time
2156 operations, such as comparing two times, determining a date a given amount of
2157 time from another, or parsing international times.")
2158 (license (package-license perl))))
2159
2160 (define-public perl-date-simple
2161 (package
2162 (name "perl-date-simple")
2163 (version "3.03")
2164 (source
2165 (origin
2166 (method url-fetch)
2167 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2168 "Date-Simple-" version ".tar.gz"))
2169 (sha256
2170 (base32
2171 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2172 (build-system perl-build-system)
2173 (home-page "https://metacpan.org/release/Date-Simple")
2174 (synopsis "Simple date handling")
2175 (description "Dates are complex enough without times and timezones. This
2176 module may be used to create simple date objects. It handles validation,
2177 interval arithmetic, and day-of-week calculation. It does not deal with
2178 hours, minutes, seconds, and time zones.")
2179 ;; Can be used with either license.
2180 (license (list (package-license perl) gpl2+))))
2181
2182 (define-public perl-datetime
2183 (package
2184 (name "perl-datetime")
2185 (version "1.50")
2186 (source
2187 (origin
2188 (method url-fetch)
2189 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2190 "DateTime-" version ".tar.gz"))
2191 (sha256
2192 (base32
2193 "165iqk1xvhs5j0kzsipa7aqycx3h37wqsl2r4jl104yqvmqhqszd"))))
2194 (build-system perl-build-system)
2195 (native-inputs
2196 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2197 ("perl-module-build" ,perl-module-build)
2198 ("perl-test-fatal" ,perl-test-fatal)
2199 ("perl-test-warnings" ,perl-test-warnings)))
2200 (propagated-inputs
2201 `(("perl-datetime-locale" ,perl-datetime-locale)
2202 ("perl-datetime-timezone" ,perl-datetime-timezone)
2203 ("perl-file-sharedir" ,perl-file-sharedir)
2204 ("perl-params-validate" ,perl-params-validate)
2205 ("perl-try-tiny" ,perl-try-tiny)))
2206 (home-page "https://metacpan.org/release/DateTime")
2207 (synopsis "Date and time object for Perl")
2208 (description "DateTime is a class for the representation of date/time
2209 combinations. It represents the Gregorian calendar, extended backwards in
2210 time before its creation (in 1582).")
2211 (license artistic2.0)))
2212
2213 (define-public perl-datetime-calendar-julian
2214 (package
2215 (name "perl-datetime-calendar-julian")
2216 (version "0.100")
2217 (source
2218 (origin
2219 (method url-fetch)
2220 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2221 "DateTime-Calendar-Julian-" version ".tar.gz"))
2222 (sha256
2223 (base32 "0gbw7rh706qk5jlmmz3yzsm0ilzp39kyar28g4j6d57my8cwaipx"))))
2224 (build-system perl-build-system)
2225 ;; Only needed for tests
2226 (native-inputs
2227 `(("perl-datetime" ,perl-datetime)))
2228 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2229 (synopsis "Dates in the Julian calendar")
2230 (description "This package is a companion module to @code{DateTime.pm}.
2231 It implements the Julian calendar. It supports everything that
2232 @code{DateTime.pm} supports and more: about one day per century more, to be
2233 precise.")
2234 (license (package-license perl))))
2235
2236 (define-public perl-datetime-set
2237 (package
2238 (name "perl-datetime-set")
2239 (version "0.3900")
2240 (source
2241 (origin
2242 (method url-fetch)
2243 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2244 "DateTime-Set-" version ".tar.gz"))
2245 (sha256
2246 (base32
2247 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2248 (build-system perl-build-system)
2249 (native-inputs
2250 `(("perl-module-build" ,perl-module-build)))
2251 (propagated-inputs
2252 `(("perl-datetime" ,perl-datetime)
2253 ("perl-params-validate" ,perl-params-validate)
2254 ("perl-set-infinite" ,perl-set-infinite)))
2255 (home-page "https://metacpan.org/release/DateTime-Set")
2256 (synopsis "DateTime set objects")
2257 (description "The DateTime::Set module provides a date/time sets
2258 implementation. It allows, for example, the generation of groups of dates,
2259 like \"every wednesday\", and then find all the dates matching that pattern,
2260 within a time range.")
2261 (license (package-license perl))))
2262
2263 (define-public perl-datetime-event-ical
2264 (package
2265 (name "perl-datetime-event-ical")
2266 (version "0.13")
2267 (source
2268 (origin
2269 (method url-fetch)
2270 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2271 "DateTime-Event-ICal-" version ".tar.gz"))
2272 (sha256
2273 (base32
2274 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2275 (build-system perl-build-system)
2276 (propagated-inputs
2277 `(("perl-datetime" ,perl-datetime)
2278 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2279 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2280 (synopsis "DateTime rfc2445 recurrences")
2281 (description "This module provides convenience methods that let you easily
2282 create DateTime::Set objects for RFC 2445 style recurrences.")
2283 (license (package-license perl))))
2284
2285 (define-public perl-datetime-event-recurrence
2286 (package
2287 (name "perl-datetime-event-recurrence")
2288 (version "0.19")
2289 (source
2290 (origin
2291 (method url-fetch)
2292 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2293 "DateTime-Event-Recurrence-" version ".tar.gz"))
2294 (sha256
2295 (base32
2296 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2297 (build-system perl-build-system)
2298 (propagated-inputs
2299 `(("perl-datetime" ,perl-datetime)
2300 ("perl-datetime-set" ,perl-datetime-set)))
2301 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2302 (synopsis "DateTime::Set extension for basic recurrences")
2303 (description "This module provides convenience methods that let you easily
2304 create DateTime::Set objects for various recurrences, such as \"once a month\"
2305 or \"every day\". You can also create more complicated recurrences, such as
2306 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2307 (license (package-license perl))))
2308
2309 (define-public perl-datetime-format-builder
2310 (package
2311 (name "perl-datetime-format-builder")
2312 (version "0.82")
2313 (source
2314 (origin
2315 (method url-fetch)
2316 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2317 "DateTime-Format-Builder-" version ".tar.gz"))
2318 (sha256
2319 (base32
2320 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
2321 (build-system perl-build-system)
2322 (propagated-inputs
2323 `(("perl-class-factory-util" ,perl-class-factory-util)
2324 ("perl-datetime" ,perl-datetime)
2325 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2326 ("perl-params-validate" ,perl-params-validate)))
2327 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
2328 (synopsis "Create DateTime parser classes and objects")
2329 (description "DateTime::Format::Builder creates DateTime parsers. Many
2330 string formats of dates and times are simple and just require a basic regular
2331 expression to extract the relevant information. Builder provides a simple way
2332 to do this without writing reams of structural code.")
2333 (license artistic2.0)))
2334
2335 (define-public perl-datetime-format-flexible
2336 (package
2337 (name "perl-datetime-format-flexible")
2338 (version "0.28")
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2343 "DateTime-Format-Flexible-" version ".tar.gz"))
2344 (sha256
2345 (base32
2346 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2347 (build-system perl-build-system)
2348 (propagated-inputs
2349 `(("perl-datetime" ,perl-datetime)
2350 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2351 ("perl-datetime-timezone" ,perl-datetime-timezone)
2352 ("perl-list-moreutils" ,perl-list-moreutils)
2353 ("perl-module-pluggable" ,perl-module-pluggable)
2354 ("perl-test-mocktime" ,perl-test-mocktime)))
2355 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
2356 (synopsis "Parse data/time strings")
2357 (description "DateTime::Format::Flexible attempts to take any string you
2358 give it and parse it into a DateTime object.")
2359 (license (package-license perl))))
2360
2361 (define-public perl-datetime-format-ical
2362 (package
2363 (name "perl-datetime-format-ical")
2364 (version "0.09")
2365 (source
2366 (origin
2367 (method url-fetch)
2368 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2369 "DateTime-Format-ICal-" version ".tar.gz"))
2370 (sha256
2371 (base32
2372 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2373 (build-system perl-build-system)
2374 (native-inputs
2375 `(("perl-module-build" ,perl-module-build)))
2376 (propagated-inputs
2377 `(("perl-datetime" ,perl-datetime)
2378 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2379 ("perl-datetime-set" ,perl-datetime-set)
2380 ("perl-datetime-timezone" ,perl-datetime-timezone)
2381 ("perl-params-validate" ,perl-params-validate)))
2382 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
2383 (synopsis "Parse and format iCal datetime and duration strings")
2384 (description "This module understands the ICal date/time and duration
2385 formats, as defined in RFC 2445. It can be used to parse these formats in
2386 order to create the appropriate objects.")
2387 (license (package-license perl))))
2388
2389 (define-public perl-datetime-format-natural
2390 (package
2391 (name "perl-datetime-format-natural")
2392 (version "1.06")
2393 (source
2394 (origin
2395 (method url-fetch)
2396 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2397 "DateTime-Format-Natural-" version ".tar.gz"))
2398 (sha256
2399 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
2400 (build-system perl-build-system)
2401 (native-inputs
2402 `(("perl-module-build" ,perl-module-build)
2403 ("perl-module-util" ,perl-module-util)
2404 ("perl-test-mocktime" ,perl-test-mocktime)))
2405 (propagated-inputs
2406 `(("perl-boolean" ,perl-boolean)
2407 ("perl-clone" ,perl-clone)
2408 ("perl-date-calc" ,perl-date-calc)
2409 ("perl-date-calc-xs" ,perl-date-calc-xs)
2410 ("perl-datetime" ,perl-datetime)
2411 ("perl-datetime-timezone" ,perl-datetime-timezone)
2412 ("perl-list-moreutils" ,perl-list-moreutils)
2413 ("perl-params-validate" ,perl-params-validate)))
2414 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
2415 (synopsis "Machine-readable date/time with natural parsing")
2416 (description "DateTime::Format::Natural takes a string with a human
2417 readable date/time and creates a machine readable one by applying natural
2418 parsing logic.")
2419 (license (package-license perl))))
2420
2421 (define-public perl-datetime-format-strptime
2422 (package
2423 (name "perl-datetime-format-strptime")
2424 (version "1.76")
2425 (source
2426 (origin
2427 (method url-fetch)
2428 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2429 "DateTime-Format-Strptime-" version ".tar.gz"))
2430 (sha256
2431 (base32
2432 "03dmzi9n6jmnfjmf0ld5sdmi3ib6jrhz25cjzv7d58ypdr32cg2r"))))
2433 (build-system perl-build-system)
2434 (propagated-inputs
2435 `(("perl-datetime" ,perl-datetime)
2436 ("perl-datetime-locale" ,perl-datetime-locale)
2437 ("perl-datetime-timezone" ,perl-datetime-timezone)
2438 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2439 ("perl-params-validate" ,perl-params-validate)
2440 ("perl-sub-name" ,perl-sub-name)
2441 ("perl-test-warnings" ,perl-test-warnings)))
2442 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
2443 (synopsis "Parse and format strp and strf time patterns")
2444 (description "This module implements most of `strptime(3)`, the POSIX
2445 function that is the reverse of `strftime(3)`, for `DateTime`. While
2446 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2447 takes a string and a pattern and returns the `DateTime` object associated.")
2448 (license artistic2.0)))
2449
2450 (define-public perl-datetime-locale
2451 (package
2452 (name "perl-datetime-locale")
2453 (version "1.23")
2454 (source
2455 (origin
2456 (method url-fetch)
2457 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2458 "DateTime-Locale-" version ".tar.gz"))
2459 (sha256
2460 (base32
2461 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
2462 (build-system perl-build-system)
2463 (native-inputs
2464 `(("perl-file-sharedir" ,perl-file-sharedir)
2465 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
2466 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2467 ("perl-test-warnings" ,perl-test-warnings)
2468 ("perl-test-requires" ,perl-test-requires)
2469 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2470 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2471 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2472 ("perl-module-build" ,perl-module-build)))
2473 (propagated-inputs
2474 `(("perl-list-moreutils" ,perl-list-moreutils)
2475 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2476 (home-page "https://metacpan.org/release/DateTime-Locale")
2477 (synopsis "Localization support for DateTime.pm")
2478 (description "The DateTime::Locale modules provide localization data for
2479 the DateTime.pm class.")
2480 (license (package-license perl))))
2481
2482 (define-public perl-datetime-timezone
2483 (package
2484 (name "perl-datetime-timezone")
2485 (version "2.23")
2486 (source
2487 (origin
2488 (method url-fetch)
2489 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2490 "DateTime-TimeZone-" version ".tar.gz"))
2491 (sha256
2492 (base32
2493 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
2494 (build-system perl-build-system)
2495 (native-inputs
2496 `(("perl-test-fatal" ,perl-test-fatal)
2497 ("perl-test-requires" ,perl-test-requires)))
2498 (propagated-inputs
2499 `(("perl-class-singleton" ,perl-class-singleton)
2500 ("perl-list-allutils" ,perl-list-allutils)
2501 ("perl-module-runtime" ,perl-module-runtime)
2502 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2503 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2504 ("perl-try-tiny" ,perl-try-tiny)))
2505 (home-page "https://metacpan.org/release/DateTime-TimeZone")
2506 (synopsis "Time zone object for Perl")
2507 (description "This class is the base class for all time zone objects. A
2508 time zone is represented internally as a set of observances, each of which
2509 describes the offset from GMT for a given time period. Note that without the
2510 DateTime module, this module does not do much. It's primary interface is
2511 through a DateTime object, and most users will not need to directly use
2512 DateTime::TimeZone methods.")
2513 (license (package-license perl))))
2514
2515 (define-public perl-datetimex-easy
2516 (package
2517 (name "perl-datetimex-easy")
2518 (version "0.089")
2519 (source
2520 (origin
2521 (method url-fetch)
2522 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2523 "DateTimeX-Easy-" version ".tar.gz"))
2524 (sha256
2525 (base32
2526 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2527 (build-system perl-build-system)
2528 (native-inputs
2529 `(("perl-test-most" ,perl-test-most)))
2530 (propagated-inputs
2531 `(("perl-datetime" ,perl-datetime)
2532 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2533 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2534 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2535 ("perl-timedate" ,perl-timedate)))
2536 (home-page "https://metacpan.org/release/DateTimeX-Easy")
2537 (synopsis "Parse date/time strings")
2538 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2539 to create DateTime objects, with some custom tweaks to smooth out the rough
2540 edges (mainly concerning timezone detection and selection).")
2541 (license (package-license perl))))
2542
2543 (define-public perl-datetime-format-mail
2544 (package
2545 (name "perl-datetime-format-mail")
2546 (version "0.403")
2547 (source (origin
2548 (method url-fetch)
2549 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2550 "DateTime-Format-Mail-" version ".tar.gz"))
2551 (sha256
2552 (base32
2553 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2554 (build-system perl-build-system)
2555 (inputs
2556 `(("perl-datetime" ,perl-datetime)
2557 ("perl-params-validate" ,perl-params-validate)))
2558 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
2559 (synopsis "Convert between DateTime and RFC2822/822 formats")
2560 (description "RFCs 2822 and 822 specify date formats to be used by email.
2561 This module parses and emits such dates.")
2562 (license (package-license perl))))
2563
2564 (define-public perl-datetime-format-w3cdtf
2565 (package
2566 (name "perl-datetime-format-w3cdtf")
2567 (version "0.07")
2568 (source (origin
2569 (method url-fetch)
2570 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2571 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2572 (sha256
2573 (base32
2574 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2575 (build-system perl-build-system)
2576 (inputs
2577 `(("perl-datetime" ,perl-datetime)))
2578 (native-inputs
2579 `(("perl-test-pod" ,perl-test-pod)
2580 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2581 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
2582 (synopsis "Parse and format W3CDTF datetime strings")
2583 (description
2584 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2585 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2586 format of RSS 1.0. It can be used to parse these formats in order to create
2587 the appropriate objects.")
2588 (license (package-license perl))))
2589
2590 (define-public perl-devel-caller
2591 (package
2592 (name "perl-devel-caller")
2593 (version "2.06")
2594 (source
2595 (origin
2596 (method url-fetch)
2597 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2598 "Devel-Caller-" version ".tar.gz"))
2599 (sha256
2600 (base32
2601 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2602 (build-system perl-build-system)
2603 (propagated-inputs
2604 `(("perl-padwalker" ,perl-padwalker)))
2605 (home-page "https://metacpan.org/release/Devel-Caller")
2606 (synopsis "Meatier version of caller")
2607 (description "Devel::Caller provides meatier version of caller.")
2608 (license (package-license perl))))
2609
2610 (define-public perl-devel-checkbin
2611 (package
2612 (name "perl-devel-checkbin")
2613 (version "0.04")
2614 (source
2615 (origin
2616 (method url-fetch)
2617 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2618 "Devel-CheckBin-" version ".tar.gz"))
2619 (sha256
2620 (base32
2621 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
2622 (build-system perl-build-system)
2623 (native-inputs `(("perl-module-build" ,perl-module-build)))
2624 (home-page "https://metacpan.org/release/Devel-CheckBin")
2625 (synopsis "Check that a command is available")
2626 (description "Devel::CheckBin is a perl module that checks whether a
2627 particular command is available.")
2628 (license (package-license perl))))
2629
2630 (define-public perl-devel-checklib
2631 (package
2632 (name "perl-devel-checklib")
2633 (version "1.13")
2634 (source
2635 (origin
2636 (method url-fetch)
2637 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
2638 version ".tar.gz"))
2639 (sha256
2640 (base32 "1a19qkwxwz3wqb16cdabymfbf9kiydiifw90nd5srpq5hy8gvb94"))))
2641 (build-system perl-build-system)
2642 (native-inputs
2643 `(("perl-io-captureoutput" ,perl-io-captureoutput)
2644 ("perl-mock-config" ,perl-mock-config)))
2645 (home-page "https://metacpan.org/release/Devel-CheckLib")
2646 (synopsis "Check that a library is available")
2647 (description
2648 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
2649 C library and its headers are available. You can also check for the presence of
2650 particular functions in a library, or even that those functions return
2651 particular results.")
2652 (license perl-license)))
2653
2654 (define-public perl-devel-checkcompiler
2655 (package
2656 (name "perl-devel-checkcompiler")
2657 (version "0.07")
2658 (source (origin
2659 (method url-fetch)
2660 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2661 "Devel-CheckCompiler-" version ".tar.gz"))
2662 (sha256
2663 (base32
2664 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2665 (build-system perl-build-system)
2666 (native-inputs
2667 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2668 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
2669 (synopsis "Check compiler availability")
2670 (description "@code{Devel::CheckCompiler} is a tiny module to check
2671 whether a compiler is available. It can test for a C99 compiler, or
2672 you can tell it to compile a C source file with optional linker flags.")
2673 (license (package-license perl))))
2674
2675 (define-public perl-devel-cycle
2676 (package
2677 (name "perl-devel-cycle")
2678 (version "1.12")
2679 (source
2680 (origin
2681 (method url-fetch)
2682 (uri (string-append
2683 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2684 version
2685 ".tar.gz"))
2686 (sha256
2687 (base32
2688 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2689 (build-system perl-build-system)
2690 (home-page
2691 "https://metacpan.org/release/Devel-Cycle")
2692 (synopsis "Find memory cycles in objects")
2693 (description
2694 "@code{Devel::Cycle} This is a tool for finding circular references in
2695 objects and other types of references. Because of Perl's reference-count
2696 based memory management, circular references will cause memory leaks.")
2697 (license perl-license)))
2698
2699 (define-public perl-devel-globaldestruction
2700 (package
2701 (name "perl-devel-globaldestruction")
2702 (version "0.14")
2703 (source
2704 (origin
2705 (method url-fetch)
2706 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2707 "Devel-GlobalDestruction-" version ".tar.gz"))
2708 (sha256
2709 (base32
2710 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2711 (build-system perl-build-system)
2712 (propagated-inputs
2713 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2714 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
2715 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2716 (description "Devel::GlobalDestruction provides a function returning the
2717 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2718 (license (package-license perl))))
2719
2720 (define-public perl-devel-hide
2721 (package
2722 (name "perl-devel-hide")
2723 (version "0.0010")
2724 (source
2725 (origin
2726 (method url-fetch)
2727 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2728 version ".tar.gz"))
2729 (sha256
2730 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
2731 (build-system perl-build-system)
2732 (propagated-inputs
2733 `(("perl-test-pod" ,perl-test-pod)
2734 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2735 (home-page "https://metacpan.org/release/Devel-Hide")
2736 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2737 (description "Given a list of Perl modules/filenames, this module makes
2738 @code{require} and @code{use} statements fail (no matter whether the specified
2739 files/modules are installed or not).")
2740 (license (package-license perl))))
2741
2742 (define-public perl-devel-lexalias
2743 (package
2744 (name "perl-devel-lexalias")
2745 (version "0.05")
2746 (source
2747 (origin
2748 (method url-fetch)
2749 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2750 "Devel-LexAlias-" version ".tar.gz"))
2751 (sha256
2752 (base32
2753 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2754 (build-system perl-build-system)
2755 (propagated-inputs
2756 `(("perl-devel-caller" ,perl-devel-caller)))
2757 (home-page "https://metacpan.org/release/Devel-LexAlias")
2758 (synopsis "Alias lexical variables")
2759 (description "Devel::LexAlias provides the ability to alias a lexical
2760 variable in a subroutines scope to one of your choosing.")
2761 (license (package-license perl))))
2762
2763 (define-public perl-devel-overloadinfo
2764 (package
2765 (name "perl-devel-overloadinfo")
2766 (version "0.005")
2767 (source
2768 (origin
2769 (method url-fetch)
2770 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2771 "Devel-OverloadInfo-" version ".tar.gz"))
2772 (sha256
2773 (base32
2774 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2775 (build-system perl-build-system)
2776 (native-inputs
2777 `(("perl-test-fatal" ,perl-test-fatal)))
2778 (propagated-inputs
2779 `(("perl-package-stash" ,perl-package-stash)
2780 ("perl-sub-identify" ,perl-sub-identify)
2781 ("perl-mro-compat" ,perl-mro-compat)))
2782 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
2783 (synopsis "Introspect overloaded operators")
2784 (description "Devel::OverloadInfo returns information about overloaded
2785 operators for a given class (or object), including where in the inheritance
2786 hierarchy the overloads are declared and where the code implementing it is.")
2787 (license (package-license perl))))
2788
2789 (define-public perl-devel-partialdump
2790 (package
2791 (name "perl-devel-partialdump")
2792 (version "0.18")
2793 (source
2794 (origin
2795 (method url-fetch)
2796 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2797 "Devel-PartialDump-" version ".tar.gz"))
2798 (sha256
2799 (base32
2800 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2801 (build-system perl-build-system)
2802 (native-inputs
2803 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2804 ("perl-test-warn" ,perl-test-warn)
2805 ("perl-test-simple" ,perl-test-simple)))
2806 (propagated-inputs
2807 `(("perl-class-tiny" ,perl-class-tiny)
2808 ("perl-sub-exporter" ,perl-sub-exporter)
2809 ("perl-namespace-clean" ,perl-namespace-clean)))
2810 (home-page "https://metacpan.org/release/Devel-PartialDump")
2811 (synopsis "Partial dumping of data structures")
2812 (description "This module is a data dumper optimized for logging of
2813 arbitrary parameters.")
2814 (license (package-license perl))))
2815
2816 (define-public perl-devel-stacktrace
2817 (package
2818 (name "perl-devel-stacktrace")
2819 (version "2.03")
2820 (source
2821 (origin
2822 (method url-fetch)
2823 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2824 "Devel-StackTrace-" version ".tar.gz"))
2825 (sha256
2826 (base32
2827 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2828 (build-system perl-build-system)
2829 (home-page "https://metacpan.org/release/Devel-StackTrace")
2830 (synopsis "Object representing a stack trace")
2831 (description "The Devel::StackTrace module contains two classes,
2832 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2833 information that can be retrieved via Perl's caller() function, as well as
2834 providing a simple interface to this data.")
2835 (license artistic2.0)))
2836
2837 (define-public perl-devel-stacktrace-ashtml
2838 (package
2839 (name "perl-devel-stacktrace-ashtml")
2840 (version "0.15")
2841 (source
2842 (origin
2843 (method url-fetch)
2844 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2845 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2846 (sha256
2847 (base32
2848 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2849 (build-system perl-build-system)
2850 (propagated-inputs
2851 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2852 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
2853 (synopsis "Displays stack trace in HTML")
2854 (description "Devel::StackTrace::AsHTML adds as_html method to
2855 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2856 snippet context and function parameters. If you call it on an instance of
2857 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2858 each stack frame.")
2859 (license (package-license perl))))
2860
2861 (define-public perl-devel-symdump
2862 (package
2863 (name "perl-devel-symdump")
2864 (version "2.18")
2865 (source
2866 (origin
2867 (method url-fetch)
2868 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2869 "Devel-Symdump-" version ".tar.gz"))
2870 (sha256
2871 (base32
2872 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2873 (build-system perl-build-system)
2874 (home-page "https://metacpan.org/release/Devel-Symdump")
2875 (synopsis "Dump symbol names or the symbol table")
2876 (description "Devel::Symdump provides access to the perl symbol table.")
2877 (license (package-license perl))))
2878
2879 (define-public perl-digest-hmac
2880 (package
2881 (name "perl-digest-hmac")
2882 (version "1.03")
2883 (source
2884 (origin
2885 (method url-fetch)
2886 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2887 "Digest-HMAC-" version ".tar.gz"))
2888 (sha256
2889 (base32
2890 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2891 (build-system perl-build-system)
2892 (home-page "https://metacpan.org/release/Digest-HMAC")
2893 (synopsis "Keyed-Hashing for Message Authentication")
2894 (description "The Digest::HMAC module follows the common Digest::
2895 interface for the RFC 2104 HMAC mechanism.")
2896 (license (package-license perl))))
2897
2898 (define-public perl-digest-md5
2899 (package
2900 (name "perl-digest-md5")
2901 (version "2.55")
2902 (source
2903 (origin
2904 (method url-fetch)
2905 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2906 version ".tar.gz"))
2907 (sha256
2908 (base32
2909 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2910 (build-system perl-build-system)
2911 (arguments
2912 `(#:phases
2913 (modify-phases %standard-phases
2914 (add-after 'build 'set-permissions
2915 (lambda _
2916 ;; Make MD5.so read-write so it can be stripped.
2917 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
2918 #t)))))
2919 (home-page "https://metacpan.org/release/Digest-MD5")
2920 (synopsis "Perl interface to the MD-5 algorithm")
2921 (description
2922 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2923 algorithm from within Perl programs. The algorithm takes as
2924 input a message of arbitrary length and produces as output a
2925 128-bit \"fingerprint\" or \"message digest\" of the input.")
2926 (license (package-license perl))))
2927
2928 (define-public perl-digest-sha1
2929 (package
2930 (name "perl-digest-sha1")
2931 (version "2.13")
2932 (source (origin
2933 (method url-fetch)
2934 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2935 "Digest-SHA1-" version ".tar.gz"))
2936 (sha256
2937 (base32
2938 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2939 (build-system perl-build-system)
2940 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2941 (description
2942 "This package provides 'Digest::SHA1', an implementation of the NIST
2943 SHA-1 message digest algorithm for use by Perl programs.")
2944 (home-page "https://metacpan.org/release/Digest-SHA1")
2945 (license (package-license perl))))
2946
2947 (define-public perl-dist-checkconflicts
2948 (package
2949 (name "perl-dist-checkconflicts")
2950 (version "0.11")
2951 (source (origin
2952 (method url-fetch)
2953 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2954 "Dist-CheckConflicts-" version ".tar.gz"))
2955 (sha256
2956 (base32
2957 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2958 (build-system perl-build-system)
2959 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2960 (propagated-inputs
2961 `(("perl-module-runtime" ,perl-module-runtime)))
2962 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
2963 (synopsis "Declare version conflicts for your dist")
2964 (description "This module allows you to specify conflicting versions of
2965 modules separately and deal with them after the module is done installing.")
2966 (license (package-license perl))))
2967
2968 (define-public perl-encode-detect
2969 (package
2970 (name "perl-encode-detect")
2971 (version "1.01")
2972 (source
2973 (origin
2974 (method url-fetch)
2975 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2976 "Encode-Detect-" version ".tar.gz"))
2977 (sha256
2978 (base32
2979 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2980 (build-system perl-build-system)
2981 (native-inputs
2982 `(("perl-module-build" ,perl-module-build)))
2983 (home-page "https://metacpan.org/release/Encode-Detect")
2984 (synopsis "Detect the encoding of data")
2985 (description "This package provides a class @code{Encode::Detect} to detect
2986 the encoding of data.")
2987 (license mpl1.1)))
2988
2989 (define-public perl-encode-eucjpascii
2990 (package
2991 (name "perl-encode-eucjpascii")
2992 (version "0.03")
2993 (source
2994 (origin
2995 (method url-fetch)
2996 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2997 "Encode-EUCJPASCII-" version ".tar.gz"))
2998 (sha256
2999 (base32
3000 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3001 (build-system perl-build-system)
3002 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3003 (synopsis "ASCII mapping for eucJP encoding")
3004 (description "This package provides an ASCII mapping for the eucJP
3005 encoding.")
3006 (license (package-license perl))))
3007
3008 (define-public perl-encode-jis2k
3009 (package
3010 (name "perl-encode-jis2k")
3011 (version "0.03")
3012 (source
3013 (origin
3014 (method url-fetch)
3015 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3016 "Encode-JIS2K-" version ".tar.gz"))
3017 (sha256
3018 (base32
3019 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3020 (build-system perl-build-system)
3021 (home-page "https://metacpan.org/release/Encode-JIS2K")
3022 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3023 (description "This package provides encodings for JIS X 0212, which is
3024 also known as JIS 2000.")
3025 (license (package-license perl))))
3026
3027 (define-public perl-encode-hanextra
3028 (package
3029 (name "perl-encode-hanextra")
3030 (version "0.23")
3031 (source
3032 (origin
3033 (method url-fetch)
3034 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3035 "Encode-HanExtra-" version ".tar.gz"))
3036 (sha256
3037 (base32
3038 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3039 (build-system perl-build-system)
3040 (arguments
3041 '(#:phases
3042 (modify-phases %standard-phases
3043 (add-after 'unpack 'set-env
3044 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3045 (home-page "https://metacpan.org/release/Encode-HanExtra")
3046 (synopsis "Additional Chinese encodings")
3047 (description "This Perl module provides Chinese encodings that are not
3048 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3049 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3050 \"UNISYS\".")
3051 (license expat)))
3052
3053 (define-public perl-env-path
3054 (package
3055 (name "perl-env-path")
3056 (version "0.19")
3057 (source
3058 (origin
3059 (method url-fetch)
3060 (uri (string-append
3061 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3062 version
3063 ".tar.gz"))
3064 (sha256
3065 (base32
3066 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3067 (build-system perl-build-system)
3068 (home-page "https://metacpan.org/release/Env-Path")
3069 (synopsis "Advanced operations on path variables")
3070 (description "@code{Env::Path} presents an object-oriented interface to
3071 path variables, defined as that subclass of environment variables which name
3072 an ordered list of file system elements separated by a platform-standard
3073 separator.")
3074 (license (package-license perl))))
3075
3076 (define-public perl-error
3077 (package
3078 (name "perl-error")
3079 (version "0.17027")
3080 (source (origin
3081 (method url-fetch)
3082 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3083 "Error-" version ".tar.gz"))
3084 (sha256
3085 (base32
3086 "1gnkxf12dq2w1jmjpllp5f30ya4nll01jv2sfi24386zfn1arch7"))))
3087 (build-system perl-build-system)
3088 (native-inputs `(("perl-module-build" ,perl-module-build)))
3089 (home-page "https://metacpan.org/release/Error")
3090 (synopsis "OO-ish Error/Exception handling for Perl")
3091 (description "The Error package provides two interfaces. Firstly Error
3092 provides a procedural interface to exception handling. Secondly Error is a
3093 base class for errors/exceptions that can either be thrown, for subsequent
3094 catch, or can simply be recorded.")
3095 (license (package-license perl))))
3096
3097 (define-public perl-eval-closure
3098 (package
3099 (name "perl-eval-closure")
3100 (version "0.14")
3101 (source
3102 (origin
3103 (method url-fetch)
3104 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3105 "Eval-Closure-" version ".tar.gz"))
3106 (sha256
3107 (base32
3108 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3109 (build-system perl-build-system)
3110 (native-inputs
3111 `(("perl-test-fatal" ,perl-test-fatal)
3112 ("perl-test-requires" ,perl-test-requires)))
3113 (propagated-inputs
3114 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3115 (home-page "https://metacpan.org/release/Eval-Closure")
3116 (synopsis "Safely and cleanly create closures via string eval")
3117 (description "String eval is often used for dynamic code generation. For
3118 instance, Moose uses it heavily, to generate inlined versions of accessors and
3119 constructors, which speeds code up at runtime by a significant amount. String
3120 eval is not without its issues however - it's difficult to control the scope
3121 it's used in (which determines which variables are in scope inside the eval),
3122 and it's easy to miss compilation errors, since eval catches them and sticks
3123 them in $@@ instead. This module attempts to solve these problems. It
3124 provides an eval_closure function, which evals a string in a clean
3125 environment, other than a fixed list of specified variables. Compilation
3126 errors are rethrown automatically.")
3127 (license (package-license perl))))
3128
3129 (define-public perl-exception-class
3130 (package
3131 (name "perl-exception-class")
3132 (version "1.44")
3133 (source
3134 (origin
3135 (method url-fetch)
3136 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3137 "Exception-Class-" version ".tar.gz"))
3138 (sha256
3139 (base32
3140 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3141 (build-system perl-build-system)
3142 (propagated-inputs
3143 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3144 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3145 (home-page "https://metacpan.org/release/Exception-Class")
3146 (synopsis "Allows you to declare real exception classes in Perl")
3147 (description "Exception::Class allows you to declare exception hierarchies
3148 in your modules in a \"Java-esque\" manner.")
3149 (license (package-license perl))))
3150
3151 (define-public perl-exporter-lite
3152 (package
3153 (name "perl-exporter-lite")
3154 (version "0.08")
3155 (source (origin
3156 (method url-fetch)
3157 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3158 "Exporter-Lite-" version ".tar.gz"))
3159 (sha256
3160 (base32
3161 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3162 (build-system perl-build-system)
3163 (synopsis "Lightweight exporting of functions and variables")
3164 (description
3165 "Exporter::Lite is an alternative to Exporter, intended to provide a
3166 lightweight subset of the most commonly-used functionality. It supports
3167 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3168 (home-page "https://metacpan.org/release/Exporter-Lite")
3169 (license (package-license perl))))
3170
3171 (define-public perl-exporter-tiny
3172 (package
3173 (name "perl-exporter-tiny")
3174 (version "1.002001")
3175 (source
3176 (origin
3177 (method url-fetch)
3178 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3179 "Exporter-Tiny-" version ".tar.gz"))
3180 (sha256
3181 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
3182 (build-system perl-build-system)
3183 (home-page "https://metacpan.org/release/Exporter-Tiny")
3184 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3185 (description "Exporter::Tiny supports many of Sub::Exporter's
3186 external-facing features including renaming imported functions with the `-as`,
3187 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3188 and alternative installers with the `installler` option. But it's written in
3189 only about 40% as many lines of code and with zero non-core dependencies.")
3190 (license (package-license perl))))
3191
3192 (define-public perl-extutils-installpaths
3193 (package
3194 (name "perl-extutils-installpaths")
3195 (version "0.012")
3196 (source
3197 (origin
3198 (method url-fetch)
3199 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3200 "ExtUtils-InstallPaths-" version ".tar.gz"))
3201 (sha256
3202 (base32
3203 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
3204 (build-system perl-build-system)
3205 (propagated-inputs
3206 `(("perl-extutils-config" ,perl-extutils-config)))
3207 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
3208 (synopsis "Build.PL install path logic made easy")
3209 (description "This module tries to make install path resolution as easy as
3210 possible.")
3211 (license (package-license perl))))
3212
3213 (define-public perl-extutils-config
3214 (package
3215 (name "perl-extutils-config")
3216 (version "0.008")
3217 (source
3218 (origin
3219 (method url-fetch)
3220 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3221 "ExtUtils-Config-" version ".tar.gz"))
3222 (sha256
3223 (base32
3224 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3225 (build-system perl-build-system)
3226 (home-page "https://metacpan.org/release/ExtUtils-Config")
3227 (synopsis "Wrapper for perl's configuration")
3228 (description "ExtUtils::Config is an abstraction around the %Config hash.
3229 By itself it is not a particularly interesting module by any measure, however
3230 it ties together a family of modern toolchain modules.")
3231 (license (package-license perl))))
3232
3233 (define-public perl-extutils-depends
3234 (package
3235 (name "perl-extutils-depends")
3236 (version "0.405")
3237 (source (origin
3238 (method url-fetch)
3239 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3240 "ExtUtils-Depends-" version ".tar.gz"))
3241 (sha256
3242 (base32
3243 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3244 (build-system perl-build-system)
3245 (native-inputs
3246 `(("perl-test-number-delta" ,perl-test-number-delta)))
3247 (home-page "https://metacpan.org/release/ExtUtils-Depends")
3248 (synopsis "Easily build XS extensions that depend on XS extensions")
3249 (description
3250 "This module tries to make it easy to build Perl extensions that use
3251 functions and typemaps provided by other perl extensions. This means that a
3252 perl extension is treated like a shared library that provides also a C and an
3253 XS interface besides the perl one.")
3254 (license (package-license perl))))
3255
3256 (define-public perl-extutils-helpers
3257 (package
3258 (name "perl-extutils-helpers")
3259 (version "0.026")
3260 (source
3261 (origin
3262 (method url-fetch)
3263 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3264 "ExtUtils-Helpers-" version ".tar.gz"))
3265 (sha256
3266 (base32
3267 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
3268 (build-system perl-build-system)
3269 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
3270 (synopsis "Various portability utilities for module builders")
3271 (description "This module provides various portable helper functions for
3272 module building modules.")
3273 (license (package-license perl))))
3274
3275 (define-public perl-extutils-libbuilder
3276 (package
3277 (name "perl-extutils-libbuilder")
3278 (version "0.08")
3279 (source
3280 (origin
3281 (method url-fetch)
3282 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3283 "ExtUtils-LibBuilder-" version ".tar.gz"))
3284 (sha256
3285 (base32
3286 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3287 (build-system perl-build-system)
3288 (native-inputs
3289 `(("perl-module-build" ,perl-module-build)))
3290 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
3291 (synopsis "Tool to build C libraries")
3292 (description "Some Perl modules need to ship C libraries together with
3293 their Perl code. Although there are mechanisms to compile and link (or glue)
3294 C code in your Perl programs, there isn't a clear method to compile standard,
3295 self-contained C libraries. This module main goal is to help in that task.")
3296 (license (package-license perl))))
3297
3298 (define-public perl-extutils-pkgconfig
3299 (package
3300 (name "perl-extutils-pkgconfig")
3301 (version "1.16")
3302 (source (origin
3303 (method url-fetch)
3304 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3305 "ExtUtils-PkgConfig-" version ".tar.gz"))
3306 (sha256
3307 (base32
3308 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3309 (build-system perl-build-system)
3310 (propagated-inputs
3311 `(("pkg-config" ,pkg-config)))
3312 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
3313 (synopsis "Simplistic interface to pkg-config")
3314 (description
3315 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3316 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3317 of perl extensions which bind libraries that @command{pkg-config} knows.
3318 It is really just boilerplate code that you would have written yourself.")
3319 (license lgpl2.1+)))
3320
3321 (define-public perl-file-changenotify
3322 (package
3323 (name "perl-file-changenotify")
3324 (version "0.24")
3325 (source
3326 (origin
3327 (method url-fetch)
3328 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3329 "File-ChangeNotify-" version ".tar.gz"))
3330 (sha256
3331 (base32
3332 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3333 (build-system perl-build-system)
3334 (native-inputs
3335 `(("perl-module-build" ,perl-module-build)
3336 ("perl-test-exception" ,perl-test-exception)))
3337 (propagated-inputs
3338 `(("perl-class-load" ,perl-class-load)
3339 ("perl-list-moreutils" ,perl-list-moreutils)
3340 ("perl-module-pluggable" ,perl-module-pluggable)
3341 ("perl-moose" ,perl-moose)
3342 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3343 ("perl-moosex-semiaffordanceaccessor"
3344 ,perl-moosex-semiaffordanceaccessor)
3345 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3346 (home-page "https://metacpan.org/release/File-ChangeNotify")
3347 (synopsis "Watch for changes to files")
3348 (description "This module provides a class to monitor a directory for
3349 changes made to any file.")
3350 (license artistic2.0)))
3351
3352 (define-public perl-file-configdir
3353 (package
3354 (name "perl-file-configdir")
3355 (version "0.018")
3356 (source
3357 (origin
3358 (method url-fetch)
3359 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3360 "File-ConfigDir-" version ".tar.gz"))
3361 (sha256
3362 (base32
3363 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3364 (build-system perl-build-system)
3365 (propagated-inputs
3366 `(("perl-file-homedir" ,perl-file-homedir)
3367 ("perl-list-moreutils" ,perl-list-moreutils)))
3368 (home-page "https://metacpan.org/release/File-ConfigDir")
3369 (synopsis "Get directories of configuration files")
3370 (description "This module is a helper for installing, reading and finding
3371 configuration file locations. @code{File::ConfigDir} is a module to help out
3372 when Perl modules (especially applications) need to read and store
3373 configuration files from more than one location.")
3374 (license (package-license perl))))
3375
3376 (define-public perl-file-copy-recursive
3377 (package
3378 (name "perl-file-copy-recursive")
3379 (version "0.38")
3380 (source
3381 (origin
3382 (method url-fetch)
3383 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3384 "File-Copy-Recursive-" version ".tar.gz"))
3385 (sha256
3386 (base32
3387 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3388 (build-system perl-build-system)
3389 (home-page "https://metacpan.org/release/File-Copy-Recursive")
3390 (synopsis "Recursively copy files and directories")
3391 (description "This module has 3 functions: one to copy files only, one to
3392 copy directories only, and one to do either depending on the argument's
3393 type.")
3394 (license (package-license perl))))
3395
3396 (define-public perl-file-find-rule
3397 (package
3398 (name "perl-file-find-rule")
3399 (version "0.34")
3400 (source
3401 (origin
3402 (method url-fetch)
3403 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3404 "File-Find-Rule-" version ".tar.gz"))
3405 (sha256
3406 (base32
3407 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3408 (build-system perl-build-system)
3409 (propagated-inputs
3410 `(("perl-text-glob" ,perl-text-glob)
3411 ("perl-number-compare" ,perl-number-compare)))
3412 (home-page "https://metacpan.org/release/File-Find-Rule")
3413 (synopsis "Alternative interface to File::Find")
3414 (description "File::Find::Rule is a friendlier interface to File::Find.
3415 It allows you to build rules which specify the desired files and
3416 directories.")
3417 (license (package-license perl))))
3418
3419 (define-public perl-file-find-rule-perl
3420 (package
3421 (name "perl-file-find-rule-perl")
3422 (version "1.15")
3423 (source
3424 (origin
3425 (method url-fetch)
3426 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3427 "File-Find-Rule-Perl-" version ".tar.gz"))
3428 (sha256
3429 (base32
3430 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3431 (build-system perl-build-system)
3432 (propagated-inputs
3433 `(("perl-file-find-rule" ,perl-file-find-rule)
3434 ("perl-params-util" ,perl-params-util)
3435 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3436 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
3437 (synopsis "Common rules for searching for Perl things")
3438 (description "File::Find::Rule::Perl provides methods for finding various
3439 types Perl-related files, or replicating search queries run on a distribution
3440 in various parts of the CPAN ecosystem.")
3441 (license (package-license perl))))
3442
3443 (define-public perl-file-grep
3444 (package
3445 (name "perl-file-grep")
3446 (version "0.02")
3447 (source
3448 (origin
3449 (method url-fetch)
3450 (uri (string-append
3451 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3452 version
3453 ".tar.gz"))
3454 (sha256
3455 (base32
3456 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3457 (build-system perl-build-system)
3458 (home-page "https://metacpan.org/release/File-Grep")
3459 (synopsis "Matches patterns in a series of files")
3460 (description "@code{File::Grep} provides similar functionality as perl's
3461 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3462 over a passed filelist instead of arrays. While trivial, this module can
3463 provide a quick dropin when such functionality is needed.")
3464 (license (package-license perl))))
3465
3466 (define-public perl-file-homedir
3467 (package
3468 (name "perl-file-homedir")
3469 (version "1.004")
3470 (source
3471 (origin
3472 (method url-fetch)
3473 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3474 "File-HomeDir-" version ".tar.gz"))
3475 (sha256
3476 (base32
3477 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
3478 (build-system perl-build-system)
3479 (propagated-inputs
3480 `(("perl-file-which" ,perl-file-which)))
3481 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3482 (home-page "https://metacpan.org/release/File-HomeDir")
3483 (synopsis "Find your home and other directories on any platform")
3484 (description "File::HomeDir is a module for locating the directories that
3485 are \"owned\" by a user (typically your user) and to solve the various issues
3486 that arise trying to find them consistently across a wide variety of
3487 platforms.")
3488 (license (package-license perl))))
3489
3490 (define-public perl-file-path
3491 (package
3492 (name "perl-file-path")
3493 (version "2.16")
3494 (source
3495 (origin
3496 (method url-fetch)
3497 (uri (string-append
3498 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3499 version
3500 ".tar.gz"))
3501 (sha256
3502 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
3503 (build-system perl-build-system)
3504 (home-page "https://metacpan.org/release/File-Path")
3505 (synopsis "Create or remove directory trees")
3506 (description "This module provide a convenient way to create directories
3507 of arbitrary depth and to delete an entire directory subtree from the
3508 file system.")
3509 (license (package-license perl))))
3510
3511 (define-public perl-file-pushd
3512 (package
3513 (name "perl-file-pushd")
3514 (version "1.016")
3515 (source
3516 (origin
3517 (method url-fetch)
3518 (uri (string-append
3519 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3520 version
3521 ".tar.gz"))
3522 (sha256
3523 (base32
3524 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3525 (build-system perl-build-system)
3526 (home-page
3527 "https://metacpan.org/release/File-pushd")
3528 (synopsis
3529 "Change directory temporarily for a limited scope")
3530 (description "@code{File::pushd} does a temporary @code{chdir} that is
3531 easily and automatically reverted, similar to @code{pushd} in some Unix
3532 command shells. It works by creating an object that caches the original
3533 working directory. When the object is destroyed, the destructor calls
3534 @code{chdir} to revert to the original working directory. By storing the
3535 object in a lexical variable with a limited scope, this happens automatically
3536 at the end of the scope.")
3537 (license asl2.0)))
3538
3539 (define-public perl-file-list
3540 (package
3541 (name "perl-file-list")
3542 (version "0.3.1")
3543 (source (origin
3544 (method url-fetch)
3545 (uri (string-append
3546 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3547 version ".tar.gz"))
3548 (sha256
3549 (base32
3550 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3551 (build-system perl-build-system)
3552 (arguments
3553 `(#:phases
3554 (modify-phases %standard-phases
3555 (add-after 'unpack 'cd
3556 (lambda _ (chdir "List") #t)))))
3557 (license (package-license perl))
3558 (synopsis "Perl extension for crawling directory trees and compiling
3559 lists of files")
3560 (description
3561 "The File::List module crawls the directory tree starting at the
3562 provided base directory and can return files (and/or directories if desired)
3563 matching a regular expression.")
3564 (home-page "https://metacpan.org/release/File-List")))
3565
3566 (define-public perl-file-readbackwards
3567 (package
3568 (name "perl-file-readbackwards")
3569 (version "1.05")
3570 (source
3571 (origin
3572 (method url-fetch)
3573 (uri (string-append
3574 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3575 version
3576 ".tar.gz"))
3577 (sha256
3578 (base32
3579 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3580 (build-system perl-build-system)
3581 (home-page "https://metacpan.org/release/File-ReadBackwards")
3582 (synopsis "Read a file backwards by lines")
3583 (description "This module reads a file backwards line by line. It is
3584 simple to use, memory efficient and fast. It supports both an object and a
3585 tied handle interface.
3586
3587 It is intended for processing log and other similar text files which typically
3588 have their newest entries appended to them. By default files are assumed to
3589 be plain text and have a line ending appropriate to the OS. But you can set
3590 the input record separator string on a per file basis.")
3591 (license perl-license)))
3592
3593 (define-public perl-file-remove
3594 (package
3595 (name "perl-file-remove")
3596 (version "1.58")
3597 (source
3598 (origin
3599 (method url-fetch)
3600 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3601 "File-Remove-" version ".tar.gz"))
3602 (sha256
3603 (base32
3604 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
3605 (build-system perl-build-system)
3606 (native-inputs
3607 `(("perl-module-build" ,perl-module-build)))
3608 (home-page "https://metacpan.org/release/File-Remove")
3609 (synopsis "Remove files and directories in Perl")
3610 (description "@code{File::Remove::remove} removes files and directories.
3611 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
3612 given a list of files, it will not remove directories; this module remedies
3613 that. It also accepts wildcards, * and ?, as arguments for file names.")
3614 (license (package-license perl))))
3615
3616 (define-public perl-file-sharedir
3617 (package
3618 (name "perl-file-sharedir")
3619 (version "1.116")
3620 (source
3621 (origin
3622 (method url-fetch)
3623 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3624 "File-ShareDir-" version ".tar.gz"))
3625 (sha256
3626 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
3627 (build-system perl-build-system)
3628 (native-inputs
3629 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3630 (propagated-inputs
3631 `(("perl-class-inspector" ,perl-class-inspector)))
3632 (home-page "https://metacpan.org/release/File-ShareDir")
3633 (synopsis "Locate per-dist and per-module shared files")
3634 (description "The intent of File::ShareDir is to provide a companion to
3635 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3636 module to have access to a large amount of read-only data that is stored on
3637 the file-system at run-time. Once the files have been installed to the
3638 correct directory, you can use File::ShareDir to find your files again after
3639 the installation.")
3640 (license (package-license perl))))
3641
3642 (define-public perl-file-sharedir-dist
3643 (package
3644 (name "perl-file-sharedir-dist")
3645 (version "0.07")
3646 (source
3647 (origin
3648 (method url-fetch)
3649 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3650 "File-ShareDir-Dist-" version ".tar.gz"))
3651 (sha256
3652 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
3653 (build-system perl-build-system)
3654 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
3655 (synopsis "Locate per-dist shared files")
3656 (description "File::ShareDir::Dist finds share directories for
3657 distributions. It is a companion module to File::ShareDir.")
3658 (license (package-license perl))))
3659
3660 (define-public perl-file-sharedir-install
3661 (package
3662 (name "perl-file-sharedir-install")
3663 (version "0.13")
3664 (source
3665 (origin
3666 (method url-fetch)
3667 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3668 "File-ShareDir-Install-" version ".tar.gz"))
3669 (sha256
3670 (base32
3671 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3672 (build-system perl-build-system)
3673 (native-inputs
3674 `(("perl-module-build" ,perl-module-build)))
3675 (home-page "https://metacpan.org/release/File-ShareDir-Install")
3676 (synopsis "Install shared files")
3677 (description "File::ShareDir::Install allows you to install read-only data
3678 files from a distribution. It is a companion module to File::ShareDir, which
3679 allows you to locate these files after installation.")
3680 (license (package-license perl))))
3681
3682 (define-public perl-file-slurp
3683 (package
3684 (name "perl-file-slurp")
3685 (version "9999.26")
3686 (source
3687 (origin
3688 (method url-fetch)
3689 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
3690 "File-Slurp-" version ".tar.gz"))
3691 (sha256
3692 (base32 "0c09ivl50sg9j75si6cahfp1wgvhqawakb6h5j6hlca6vwjqs9qy"))))
3693 (build-system perl-build-system)
3694 (home-page "https://metacpan.org/release/File-Slurp")
3695 (synopsis "Reading/Writing/Modifying of complete files")
3696 (description "File::Slurp provides subroutines to read or write entire
3697 files with a simple call. It also has a subroutine for reading the list of
3698 file names in a directory.")
3699 (license (package-license perl))))
3700
3701 (define-public perl-file-slurper
3702 (package
3703 (name "perl-file-slurper")
3704 (version "0.012")
3705 (source
3706 (origin
3707 (method url-fetch)
3708 (uri (string-append
3709 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3710 version
3711 ".tar.gz"))
3712 (sha256
3713 (base32
3714 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
3715 (build-system perl-build-system)
3716 (native-inputs
3717 `(("perl-test-warnings" ,perl-test-warnings)))
3718 (propagated-inputs
3719 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3720 (home-page "https://metacpan.org/release/File-Slurper")
3721 (synopsis "Simple, sane and efficient module to slurp a file")
3722 (description "This module provides functions for fast and correct file
3723 slurping and spewing. All functions are optionally exported.")
3724 (license (package-license perl))))
3725
3726 (define-public perl-file-slurp-tiny
3727 (package
3728 (name "perl-file-slurp-tiny")
3729 (version "0.004")
3730 (source (origin
3731 (method url-fetch)
3732 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3733 "File-Slurp-Tiny-" version ".tar.gz"))
3734 (sha256
3735 (base32
3736 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3737 (build-system perl-build-system)
3738 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
3739 (synopsis "Simple file reader and writer")
3740 (description
3741 "This module provides functions for fast reading and writing of files.")
3742 (license (package-license perl))))
3743
3744 (define-public perl-file-temp
3745 (package
3746 (name "perl-file-temp")
3747 (version "0.2309")
3748 (source
3749 (origin
3750 (method url-fetch)
3751 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3752 "File-Temp-" version ".tar.gz"))
3753 (sha256
3754 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
3755 (build-system perl-build-system)
3756 (propagated-inputs
3757 `(("perl-parent" ,perl-parent)))
3758 (home-page "https://metacpan.org/release/File-Temp")
3759 (synopsis "Return name and handle of a temporary file safely")
3760 (description "File::Temp can be used to create and open temporary files in
3761 a safe way.")
3762 (license (package-license perl))))
3763
3764 (define-public perl-file-which
3765 (package
3766 (name "perl-file-which")
3767 (version "1.23")
3768 (source (origin
3769 (method url-fetch)
3770 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3771 "File-Which-" version ".tar.gz"))
3772 (sha256
3773 (base32
3774 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
3775 (build-system perl-build-system)
3776 (native-inputs `(("test-script" ,perl-test-script)))
3777 (synopsis "Portable implementation of the `which' utility")
3778 (description
3779 "File::Which was created to be able to get the paths to executable
3780 programs on systems under which the `which' program wasn't implemented in the
3781 shell.")
3782 (home-page "https://metacpan.org/release/File-Which")
3783 (license (package-license perl))))
3784
3785 (define-public perl-file-zglob
3786 (package
3787 (name "perl-file-zglob")
3788 (version "0.11")
3789 (source (origin
3790 (method url-fetch)
3791 (uri (string-append
3792 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3793 version ".tar.gz"))
3794 (sha256
3795 (base32
3796 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3797 (build-system perl-build-system)
3798 (native-inputs
3799 `(("perl-module-install" ,perl-module-install)))
3800 (home-page "https://metacpan.org/release/File-Zglob")
3801 (synopsis "Extended Unix style glob functionality")
3802 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3803 functionality; it returns a list of file names that match the given pattern.
3804 For instance, it supports the @code{**/*.pm} form.")
3805 (license (package-license perl))))
3806
3807 (define-public perl-getopt-long
3808 (package
3809 (name "perl-getopt-long")
3810 (version "v2.49.1")
3811 (source
3812 (origin
3813 (method url-fetch)
3814 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3815 "Getopt-Long-" (substring version 1) ".tar.gz"))
3816 (sha256
3817 (base32
3818 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3819 (build-system perl-build-system)
3820 (home-page "https://metacpan.org/release/Getopt-Long")
3821 (synopsis "Module to handle parsing command line options")
3822 (description "The @code{Getopt::Long} module implements an extended getopt
3823 function called @code{GetOptions()}. It parses the command line from
3824 @code{ARGV}, recognizing and removing specified options and their possible
3825 values.
3826
3827 This function adheres to the POSIX syntax for command line options, with GNU
3828 extensions. In general, this means that options have long names instead of
3829 single letters, and are introduced with a double dash \"--\". Support for
3830 bundling of command line options, as was the case with the more traditional
3831 single-letter approach, is provided but not enabled by default.")
3832 ;; Can be used with either license.
3833 (license (list (package-license perl) gpl2+))))
3834
3835 (define-public perl-getopt-long-descriptive
3836 (package
3837 (name "perl-getopt-long-descriptive")
3838 (version "0.103")
3839 (source
3840 (origin
3841 (method url-fetch)
3842 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3843 "Getopt-Long-Descriptive-" version ".tar.gz"))
3844 (sha256
3845 (base32
3846 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
3847 (build-system perl-build-system)
3848 (native-inputs
3849 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3850 ("perl-test-fatal" ,perl-test-fatal)
3851 ("perl-test-warnings" ,perl-test-warnings)))
3852 (propagated-inputs
3853 `(("perl-params-validate" ,perl-params-validate)
3854 ("perl-sub-exporter" ,perl-sub-exporter)))
3855 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
3856 (synopsis "Getopt::Long, but simpler and more powerful")
3857 (description "Getopt::Long::Descriptive is yet another Getopt library.
3858 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3859 avoid making you think about its huge array of options. It also provides
3860 usage (help) messages, data validation, and a few other useful features.")
3861 (license (package-license perl))))
3862
3863 (define-public perl-getopt-tabular
3864 (package
3865 (name "perl-getopt-tabular")
3866 (version "0.3")
3867 (source (origin
3868 (method url-fetch)
3869 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3870 "Getopt-Tabular-" version ".tar.gz"))
3871 (sha256
3872 (base32
3873 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3874 (build-system perl-build-system)
3875 (synopsis "Table-driven argument parsing for Perl")
3876 (description
3877 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3878 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3879 (home-page "https://metacpan.org/release/Getopt-Tabular")
3880 (license (package-license perl))))
3881
3882 (define-public perl-graph
3883 (package
3884 (name "perl-graph")
3885 (version "0.9704")
3886 (source
3887 (origin
3888 (method url-fetch)
3889 (uri (string-append
3890 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3891 version
3892 ".tar.gz"))
3893 (sha256
3894 (base32
3895 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3896 (build-system perl-build-system)
3897 (home-page "https://metacpan.org/release/Graph")
3898 (synopsis "Graph data structures and algorithms")
3899 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3900 the abstract data structures.")
3901 (license (package-license perl))))
3902
3903 (define-public perl-guard
3904 (package
3905 (name "perl-guard")
3906 (version "1.023")
3907 (source (origin
3908 (method url-fetch)
3909 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3910 version ".tar.gz"))
3911 (sha256
3912 (base32
3913 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3914 (build-system perl-build-system)
3915 (home-page "https://metacpan.org/release/Guard")
3916 (synopsis "Safe cleanup blocks implemented as guards")
3917 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3918 something (usually an object) that \"guards\" a resource, ensuring that it is
3919 cleaned up when expected.
3920
3921 Specifically, this module supports two different types of guards: guard
3922 objects, which execute a given code block when destroyed, and scoped guards,
3923 which are tied to the scope exit.")
3924 (license (package-license perl))))
3925
3926 (define-public perl-hash-fieldhash
3927 (package
3928 (name "perl-hash-fieldhash")
3929 (version "0.15")
3930 (source
3931 (origin
3932 (method url-fetch)
3933 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3934 "Hash-FieldHash-" version ".tar.gz"))
3935 (sha256
3936 (base32
3937 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3938 (build-system perl-build-system)
3939 (arguments
3940 `(#:phases
3941 (modify-phases %standard-phases
3942 (add-before 'configure 'set-perl-search-path
3943 (lambda _
3944 ;; Work around "dotless @INC" build failure.
3945 (setenv "PERL5LIB"
3946 (string-append (getcwd) ":"
3947 (getenv "PERL5LIB")))
3948 #t)))))
3949 (native-inputs
3950 `(("perl-module-build" ,perl-module-build)
3951 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3952 (home-page "https://metacpan.org/release/Hash-FieldHash")
3953 (synopsis "Lightweight field hash for inside-out objects")
3954 (description "@code{Hash::FieldHash} provides the field hash mechanism
3955 which supports the inside-out technique. It is an alternative to
3956 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3957 relic support.")
3958 (license (package-license perl))))
3959
3960 (define-public perl-hash-merge
3961 (package
3962 (name "perl-hash-merge")
3963 (version "0.200")
3964 (source
3965 (origin
3966 (method url-fetch)
3967 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3968 "Hash-Merge-" version ".tar.gz"))
3969 (sha256
3970 (base32
3971 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3972 (build-system perl-build-system)
3973 (home-page "https://metacpan.org/release/Hash-Merge")
3974 (synopsis "Merge arbitrarily deep hashes into a single hash")
3975 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3976 hash. That is, at any level, it will add non-conflicting key-value pairs from
3977 one hash to the other, and follows a set of specific rules when there are key
3978 value conflicts. The hash is followed recursively, so that deeply nested
3979 hashes that are at the same level will be merged when the parent hashes are
3980 merged.")
3981 (license (package-license perl))))
3982
3983 (define-public perl-hash-multivalue
3984 (package
3985 (name "perl-hash-multivalue")
3986 (version "0.16")
3987 (source
3988 (origin
3989 (method url-fetch)
3990 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
3991 "Hash-MultiValue-" version ".tar.gz"))
3992 (sha256
3993 (base32
3994 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
3995 (build-system perl-build-system)
3996 (home-page "https://metacpan.org/release/Hash-MultiValue")
3997 (synopsis "Store multiple values per key")
3998 (description "Hash::MultiValue is an object (and a plain hash reference)
3999 that may contain multiple values per key, inspired by MultiDict of WebOb.")
4000 (license (package-license perl))))
4001
4002 (define-public perl-importer
4003 (package
4004 (name "perl-importer")
4005 (version "0.025")
4006 (source
4007 (origin
4008 (method url-fetch)
4009 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4010 version ".tar.gz"))
4011 (sha256
4012 (base32
4013 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4014 (build-system perl-build-system)
4015 (home-page "https://metacpan.org/release/Importer")
4016 (synopsis "Alternative but compatible interface to modules that export symbols")
4017 (description "This module acts as a layer between Exporter and modules which
4018 consume exports. It is feature-compatible with Exporter, plus some much needed
4019 extras. You can use this to import symbols from any exporter that follows
4020 Exporters specification. The exporter modules themselves do not need to use or
4021 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4022 variables.")
4023 (license (package-license perl))))
4024
4025 (define-public perl-import-into
4026 (package
4027 (name "perl-import-into")
4028 (version "1.002005")
4029 (source
4030 (origin
4031 (method url-fetch)
4032 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4033 "Import-Into-" version ".tar.gz"))
4034 (sha256
4035 (base32
4036 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4037 (build-system perl-build-system)
4038 (propagated-inputs
4039 `(("perl-module-runtime" ,perl-module-runtime)))
4040 (home-page "https://metacpan.org/release/Import-Into")
4041 (synopsis "Import packages into other packages")
4042 (description "Writing exporters is a pain. Some use Exporter, some use
4043 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4044 some things are pragmas. Exporting on someone else's behalf is harder. The
4045 exporters don't provide a consistent API for this, and pragmas need to have
4046 their import method called directly, since they effect the current unit of
4047 compilation. Import::Into provides global methods to make this painless.")
4048 (license (package-license perl))))
4049
4050 (define-public perl-inc-latest
4051 (package
4052 (name "perl-inc-latest")
4053 (version "0.500")
4054 (source
4055 (origin
4056 (method url-fetch)
4057 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4058 "inc-latest-" version ".tar.gz"))
4059 (sha256
4060 (base32
4061 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4062 (build-system perl-build-system)
4063 (home-page "https://metacpan.org/release/inc-latest")
4064 (synopsis "Use modules in inc/ if newer than installed")
4065 (description "The inc::latest module helps bootstrap configure-time
4066 dependencies for CPAN distributions. These dependencies get bundled into the
4067 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4068 (license asl2.0)))
4069
4070 (define-public perl-indirect
4071 (package
4072 (name "perl-indirect")
4073 (version "0.38")
4074 (source
4075 (origin
4076 (method url-fetch)
4077 (uri (string-append
4078 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4079 version ".tar.gz"))
4080 (sha256
4081 (base32
4082 "13k5a8p903m8x3pcv9qqkzvnb8gpgq36cr3dvn3lk1ngsi9w5ydy"))))
4083 (build-system perl-build-system)
4084 (home-page "https://metacpan.org/release/indirect")
4085 (synopsis "Lexically warn about using the indirect method call syntax")
4086 (description
4087 "Indirect warns about using the indirect method call syntax.")
4088 (license (package-license perl))))
4089
4090 (define-public perl-inline
4091 (package
4092 (name "perl-inline")
4093 (version "0.81")
4094 (source
4095 (origin
4096 (method url-fetch)
4097 (uri (string-append
4098 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
4099 version ".tar.gz"))
4100 (sha256
4101 (base32
4102 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
4103 (build-system perl-build-system)
4104 (native-inputs
4105 `(("perl-test-warn" ,perl-test-warn)))
4106 (home-page "https://metacpan.org/release/Inline")
4107 (synopsis "Write Perl subroutines in other programming languages")
4108 (description "The @code{Inline} module allows you to put source code
4109 from other programming languages directly (inline) in a Perl script or
4110 module. The code is automatically compiled as needed, and then loaded
4111 for immediate access from Perl.")
4112 (license (package-license perl))))
4113
4114 (define-public perl-inline-c
4115 (package
4116 (name "perl-inline-c")
4117 (version "0.78")
4118 (source
4119 (origin
4120 (method url-fetch)
4121 (uri (string-append
4122 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4123 version ".tar.gz"))
4124 (sha256
4125 (base32
4126 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4127 (build-system perl-build-system)
4128 (native-inputs
4129 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4130 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4131 ("perl-test-warn" ,perl-test-warn)
4132 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4133 (propagated-inputs
4134 `(("perl-inline" ,perl-inline)
4135 ("perl-parse-recdescent" ,perl-parse-recdescent)
4136 ("perl-pegex" ,perl-pegex)))
4137 (home-page "https://metacpan.org/release/Inline-C")
4138 (synopsis "C Language Support for Inline")
4139 (description "The @code{Inline::C} module allows you to write Perl
4140 subroutines in C. Since version 0.30 the @code{Inline} module supports
4141 multiple programming languages and each language has its own support module.
4142 This document describes how to use Inline with the C programming language.
4143 It also goes a bit into Perl C internals.")
4144 (license (package-license perl))))
4145
4146 (define-public perl-io-all
4147 (package
4148 (name "perl-io-all")
4149 (version "0.87")
4150 (source
4151 (origin
4152 (method url-fetch)
4153 (uri (string-append
4154 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4155 version
4156 ".tar.gz"))
4157 (sha256
4158 (base32
4159 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4160 (build-system perl-build-system)
4161 (propagated-inputs
4162 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4163 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4164 (home-page "https://metacpan.org/release/IO-All")
4165 (synopsis "@code{IO::All} to Larry Wall!")
4166 (description "@code{IO::All} combines all of the best Perl IO modules into
4167 a single nifty object oriented interface to greatly simplify your everyday
4168 Perl IO idioms. It exports a single function called io, which returns a new
4169 @code{IO::All} object. And that object can do it all!")
4170 (license perl-license)))
4171
4172 (define-public perl-io-captureoutput
4173 (package
4174 (name "perl-io-captureoutput")
4175 (version "1.1104")
4176 (source
4177 (origin
4178 (method url-fetch)
4179 (uri (string-append
4180 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4181 version
4182 ".tar.gz"))
4183 (sha256
4184 (base32
4185 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
4186 (build-system perl-build-system)
4187 (home-page "https://metacpan.org/release/IO-CaptureOutput")
4188 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4189 (description "@code{IO::CaptureOutput} provides routines for capturing
4190 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4191 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4192
4193 This module is no longer recommended by its maintainer. Users are advised to
4194 try @code{Capture::Tiny} instead.")
4195 (license (package-license perl))))
4196
4197 (define-public perl-io-interactive
4198 (package
4199 (name "perl-io-interactive")
4200 (version "1.022")
4201 (source
4202 (origin
4203 (method url-fetch)
4204 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4205 "IO-Interactive-" version ".tar.gz"))
4206 (sha256
4207 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
4208 (build-system perl-build-system)
4209 (home-page "https://metacpan.org/release/IO-Interactive")
4210 (synopsis "Utilities for interactive I/O")
4211 (description "This module provides three utility subroutines that make it
4212 easier to develop interactive applications: is_interactive(), interactive(),
4213 and busy().")
4214 (license (package-license perl))))
4215
4216 (define-public perl-io-string
4217 (package
4218 (name "perl-io-string")
4219 (version "1.08")
4220 (source
4221 (origin
4222 (method url-fetch)
4223 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4224 "IO-String-" version ".tar.gz"))
4225 (sha256
4226 (base32
4227 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4228 (build-system perl-build-system)
4229 (home-page "https://metacpan.org/release/IO-String")
4230 (synopsis "Emulate file interface for in-core strings")
4231 (description "IO::String is an IO::File (and IO::Handle) compatible class
4232 that reads or writes data from in-core strings.")
4233 (license (package-license perl))))
4234
4235 (define-public perl-io-stringy
4236 (package
4237 (name "perl-io-stringy")
4238 (version "2.111")
4239 (source
4240 (origin
4241 (method url-fetch)
4242 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4243 "IO-stringy-" version ".tar.gz"))
4244 (sha256
4245 (base32
4246 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4247 (build-system perl-build-system)
4248 (home-page "https://metacpan.org/release/IO-stringy")
4249 (synopsis "IO:: interface for reading/writing an array of lines")
4250 (description "This toolkit primarily provides modules for performing both
4251 traditional and object-oriented i/o) on things *other* than normal
4252 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4253 (license (package-license perl))))
4254
4255 (define-public perl-io-tty
4256 (package
4257 (name "perl-io-tty")
4258 (version "1.12")
4259 (source (origin
4260 (method url-fetch)
4261 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4262 version ".tar.gz"))
4263 (sha256
4264 (base32
4265 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4266 (build-system perl-build-system)
4267 (home-page "https://metacpan.org/release/IO-Tty")
4268 (synopsis "Perl interface to pseudo ttys")
4269 (description
4270 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
4271 pseudo ttys.")
4272 (license (package-license perl))))
4273
4274 (define-public perl-ipc-cmd
4275 (package
4276 (name "perl-ipc-cmd")
4277 (version "1.02")
4278 (source
4279 (origin
4280 (method url-fetch)
4281 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4282 version ".tar.gz"))
4283 (sha256
4284 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
4285 (build-system perl-build-system)
4286 (home-page "https://metacpan.org/release/IPC-Cmd")
4287 (synopsis "Run interactive command-line programs")
4288 (description "@code{IPC::Cmd} allows for the searching and execution of
4289 any binary on your system. It adheres to verbosity settings and is able to
4290 run interactively. It also has an option to capture output/error buffers.")
4291 (license (package-license perl))))
4292
4293 (define-public perl-ipc-run
4294 (package
4295 (name "perl-ipc-run")
4296 (version "20180523.0")
4297 (source
4298 (origin
4299 (method url-fetch)
4300 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4301 "IPC-Run-" version ".tar.gz"))
4302 (sha256
4303 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
4304 (build-system perl-build-system)
4305 (propagated-inputs
4306 `(("perl-io-tty" ,perl-io-tty)))
4307 (arguments
4308 `(#:phases (modify-phases %standard-phases
4309 (add-before
4310 'check 'disable-w32-test
4311 (lambda _
4312 ;; This test fails, and we're not really interested in
4313 ;; it, so disable it.
4314 (delete-file "t/win32_compile.t")
4315 #t)))))
4316 (home-page "https://metacpan.org/release/IPC-Run")
4317 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4318 (description "IPC::Run allows you run and interact with child processes
4319 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4320 are supported and may be mixed. Likewise, functional and OO API styles are
4321 both supported and may be mixed.")
4322 (license (package-license perl))))
4323
4324 (define-public perl-ipc-run3
4325 (package
4326 (name "perl-ipc-run3")
4327 (version "0.048")
4328 (source (origin
4329 (method url-fetch)
4330 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4331 "IPC-Run3-" version ".tar.gz"))
4332 (sha256
4333 (base32
4334 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4335 (build-system perl-build-system)
4336 (synopsis "Run a subprocess with input/output redirection")
4337 (description
4338 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4339 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4340 99% of the need for using system, qx, and open3 with a simple, extremely
4341 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4342 (home-page "https://metacpan.org/release/IPC-Run3")
4343 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4344 ;; licenses, any version."
4345 (license (list bsd-3 gpl3+))))
4346
4347 (define-public perl-ipc-sharelite
4348 (package
4349 (name "perl-ipc-sharelite")
4350 (version "0.17")
4351 (source
4352 (origin
4353 (method url-fetch)
4354 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4355 "IPC-ShareLite-" version ".tar.gz"))
4356 (sha256
4357 (base32
4358 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4359 (build-system perl-build-system)
4360 (home-page "https://metacpan.org/release/IPC-ShareLite")
4361 (synopsis "Lightweight interface to shared memory")
4362 (description "IPC::ShareLite provides a simple interface to shared memory,
4363 allowing data to be efficiently communicated between processes.")
4364 (license (package-license perl))))
4365
4366 (define-public perl-ipc-system-simple
4367 (package
4368 (name "perl-ipc-system-simple")
4369 (version "1.25")
4370 (source (origin
4371 (method url-fetch)
4372 (uri (string-append
4373 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4374 version ".tar.gz"))
4375 (sha256
4376 (base32
4377 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4378 (build-system perl-build-system)
4379 (home-page "https://metacpan.org/release/IPC-System-Simple")
4380 (synopsis "Run commands simply, with detailed diagnostics")
4381 (description "Calling Perl's in-built @code{system} function is easy,
4382 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4383 nicest variable in the world to play with, and even if you do check it,
4384 producing a well-formatted error string takes a lot of work.
4385
4386 @code{IPC::System::Simple} takes the hard work out of calling external
4387 commands.")
4388 (license (package-license perl))))
4389
4390 (define-public perl-json
4391 (package
4392 (name "perl-json")
4393 (version "4.02")
4394 (source
4395 (origin
4396 (method url-fetch)
4397 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
4398 "JSON-" version ".tar.gz"))
4399 (sha256
4400 (base32
4401 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
4402 (build-system perl-build-system)
4403 (propagated-inputs
4404 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4405 (home-page "https://metacpan.org/release/JSON")
4406 (synopsis "JSON encoder/decoder for Perl")
4407 (description "This module converts Perl data structures to JSON and vice
4408 versa using either JSON::XS or JSON::PP.")
4409 (license (package-license perl))))
4410
4411 (define-public perl-json-any
4412 (package
4413 (name "perl-json-any")
4414 (version "1.39")
4415 (source
4416 (origin
4417 (method url-fetch)
4418 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4419 "JSON-Any-" version ".tar.gz"))
4420 (sha256
4421 (base32
4422 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4423 (build-system perl-build-system)
4424 (native-inputs
4425 `(("perl-test-fatal" ,perl-test-fatal)
4426 ("perl-test-requires" ,perl-test-requires)
4427 ("perl-test-warnings" ,perl-test-warnings)
4428 ("perl-test-without-module" ,perl-test-without-module)))
4429 (propagated-inputs
4430 `(("perl-namespace-clean" ,perl-namespace-clean)))
4431 (home-page "https://metacpan.org/release/JSON-Any")
4432 (synopsis "Wrapper for Perl JSON classes")
4433 (description
4434 "This module tries to provide a coherent API to bring together the
4435 various JSON modules currently on CPAN. This module will allow you to code to
4436 any JSON API and have it work regardless of which JSON module is actually
4437 installed.")
4438 (license (package-license perl))))
4439
4440 (define-public perl-json-maybexs
4441 (package
4442 (name "perl-json-maybexs")
4443 (version "1.004000")
4444 (source
4445 (origin
4446 (method url-fetch)
4447 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4448 "JSON-MaybeXS-" version ".tar.gz"))
4449 (sha256
4450 (base32
4451 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
4452 (build-system perl-build-system)
4453 (native-inputs
4454 `(("perl-test-without-module" ,perl-test-without-module)))
4455 (inputs
4456 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4457 (home-page "https://metacpan.org/release/JSON-MaybeXS")
4458 (synopsis "Cpanel::JSON::XS with fallback")
4459 (description "This module first checks to see if either Cpanel::JSON::XS
4460 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4461 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4462 either uses the first module it finds or throws an error.")
4463 (license (package-license perl))))
4464
4465 (define-public perl-json-xs
4466 (package
4467 (name "perl-json-xs")
4468 (version "4.0")
4469 (source
4470 (origin
4471 (method url-fetch)
4472 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4473 "JSON-XS-" version ".tar.gz"))
4474 (sha256
4475 (base32
4476 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
4477 (build-system perl-build-system)
4478 (native-inputs
4479 `(("perl-canary-stability" ,perl-canary-stability)))
4480 (propagated-inputs
4481 `(("perl-common-sense" ,perl-common-sense)
4482 ("perl-types-serialiser" ,perl-types-serialiser)))
4483 (home-page "https://metacpan.org/release/JSON-XS")
4484 (synopsis "JSON serialising/deserialising for Perl")
4485 (description "This module converts Perl data structures to JSON and vice
4486 versa.")
4487 (license (package-license perl))))
4488
4489 (define-public perl-lexical-sealrequirehints
4490 (package
4491 (name "perl-lexical-sealrequirehints")
4492 (version "0.011")
4493 (source
4494 (origin
4495 (method url-fetch)
4496 (uri (string-append
4497 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4498 version
4499 ".tar.gz"))
4500 (sha256
4501 (base32
4502 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4503 (build-system perl-build-system)
4504 (native-inputs
4505 `(("perl-module-build" ,perl-module-build)))
4506 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
4507 (synopsis "Prevent leakage of lexical hints")
4508 (description
4509 "Lexical::SealRequireHints prevents leakage of lexical hints")
4510 (license (package-license perl))))
4511
4512 (define-public perl-log-any
4513 (package
4514 (name "perl-log-any")
4515 (version "1.707")
4516 (source
4517 (origin
4518 (method url-fetch)
4519 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4520 version ".tar.gz"))
4521 (sha256
4522 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
4523 (build-system perl-build-system)
4524 (home-page "https://metacpan.org/release/Log-Any")
4525 (synopsis "Bringing loggers and listeners together")
4526 (description "@code{Log::Any} provides a standard log production API for
4527 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4528 for log consumption, whether screen, file or another logging mechanism like
4529 @code{Log::Dispatch} or @code{Log::Log4perl}.
4530
4531 A CPAN module uses @code{Log::Any} to get a log producer object. An
4532 application, in turn, may choose one or more logging mechanisms via
4533 @code{Log::Any::Adapter}, or none at all.
4534
4535 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4536 itself, which makes it appropriate for even small CPAN modules to use. It
4537 defaults to 'null' logging activity, so a module can safely log without
4538 worrying about whether the application has chosen (or will ever choose) a
4539 logging mechanism.")
4540 (license (package-license perl))))
4541
4542 (define-public perl-log-any-adapter-log4perl
4543 (package
4544 (name "perl-log-any-adapter-log4perl")
4545 (version "0.09")
4546 (source
4547 (origin
4548 (method url-fetch)
4549 (uri (string-append
4550 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4551 version
4552 ".tar.gz"))
4553 (sha256
4554 (base32
4555 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4556 (build-system perl-build-system)
4557 (propagated-inputs
4558 `(("perl-log-any" ,perl-log-any)
4559 ("perl-log-log4perl" ,perl-log-log4perl)))
4560 (home-page
4561 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
4562 (synopsis "Log::Any adapter for Log::Log4perl")
4563 (description "@code{Log::Any::Adapter::Log4perl} provides a
4564 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4565 (license (package-license perl))))
4566
4567 (define-public perl-log-log4perl
4568 (package
4569 (name "perl-log-log4perl")
4570 (version "1.49")
4571 (source
4572 (origin
4573 (method url-fetch)
4574 (uri (string-append
4575 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4576 version
4577 ".tar.gz"))
4578 (sha256
4579 (base32
4580 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4581 (build-system perl-build-system)
4582 (home-page
4583 "https://metacpan.org/release/Log-Log4perl")
4584 (synopsis "Log4j implementation for Perl")
4585 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4586 the logging behaviour of your system from the outside. It implements the
4587 widely popular (Java-based) Log4j logging package in pure Perl.")
4588 (license (package-license perl))))
4589
4590 (define-public perl-log-report-optional
4591 (package
4592 (name "perl-log-report-optional")
4593 (version "1.06")
4594 (source (origin
4595 (method url-fetch)
4596 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4597 "Log-Report-Optional-" version ".tar.gz"))
4598 (sha256
4599 (base32
4600 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
4601 (build-system perl-build-system)
4602 (propagated-inputs
4603 `(("perl-string-print" ,perl-string-print)))
4604 (home-page "https://metacpan.org/release/Log-Report-Optional")
4605 (synopsis "Log::Report in the lightest form")
4606 (description
4607 "This module allows libraries to have a dependency to a small module
4608 instead of the full Log-Report distribution. The full power of
4609 @code{Log::Report} is only released when the main program uses that module.
4610 In that case, the module using the 'Optional' will also use the full
4611 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4612 version.")
4613 (license (package-license perl))))
4614
4615 (define-public perl-log-report
4616 (package
4617 (name "perl-log-report")
4618 (version "1.10")
4619 (source (origin
4620 (method url-fetch)
4621 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4622 "Log-Report-" version ".tar.gz"))
4623 (sha256
4624 (base32
4625 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4626 (build-system perl-build-system)
4627 (propagated-inputs
4628 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4629 ("perl-log-report-optional" ,perl-log-report-optional)
4630 ("perl-string-print" ,perl-string-print)))
4631 (home-page "https://metacpan.org/release/Log-Report")
4632 (synopsis "Get messages to users and logs")
4633 (description
4634 "@code{Log::Report} combines three tasks which are closely related in
4635 one: logging, exceptions, and translations.")
4636 (license (package-license perl))))
4637
4638 (define-public perl-libintl-perl
4639 (package
4640 (name "perl-libintl-perl")
4641 (version "1.31")
4642 (source
4643 (origin
4644 (method url-fetch)
4645 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4646 "libintl-perl-" version ".tar.gz"))
4647 (sha256
4648 (base32 "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"))))
4649 (build-system perl-build-system)
4650 (arguments
4651 `(#:phases
4652 (modify-phases %standard-phases
4653 (add-before 'configure 'set-perl-search-path
4654 (lambda _
4655 ;; Work around "dotless @INC" build failure.
4656 (setenv "PERL5LIB" (string-append (getcwd) ":"
4657 (getenv "PERL5LIB")))
4658 #t)))))
4659 (propagated-inputs
4660 `(("perl-file-sharedir" ,perl-file-sharedir)))
4661 (home-page "https://metacpan.org/release/libintl-perl")
4662 (synopsis "High-level interface to Uniforum message translation")
4663 (description "This package is an internationalization library for Perl
4664 that aims to be compatible with the Uniforum message translations system as
4665 implemented for example in GNU gettext.")
4666 (license gpl3+)))
4667
4668 (define-public perl-lingua-translit
4669 (package
4670 (name "perl-lingua-translit")
4671 (version "0.28")
4672 (source
4673 (origin
4674 (method url-fetch)
4675 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4676 "Lingua-Translit-" version ".tar.gz"))
4677 (sha256
4678 (base32
4679 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
4680 (build-system perl-build-system)
4681 (home-page "https://metacpan.org/release/Lingua-Translit")
4682 (synopsis "Transliterate text between writing systems")
4683 (description "@code{Lingua::Translit} can be used to convert text from one
4684 writing system to another, based on national or international transliteration
4685 tables. Where possible a reverse transliteration is supported.")
4686 (license (package-license perl))))
4687
4688 (define-public perl-list-allutils
4689 (package
4690 (name "perl-list-allutils")
4691 (version "0.09")
4692 (source
4693 (origin
4694 (method url-fetch)
4695 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4696 "List-AllUtils-" version ".tar.gz"))
4697 (sha256
4698 (base32
4699 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4700 (build-system perl-build-system)
4701 (native-inputs
4702 `(("perl-test-warnings" ,perl-test-warnings)))
4703 (propagated-inputs
4704 `(("perl-list-moreutils" ,perl-list-moreutils)
4705 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4706 (home-page "https://metacpan.org/release/List-AllUtils")
4707 (synopsis "Combination of List::Util and List::MoreUtils")
4708 (description "This module exports all of the functions that either
4709 List::Util or List::MoreUtils defines, with preference to List::Util.")
4710 (license (package-license perl))))
4711
4712 (define-public perl-list-compare
4713 (package
4714 (name "perl-list-compare")
4715 (version "0.53")
4716 (source
4717 (origin
4718 (method url-fetch)
4719 (uri (string-append
4720 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4721 version
4722 ".tar.gz"))
4723 (sha256
4724 (base32
4725 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4726 (build-system perl-build-system)
4727 (native-inputs
4728 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4729 (home-page "https://metacpan.org/release/List-Compare")
4730 (synopsis "Compare elements of two or more lists")
4731 (description "@code{List::Compare} provides a module to perform
4732 comparative operations on two or more lists. Provided operations include
4733 intersections, unions, unique elements, complements and many more.")
4734 (license (package-license perl))))
4735
4736 (define-public perl-list-moreutils
4737 (package
4738 (name "perl-list-moreutils")
4739 (version "0.428")
4740 (source
4741 (origin
4742 (method url-fetch)
4743 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4744 "List-MoreUtils-" version ".tar.gz"))
4745 (sha256
4746 (base32
4747 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4748 (build-system perl-build-system)
4749 (arguments
4750 `(#:phases
4751 (modify-phases %standard-phases
4752 (add-before 'configure 'set-perl-search-path
4753 (lambda _
4754 ;; Work around "dotless @INC" build failure.
4755 (setenv "PERL5LIB"
4756 (string-append (getcwd) ":"
4757 (getenv "PERL5LIB")))
4758 #t)))))
4759 (native-inputs
4760 `(("perl-config-autoconf" ,perl-config-autoconf)
4761 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4762 (propagated-inputs
4763 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4764 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4765 (home-page "https://metacpan.org/release/List-MoreUtils")
4766 (synopsis "Provide the stuff missing in List::Util")
4767 (description "List::MoreUtils provides some trivial but commonly needed
4768 functionality on lists which is not going to go into List::Util.")
4769 (license (package-license perl))))
4770
4771 (define-public perl-list-moreutils-xs
4772 (package
4773 (name "perl-list-moreutils-xs")
4774 (version "0.428")
4775 (source
4776 (origin
4777 (method url-fetch)
4778 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4779 version ".tar.gz"))
4780 (sha256
4781 (base32
4782 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4783 (build-system perl-build-system)
4784 (native-inputs
4785 `(("perl-config-autoconf" ,perl-config-autoconf)
4786 ("perl-inc-latest" ,perl-inc-latest)
4787 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4788 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
4789 (synopsis "Provide the stuff missing in List::Util in XS")
4790 (description "@code{List::MoreUtils::XS} provides some trivial but
4791 commonly needed functionality on lists which is not going to go into
4792 @code{List::Util}.")
4793 (license asl2.0)))
4794
4795 (define-public perl-list-someutils
4796 (package
4797 (name "perl-list-someutils")
4798 (version "0.56")
4799 (source
4800 (origin
4801 (method url-fetch)
4802 (uri (string-append
4803 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4804 version
4805 ".tar.gz"))
4806 (sha256
4807 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
4808 (build-system perl-build-system)
4809 (native-inputs
4810 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4811 (inputs
4812 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4813 ("perl-module-implementation"
4814 ,perl-module-implementation)))
4815 (home-page "https://metacpan.org/release/List-SomeUtils")
4816 (synopsis "Provide the stuff missing in List::Util")
4817 (description "@code{List::SomeUtils} provides some trivial but commonly
4818 needed functionality on lists which is not going to go into @code{List::Util}.
4819
4820 All of the below functions are implementable in only a couple of lines of Perl
4821 code. Using the functions from this module however should give slightly
4822 better performance as everything is implemented in C. The pure-Perl
4823 implementation of these functions only serves as a fallback in case the C
4824 portions of this module couldn't be compiled on this machine.")
4825 (license (package-license perl))))
4826
4827 (define-public perl-mailtools
4828 (package
4829 (name "perl-mailtools")
4830 (version "2.20")
4831 (source
4832 (origin
4833 (method url-fetch)
4834 (uri (string-append
4835 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4836 version
4837 ".tar.gz"))
4838 (sha256
4839 (base32
4840 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4841 (build-system perl-build-system)
4842 (propagated-inputs
4843 `(("perl-timedate" ,perl-timedate)))
4844 (home-page
4845 "https://metacpan.org/release/MailTools")
4846 (synopsis "Bundle of ancient email modules")
4847 (description "MailTools contains the following modules:
4848 @table @asis
4849 @item Mail::Address
4850 Parse email address from a header line.
4851 @item Mail::Cap
4852 Interpret mailcap files: mappings of file-types to applications as used by
4853 many command-line email programs.
4854 @item Mail::Field
4855 Simplifies access to (some) email header fields. Used by Mail::Header.
4856 @item Mail::Filter
4857 Process Mail::Internet messages.
4858 @item Mail::Header
4859 Collection of Mail::Field objects, representing the header of a Mail::Internet
4860 object.
4861 @item Mail::Internet
4862 Represents a single email message, with header and body.
4863 @item Mail::Mailer
4864 Send Mail::Internet emails via direct smtp or local MTA's.
4865 @item Mail::Send
4866 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4867 @item Mail::Util
4868 \"Smart functions\" you should not depend on.
4869 @end table")
4870 (license perl-license)))
4871
4872 (define-public perl-math-bezier
4873 (package
4874 (name "perl-math-bezier")
4875 (version "0.01")
4876 (source (origin
4877 (method url-fetch)
4878 (uri (string-append
4879 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4880 version ".tar.gz"))
4881 (sha256
4882 (base32
4883 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4884 (build-system perl-build-system)
4885 (home-page "https://metacpan.org/release/Math-Bezier")
4886 (synopsis "Solution of bezier curves")
4887 (description "This module implements the algorithm for the solution of Bezier
4888 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4889 Bezier Curve Drawing\".")
4890 (license perl-license)))
4891
4892 (define-public perl-math-round
4893 (package
4894 (name "perl-math-round")
4895 (version "0.07")
4896 (source (origin
4897 (method url-fetch)
4898 (uri (string-append
4899 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4900 version ".tar.gz"))
4901 (sha256
4902 (base32
4903 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4904 (build-system perl-build-system)
4905 (home-page "https://metacpan.org/release/Math-Round")
4906 (synopsis "Perl extension for rounding numbers")
4907 (description "@code{Math::Round} provides functions to round numbers,
4908 both positive and negative, in various ways.")
4909 (license perl-license)))
4910
4911 (define-public perl-memoize
4912 (package
4913 (name "perl-memoize")
4914 (version "1.03")
4915 (source (origin
4916 (method url-fetch)
4917 (uri (string-append
4918 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4919 version".tgz"))
4920 (sha256
4921 (base32
4922 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4923 (build-system perl-build-system)
4924 (home-page "https://metacpan.org/release/Memoize")
4925 (synopsis "Make functions faster by trading space for time")
4926 (description "This package transparently speeds up functions by caching
4927 return values, trading space for time.")
4928 (license perl-license)))
4929
4930 (define-public perl-memoize-expirelru
4931 (package
4932 (name "perl-memoize-expirelru")
4933 (version "0.56")
4934 (source
4935 (origin
4936 (method url-fetch)
4937 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4938 "Memoize-ExpireLRU-" version ".tar.gz"))
4939 (sha256
4940 (base32
4941 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
4942 (build-system perl-build-system)
4943 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
4944 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4945 (description "This module implements an expiry policy for Memoize that
4946 follows LRU semantics, that is, the last n results, where n is specified as
4947 the argument to the CACHESIZE parameter, will be cached.")
4948 (license (package-license perl))))
4949
4950 (define-public perl-mime-charset
4951 (package
4952 (name "perl-mime-charset")
4953 (version "1.012.2")
4954 (source (origin
4955 (method url-fetch)
4956 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4957 "MIME-Charset-" version ".tar.gz"))
4958 (sha256
4959 (base32
4960 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4961 (build-system perl-build-system)
4962 (home-page "https://metacpan.org/release/MIME-Charset")
4963 (synopsis "Charset information for MIME messages")
4964 (description
4965 "@code{MIME::Charset} provides information about character sets used for
4966 MIME messages on Internet.")
4967 (license (package-license perl))))
4968
4969 (define-public perl-mime-tools
4970 (package
4971 (name "perl-mime-tools")
4972 (version "5.509")
4973 (source
4974 (origin
4975 (method url-fetch)
4976 (uri (string-append
4977 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4978 version
4979 ".tar.gz"))
4980 (sha256
4981 (base32
4982 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4983 (build-system perl-build-system)
4984 (native-inputs
4985 `(("perl-test-deep" ,perl-test-deep)))
4986 (inputs
4987 `(("perl-convert-binhex" ,perl-convert-binhex)))
4988 (propagated-inputs
4989 `(("perl-mailtools" ,perl-mailtools)))
4990 (home-page
4991 "https://metacpan.org/release/MIME-tools")
4992 (synopsis "Tools to manipulate MIME messages")
4993 (description
4994 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4995 decoding, and generating single- or multipart (even nested multipart) MIME
4996 messages.")
4997 (license perl-license)))
4998
4999 (define-public perl-mime-types
5000 (package
5001 (name "perl-mime-types")
5002 (version "2.17")
5003 (source
5004 (origin
5005 (method url-fetch)
5006 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5007 "MIME-Types-" version ".tar.gz"))
5008 (sha256
5009 (base32
5010 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
5011 (build-system perl-build-system)
5012 (home-page "https://metacpan.org/release/MIME-Types")
5013 (synopsis "Definition of MIME types")
5014 (description "This module provides a list of known mime-types, combined
5015 from various sources. For instance, it contains all IANA types and the
5016 knowledge of Apache.")
5017 (license (package-license perl))))
5018
5019 (define-public perl-mixin-linewise
5020 (package
5021 (name "perl-mixin-linewise")
5022 (version "0.108")
5023 (source (origin
5024 (method url-fetch)
5025 (uri (string-append
5026 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5027 version ".tar.gz"))
5028 (sha256
5029 (base32
5030 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5031 (build-system perl-build-system)
5032 (inputs
5033 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5034 ("perl-sub-exporter" ,perl-sub-exporter)))
5035 (home-page "https://metacpan.org/release/Mixin-Linewise")
5036 (synopsis "Write your linewise code for handles; this does the rest")
5037 (description "It's boring to deal with opening files for IO, converting
5038 strings to handle-like objects, and all that. With
5039 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5040 just write a method to handle handles, and methods for handling strings and
5041 file names are added for you.")
5042 (license (package-license perl))))
5043
5044 (define-public perl-modern-perl
5045 (package
5046 (name "perl-modern-perl")
5047 (version "1.20181021")
5048 (source
5049 (origin
5050 (method url-fetch)
5051 (uri (string-append
5052 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5053 version ".tar.gz"))
5054 (sha256
5055 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
5056 (build-system perl-build-system)
5057 (native-inputs
5058 `(("perl-module-build" ,perl-module-build)))
5059 (home-page
5060 "https://metacpan.org/release/Modern-Perl")
5061 (synopsis
5062 "Enable all of the features of Modern Perl with one import")
5063 (description "@code{Modern::Perl} provides a simple way to enable
5064 multiple, by now, standard libraries in a Perl program.")
5065 (license (package-license perl))))
5066
5067 (define-public perl-module-build-tiny
5068 (package
5069 (name "perl-module-build-tiny")
5070 (version "0.039")
5071 (source
5072 (origin
5073 (method url-fetch)
5074 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5075 "Module-Build-Tiny-" version ".tar.gz"))
5076 (sha256
5077 (base32
5078 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5079 (build-system perl-build-system)
5080 (native-inputs
5081 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5082 ("perl-extutils-config" ,perl-extutils-config)
5083 ("perl-extutils-helpers" ,perl-extutils-helpers)
5084 ("perl-test-harness" ,perl-test-harness)))
5085 (propagated-inputs
5086 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5087 ("perl-extutils-config" ,perl-extutils-config)
5088 ("perl-extutils-helpers" ,perl-extutils-helpers)
5089 ("perl-test-harness" ,perl-test-harness)))
5090 (home-page "https://metacpan.org/release/Module-Build-Tiny")
5091 (synopsis "Tiny replacement for Module::Build")
5092 (description "Many Perl distributions use a Build.PL file instead of a
5093 Makefile.PL file to drive distribution configuration, build, test and
5094 installation. Traditionally, Build.PL uses Module::Build as the underlying
5095 build system. This module provides a simple, lightweight, drop-in
5096 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5097 has less than 120, yet supports the features needed by most distributions.")
5098 (license (package-license perl))))
5099
5100 (define-public perl-module-build-xsutil
5101 (package
5102 (name "perl-module-build-xsutil")
5103 (version "0.16")
5104 (source (origin
5105 (method url-fetch)
5106 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5107 "Module-Build-XSUtil-" version ".tar.gz"))
5108 (sha256
5109 (base32
5110 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5111 (build-system perl-build-system)
5112 (native-inputs
5113 `(("perl-capture-tiny" ,perl-capture-tiny)
5114 ("perl-cwd-guard" ,perl-cwd-guard)
5115 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5116 ("perl-module-build" ,perl-module-build)))
5117 (propagated-inputs
5118 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5119 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
5120 (synopsis "Module::Build class for building XS modules")
5121 (description
5122 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5123 for support building XS modules.
5124
5125 This is a list of a new parameters in the @code{Module::Build::new} method:
5126
5127 @enumerate
5128 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5129 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5130 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5131 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5132 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5133 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5134 @file{ppport.h}, and defines some portability stuff which are not supported by
5135 @file{ppport.h}.
5136
5137 It is ported from @code{Module::Install::XSUtil}.
5138 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5139 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5140 debug options.
5141 @end enumerate")
5142 (license (package-license perl))))
5143
5144 (define-public perl-module-find
5145 (package
5146 (name "perl-module-find")
5147 (version "0.13")
5148 (source
5149 (origin
5150 (method url-fetch)
5151 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5152 "Module-Find-" version ".tar.gz"))
5153 (sha256
5154 (base32
5155 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5156 (build-system perl-build-system)
5157 (home-page "https://metacpan.org/release/Module-Find")
5158 (synopsis "Find and use installed modules in a (sub)category")
5159 (description "Module::Find lets you find and use modules in categories.
5160 This can be useful for auto-detecting driver or plugin modules. You can
5161 differentiate between looking in the category itself or in all
5162 subcategories.")
5163 (license (package-license perl))))
5164
5165 (define-public perl-module-implementation
5166 (package
5167 (name "perl-module-implementation")
5168 (version "0.09")
5169 (source
5170 (origin
5171 (method url-fetch)
5172 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5173 "Module-Implementation-" version ".tar.gz"))
5174 (sha256
5175 (base32
5176 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5177 (build-system perl-build-system)
5178 (native-inputs
5179 `(("perl-test-fatal" ,perl-test-fatal)
5180 ("perl-test-requires" ,perl-test-requires)))
5181 (propagated-inputs
5182 `(("perl-module-runtime" ,perl-module-runtime)
5183 ("perl-try-tiny" ,perl-try-tiny)))
5184 (home-page "https://metacpan.org/release/Module-Implementation")
5185 (synopsis "Loads alternate underlying implementations for a module")
5186 (description "This module abstracts out the process of choosing one of
5187 several underlying implementations for a module. This can be used to provide
5188 XS and pure Perl implementations of a module, or it could be used to load an
5189 implementation for a given OS or any other case of needing to provide multiple
5190 implementations.")
5191 (license artistic2.0)))
5192
5193 (define-public perl-module-install
5194 (package
5195 (name "perl-module-install")
5196 (version "1.19")
5197 (source
5198 (origin
5199 (method url-fetch)
5200 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5201 "Module-Install-" version ".tar.gz"))
5202 (sha256
5203 (base32
5204 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5205 (build-system perl-build-system)
5206 (native-inputs
5207 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5208 (propagated-inputs
5209 `(("perl-archive-zip" ,perl-archive-zip)
5210 ("perl-file-homedir" ,perl-file-homedir)
5211 ("perl-file-remove" ,perl-file-remove)
5212 ("perl-json" ,perl-json)
5213 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5214 ;; would cause a circular dependency with (gnu packages web), so we
5215 ;; leave it out. It may be resolved at runtime, however.
5216 ;("perl-libwww-perl" ,perl-libwww-perl)
5217 ("perl-module-scandeps" ,perl-module-scandeps)
5218 ("perl-par-dist" ,perl-par-dist)
5219 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5220 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5221 ;; character handling.
5222 (arguments `(#:tests? #f))
5223 (home-page "https://metacpan.org/release/Module-Install")
5224 (synopsis "Standalone, extensible Perl module installer")
5225 (description "Module::Install is a package for writing installers for
5226 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5227 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5228 installation version 5.005 or newer.")
5229 (license (package-license perl))))
5230
5231 (define-public perl-module-manifest
5232 (package
5233 (name "perl-module-manifest")
5234 (version "1.09")
5235 (source
5236 (origin
5237 (method url-fetch)
5238 (uri (string-append
5239 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
5240 version ".tar.gz"))
5241 (sha256
5242 (base32
5243 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
5244 (build-system perl-build-system)
5245 (native-inputs
5246 `(("perl-test-exception" ,perl-test-exception)
5247 ("perl-test-warn" ,perl-test-warn)))
5248 (propagated-inputs
5249 `(("perl-params-util" ,perl-params-util)))
5250 (home-page "https://metacpan.org/release/Module-Manifest")
5251 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
5252 (description
5253 "@code{Module::Manifest} is a simple utility module created originally for
5254 use in @code{Module::Inspector}.
5255
5256 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
5257 examine the contents, and perform some simple tasks. It can also load the
5258 @file{MANIFEST.SKIP} file and check that.")
5259 (license perl-license)))
5260
5261 (define-public perl-module-pluggable
5262 (package
5263 (name "perl-module-pluggable")
5264 (version "5.2")
5265 (source
5266 (origin
5267 (method url-fetch)
5268 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5269 "Module-Pluggable-" version ".tar.gz"))
5270 (sha256
5271 (base32
5272 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5273 (patches (search-patches "perl-module-pluggable-search.patch"))))
5274 (build-system perl-build-system)
5275 (home-page "https://metacpan.org/release/Module-Pluggable")
5276 (synopsis "Give your Perl module the ability to have plugins")
5277 (description "This module provides a simple but extensible way of having
5278 'plugins' for your Perl module.")
5279 (license (package-license perl))))
5280
5281 (define-public perl-module-runtime
5282 (package
5283 (name "perl-module-runtime")
5284 (version "0.016")
5285 (source
5286 (origin
5287 (method url-fetch)
5288 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5289 "Module-Runtime-" version ".tar.gz"))
5290 (sha256
5291 (base32
5292 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
5293 (build-system perl-build-system)
5294 (native-inputs `(("perl-module-build" ,perl-module-build)))
5295 (home-page "https://metacpan.org/release/Module-Runtime")
5296 (synopsis "Perl runtime module handling")
5297 (description "The functions exported by this module deal with runtime
5298 handling of Perl modules, which are normally handled at compile time.")
5299 (license (package-license perl))))
5300
5301 (define-public perl-module-runtime-conflicts
5302 (package
5303 (name "perl-module-runtime-conflicts")
5304 (version "0.003")
5305 (source
5306 (origin
5307 (method url-fetch)
5308 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5309 "Module-Runtime-Conflicts-" version ".tar.gz"))
5310 (sha256
5311 (base32
5312 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5313 (build-system perl-build-system)
5314 (native-inputs
5315 `(("perl-module-build" ,perl-module-build)))
5316 (propagated-inputs
5317 `(("perl-module-runtime" ,perl-module-runtime)
5318 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5319 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
5320 (synopsis "Provide information on conflicts for Module::Runtime")
5321 (description "This module provides conflicts checking for Module::Runtime,
5322 which had a recent release that broke some versions of Moose. It is called
5323 from Moose::Conflicts and moose-outdated.")
5324 (license (package-license perl))))
5325
5326 (define-public perl-module-scandeps
5327 (package
5328 (name "perl-module-scandeps")
5329 (version "1.27")
5330 (source
5331 (origin
5332 (method url-fetch)
5333 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5334 "Module-ScanDeps-" version ".tar.gz"))
5335 (sha256
5336 (base32
5337 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
5338 (build-system perl-build-system)
5339 (native-inputs
5340 `(("perl-test-requires" ,perl-test-requires)))
5341 (home-page "https://metacpan.org/release/Module-ScanDeps")
5342 (synopsis "Recursively scan Perl code for dependencies")
5343 (description "Module::ScanDeps is a module to recursively scan Perl
5344 programs for dependencies.")
5345 (license (package-license perl))))
5346
5347 (define-public perl-module-util
5348 (package
5349 (name "perl-module-util")
5350 (version "1.09")
5351 (source
5352 (origin
5353 (method url-fetch)
5354 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5355 "Module-Util-" version ".tar.gz"))
5356 (sha256
5357 (base32
5358 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5359 (build-system perl-build-system)
5360 (native-inputs
5361 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5362 (home-page "https://metacpan.org/release/Module-Util")
5363 (synopsis "Module name tools and transformations")
5364 (description "This module provides a few useful functions for manipulating
5365 module names. Its main aim is to centralise some of the functions commonly
5366 used by modules that manipulate other modules in some way, like converting
5367 module names to relative paths.")
5368 (license (package-license perl))))
5369
5370 (define-public perl-moo
5371 (package
5372 (name "perl-moo")
5373 (version "1.007000")
5374 (source
5375 (origin
5376 (method url-fetch)
5377 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5378 "Moo-" version ".tar.gz"))
5379 (sha256
5380 (base32
5381 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5382 (build-system perl-build-system)
5383 (native-inputs
5384 `(("perl-test-fatal" ,perl-test-fatal)))
5385 (propagated-inputs
5386 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5387 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5388 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5389 ("perl-import-into" ,perl-import-into)
5390 ("perl-module-runtime" ,perl-module-runtime)
5391 ("perl-role-tiny" ,perl-role-tiny)
5392 ("perl-strictures" ,perl-strictures)))
5393 (home-page "https://metacpan.org/release/Moo")
5394 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5395 (description "Moo is an extremely light-weight Object Orientation system.
5396 It allows one to concisely define objects and roles with a convenient syntax
5397 that avoids the details of Perl's object system. Moo contains a subset of
5398 Moose and is optimised for rapid startup.")
5399 (license (package-license perl))))
5400
5401 ;; Some packages don't yet work with this newer version of ‘Moo’.
5402 (define-public perl-moo-2
5403 (package
5404 (inherit perl-moo)
5405 (name "perl-moo-2")
5406 (version "2.003004")
5407 (source
5408 (origin
5409 (method url-fetch)
5410 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5411 "Moo-" version ".tar.gz"))
5412 (sha256
5413 (base32
5414 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5415 (propagated-inputs
5416 `(("perl-role-tiny" ,perl-role-tiny-2)
5417 ("perl-sub-name" ,perl-sub-name)
5418 ("perl-sub-quote" ,perl-sub-quote)
5419 ("perl-strictures" ,perl-strictures-2)
5420 ,@(alist-delete "perl-strictures"
5421 (alist-delete "perl-role-tiny"
5422 (package-propagated-inputs perl-moo)))))
5423 (arguments
5424 `(#:phases
5425 (modify-phases %standard-phases
5426 (add-before 'configure 'set-perl-search-path
5427 (lambda _
5428 ;; Use perl-strictures for testing.
5429 (setenv "MOO_FATAL_WARNINGS" "=1")
5430 #t)))))))
5431
5432 (define-public perl-moose
5433 (package
5434 (name "perl-moose")
5435 (version "2.2011")
5436 (source (origin
5437 (method url-fetch)
5438 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5439 "Moose-" version ".tar.gz"))
5440 (sha256
5441 (base32
5442 "10ndq6jwj2iwhwqjs23g6nb1yrf3brgw41jjphxzk6zkv4shlgcp"))))
5443 (build-system perl-build-system)
5444 (native-inputs
5445 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5446 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5447 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5448 ("perl-test-fatal" ,perl-test-fatal)
5449 ("perl-test-requires" ,perl-test-requires)
5450 ("perl-test-warnings" ,perl-test-warnings)))
5451 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5452 ;; # === Other Modules ===
5453 ;; #
5454 ;; # Module Want Have
5455 ;; # ---------------------------- ---- -------
5456 ;; # Algorithm::C3 any missing
5457 ;; # DBM::Deep any missing
5458 ;; # DateTime any missing
5459 ;; # DateTime::Calendar::Mayan any missing
5460 ;; # DateTime::Format::MySQL any missing
5461 ;; # Declare::Constraints::Simple any missing
5462 ;; # Dist::CheckConflicts any 0.11
5463 ;; # HTTP::Headers any missing
5464 ;; # IO::File any 1.16
5465 ;; # IO::String any missing
5466 ;; # Locale::US any missing
5467 ;; # Module::Refresh any missing
5468 ;; # MooseX::NonMoose any missing
5469 ;; # Params::Coerce any missing
5470 ;; # Regexp::Common any missing
5471 ;; # SUPER any missing
5472 ;; # Test::Deep any missing
5473 ;; # Test::DependentModules any missing
5474 ;; # Test::LeakTrace any missing
5475 ;; # Test::Output any missing
5476 ;; # URI any missing
5477 (propagated-inputs
5478 `(("perl-class-load" ,perl-class-load)
5479 ("perl-class-load-xs" ,perl-class-load-xs)
5480 ("perl-data-optlist" ,perl-data-optlist)
5481 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5482 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5483 ("perl-devel-partialdump" ,perl-devel-partialdump)
5484 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5485 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5486 ("perl-eval-closure" ,perl-eval-closure)
5487 ("perl-list-moreutils" ,perl-list-moreutils)
5488 ("perl-module-runtime" ,perl-module-runtime)
5489 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5490 ("perl-mro-compat" ,perl-mro-compat)
5491 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5492 ("perl-package-stash" ,perl-package-stash)
5493 ("perl-package-stash-xs" ,perl-package-stash-xs)
5494 ("perl-params-util" ,perl-params-util)
5495 ("perl-parent" ,perl-parent)
5496 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5497 ("perl-sub-exporter" ,perl-sub-exporter)
5498 ("perl-sub-name" ,perl-sub-name)
5499 ("perl-task-weaken" ,perl-task-weaken)
5500 ("perl-try-tiny" ,perl-try-tiny)))
5501 (home-page "https://metacpan.org/release/Moose")
5502 (synopsis "Postmodern object system for Perl 5")
5503 (description
5504 "Moose is a complete object system for Perl 5. It provides keywords for
5505 attribute declaration, object construction, inheritance, and maybe more. With
5506 Moose, you define your class declaratively, without needing to know about
5507 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5508 logical structure of your classes, focusing on \"what\" rather than \"how\".
5509 A class definition with Moose reads like a list of very concise English
5510 sentences.")
5511 (license (package-license perl))))
5512
5513 (define-public perl-moosex-emulate-class-accessor-fast
5514 (package
5515 (name "perl-moosex-emulate-class-accessor-fast")
5516 (version "0.009032")
5517 (source
5518 (origin
5519 (method url-fetch)
5520 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5521 "MooseX-Emulate-Class-Accessor-Fast-"
5522 version ".tar.gz"))
5523 (sha256
5524 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
5525 (build-system perl-build-system)
5526 (native-inputs
5527 `(("perl-module-install" ,perl-module-install)
5528 ("perl-test-exception" ,perl-test-exception)))
5529 (propagated-inputs
5530 `(("perl-moose" ,perl-moose)))
5531 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
5532 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5533 (description "This module attempts to emulate the behavior of
5534 Class::Accessor::Fast as accurately as possible using the Moose attribute
5535 system. The public API of Class::Accessor::Fast is wholly supported, but the
5536 private methods are not.")
5537 (license (package-license perl))))
5538
5539 (define-public perl-moosex-getopt
5540 (package
5541 (name "perl-moosex-getopt")
5542 (version "0.74")
5543 (source
5544 (origin
5545 (method url-fetch)
5546 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5547 "MooseX-Getopt-" version ".tar.gz"))
5548 (sha256
5549 (base32 "091crga5gjyhj2lz55w3ba37xq6pmjg5dx5xccsrzghy8cxxzq0x"))))
5550 (build-system perl-build-system)
5551 (native-inputs
5552 `(("perl-module-build" ,perl-module-build)
5553 ("perl-module-build-tiny" ,perl-module-build-tiny)
5554 ("perl-path-tiny" ,perl-path-tiny)
5555 ("perl-test-deep" ,perl-test-deep)
5556 ("perl-test-fatal" ,perl-test-fatal)
5557 ("perl-test-needs" ,perl-test-needs)
5558 ("perl-test-requires" ,perl-test-requires)
5559 ("perl-test-trap" ,perl-test-trap)
5560 ("perl-test-warnings" ,perl-test-warnings)))
5561 (propagated-inputs
5562 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
5563 ("perl-moose" ,perl-moose)
5564 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
5565 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5566 (home-page "https://metacpan.org/release/MooseX-Getopt")
5567 (synopsis "Moose role for processing command line options")
5568 (description "This is a Moose role which provides an alternate constructor
5569 for creating objects using parameters passed in from the command line.")
5570 (license (package-license perl))))
5571
5572 (define-public perl-moosex-markasmethods
5573 (package
5574 (name "perl-moosex-markasmethods")
5575 (version "0.15")
5576 (source
5577 (origin
5578 (method url-fetch)
5579 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
5580 "MooseX-MarkAsMethods-" version ".tar.gz"))
5581 (sha256
5582 (base32
5583 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
5584 (build-system perl-build-system)
5585 (inputs
5586 `(("perl-moose" ,perl-moose)
5587 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5588 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
5589 (synopsis "Mark overload code symbols as methods")
5590 (description "MooseX::MarkAsMethods allows one to easily mark certain
5591 functions as Moose methods. This will allow other packages such as
5592 namespace::autoclean to operate without blowing away your overloads. After
5593 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
5594 being methods, and class extension as well as composition from roles with
5595 overloads will \"just work\".")
5596 (license lgpl2.1)))
5597
5598 (define-public perl-moosex-methodattributes
5599 (package
5600 (name "perl-moosex-methodattributes")
5601 (version "0.31")
5602 (source
5603 (origin
5604 (method url-fetch)
5605 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5606 "MooseX-MethodAttributes-" version ".tar.gz"))
5607 (sha256
5608 (base32
5609 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
5610 (build-system perl-build-system)
5611 (native-inputs
5612 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5613 ("perl-test-fatal" ,perl-test-fatal)
5614 ("perl-test-requires" ,perl-test-requires)))
5615 (propagated-inputs
5616 `(("perl-moose" ,perl-moose)
5617 ("perl-moosex-types" ,perl-moosex-types)
5618 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5619 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
5620 (synopsis "Code attribute introspection")
5621 (description "This module allows code attributes of methods to be
5622 introspected using Moose meta method objects.")
5623 (license (package-license perl))))
5624
5625 (define-public perl-moosex-nonmoose
5626 (package
5627 (name "perl-moosex-nonmoose")
5628 (version "0.26")
5629 (source
5630 (origin
5631 (method url-fetch)
5632 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5633 "MooseX-NonMoose-" version ".tar.gz"))
5634 (sha256
5635 (base32
5636 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
5637 (build-system perl-build-system)
5638 (native-inputs
5639 `(("perl-moose" ,perl-moose)
5640 ("perl-test-fatal" ,perl-test-fatal)))
5641 (propagated-inputs
5642 `(("perl-list-moreutils" ,perl-list-moreutils)
5643 ("perl-module-runtime" ,perl-module-runtime)
5644 ("perl-moose" ,perl-moose)
5645 ("perl-try-tiny" ,perl-try-tiny)))
5646 (home-page "https://metacpan.org/release/MooseX-NonMoose")
5647 (synopsis "Subclassing of non-Moose classes")
5648 (description "MooseX::NonMoose allows for easily subclassing non-Moose
5649 classes with Moose, taking care of the details connected with doing this, such
5650 as setting up proper inheritance from Moose::Object and installing (and
5651 inlining, at make_immutable time) a constructor that makes sure things like
5652 BUILD methods are called. It tries to be as non-intrusive as possible.")
5653 (license (package-license perl))))
5654
5655 (define-public perl-moosex-params-validate
5656 (package
5657 (name "perl-moosex-params-validate")
5658 (version "0.21")
5659 (source
5660 (origin
5661 (method url-fetch)
5662 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5663 "MooseX-Params-Validate-" version ".tar.gz"))
5664 (sha256
5665 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
5666 (build-system perl-build-system)
5667 (native-inputs
5668 `(("perl-moose" ,perl-moose)
5669 ("perl-test-fatal" ,perl-test-fatal)))
5670 (propagated-inputs
5671 `(("perl-devel-caller" ,perl-devel-caller)
5672 ("perl-moose" ,perl-moose)
5673 ("perl-params-validate" ,perl-params-validate)
5674 ("perl-sub-exporter" ,perl-sub-exporter)))
5675 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
5676 (synopsis "Extension of Params::Validate using Moose's types")
5677 (description "This module fills a gap in Moose by adding method parameter
5678 validation to Moose.")
5679 (license (package-license perl))))
5680
5681 (define-public perl-moosex-relatedclassroles
5682 (package
5683 (name "perl-moosex-relatedclassroles")
5684 (version "0.004")
5685 (source
5686 (origin
5687 (method url-fetch)
5688 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5689 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5690 (sha256
5691 (base32
5692 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5693 (build-system perl-build-system)
5694 (propagated-inputs
5695 `(("perl-moose" ,perl-moose)
5696 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5697 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
5698 (synopsis "Apply roles to a related Perl class")
5699 (description "This module applies roles to make a subclass instead of
5700 manually setting up a subclass.")
5701 (license (package-license perl))))
5702
5703 (define-public perl-moosex-role-parameterized
5704 (package
5705 (name "perl-moosex-role-parameterized")
5706 (version "1.10")
5707 (source
5708 (origin
5709 (method url-fetch)
5710 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5711 "MooseX-Role-Parameterized-" version ".tar.gz"))
5712 (sha256
5713 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
5714 (build-system perl-build-system)
5715 (native-inputs
5716 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5717 ("perl-module-build" ,perl-module-build)
5718 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5719 ("perl-test-fatal" ,perl-test-fatal)
5720 ("perl-test-requires" ,perl-test-requires)))
5721 (propagated-inputs
5722 `(("perl-moose" ,perl-moose)
5723 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5724 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
5725 (synopsis "Moose roles with composition parameters")
5726 (description "Because Moose roles serve many different masters, they
5727 usually provide only the least common denominator of functionality. To
5728 empower roles further, more configurability than -alias and -excludes is
5729 required. Perhaps your role needs to know which method to call when it is
5730 done processing, or what default value to use for its url attribute.
5731 Parameterized roles offer a solution to these (and other) kinds of problems.")
5732 (license (package-license perl))))
5733
5734 (define-public perl-moosex-role-withoverloading
5735 (package
5736 (name "perl-moosex-role-withoverloading")
5737 (version "0.17")
5738 (source
5739 (origin
5740 (method url-fetch)
5741 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5742 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5743 (sha256
5744 (base32
5745 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
5746 (build-system perl-build-system)
5747 (propagated-inputs
5748 `(("perl-aliased" ,perl-aliased)
5749 ("perl-moose" ,perl-moose)
5750 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5751 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
5752 (synopsis "Roles which support overloading")
5753 (description "MooseX::Role::WithOverloading allows you to write a
5754 Moose::Role which defines overloaded operators and allows those overload
5755 methods to be composed into the classes/roles/instances it's compiled to,
5756 where plain Moose::Roles would lose the overloading.")
5757 (license (package-license perl))))
5758
5759 (define-public perl-moosex-semiaffordanceaccessor
5760 (package
5761 (name "perl-moosex-semiaffordanceaccessor")
5762 (version "0.10")
5763 (source
5764 (origin
5765 (method url-fetch)
5766 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5767 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5768 (sha256
5769 (base32
5770 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5771 (build-system perl-build-system)
5772 (propagated-inputs
5773 `(("perl-moose" ,perl-moose)))
5774 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
5775 (synopsis "Name your accessors foo() and set_foo()")
5776 (description "This module does not provide any methods. Simply loading it
5777 changes the default naming policy for the loading class so that accessors are
5778 separated into get and set methods. The get methods have the same name as the
5779 accessor, while set methods are prefixed with \"_set_\".")
5780 (license artistic2.0)))
5781
5782 (define-public perl-moosex-strictconstructor
5783 (package
5784 (name "perl-moosex-strictconstructor")
5785 (version "0.19")
5786 (source
5787 (origin
5788 (method url-fetch)
5789 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5790 "MooseX-StrictConstructor-" version ".tar.gz"))
5791 (sha256
5792 (base32
5793 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5794 (build-system perl-build-system)
5795 (native-inputs
5796 `(("perl-moose" ,perl-moose)
5797 ("perl-test-fatal" ,perl-test-fatal)))
5798 (propagated-inputs
5799 `(("perl-moose" ,perl-moose)
5800 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5801 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
5802 (synopsis "Strict object constructors for Moose")
5803 (description "Simply loading this module makes your constructors
5804 \"strict\". If your constructor is called with an attribute init argument
5805 that your class does not declare, then it calls Moose->throw_error().")
5806 (license artistic2.0)))
5807
5808 (define-public perl-moosex-traits-pluggable
5809 (package
5810 (name "perl-moosex-traits-pluggable")
5811 (version "0.12")
5812 (source
5813 (origin
5814 (method url-fetch)
5815 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5816 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5817 (sha256
5818 (base32
5819 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5820 (build-system perl-build-system)
5821 (native-inputs
5822 `(("perl-moose" ,perl-moose)
5823 ("perl-test-exception" ,perl-test-exception)))
5824 (propagated-inputs
5825 `(("perl-class-load" ,perl-class-load)
5826 ("perl-list-moreutils" ,perl-list-moreutils)
5827 ("perl-moose" ,perl-moose)
5828 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5829 (home-page
5830 "https://metacpan.org/release/MooseX-Traits-Pluggable")
5831 (synopsis "Trait loading and resolution for Moose")
5832 (description "Adds support on top of MooseX::Traits for class precedence
5833 search for traits and some extra attributes.")
5834 (license (package-license perl))))
5835
5836 (define-public perl-moosex-types
5837 (package
5838 (name "perl-moosex-types")
5839 (version "0.45")
5840 (source
5841 (origin
5842 (method url-fetch)
5843 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5844 "MooseX-Types-" version ".tar.gz"))
5845 (sha256
5846 (base32
5847 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5848 (build-system perl-build-system)
5849 (native-inputs
5850 `(("perl-module-build" ,perl-module-build)
5851 ("perl-test-fatal" ,perl-test-fatal)
5852 ("perl-test-requires" ,perl-test-requires)))
5853 (propagated-inputs
5854 `(("perl-carp-clan" ,perl-carp-clan)
5855 ("perl-moose" ,perl-moose)
5856 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5857 (home-page "https://metacpan.org/release/MooseX-Types")
5858 (synopsis "Organise your Moose types in libraries")
5859 (description "This package lets you declare types using short names, but
5860 behind the scenes it namespaces all your type declarations, effectively
5861 prevent name clashes between packages.")
5862 (license (package-license perl))))
5863
5864 (define-public perl-moosex-types-datetime
5865 (package
5866 (name "perl-moosex-types-datetime")
5867 (version "0.13")
5868 (source
5869 (origin
5870 (method url-fetch)
5871 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5872 "MooseX-Types-DateTime-" version ".tar.gz"))
5873 (sha256
5874 (base32
5875 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5876 (build-system perl-build-system)
5877 (native-inputs
5878 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5879 ("perl-moose" ,perl-moose)
5880 ("perl-test-fatal" ,perl-test-fatal)
5881 ("perl-test-simple" ,perl-test-simple)))
5882 (propagated-inputs
5883 `(("perl-datetime" ,perl-datetime)
5884 ("perl-datetime-locale" ,perl-datetime-locale)
5885 ("perl-datetime-timezone" ,perl-datetime-timezone)
5886 ("perl-moose" ,perl-moose)
5887 ("perl-moosex-types" ,perl-moosex-types)
5888 ("perl-namespace-clean" ,perl-namespace-clean)))
5889 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
5890 (synopsis "DateTime related constraints and coercions for Moose")
5891 (description "This module packages several Moose::Util::TypeConstraints
5892 with coercions, designed to work with the DateTime suite of objects.")
5893 (license (package-license perl))))
5894
5895 (define-public perl-moosex-types-datetime-morecoercions
5896 (package
5897 (name "perl-moosex-types-datetime-morecoercions")
5898 (version "0.15")
5899 (source
5900 (origin
5901 (method url-fetch)
5902 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5903 "MooseX-Types-DateTime-MoreCoercions-"
5904 version ".tar.gz"))
5905 (sha256
5906 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
5907 (build-system perl-build-system)
5908 (native-inputs
5909 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5910 ("perl-test-fatal" ,perl-test-fatal)
5911 ("perl-test-simple" ,perl-test-simple)))
5912 (propagated-inputs
5913 `(("perl-datetime" ,perl-datetime)
5914 ("perl-datetimex-easy" ,perl-datetimex-easy)
5915 ("perl-moose" ,perl-moose)
5916 ("perl-moosex-types" ,perl-moosex-types)
5917 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5918 ("perl-namespace-clean" ,perl-namespace-clean)
5919 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5920 (home-page
5921 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
5922 (synopsis "Extensions to MooseX::Types::DateTime")
5923 (description "This module builds on MooseX::Types::DateTime to add
5924 additional custom types and coercions. Since it builds on an existing type,
5925 all coercions and constraints are inherited.")
5926 (license (package-license perl))))
5927
5928 (define-public perl-moosex-types-loadableclass
5929 (package
5930 (name "perl-moosex-types-loadableclass")
5931 (version "0.015")
5932 (source
5933 (origin
5934 (method url-fetch)
5935 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5936 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5937 (sha256
5938 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
5939 (build-system perl-build-system)
5940 (native-inputs
5941 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5942 ("perl-namespace-clean" ,perl-namespace-clean)
5943 ("perl-moose" ,perl-moose)
5944 ("perl-test-fatal" ,perl-test-fatal)
5945 ("perl-class-load" ,perl-class-load)))
5946 (propagated-inputs
5947 `(("perl-module-runtime" ,perl-module-runtime)
5948 ("perl-moosex-types" ,perl-moosex-types)
5949 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5950 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
5951 (synopsis "ClassName type constraints for Moose")
5952 (description "MooseX::Types::LoadableClass provides a ClassName type
5953 constraint with coercion to load the class.")
5954 (license (package-license perl))))
5955
5956 (define-public perl-moox
5957 (package
5958 (name "perl-moox")
5959 (version "0.101")
5960 (source
5961 (origin
5962 (method url-fetch)
5963 (uri (string-append
5964 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5965 version
5966 ".tar.gz"))
5967 (sha256
5968 (base32
5969 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5970 (build-system perl-build-system)
5971 (inputs
5972 `(("perl-data-optlist" ,perl-data-optlist)
5973 ("perl-import-into" ,perl-import-into)
5974 ("perl-module-runtime" ,perl-module-runtime)
5975 ("perl-moo" ,perl-moo)))
5976 (home-page "https://metacpan.org/release/MooX")
5977 (synopsis
5978 "Using Moo and MooX:: packages the most lazy way")
5979 (description "Contains the MooX and MooX::Role packages.")
5980 (license perl-license)))
5981
5982 (define-public perl-moox-cmd
5983 (package
5984 (name "perl-moox-cmd")
5985 (version "0.017")
5986 (source
5987 (origin
5988 (method url-fetch)
5989 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
5990 version ".tar.gz"))
5991 (sha256
5992 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
5993 (build-system perl-build-system)
5994 (native-inputs
5995 `(("perl-capture-tiny" ,perl-capture-tiny)
5996 ("perl-list-moreutils" ,perl-list-moreutils)))
5997 (propagated-inputs
5998 `(("perl-module-pluggable" ,perl-module-pluggable)
5999 ("perl-module-runtime" ,perl-module-runtime)
6000 ("perl-moo" ,perl-moo)
6001 ("perl-package-stash" ,perl-package-stash)
6002 ("perl-params-util" ,perl-params-util)
6003 ("perl-regexp-common" ,perl-regexp-common)))
6004 (home-page "https://metacpan.org/release/MooX-Cmd")
6005 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
6006 (description "This package eases the writing of command line utilities,
6007 accepting commands and subcommands and so on. These commands can form a tree,
6008 which is mirrored in the package structure. On invocation, each command along
6009 the path through the tree (starting from the top-level command through to the
6010 most specific one) is instantiated.")
6011 (license (package-license perl))))
6012
6013 (define-public perl-moox-configfromfile
6014 (package
6015 (name "perl-moox-configfromfile")
6016 (version "0.008")
6017 (source
6018 (origin
6019 (method url-fetch)
6020 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6021 "MooX-ConfigFromFile-" version ".tar.gz"))
6022 (sha256
6023 (base32
6024 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6025 (build-system perl-build-system)
6026 (native-inputs
6027 `(("perl-hash-merge" ,perl-hash-merge)
6028 ("perl-json" ,perl-json)
6029 ("perl-moox-cmd" ,perl-moox-cmd)))
6030 (propagated-inputs
6031 `(("perl-config-any" ,perl-config-any)
6032 ("perl-file-configdir" ,perl-file-configdir)
6033 ("perl-file-find-rule" ,perl-file-find-rule)
6034 ("perl-hash-merge" ,perl-hash-merge)
6035 ("perl-moo" ,perl-moo)
6036 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6037 ("perl-namespace-clean" ,perl-namespace-clean)))
6038 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
6039 (synopsis "Moo eXtension for initializing objects from config file")
6040 (description "This module is intended to easily load initialization values
6041 for attributes on object construction from an appropriate config file. The
6042 building is done in @code{MooX::ConfigFromFile::Role}---using
6043 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6044 (license (package-license perl))))
6045
6046 (define-public perl-moox-file-configdir
6047 (package
6048 (name "perl-moox-file-configdir")
6049 (version "0.007")
6050 (source
6051 (origin
6052 (method url-fetch)
6053 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6054 "MooX-File-ConfigDir-" version ".tar.gz"))
6055 (sha256
6056 (base32
6057 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6058 (build-system perl-build-system)
6059 (propagated-inputs
6060 `(("perl-file-configdir" ,perl-file-configdir)
6061 ("perl-moo" ,perl-moo)
6062 ("perl-namespace-clean" ,perl-namespace-clean)))
6063 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
6064 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6065 (description "This module is a helper for easily finding configuration
6066 file locations. This information can be used to find a suitable place for
6067 installing configuration files or for finding any piece of settings.")
6068 (license (package-license perl))))
6069
6070 (define-public perl-moox-handlesvia
6071 (package
6072 (name "perl-moox-handlesvia")
6073 (version "0.001008")
6074 (source
6075 (origin
6076 (method url-fetch)
6077 (uri (string-append
6078 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6079 version
6080 ".tar.gz"))
6081 (sha256
6082 (base32
6083 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6084 (build-system perl-build-system)
6085 (native-inputs
6086 `(("perl-moox-types-mooselike"
6087 ,perl-moox-types-mooselike)
6088 ("perl-test-exception" ,perl-test-exception)
6089 ("perl-test-fatal" ,perl-test-fatal)))
6090 (inputs
6091 `(("perl-class-method-modifiers"
6092 ,perl-class-method-modifiers)
6093 ("perl-module-runtime" ,perl-module-runtime)
6094 ("perl-moo" ,perl-moo)
6095 ("perl-role-tiny" ,perl-role-tiny)))
6096 (propagated-inputs
6097 `(("perl-data-perl" ,perl-data-perl)))
6098 (home-page
6099 "https://metacpan.org/release/MooX-HandlesVia")
6100 (synopsis "NativeTrait-like behavior for Moo")
6101 (description
6102 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6103 attribute functionality. It provides a means of proxying functionality from
6104 an external class to the given atttribute.")
6105 (license perl-license)))
6106
6107 (define-public perl-moox-late
6108 (package
6109 (name "perl-moox-late")
6110 (version "0.015")
6111 (source
6112 (origin
6113 (method url-fetch)
6114 (uri (string-append
6115 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6116 version
6117 ".tar.gz"))
6118 (sha256
6119 (base32
6120 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6121 (build-system perl-build-system)
6122 (native-inputs
6123 `(("perl-test-fatal" ,perl-test-fatal)
6124 ("perl-test-requires" ,perl-test-requires)))
6125 (inputs
6126 `(("perl-moo" ,perl-moo)
6127 ("perl-moox" ,perl-moox)
6128 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6129 (propagated-inputs
6130 `(("perl-type-tiny" ,perl-type-tiny)))
6131 (home-page
6132 "https://metacpan.org/release/MooX-late")
6133 (synopsis "Easily translate Moose code to Moo")
6134 (description
6135 "MooX::late does the following:
6136 @enumerate
6137 @item Supports isa => $stringytype
6138 @item Supports does => $rolename
6139 @item Supports lazy_build => 1
6140 @item Exports blessed and confess functions to your namespace.
6141 @item Handles certain attribute traits
6142 Currently Hash, Array and Code are supported. This feature requires
6143 MooX::HandlesVia.
6144 @end enumerate")
6145 (license perl-license)))
6146
6147 (define-public perl-moox-options
6148 (package
6149 (name "perl-moox-options")
6150 (version "4.023")
6151 (source
6152 (origin
6153 (method url-fetch)
6154 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6155 "MooX-Options-" version ".tar.gz"))
6156 (sha256
6157 (base32
6158 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6159 (build-system perl-build-system)
6160 (native-inputs
6161 `(("perl-capture-tiny" ,perl-capture-tiny)
6162 ("perl-import-into" ,perl-import-into)
6163 ("perl-module-build" ,perl-module-build)
6164 ("perl-moo" ,perl-moo)
6165 ("perl-moose" ,perl-moose)
6166 ("perl-moox-cmd" ,perl-moox-cmd)
6167 ("perl-namespace-clean" ,perl-namespace-clean)
6168 ("perl-role-tiny" ,perl-role-tiny)
6169 ("perl-test-requires" ,perl-test-requires)
6170 ("perl-test-trap" ,perl-test-trap)
6171 ("perl-test-pod" ,perl-test-pod)
6172 ("perl-try-tiny" ,perl-try-tiny)))
6173 (propagated-inputs
6174 `(("perl-config-any" ,perl-config-any)
6175 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6176 ("perl-data-record" ,perl-data-record)
6177 ("perl-file-configdir" ,perl-file-configdir)
6178 ("perl-file-find-rule" ,perl-file-find-rule)
6179 ("perl-file-sharedir" ,perl-file-sharedir)
6180 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6181 ("perl-json-maybexs" ,perl-json-maybexs)
6182 ("perl-libintl-perl" ,perl-libintl-perl)
6183 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6184 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6185 ("perl-path-class" ,perl-path-class)
6186 ("perl-regexp-common" ,perl-regexp-common)
6187 ("perl-term-size-any" ,perl-term-size-any)
6188 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6189 (home-page "https://metacpan.org/release/MooX-Options")
6190 (synopsis "Explicit Options eXtension for Object Class")
6191 (description "Create a command line tool with your Mo, Moo, Moose objects.
6192 You have an @code{option} keyword to replace the usual @code{has} to
6193 explicitly use your attribute on the command line. The @code{option} keyword
6194 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6195 generate a command line tool.")
6196 (license (package-license perl))))
6197
6198 (define-public perl-moox-types-mooselike
6199 (package
6200 (name "perl-moox-types-mooselike")
6201 (version "0.29")
6202 (source
6203 (origin
6204 (method url-fetch)
6205 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6206 "MooX-Types-MooseLike-" version ".tar.gz"))
6207 (sha256
6208 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
6209 (build-system perl-build-system)
6210 (native-inputs
6211 `(("perl-moo" ,perl-moo)
6212 ("perl-test-fatal" ,perl-test-fatal)))
6213 (propagated-inputs
6214 `(("perl-module-runtime" ,perl-module-runtime)
6215 ("perl-strictures" ,perl-strictures)))
6216 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
6217 (synopsis "Moosish types and type builder")
6218 (description "MooX::Types::MooseLike provides a possibility to build your
6219 own set of Moose-like types. These custom types can then be used to describe
6220 fields in Moo-based classes.")
6221 (license (package-license perl))))
6222
6223 (define-public perl-mouse
6224 (package
6225 (name "perl-mouse")
6226 (version "2.5.6")
6227 (source (origin
6228 (method url-fetch)
6229 (uri (string-append
6230 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6231 version
6232 ".tar.gz"))
6233 (sha256
6234 (base32
6235 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
6236 (build-system perl-build-system)
6237 (native-inputs
6238 `(("perl-module-build" ,perl-module-build)
6239 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6240 ("perl-test-exception" ,perl-test-exception)
6241 ("perl-test-fatal" ,perl-test-fatal)
6242 ("perl-test-leaktrace" ,perl-test-leaktrace)
6243 ("perl-test-output" ,perl-test-output)
6244 ("perl-test-requires" ,perl-test-requires)
6245 ("perl-try-tiny" ,perl-try-tiny)))
6246 (home-page "https://github.com/gfx/p5-Mouse")
6247 (synopsis "Fast Moose-compatible object system for perl5")
6248 (description
6249 "Mouse is a @code{Moose} compatible object system that implements a
6250 subset of the functionality for reduced startup time.")
6251 (license (package-license perl))))
6252
6253 (define-public perl-mousex-nativetraits
6254 (package
6255 (name "perl-mousex-nativetraits")
6256 (version "1.09")
6257 (source (origin
6258 (method url-fetch)
6259 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6260 "MouseX-NativeTraits-" version ".tar.gz"))
6261 (sha256
6262 (base32
6263 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6264 (build-system perl-build-system)
6265 (native-inputs
6266 `(("perl-any-moose" ,perl-any-moose)
6267 ("perl-module-install" ,perl-module-install)
6268 ("perl-test-fatal" ,perl-test-fatal)))
6269 (propagated-inputs
6270 `(("perl-mouse" ,perl-mouse)))
6271 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
6272 (synopsis "Extend attribute interfaces for Mouse")
6273 (description
6274 "While @code{Mouse} attributes provide a way to name your accessors,
6275 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6276 provides commonly used attribute helper methods for more specific types
6277 of data.")
6278 (license (package-license perl))))
6279
6280 (define-public perl-mozilla-ca
6281 (package
6282 (name "perl-mozilla-ca")
6283 (version "20180117")
6284 (source
6285 (origin
6286 (method url-fetch)
6287 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6288 version ".tar.gz"))
6289 (sha256
6290 (base32
6291 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6292 (build-system perl-build-system)
6293 (home-page "https://metacpan.org/release/Mozilla-CA")
6294 (synopsis "Mozilla's CA cert bundle in PEM format")
6295 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6296 Certificate Authority certificates in a form that can be consumed by modules
6297 and libraries based on OpenSSL.")
6298 (license mpl2.0)))
6299
6300 (define-public perl-multidimensional
6301 (package
6302 (name "perl-multidimensional")
6303 (version "0.014")
6304 (source
6305 (origin
6306 (method url-fetch)
6307 (uri (string-append
6308 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6309 version ".tar.gz"))
6310 (sha256
6311 (base32
6312 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6313 (build-system perl-build-system)
6314 (native-inputs
6315 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6316 ("perl-extutils-depends" ,perl-extutils-depends)))
6317 (propagated-inputs
6318 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6319 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6320 (home-page "https://metacpan.org/release/multidimensional")
6321 (synopsis "Disable multidimensional array emulation")
6322 (description
6323 "Multidimensional disables multidimensional array emulation.")
6324 (license (package-license perl))))
6325
6326 (define-public perl-mro-compat
6327 (package
6328 (name "perl-mro-compat")
6329 (version "0.13")
6330 (source
6331 (origin
6332 (method url-fetch)
6333 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6334 "MRO-Compat-" version ".tar.gz"))
6335 (sha256
6336 (base32
6337 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6338 (build-system perl-build-system)
6339 (home-page "https://metacpan.org/release/MRO-Compat")
6340 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6341 (description "The \"mro\" namespace provides several utilities for dealing
6342 with method resolution order and method caching in general in Perl 5.9.5 and
6343 higher. This module provides those interfaces for earlier versions of
6344 Perl (back to 5.6.0).")
6345 (license (package-license perl))))
6346
6347 (define-public perl-namespace-autoclean
6348 (package
6349 (name "perl-namespace-autoclean")
6350 (version "0.28")
6351 (source
6352 (origin
6353 (method url-fetch)
6354 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6355 "namespace-autoclean-" version ".tar.gz"))
6356 (sha256
6357 (base32
6358 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6359 (build-system perl-build-system)
6360 (native-inputs
6361 `(("perl-module-build" ,perl-module-build)
6362 ("perl-test-requires" ,perl-test-requires)))
6363 (propagated-inputs
6364 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6365 ("perl-namespace-clean" ,perl-namespace-clean)
6366 ("perl-sub-identify" ,perl-sub-identify)))
6367 (home-page "https://metacpan.org/release/namespace-autoclean")
6368 (synopsis "Keep imports out of your namespace")
6369 (description "The namespace::autoclean pragma will remove all imported
6370 symbols at the end of the current package's compile cycle. Functions called
6371 in the package itself will still be bound by their name, but they won't show
6372 up as methods on your class or instances. It is very similar to
6373 namespace::clean, except it will clean all imported functions, no matter if
6374 you imported them before or after you used the pragma. It will also not touch
6375 anything that looks like a method.")
6376 (license (package-license perl))))
6377
6378 (define-public perl-namespace-clean
6379 (package
6380 (name "perl-namespace-clean")
6381 (version "0.27")
6382 (source
6383 (origin
6384 (method url-fetch)
6385 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6386 "namespace-clean-" version ".tar.gz"))
6387 (sha256
6388 (base32
6389 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
6390 (build-system perl-build-system)
6391 (propagated-inputs
6392 `(("perl-package-stash" ,perl-package-stash)
6393 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6394 (home-page "https://metacpan.org/release/namespace-clean")
6395 (synopsis "Keep imports and functions out of your namespace")
6396 (description "The namespace::clean pragma will remove all previously
6397 declared or imported symbols at the end of the current package's compile
6398 cycle. Functions called in the package itself will still be bound by their
6399 name, but they won't show up as methods on your class or instances.")
6400 (license (package-license perl))))
6401
6402 (define-public perl-net-dns-native
6403 (package
6404 (name "perl-net-dns-native")
6405 (version "0.20")
6406 (source
6407 (origin
6408 (method url-fetch)
6409 (uri (string-append
6410 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6411 version ".tar.gz"))
6412 (sha256
6413 (base32 "0whm9l30frgzcfmlzqrsx3q5rdi8y6dhz33r4msgxrch8h97i8cb"))))
6414 (build-system perl-build-system)
6415 (home-page "https://metacpan.org/release/Net-DNS-Native")
6416 (synopsis "Non-blocking system DNS resolver")
6417 (description
6418 "This class provides several methods for host name resolution. It is
6419 designed to be used with event loops. Names are resolved by your system's
6420 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6421 avoid blocking the entire application. Threading overhead is limited by using
6422 system threads instead of Perl threads.")
6423 (license perl-license)))
6424
6425 (define-public perl-net-idn-encode
6426 (package
6427 (name "perl-net-idn-encode")
6428 (version "2.500")
6429 (source
6430 (origin
6431 (method url-fetch)
6432 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
6433 "Net-IDN-Encode-" version ".tar.gz"))
6434 (sha256
6435 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
6436 (build-system perl-build-system)
6437 (native-inputs
6438 `(("perl-module-build" ,perl-module-build)
6439 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6440 (home-page "https://metacpan.org/release/Net-IDN-Encode")
6441 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
6442 (description
6443 "Internationalized Domain Names (IDNs) use characters drawn from a large
6444 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6445 represented using only the ASCII characters already allowed in so-called host
6446 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6447
6448 Use this module if you just want to convert domain names (or email addresses),
6449 using whatever IDNA standard is the best choice at the moment.")
6450 (license perl-license)))
6451
6452 (define-public perl-net-statsd
6453 (package
6454 (name "perl-net-statsd")
6455 (version "0.12")
6456 (source
6457 (origin
6458 (method url-fetch)
6459 (uri (string-append
6460 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6461 version
6462 ".tar.gz"))
6463 (sha256
6464 (base32
6465 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6466 (build-system perl-build-system)
6467 (home-page
6468 "https://metacpan.org/release/Net-Statsd")
6469 (synopsis "Perl client for Etsy's statsd daemon")
6470 (description "This module implement a UDP client for the statsd statistics
6471 collector daemon in use at Etsy.com.")
6472 (license (package-license perl))))
6473
6474 (define-public perl-number-compare
6475 (package
6476 (name "perl-number-compare")
6477 (version "0.03")
6478 (source
6479 (origin
6480 (method url-fetch)
6481 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6482 "Number-Compare-" version ".tar.gz"))
6483 (sha256
6484 (base32
6485 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6486 (build-system perl-build-system)
6487 (home-page "https://metacpan.org/release/Number-Compare")
6488 (synopsis "Numeric comparisons")
6489 (description "Number::Compare compiles a simple comparison to an anonymous
6490 subroutine, which you can call with a value to be tested against.")
6491 (license (package-license perl))))
6492
6493 (define-public perl-number-format
6494 (package
6495 (name "perl-number-format")
6496 (version "1.75")
6497 (source (origin
6498 (method url-fetch)
6499 (uri (string-append
6500 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6501 version ".tar.gz"))
6502 (sha256
6503 (base32
6504 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6505 (build-system perl-build-system)
6506 (home-page "https://metacpan.org/release/Number-Format")
6507 (synopsis "Convert numbers to strings with pretty formatting")
6508 (description "@code{Number::Format} is a library for formatting numbers.
6509 Functions are provided for converting numbers to strings in a variety of ways,
6510 and to convert strings that contain numbers back into numeric form. The
6511 output formats may include thousands separators - characters inserted between
6512 each group of three characters counting right to left from the decimal point.
6513 The characters used for the decimal point and the thousands separator come from
6514 the locale information or can be specified by the user.")
6515 (license perl-license)))
6516
6517 (define-public perl-number-range
6518 (package
6519 (name "perl-number-range")
6520 (version "0.12")
6521 (source
6522 (origin
6523 (method url-fetch)
6524 (uri (string-append
6525 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6526 version ".tar.gz"))
6527 (sha256
6528 (base32
6529 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6530 (build-system perl-build-system)
6531 (home-page "https://metacpan.org/release/Number-Range")
6532 (synopsis "Perl extension defining ranges of numbers")
6533 (description "Number::Range is an object-oriented interface to test if a
6534 number exists in a given range, and to be able to manipulate the range.")
6535 (license (package-license perl))))
6536
6537 (define-public perl-object-signature
6538 (package
6539 (name "perl-object-signature")
6540 (version "1.08")
6541 (source
6542 (origin
6543 (method url-fetch)
6544 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6545 "Object-Signature-" version ".tar.gz"))
6546 (sha256
6547 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
6548 (build-system perl-build-system)
6549 (native-inputs
6550 `(("perl-module-install" ,perl-module-install)))
6551 (home-page "https://metacpan.org/release/Object-Signature")
6552 (synopsis "Generate cryptographic signatures for objects")
6553 (description "Object::Signature is an abstract base class that you can
6554 inherit from in order to allow your objects to generate unique cryptographic
6555 signatures.")
6556 (license (package-license perl))))
6557
6558 (define-public perl-ole-storage-lite
6559 (package
6560 (name "perl-ole-storage-lite")
6561 (version "0.19")
6562 (source
6563 (origin
6564 (method url-fetch)
6565 (uri (string-append
6566 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6567 version
6568 ".tar.gz"))
6569 (sha256
6570 (base32
6571 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6572 (build-system perl-build-system)
6573 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
6574 (synopsis "Read and write OLE storage files")
6575 (description "This module allows you to read and write
6576 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6577 technology to store hierarchical information such as links to other
6578 documents within a single file.")
6579 (license (package-license perl))))
6580
6581 (define-public perl-package-anon
6582 (package
6583 (name "perl-package-anon")
6584 (version "0.05")
6585 (source
6586 (origin
6587 (method url-fetch)
6588 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6589 "Package-Anon-" version ".tar.gz"))
6590 (sha256
6591 (base32
6592 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6593 (build-system perl-build-system)
6594 (propagated-inputs
6595 `(("perl-sub-exporter" ,perl-sub-exporter)
6596 ("perl-params-util" ,perl-params-util)))
6597 (home-page "https://metacpan.org/release/Package-Anon")
6598 (synopsis "Anonymous packages")
6599 (description "This module allows for anonymous packages that are
6600 independent of the main namespace and only available through an object
6601 instance, not by name.")
6602 (license (package-license perl))))
6603
6604 (define-public perl-package-deprecationmanager
6605 (package
6606 (name "perl-package-deprecationmanager")
6607 (version "0.17")
6608 (source
6609 (origin
6610 (method url-fetch)
6611 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6612 "Package-DeprecationManager-" version ".tar.gz"))
6613 (sha256
6614 (base32
6615 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6616 (build-system perl-build-system)
6617 (native-inputs
6618 `(("perl-test-fatal" ,perl-test-fatal)
6619 ("perl-test-requires" ,perl-test-requires)
6620 ("perl-test-output" ,perl-test-output)))
6621 (propagated-inputs
6622 `(("perl-list-moreutils" ,perl-list-moreutils)
6623 ("perl-params-util" ,perl-params-util)
6624 ("perl-sub-install" ,perl-sub-install)))
6625 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6626 (home-page "https://metacpan.org/release/Package-DeprecationManager")
6627 (synopsis "Manage deprecation warnings for your distribution")
6628 (description "This module allows you to manage a set of deprecations for
6629 one or more modules.")
6630 (license artistic2.0)))
6631
6632 (define-public perl-package-stash
6633 (package
6634 (name "perl-package-stash")
6635 (version "0.38")
6636 (source
6637 (origin
6638 (method url-fetch)
6639 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6640 "Package-Stash-" version ".tar.gz"))
6641 (sha256
6642 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
6643 (build-system perl-build-system)
6644 (native-inputs
6645 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6646 ("perl-test-fatal" ,perl-test-fatal)
6647 ("perl-test-requires" ,perl-test-requires)
6648 ("perl-package-anon" ,perl-package-anon)))
6649 (propagated-inputs
6650 `(("perl-module-implementation" ,perl-module-implementation)
6651 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6652 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6653 (home-page "https://metacpan.org/release/Package-Stash")
6654 (synopsis "Routines for manipulating stashes")
6655 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6656 necessary, but incredibly messy, and easy to get wrong. This module hides all
6657 of that behind a simple API.")
6658 (license (package-license perl))))
6659
6660 (define-public perl-package-stash-xs
6661 (package
6662 (name "perl-package-stash-xs")
6663 (version "0.29")
6664 (source
6665 (origin
6666 (method url-fetch)
6667 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6668 "Package-Stash-XS-" version ".tar.gz"))
6669 (sha256
6670 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
6671 (build-system perl-build-system)
6672 (native-inputs
6673 `(("perl-test-fatal" ,perl-test-fatal)
6674 ("perl-test-requires" ,perl-test-requires)
6675 ("perl-package-anon" ,perl-package-anon)))
6676 (home-page "https://metacpan.org/release/Package-Stash-XS")
6677 (synopsis "Faster implementation of the Package::Stash API")
6678 (description "This is a backend for Package::Stash, which provides the
6679 functionality in a way that's less buggy and much faster. It will be used by
6680 default if it's installed, and should be preferred in all environments with a
6681 compiler.")
6682 (license (package-license perl))))
6683
6684 (define-public perl-padwalker
6685 (package
6686 (name "perl-padwalker")
6687 (version "2.3")
6688 (source
6689 (origin
6690 (method url-fetch)
6691 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6692 "PadWalker-" version ".tar.gz"))
6693 (sha256
6694 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
6695 (build-system perl-build-system)
6696 (home-page "https://metacpan.org/release/PadWalker")
6697 (synopsis "Play with other peoples' lexical variables")
6698 (description "PadWalker is a module which allows you to inspect (and even
6699 change) lexical variables in any subroutine which called you. It will only
6700 show those variables which are in scope at the point of the call. PadWalker
6701 is particularly useful for debugging.")
6702 (license (package-license perl))))
6703
6704 (define-public perl-parallel-forkmanager
6705 (package
6706 (name "perl-parallel-forkmanager")
6707 (version "1.19")
6708 (source
6709 (origin
6710 (method url-fetch)
6711 (uri (string-append
6712 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6713 version
6714 ".tar.gz"))
6715 (sha256
6716 (base32
6717 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6718 (build-system perl-build-system)
6719 (native-inputs
6720 `(("perl-test-warn" ,perl-test-warn)))
6721 (home-page "https://metacpan.org/release/Parallel-ForkManager")
6722 (synopsis "Simple parallel processing fork manager")
6723 (description "@code{Parallel::ForkManager} is intended for use in
6724 operations that can be done in parallel where the number of
6725 processes to be forked off should be limited.")
6726 (license (package-license perl))))
6727
6728 (define-public perl-params-util
6729 (package
6730 (name "perl-params-util")
6731 (version "1.07")
6732 (source
6733 (origin
6734 (method url-fetch)
6735 (uri (string-append
6736 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6737 version ".tar.gz"))
6738 (sha256
6739 (base32
6740 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6741 (build-system perl-build-system)
6742 (home-page "https://metacpan.org/release/Params-Util")
6743 (synopsis "Simple, compact and correct param-checking functions")
6744 (description
6745 "Params::Util provides a basic set of importable functions that makes
6746 checking parameters easier.")
6747 (license (package-license perl))))
6748
6749 (define-public perl-params-validate
6750 (package
6751 (name "perl-params-validate")
6752 (version "1.29")
6753 (source
6754 (origin
6755 (method url-fetch)
6756 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6757 "Params-Validate-" version ".tar.gz"))
6758 (sha256
6759 (base32
6760 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
6761 (build-system perl-build-system)
6762 (native-inputs
6763 `(("perl-module-build" ,perl-module-build)
6764 ("perl-test-fatal" ,perl-test-fatal)
6765 ("perl-test-requires" ,perl-test-requires)))
6766 (propagated-inputs
6767 `(("perl-module-implementation" ,perl-module-implementation)))
6768 (home-page "https://metacpan.org/release/Params-Validate")
6769 (synopsis "Validate method/function parameters")
6770 (description "The Params::Validate module allows you to validate method or
6771 function call parameters to an arbitrary level of specificity.")
6772 (license artistic2.0)))
6773
6774 (define-public perl-params-validationcompiler
6775 (package
6776 (name "perl-params-validationcompiler")
6777 (version "0.30")
6778 (source
6779 (origin
6780 (method url-fetch)
6781 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6782 "Params-ValidationCompiler-" version ".tar.gz"))
6783 (sha256
6784 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
6785 (build-system perl-build-system)
6786 (native-inputs
6787 ;; For tests.
6788 `(("perl-test-without-module" ,perl-test-without-module)
6789 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6790 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6791 ("perl-type-tiny" ,perl-type-tiny)))
6792 (propagated-inputs
6793 `(("perl-eval-closure" ,perl-eval-closure)
6794 ("perl-exception-class" ,perl-exception-class)
6795 ("perl-specio" ,perl-specio)))
6796 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6797 (synopsis "Build an optimized subroutine parameter validator")
6798 (description "This module creates a customized, highly efficient
6799 parameter checking subroutine. It can handle named or positional
6800 parameters, and can return the parameters as key/value pairs or a list
6801 of values. In addition to type checks, it also supports parameter
6802 defaults, optional parameters, and extra \"slurpy\" parameters.")
6803 (license artistic2.0)))
6804
6805 (define-public perl-par-dist
6806 (package
6807 (name "perl-par-dist")
6808 (version "0.49")
6809 (source
6810 (origin
6811 (method url-fetch)
6812 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6813 "PAR-Dist-" version ".tar.gz"))
6814 (sha256
6815 (base32
6816 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6817 (build-system perl-build-system)
6818 (home-page "https://metacpan.org/release/PAR-Dist")
6819 (synopsis "Create and manipulate PAR distributions")
6820 (description "PAR::Dist is a toolkit to create and manipulate PAR
6821 distributions.")
6822 (license (package-license perl))))
6823
6824 (define-public perl-parent
6825 (package
6826 (name "perl-parent")
6827 (version "0.237")
6828 (source
6829 (origin
6830 (method url-fetch)
6831 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6832 "parent-" version ".tar.gz"))
6833 (sha256
6834 (base32 "1bnaadzf51g6zrpq6pvvgds2cc9d4w1vck7sapkd3hb5hmjdk28h"))))
6835 (build-system perl-build-system)
6836 (home-page "https://metacpan.org/release/parent")
6837 (synopsis "Establish an ISA relationship with base classes at compile time")
6838 (description "Allows you to both load one or more modules, while setting
6839 up inheritance from those modules at the same time.")
6840 (license (package-license perl))))
6841
6842 (define-public perl-path-class
6843 (package
6844 (name "perl-path-class")
6845 (version "0.37")
6846 (source
6847 (origin
6848 (method url-fetch)
6849 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6850 "Path-Class-" version ".tar.gz"))
6851 (sha256
6852 (base32
6853 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6854 (build-system perl-build-system)
6855 (native-inputs `(("perl-module-build" ,perl-module-build)))
6856 (home-page "https://metacpan.org/release/Path-Class")
6857 (synopsis "Path specification manipulation")
6858 (description "Path::Class is a module for manipulation of file and
6859 directory specifications in a cross-platform manner.")
6860 (license (package-license perl))))
6861
6862 (define-public perl-pathtools
6863 (package
6864 (name "perl-pathtools")
6865 (version "3.75")
6866 (source
6867 (origin
6868 (method url-fetch)
6869 (uri (string-append
6870 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6871 version ".tar.gz"))
6872 (sha256
6873 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
6874 (build-system perl-build-system)
6875 (arguments
6876 `(#:phases
6877 (modify-phases %standard-phases
6878 (add-after 'unpack 'patch-pwd-path
6879 (lambda* (#:key inputs #:allow-other-keys)
6880 (substitute* "Cwd.pm"
6881 (("'/bin/pwd'")
6882 (string-append "'" (assoc-ref inputs "coreutils")
6883 "/bin/pwd'")))
6884 #t)))))
6885 (inputs
6886 `(("coreutils" ,coreutils)))
6887 (home-page "https://metacpan.org/release/PathTools")
6888 (synopsis "Tools for working with directory and file names")
6889 (description "This package provides functions to work with directory and
6890 file names.")
6891 (license perl-license)))
6892
6893 (define-public perl-path-tiny
6894 (package
6895 (name "perl-path-tiny")
6896 (version "0.108")
6897 (source (origin
6898 (method url-fetch)
6899 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6900 "Path-Tiny-" version ".tar.gz"))
6901 (sha256
6902 (base32
6903 "1x9zf8r3cynf4vqlycyyspsr70v4zw6bk9bkgvfpvsxkw8mlhj9w"))))
6904 (build-system perl-build-system)
6905 (arguments
6906 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6907 ;; (native-inputs
6908 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6909 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6910 (inputs
6911 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6912 (home-page "https://metacpan.org/release/Path-Tiny")
6913 (synopsis "File path utility")
6914 (description "This module provides a small, fast utility for working
6915 with file paths.")
6916 (license asl2.0)))
6917
6918 (define-public perl-perlio-utf8_strict
6919 (package
6920 (name "perl-perlio-utf8-strict")
6921 (version "0.007")
6922 (source (origin
6923 (method url-fetch)
6924 (uri (string-append
6925 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6926 version ".tar.gz"))
6927 (sha256
6928 (base32
6929 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
6930 (build-system perl-build-system)
6931 (native-inputs
6932 `(("perl-test-exception" ,perl-test-exception)))
6933 (home-page
6934 "https://metacpan.org/release/PerlIO-utf8_strict")
6935 (synopsis "Fast and correct UTF-8 IO")
6936 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6937 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6938 for correctness.")
6939 (license (package-license perl))))
6940
6941 (define-public perl-pegex
6942 (package
6943 (name "perl-pegex")
6944 (version "0.70")
6945 (source
6946 (origin
6947 (method url-fetch)
6948 (uri (string-append
6949 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6950 version ".tar.gz"))
6951 (sha256
6952 (base32
6953 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
6954 (build-system perl-build-system)
6955 (native-inputs
6956 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6957 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6958 (home-page "https://metacpan.org/release/Pegex")
6959 (synopsis "Acmeist PEG Parser Framework")
6960 (description "Pegex is an Acmeist parser framework. It allows you to easily
6961 create parsers that will work equivalently in lots of programming languages.
6962 The inspiration for Pegex comes from the parsing engine upon which the
6963 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6964 to the other justmodern languages that have a normal regular expression engine
6965 available.")
6966 (license (package-license perl))))
6967
6968 (define-public perl-pod-coverage
6969 (package
6970 (name "perl-pod-coverage")
6971 (version "0.23")
6972 (source
6973 (origin
6974 (method url-fetch)
6975 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6976 "Pod-Coverage-" version ".tar.gz"))
6977 (sha256
6978 (base32
6979 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
6980 (build-system perl-build-system)
6981 (propagated-inputs
6982 `(("perl-devel-symdump" ,perl-devel-symdump)))
6983 (home-page "https://metacpan.org/release/Pod-Coverage")
6984 (synopsis "Check for comprehensive documentation of a module")
6985 (description "This module provides a mechanism for determining if the pod
6986 for a given module is comprehensive.")
6987 (license (package-license perl))))
6988
6989 (define-public perl-pod-simple
6990 (package
6991 (name "perl-pod-simple")
6992 (version "3.35")
6993 (source (origin
6994 (method url-fetch)
6995 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
6996 "Pod-Simple-" version ".tar.gz"))
6997 (sha256
6998 (base32
6999 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
7000 (build-system perl-build-system)
7001 (home-page "https://metacpan.org/release/Pod-Simple")
7002 (synopsis "Parsing library for text in Pod format")
7003 (description "@code{Pod::Simple} is a Perl library for parsing text in
7004 the @dfn{Pod} (plain old documentation) markup language that is typically
7005 used for writing documentation for Perl and for Perl modules.")
7006 (license (package-license perl))))
7007
7008 (define-public perl-posix-strftime-compiler
7009 (package
7010 (name "perl-posix-strftime-compiler")
7011 (version "0.42")
7012 (source
7013 (origin
7014 (method url-fetch)
7015 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
7016 "POSIX-strftime-Compiler-" version ".tar.gz"))
7017 (sha256
7018 (base32
7019 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
7020 (build-system perl-build-system)
7021 (native-inputs `(("perl-module-build" ,perl-module-build)))
7022 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
7023 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
7024 (synopsis "GNU C library compatible strftime for loggers and servers")
7025 (description "POSIX::strftime::Compiler provides GNU C library compatible
7026 strftime(3). But this module is not affected by the system locale. This
7027 feature is useful when you want to write loggers, servers, and portable
7028 applications.")
7029 (license (package-license perl))))
7030
7031 (define-public perl-probe-perl
7032 (package
7033 (name "perl-probe-perl")
7034 (version "0.03")
7035 (source (origin
7036 (method url-fetch)
7037 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7038 "Probe-Perl-" version ".tar.gz"))
7039 (sha256
7040 (base32
7041 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7042 (build-system perl-build-system)
7043 (synopsis "Information about the currently running perl")
7044 (description
7045 "Probe::Perl provides methods for obtaining information about the
7046 currently running perl interpreter. It originally began life as code in the
7047 Module::Build project, but has been externalized here for general use.")
7048 (home-page "https://metacpan.org/release/Probe-Perl")
7049 (license (package-license perl))))
7050
7051 (define-public perl-proc-invokeeditor
7052 (package
7053 (name "perl-proc-invokeeditor")
7054 (version "1.13")
7055 (source
7056 (origin
7057 (method url-fetch)
7058 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7059 version ".tar.gz"))
7060 (sha256
7061 (base32
7062 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7063 (build-system perl-build-system)
7064 (arguments
7065 `(#:phases
7066 (modify-phases %standard-phases
7067 (add-after 'unpack 'set-EDITOR
7068 (lambda _ (setenv "EDITOR" "echo") #t)))))
7069 (propagated-inputs
7070 `(("perl-carp-assert" ,perl-carp-assert)))
7071 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
7072 (synopsis "Interface to external editor from Perl")
7073 (description "This module provides the ability to supply some text to an
7074 external text editor, have it edited by the user, and retrieve the results.")
7075 (license (package-license perl))))
7076
7077 (define-public perl-readonly
7078 (package
7079 (name "perl-readonly")
7080 (version "2.00")
7081 (source
7082 (origin
7083 (method url-fetch)
7084 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7085 "Readonly-" version ".tar.gz"))
7086 (sha256
7087 (base32
7088 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7089 (build-system perl-build-system)
7090 (native-inputs `(("perl-module-build" ,perl-module-build)))
7091 (home-page "https://metacpan.org/release/Readonly")
7092 (synopsis "Create read-only scalars, arrays, hashes")
7093 (description "This module provides a facility for creating non-modifiable
7094 variables in Perl. This is useful for configuration files, headers, etc. It
7095 can also be useful as a development and debugging tool for catching updates to
7096 variables that should not be changed.")
7097 (license (package-license perl))))
7098
7099 (define-public perl-ref-util-xs
7100 (package
7101 (name "perl-ref-util-xs")
7102 (version "0.117")
7103 (source
7104 (origin
7105 (method url-fetch)
7106 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7107 "Ref-Util-XS-" version ".tar.gz"))
7108 (sha256
7109 (base32
7110 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7111 (build-system perl-build-system)
7112 (home-page "https://metacpan.org/release/Ref-Util-XS")
7113 (synopsis "XS implementation for Ref::Util")
7114 (description "@code{Ref::Util::XS} is the XS implementation of
7115 @code{Ref::Util}, which provides several functions to help identify references
7116 in a more convenient way than the usual approach of examining the return value
7117 of @code{ref}.")
7118 (license x11)))
7119
7120 (define-public perl-regexp-common
7121 (package
7122 (name "perl-regexp-common")
7123 (version "2017060201")
7124 (source (origin
7125 (method url-fetch)
7126 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7127 "Regexp-Common-" version ".tar.gz"))
7128 (sha256
7129 (base32
7130 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7131 (build-system perl-build-system)
7132 (synopsis "Provide commonly requested regular expressions")
7133 (description
7134 "This module exports a single hash (`%RE') that stores or generates
7135 commonly needed regular expressions. Patterns currently provided include:
7136 balanced parentheses and brackets, delimited text (with escapes), integers and
7137 floating-point numbers in any base (up to 36), comments in 44 languages,
7138 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7139 codes.")
7140 (home-page "https://metacpan.org/release/Regexp-Common")
7141 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7142 (license (list (package-license perl) x11 bsd-3))))
7143
7144 (define-public perl-regexp-util
7145 (package
7146 (name "perl-regexp-util")
7147 (version "0.003")
7148 (source
7149 (origin
7150 (method url-fetch)
7151 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7152 "Regexp-Util-" version ".tar.gz"))
7153 (sha256
7154 (base32
7155 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7156 (build-system perl-build-system)
7157 (home-page "https://metacpan.org/release/Regexp-Util")
7158 (synopsis "Selection of general-utility regexp subroutines")
7159 (description "This package provides a selection of regular expression
7160 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7161 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7162 and @code{deserialize_regexp}.")
7163 (license (package-license perl))))
7164
7165 (define-public perl-role-tiny
7166 (package
7167 (name "perl-role-tiny")
7168 (version "1.003004")
7169 (source
7170 (origin
7171 (method url-fetch)
7172 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7173 "Role-Tiny-" version ".tar.gz"))
7174 (sha256
7175 (base32
7176 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7177 (build-system perl-build-system)
7178 (native-inputs
7179 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7180 ("perl-test-fatal" ,perl-test-fatal)))
7181 (propagated-inputs
7182 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7183 (home-page "https://metacpan.org/release/Role-Tiny")
7184 (synopsis "Roles, as a slice of Moose")
7185 (description "Role::Tiny is a minimalist role composition tool.")
7186 (license (package-license perl))))
7187
7188 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7189 (define-public perl-role-tiny-2
7190 (package
7191 (inherit perl-role-tiny)
7192 (version "2.000006")
7193 (source
7194 (origin
7195 (method url-fetch)
7196 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7197 "Role-Tiny-" version ".tar.gz"))
7198 (sha256
7199 (base32
7200 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7201
7202 (define-public perl-safe-isa
7203 (package
7204 (name "perl-safe-isa")
7205 (version "1.000010")
7206 (source
7207 (origin
7208 (method url-fetch)
7209 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7210 "Safe-Isa-" version ".tar.gz"))
7211 (sha256
7212 (base32
7213 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7214 (build-system perl-build-system)
7215 (home-page "https://metacpan.org/release/Safe-Isa")
7216 (synopsis "Call isa, can, does, and DOES safely")
7217 (description "This module allows you to call isa, can, does, and DOES
7218 safely on things that may not be objects.")
7219 (license (package-license perl))))
7220
7221 (define-public perl-scope-guard
7222 (package
7223 (name "perl-scope-guard")
7224 (version "0.21")
7225 (source
7226 (origin
7227 (method url-fetch)
7228 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7229 "Scope-Guard-" version ".tar.gz"))
7230 (sha256
7231 (base32
7232 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7233 (build-system perl-build-system)
7234 (home-page "https://metacpan.org/release/Scope-Guard")
7235 (synopsis "Lexically-scoped resource management")
7236 (description "This module provides a convenient way to perform cleanup or
7237 other forms of resource management at the end of a scope. It is particularly
7238 useful when dealing with exceptions: the Scope::Guard constructor takes a
7239 reference to a subroutine that is guaranteed to be called even if the thread
7240 of execution is aborted prematurely. This effectively allows lexically-scoped
7241 \"promises\" to be made that are automatically honoured by perl's garbage
7242 collector.")
7243 (license (package-license perl))))
7244
7245 (define-public perl-set-infinite
7246 (package
7247 (name "perl-set-infinite")
7248 (version "0.65")
7249 (source
7250 (origin
7251 (method url-fetch)
7252 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7253 "Set-Infinite-" version ".tar.gz"))
7254 (sha256
7255 (base32
7256 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7257 (build-system perl-build-system)
7258 (home-page "https://metacpan.org/release/Set-Infinite")
7259 (synopsis "Infinite sets")
7260 (description "Set::Infinite is a set theory module for infinite sets.")
7261 (license (package-license perl))))
7262
7263 (define-public perl-set-intspan
7264 (package
7265 (name "perl-set-intspan")
7266 (version "1.19")
7267 (source (origin
7268 (method url-fetch)
7269 (uri (string-append
7270 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7271 version ".tar.gz"))
7272 (sha256
7273 (base32
7274 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7275 (build-system perl-build-system)
7276 (home-page "https://metacpan.org/release/Set-IntSpan")
7277 (synopsis "Manage sets of integers")
7278 (description "@code{Set::IntSpan} manages sets of integers. It is
7279 optimized for sets that have long runs of consecutive integers.")
7280 (license perl-license)))
7281
7282 (define-public perl-set-object
7283 (package
7284 (name "perl-set-object")
7285 (version "1.39")
7286 (source
7287 (origin
7288 (method url-fetch)
7289 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7290 "Set-Object-" version ".tar.gz"))
7291 (sha256
7292 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
7293 (build-system perl-build-system)
7294 (propagated-inputs
7295 `(("perl-moose" ,perl-moose)
7296 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7297 (home-page "https://metacpan.org/release/Set-Object")
7298 (synopsis "Unordered collections of Perl Objects")
7299 (description "Set::Object provides efficient sets, unordered collections
7300 of Perl objects without duplicates for scalars and references.")
7301 (license artistic2.0)))
7302
7303 (define-public perl-set-scalar
7304 (package
7305 (name "perl-set-scalar")
7306 (version "1.29")
7307 (source
7308 (origin
7309 (method url-fetch)
7310 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7311 "Set-Scalar-" version ".tar.gz"))
7312 (sha256
7313 (base32
7314 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7315 (build-system perl-build-system)
7316 (home-page "https://metacpan.org/release/Set-Scalar")
7317 (synopsis "Set operations for Perl")
7318 (description "The first priority of Set::Scalar is to be a convenient
7319 interface to sets (as in: unordered collections of Perl scalars). While not
7320 designed to be slow or big, neither has it been designed to be fast or
7321 compact.")
7322 (license (package-license perl))))
7323
7324 (define-public perl-sort-key
7325 (package
7326 (name "perl-sort-key")
7327 (version "1.33")
7328 (source
7329 (origin
7330 (method url-fetch)
7331 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7332 version ".tar.gz"))
7333 (sha256
7334 (base32
7335 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7336 (build-system perl-build-system)
7337 (home-page "https://metacpan.org/release/Sort-Key")
7338 (synopsis "Sort arrays by one or multiple calculated keys")
7339 (description "This Perl module provides various functions to quickly sort
7340 arrays by one or multiple calculated keys.")
7341 (license (package-license perl))))
7342
7343 (define-public perl-sort-naturally
7344 (package
7345 (name "perl-sort-naturally")
7346 (version "1.03")
7347 (source
7348 (origin
7349 (method url-fetch)
7350 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7351 version ".tar.gz"))
7352 (sha256
7353 (base32
7354 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7355 (build-system perl-build-system)
7356 (home-page "https://metacpan.org/release/Sort-Naturally")
7357 (synopsis "Sort lexically, but sort numeral parts numerically")
7358 (description "This module exports two functions, @code{nsort} and
7359 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7360 Under natural sorting, numeric substrings are compared numerically, and other
7361 word-characters are compared lexically.")
7362 (license (package-license perl))))
7363
7364 (define-public perl-specio
7365 (package
7366 (name "perl-specio")
7367 (version "0.38")
7368 (source
7369 (origin
7370 (method url-fetch)
7371 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7372 "Specio-" version ".tar.gz"))
7373 (sha256
7374 (base32
7375 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7376 (build-system perl-build-system)
7377 (propagated-inputs
7378 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7379 ("perl-eval-closure" ,perl-eval-closure)
7380 ("perl-module-runtime" ,perl-module-runtime)
7381 ("perl-mro-compat" ,perl-mro-compat)
7382 ("perl-role-tiny" ,perl-role-tiny)
7383 ("perl-test-fatal" ,perl-test-fatal)
7384 ("perl-test-needs" ,perl-test-needs)))
7385 (home-page "https://metacpan.org/release/Specio")
7386 (synopsis "Classes for representing type constraints and coercion")
7387 (description "The Specio distribution provides classes for representing type
7388 constraints and coercion, along with syntax sugar for declaring them. Note that
7389 this is not a proper type system for Perl. Nothing in this distribution will
7390 magically make the Perl interpreter start checking a value's type on assignment
7391 to a variable. In fact, there's no built-in way to apply a type to a variable at
7392 all. Instead, you can explicitly check a value against a type, and optionally
7393 coerce values to that type.")
7394 (license artistic2.0)))
7395
7396 (define-public perl-spiffy
7397 (package
7398 (name "perl-spiffy")
7399 (version "0.46")
7400 (source
7401 (origin
7402 (method url-fetch)
7403 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7404 "Spiffy-" version ".tar.gz"))
7405 (sha256
7406 (base32
7407 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7408 (build-system perl-build-system)
7409 (home-page "https://metacpan.org/release/Spiffy")
7410 (synopsis "Spiffy Perl Interface Framework For You")
7411 (description "Spiffy is a framework and methodology for doing object
7412 oriented (OO) programming in Perl. Spiffy combines the best parts of
7413 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7414 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7415 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7416 other OO languages like Python, Ruby, Java and Perl 6.")
7417 (license (package-license perl))))
7418
7419 (define-public perl-statistics-basic
7420 (package
7421 (name "perl-statistics-basic")
7422 (version "1.6611")
7423 (source (origin
7424 (method url-fetch)
7425 (uri (string-append
7426 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7427 version ".tar.gz"))
7428 (sha256
7429 (base32
7430 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7431 (build-system perl-build-system)
7432 (inputs
7433 `(("perl-number-format" ,perl-number-format)))
7434 (home-page "https://metacpan.org/release/Statistics-Basic")
7435 (synopsis "Collection of very basic statistics modules")
7436 (description "This package provides basic statistics functions like
7437 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7438 (license lgpl2.0)))
7439
7440 (define-public perl-stream-buffered
7441 (package
7442 (name "perl-stream-buffered")
7443 (version "0.03")
7444 (source
7445 (origin
7446 (method url-fetch)
7447 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7448 "Stream-Buffered-" version ".tar.gz"))
7449 (sha256
7450 (base32
7451 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7452 (build-system perl-build-system)
7453 (home-page "https://metacpan.org/release/Stream-Buffered")
7454 (synopsis "Temporary buffer to save bytes")
7455 (description "Stream::Buffered is a buffer class to store arbitrary length
7456 of byte strings and then get a seekable filehandle once everything is
7457 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7458 on the length of the size.")
7459 (license (package-license perl))))
7460
7461 (define-public perl-strictures
7462 (package
7463 (name "perl-strictures")
7464 (version "1.005005")
7465 (source
7466 (origin
7467 (method url-fetch)
7468 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7469 "strictures-" version ".tar.gz"))
7470 (sha256
7471 (base32
7472 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7473 (build-system perl-build-system)
7474 (home-page "https://metacpan.org/release/strictures")
7475 (synopsis "Turn on strict and make all warnings fatal")
7476 (description "Strictures turns on strict and make all warnings fatal when
7477 run from within a source-controlled directory.")
7478 (license (package-license perl))))
7479
7480 ;; Some packages don't yet work with this newer version of ‘strictures’.
7481 (define-public perl-strictures-2
7482 (package
7483 (inherit perl-strictures)
7484 (version "2.000006")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7489 "strictures-" version ".tar.gz"))
7490 (sha256
7491 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
7492
7493 (define-public perl-string-camelcase
7494 (package
7495 (name "perl-string-camelcase")
7496 (version "0.04")
7497 (source
7498 (origin
7499 (method url-fetch)
7500 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7501 "String-CamelCase-" version ".tar.gz"))
7502 (sha256
7503 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
7504 (build-system perl-build-system)
7505 (arguments
7506 `(#:phases
7507 (modify-phases %standard-phases
7508 (add-before 'configure 'set-perl-search-path
7509 (lambda _
7510 ;; Work around "dotless @INC" build failure.
7511 (setenv "PERL5LIB"
7512 (string-append (getcwd) ":"
7513 (getenv "PERL5LIB")))
7514 #t)))))
7515 (home-page "https://metacpan.org/release/String-CamelCase")
7516 (synopsis "Camelcase and de-camelcase")
7517 (description "This module may be used to convert from under_score text to
7518 CamelCase and back again.")
7519 (license (package-license perl))))
7520
7521 (define-public perl-string-escape
7522 (package
7523 (name "perl-string-escape")
7524 (version "2010.002")
7525 (source
7526 (origin
7527 (method url-fetch)
7528 (uri (string-append
7529 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7530 version ".tar.gz"))
7531 (sha256
7532 (base32
7533 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7534 (build-system perl-build-system)
7535 (home-page "https://metacpan.org/release/String-Escape")
7536 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7537 (description "This module provides a flexible calling interface to some
7538 frequently-performed string conversion functions, including applying and
7539 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7540 removing double-quotes, and truncating to fit within a desired length.")
7541 (license (package-license perl))))
7542
7543 (define-public perl-string-rewriteprefix
7544 (package
7545 (name "perl-string-rewriteprefix")
7546 (version "0.007")
7547 (source
7548 (origin
7549 (method url-fetch)
7550 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7551 "String-RewritePrefix-" version ".tar.gz"))
7552 (sha256
7553 (base32
7554 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7555 (build-system perl-build-system)
7556 (propagated-inputs
7557 `(("perl-sub-exporter" ,perl-sub-exporter)))
7558 (home-page "https://metacpan.org/release/String-RewritePrefix")
7559 (synopsis "Rewrite strings based on a set of known prefixes")
7560 (description "This module allows you to rewrite strings based on a set of
7561 known prefixes.")
7562 (license (package-license perl))))
7563
7564 (define-public perl-string-print
7565 (package
7566 (name "perl-string-print")
7567 (version "0.15")
7568 (source (origin
7569 (method url-fetch)
7570 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7571 "String-Print-" version ".tar.gz"))
7572 (sha256
7573 (base32
7574 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7575 (build-system perl-build-system)
7576 (propagated-inputs
7577 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7578 (home-page "https://metacpan.org/release/String-Print")
7579 (synopsis "String printing alternatives to printf")
7580 (description
7581 "This module inserts values into (translated) strings. It provides
7582 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7583 a functional interface.")
7584 (license (package-license perl))))
7585
7586 (define-public perl-sub-exporter
7587 (package
7588 (name "perl-sub-exporter")
7589 (version "0.987")
7590 (source
7591 (origin
7592 (method url-fetch)
7593 (uri (string-append
7594 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7595 version ".tar.gz"))
7596 (sha256
7597 (base32
7598 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7599 (build-system perl-build-system)
7600 (propagated-inputs
7601 `(("perl-data-optlist" ,perl-data-optlist)
7602 ("perl-params-util" ,perl-params-util)))
7603 (home-page "https://metacpan.org/release/Sub-Exporter")
7604 (synopsis "Sophisticated exporter for custom-built routines")
7605 (description
7606 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7607 custom-built routines.")
7608 (license (package-license perl))))
7609
7610 (define-public perl-sub-exporter-progressive
7611 (package
7612 (name "perl-sub-exporter-progressive")
7613 (version "0.001013")
7614 (source
7615 (origin
7616 (method url-fetch)
7617 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7618 "Sub-Exporter-Progressive-" version ".tar.gz"))
7619 (sha256
7620 (base32
7621 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7622 (build-system perl-build-system)
7623 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7624 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
7625 (synopsis "Only use Sub::Exporter if you need it")
7626 (description "Sub::Exporter is an incredibly powerful module, but with
7627 that power comes great responsibility, as well as some runtime penalties.
7628 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7629 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7630 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7631 renaming exports, if they try to use them.")
7632 (license (package-license perl))))
7633
7634 (define-public perl-sub-identify
7635 (package
7636 (name "perl-sub-identify")
7637 (version "0.14")
7638 (source
7639 (origin
7640 (method url-fetch)
7641 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7642 "Sub-Identify-" version ".tar.gz"))
7643 (sha256
7644 (base32
7645 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
7646 (build-system perl-build-system)
7647 (home-page "https://metacpan.org/release/Sub-Identify")
7648 (synopsis "Retrieve names of code references")
7649 (description "Sub::Identify allows you to retrieve the real name of code
7650 references.")
7651 (license (package-license perl))))
7652
7653 (define-public perl-sub-info
7654 (package
7655 (name "perl-sub-info")
7656 (version "0.002")
7657 (source
7658 (origin
7659 (method url-fetch)
7660 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7661 version ".tar.gz"))
7662 (sha256
7663 (base32
7664 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7665 (build-system perl-build-system)
7666 (propagated-inputs
7667 `(("perl-importer" ,perl-importer)))
7668 (home-page "https://metacpan.org/release/Sub-Info")
7669 (synopsis "Tool to inspect subroutines")
7670 (description "This package provides tools for inspecting subroutines
7671 in Perl.")
7672 (license (package-license perl))))
7673
7674 (define-public perl-sub-install
7675 (package
7676 (name "perl-sub-install")
7677 (version "0.928")
7678 (source
7679 (origin
7680 (method url-fetch)
7681 (uri (string-append
7682 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7683 version ".tar.gz"))
7684 (sha256
7685 (base32
7686 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7687 (build-system perl-build-system)
7688 (home-page "https://metacpan.org/release/Sub-Install")
7689 (synopsis "Install subroutines into packages easily")
7690 (description
7691 "Sub::Install makes it easy to install subroutines into packages without
7692 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7693 can see them.")
7694 (license (package-license perl))))
7695
7696 (define-public perl-sub-name
7697 (package
7698 (name "perl-sub-name")
7699 (version "0.21")
7700 (source
7701 (origin
7702 (method url-fetch)
7703 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7704 "Sub-Name-" version ".tar.gz"))
7705 (sha256
7706 (base32
7707 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7708 (build-system perl-build-system)
7709 (native-inputs
7710 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7711 (home-page "https://metacpan.org/release/Sub-Name")
7712 (synopsis "(Re)name a sub")
7713 (description "Assigns a new name to referenced sub. If package
7714 specification is omitted in the name, then the current package is used. The
7715 return value is the sub.")
7716 (license (package-license perl))))
7717
7718 (define-public perl-sub-quote
7719 (package
7720 (name "perl-sub-quote")
7721 (version "2.006003")
7722 (source
7723 (origin
7724 (method url-fetch)
7725 (uri (string-append
7726 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7727 version ".tar.gz"))
7728 (sha256
7729 (base32 "0xl1w55qilqc3xdqvmjzs5vjnjdc0d4633yw7hh1yd9zfxpkl7xy"))))
7730 (build-system perl-build-system)
7731 (native-inputs
7732 `(("perl-test-fatal" ,perl-test-fatal)))
7733 (propagated-inputs
7734 `(("perl-sub-name" ,perl-sub-name)))
7735 (home-page "https://metacpan.org/release/Sub-Quote")
7736 (synopsis "Efficient generation of subroutines via string eval")
7737 (description "Sub::Quote provides an efficient generation of subroutines
7738 via string eval.")
7739 (license (package-license perl))))
7740
7741 (define-public perl-sub-uplevel
7742 (package
7743 (name "perl-sub-uplevel")
7744 (version "0.24")
7745 (source
7746 (origin
7747 (method url-fetch)
7748 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7749 "Sub-Uplevel-" version ".tar.gz"))
7750 (sha256
7751 (base32
7752 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7753 (build-system perl-build-system)
7754 (home-page "https://metacpan.org/release/Sub-Uplevel")
7755 (synopsis "Apparently run a function in a higher stack frame")
7756 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7757 The idea is just to fool caller(). All the really naughty bits of Tcl's
7758 uplevel() are avoided.")
7759 (license (package-license perl))))
7760
7761 (define-public perl-super
7762 (package
7763 (name "perl-super")
7764 (version "1.20141117")
7765 (source
7766 (origin
7767 (method url-fetch)
7768 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7769 "SUPER-" version ".tar.gz"))
7770 (sha256
7771 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7772 (build-system perl-build-system)
7773 (native-inputs
7774 `(("perl-module-build" ,perl-module-build)))
7775 (propagated-inputs
7776 `(("perl-sub-identify" ,perl-sub-identify)))
7777 (home-page "https://metacpan.org/release/SUPER")
7778 (synopsis "Control superclass method dispatching")
7779 (description
7780 "When subclassing a class, you may occasionally want to dispatch control to
7781 the superclass---at least conditionally and temporarily. This module provides
7782 nicer equivalents to the native Perl syntax for calling superclasses, along with
7783 a universal @code{super} method to determine a class' own superclass, and better
7784 support for run-time mix-ins and roles.")
7785 (license perl-license)))
7786
7787 (define-public perl-svg
7788 (package
7789 (name "perl-svg")
7790 (version "2.84")
7791 (source
7792 (origin
7793 (method url-fetch)
7794 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7795 version ".tar.gz"))
7796 (sha256
7797 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
7798 (build-system perl-build-system)
7799 (home-page "https://metacpan.org/release/SVG")
7800 (synopsis "Perl extension for generating SVG documents")
7801 (description "SVG is a Perl module which generates a nested data structure
7802 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7803 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7804 access the DOM object, create and access Javascript, and generate SMIL
7805 animation content.")
7806 (license (package-license perl))))
7807
7808 (define-public perl-switch
7809 (package
7810 (name "perl-switch")
7811 (version "2.17")
7812 (source
7813 (origin
7814 (method url-fetch)
7815 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7816 version ".tar.gz"))
7817 (sha256
7818 (base32
7819 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7820 (build-system perl-build-system)
7821 (home-page "https://metacpan.org/release/Switch")
7822 (synopsis "Switch statement for Perl")
7823 (description "Switch is a Perl module which implements a generalized case
7824 mechanism. The module augments the standard Perl syntax with two new
7825 statements: @code{switch} and @code{case}.")
7826 (license (package-license perl))))
7827
7828 (define-public perl-sys-cpu
7829 (package
7830 (name "perl-sys-cpu")
7831 (version "0.61")
7832 (source (origin
7833 (method url-fetch)
7834 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7835 "Sys-CPU-" version ".tar.gz"))
7836 (sha256
7837 (base32
7838 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7839 (modules '((guix build utils)))
7840 (snippet
7841 '(begin
7842 ;; The contents of /proc/cpuinfo can differ and confuse the
7843 ;; cpu_clock and cpu_type methods, so we replace the test
7844 ;; with one that marks cpu_clock and cpu_type as TODO.
7845 ;; Borrowed from Debian.
7846 (call-with-output-file "t/Sys-CPU.t"
7847 (lambda (port)
7848 (format port "#!/usr/bin/perl
7849
7850 use Test::More tests => 4;
7851
7852 BEGIN { use_ok('Sys::CPU'); }
7853
7854 $number = &Sys::CPU::cpu_count();
7855 ok( defined($number), \"CPU Count: $number\" );
7856
7857 TODO: {
7858 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7859 $speed = &Sys::CPU::cpu_clock();
7860 ok( defined($speed), \"CPU Speed: $speed\" );
7861 }
7862
7863 TODO: {
7864 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7865 $type = &Sys::CPU::cpu_type();
7866 ok( defined($type), \"CPU Type: $type\" );
7867 }~%")))
7868 #t))))
7869 (build-system perl-build-system)
7870 (synopsis "Perl extension for getting CPU information")
7871 (description
7872 "Sys::CPU is a module for counting the number of CPUs on a system, and
7873 determining their type and clock speed.")
7874 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
7875 (license (package-license perl))))
7876
7877 (define-public perl-sys-hostname-long
7878 (package
7879 (name "perl-sys-hostname-long")
7880 (version "1.5")
7881 (source
7882 (origin
7883 (method url-fetch)
7884 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7885 "Sys-Hostname-Long-" version ".tar.gz"))
7886 (sha256
7887 (base32
7888 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7889 (build-system perl-build-system)
7890 (arguments `(#:tests? #f)) ;no `hostname' during build
7891 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
7892 (synopsis "Get full hostname in Perl")
7893 (description "Sys::Hostname::Long tries very hard to get the full hostname
7894 of a system.")
7895 (license (package-license perl))))
7896
7897 (define-public perl-task-weaken
7898 (package
7899 (name "perl-task-weaken")
7900 (version "1.06")
7901 (source
7902 (origin
7903 (method url-fetch)
7904 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7905 "Task-Weaken-" version ".tar.gz"))
7906 (sha256
7907 (base32
7908 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7909 (build-system perl-build-system)
7910 (arguments
7911 '(#:phases (modify-phases %standard-phases
7912 (add-before 'configure 'set-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/Task-Weaken")
7920 (synopsis "Ensure that a platform has weaken support")
7921 (description "One recurring problem in modules that use Scalar::Util's
7922 weaken function is that it is not present in the pure-perl variant. If
7923 Scalar::Util is not available at all, it will issue a normal dependency on the
7924 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7925 module does not have weaken, the install will bail out altogether with a long
7926 error encouraging the user to seek support.")
7927 (license (package-license perl))))
7928
7929 (define-public perl-template-toolkit
7930 (package
7931 (name "perl-template-toolkit")
7932 (version "2.28")
7933 (source
7934 (origin
7935 (method url-fetch)
7936 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7937 "Template-Toolkit-" version ".tar.gz"))
7938 (sha256
7939 (base32
7940 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
7941 (build-system perl-build-system)
7942 (propagated-inputs
7943 `(("perl-appconfig" ,perl-appconfig)
7944 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7945 (home-page "https://metacpan.org/release/Template-Toolkit")
7946 (synopsis "Template processing system for Perl")
7947 (description "The Template Toolkit is a collection of modules which
7948 implement an extensible template processing system. It was originally
7949 designed and remains primarily useful for generating dynamic web content, but
7950 it can be used equally well for processing any other kind of text based
7951 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7952 (license (package-license perl))))
7953
7954 (define-public perl-template-timer
7955 (package
7956 (name "perl-template-timer")
7957 (version "1.00")
7958 (source
7959 (origin
7960 (method url-fetch)
7961 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7962 "Template-Timer-" version ".tar.gz"))
7963 (sha256
7964 (base32
7965 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7966 (build-system perl-build-system)
7967 (propagated-inputs
7968 `(("perl-template-toolkit" ,perl-template-toolkit)))
7969 (home-page "https://metacpan.org/release/Template-Timer")
7970 (synopsis "Profiling for Template Toolkit")
7971 (description "Template::Timer provides inline profiling of the template
7972 processing in Perl code.")
7973 (license (list gpl3 artistic2.0))))
7974
7975 (define-public perl-term-encoding
7976 (package
7977 (name "perl-term-encoding")
7978 (version "0.02")
7979 (source
7980 (origin
7981 (method url-fetch)
7982 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
7983 "Term-Encoding-" version ".tar.gz"))
7984 (sha256
7985 (base32
7986 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
7987 (build-system perl-build-system)
7988 (native-inputs
7989 `(("perl-module-install" ,perl-module-install)))
7990 (home-page "https://metacpan.org/release/Term-Encoding")
7991 (synopsis "Detect encoding of the current terminal")
7992 (description "Term::Encoding is a simple module to detect the encoding of
7993 the current terminal expects in various ways.")
7994 (license (package-license perl))))
7995
7996 (define-public perl-term-progressbar
7997 (package
7998 (name "perl-term-progressbar")
7999 (version "2.17")
8000 (source
8001 (origin
8002 (method url-fetch)
8003 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
8004 "Term-ProgressBar-" version ".tar.gz"))
8005 (sha256
8006 (base32
8007 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
8008 (build-system perl-build-system)
8009 (native-inputs
8010 `(("perl-capture-tiny" ,perl-capture-tiny)
8011 ("perl-test-exception" ,perl-test-exception)))
8012 (propagated-inputs
8013 `(("perl-class-methodmaker" ,perl-class-methodmaker)
8014 ("perl-term-readkey" ,perl-term-readkey)))
8015 (home-page "https://metacpan.org/release/Term-ProgressBar")
8016 (synopsis "Progress meter on a standard terminal")
8017 (description "Term::ProgressBar provides a simple progress bar on the
8018 terminal, to let the user know that something is happening, roughly how much
8019 stuff has been done, and maybe an estimate at how long remains.")
8020 (license (package-license perl))))
8021
8022 (define-public perl-term-progressbar-quiet
8023 (package
8024 (name "perl-term-progressbar-quiet")
8025 (version "0.31")
8026 (source
8027 (origin
8028 (method url-fetch)
8029 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8030 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8031 (sha256
8032 (base32
8033 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8034 (build-system perl-build-system)
8035 (propagated-inputs
8036 `(("perl-io-interactive" ,perl-io-interactive)
8037 ("perl-term-progressbar" ,perl-term-progressbar)
8038 ("perl-test-mockobject" ,perl-test-mockobject)))
8039 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
8040 (synopsis "Progress meter if run interactively")
8041 (description "Term::ProgressBar is a wonderful module for showing progress
8042 bars on the terminal. This module acts very much like that module when it is
8043 run interactively. However, when it is not run interactively (for example, as
8044 a cron job) then it does not show the progress bar.")
8045 (license (package-license perl))))
8046
8047 (define-public perl-term-progressbar-simple
8048 (package
8049 (name "perl-term-progressbar-simple")
8050 (version "0.03")
8051 (source
8052 (origin
8053 (method url-fetch)
8054 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8055 "Term-ProgressBar-Simple-" version ".tar.gz"))
8056 (sha256
8057 (base32
8058 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8059 (build-system perl-build-system)
8060 (propagated-inputs
8061 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8062 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
8063 (synopsis "Simple progress bars")
8064 (description "Term::ProgressBar::Simple tells you how much work has been
8065 done, how much is left to do, and estimate how long it will take.")
8066 (license (package-license perl))))
8067
8068 (define-public perl-term-readkey
8069 (package
8070 (name "perl-term-readkey")
8071 (version "2.37")
8072 (source
8073 (origin
8074 (method url-fetch)
8075 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8076 "TermReadKey-" version ".tar.gz"))
8077 (sha256
8078 (base32
8079 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8080 (build-system perl-build-system)
8081 (home-page "https://metacpan.org/release/TermReadKey")
8082 (synopsis "Simple terminal control")
8083 (description "This module, ReadKey, provides ioctl control for terminals
8084 so the input modes can be changed (thus allowing reads of a single character
8085 at a time), and also provides non-blocking reads of stdin, as well as several
8086 other terminal related features, including retrieval/modification of the
8087 screen size, and retrieval/modification of the control characters.")
8088 (license (package-license perl))))
8089
8090 (define-public perl-term-size-any
8091 (package
8092 (name "perl-term-size-any")
8093 (version "0.002")
8094 (source
8095 (origin
8096 (method url-fetch)
8097 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8098 "Term-Size-Any-" version ".tar.gz"))
8099 (sha256
8100 (base32
8101 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8102 (build-system perl-build-system)
8103 (native-inputs
8104 `(("perl-devel-hide" ,perl-devel-hide)))
8105 (propagated-inputs
8106 `(("perl-term-size-perl" ,perl-term-size-perl)))
8107 (home-page "https://metacpan.org/release/Term-Size-Any")
8108 (synopsis "Retrieve terminal size")
8109 (description "This is a unified interface to retrieve terminal size. It
8110 loads one module of a list of known alternatives, each implementing some way
8111 to get the desired terminal information. This loaded module will actually do
8112 the job on behalf of @code{Term::Size::Any}.")
8113 (license (package-license perl))))
8114
8115 (define-public perl-term-size-perl
8116 (package
8117 (name "perl-term-size-perl")
8118 (version "0.031")
8119 (source
8120 (origin
8121 (method url-fetch)
8122 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8123 "Term-Size-Perl-" version ".tar.gz"))
8124 (sha256
8125 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
8126 (build-system perl-build-system)
8127 (home-page "https://metacpan.org/release/Term-Size-Perl")
8128 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8129 (description "This is yet another implementation of @code{Term::Size}.
8130 Now in pure Perl, with the exception of a C probe run at build time.")
8131 (license (package-license perl))))
8132
8133 (define-public perl-term-table
8134 (package
8135 (name "perl-term-table")
8136 (version "0.008")
8137 (source
8138 (origin
8139 (method url-fetch)
8140 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8141 version ".tar.gz"))
8142 (sha256
8143 (base32
8144 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8145 (build-system perl-build-system)
8146 (propagated-inputs
8147 `(("perl-importer" ,perl-importer)))
8148 (home-page "https://metacpan.org/release/Term-Table")
8149 (synopsis "Format a header and rows into a table")
8150 (description "This module is able to generically format rows of data
8151 into tables.")
8152 (license (package-license perl))))
8153
8154 (define-public perl-text-aligner
8155 (package
8156 (name "perl-text-aligner")
8157 (version "0.13")
8158 (source
8159 (origin
8160 (method url-fetch)
8161 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8162 "Text-Aligner-" version ".tar.gz"))
8163 (sha256
8164 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
8165 (build-system perl-build-system)
8166 (native-inputs `(("perl-module-build" ,perl-module-build)))
8167 (home-page "https://metacpan.org/release/Text-Aligner")
8168 (synopsis "Align text")
8169 (description "Text::Aligner exports a single function, align(), which is
8170 used to justify strings to various alignment styles.")
8171 (license x11)))
8172
8173 (define-public perl-text-balanced
8174 (package
8175 (name "perl-text-balanced")
8176 (version "2.03")
8177 (source
8178 (origin
8179 (method url-fetch)
8180 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8181 "Text-Balanced-" version ".tar.gz"))
8182 (sha256
8183 (base32
8184 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8185 (build-system perl-build-system)
8186 (home-page "https://metacpan.org/release/Text-Balanced")
8187 (synopsis "Extract delimited text sequences from strings")
8188 (description "The Text::Balanced module can be used to extract delimited
8189 text sequences from strings.")
8190 (license (package-license perl))))
8191
8192 (define-public perl-text-csv
8193 (package
8194 (name "perl-text-csv")
8195 (version "1.99")
8196 (source
8197 (origin
8198 (method url-fetch)
8199 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8200 "Text-CSV-" version ".tar.gz"))
8201 (sha256
8202 (base32 "1llccsl6sr11g9affh43m6q5r85qgnpi9n7idcs1vi9cn4ww0kp7"))))
8203 (build-system perl-build-system)
8204 (home-page "https://metacpan.org/release/Text-CSV")
8205 (synopsis "Manipulate comma-separated values")
8206 (description "Text::CSV provides facilities for the composition and
8207 decomposition of comma-separated values. An instance of the Text::CSV class
8208 can combine fields into a CSV string and parse a CSV string into fields.")
8209 (license (package-license perl))))
8210
8211 (define-public perl-text-csv-xs
8212 (package
8213 (name "perl-text-csv-xs")
8214 (version "1.39")
8215 (source
8216 (origin
8217 (method url-fetch)
8218 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8219 "Text-CSV_XS-" version ".tgz"))
8220 (sha256
8221 (base32 "1gcy1bxym6f7qsxivkl3c5p94r1bjhf9csy1x38a1gk8mx744kma"))))
8222 (build-system perl-build-system)
8223 (home-page "https://metacpan.org/release/Text-CSV_XS")
8224 (synopsis "Rountines for manipulating CSV files")
8225 (description "@code{Text::CSV_XS} provides facilities for the composition
8226 and decomposition of comma-separated values. An instance of the
8227 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8228 CSV string into fields. The module accepts either strings or files as input
8229 and support the use of user-specified characters for delimiters, separators,
8230 and escapes.")
8231 (license (package-license perl))))
8232
8233 (define-public perl-text-diff
8234 (package
8235 (name "perl-text-diff")
8236 (version "1.45")
8237 (source
8238 (origin
8239 (method url-fetch)
8240 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8241 "Text-Diff-" version ".tar.gz"))
8242 (sha256
8243 (base32
8244 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8245 (build-system perl-build-system)
8246 (propagated-inputs
8247 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8248 (home-page "https://metacpan.org/release/Text-Diff")
8249 (synopsis "Perform diffs on files and record sets")
8250 (description "Text::Diff provides a basic set of services akin to the GNU
8251 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8252 is better integrated with Perl and available on all platforms. It is often
8253 faster than shelling out to a system's diff executable for small files, and
8254 generally slower on larger files.")
8255 (license (package-license perl))))
8256
8257 (define-public perl-text-format
8258 (package
8259 (name "perl-text-format")
8260 (version "0.61")
8261 (source (origin
8262 (method url-fetch)
8263 (uri (string-append
8264 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8265 version ".tar.gz"))
8266 (sha256
8267 (base32
8268 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8269 (build-system perl-build-system)
8270 (native-inputs
8271 `(("perl-module-build" ,perl-module-build)
8272 ("perl-test-pod" ,perl-test-pod)
8273 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8274 (home-page "https://metacpan.org/release/Text-Format")
8275 (synopsis "Various subroutines to format text")
8276 (description "This package provides functions to format text in various
8277 ways like centering, paragraphing, and converting tabs to spaces and spaces
8278 to tabs.")
8279 (license perl-license)))
8280
8281 (define-public perl-text-glob
8282 (package
8283 (name "perl-text-glob")
8284 (version "0.11")
8285 (source
8286 (origin
8287 (method url-fetch)
8288 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8289 "Text-Glob-" version ".tar.gz"))
8290 (sha256
8291 (base32
8292 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8293 (build-system perl-build-system)
8294 (native-inputs `(("perl-module-build" ,perl-module-build)))
8295 (home-page "https://metacpan.org/release/Text-Glob")
8296 (synopsis "Match globbing patterns against text")
8297 (description "Text::Glob implements glob(3) style matching that can be
8298 used to match against text, rather than fetching names from a file system. If
8299 you want to do full file globbing use the File::Glob module instead.")
8300 (license (package-license perl))))
8301
8302 (define-public perl-text-neattemplate
8303 (package
8304 (name "perl-text-neattemplate")
8305 (version "0.1101")
8306 (source
8307 (origin
8308 (method url-fetch)
8309 (uri (string-append
8310 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8311 "Text-NeatTemplate-" version ".tar.gz"))
8312 (sha256
8313 (base32
8314 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8315 (build-system perl-build-system)
8316 (native-inputs
8317 `(("perl-module-build" ,perl-module-build)))
8318 (home-page
8319 "https://metacpan.org/release/Text-NeatTemplate")
8320 (synopsis "Fast, middleweight template engine")
8321 (description
8322 "Text::NeatTemplate provides a simple, middleweight but fast
8323 template engine, for when you need speed rather than complex features,
8324 yet need more features than simple variable substitution.")
8325 (license (package-license perl))))
8326
8327 (define-public perl-text-roman
8328 (package
8329 (name "perl-text-roman")
8330 (version "3.5")
8331 (source
8332 (origin
8333 (method url-fetch)
8334 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8335 version ".tar.gz"))
8336 (sha256
8337 (base32
8338 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8339 (build-system perl-build-system)
8340 (home-page "https://metacpan.org/release/Text-Roman")
8341 (synopsis "Convert between Roman and Arabic algorisms")
8342 (description "This package provides functions to convert between Roman and
8343 Arabic algorisms. It supports both conventional Roman algorisms (which range
8344 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8345 algorism to indicate multiplication by 1000.")
8346 (license (package-license perl))))
8347
8348 (define-public perl-text-simpletable
8349 (package
8350 (name "perl-text-simpletable")
8351 (version "2.07")
8352 (source
8353 (origin
8354 (method url-fetch)
8355 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8356 "Text-SimpleTable-" version ".tar.gz"))
8357 (sha256
8358 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
8359 (build-system perl-build-system)
8360 (home-page "https://metacpan.org/release/Text-SimpleTable")
8361 (synopsis "Simple ASCII tables")
8362 (description "Text::SimpleTable draws simple ASCII tables.")
8363 (license artistic2.0)))
8364
8365 (define-public perl-text-table
8366 (package
8367 (name "perl-text-table")
8368 (version "1.133")
8369 (source
8370 (origin
8371 (method url-fetch)
8372 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8373 "Text-Table-" version ".tar.gz"))
8374 (sha256
8375 (base32
8376 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8377 (build-system perl-build-system)
8378 (native-inputs
8379 `(("perl-module-build" ,perl-module-build)))
8380 (propagated-inputs
8381 `(("perl-text-aligner" ,perl-text-aligner)))
8382 (home-page "https://metacpan.org/release/Text-Table")
8383 (synopsis "Organize Data in Tables")
8384 (description "Text::Table renders plaintext tables.")
8385 (license x11)))
8386
8387 (define-public perl-text-template
8388 (package
8389 (name "perl-text-template")
8390 (version "1.55")
8391 (source
8392 (origin
8393 (method url-fetch)
8394 (uri (string-append
8395 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8396 version
8397 ".tar.gz"))
8398 (sha256
8399 (base32
8400 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
8401 (build-system perl-build-system)
8402 (native-inputs
8403 `(("perl-test-more-utf8" ,perl-test-more-utf8)
8404 ("perl-test-warnings" ,perl-test-warnings)))
8405 (home-page
8406 "https://metacpan.org/release/Text-Template")
8407 (synopsis
8408 "Expand template text with embedded Perl")
8409 (description
8410 "This is a library for generating letters, building HTML pages, or
8411 filling in templates generally. A template is a piece of text that has little
8412 Perl programs embedded in it here and there. When you fill in a template, you
8413 evaluate the little programs and replace them with their values.")
8414 (license perl-license)))
8415
8416 (define-public perl-text-unidecode
8417 (package
8418 (name "perl-text-unidecode")
8419 (version "1.23")
8420 (source
8421 (origin
8422 (method url-fetch)
8423 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8424 "Text-Unidecode-" version ".tar.gz"))
8425 (sha256
8426 (base32
8427 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8428 (build-system perl-build-system)
8429 (home-page "https://metacpan.org/release/Text-Unidecode")
8430 (synopsis "Provide plain ASCII transliterations of Unicode text")
8431 (description "Text::Unidecode provides a function, unidecode(...) that
8432 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8433 universally displayable characters between 0x00 and 0x7F). The representation
8434 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8435 letters, the pronunciation expressed by the text in some other writing
8436 system.")
8437 (license (package-license perl))))
8438
8439 (define-public perl-threads
8440 (package
8441 (name "perl-threads")
8442 (version "2.21")
8443 (source
8444 (origin
8445 (method url-fetch)
8446 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8447 version ".tar.gz"))
8448 (sha256
8449 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8450 (build-system perl-build-system)
8451 (home-page "https://metacpan.org/release/threads")
8452 (synopsis "Perl interpreter-based threads")
8453 (description "This module exposes interpreter threads to the Perl level.")
8454 (license perl-license)))
8455
8456 (define-public perl-throwable
8457 (package
8458 (name "perl-throwable")
8459 (version "0.200013")
8460 (source
8461 (origin
8462 (method url-fetch)
8463 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8464 "Throwable-" version ".tar.gz"))
8465 (sha256
8466 (base32
8467 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8468 (build-system perl-build-system)
8469 (native-inputs
8470 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8471 (propagated-inputs
8472 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8473 ("perl-module-runtime" ,perl-module-runtime)
8474 ("perl-moo" ,perl-moo)))
8475 (home-page "https://metacpan.org/release/Throwable")
8476 (synopsis "Role for classes that can be thrown")
8477 (description "Throwable is a role for classes that are meant to be thrown
8478 as exceptions to standard program flow.")
8479 (license (package-license perl))))
8480
8481 (define-public perltidy
8482 (package
8483 (name "perltidy")
8484 (version "20180220")
8485 (source (origin
8486 (method url-fetch)
8487 (uri (string-append "mirror://sourceforge/perltidy/" version
8488 "/Perl-Tidy-" version ".tar.gz"))
8489 (sha256
8490 (base32
8491 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
8492 (build-system perl-build-system)
8493 (home-page "http://perltidy.sourceforge.net/")
8494 (synopsis "Perl script tidier")
8495 (description "This package contains a Perl script which indents and
8496 reformats Perl scripts to make them easier to read. The formatting can be
8497 controlled with command line parameters. The default parameter settings
8498 approximately follow the suggestions in the Perl Style Guide.")
8499 (license gpl2+)))
8500
8501 (define-public perl-tie-cycle
8502 (package
8503 (name "perl-tie-cycle")
8504 (version "1.225")
8505 (source
8506 (origin
8507 (method url-fetch)
8508 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8509 version ".tar.gz"))
8510 (sha256
8511 (base32
8512 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8513 (build-system perl-build-system)
8514 (home-page "https://metacpan.org/release/Tie-Cycle")
8515 (synopsis "Cycle through a list of values")
8516 (description "You use @code{Tie::Cycle} to go through a list over and over
8517 again. Once you get to the end of the list, you go back to the beginning.")
8518 (license (package-license perl))))
8519
8520 (define-public perl-tie-ixhash
8521 (package
8522 (name "perl-tie-ixhash")
8523 (version "1.23")
8524 (source
8525 (origin
8526 (method url-fetch)
8527 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8528 "Tie-IxHash-" version ".tar.gz"))
8529 (sha256
8530 (base32
8531 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8532 (build-system perl-build-system)
8533 (native-inputs `(("perl-module-build" ,perl-module-build)))
8534 (home-page "https://metacpan.org/release/Tie-IxHash")
8535 (synopsis "Ordered associative arrays for Perl")
8536 (description "This Perl module implements Perl hashes that preserve the
8537 order in which the hash elements were added. The order is not affected when
8538 values corresponding to existing keys in the IxHash are changed. The elements
8539 can also be set to any arbitrary supplied order. The familiar perl array
8540 operations can also be performed on the IxHash.")
8541 (license (package-license perl))))
8542
8543 (define-public perl-tie-toobject
8544 (package
8545 (name "perl-tie-toobject")
8546 (version "0.03")
8547 (source
8548 (origin
8549 (method url-fetch)
8550 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8551 "Tie-ToObject-" version ".tar.gz"))
8552 (sha256
8553 (base32
8554 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8555 (build-system perl-build-system)
8556 (propagated-inputs
8557 `(("perl-test-simple" ,perl-test-simple)))
8558 (home-page "https://metacpan.org/release/Tie-ToObject")
8559 (synopsis "Tie to an existing Perl object")
8560 (description "This class provides a tie constructor that returns the
8561 object it was given as it's first argument. This way side effects of calling
8562 $object->TIEHASH are avoided.")
8563 (license (package-license perl))))
8564
8565 (define-public perl-time-duration
8566 (package
8567 (name "perl-time-duration")
8568 (version "1.20")
8569 (source
8570 (origin
8571 (method url-fetch)
8572 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8573 "Time-Duration-" version ".tar.gz"))
8574 (sha256
8575 (base32
8576 "1f5vkid4pl5iq3hal01hk1zjbbzrqpx4m1djawbp93l152shb0j5"))))
8577 (build-system perl-build-system)
8578 (native-inputs
8579 `(("perl-module-install" ,perl-module-install)
8580 ("perl-test-pod" ,perl-test-pod)
8581 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8582 (home-page "https://metacpan.org/release/Time-Duration")
8583 (synopsis "English expression of durations")
8584 (description "This module provides functions for expressing durations in
8585 rounded or exact terms.")
8586 (license (package-license perl))))
8587
8588 (define-public perl-time-duration-parse
8589 (package
8590 (name "perl-time-duration-parse")
8591 (version "0.14")
8592 (source
8593 (origin
8594 (method url-fetch)
8595 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8596 "Time-Duration-Parse-" version ".tar.gz"))
8597 (sha256
8598 (base32 "17nh73r50mqqpgxdf3zpgdiqrizmjy0vdk0zd6xi9zcsdijrdhnc"))))
8599 (build-system perl-build-system)
8600 (native-inputs
8601 `(("perl-time-duration" ,perl-time-duration)))
8602 (propagated-inputs
8603 `(("perl-exporter-lite" ,perl-exporter-lite)))
8604 (home-page "https://metacpan.org/release/Time-Duration-Parse")
8605 (synopsis "Parse time duration strings")
8606 (description "Time::Duration::Parse is a module to parse human readable
8607 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8608 (license (package-license perl))))
8609
8610 (define-public perl-time-hires
8611 (package
8612 (name "perl-time-hires")
8613 (version "1.9760")
8614 (source (origin
8615 (method url-fetch)
8616 (uri (string-append
8617 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8618 version ".tar.gz"))
8619 (sha256
8620 (base32
8621 "0avh25m5ffsqc2xnfczvlnlbfbisw5wjq9d3w0j01h9byjzrif1c"))))
8622 (build-system perl-build-system)
8623 (home-page "https://metacpan.org/release/Time-HiRes")
8624 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8625 (description "This package implements @code{usleep}, @code{ualarm}, and
8626 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8627 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8628 (license perl-license)))
8629
8630 (define-public perl-time-local
8631 (package
8632 (name "perl-time-local")
8633 (version "1.2300")
8634 (source
8635 (origin
8636 (method url-fetch)
8637 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8638 "Time-Local-" version ".tar.gz"))
8639 (sha256
8640 (base32
8641 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8642 (build-system perl-build-system)
8643 (home-page "https://metacpan.org/release/Time-Local")
8644 (synopsis "Efficiently compute time from local and GMT time")
8645 (description "This module provides functions that are the inverse of
8646 built-in perl functions localtime() and gmtime(). They accept a date as a
8647 six-element array, and return the corresponding time(2) value in seconds since
8648 the system epoch.")
8649 (license (package-license perl))))
8650
8651 (define-public perl-time-piece
8652 (package
8653 (name "perl-time-piece")
8654 (version "1.3203")
8655 (source
8656 (origin
8657 (method url-fetch)
8658 (uri (string-append
8659 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8660 version ".tar.gz"))
8661 (sha256
8662 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8663 (build-system perl-build-system)
8664 (home-page "https://metacpan.org/release/Time-Piece")
8665 (synopsis "Object-Oriented time objects")
8666 (description
8667 "This module replaces the standard @code{localtime} and @code{gmtime}
8668 functions with implementations that return objects. It does so in a
8669 backwards-compatible manner, so that using these functions as documented will
8670 still work as expected.")
8671 (license perl-license)))
8672
8673 (define-public perl-timedate
8674 (package
8675 (name "perl-timedate")
8676 (version "2.30")
8677 (source
8678 (origin
8679 (method url-fetch)
8680 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8681 "TimeDate-" version ".tar.gz"))
8682 (sha256
8683 (base32
8684 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8685 (build-system perl-build-system)
8686 (home-page "https://metacpan.org/release/TimeDate")
8687 (synopsis "Date parsing/formatting subroutines")
8688 (description "This module provides routines for parsing date string into
8689 time values and formatting dates into ASCII strings.")
8690 (license (package-license perl))))
8691
8692 (define-public perl-time-mock
8693 (package
8694 (name "perl-time-mock")
8695 (version "v0.0.2")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8700 "Time-Mock-" version ".tar.gz"))
8701 (sha256
8702 (base32
8703 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8704 (build-system perl-build-system)
8705 (native-inputs
8706 `(("perl-module-build" ,perl-module-build)))
8707 (propagated-inputs
8708 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8709 (home-page "https://metacpan.org/release/Time-Mock")
8710 (synopsis "Shift and scale time")
8711 (description "This module allows you to speed up your sleep(), alarm(),
8712 and time() calls.")
8713 (license (package-license perl))))
8714
8715 (define-public perl-tree-simple
8716 (package
8717 (name "perl-tree-simple")
8718 (version "1.33")
8719 (source
8720 (origin
8721 (method url-fetch)
8722 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8723 "Tree-Simple-" version ".tgz"))
8724 (sha256
8725 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
8726 (build-system perl-build-system)
8727 (native-inputs
8728 `(("perl-module-build" ,perl-module-build)
8729 ("perl-test-exception" ,perl-test-exception)))
8730 (propagated-inputs
8731 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8732 (home-page "https://metacpan.org/release/Tree-Simple")
8733 (synopsis "Simple tree object")
8734 (description "This module in a fully object-oriented implementation of a
8735 simple n-ary tree.")
8736 (license (package-license perl))))
8737
8738 (define-public perl-tree-simple-visitorfactory
8739 (package
8740 (name "perl-tree-simple-visitorfactory")
8741 (version "0.15")
8742 (source
8743 (origin
8744 (method url-fetch)
8745 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8746 "Tree-Simple-VisitorFactory-" version ".tgz"))
8747 (sha256
8748 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
8749 (build-system perl-build-system)
8750 (native-inputs
8751 `(("perl-module-build" ,perl-module-build)
8752 ("perl-test-exception" ,perl-test-exception)))
8753 (propagated-inputs
8754 `(("perl-tree-simple" ,perl-tree-simple)
8755 ("perl-base" ,perl-base)))
8756 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
8757 (synopsis "Factory object for dispensing Visitor objects")
8758 (description "This module is a factory for dispensing
8759 Tree::Simple::Visitor::* objects.")
8760 (license (package-license perl))))
8761
8762 (define-public perl-try-tiny
8763 (package
8764 (name "perl-try-tiny")
8765 (version "0.22")
8766 (source
8767 (origin
8768 (method url-fetch)
8769 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8770 "Try-Tiny-" version ".tar.gz"))
8771 (sha256
8772 (base32
8773 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8774 (build-system perl-build-system)
8775 (home-page "https://metacpan.org/release/Try-Tiny")
8776 (synopsis "Minimal try/catch with proper preservation of $@@")
8777 (description "This module provides bare bones try/catch/finally statements
8778 that are designed to minimize common mistakes with eval blocks, and nothing
8779 else.")
8780 (license x11)))
8781
8782 (define-public perl-type-tie
8783 (package
8784 (name "perl-type-tie")
8785 (version "0.014")
8786 (source
8787 (origin
8788 (method url-fetch)
8789 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8790 "Type-Tie-" version ".tar.gz"))
8791 (sha256
8792 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
8793 (build-system perl-build-system)
8794 (native-inputs
8795 `(("perl-test-fatal" ,perl-test-fatal)
8796 ("perl-test-requires" ,perl-test-requires)))
8797 (propagated-inputs
8798 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8799 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8800 (home-page "https://metacpan.org/release/Type-Tie")
8801 (synopsis "Tie a variable to a type constraint")
8802 (description "This module exports a single function: @code{ttie}. It ties
8803 a variable to a type constraint, ensuring that whatever values stored in the
8804 variable will conform to the type constraint. If the type constraint has
8805 coercions, these will be used if necessary to ensure values assigned to the
8806 variable conform.")
8807 (license (package-license perl))))
8808
8809 (define-public perl-type-tiny
8810 (package
8811 (name "perl-type-tiny")
8812 (version "1.004004")
8813 (source
8814 (origin
8815 (method url-fetch)
8816 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8817 "Type-Tiny-" version ".tar.gz"))
8818 (sha256
8819 (base32 "1gk2f0zs2xq99nqn6wcgvl8l9qlq2cnab2lk7l08kpac03m824h8"))))
8820 (build-system perl-build-system)
8821 (native-inputs
8822 `(("perl-test-warnings" ,perl-test-warnings)))
8823 (propagated-inputs
8824 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8825 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8826 ("perl-exporter-tiny" ,perl-exporter-tiny)
8827 ("perl-moo" ,perl-moo)
8828 ("perl-moose" ,perl-moose)
8829 ("perl-mouse" ,perl-mouse)
8830 ("perl-ref-util-xs" ,perl-ref-util-xs)
8831 ("perl-regexp-util" ,perl-regexp-util)
8832 ("perl-type-tie" ,perl-type-tie)))
8833 (home-page "https://metacpan.org/release/Type-Tiny")
8834 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8835 (description "@code{Type::Tiny} is a small class for writing type
8836 constraints, inspired by Moose's type constraint API. It has only one
8837 non-core dependency (and even that is simply a module that was previously
8838 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8839 be used with Moose, Mouse and Moo (or none of the above).")
8840 (license (package-license perl))))
8841
8842 (define-public perl-type-tiny-xs
8843 (package
8844 (name "perl-type-tiny-xs")
8845 (version "0.014")
8846 (source
8847 (origin
8848 (method url-fetch)
8849 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8850 version ".tar.gz"))
8851 (sha256
8852 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
8853 (build-system perl-build-system)
8854 (home-page "https://metacpan.org/release/Type-Tiny-XS")
8855 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8856 (description "This module is optionally used by @code{Type::Tiny} to
8857 provide faster, C-based implementations of some type constraints. This
8858 package has only core dependencies, and does not depend on @code{Type::Tiny},
8859 so other data validation frameworks might also consider using it.")
8860 (license perl-license)))
8861
8862 (define-public perl-types-path-tiny
8863 (package
8864 (name "perl-types-path-tiny")
8865 (version "0.006")
8866 (source
8867 (origin
8868 (method url-fetch)
8869 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8870 "Types-Path-Tiny-" version ".tar.gz"))
8871 (sha256
8872 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
8873 (build-system perl-build-system)
8874 (propagated-inputs
8875 `(("perl-file-pushd" ,perl-file-pushd)
8876 ("perl-path-tiny" ,perl-path-tiny)
8877 ("perl-type-tiny" ,perl-type-tiny)
8878 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8879 (home-page "https://metacpan.org/release/Types-Path-Tiny")
8880 (synopsis "Types and coercions for Moose and Moo")
8881 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8882 etc. It handles two important types of coercion: coercing objects with
8883 overloaded stringification, and coercing to absolute paths. It also can check
8884 to ensure that files or directories exist.")
8885 (license artistic2.0)))
8886
8887 (define-public perl-types-serialiser
8888 (package
8889 (name "perl-types-serialiser")
8890 (version "1.0")
8891 (source
8892 (origin
8893 (method url-fetch)
8894 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8895 "Types-Serialiser-" version ".tar.gz"))
8896 (sha256
8897 (base32
8898 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8899 (build-system perl-build-system)
8900 (propagated-inputs
8901 `(("perl-common-sense" ,perl-common-sense)))
8902 (home-page "https://metacpan.org/release/Types-Serialiser")
8903 (synopsis "Data types for common serialisation formats")
8904 (description "This module provides some extra datatypes that are used by
8905 common serialisation formats such as JSON or CBOR.")
8906 (license (package-license perl))))
8907
8908 (define-public perl-unicode-normalize
8909 (package
8910 (name "perl-unicode-normalize")
8911 (version "1.26")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8916 "Unicode-Normalize-" version ".tar.gz"))
8917 (sha256
8918 (base32
8919 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
8920 (build-system perl-build-system)
8921 (arguments
8922 '(#:phases (modify-phases %standard-phases
8923 (add-before 'configure 'set-search-path
8924 (lambda _
8925 ;; Work around "dotless @INC" build failure.
8926 (setenv "PERL5LIB"
8927 (string-append (getcwd) ":"
8928 (getenv "PERL5LIB")))
8929 #t)))))
8930 (home-page "https://metacpan.org/release/Unicode-Normalize")
8931 (synopsis "Unicode normalization forms")
8932 (description "This Perl module provides Unicode normalization forms.")
8933 (license (package-license perl))))
8934
8935 (define-public perl-unicode-collate
8936 (package
8937 (name "perl-unicode-collate")
8938 (version "1.27")
8939 (source
8940 (origin
8941 (method url-fetch)
8942 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8943 "Unicode-Collate-" version ".tar.gz"))
8944 (sha256
8945 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
8946 (build-system perl-build-system)
8947 (arguments
8948 `(#:phases
8949 (modify-phases %standard-phases
8950 (add-before 'configure 'set-perl-search-path
8951 (lambda _
8952 ;; Work around "dotless @INC" build failure.
8953 (setenv "PERL5LIB"
8954 (string-append (getcwd) ":"
8955 (getenv "PERL5LIB")))
8956 #t)))))
8957 (propagated-inputs
8958 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8959 (home-page "https://metacpan.org/release/Unicode-Collate")
8960 (synopsis "Unicode collation algorithm")
8961 (description "This package provides tools for sorting and comparing
8962 Unicode data.")
8963 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8964 ;; license.
8965 (license (list (package-license perl) expat))))
8966
8967 (define-public perl-unicode-linebreak
8968 (package
8969 (name "perl-unicode-linebreak")
8970 (version "2016.003")
8971 (source (origin
8972 (method url-fetch)
8973 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
8974 "Unicode-LineBreak-" version ".tar.gz"))
8975 (sha256
8976 (base32
8977 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
8978 (build-system perl-build-system)
8979 (propagated-inputs
8980 `(("perl-mime-charset" ,perl-mime-charset)))
8981 (home-page "https://metacpan.org/release/Unicode-LineBreak")
8982 (synopsis "Unicode line breaking algorithm")
8983 (description
8984 "@code{Unicode::LineBreak} implements the line breaking algorithm
8985 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
8986 defined by Annex #11 is used to determine breaking positions.")
8987 (license (package-license perl))))
8988
8989 (define-public perl-unicode-utf8
8990 (package
8991 (name "perl-unicode-utf8")
8992 (version "0.62")
8993 (source (origin
8994 (method url-fetch)
8995 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
8996 "Unicode-UTF8-" version ".tar.gz"))
8997 (sha256
8998 (base32
8999 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
9000 (build-system perl-build-system)
9001 ;; FIXME: Tests fail on 32-bit architectures:
9002 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
9003 (arguments `(#:tests? ,(target-64bit?)))
9004 (native-inputs
9005 `(("perl-test-fatal" ,perl-test-fatal)
9006 ("perl-test-leaktrace" ,perl-test-leaktrace)
9007 ("perl-variable-magic" ,perl-variable-magic)
9008 ("perl-test-pod" ,perl-test-pod)))
9009 (home-page "https://metacpan.org/release/Unicode-UTF8")
9010 (synopsis "Encoding and decoding of UTF-8 encoding form")
9011 (description
9012 "This module provides functions to encode and decode UTF-8 encoding form
9013 as specified by Unicode and ISO/IEC 10646:2011.")
9014 (license (package-license perl))))
9015
9016 (define-public perl-universal-can
9017 (package
9018 (name "perl-universal-can")
9019 (version "1.20140328")
9020 (source
9021 (origin
9022 (method url-fetch)
9023 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9024 "UNIVERSAL-can-" version ".tar.gz"))
9025 (sha256
9026 (base32
9027 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9028 (build-system perl-build-system)
9029 (home-page "https://metacpan.org/release/UNIVERSAL-can")
9030 (synopsis "UNIVERSAL::can() reimplementation")
9031 (description "This module attempts to work around people calling
9032 UNIVERSAL::can() as a function, which it is not.")
9033 (license (package-license perl))))
9034
9035 (define-public perl-universal-isa
9036 (package
9037 (name "perl-universal-isa")
9038 (version "1.20171012")
9039 (source
9040 (origin
9041 (method url-fetch)
9042 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9043 "UNIVERSAL-isa-" version ".tar.gz"))
9044 (sha256
9045 (base32
9046 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
9047 (build-system perl-build-system)
9048 (native-inputs
9049 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9050 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
9051 (synopsis "UNIVERSAL::isa() reimplementation")
9052 (description "This module attempts to recover from people calling
9053 UNIVERSAL::isa as a function.")
9054 (license (package-license perl))))
9055
9056 (define-public perl-universal-require
9057 (package
9058 (name "perl-universal-require")
9059 (version "0.18")
9060 (source
9061 (origin
9062 (method url-fetch)
9063 (uri (string-append
9064 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9065 version ".tar.gz"))
9066 (sha256
9067 (base32
9068 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9069 (build-system perl-build-system)
9070 (home-page "https://metacpan.org/release/UNIVERSAL-require")
9071 (synopsis "Require modules from a variable")
9072 (description "This module lets you require other modules where the module
9073 name is in a variable, something you can't do with the @code{require}
9074 built-in.")
9075 (license (package-license perl))))
9076
9077 (define-public perl-variable-magic
9078 (package
9079 (name "perl-variable-magic")
9080 (version "0.62")
9081 (source
9082 (origin
9083 (method url-fetch)
9084 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9085 "Variable-Magic-" version ".tar.gz"))
9086 (sha256
9087 (base32
9088 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9089 (build-system perl-build-system)
9090 (home-page "https://metacpan.org/release/Variable-Magic")
9091 (synopsis "Associate user-defined magic to variables from Perl")
9092 (description "Magic is Perl's way of enhancing variables. This mechanism
9093 lets the user add extra data to any variable and hook syntactical
9094 operations (such as access, assignment or destruction) that can be applied to
9095 it. With this module, you can add your own magic to any variable without
9096 having to write a single line of XS.")
9097 (license (package-license perl))))
9098
9099 (define-public perl-xml-writer
9100 (package
9101 (name "perl-xml-writer")
9102 (version "0.625")
9103 (source
9104 (origin
9105 (method url-fetch)
9106 (uri (string-append
9107 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9108 version
9109 ".tar.gz"))
9110 (sha256
9111 (base32
9112 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9113 (build-system perl-build-system)
9114 (home-page "https://metacpan.org/release/XML-Writer")
9115 (synopsis "Easily generate well-formed, namespace-aware XML")
9116 (description "@code{XML::Writer} is a simple Perl module for writing XML
9117 documents: it takes care of constructing markup and escaping data correctly.
9118 By default, it also performs a significant amount of well-formedness checking
9119 on the output to make certain (for example) that start and end tags match,
9120 that there is exactly one document element, and that there are not duplicate
9121 attribute names.")
9122 ;; Redistribution and use in source and compiled forms, with or without
9123 ;; modification, are permitted under any circumstances. No warranty.
9124 (license public-domain)))
9125
9126 (define-public perl-xs-object-magic
9127 (package
9128 (name "perl-xs-object-magic")
9129 (version "0.04")
9130 (source (origin
9131 (method url-fetch)
9132 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9133 "XS-Object-Magic-" version ".tar.gz"))
9134 (sha256
9135 (base32
9136 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9137 (build-system perl-build-system)
9138 (native-inputs
9139 `(("perl-extutils-depends" ,perl-extutils-depends)
9140 ("perl-module-install" ,perl-module-install)
9141 ("perl-test-fatal" ,perl-test-fatal)))
9142 (home-page "https://metacpan.org/release/XS-Object-Magic")
9143 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9144 (description
9145 "This way of associating structs with Perl space objects is designed to
9146 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9147 (structs can be associated with any data type) and opaque (the C pointer is
9148 neither visible nor modifiable from Perl space).")
9149 (license (package-license perl))))
9150
9151 (define-public perl-yaml
9152 (package
9153 (name "perl-yaml")
9154 (version "1.27")
9155 (source
9156 (origin
9157 (method url-fetch)
9158 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9159 "YAML-" version ".tar.gz"))
9160 (sha256
9161 (base32
9162 "1yc2yqjyrcdlhp209f3a63f9xx6v5klisli25fv221yy43la34n9"))))
9163 (build-system perl-build-system)
9164 (native-inputs
9165 `(("perl-test-yaml" ,perl-test-yaml)))
9166 (home-page "https://metacpan.org/release/YAML")
9167 (synopsis "YAML for Perl")
9168 (description "The YAML.pm module implements a YAML Loader and Dumper based
9169 on the YAML 1.0 specification.")
9170 (license (package-license perl))))
9171
9172 (define-public perl-yaml-libyaml
9173 (package
9174 (name "perl-yaml-libyaml")
9175 (version "0.76")
9176 (source
9177 (origin
9178 (method url-fetch)
9179 (uri (string-append
9180 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9181 version
9182 ".tar.gz"))
9183 (sha256
9184 (base32 "1m94g36sl9rasjlvlsf65xcal5hvkc3gbzd7l68h17az75269kyy"))))
9185 (build-system perl-build-system)
9186 (home-page
9187 "https://metacpan.org/release/YAML-LibYAML")
9188 (synopsis
9189 "Perl YAML Serialization using XS and libyaml")
9190 (description
9191 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9192 best YAML support to date.")
9193 (license perl-license)))
9194
9195 (define-public perl-yaml-tiny
9196 (package
9197 (name "perl-yaml-tiny")
9198 (version "1.73")
9199 (source
9200 (origin
9201 (method url-fetch)
9202 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9203 "YAML-Tiny-" version ".tar.gz"))
9204 (sha256
9205 (base32
9206 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
9207 (build-system perl-build-system)
9208 (native-inputs
9209 `(("perl-json-maybexs" ,perl-json-maybexs)
9210 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9211 (arguments
9212 `(#:tests? #f)) ;requires Test::More >= 0.99
9213 (home-page "https://metacpan.org/release/YAML-Tiny")
9214 (synopsis "Read/Write YAML files")
9215 (description "YAML::Tiny is a perl class for reading and writing
9216 YAML-style files, written with as little code as possible, reducing load time
9217 and memory overhead.")
9218 (license (package-license perl))))
9219
9220 (define-public perl-parse-recdescent
9221 (package
9222 (name "perl-parse-recdescent")
9223 (version "1.967015")
9224 (source
9225 (origin
9226 (method url-fetch)
9227 (uri (string-append
9228 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9229 version
9230 ".tar.gz"))
9231 (sha256
9232 (base32
9233 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9234 (build-system perl-build-system)
9235 (native-inputs
9236 `(("perl-module-build" ,perl-module-build)))
9237 (home-page
9238 "https://metacpan.org/release/Parse-RecDescent")
9239 (synopsis "Generate recursive-descent parsers")
9240 (description
9241 "@code{Parse::RecDescent} can incrementally generate top-down
9242 recursive-descent text parsers from simple yacc-like grammar specifications.")
9243 (license perl-license)))
9244
9245 (define-public perl-parse-yapp
9246 (package
9247 (name "perl-parse-yapp")
9248 (version "1.21")
9249 (source
9250 (origin
9251 (method url-fetch)
9252 (uri (string-append
9253 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9254 version
9255 ".tar.gz"))
9256 (sha256
9257 (base32
9258 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9259 (build-system perl-build-system)
9260 (home-page "https://metacpan.org/release/Parse-Yapp")
9261 (synopsis "Generate and use LALR parsers")
9262 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9263 grammars to generate Perl object oriented parser modules.")
9264 (license (package-license perl))))
9265
9266 \f
9267 ;;; Some packaged modules need versions of core modules that are newer than
9268 ;;; those in our perl 5.16.1.
9269
9270 (define-public perl-cpan-meta
9271 (package
9272 (name "perl-cpan-meta")
9273 (version "2.143240")
9274 (source
9275 (origin
9276 (method url-fetch)
9277 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9278 "CPAN-Meta-" version ".tar.gz"))
9279 (sha256
9280 (base32
9281 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9282 (build-system perl-build-system)
9283 (propagated-inputs
9284 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9285 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9286 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9287 (home-page "https://metacpan.org/release/CPAN-Meta")
9288 (synopsis "Distribution metadata for a CPAN dist")
9289 (description "Software distributions released to the CPAN include a
9290 META.json or, for older distributions, META.yml, which describes the
9291 distribution, its contents, and the requirements for building and installing
9292 the distribution. The data structure stored in the META.json file is
9293 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9294 represent this distribution metadata (or distmeta), along with some helpful
9295 methods for interrogating that data.")
9296 (license (package-license perl))))
9297
9298 (define-public perl-cpan-meta-requirements
9299 (package
9300 (name "perl-cpan-meta-requirements")
9301 (version "2.140")
9302 (source
9303 (origin
9304 (method url-fetch)
9305 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9306 "CPAN-Meta-Requirements-" version ".tar.gz"))
9307 (sha256
9308 (base32
9309 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9310 (build-system perl-build-system)
9311 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
9312 (synopsis "Set of version requirements for a CPAN dist")
9313 (description "A CPAN::Meta::Requirements object models a set of version
9314 constraints like those specified in the META.yml or META.json files in CPAN
9315 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9316 adding more and more constraints, and will reduce them to the simplest
9317 representation.")
9318 (license (package-license perl))))
9319
9320 (define-public perl-cpan-meta-yaml
9321 (package
9322 (name "perl-cpan-meta-yaml")
9323 (version "0.018")
9324 (source
9325 (origin
9326 (method url-fetch)
9327 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9328 "CPAN-Meta-YAML-" version ".tar.gz"))
9329 (sha256
9330 (base32
9331 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9332 (build-system perl-build-system)
9333 (arguments
9334 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9335 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
9336 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9337 (description "This module implements a subset of the YAML specification
9338 for use in reading and writing CPAN metadata files like META.yml and
9339 MYMETA.yml.")
9340 (license (package-license perl))))
9341
9342 (define-public perl-module-build
9343 (package
9344 (name "perl-module-build")
9345 (version "0.4220")
9346 (source
9347 (origin
9348 (method url-fetch)
9349 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9350 "Module-Build-" version ".tar.gz"))
9351 (sha256
9352 (base32
9353 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9354 (build-system perl-build-system)
9355 (propagated-inputs
9356 `(("perl-cpan-meta" ,perl-cpan-meta)))
9357 (home-page "https://metacpan.org/release/Module-Build")
9358 (synopsis "Build and install Perl modules")
9359 (description "@code{Module::Build} is a system for building, testing, and
9360 installing Perl modules; it used to be part of Perl itself until version 5.22,
9361 which dropped it. It is meant to be an alternative to
9362 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9363 through subclassing in a much more straightforward way than with
9364 @code{MakeMaker}. It also does not require a @command{make} on your
9365 system---most of the @code{Module::Build} code is pure-Perl.")
9366 (license (package-license perl))))
9367
9368 (define-public perl-parse-cpan-meta
9369 (package
9370 (name "perl-parse-cpan-meta")
9371 (version "2.150010")
9372 (source
9373 (origin
9374 (method url-fetch)
9375 ;; This module is now known as CPAN::Meta on CPAN.
9376 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9377 "CPAN-Meta-" version ".tar.gz"))
9378 (sha256
9379 (base32
9380 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9381 (build-system perl-build-system)
9382 (propagated-inputs
9383 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9384 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
9385 (synopsis "Parse META.yml and META.json CPAN metadata files")
9386 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9387 files, using JSON::PP and/or CPAN::Meta::YAML.")
9388 (license (package-license perl))))
9389
9390 (define-public perl-scalar-list-utils
9391 (package
9392 (name "perl-scalar-list-utils")
9393 (version "1.50")
9394 (source
9395 (origin
9396 (method url-fetch)
9397 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9398 "Scalar-List-Utils-" version ".tar.gz"))
9399 (sha256
9400 (base32
9401 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9402 (build-system perl-build-system)
9403 (home-page "https://metacpan.org/release/Scalar-List-Utils")
9404 (synopsis "Common Scalar and List utility subroutines")
9405 (description "This package contains a selection of subroutines that people
9406 have expressed would be nice to have in the perl core, but the usage would not
9407 really be high enough to warrant the use of a keyword, and the size so small
9408 such that being individual extensions would be wasteful.")
9409 (license (package-license perl))))
9410
9411 (define-public perl-shell-command
9412 (package
9413 (name "perl-shell-command")
9414 (version "0.06")
9415 (source
9416 (origin
9417 (method url-fetch)
9418 (uri (string-append
9419 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9420 version
9421 ".tar.gz"))
9422 (sha256
9423 (base32
9424 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9425 (build-system perl-build-system)
9426 (home-page
9427 "https://metacpan.org/release/Shell-Command")
9428 (synopsis
9429 "Cross-platform functions emulating common shell commands")
9430 (description
9431 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9432 (license (package-license perl))))
9433
9434 ;;; END: Core module overrides
9435
9436 (define-public perl-file-find-object
9437 (package
9438 (name "perl-file-find-object")
9439 (version "v0.2.13")
9440 (source
9441 (origin
9442 (method url-fetch)
9443 (uri (string-append
9444 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9445 version
9446 ".tar.gz"))
9447 (sha256
9448 (base32
9449 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9450 (build-system perl-build-system)
9451 (native-inputs
9452 `(("perl-module-build" ,perl-module-build)))
9453 (inputs
9454 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9455 (home-page
9456 "https://metacpan.org/release/File-Find-Object")
9457 (synopsis
9458 "Object-oriented File::Find replacement in Perl")
9459 (description "File::Find::Object is an object-oriented
9460 File::Find replacement in Perl.")
9461 (license artistic2.0)))
9462
9463 (define-public perl-file-find-object-rule
9464 (package
9465 (name "perl-file-find-object-rule")
9466 (version "0.0309")
9467 (source
9468 (origin
9469 (method url-fetch)
9470 (uri (string-append
9471 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9472 version
9473 ".tar.gz"))
9474 (sha256
9475 (base32 "1qr1rrp9gn0bpsixsrkan710sxc7bnhirh0anjsw2ihn4wdy3151"))))
9476 (build-system perl-build-system)
9477 (native-inputs
9478 `(("perl-module-build" ,perl-module-build)))
9479 (inputs
9480 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9481 ("perl-file-find-object" ,perl-file-find-object)
9482 ("perl-number-compare" ,perl-number-compare)
9483 ("perl-text-glob" ,perl-text-glob)))
9484 (home-page
9485 "https://metacpan.org/release/File-Find-Object-Rule")
9486 (synopsis
9487 "Alternative interface to File::Find::Object")
9488 (description "File::Find::Object::Rule is an alternative Perl
9489 interface to File::Find::Object.")
9490 (license (package-license perl))))
9491
9492 (define-public perl-file-finder
9493 (package
9494 (name "perl-file-finder")
9495 (version "0.53")
9496 (source
9497 (origin
9498 (method url-fetch)
9499 (uri (string-append
9500 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
9501 version ".tar.gz"))
9502 (sha256
9503 (base32
9504 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
9505 (build-system perl-build-system)
9506 (propagated-inputs
9507 `(("perl-text-glob" ,perl-text-glob)))
9508 (home-page "https://metacpan.org/release/File-Finder")
9509 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
9510 (description
9511 "@code{File::Find} is great, but constructing the wanted routine can
9512 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
9513 syntax that is directly mappable to the @code{find(1)} command's syntax.
9514
9515 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
9516 a series of steps that mimic find's predicates. Initially, a
9517 @code{File::Finder} object has no steps. Each step method clones the previous
9518 object's options and steps, and then adds the new step, returning the new
9519 object. In this manner, an object can be grown, step by step, by chaining
9520 method calls. Furthermore, a partial sequence can be created and held, and
9521 used as the head of many different sequences.")
9522 (license perl-license)))
9523
9524 (define-public perl-font-ttf
9525 (package
9526 (name "perl-font-ttf")
9527 (version "1.06")
9528 (source (origin
9529 (method url-fetch)
9530 (uri (string-append
9531 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9532 version ".tar.gz"))
9533 (sha256
9534 (base32
9535 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9536 (build-system perl-build-system)
9537 (propagated-inputs
9538 `(("perl-io-string" ,perl-io-string)))
9539 (home-page "https://metacpan.org/release/Font-TTF")
9540 (synopsis "TTF font support for Perl")
9541 (description "This package provides a Perl module for TrueType/OpenType
9542 font hacking. It supports reading, processing and writing of the following
9543 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9544 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9545 prop, vhea, vmtx and the reading and writing of all other table types.")
9546 (license artistic2.0)))
9547
9548 (define-public perl-libtime-parsedate
9549 (package
9550 (name "perl-libtime-parsedate")
9551 (version "2015.103")
9552 (source
9553 (origin
9554 (method url-fetch)
9555 (uri (string-append
9556 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9557 version ".tar.gz"))
9558 (sha256
9559 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9560 (build-system perl-build-system)
9561 (arguments
9562 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9563 ;; doesn't support it yet.
9564 ;;
9565 ;; #:disallowed-references (,tzdata-for-tests)
9566
9567 #:phases
9568 (modify-phases %standard-phases
9569 ;; This is needed for tests
9570 (add-after 'unpack 'set-TZDIR
9571 (lambda* (#:key inputs #:allow-other-keys)
9572 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9573 "/share/zoneinfo"))
9574 #t)))))
9575 (native-inputs
9576 `(("perl-module-build" ,perl-module-build)
9577 ("tzdata" ,tzdata-for-tests)))
9578 (home-page "https://metacpan.org/release/Time-ParseDate")
9579 (synopsis "Collection of Perl modules for time/date manipulation")
9580 (description "Provides several perl modules for date/time manipulation:
9581 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9582 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9583 ;; License text:
9584 ;; "License hereby granted for anyone to use, modify or redistribute this
9585 ;; module at their own risk. Please feed useful changes back to
9586 ;; cpan@dave.sharnoff.org."
9587 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9588 changelogs/main/libt/libtime-parsedate-perl/\
9589 libtime-parsedate-perl_2015.103-2_copyright"))))
9590
9591 (define-public perl-libtime-period
9592 (package
9593 (name "perl-libtime-period")
9594 (version "1.20")
9595 (source
9596 (origin
9597 (method url-fetch)
9598 (uri (string-append
9599 "http://http.debian.net/debian/pool/main/libt/"
9600 "libtime-period-perl/libtime-period-perl_"
9601 version ".orig.tar.gz"))
9602 (sha256
9603 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9604 (build-system perl-build-system)
9605 (native-inputs
9606 `(("perl-module-build" ,perl-module-build)))
9607 ;; Unless some other homepage is out there...
9608 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9609 (synopsis "Perl library for testing if a time() is in a specific period")
9610 (description "This Perl library provides a function which tells whether a
9611 specific time falls within a specified time period. Its syntax for specifying
9612 time periods allows you to test for conditions like \"Monday to Friday, 9am
9613 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9614 4:15pm\" and \"in the first half of each minute\" and \"in January of
9615 1998\".")
9616 (license perl-license)))
9617
9618 (define-public perl-path-iterator-rule
9619 (package
9620 (name "perl-path-iterator-rule")
9621 (version "1.014")
9622 (source
9623 (origin
9624 (method url-fetch)
9625 (uri (string-append
9626 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9627 version ".tar.gz"))
9628 (sha256
9629 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
9630 (build-system perl-build-system)
9631 (native-inputs
9632 `(("perl-file-pushd" ,perl-file-pushd)
9633 ("perl-path-tiny" ,perl-path-tiny)
9634 ("perl-test-deep" ,perl-test-deep)
9635 ("perl-test-filename" ,perl-test-filename)))
9636 (propagated-inputs
9637 `(("perl-number-compare" ,perl-number-compare)
9638 ("perl-text-glob" ,perl-text-glob)
9639 ("perl-try-tiny" ,perl-try-tiny)))
9640 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
9641 (synopsis "Iterative, recursive file finder")
9642 (description "Path::Iterator::Rule iterates over files and directories to
9643 identify ones matching a user-defined set of rules. The API is based heavily
9644 on File::Find::Rule, but with more explicit distinction between matching rules
9645 and options that influence how directories are searched. A
9646 Path::Iterator::Rule object is a collection of rules (match criteria) with
9647 methods to add additional criteria. Options that control directory traversal
9648 are given as arguments to the method that generates an iterator.
9649
9650 A summary of features for comparison to other file finding modules:
9651
9652 @itemize
9653 @item provides many helper methods for specifying rules
9654 @item offers (lazy) iterator and flattened list interfaces
9655 @item custom rules implemented with callbacks
9656 @item breadth-first (default) or pre- or post-order depth-first searching
9657 @item follows symlinks (by default, but can be disabled)
9658 @item directories visited only once (no infinite loop; can be disabled)
9659 @item doesn't chdir during operation
9660 @item provides an API for extensions
9661 @end itemize
9662
9663 As a convenience, the PIR module is an empty subclass of this one that is less
9664 arduous to type for one-liners.")
9665 (license asl2.0)))
9666
9667 (define-public perl-pod-constants
9668 (package
9669 (name "perl-pod-constants")
9670 (version "0.19")
9671 (source
9672 (origin
9673 (method url-fetch)
9674 (uri (string-append
9675 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9676 version ".tar.gz"))
9677 (sha256
9678 (base32
9679 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9680 (build-system perl-build-system)
9681 (home-page "https://metacpan.org/release/Pod-Constants")
9682 (synopsis "Include constants from POD")
9683 (description "This module allows you to specify those constants that
9684 should be documented in your POD, and pull them out a run time in a fairly
9685 arbitrary fashion.
9686
9687 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9688 to open the source file it is called from, and does so directly either by
9689 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9690 (or it can't find %INC{caller()}).")
9691 (license artistic2.0)))
9692
9693 (define-public perl-regexp-pattern
9694 (package
9695 (name "perl-regexp-pattern")
9696 (version "0.2.8")
9697 (source
9698 (origin
9699 (method url-fetch)
9700 (uri (string-append
9701 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9702 version ".tar.gz"))
9703 (sha256
9704 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
9705 (build-system perl-build-system)
9706 (native-inputs
9707 `(("perl-test-exception" ,perl-test-exception)))
9708 (home-page "https://metacpan.org/release/Regexp-Pattern")
9709 (synopsis "Collection of regexp patterns")
9710 (description "Regexp::Pattern is a convention for organizing reusable
9711 regexp patterns in modules.")
9712 (license (package-license perl))))
9713
9714 (define-public perl-data-sexpression
9715 (package
9716 (name "perl-data-sexpression")
9717 (version "0.41")
9718 (source
9719 (origin
9720 (method url-fetch)
9721 (uri (string-append
9722 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
9723 version ".tar.gz"))
9724 (sha256
9725 (base32
9726 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
9727 (build-system perl-build-system)
9728 (native-inputs
9729 `(("perl-module-install" ,perl-module-install)
9730 ("perl-test-deep" ,perl-test-deep)))
9731 (propagated-inputs
9732 `(("perl-class-accessor" ,perl-class-accessor)))
9733 (home-page "https://metacpan.org/release/Data-SExpression")
9734 (synopsis "Parse Lisp S-Expressions into Perl data structures")
9735 (description "Data::SExpression parses Lisp S-Expressions into Perl data
9736 structures.")
9737 (license perl-license)))