Merge branch 'staging' into core-updates
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016, 2017 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 Nils Gillmann <ng0@n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016, 2018 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
16 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017, 2018, 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
57 ;;;
58 ;;; Please: Try to add new module packages in alphabetic order.
59 ;;;
60
61 \f
62 (define-public perl
63 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
64 (package
65 (name "perl")
66 (version "5.28.1")
67 (source (origin
68 (method url-fetch)
69 (uri (string-append "mirror://cpan/src/5.0/perl-"
70 version ".tar.gz"))
71 (sha256
72 (base32
73 "0iy3as4hnbjfyws4in3j9d6zhhjxgl5m95i5n9jy2bnzcpz8bgry"))
74 (patches (search-patches
75 "perl-no-sys-dirs.patch"
76 "perl-autosplit-default-time.patch"
77 "perl-deterministic-ordering.patch"
78 "perl-reproducible-build-date.patch"))))
79 (build-system gnu-build-system)
80 (arguments
81 '(#:tests? #f
82 #:configure-flags
83 (let ((out (assoc-ref %outputs "out"))
84 (libc (assoc-ref %build-inputs "libc")))
85 (list
86 (string-append "-Dprefix=" out)
87 (string-append "-Dman1dir=" out "/share/man/man1")
88 (string-append "-Dman3dir=" out "/share/man/man3")
89 "-de" "-Dcc=gcc"
90 "-Uinstallusrbinperl"
91 "-Dinstallstyle=lib/perl5"
92 "-Duseshrplib"
93 (string-append "-Dlocincpth=" libc "/include")
94 (string-append "-Dloclibpth=" libc "/lib")
95 "-Dusethreads"))
96 #:phases
97 (modify-phases %standard-phases
98 (add-before 'configure 'setup-configure
99 (lambda _
100 ;; Use the right path for `pwd'.
101 (substitute* "dist/PathTools/Cwd.pm"
102 (("/bin/pwd")
103 (which "pwd")))
104
105 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
106 ;; <bits/string3.h>.
107 (substitute* "cflags.SH"
108 (("-std=c89")
109 "-std=gnu89"))
110 #t))
111 (replace 'configure
112 (lambda* (#:key configure-flags #:allow-other-keys)
113 (format #t "Perl configure flags: ~s~%" configure-flags)
114 (apply invoke "./Configure" configure-flags)))
115 (add-before
116 'strip 'make-shared-objects-writable
117 (lambda* (#:key outputs #:allow-other-keys)
118 ;; The 'lib/perl5' directory contains ~50 MiB of .so. Make them
119 ;; writable so that 'strip' actually strips them.
120 (let* ((out (assoc-ref outputs "out"))
121 (lib (string-append out "/lib")))
122 (for-each (lambda (dso)
123 (chmod dso #o755))
124 (find-files lib "\\.so$"))
125 #t)))
126
127 (add-after 'install 'remove-extra-references
128 (lambda* (#:key inputs outputs #:allow-other-keys)
129 (let* ((out (assoc-ref outputs "out"))
130 (libc (assoc-ref inputs "libc"))
131 (config1 (car (find-files (string-append out "/lib/perl5")
132 "^Config_heavy\\.pl$")))
133 (config2 (find-files (string-append out "/lib/perl5")
134 "^Config\\.pm$")))
135 ;; Force the library search path to contain only libc because
136 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
137 ;; want to keep a reference to everything that's in
138 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
139 ;; etc.)
140 (substitute* config1
141 (("^incpth=.*$")
142 (string-append "incpth='" libc "/include'\n"))
143 (("^(libpth|plibpth|libspath)=.*$" _ variable)
144 (string-append variable "='" libc "/lib'\n")))
145
146 (for-each (lambda (file)
147 (substitute* config2
148 (("libpth => .*$")
149 (string-append "libpth => '" libc
150 "/lib',\n"))))
151 config2)
152 #t))))))
153 (native-search-paths (list (search-path-specification
154 (variable "PERL5LIB")
155 (files '("lib/perl5/site_perl")))))
156 (synopsis "Implementation of the Perl programming language")
157 (description
158 "Perl is a general-purpose programming language originally developed for
159 text manipulation and now used for a wide range of tasks including system
160 administration, web development, network programming, GUI development, and
161 more.")
162 (home-page "http://www.perl.org/")
163 (license gpl1+))) ; or "Artistic"
164
165 (define-public perl-algorithm-c3
166 (package
167 (name "perl-algorithm-c3")
168 (version "0.10")
169 (source
170 (origin
171 (method url-fetch)
172 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
173 "Algorithm-C3-" version ".tar.gz"))
174 (sha256
175 (base32
176 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
177 (build-system perl-build-system)
178 (home-page "https://metacpan.org/release/Algorithm-C3")
179 (synopsis "Module for merging hierarchies using the C3 algorithm")
180 (description "This module implements the C3 algorithm, which aims to
181 provide a sane method resolution order under multiple inheritance.")
182 (license (package-license perl))))
183
184 (define-public perl-algorithm-diff
185 (package
186 (name "perl-algorithm-diff")
187 (version "1.1903")
188 (source
189 (origin
190 (method url-fetch)
191 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
192 "Algorithm-Diff-" version ".tar.gz"))
193 (sha256
194 (base32
195 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
196 (build-system perl-build-system)
197 (home-page "https://metacpan.org/release/Algorithm-Diff")
198 (synopsis "Compute differences between two files or lists")
199 (description "This is a module for computing the difference between two
200 files, two strings, or any other two lists of things. It uses an intelligent
201 algorithm similar to (or identical to) the one used by the Unix \"diff\"
202 program. It is guaranteed to find the *smallest possible* set of
203 differences.")
204 (license (package-license perl))))
205
206 (define-public perl-aliased
207 (package
208 (name "perl-aliased")
209 (version "0.34")
210 (source
211 (origin
212 (method url-fetch)
213 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
214 "aliased-" version ".tar.gz"))
215 (sha256
216 (base32
217 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
218 (build-system perl-build-system)
219 (native-inputs `(("perl-module-build" ,perl-module-build)))
220 (home-page "https://metacpan.org/release/aliased")
221 (synopsis "Use shorter versions of class names")
222 (description "The alias module loads the class you specify and exports
223 into your namespace a subroutine that returns the class name. You can
224 explicitly alias the class to another name or, if you prefer, you can do so
225 implicitly.")
226 (license (package-license perl))))
227
228 (define-public perl-any-moose
229 (package
230 (name "perl-any-moose")
231 (version "0.27")
232 (source (origin
233 (method url-fetch)
234 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
235 "Any-Moose-" version ".tar.gz"))
236 (sha256
237 (base32
238 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
239 (build-system perl-build-system)
240 (native-inputs
241 `(("perl-mouse" ,perl-mouse)
242 ("perl-moose" ,perl-moose)))
243 (home-page "https://metacpan.org/release/Any-Moose")
244 (synopsis "Transparently use Moose or Mouse modules")
245 (description
246 "This module facilitates using @code{Moose} or @code{Mouse} modules
247 without changing the code. By default, Mouse will be provided to libraries,
248 unless Moose is already loaded, or explicitly requested by the end-user. End
249 users can force the decision of which backend to use by setting the environment
250 variable ANY_MOOSE to be Moose or Mouse.")
251 (license (package-license perl))))
252
253 (define-public perl-appconfig
254 (package
255 (name "perl-appconfig")
256 (version "1.71")
257 (source
258 (origin
259 (method url-fetch)
260 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
261 "AppConfig-" version ".tar.gz"))
262 (sha256
263 (base32
264 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
265 (build-system perl-build-system)
266 (native-inputs
267 `(("perl-test-pod" ,perl-test-pod)))
268 (home-page "https://metacpan.org/release/AppConfig")
269 (synopsis "Configuration files and command line parsing")
270 (description "AppConfig is a bundle of Perl5 modules for reading
271 configuration files and parsing command line arguments.")
272 (license (package-license perl))))
273
274 (define-public perl-array-utils
275 (package
276 (name "perl-array-utils")
277 (version "0.5")
278 (source
279 (origin
280 (method url-fetch)
281 (uri (string-append
282 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
283 version
284 ".tar.gz"))
285 (sha256
286 (base32
287 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
288 (build-system perl-build-system)
289 (home-page "https://metacpan.org/release/Array-Utils")
290 (synopsis "Small utils for array manipulation")
291 (description "@code{Array::Utils} is a small pure-perl module containing
292 list manipulation routines.")
293 (license (package-license perl))))
294
295 (define-public perl-async-interrupt
296 (package
297 (name "perl-async-interrupt")
298 (version "1.21")
299 (source (origin
300 (method url-fetch)
301 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
302 "Async-Interrupt-" version ".tar.gz"))
303 (sha256
304 (base32
305 "092zs7b72f8q109c3z829nqfgwqghp3nhw44c0gcyhacbb4wgpk3"))))
306 (build-system perl-build-system)
307 (propagated-inputs
308 `(("perl-common-sense" ,perl-common-sense)))
309 (home-page "https://metacpan.org/release/Async-Interrupt")
310 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
311 (description
312 "@code{Async::Interrupt} implements a single feature only of interest
313 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
314 signals\", which are very similar).
315
316 Sometimes, modules wish to run code asynchronously (in another thread,
317 or from a signal handler), and then signal the perl interpreter on
318 certain events. One common way is to write some data to a pipe and use
319 an event handling toolkit to watch for I/O events. Another way is to
320 send a signal. Those methods are slow, and in the case of a pipe, also
321 not asynchronous - it won't interrupt a running perl interpreter.
322
323 This module implements asynchronous notifications that enable you to
324 signal running perl code from another thread, asynchronously, and
325 sometimes even without using a single syscall.")
326 (license (package-license perl))))
327
328 (define-public perl-autovivification
329 (package
330 (name "perl-autovivification")
331 (version "0.18")
332 (source
333 (origin
334 (method url-fetch)
335 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
336 "autovivification-" version ".tar.gz"))
337 (sha256
338 (base32
339 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
340 (build-system perl-build-system)
341 (home-page "https://metacpan.org/release/autovivification")
342 (synopsis "Lexically disable autovivification")
343 (description "When an undefined variable is dereferenced, it gets silently
344 upgraded to an array or hash reference (depending of the type of the
345 dereferencing). This behaviour is called autovivification and usually does
346 what you mean but it may be unnatural or surprising because your variables get
347 populated behind your back. This is especially true when several levels of
348 dereferencing are involved, in which case all levels are vivified up to the
349 last, or when it happens in intuitively read-only constructs like
350 @code{exists}. The pragma provided by this package lets you disable
351 autovivification for some constructs and optionally throws a warning or an
352 error when it would have happened.")
353 (license (package-license perl))))
354
355 (define-public perl-bareword-filehandles
356 (package
357 (name "perl-bareword-filehandles")
358 (version "0.006")
359 (source
360 (origin
361 (method url-fetch)
362 (uri (string-append
363 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
364 version ".tar.gz"))
365 (sha256
366 (base32
367 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
368 (build-system perl-build-system)
369 (native-inputs
370 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
371 ("perl-extutils-depends" ,perl-extutils-depends)))
372 (propagated-inputs
373 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
374 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
375 (home-page "https://metacpan.org/release/bareword-filehandles")
376 (synopsis "Disables bareword filehandles")
377 (description "This module disables bareword filehandles.")
378 (license (package-license perl))))
379
380 (define-public perl-base
381 (package
382 (name "perl-base")
383 (version "2.18")
384 (source
385 (origin
386 (method url-fetch)
387 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
388 "base-" version ".tar.gz"))
389 (sha256
390 (base32
391 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
392 (build-system perl-build-system)
393 (home-page "https://metacpan.org/release/base")
394 (synopsis "Establish an ISA relationship with base classes at compile time")
395 (description "Allows you to both load one or more modules, while setting
396 up inheritance from those modules at the same time. Unless you are using the
397 fields pragma, consider this module discouraged in favor of the lighter-weight
398 parent.")
399 (license (package-license perl)))) ;See README
400
401 (define-public perl-browser-open
402 (package
403 (name "perl-browser-open")
404 (version "0.04")
405 (source
406 (origin
407 (method url-fetch)
408 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
409 version ".tar.gz"))
410 (sha256
411 (base32
412 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
413 (build-system perl-build-system)
414 (home-page "https://metacpan.org/release/Browser-Open")
415 (synopsis "Open a browser in a given URL")
416 (description "The functions exported by this module allow you to open URLs
417 in the user's browser. A set of known commands per OS-name is tested for
418 presence, and the first one found is executed. With an optional parameter,
419 all known commands are checked.")
420 (license (package-license perl))))
421
422 (define-public perl-b-hooks-endofscope
423 (package
424 (name "perl-b-hooks-endofscope")
425 (version "0.24")
426 (source
427 (origin
428 (method url-fetch)
429 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
430 "B-Hooks-EndOfScope-" version ".tar.gz"))
431 (sha256
432 (base32
433 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
434 (build-system perl-build-system)
435 (propagated-inputs
436 `(("perl-module-runtime" ,perl-module-runtime)
437 ("perl-module-implementation" ,perl-module-implementation)
438 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
439 ("perl-variable-magic" ,perl-variable-magic)))
440 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
441 (synopsis "Execute code after a scope finished compilation")
442 (description "This module allows you to execute code when perl finished
443 compiling the surrounding scope.")
444 (license (package-license perl))))
445
446 (define-public perl-b-hooks-op-check
447 (package
448 (name "perl-b-hooks-op-check")
449 (version "0.22")
450 (source
451 (origin
452 (method url-fetch)
453 (uri (string-append
454 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
455 version ".tar.gz"))
456 (sha256
457 (base32
458 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
459 (build-system perl-build-system)
460 (native-inputs
461 `(("perl-extutils-depends" ,perl-extutils-depends)))
462 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
463 (synopsis "Wrap OP check callbacks")
464 (description "This module allows you to wrap OP check callbacks.")
465 (license (package-license perl))))
466
467 (define-public perl-b-keywords
468 (package
469 (name "perl-b-keywords")
470 (version "1.15")
471 (source
472 (origin
473 (method url-fetch)
474 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
475 version ".tar.gz"))
476 (sha256
477 (base32
478 "1nhdplmd0y69lnwyajg3anhk6pm13nm6qzm05nzpz8zl7j7fzlk5"))))
479 (build-system perl-build-system)
480 (home-page "https://metacpan.org/release/B-Keywords")
481 (synopsis "Lists of reserved barewords and symbol names")
482 (description "@code{B::Keywords} supplies several arrays of exportable
483 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
484 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
485 @@ExporterSymbols}.")
486 ;; GPLv2 only
487 (license gpl2)))
488
489 (define-public perl-benchmark-timer
490 (package
491 (name "perl-benchmark-timer")
492 (version "0.7102")
493 (source (origin
494 (method url-fetch)
495 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
496 "Benchmark-Timer-" version ".tar.gz"))
497 (sha256
498 (base32
499 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
500 (build-system perl-build-system)
501 (native-inputs
502 `(("perl-module-install" ,perl-module-install)))
503 ;; The optional input module Statistics::PointEstimation (from
504 ;; Statistics-TTest) lists no license.
505 (synopsis "Benchmarking with statistical confidence")
506 (description
507 "The Benchmark::Timer class allows you to time portions of code
508 conveniently, as well as benchmark code by allowing timings of repeated
509 trials. It is perfect for when you need more precise information about the
510 running time of portions of your code than the Benchmark module will give you,
511 but don't want to go all out and profile your code.")
512 (home-page "https://metacpan.org/release/Benchmark-Timer")
513 (license gpl2)))
514
515 (define-public perl-bit-vector
516 (package
517 (name "perl-bit-vector")
518 (version "7.4")
519 (source
520 (origin
521 (method url-fetch)
522 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
523 "Bit-Vector-" version ".tar.gz"))
524 (sha256
525 (base32
526 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
527 (build-system perl-build-system)
528 (propagated-inputs
529 `(("perl-carp-clan" ,perl-carp-clan)))
530 (home-page "https://metacpan.org/release/Bit-Vector")
531 (synopsis "Bit vector library")
532 (description "Bit::Vector is an efficient C library which allows you to
533 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
534 matrices, all of arbitrary sizes. The package also includes an
535 object-oriented Perl module for accessing the C library from Perl, and
536 optionally features overloaded operators for maximum ease of use. The C
537 library can nevertheless be used stand-alone, without Perl.")
538 (license (list (package-license perl) lgpl2.0+))))
539
540 (define-public perl-boolean
541 (package
542 (name "perl-boolean")
543 (version "0.45")
544 (source
545 (origin
546 (method url-fetch)
547 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
548 "boolean-" version ".tar.gz"))
549 (sha256
550 (base32
551 "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
552 (build-system perl-build-system)
553 (home-page "https://metacpan.org/release/boolean")
554 (synopsis "Boolean support for Perl")
555 (description "This module provides basic Boolean support, by defining two
556 special objects: true and false.")
557 (license (package-license perl))))
558
559 (define-public perl-business-isbn-data
560 (package
561 (name "perl-business-isbn-data")
562 (version "20140910.003")
563 (source
564 (origin
565 (method url-fetch)
566 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
567 "Business-ISBN-Data-" version ".tar.gz"))
568 (sha256
569 (base32
570 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
571 (build-system perl-build-system)
572 (home-page "https://metacpan.org/release/Business-ISBN-Data")
573 (synopsis "Data files for Business::ISBN")
574 (description "This package provides a data pack for @code{Business::ISBN}.
575 These data are generated from the RangeMessage.xml file provided by the ISBN
576 Agency.")
577 (license (package-license perl))))
578
579 (define-public perl-business-isbn
580 (package
581 (name "perl-business-isbn")
582 (version "3.004")
583 (source
584 (origin
585 (method url-fetch)
586 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
587 "Business-ISBN-" version ".tar.gz"))
588 (sha256
589 (base32
590 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
591 (build-system perl-build-system)
592 (propagated-inputs
593 `(("perl-business-isbn-data" ,perl-business-isbn-data)
594 ("perl-mojolicious" ,perl-mojolicious)))
595 (home-page "https://metacpan.org/release/Business-ISBN")
596 (synopsis "Work with International Standard Book Numbers")
597 (description "This modules provides tools to deal with International
598 Standard Book Numbers, including ISBN-10 and ISBN-13.")
599 (license artistic2.0)))
600
601 (define-public perl-business-issn
602 (package
603 (name "perl-business-issn")
604 (version "0.91")
605 (source
606 (origin
607 (method url-fetch)
608 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
609 "Business-ISSN-" version ".tar.gz"))
610 (sha256
611 (base32
612 "1dfnm7h7lbqj356700ldlmgbr51v6hyjn1qig2bb4ysl1wn1jnzi"))))
613 (build-system perl-build-system)
614 (home-page "https://metacpan.org/release/Business-ISSN")
615 (synopsis "Work with International Standard Serial Numbers")
616 (description "This modules provides tools to deal with International
617 Standard Serial Numbers.")
618 (license (package-license perl))))
619
620 (define-public perl-business-ismn
621 (package
622 (name "perl-business-ismn")
623 (version "1.131")
624 (source
625 (origin
626 (method url-fetch)
627 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
628 "Business-ISMN-" version ".tar.gz"))
629 (sha256
630 (base32
631 "1xyc7x4c4xl930rz7grs1l52f1vg4rbiv0c6xlxdsim8qsh7k94g"))))
632 (build-system perl-build-system)
633 (native-inputs
634 `(("perl-tie-cycle" ,perl-tie-cycle)))
635 (home-page "https://metacpan.org/release/Business-ISMN")
636 (synopsis "Work with International Standard Music Numbers")
637 (description "This modules provides tools to deal with International
638 Standard Music Numbers.")
639 (license (package-license perl))))
640
641 (define-public perl-cache-cache
642 (package
643 (name "perl-cache-cache")
644 (version "1.08")
645 (source (origin
646 (method url-fetch)
647 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
648 "Cache-Cache-" version ".tar.gz"))
649 (sha256
650 (base32
651 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
652 (build-system perl-build-system)
653 (propagated-inputs
654 `(("perl-digest-sha1" ,perl-digest-sha1)
655 ("perl-error" ,perl-error)
656 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
657 (home-page "https://metacpan.org/release/Cache-Cache")
658 (synopsis "Cache interface for Perl")
659 (description "The Cache modules are designed to assist a developer in
660 persisting data for a specified period of time. Often these modules are used
661 in web applications to store data locally to save repeated and redundant
662 expensive calls to remote machines or databases. People have also been known
663 to use Cache::Cache for its straightforward interface in sharing data between
664 runs of an application or invocations of a CGI-style script or simply as an
665 easy to use abstraction of the file system or shared memory.")
666 (license (package-license perl))))
667
668 (define-public perl-cache-fastmmap
669 (package
670 (name "perl-cache-fastmmap")
671 (version "1.40")
672 (source
673 (origin
674 (method url-fetch)
675 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
676 "Cache-FastMmap-" version ".tar.gz"))
677 (sha256
678 (base32
679 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
680 (build-system perl-build-system)
681 (home-page "https://metacpan.org/release/Cache-FastMmap")
682 (synopsis "Shared memory interprocess cache via mmap")
683 (description "A shared memory cache through an mmap'ed file. It's core is
684 written in C for performance. It uses fcntl locking to ensure multiple
685 processes can safely access the cache at the same time. It uses a basic LRU
686 algorithm to keep the most used entries in the cache.")
687 (license (package-license perl))))
688
689 (define-public perl-capture-tiny
690 (package
691 (name "perl-capture-tiny")
692 (version "0.48")
693 (source
694 (origin
695 (method url-fetch)
696 (uri (string-append
697 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
698 version ".tar.gz"))
699 (sha256
700 (base32
701 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
702 (build-system perl-build-system)
703 (home-page "https://metacpan.org/release/Capture-Tiny")
704 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
705 (description
706 "Capture::Tiny provides a simple, portable way to capture almost anything
707 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
708 code or from an external program. Optionally, output can be teed so that it
709 is captured while being passed through to the original file handles.")
710 (license asl2.0)))
711
712 (define-public perl-canary-stability
713 (package
714 (name "perl-canary-stability")
715 (version "2012")
716 (source (origin
717 (method url-fetch)
718 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
719 "Canary-Stability-" version ".tar.gz"))
720 (sha256
721 (base32
722 "01vih43hvpqy67m6a6fwmlswli91mqpv8n8ccglvlkc33l8hn97x"))))
723 (build-system perl-build-system)
724 (home-page "https://metacpan.org/release/Canary-Stability")
725 (synopsis "Check compatibility with the installed perl version")
726 (description
727 "This module is used by Schmorp's modules during configuration stage
728 to test the installed perl for compatibility with his modules.")
729 (license (package-license perl))))
730
731 (define-public perl-carp
732 (package
733 (name "perl-carp")
734 (version "1.38")
735 (source (origin
736 (method url-fetch)
737 (uri (string-append
738 "mirror://cpan/authors/id/R/RJ/RJBS/Carp-"
739 version ".tar.gz"))
740 (sha256
741 (base32
742 "00bijwwc0ix27h2ma3lvsf3b56biar96bl9dikxgx7cmpcycxad5"))))
743 (build-system perl-build-system)
744 (home-page "https://metacpan.org/release/Carp")
745 (synopsis "Alternative warn and die for modules")
746 (description "The @code{Carp} routines are useful in your own modules
747 because they act like @code{die()} or @code{warn()}, but with a message
748 which is more likely to be useful to a user of your module. In the case
749 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
750 summary of every call in the call-stack. For a shorter message you can use
751 @code{carp} or @code{croak} which report the error as being from where your
752 module was called. There is no guarantee that that is where the error was,
753 but it is a good educated guess.")
754 (license (package-license perl))))
755
756 (define-public perl-carp-always
757 (package
758 (name "perl-carp-always")
759 (version "0.13")
760 (source
761 (origin
762 (method url-fetch)
763 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
764 version ".tar.gz"))
765 (sha256
766 (base32
767 "0i2rifkr7ybfcdsqana52487z7vxp2l5qdra0f6ik0ddhn6rzii1"))))
768 (build-system perl-build-system)
769 (native-inputs
770 `(("perl-test-base" ,perl-test-base)))
771 (home-page "https://metacpan.org/release/Carp-Always")
772 (synopsis "Warns and dies noisily with stack backtraces/")
773 (description "This module is meant as a debugging aid. It can be used to
774 make a script complain loudly with stack backtraces when @code{warn()}-ing or
775 @code{die()}ing.")
776 (license (package-license perl))))
777
778 (define-public perl-carp-assert
779 (package
780 (name "perl-carp-assert")
781 (version "0.21")
782 (source
783 (origin
784 (method url-fetch)
785 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
786 "Carp-Assert-" version ".tar.gz"))
787 (sha256
788 (base32
789 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
790 (build-system perl-build-system)
791 (home-page "https://metacpan.org/release/Carp-Assert")
792 (synopsis "Executable comments for Perl")
793 (description "Carp::Assert is intended for a purpose like the ANSI C
794 library assert.h.")
795 (license (package-license perl))))
796
797 (define-public perl-carp-assert-more
798 (package
799 (name "perl-carp-assert-more")
800 (version "1.14")
801 (source
802 (origin
803 (method url-fetch)
804 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
805 "Carp-Assert-More-" version ".tar.gz"))
806 (sha256
807 (base32
808 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
809 (build-system perl-build-system)
810 (native-inputs
811 `(("perl-test-exception" ,perl-test-exception)))
812 (propagated-inputs
813 `(("perl-carp-assert" ,perl-carp-assert)))
814 (home-page "https://metacpan.org/release/Carp-Assert-More")
815 (synopsis "Convenience wrappers around Carp::Assert")
816 (description "Carp::Assert::More is a set of handy assertion functions for
817 Perl.")
818 (license artistic2.0)))
819
820 (define-public perl-carp-clan
821 (package
822 (name "perl-carp-clan")
823 (version "6.06")
824 (source
825 (origin
826 (method url-fetch)
827 (uri (string-append "mirror://cpan/authors/id/K/KE/KENTNL/"
828 "Carp-Clan-" version ".tar.gz"))
829 (sha256
830 (base32
831 "1m6902n6s627nsvyn2vyrk29q7lh6808hsdk7ka5cirm27vchjpa"))))
832 (build-system perl-build-system)
833 (native-inputs
834 `(("perl-test-exception" ,perl-test-exception)))
835 (home-page "https://metacpan.org/release/Carp-Clan")
836 (synopsis "Report errors from a \"clan\" of modules")
837 (description "This module allows errors from a clan (or family) of modules
838 to appear to originate from the caller of the clan. This is necessary in
839 cases where the clan modules are not classes derived from each other, and thus
840 the Carp.pm module doesn't help.")
841 (license (package-license perl))))
842
843 (define-public perl-cddb-get
844 (package
845 (name "perl-cddb-get")
846 (version "2.28")
847 (source (origin
848 (method url-fetch)
849 (uri (string-append
850 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
851 version ".tar.gz"))
852 (sha256
853 (base32
854 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
855 (build-system perl-build-system)
856 (home-page "https://metacpan.org/release/CDDB_get")
857 (synopsis "Read the CDDB entry for an audio CD in your drive")
858 (description "This module can retrieve information from the CDDB.")
859 ;; Either GPLv2 or the "Artistic" license.
860 (license (list gpl2 artistic2.0))))
861
862 (define-public perl-class-accessor
863 (package
864 (name "perl-class-accessor")
865 (version "0.51")
866 (source
867 (origin
868 (method url-fetch)
869 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
870 "Class-Accessor-" version ".tar.gz"))
871 (sha256
872 (base32
873 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
874 (build-system perl-build-system)
875 (native-inputs
876 `(("perl-sub-name" ,perl-sub-name)))
877 (propagated-inputs
878 `(("perl-base" ,perl-base)))
879 (home-page "https://metacpan.org/release/Class-Accessor")
880 (synopsis "Automated accessor generation")
881 (description "This module automagically generates accessors/mutators for
882 your class.")
883 (license (package-license perl))))
884
885 (define-public perl-class-accessor-chained
886 (package
887 (name "perl-class-accessor-chained")
888 (version "0.01")
889 (source
890 (origin
891 (method url-fetch)
892 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
893 "Class-Accessor-Chained-" version ".tar.gz"))
894 (sha256
895 (base32
896 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
897 (build-system perl-build-system)
898 (native-inputs
899 `(("perl-module-build" ,perl-module-build)))
900 (propagated-inputs
901 `(("perl-class-accessor" ,perl-class-accessor)))
902 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
903 (synopsis "Faster, but less expandable, chained accessors")
904 (description "A chained accessor is one that always returns the object
905 when called with parameters (to set), and the value of the field when called
906 with no arguments. This module subclasses Class::Accessor in order to provide
907 the same mk_accessors interface.")
908 (license (package-license perl))))
909
910 (define-public perl-class-accessor-grouped
911 (package
912 (name "perl-class-accessor-grouped")
913 (version "0.10012")
914 (source
915 (origin
916 (method url-fetch)
917 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
918 "Class-Accessor-Grouped-" version ".tar.gz"))
919 (sha256
920 (base32
921 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
922 (build-system perl-build-system)
923 (native-inputs
924 `(("perl-module-install" ,perl-module-install)
925 ("perl-test-exception" ,perl-test-exception)))
926 (propagated-inputs
927 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
928 ("perl-module-runtime" ,perl-module-runtime)
929 ("perl-sub-name" ,perl-sub-name)))
930 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
931 (synopsis "Build groups of accessors")
932 (description "This class lets you build groups of accessors that will call
933 different getters and setters.")
934 (license (package-license perl))))
935
936 (define-public perl-class-c3
937 (package
938 (name "perl-class-c3")
939 (version "0.27")
940 (source
941 (origin
942 (method url-fetch)
943 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
944 "Class-C3-" version ".tar.gz"))
945 (sha256
946 (base32
947 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
948 (build-system perl-build-system)
949 (propagated-inputs
950 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
951 (home-page "https://metacpan.org/release//Class-C3")
952 (synopsis "Pragma to use the C3 method resolution order algorithm")
953 (description "This is pragma to change Perl 5's standard method resolution
954 order from depth-first left-to-right (a.k.a - pre-order) to the more
955 sophisticated C3 method resolution order.")
956 (license (package-license perl))))
957
958 (define-public perl-class-c3-adopt-next
959 (package
960 (name "perl-class-c3-adopt-next")
961 (version "0.13")
962 (source
963 (origin
964 (method url-fetch)
965 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
966 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
967 (sha256
968 (base32
969 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
970 (build-system perl-build-system)
971 (native-inputs
972 `(("perl-test-exception" ,perl-test-exception)))
973 (propagated-inputs
974 `(("perl-list-moreutils" ,perl-list-moreutils)
975 ("perl-mro-compat" ,perl-mro-compat)))
976 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
977 (synopsis "Drop-in replacement for NEXT")
978 (description "This module is intended as a drop-in replacement for NEXT,
979 supporting the same interface, but using Class::C3 to do the hard work.")
980 (license (package-license perl))))
981
982 (define-public perl-class-c3-componentised
983 (package
984 (name "perl-class-c3-componentised")
985 (version "1.001000")
986 (source
987 (origin
988 (method url-fetch)
989 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
990 "Class-C3-Componentised-" version ".tar.gz"))
991 (sha256
992 (base32
993 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
994 (build-system perl-build-system)
995 (native-inputs
996 `(("perl-module-install" ,perl-module-install)
997 ("perl-test-exception" ,perl-test-exception)))
998 (propagated-inputs
999 `(("perl-class-c3" ,perl-class-c3)
1000 ("perl-class-inspector" ,perl-class-inspector)
1001 ("perl-mro-compat" ,perl-mro-compat)))
1002 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1003 (synopsis "Load mix-ins or components to your C3-based class")
1004 (description "This module will inject base classes to your module using
1005 the Class::C3 method resolution order.")
1006 (license (package-license perl))))
1007
1008 (define-public perl-class-data-inheritable
1009 (package
1010 (name "perl-class-data-inheritable")
1011 (version "0.08")
1012 (source
1013 (origin
1014 (method url-fetch)
1015 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1016 "Class-Data-Inheritable-" version ".tar.gz"))
1017 (sha256
1018 (base32
1019 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1020 (build-system perl-build-system)
1021 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1022 (synopsis "Inheritable, overridable class data")
1023 (description "Class::Data::Inheritable is for creating accessor/mutators
1024 to class data. That is, if you want to store something about your class as a
1025 whole (instead of about a single object). This data is then inherited by your
1026 subclasses and can be overridden.")
1027 (license (package-license perl))))
1028
1029 (define-public perl-class-date
1030 (package
1031 (name "perl-class-date")
1032 (version "1.1.15")
1033 (source
1034 (origin
1035 (method url-fetch)
1036 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1037 "Class-Date-" version ".tar.gz"))
1038 (sha256
1039 (base32
1040 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
1041 (build-system perl-build-system)
1042 (arguments `(#:tests? #f)) ;timezone tests in chroot
1043 (home-page "https://metacpan.org/release/Class-Date")
1044 (synopsis "Class for easy date and time manipulation")
1045 (description "This module provides a general-purpose date and datetime
1046 type for perl.")
1047 (license (package-license perl))))
1048
1049 (define-public perl-class-errorhandler
1050 (package
1051 (name "perl-class-errorhandler")
1052 (version "0.04")
1053 (source (origin
1054 (method url-fetch)
1055 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1056 "Class-ErrorHandler-" version ".tar.gz"))
1057 (sha256
1058 (base32
1059 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1060 (build-system perl-build-system)
1061 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1062 (synopsis "Base class for error handling")
1063 (description
1064 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1065 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1066 its two error-handling methods, error and errstr, to communicate error messages back
1067 to the calling program.")
1068 (license (package-license perl))))
1069
1070 (define-public perl-class-factory-util
1071 (package
1072 (name "perl-class-factory-util")
1073 (version "1.7")
1074 (source
1075 (origin
1076 (method url-fetch)
1077 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1078 "Class-Factory-Util-" version ".tar.gz"))
1079 (sha256
1080 (base32
1081 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1082 (build-system perl-build-system)
1083 (native-inputs `(("perl-module-build" ,perl-module-build)))
1084 (home-page "https://metacpan.org/release/Class-Factory-Util")
1085 (synopsis "Utility methods for factory classes")
1086 (description "This module exports methods useful for factory classes.")
1087 (license (package-license perl))))
1088
1089 (define-public perl-class-inspector
1090 (package
1091 (name "perl-class-inspector")
1092 (version "1.32")
1093 (source
1094 (origin
1095 (method url-fetch)
1096 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1097 "Class-Inspector-" version ".tar.gz"))
1098 (sha256
1099 (base32
1100 "0d85rihxahdvhj8cysqrgg0kbmcqghz5hgy41dbkxr1qaf5xrynf"))))
1101 (build-system perl-build-system)
1102 (home-page "https://metacpan.org/release/Class-Inspector")
1103 (synopsis "Get information about a class and its structure")
1104 (description "Class::Inspector allows you to get information about a
1105 loaded class.")
1106 (license (package-license perl))))
1107
1108 (define-public perl-class-load
1109 (package
1110 (name "perl-class-load")
1111 (version "0.24")
1112 (source
1113 (origin
1114 (method url-fetch)
1115 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1116 "Class-Load-" version ".tar.gz"))
1117 (sha256
1118 (base32
1119 "0dnacm959vi5819h6cdl5qpi89fr81p6smbsqx7m6in18vd87f8b"))))
1120 (build-system perl-build-system)
1121 (native-inputs
1122 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1123 ("perl-test-fatal" ,perl-test-fatal)
1124 ("perl-test-needs" ,perl-test-needs)
1125 ("perl-test-without-module" ,perl-test-without-module)))
1126 (propagated-inputs
1127 `(("perl-package-stash" ,perl-package-stash)
1128 ("perl-data-optlist" ,perl-data-optlist)
1129 ("perl-namespace-clean" ,perl-namespace-clean)
1130 ("perl-module-runtime" ,perl-module-runtime)
1131 ("perl-module-implementation" ,perl-module-implementation)))
1132 (home-page "https://metacpan.org/release/Class-Load")
1133 (synopsis "Working (require \"Class::Name\") and more")
1134 (description "\"require EXPR\" only accepts Class/Name.pm style module
1135 names, not Class::Name. For that, this module provides \"load_class
1136 'Class::Name'\".")
1137 (license (package-license perl))))
1138
1139 (define-public perl-class-load-xs
1140 (package
1141 (name "perl-class-load-xs")
1142 (version "0.10")
1143 (source
1144 (origin
1145 (method url-fetch)
1146 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1147 "Class-Load-XS-" version ".tar.gz"))
1148 (sha256
1149 (base32
1150 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1151 (build-system perl-build-system)
1152 (native-inputs
1153 `(("perl-test-fatal" ,perl-test-fatal)
1154 ("perl-test-needs" ,perl-test-needs)
1155 ("perl-test-without-module" ,perl-test-without-module)))
1156 (inputs `(("perl-class-load" ,perl-class-load)))
1157 (home-page "https://metacpan.org/release/Class-Load-XS")
1158 (synopsis "XS implementation of parts of Class::Load")
1159 (description "This module provides an XS implementation for portions of
1160 Class::Load.")
1161 (license artistic2.0)))
1162
1163 (define-public perl-class-methodmaker
1164 (package
1165 (name "perl-class-methodmaker")
1166 (version "2.24")
1167 (source
1168 (origin
1169 (method url-fetch)
1170 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1171 "class-methodmaker/Class-MethodMaker-"
1172 version ".tar.gz"))
1173 (sha256
1174 (base32
1175 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1176 (build-system perl-build-system)
1177 (home-page "https://metacpan.org/release/Class-MethodMaker")
1178 (synopsis "Create generic methods for OO Perl")
1179 (description "This module solves the problem of having to continually
1180 write accessor methods for your objects that perform standard tasks.")
1181 (license (package-license perl))))
1182
1183 (define-public perl-class-method-modifiers
1184 (package
1185 (name "perl-class-method-modifiers")
1186 (version "2.12")
1187 (source
1188 (origin
1189 (method url-fetch)
1190 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1191 "Class-Method-Modifiers-" version ".tar.gz"))
1192 (sha256
1193 (base32
1194 "1j3swa212wh14dq5r6zjarm2lzpx6mrdfplpjy65px8b09ri0k74"))))
1195 (build-system perl-build-system)
1196 (native-inputs
1197 `(("perl-test-fatal" ,perl-test-fatal)
1198 ("perl-test-requires" ,perl-test-requires)))
1199 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1200 (synopsis "Moose-like method modifiers")
1201 (description "Class::Method::Modifiers provides three modifiers: 'before',
1202 'around', and 'after'. 'before' and 'after' are run just before and after the
1203 method they modify, but can not really affect that original method. 'around'
1204 is run in place of the original method, with a hook to easily call that
1205 original method.")
1206 (license (package-license perl))))
1207
1208 (define-public perl-class-singleton
1209 (package
1210 (name "perl-class-singleton")
1211 (version "1.5")
1212 (source
1213 (origin
1214 (method url-fetch)
1215 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1216 "Class-Singleton-" version ".tar.gz"))
1217 (sha256
1218 (base32
1219 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1220 (build-system perl-build-system)
1221 (home-page "https://metacpan.org/release/Class-Singleton")
1222 (synopsis "Implementation of a singleton class for Perl")
1223 (description "This module implements a Singleton class from which other
1224 classes can be derived. By itself, the Class::Singleton module does very
1225 little other than manage the instantiation of a single object.")
1226 (license (package-license perl))))
1227
1228 (define-public perl-class-tiny
1229 (package
1230 (name "perl-class-tiny")
1231 (version "1.006")
1232 (source
1233 (origin
1234 (method url-fetch)
1235 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1236 "Class-Tiny-" version ".tar.gz"))
1237 (sha256
1238 (base32
1239 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1240 (build-system perl-build-system)
1241 (home-page "https://metacpan.org/release/Class-Tiny")
1242 (synopsis "Minimalist class construction")
1243 (description "This module offers a minimalist class construction kit. It
1244 uses no non-core modules for any recent Perl.")
1245 (license asl2.0)))
1246
1247 (define-public perl-class-unload
1248 (package
1249 (name "perl-class-unload")
1250 (version "0.08")
1251 (source
1252 (origin
1253 (method url-fetch)
1254 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1255 "Class-Unload-" version ".tar.gz"))
1256 (sha256
1257 (base32
1258 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
1259 (build-system perl-build-system)
1260 (propagated-inputs
1261 `(("perl-class-inspector" ,perl-class-inspector)))
1262 (home-page "https://metacpan.org/release/Class-Unload")
1263 (synopsis "Unload a class")
1264 (description "Class:Unload unloads a given class by clearing out its
1265 symbol table and removing it from %INC.")
1266 (license (package-license perl))))
1267
1268 (define-public perl-class-xsaccessor
1269 (package
1270 (name "perl-class-xsaccessor")
1271 (version "1.19")
1272 (source
1273 (origin
1274 (method url-fetch)
1275 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1276 "Class-XSAccessor-" version ".tar.gz"))
1277 (sha256
1278 (base32
1279 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1280 (build-system perl-build-system)
1281 (home-page "https://metacpan.org/release/Class-XSAccessor")
1282 (synopsis "Generate fast XS accessors without runtime compilation")
1283 (description "Class::XSAccessor implements fast read, write, and
1284 read/write accessors in XS. Additionally, it can provide predicates such as
1285 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1286 object. It only works with objects that are implemented as ordinary hashes.
1287 Class::XSAccessor::Array implements the same interface for objects that use
1288 arrays for their internal representation.")
1289 (license (package-license perl))))
1290
1291 (define-public perl-clone
1292 (package
1293 (name "perl-clone")
1294 (version "0.39")
1295 (source (origin
1296 (method url-fetch)
1297 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
1298 "Clone-" version ".tar.gz"))
1299 (sha256
1300 (base32
1301 "0bgsidb96gxzf3zhy6v1ksj1c200vxbwykk32fqm1mj97rl4dc5c"))))
1302 (build-system perl-build-system)
1303 (synopsis "Recursively copy Perl datatypes")
1304 (description
1305 "This module provides a clone() method which makes recursive copies of
1306 nested hash, array, scalar and reference types, including tied variables and
1307 objects.")
1308 (home-page "https://metacpan.org/release/Clone")
1309 (license (package-license perl))))
1310
1311 (define-public perl-clone-pp
1312 (package
1313 (name "perl-clone-pp")
1314 (version "1.07")
1315 (source
1316 (origin
1317 (method url-fetch)
1318 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1319 version ".tar.gz"))
1320 (sha256
1321 (base32
1322 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1323 (build-system perl-build-system)
1324 (home-page "https://metacpan.org/release/Clone-PP")
1325 (synopsis "Recursively copy Perl datatypes")
1326 (description "This module provides a general-purpose @code{clone} function
1327 to make deep copies of Perl data structures. It calls itself recursively to
1328 copy nested hash, array, scalar and reference types, including tied variables
1329 and objects.")
1330 (license (package-license perl))))
1331
1332 (define-public perl-common-sense
1333 (package
1334 (name "perl-common-sense")
1335 (version "3.74")
1336 (source
1337 (origin
1338 (method url-fetch)
1339 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1340 "common-sense-" version ".tar.gz"))
1341 (sha256
1342 (base32
1343 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1344 (build-system perl-build-system)
1345 (home-page "https://metacpan.org/release/common-sense")
1346 (synopsis "Sane defaults for Perl programs")
1347 (description "This module implements some sane defaults for Perl programs,
1348 as defined by two typical specimens of Perl coders.")
1349 (license (package-license perl))))
1350
1351 (define-public perl-config-any
1352 (package
1353 (name "perl-config-any")
1354 (version "0.32")
1355 (source
1356 (origin
1357 (method url-fetch)
1358 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1359 "Config-Any-" version ".tar.gz"))
1360 (sha256
1361 (base32
1362 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1363 (build-system perl-build-system)
1364 (propagated-inputs
1365 `(("perl-module-pluggable" ,perl-module-pluggable)))
1366 (home-page "https://metacpan.org/release/Config-Any")
1367 (synopsis "Load configuration from different file formats")
1368 (description "Config::Any provides a facility for Perl applications and
1369 libraries to load configuration data from multiple different file formats. It
1370 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1371 (license (package-license perl))))
1372
1373 (define-public perl-config-autoconf
1374 (package
1375 (name "perl-config-autoconf")
1376 (version "0.317")
1377 (source
1378 (origin
1379 (method url-fetch)
1380 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1381 "Config-AutoConf-" version ".tar.gz"))
1382 (sha256
1383 (base32
1384 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1385 (build-system perl-build-system)
1386 (propagated-inputs
1387 `(("perl-capture-tiny" ,perl-capture-tiny)))
1388 (home-page "https://metacpan.org/release/Config-AutoConf")
1389 (synopsis "Module to implement some AutoConf macros in Perl")
1390 (description "Config::AutoConf is intended to provide the same
1391 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1392 (license (package-license perl))))
1393
1394 (define-public perl-config-general
1395 (package
1396 (name "perl-config-general")
1397 (version "2.56")
1398 (source
1399 (origin
1400 (method url-fetch)
1401 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1402 "Config-General-" version ".tar.gz"))
1403 (sha256
1404 (base32
1405 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1406 (build-system perl-build-system)
1407 (home-page "https://metacpan.org/release/Config-General")
1408 (synopsis "Generic Config Module")
1409 (description "This module opens a config file and parses its contents for
1410 you. The format of config files supported by Config::General is inspired by
1411 the well known Apache config format and is 100% compatible with Apache
1412 configs, but you can also just use simple name/value pairs in your config
1413 files. In addition to the capabilities of an Apache config file it supports
1414 some enhancements such as here-documents, C-style comments, and multiline
1415 options.")
1416 (license (package-license perl))))
1417
1418 (define-public perl-config-ini
1419 (package
1420 (name "perl-config-ini")
1421 (version "0.025")
1422 (source (origin
1423 (method url-fetch)
1424 (uri (string-append
1425 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1426 version ".tar.gz"))
1427 (sha256
1428 (base32
1429 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1430 (build-system perl-build-system)
1431 (inputs
1432 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1433 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1434 ("perl-sub-exporter" ,perl-sub-exporter)))
1435 (home-page "https://metacpan.org/release/Config-INI")
1436 (synopsis "Simple .ini-file format reader and writer")
1437 (description "@code{Config::INI} is a module that facilates the reading
1438 and writing of @code{.ini}-style configuration files.")
1439 (license (package-license perl))))
1440
1441 (define-public perl-context-preserve
1442 (package
1443 (name "perl-context-preserve")
1444 (version "0.03")
1445 (source
1446 (origin
1447 (method url-fetch)
1448 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1449 "Context-Preserve-" version ".tar.gz"))
1450 (sha256
1451 (base32
1452 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1453 (build-system perl-build-system)
1454 (native-inputs
1455 `(("perl-test-exception" ,perl-test-exception)
1456 ("perl-test-simple" ,perl-test-simple)))
1457 (home-page "https://metacpan.org/release/Context-Preserve")
1458 (synopsis "Preserve context during subroutine call")
1459 (description "This module runs code after a subroutine call, preserving
1460 the context the subroutine would have seen if it were the last statement in
1461 the caller.")
1462 (license (package-license perl))))
1463
1464 (define-public perl-convert-binhex
1465 (package
1466 (name "perl-convert-binhex")
1467 (version "1.125")
1468 (source
1469 (origin
1470 (method url-fetch)
1471 (uri (string-append
1472 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1473 version
1474 ".tar.gz"))
1475 (sha256
1476 (base32
1477 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1478 (build-system perl-build-system)
1479 (native-inputs
1480 `(("perl-file-slurp" ,perl-file-slurp)
1481 ("perl-test-most" ,perl-test-most)))
1482 (home-page
1483 "https://metacpan.org/release/Convert-BinHex")
1484 (synopsis "Extract data from Macintosh BinHex files")
1485 (description
1486 "BinHex is a format for transporting files safely through electronic
1487 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1488 provides a means of converting those data streams back into into binary
1489 data.")
1490 (license perl-license)))
1491
1492 (define-public perl-cpan-changes
1493 (package
1494 (name "perl-cpan-changes")
1495 (version "0.400002")
1496 (source
1497 (origin
1498 (method url-fetch)
1499 (uri (string-append
1500 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1501 version ".tar.gz"))
1502 (sha256
1503 (base32
1504 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1505 (build-system perl-build-system)
1506 (home-page "https://metacpan.org/release/CPAN-Changes")
1507 (synopsis "Read and write @file{Changes} files")
1508 (description
1509 "@code{CPAN::Changes} helps users programmatically read and write
1510 @file{Changes} files that conform to a common specification.")
1511 (license perl-license)))
1512
1513 (define-public perl-cpan-meta-check
1514 (package
1515 (name "perl-cpan-meta-check")
1516 (version "0.014")
1517 (source
1518 (origin
1519 (method url-fetch)
1520 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1521 "CPAN-Meta-Check-" version ".tar.gz"))
1522 (sha256
1523 (base32
1524 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1525 (build-system perl-build-system)
1526 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1527 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1528 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1529 (synopsis "Verify requirements in a CPAN::Meta object")
1530 (description "This module verifies if requirements described in a
1531 CPAN::Meta object are present.")
1532 (license (package-license perl))))
1533
1534 (define-public perl-cpanel-json-xs
1535 (package
1536 (name "perl-cpanel-json-xs")
1537 (version "4.08")
1538 (source
1539 (origin
1540 (method url-fetch)
1541 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1542 "Cpanel-JSON-XS-" version ".tar.gz"))
1543 (sha256
1544 (base32
1545 "0bbw9sk3kgfwkg9lw3vf59g4jjvr69vv09sinndl2nlbd5dlgh9b"))))
1546 (build-system perl-build-system)
1547 (propagated-inputs
1548 `(("perl-common-sense" ,perl-common-sense)))
1549 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1550 (synopsis "JSON::XS for Cpanel")
1551 (description "This module converts Perl data structures to JSON and vice
1552 versa.")
1553 (license (package-license perl))))
1554
1555 (define-public perl-crypt-randpasswd
1556 (package
1557 (name "perl-crypt-randpasswd")
1558 (version "0.06")
1559 (source
1560 (origin
1561 (method url-fetch)
1562 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1563 "Crypt-RandPasswd-" version ".tar.gz"))
1564 (sha256
1565 (base32
1566 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1567 (build-system perl-build-system)
1568 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
1569 (synopsis "Random password generator")
1570 (description "Crypt::RandPasswd provides three functions that can be used
1571 to generate random passwords, constructed from words, letters, or characters.
1572 This code is a Perl implementation of the Automated Password Generator
1573 standard, like the program described in \"A Random Word Generator For
1574 Pronounceable Passwords\". This code is a re-engineering of the program
1575 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1576 Password Generator\".")
1577 (license (package-license perl))))
1578
1579 (define-public perl-crypt-rc4
1580 (package
1581 (name "perl-crypt-rc4")
1582 (version "2.02")
1583 (source
1584 (origin
1585 (method url-fetch)
1586 (uri (string-append
1587 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
1588 version
1589 ".tar.gz"))
1590 (sha256
1591 (base32
1592 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
1593 (build-system perl-build-system)
1594 (home-page "https://metacpan.org/release//Crypt-RC4")
1595 (synopsis "Perl implementation of the RC4 encryption algorithm")
1596 (description "A pure Perl implementation of the RC4 algorithm.")
1597 (license (package-license perl))))
1598
1599 (define-public perl-cwd-guard
1600 (package
1601 (name "perl-cwd-guard")
1602 (version "0.05")
1603 (source (origin
1604 (method url-fetch)
1605 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
1606 "Cwd-Guard-" version ".tar.gz"))
1607 (sha256
1608 (base32
1609 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
1610 (build-system perl-build-system)
1611 (native-inputs
1612 `(("perl-module-build" ,perl-module-build)
1613 ("perl-test-requires" ,perl-test-requires)))
1614 (home-page "https://metacpan.org/release/Cwd-Guard")
1615 (synopsis "Temporarily change working directory")
1616 (description
1617 "@code{Cwd::Guard} changes the current directory using a limited scope.
1618 It returns to the previous working directory when the object is destroyed.")
1619 (license (package-license perl))))
1620
1621 (define-public perl-czplib
1622 (package
1623 (name "perl-czplib")
1624 (version "1.0.5")
1625 (source
1626 (origin
1627 (method url-fetch)
1628 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1629 version ".tgz"))
1630 (sha256
1631 (base32
1632 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1633 (modules '((guix build utils)))
1634 (snippet
1635 '(begin
1636 ;; Remove .git directory
1637 (delete-file-recursively ".git")
1638 #t))))
1639 (build-system perl-build-system)
1640 (arguments
1641 `(#:phases
1642 (modify-phases %standard-phases
1643 (delete 'configure)
1644 (delete 'build)
1645 (replace
1646 'install
1647 (lambda* (#:key outputs #:allow-other-keys)
1648 (copy-recursively "."
1649 (string-append (assoc-ref outputs "out")
1650 "/lib/perl5/site_perl/"
1651 ,(package-version perl)))
1652 #t)))))
1653 (home-page "https://sourceforge.net/projects/czplib/")
1654 (synopsis "Library for genomic analysis")
1655 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1656 functions and data structures for processing and analysing genomic and
1657 bioinformatics data.")
1658 (license gpl3+)))
1659
1660 (define-public perl-data
1661 (package
1662 (name "perl-data")
1663 (version "0.002009")
1664 (source
1665 (origin
1666 (method url-fetch)
1667 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
1668 "Data-Perl-" version ".tar.gz"))
1669 (sha256
1670 (base32
1671 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1672 (build-system perl-build-system)
1673 (native-inputs
1674 `(("perl-test-deep" ,perl-test-deep)
1675 ("perl-test-output" ,perl-test-output)
1676 ("perl-test-fatal" ,perl-test-fatal)))
1677 (inputs
1678 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
1679 ("perl-list-moreutils" ,perl-list-moreutils)
1680 ("perl-module-runtime" ,perl-module-runtime)
1681 ("perl-role-tiny" ,perl-role-tiny)
1682 ("perl-strictures" ,perl-strictures)))
1683 (home-page "https://metacpan.org/release/Data-Perl")
1684 (synopsis "Base classes wrapping fundamental Perl data types")
1685 (description "Collection of classes that wrap fundamental data types that
1686 exist in Perl. These classes and methods as they exist today are an attempt
1687 to mirror functionality provided by Moose's Native Traits. One important
1688 thing to note is all classes currently do no validation on constructor
1689 input.")
1690 (license (package-license perl))))
1691
1692 (define-public perl-data-compare
1693 (package
1694 (name "perl-data-compare")
1695 (version "1.25")
1696 (source
1697 (origin
1698 (method url-fetch)
1699 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
1700 "Data-Compare-" version ".tar.gz"))
1701 (sha256
1702 (base32
1703 "0wzasidg9yjcfsi2gdiaw6726ikqda7n24n0v2ngpaazakdkcjqx"))))
1704 (build-system perl-build-system)
1705 (propagated-inputs
1706 `(("perl-file-find-rule" ,perl-file-find-rule)))
1707 (home-page "https://metacpan.org/release/Data-Compare")
1708 (synopsis "Compare Perl data structures")
1709 (description "This module compares arbitrary data structures to see if
1710 they are copies of each other.")
1711 (license (package-license perl))))
1712
1713 (define-public perl-data-uniqid
1714 (package
1715 (name "perl-data-uniqid")
1716 (version "0.12")
1717 (source
1718 (origin
1719 (method url-fetch)
1720 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
1721 version ".tar.gz"))
1722 (sha256
1723 (base32
1724 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
1725 (build-system perl-build-system)
1726 (home-page "https://metacpan.org/release/Data-Uniqid")
1727 (synopsis "Perl extension for generating unique identifiers")
1728 (description "@code{Data::Uniqid} provides three simple routines for
1729 generating unique ids. These ids are coded with a Base62 systen to make them
1730 short and handy (e.g. to use it as part of a URL).")
1731 (license (package-license perl))))
1732
1733 (define-public perl-data-dump
1734 (package
1735 (name "perl-data-dump")
1736 (version "1.23")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1741 "Data-Dump-" version ".tar.gz"))
1742 (sha256
1743 (base32
1744 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
1745 (build-system perl-build-system)
1746 (home-page "https://metacpan.org/release/Data-Dump")
1747 (synopsis "Pretty printing of data structures")
1748 (description "This module provide functions that takes a list of values as
1749 their argument and produces a string as its result. The string contains Perl
1750 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1751 (license (package-license perl))))
1752
1753 (define-public perl-data-dumper
1754 (package
1755 (name "perl-data-dumper")
1756 (version "2.173")
1757 (source
1758 (origin
1759 (method url-fetch)
1760 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
1761 "Data-Dumper-" version ".tar.gz"))
1762 (sha256
1763 (base32
1764 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
1765 (build-system perl-build-system)
1766 (home-page "https://metacpan.org/release/Data-Dumper")
1767 (synopsis "Convert data structures to strings")
1768 (description "Given a list of scalars or reference variables,
1769 @code{Data::Dumper} writes out their contents in Perl syntax. The references
1770 can also be objects. The content of each variable is output in a single Perl
1771 statement. It handles self-referential structures correctly.")
1772 (license perl-license)))
1773
1774 (define-public perl-data-dumper-concise
1775 (package
1776 (name "perl-data-dumper-concise")
1777 (version "2.023")
1778 (source
1779 (origin
1780 (method url-fetch)
1781 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1782 "Data-Dumper-Concise-" version ".tar.gz"))
1783 (sha256
1784 (base32
1785 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
1786 (build-system perl-build-system)
1787 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
1788 (synopsis "Concise data dumper")
1789 (description "Data::Dumper::Concise provides a dumper with Less
1790 indentation and newlines plus sub deparsing.")
1791 (license (package-license perl))))
1792
1793 (define-public perl-data-optlist
1794 (package
1795 (name "perl-data-optlist")
1796 (version "0.110")
1797 (source
1798 (origin
1799 (method url-fetch)
1800 (uri (string-append
1801 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1802 version ".tar.gz"))
1803 (sha256
1804 (base32
1805 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
1806 (build-system perl-build-system)
1807 (propagated-inputs
1808 `(("perl-sub-install" ,perl-sub-install)
1809 ("perl-params-util" ,perl-params-util)))
1810 (home-page "https://metacpan.org/release/Data-OptList")
1811 (synopsis "Parse and validate simple name/value option pairs")
1812 (description
1813 "Data::OptList provides a simple syntax for name/value option pairs.")
1814 (license (package-license perl))))
1815
1816 (define-public perl-data-page
1817 (package
1818 (name "perl-data-page")
1819 (version "2.02")
1820 (source
1821 (origin
1822 (method url-fetch)
1823 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1824 "Data-Page-" version ".tar.gz"))
1825 (sha256
1826 (base32
1827 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1828 (build-system perl-build-system)
1829 (native-inputs
1830 `(("perl-module-build" ,perl-module-build)
1831 ("perl-test-exception" ,perl-test-exception)))
1832 (propagated-inputs
1833 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1834 (home-page "https://metacpan.org/release/Data-Page")
1835 (synopsis "Help when paging through sets of results")
1836 (description "When searching through large amounts of data, it is often
1837 the case that a result set is returned that is larger than we want to display
1838 on one page. This results in wanting to page through various pages of data.
1839 The maths behind this is unfortunately fiddly, hence this module.")
1840 (license (package-license perl))))
1841
1842 (define-public perl-data-perl
1843 (package
1844 (name "perl-data-perl")
1845 (version "0.002009")
1846 (source
1847 (origin
1848 (method url-fetch)
1849 (uri (string-append
1850 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
1851 version
1852 ".tar.gz"))
1853 (sha256
1854 (base32
1855 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
1856 (build-system perl-build-system)
1857 (native-inputs
1858 `(("perl-test-deep" ,perl-test-deep)
1859 ("perl-test-fatal" ,perl-test-fatal)
1860 ("perl-test-output" ,perl-test-output)))
1861 (inputs
1862 `(("perl-class-method-modifiers"
1863 ,perl-class-method-modifiers)
1864 ("perl-module-runtime" ,perl-module-runtime)
1865 ("perl-role-tiny" ,perl-role-tiny)
1866 ("perl-strictures" ,perl-strictures)))
1867 (propagated-inputs
1868 `(("perl-list-moreutils" ,perl-list-moreutils)))
1869 (home-page
1870 "https://metacpan.org/release/Data-Perl")
1871 (synopsis "Base classes wrapping fundamental Perl data types")
1872 (description
1873 "@code{Data::Perl} is a container class for the following classes:
1874 @itemize
1875 @item @code{Data::Perl::Collection::Hash}
1876 @item @code{Data::Perl::Collection::Array}
1877 @item @code{Data::Perl::String}
1878 @item @code{Data::Perl::Number}
1879 @item @code{Data::Perl::Counter}
1880 @item @code{Data::Perl::Bool}
1881 @item @code{Data::Perl::Code}
1882 @end itemize")
1883 (license perl-license)))
1884
1885 (define-public perl-data-printer
1886 (package
1887 (name "perl-data-printer")
1888 (version "0.40")
1889 (source
1890 (origin
1891 (method url-fetch)
1892 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
1893 version ".tar.gz"))
1894 (sha256
1895 (base32
1896 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
1897 (build-system perl-build-system)
1898 (propagated-inputs
1899 `(("perl-clone-pp" ,perl-clone-pp)
1900 ("perl-file-homedir" ,perl-file-homedir)
1901 ("perl-package-stash" ,perl-package-stash)
1902 ("perl-sort-naturally" ,perl-sort-naturally)))
1903 (home-page "https://metacpan.org/release/Data-Printer")
1904 (synopsis "Colored pretty-print of Perl data structures and objects")
1905 (description "Display Perl variables and objects on screen, properly
1906 formatted (to be inspected by a human).")
1907 (license (package-license perl))))
1908
1909 (define-public perl-data-record
1910 (package
1911 (name "perl-data-record")
1912 (version "0.02")
1913 (source
1914 (origin
1915 (method url-fetch)
1916 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
1917 "Data-Record-" version ".tar.gz"))
1918 (sha256
1919 (base32
1920 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
1921 (build-system perl-build-system)
1922 (native-inputs
1923 `(("perl-test-exception" ,perl-test-exception)
1924 ("perl-module-build" ,perl-module-build)))
1925 (propagated-inputs
1926 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
1927 (home-page "https://metacpan.org/release/Data-Record")
1928 (synopsis "Conditionally split data into records")
1929 (description "This Perl module allows you to split data into records by
1930 not only specifying what you wish to split the data on, but also by specifying
1931 an \"unless\" regular expression. If the text in question matches the
1932 \"unless\" regex, it will not be split there. This allows us to do things
1933 like split on newlines unless newlines are embedded in quotes.")
1934 (license (package-license perl))))
1935
1936 (define-public perl-data-section
1937 (package
1938 (name "perl-data-section")
1939 (version "0.200007")
1940 (source
1941 (origin
1942 (method url-fetch)
1943 (uri (string-append
1944 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
1945 version
1946 ".tar.gz"))
1947 (sha256
1948 (base32
1949 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
1950 (build-system perl-build-system)
1951 (native-inputs
1952 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
1953 (propagated-inputs
1954 `(("perl-mro-compat" ,perl-mro-compat)
1955 ("perl-sub-exporter" ,perl-sub-exporter)))
1956 (home-page "https://metacpan.org/release/Data-Section")
1957 (synopsis "Read multiple hunks of data out of your DATA section")
1958 (description "This package provides a Perl library to read multiple hunks
1959 of data out of your DATA section.")
1960 (license (package-license perl))))
1961
1962 (define-public perl-data-stag
1963 (package
1964 (name "perl-data-stag")
1965 (version "0.14")
1966 (source
1967 (origin
1968 (method url-fetch)
1969 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1970 "Data-Stag-" version ".tar.gz"))
1971 (sha256
1972 (base32
1973 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1974 (build-system perl-build-system)
1975 (propagated-inputs
1976 `(("perl-io-string" ,perl-io-string)))
1977 (home-page "https://metacpan.org/release/Data-Stag")
1978 (synopsis "Structured tags datastructures")
1979 (description
1980 "This module is for manipulating data as hierarchical tag/value
1981 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
1982 be represented as nested arrays, which have the advantage of being native to
1983 Perl.")
1984 (license (package-license perl))))
1985
1986 (define-public perl-data-stream-bulk
1987 (package
1988 (name "perl-data-stream-bulk")
1989 (version "0.11")
1990 (source
1991 (origin
1992 (method url-fetch)
1993 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1994 "Data-Stream-Bulk-" version ".tar.gz"))
1995 (sha256
1996 (base32
1997 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1998 (build-system perl-build-system)
1999 (native-inputs
2000 `(("perl-test-requires" ,perl-test-requires)))
2001 (propagated-inputs
2002 `(("perl-moose" ,perl-moose)
2003 ("perl-namespace-clean" ,perl-namespace-clean)
2004 ("perl-path-class" ,perl-path-class)
2005 ("perl-sub-exporter" ,perl-sub-exporter)))
2006 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2007 (synopsis "N at a time iteration API")
2008 (description "This module tries to find middle ground between one at a
2009 time and all at once processing of data sets. The purpose of this module is
2010 to avoid the overhead of implementing an iterative api when this isn't
2011 necessary, without breaking forward compatibility in case that becomes
2012 necessary later on.")
2013 (license (package-license perl))))
2014
2015 (define-public perl-data-tumbler
2016 (package
2017 (name "perl-data-tumbler")
2018 (version "0.008")
2019 (source
2020 (origin
2021 (method url-fetch)
2022 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2023 "Data-Tumbler-" version ".tar.gz"))
2024 (sha256
2025 (base32
2026 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
2027 (build-system perl-build-system)
2028 (native-inputs
2029 `(("perl-test-most" ,perl-test-most)))
2030 (propagated-inputs
2031 `(("perl-file-homedir" ,perl-file-homedir)))
2032 (home-page "https://metacpan.org/release/Data-Tumbler")
2033 (synopsis "Dynamic generation of nested combinations of variants")
2034 (description "Data::Tumbler - Dynamic generation of nested combinations of
2035 variants.")
2036 (license (package-license perl))))
2037
2038 (define-public perl-data-visitor
2039 (package
2040 (name "perl-data-visitor")
2041 (version "0.30")
2042 (source
2043 (origin
2044 (method url-fetch)
2045 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2046 "Data-Visitor-" version ".tar.gz"))
2047 (sha256
2048 (base32
2049 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2050 (build-system perl-build-system)
2051 (native-inputs
2052 `(("perl-test-requires" ,perl-test-requires)))
2053 (propagated-inputs
2054 `(("perl-class-load" ,perl-class-load)
2055 ("perl-moose" ,perl-moose)
2056 ("perl-namespace-clean" ,perl-namespace-clean)
2057 ("perl-task-weaken" ,perl-task-weaken)
2058 ("perl-tie-toobject" ,perl-tie-toobject)))
2059 (home-page "https://metacpan.org/release/Data-Visitor")
2060 (synopsis "Visitor style traversal of Perl data structures")
2061 (description "This module is a simple visitor implementation for Perl
2062 values. It has a main dispatcher method, visit, which takes a single perl
2063 value and then calls the methods appropriate for that value. It can
2064 recursively map (cloning as necessary) or just traverse most structures, with
2065 support for per-object behavior, circular structures, visiting tied
2066 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2067 (license (package-license perl))))
2068
2069 (define-public perl-date-calc
2070 (package
2071 (name "perl-date-calc")
2072 (version "6.4")
2073 (source
2074 (origin
2075 (method url-fetch)
2076 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2077 "Date-Calc-" version ".tar.gz"))
2078 (sha256
2079 (base32
2080 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2081 (build-system perl-build-system)
2082 (propagated-inputs
2083 `(("perl-bit-vector" ,perl-bit-vector)
2084 ("perl-carp-clan" ,perl-carp-clan)))
2085 (home-page "https://metacpan.org/release/Date-Calc")
2086 (synopsis "Gregorian calendar date calculations")
2087 (description "This package consists of a Perl module for date calculations
2088 based on the Gregorian calendar, thereby complying with all relevant norms and
2089 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2090 applicable).")
2091 (license (package-license perl))))
2092
2093 (define-public perl-date-calc-xs
2094 (package
2095 (name "perl-date-calc-xs")
2096 (version "6.4")
2097 (source
2098 (origin
2099 (method url-fetch)
2100 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2101 "Date-Calc-XS-" version ".tar.gz"))
2102 (sha256
2103 (base32
2104 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2105 (build-system perl-build-system)
2106 (propagated-inputs
2107 `(("perl-bit-vector" ,perl-bit-vector)
2108 ("perl-carp-clan" ,perl-carp-clan)
2109 ("perl-date-calc" ,perl-date-calc)))
2110 (home-page "https://metacpan.org/release/Date-Calc-XS")
2111 (synopsis "XS wrapper for Date::Calc")
2112 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2113 Date::Calc.")
2114 (license (list (package-license perl) lgpl2.0+))))
2115
2116 (define-public perl-date-manip
2117 (package
2118 (name "perl-date-manip")
2119 (version "6.70")
2120 (source
2121 (origin
2122 (method url-fetch)
2123 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
2124 "Date-Manip-" version ".tar.gz"))
2125 (sha256
2126 (base32
2127 "0r4k4ypb09xwhvq6das0vpx2c0xbhhhx83knq6jfpf8m55h8qi9r"))))
2128 (build-system perl-build-system)
2129 (native-inputs `(("perl-module-build" ,perl-module-build)))
2130 (arguments
2131 ;; Tests would require tzdata for timezone information, but tzdata is in
2132 ;; (gnu packages base) which would create a circular dependency. TODO:
2133 ;; Maybe put this package elsewhere so we can turn on tests.
2134 '(#:tests? #f))
2135 (home-page "https://metacpan.org/release/Date-Manip")
2136 (synopsis "Date manipulation routines")
2137 (description "Date::Manip is a series of modules for common date/time
2138 operations, such as comparing two times, determining a date a given amount of
2139 time from another, or parsing international times.")
2140 (license (package-license perl))))
2141
2142 (define-public perl-date-simple
2143 (package
2144 (name "perl-date-simple")
2145 (version "3.03")
2146 (source
2147 (origin
2148 (method url-fetch)
2149 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2150 "Date-Simple-" version ".tar.gz"))
2151 (sha256
2152 (base32
2153 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2154 (build-system perl-build-system)
2155 (home-page "https://metacpan.org/release/Date-Simple")
2156 (synopsis "Simple date handling")
2157 (description "Dates are complex enough without times and timezones. This
2158 module may be used to create simple date objects. It handles validation,
2159 interval arithmetic, and day-of-week calculation. It does not deal with
2160 hours, minutes, seconds, and time zones.")
2161 ;; Can be used with either license.
2162 (license (list (package-license perl) gpl2+))))
2163
2164 (define-public perl-datetime
2165 (package
2166 (name "perl-datetime")
2167 (version "1.50")
2168 (source
2169 (origin
2170 (method url-fetch)
2171 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2172 "DateTime-" version ".tar.gz"))
2173 (sha256
2174 (base32
2175 "165iqk1xvhs5j0kzsipa7aqycx3h37wqsl2r4jl104yqvmqhqszd"))))
2176 (build-system perl-build-system)
2177 (native-inputs
2178 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2179 ("perl-module-build" ,perl-module-build)
2180 ("perl-test-fatal" ,perl-test-fatal)
2181 ("perl-test-warnings" ,perl-test-warnings)))
2182 (propagated-inputs
2183 `(("perl-datetime-locale" ,perl-datetime-locale)
2184 ("perl-datetime-timezone" ,perl-datetime-timezone)
2185 ("perl-file-sharedir" ,perl-file-sharedir)
2186 ("perl-params-validate" ,perl-params-validate)
2187 ("perl-try-tiny" ,perl-try-tiny)))
2188 (home-page "https://metacpan.org/release/DateTime")
2189 (synopsis "Date and time object for Perl")
2190 (description "DateTime is a class for the representation of date/time
2191 combinations. It represents the Gregorian calendar, extended backwards in
2192 time before its creation (in 1582).")
2193 (license artistic2.0)))
2194
2195 (define-public perl-datetime-calendar-julian
2196 (package
2197 (name "perl-datetime-calendar-julian")
2198 (version "0.04")
2199 (source
2200 (origin
2201 (method url-fetch)
2202 (uri (string-append "mirror://cpan/authors/id/P/PI/PIJLL/"
2203 "DateTime-Calendar-Julian-" version ".tar.gz"))
2204 (sha256
2205 (base32
2206 "03h0llkwsiw2d2ci1ah5x9sp8xrvnbgd471i5hnpgl5w32nnhndv"))))
2207 (build-system perl-build-system)
2208 ;; Only needed for tests
2209 (native-inputs
2210 `(("perl-datetime" ,perl-datetime)))
2211 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2212 (synopsis "Dates in the Julian calendar")
2213 (description "This package is a companion module to @code{DateTime.pm}.
2214 It implements the Julian calendar. It supports everything that
2215 @code{DateTime.pm} supports and more: about one day per century more, to be
2216 precise.")
2217 (license (package-license perl))))
2218
2219 (define-public perl-datetime-set
2220 (package
2221 (name "perl-datetime-set")
2222 (version "0.3900")
2223 (source
2224 (origin
2225 (method url-fetch)
2226 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2227 "DateTime-Set-" version ".tar.gz"))
2228 (sha256
2229 (base32
2230 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2231 (build-system perl-build-system)
2232 (native-inputs
2233 `(("perl-module-build" ,perl-module-build)))
2234 (propagated-inputs
2235 `(("perl-datetime" ,perl-datetime)
2236 ("perl-params-validate" ,perl-params-validate)
2237 ("perl-set-infinite" ,perl-set-infinite)))
2238 (home-page "https://metacpan.org/release/DateTime-Set")
2239 (synopsis "DateTime set objects")
2240 (description "The DateTime::Set module provides a date/time sets
2241 implementation. It allows, for example, the generation of groups of dates,
2242 like \"every wednesday\", and then find all the dates matching that pattern,
2243 within a time range.")
2244 (license (package-license perl))))
2245
2246 (define-public perl-datetime-event-ical
2247 (package
2248 (name "perl-datetime-event-ical")
2249 (version "0.13")
2250 (source
2251 (origin
2252 (method url-fetch)
2253 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2254 "DateTime-Event-ICal-" version ".tar.gz"))
2255 (sha256
2256 (base32
2257 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2258 (build-system perl-build-system)
2259 (propagated-inputs
2260 `(("perl-datetime" ,perl-datetime)
2261 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2262 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2263 (synopsis "DateTime rfc2445 recurrences")
2264 (description "This module provides convenience methods that let you easily
2265 create DateTime::Set objects for RFC 2445 style recurrences.")
2266 (license (package-license perl))))
2267
2268 (define-public perl-datetime-event-recurrence
2269 (package
2270 (name "perl-datetime-event-recurrence")
2271 (version "0.19")
2272 (source
2273 (origin
2274 (method url-fetch)
2275 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2276 "DateTime-Event-Recurrence-" version ".tar.gz"))
2277 (sha256
2278 (base32
2279 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2280 (build-system perl-build-system)
2281 (propagated-inputs
2282 `(("perl-datetime" ,perl-datetime)
2283 ("perl-datetime-set" ,perl-datetime-set)))
2284 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2285 (synopsis "DateTime::Set extension for basic recurrences")
2286 (description "This module provides convenience methods that let you easily
2287 create DateTime::Set objects for various recurrences, such as \"once a month\"
2288 or \"every day\". You can also create more complicated recurrences, such as
2289 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2290 (license (package-license perl))))
2291
2292 (define-public perl-datetime-format-builder
2293 (package
2294 (name "perl-datetime-format-builder")
2295 (version "0.81")
2296 (source
2297 (origin
2298 (method url-fetch)
2299 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2300 "DateTime-Format-Builder-" version ".tar.gz"))
2301 (sha256
2302 (base32
2303 "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
2304 (build-system perl-build-system)
2305 (propagated-inputs
2306 `(("perl-class-factory-util" ,perl-class-factory-util)
2307 ("perl-datetime" ,perl-datetime)
2308 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2309 ("perl-params-validate" ,perl-params-validate)))
2310 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
2311 (synopsis "Create DateTime parser classes and objects")
2312 (description "DateTime::Format::Builder creates DateTime parsers. Many
2313 string formats of dates and times are simple and just require a basic regular
2314 expression to extract the relevant information. Builder provides a simple way
2315 to do this without writing reams of structural code.")
2316 (license artistic2.0)))
2317
2318 (define-public perl-datetime-format-flexible
2319 (package
2320 (name "perl-datetime-format-flexible")
2321 (version "0.28")
2322 (source
2323 (origin
2324 (method url-fetch)
2325 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2326 "DateTime-Format-Flexible-" version ".tar.gz"))
2327 (sha256
2328 (base32
2329 "1g63zs0q2x40h29r7in50c55g6kxiw3m2faw2p6c4rg74sj2k2b5"))))
2330 (build-system perl-build-system)
2331 (propagated-inputs
2332 `(("perl-datetime" ,perl-datetime)
2333 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2334 ("perl-datetime-timezone" ,perl-datetime-timezone)
2335 ("perl-list-moreutils" ,perl-list-moreutils)
2336 ("perl-module-pluggable" ,perl-module-pluggable)
2337 ("perl-test-mocktime" ,perl-test-mocktime)))
2338 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
2339 (synopsis "Parse data/time strings")
2340 (description "DateTime::Format::Flexible attempts to take any string you
2341 give it and parse it into a DateTime object.")
2342 (license (package-license perl))))
2343
2344 (define-public perl-datetime-format-ical
2345 (package
2346 (name "perl-datetime-format-ical")
2347 (version "0.09")
2348 (source
2349 (origin
2350 (method url-fetch)
2351 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2352 "DateTime-Format-ICal-" version ".tar.gz"))
2353 (sha256
2354 (base32
2355 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2356 (build-system perl-build-system)
2357 (native-inputs
2358 `(("perl-module-build" ,perl-module-build)))
2359 (propagated-inputs
2360 `(("perl-datetime" ,perl-datetime)
2361 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2362 ("perl-datetime-set" ,perl-datetime-set)
2363 ("perl-datetime-timezone" ,perl-datetime-timezone)
2364 ("perl-params-validate" ,perl-params-validate)))
2365 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
2366 (synopsis "Parse and format iCal datetime and duration strings")
2367 (description "This module understands the ICal date/time and duration
2368 formats, as defined in RFC 2445. It can be used to parse these formats in
2369 order to create the appropriate objects.")
2370 (license (package-license perl))))
2371
2372 (define-public perl-datetime-format-natural
2373 (package
2374 (name "perl-datetime-format-natural")
2375 (version "1.05")
2376 (source
2377 (origin
2378 (method url-fetch)
2379 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2380 "DateTime-Format-Natural-" version ".tar.gz"))
2381 (sha256
2382 (base32
2383 "10ldrhz5rnpsd8qmqn1a4s0w5hhfbjrr13a93yx7kpp89g85pxqv"))))
2384 (build-system perl-build-system)
2385 (native-inputs
2386 `(("perl-module-build" ,perl-module-build)
2387 ("perl-module-util" ,perl-module-util)
2388 ("perl-test-mocktime" ,perl-test-mocktime)))
2389 (propagated-inputs
2390 `(("perl-boolean" ,perl-boolean)
2391 ("perl-clone" ,perl-clone)
2392 ("perl-date-calc" ,perl-date-calc)
2393 ("perl-date-calc-xs" ,perl-date-calc-xs)
2394 ("perl-datetime" ,perl-datetime)
2395 ("perl-datetime-timezone" ,perl-datetime-timezone)
2396 ("perl-list-moreutils" ,perl-list-moreutils)
2397 ("perl-params-validate" ,perl-params-validate)))
2398 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
2399 (synopsis "Machine-readable date/time with natural parsing")
2400 (description "DateTime::Format::Natural takes a string with a human
2401 readable date/time and creates a machine readable one by applying natural
2402 parsing logic.")
2403 (license (package-license perl))))
2404
2405 (define-public perl-datetime-format-strptime
2406 (package
2407 (name "perl-datetime-format-strptime")
2408 (version "1.76")
2409 (source
2410 (origin
2411 (method url-fetch)
2412 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2413 "DateTime-Format-Strptime-" version ".tar.gz"))
2414 (sha256
2415 (base32
2416 "03dmzi9n6jmnfjmf0ld5sdmi3ib6jrhz25cjzv7d58ypdr32cg2r"))))
2417 (build-system perl-build-system)
2418 (propagated-inputs
2419 `(("perl-datetime" ,perl-datetime)
2420 ("perl-datetime-locale" ,perl-datetime-locale)
2421 ("perl-datetime-timezone" ,perl-datetime-timezone)
2422 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2423 ("perl-params-validate" ,perl-params-validate)
2424 ("perl-sub-name" ,perl-sub-name)
2425 ("perl-test-warnings" ,perl-test-warnings)))
2426 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
2427 (synopsis "Parse and format strp and strf time patterns")
2428 (description "This module implements most of `strptime(3)`, the POSIX
2429 function that is the reverse of `strftime(3)`, for `DateTime`. While
2430 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
2431 takes a string and a pattern and returns the `DateTime` object associated.")
2432 (license artistic2.0)))
2433
2434 (define-public perl-datetime-locale
2435 (package
2436 (name "perl-datetime-locale")
2437 (version "1.23")
2438 (source
2439 (origin
2440 (method url-fetch)
2441 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2442 "DateTime-Locale-" version ".tar.gz"))
2443 (sha256
2444 (base32
2445 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
2446 (build-system perl-build-system)
2447 (native-inputs
2448 `(("perl-file-sharedir" ,perl-file-sharedir)
2449 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
2450 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
2451 ("perl-test-warnings" ,perl-test-warnings)
2452 ("perl-test-requires" ,perl-test-requires)
2453 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2454 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
2455 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
2456 ("perl-module-build" ,perl-module-build)))
2457 (propagated-inputs
2458 `(("perl-list-moreutils" ,perl-list-moreutils)
2459 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
2460 (home-page "https://metacpan.org/release/DateTime-Locale")
2461 (synopsis "Localization support for DateTime.pm")
2462 (description "The DateTime::Locale modules provide localization data for
2463 the DateTime.pm class.")
2464 (license (package-license perl))))
2465
2466 (define-public perl-datetime-timezone
2467 (package
2468 (name "perl-datetime-timezone")
2469 (version "2.19")
2470 (source
2471 (origin
2472 (method url-fetch)
2473 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2474 "DateTime-TimeZone-" version ".tar.gz"))
2475 (sha256
2476 (base32
2477 "1y54bsgq886sg35fgmxgj8wwmgs4l83qhwa0g3zv8w9d43z2w6dr"))))
2478 (build-system perl-build-system)
2479 (native-inputs
2480 `(("perl-test-fatal" ,perl-test-fatal)
2481 ("perl-test-requires" ,perl-test-requires)))
2482 (propagated-inputs
2483 `(("perl-class-singleton" ,perl-class-singleton)
2484 ("perl-list-allutils" ,perl-list-allutils)
2485 ("perl-module-runtime" ,perl-module-runtime)
2486 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
2487 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
2488 ("perl-try-tiny" ,perl-try-tiny)))
2489 (home-page "https://metacpan.org/release/DateTime-TimeZone")
2490 (synopsis "Time zone object for Perl")
2491 (description "This class is the base class for all time zone objects. A
2492 time zone is represented internally as a set of observances, each of which
2493 describes the offset from GMT for a given time period. Note that without the
2494 DateTime module, this module does not do much. It's primary interface is
2495 through a DateTime object, and most users will not need to directly use
2496 DateTime::TimeZone methods.")
2497 (license (package-license perl))))
2498
2499 (define-public perl-datetimex-easy
2500 (package
2501 (name "perl-datetimex-easy")
2502 (version "0.089")
2503 (source
2504 (origin
2505 (method url-fetch)
2506 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
2507 "DateTimeX-Easy-" version ".tar.gz"))
2508 (sha256
2509 (base32
2510 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
2511 (build-system perl-build-system)
2512 (native-inputs
2513 `(("perl-test-most" ,perl-test-most)))
2514 (propagated-inputs
2515 `(("perl-datetime" ,perl-datetime)
2516 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
2517 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
2518 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
2519 ("perl-timedate" ,perl-timedate)))
2520 (home-page "https://metacpan.org/release/DateTimeX-Easy")
2521 (synopsis "Parse date/time strings")
2522 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
2523 to create DateTime objects, with some custom tweaks to smooth out the rough
2524 edges (mainly concerning timezone detection and selection).")
2525 (license (package-license perl))))
2526
2527 (define-public perl-datetime-format-mail
2528 (package
2529 (name "perl-datetime-format-mail")
2530 (version "0.403")
2531 (source (origin
2532 (method url-fetch)
2533 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
2534 "DateTime-Format-Mail-" version ".tar.gz"))
2535 (sha256
2536 (base32
2537 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
2538 (build-system perl-build-system)
2539 (inputs
2540 `(("perl-datetime" ,perl-datetime)
2541 ("perl-params-validate" ,perl-params-validate)))
2542 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
2543 (synopsis "Convert between DateTime and RFC2822/822 formats")
2544 (description "RFCs 2822 and 822 specify date formats to be used by email.
2545 This module parses and emits such dates.")
2546 (license (package-license perl))))
2547
2548 (define-public perl-datetime-format-w3cdtf
2549 (package
2550 (name "perl-datetime-format-w3cdtf")
2551 (version "0.07")
2552 (source (origin
2553 (method url-fetch)
2554 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
2555 "DateTime-Format-W3CDTF-" version ".tar.gz"))
2556 (sha256
2557 (base32
2558 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
2559 (build-system perl-build-system)
2560 (inputs
2561 `(("perl-datetime" ,perl-datetime)))
2562 (native-inputs
2563 `(("perl-test-pod" ,perl-test-pod)
2564 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2565 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
2566 (synopsis "Parse and format W3CDTF datetime strings")
2567 (description
2568 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
2569 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
2570 format of RSS 1.0. It can be used to parse these formats in order to create
2571 the appropriate objects.")
2572 (license (package-license perl))))
2573
2574 (define-public perl-devel-caller
2575 (package
2576 (name "perl-devel-caller")
2577 (version "2.06")
2578 (source
2579 (origin
2580 (method url-fetch)
2581 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2582 "Devel-Caller-" version ".tar.gz"))
2583 (sha256
2584 (base32
2585 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
2586 (build-system perl-build-system)
2587 (propagated-inputs
2588 `(("perl-padwalker" ,perl-padwalker)))
2589 (home-page "https://metacpan.org/release/Devel-Caller")
2590 (synopsis "Meatier version of caller")
2591 (description "Devel::Caller provides meatier version of caller.")
2592 (license (package-license perl))))
2593
2594 (define-public perl-devel-checkbin
2595 (package
2596 (name "perl-devel-checkbin")
2597 (version "0.02")
2598 (source
2599 (origin
2600 (method url-fetch)
2601 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2602 "Devel-CheckBin-" version ".tar.gz"))
2603 (sha256
2604 (base32
2605 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
2606 (build-system perl-build-system)
2607 (native-inputs `(("perl-module-build" ,perl-module-build)))
2608 (home-page "https://metacpan.org/release/Devel-CheckBin")
2609 (synopsis "Check that a command is available")
2610 (description "Devel::CheckBin is a perl module that checks whether a
2611 particular command is available.")
2612 (license (package-license perl))))
2613
2614 (define-public perl-devel-checklib
2615 (package
2616 (name "perl-devel-checklib")
2617 (version "1.13")
2618 (source
2619 (origin
2620 (method url-fetch)
2621 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
2622 version ".tar.gz"))
2623 (sha256
2624 (base32 "1a19qkwxwz3wqb16cdabymfbf9kiydiifw90nd5srpq5hy8gvb94"))))
2625 (build-system perl-build-system)
2626 (native-inputs
2627 `(("perl-io-captureoutput" ,perl-io-captureoutput)
2628 ("perl-mock-config" ,perl-mock-config)))
2629 (home-page "https://metacpan.org/release/Devel-CheckLib")
2630 (synopsis "Check that a library is available")
2631 (description
2632 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
2633 C library and its headers are available. You can also check for the presence of
2634 particular functions in a library, or even that those functions return
2635 particular results.")
2636 (license perl-license)))
2637
2638 (define-public perl-devel-checkcompiler
2639 (package
2640 (name "perl-devel-checkcompiler")
2641 (version "0.07")
2642 (source (origin
2643 (method url-fetch)
2644 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
2645 "Devel-CheckCompiler-" version ".tar.gz"))
2646 (sha256
2647 (base32
2648 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
2649 (build-system perl-build-system)
2650 (native-inputs
2651 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
2652 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
2653 (synopsis "Check compiler availability")
2654 (description "@code{Devel::CheckCompiler} is a tiny module to check
2655 whether a compiler is available. It can test for a C99 compiler, or
2656 you can tell it to compile a C source file with optional linker flags.")
2657 (license (package-license perl))))
2658
2659 (define-public perl-devel-cycle
2660 (package
2661 (name "perl-devel-cycle")
2662 (version "1.12")
2663 (source
2664 (origin
2665 (method url-fetch)
2666 (uri (string-append
2667 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
2668 version
2669 ".tar.gz"))
2670 (sha256
2671 (base32
2672 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
2673 (build-system perl-build-system)
2674 (home-page
2675 "https://metacpan.org/release/Devel-Cycle")
2676 (synopsis "Find memory cycles in objects")
2677 (description
2678 "@code{Devel::Cycle} This is a tool for finding circular references in
2679 objects and other types of references. Because of Perl's reference-count
2680 based memory management, circular references will cause memory leaks.")
2681 (license perl-license)))
2682
2683 (define-public perl-devel-globaldestruction
2684 (package
2685 (name "perl-devel-globaldestruction")
2686 (version "0.14")
2687 (source
2688 (origin
2689 (method url-fetch)
2690 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2691 "Devel-GlobalDestruction-" version ".tar.gz"))
2692 (sha256
2693 (base32
2694 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
2695 (build-system perl-build-system)
2696 (propagated-inputs
2697 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
2698 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
2699 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
2700 (description "Devel::GlobalDestruction provides a function returning the
2701 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
2702 (license (package-license perl))))
2703
2704 (define-public perl-devel-hide
2705 (package
2706 (name "perl-devel-hide")
2707 (version "0.0009")
2708 (source
2709 (origin
2710 (method url-fetch)
2711 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
2712 version ".tar.gz"))
2713 (sha256
2714 (base32
2715 "1phnzbw58v6551nhv6sg86m72nx9w5j4msh1hg4jvkakkq5w9pki"))))
2716 (build-system perl-build-system)
2717 (propagated-inputs
2718 `(("perl-test-pod" ,perl-test-pod)
2719 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2720 (home-page "https://metacpan.org/release/Devel-Hide")
2721 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
2722 (description "Given a list of Perl modules/filenames, this module makes
2723 @code{require} and @code{use} statements fail (no matter whether the specified
2724 files/modules are installed or not).")
2725 (license (package-license perl))))
2726
2727 (define-public perl-devel-lexalias
2728 (package
2729 (name "perl-devel-lexalias")
2730 (version "0.05")
2731 (source
2732 (origin
2733 (method url-fetch)
2734 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2735 "Devel-LexAlias-" version ".tar.gz"))
2736 (sha256
2737 (base32
2738 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
2739 (build-system perl-build-system)
2740 (propagated-inputs
2741 `(("perl-devel-caller" ,perl-devel-caller)))
2742 (home-page "https://metacpan.org/release/Devel-LexAlias")
2743 (synopsis "Alias lexical variables")
2744 (description "Devel::LexAlias provides the ability to alias a lexical
2745 variable in a subroutines scope to one of your choosing.")
2746 (license (package-license perl))))
2747
2748 (define-public perl-devel-overloadinfo
2749 (package
2750 (name "perl-devel-overloadinfo")
2751 (version "0.005")
2752 (source
2753 (origin
2754 (method url-fetch)
2755 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
2756 "Devel-OverloadInfo-" version ".tar.gz"))
2757 (sha256
2758 (base32
2759 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
2760 (build-system perl-build-system)
2761 (native-inputs
2762 `(("perl-test-fatal" ,perl-test-fatal)))
2763 (propagated-inputs
2764 `(("perl-package-stash" ,perl-package-stash)
2765 ("perl-sub-identify" ,perl-sub-identify)
2766 ("perl-mro-compat" ,perl-mro-compat)))
2767 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
2768 (synopsis "Introspect overloaded operators")
2769 (description "Devel::OverloadInfo returns information about overloaded
2770 operators for a given class (or object), including where in the inheritance
2771 hierarchy the overloads are declared and where the code implementing it is.")
2772 (license (package-license perl))))
2773
2774 (define-public perl-devel-partialdump
2775 (package
2776 (name "perl-devel-partialdump")
2777 (version "0.18")
2778 (source
2779 (origin
2780 (method url-fetch)
2781 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2782 "Devel-PartialDump-" version ".tar.gz"))
2783 (sha256
2784 (base32
2785 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
2786 (build-system perl-build-system)
2787 (native-inputs
2788 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2789 ("perl-test-warn" ,perl-test-warn)
2790 ("perl-test-simple" ,perl-test-simple)))
2791 (propagated-inputs
2792 `(("perl-class-tiny" ,perl-class-tiny)
2793 ("perl-sub-exporter" ,perl-sub-exporter)
2794 ("perl-namespace-clean" ,perl-namespace-clean)))
2795 (home-page "https://metacpan.org/release/Devel-PartialDump")
2796 (synopsis "Partial dumping of data structures")
2797 (description "This module is a data dumper optimized for logging of
2798 arbitrary parameters.")
2799 (license (package-license perl))))
2800
2801 (define-public perl-devel-stacktrace
2802 (package
2803 (name "perl-devel-stacktrace")
2804 (version "2.03")
2805 (source
2806 (origin
2807 (method url-fetch)
2808 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2809 "Devel-StackTrace-" version ".tar.gz"))
2810 (sha256
2811 (base32
2812 "0j58kgjr9s3vibsgifmk9k5h7daag0cb9x45f30m9qi4pr7cs63n"))))
2813 (build-system perl-build-system)
2814 (home-page "https://metacpan.org/release/Devel-StackTrace")
2815 (synopsis "Object representing a stack trace")
2816 (description "The Devel::StackTrace module contains two classes,
2817 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
2818 information that can be retrieved via Perl's caller() function, as well as
2819 providing a simple interface to this data.")
2820 (license artistic2.0)))
2821
2822 (define-public perl-devel-stacktrace-ashtml
2823 (package
2824 (name "perl-devel-stacktrace-ashtml")
2825 (version "0.15")
2826 (source
2827 (origin
2828 (method url-fetch)
2829 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2830 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2831 (sha256
2832 (base32
2833 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
2834 (build-system perl-build-system)
2835 (propagated-inputs
2836 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2837 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
2838 (synopsis "Displays stack trace in HTML")
2839 (description "Devel::StackTrace::AsHTML adds as_html method to
2840 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2841 snippet context and function parameters. If you call it on an instance of
2842 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2843 each stack frame.")
2844 (license (package-license perl))))
2845
2846 (define-public perl-devel-symdump
2847 (package
2848 (name "perl-devel-symdump")
2849 (version "2.18")
2850 (source
2851 (origin
2852 (method url-fetch)
2853 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2854 "Devel-Symdump-" version ".tar.gz"))
2855 (sha256
2856 (base32
2857 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
2858 (build-system perl-build-system)
2859 (home-page "https://metacpan.org/release/Devel-Symdump")
2860 (synopsis "Dump symbol names or the symbol table")
2861 (description "Devel::Symdump provides access to the perl symbol table.")
2862 (license (package-license perl))))
2863
2864 (define-public perl-digest-hmac
2865 (package
2866 (name "perl-digest-hmac")
2867 (version "1.03")
2868 (source
2869 (origin
2870 (method url-fetch)
2871 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2872 "Digest-HMAC-" version ".tar.gz"))
2873 (sha256
2874 (base32
2875 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2876 (build-system perl-build-system)
2877 (home-page "https://metacpan.org/release/Digest-HMAC")
2878 (synopsis "Keyed-Hashing for Message Authentication")
2879 (description "The Digest::HMAC module follows the common Digest::
2880 interface for the RFC 2104 HMAC mechanism.")
2881 (license (package-license perl))))
2882
2883 (define-public perl-digest-md5
2884 (package
2885 (name "perl-digest-md5")
2886 (version "2.55")
2887 (source
2888 (origin
2889 (method url-fetch)
2890 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
2891 version ".tar.gz"))
2892 (sha256
2893 (base32
2894 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
2895 (build-system perl-build-system)
2896 (arguments
2897 `(#:phases
2898 (modify-phases %standard-phases
2899 (add-after 'build 'set-permissions
2900 (lambda _
2901 ;; Make MD5.so read-write so it can be stripped.
2902 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
2903 #t)))))
2904 (home-page "https://metacpan.org/release/Digest-MD5")
2905 (synopsis "Perl interface to the MD-5 algorithm")
2906 (description
2907 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
2908 algorithm from within Perl programs. The algorithm takes as
2909 input a message of arbitrary length and produces as output a
2910 128-bit \"fingerprint\" or \"message digest\" of the input.")
2911 (license (package-license perl))))
2912
2913 (define-public perl-digest-sha1
2914 (package
2915 (name "perl-digest-sha1")
2916 (version "2.13")
2917 (source (origin
2918 (method url-fetch)
2919 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2920 "Digest-SHA1-" version ".tar.gz"))
2921 (sha256
2922 (base32
2923 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2924 (build-system perl-build-system)
2925 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2926 (description
2927 "This package provides 'Digest::SHA1', an implementation of the NIST
2928 SHA-1 message digest algorithm for use by Perl programs.")
2929 (home-page "https://metacpan.org/release/Digest-SHA1")
2930 (license (package-license perl))))
2931
2932 (define-public perl-dist-checkconflicts
2933 (package
2934 (name "perl-dist-checkconflicts")
2935 (version "0.11")
2936 (source (origin
2937 (method url-fetch)
2938 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2939 "Dist-CheckConflicts-" version ".tar.gz"))
2940 (sha256
2941 (base32
2942 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2943 (build-system perl-build-system)
2944 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2945 (propagated-inputs
2946 `(("perl-module-runtime" ,perl-module-runtime)))
2947 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
2948 (synopsis "Declare version conflicts for your dist")
2949 (description "This module allows you to specify conflicting versions of
2950 modules separately and deal with them after the module is done installing.")
2951 (license (package-license perl))))
2952
2953 (define-public perl-encode-detect
2954 (package
2955 (name "perl-encode-detect")
2956 (version "1.01")
2957 (source
2958 (origin
2959 (method url-fetch)
2960 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
2961 "Encode-Detect-" version ".tar.gz"))
2962 (sha256
2963 (base32
2964 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
2965 (build-system perl-build-system)
2966 (native-inputs
2967 `(("perl-module-build" ,perl-module-build)))
2968 (home-page "https://metacpan.org/release/Encode-Detect")
2969 (synopsis "Detect the encoding of data")
2970 (description "This package provides a class @code{Encode::Detect} to detect
2971 the encoding of data.")
2972 (license mpl1.1)))
2973
2974 (define-public perl-encode-eucjpascii
2975 (package
2976 (name "perl-encode-eucjpascii")
2977 (version "0.03")
2978 (source
2979 (origin
2980 (method url-fetch)
2981 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
2982 "Encode-EUCJPASCII-" version ".tar.gz"))
2983 (sha256
2984 (base32
2985 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
2986 (build-system perl-build-system)
2987 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
2988 (synopsis "ASCII mapping for eucJP encoding")
2989 (description "This package provides an ASCII mapping for the eucJP
2990 encoding.")
2991 (license (package-license perl))))
2992
2993 (define-public perl-encode-jis2k
2994 (package
2995 (name "perl-encode-jis2k")
2996 (version "0.03")
2997 (source
2998 (origin
2999 (method url-fetch)
3000 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3001 "Encode-JIS2K-" version ".tar.gz"))
3002 (sha256
3003 (base32
3004 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3005 (build-system perl-build-system)
3006 (home-page "https://metacpan.org/release/Encode-JIS2K")
3007 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3008 (description "This package provides encodings for JIS X 0212, which is
3009 also known as JIS 2000.")
3010 (license (package-license perl))))
3011
3012 (define-public perl-encode-hanextra
3013 (package
3014 (name "perl-encode-hanextra")
3015 (version "0.23")
3016 (source
3017 (origin
3018 (method url-fetch)
3019 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3020 "Encode-HanExtra-" version ".tar.gz"))
3021 (sha256
3022 (base32
3023 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3024 (build-system perl-build-system)
3025 (arguments
3026 '(#:phases
3027 (modify-phases %standard-phases
3028 (add-after 'unpack 'set-env
3029 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3030 (home-page "https://metacpan.org/release/Encode-HanExtra")
3031 (synopsis "Additional Chinese encodings")
3032 (description "This Perl module provides Chinese encodings that are not
3033 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3034 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3035 \"UNISYS\".")
3036 (license expat)))
3037
3038 (define-public perl-env-path
3039 (package
3040 (name "perl-env-path")
3041 (version "0.19")
3042 (source
3043 (origin
3044 (method url-fetch)
3045 (uri (string-append
3046 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3047 version
3048 ".tar.gz"))
3049 (sha256
3050 (base32
3051 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3052 (build-system perl-build-system)
3053 (home-page "https://metacpan.org/release/Env-Path")
3054 (synopsis "Advanced operations on path variables")
3055 (description "@code{Env::Path} presents an object-oriented interface to
3056 path variables, defined as that subclass of environment variables which name
3057 an ordered list of file system elements separated by a platform-standard
3058 separator.")
3059 (license (package-license perl))))
3060
3061 (define-public perl-error
3062 (package
3063 (name "perl-error")
3064 (version "0.17025")
3065 (source (origin
3066 (method url-fetch)
3067 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3068 "Error-" version ".tar.gz"))
3069 (sha256
3070 (base32
3071 "1bzgzmf1v4md02vadm46b4j4ilqxrcrfasvbzymhrznlsd54g7vc"))))
3072 (build-system perl-build-system)
3073 (native-inputs `(("perl-module-build" ,perl-module-build)))
3074 (home-page "https://metacpan.org/release/Error")
3075 (synopsis "OO-ish Error/Exception handling for Perl")
3076 (description "The Error package provides two interfaces. Firstly Error
3077 provides a procedural interface to exception handling. Secondly Error is a
3078 base class for errors/exceptions that can either be thrown, for subsequent
3079 catch, or can simply be recorded.")
3080 (license (package-license perl))))
3081
3082 (define-public perl-eval-closure
3083 (package
3084 (name "perl-eval-closure")
3085 (version "0.14")
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3090 "Eval-Closure-" version ".tar.gz"))
3091 (sha256
3092 (base32
3093 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3094 (build-system perl-build-system)
3095 (native-inputs
3096 `(("perl-test-fatal" ,perl-test-fatal)
3097 ("perl-test-requires" ,perl-test-requires)))
3098 (propagated-inputs
3099 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3100 (home-page "https://metacpan.org/release/Eval-Closure")
3101 (synopsis "Safely and cleanly create closures via string eval")
3102 (description "String eval is often used for dynamic code generation. For
3103 instance, Moose uses it heavily, to generate inlined versions of accessors and
3104 constructors, which speeds code up at runtime by a significant amount. String
3105 eval is not without its issues however - it's difficult to control the scope
3106 it's used in (which determines which variables are in scope inside the eval),
3107 and it's easy to miss compilation errors, since eval catches them and sticks
3108 them in $@@ instead. This module attempts to solve these problems. It
3109 provides an eval_closure function, which evals a string in a clean
3110 environment, other than a fixed list of specified variables. Compilation
3111 errors are rethrown automatically.")
3112 (license (package-license perl))))
3113
3114 (define-public perl-exception-class
3115 (package
3116 (name "perl-exception-class")
3117 (version "1.44")
3118 (source
3119 (origin
3120 (method url-fetch)
3121 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3122 "Exception-Class-" version ".tar.gz"))
3123 (sha256
3124 (base32
3125 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3126 (build-system perl-build-system)
3127 (propagated-inputs
3128 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3129 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3130 (home-page "https://metacpan.org/release/Exception-Class")
3131 (synopsis "Allows you to declare real exception classes in Perl")
3132 (description "Exception::Class allows you to declare exception hierarchies
3133 in your modules in a \"Java-esque\" manner.")
3134 (license (package-license perl))))
3135
3136 (define-public perl-exporter-lite
3137 (package
3138 (name "perl-exporter-lite")
3139 (version "0.08")
3140 (source (origin
3141 (method url-fetch)
3142 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3143 "Exporter-Lite-" version ".tar.gz"))
3144 (sha256
3145 (base32
3146 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3147 (build-system perl-build-system)
3148 (synopsis "Lightweight exporting of functions and variables")
3149 (description
3150 "Exporter::Lite is an alternative to Exporter, intended to provide a
3151 lightweight subset of the most commonly-used functionality. It supports
3152 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3153 (home-page "https://metacpan.org/release/Exporter-Lite")
3154 (license (package-license perl))))
3155
3156 (define-public perl-exporter-tiny
3157 (package
3158 (name "perl-exporter-tiny")
3159 (version "0.042")
3160 (source
3161 (origin
3162 (method url-fetch)
3163 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3164 "Exporter-Tiny-" version ".tar.gz"))
3165 (sha256
3166 (base32
3167 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
3168 (build-system perl-build-system)
3169 (home-page "https://metacpan.org/release/Exporter-Tiny")
3170 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3171 (description "Exporter::Tiny supports many of Sub::Exporter's
3172 external-facing features including renaming imported functions with the `-as`,
3173 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3174 and alternative installers with the `installler` option. But it's written in
3175 only about 40% as many lines of code and with zero non-core dependencies.")
3176 (license (package-license perl))))
3177
3178 (define-public perl-extutils-installpaths
3179 (package
3180 (name "perl-extutils-installpaths")
3181 (version "0.012")
3182 (source
3183 (origin
3184 (method url-fetch)
3185 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3186 "ExtUtils-InstallPaths-" version ".tar.gz"))
3187 (sha256
3188 (base32
3189 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
3190 (build-system perl-build-system)
3191 (propagated-inputs
3192 `(("perl-extutils-config" ,perl-extutils-config)))
3193 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
3194 (synopsis "Build.PL install path logic made easy")
3195 (description "This module tries to make install path resolution as easy as
3196 possible.")
3197 (license (package-license perl))))
3198
3199 (define-public perl-extutils-config
3200 (package
3201 (name "perl-extutils-config")
3202 (version "0.008")
3203 (source
3204 (origin
3205 (method url-fetch)
3206 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3207 "ExtUtils-Config-" version ".tar.gz"))
3208 (sha256
3209 (base32
3210 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3211 (build-system perl-build-system)
3212 (home-page "https://metacpan.org/release/ExtUtils-Config")
3213 (synopsis "Wrapper for perl's configuration")
3214 (description "ExtUtils::Config is an abstraction around the %Config hash.
3215 By itself it is not a particularly interesting module by any measure, however
3216 it ties together a family of modern toolchain modules.")
3217 (license (package-license perl))))
3218
3219 (define-public perl-extutils-depends
3220 (package
3221 (name "perl-extutils-depends")
3222 (version "0.405")
3223 (source (origin
3224 (method url-fetch)
3225 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3226 "ExtUtils-Depends-" version ".tar.gz"))
3227 (sha256
3228 (base32
3229 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
3230 (build-system perl-build-system)
3231 (native-inputs
3232 `(("perl-test-number-delta" ,perl-test-number-delta)))
3233 (home-page "https://metacpan.org/release/ExtUtils-Depends")
3234 (synopsis "Easily build XS extensions that depend on XS extensions")
3235 (description
3236 "This module tries to make it easy to build Perl extensions that use
3237 functions and typemaps provided by other perl extensions. This means that a
3238 perl extension is treated like a shared library that provides also a C and an
3239 XS interface besides the perl one.")
3240 (license (package-license perl))))
3241
3242 (define-public perl-extutils-helpers
3243 (package
3244 (name "perl-extutils-helpers")
3245 (version "0.026")
3246 (source
3247 (origin
3248 (method url-fetch)
3249 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3250 "ExtUtils-Helpers-" version ".tar.gz"))
3251 (sha256
3252 (base32
3253 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
3254 (build-system perl-build-system)
3255 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
3256 (synopsis "Various portability utilities for module builders")
3257 (description "This module provides various portable helper functions for
3258 module building modules.")
3259 (license (package-license perl))))
3260
3261 (define-public perl-extutils-libbuilder
3262 (package
3263 (name "perl-extutils-libbuilder")
3264 (version "0.08")
3265 (source
3266 (origin
3267 (method url-fetch)
3268 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
3269 "ExtUtils-LibBuilder-" version ".tar.gz"))
3270 (sha256
3271 (base32
3272 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
3273 (build-system perl-build-system)
3274 (native-inputs
3275 `(("perl-module-build" ,perl-module-build)))
3276 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
3277 (synopsis "Tool to build C libraries")
3278 (description "Some Perl modules need to ship C libraries together with
3279 their Perl code. Although there are mechanisms to compile and link (or glue)
3280 C code in your Perl programs, there isn't a clear method to compile standard,
3281 self-contained C libraries. This module main goal is to help in that task.")
3282 (license (package-license perl))))
3283
3284 (define-public perl-extutils-pkgconfig
3285 (package
3286 (name "perl-extutils-pkgconfig")
3287 (version "1.16")
3288 (source (origin
3289 (method url-fetch)
3290 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
3291 "ExtUtils-PkgConfig-" version ".tar.gz"))
3292 (sha256
3293 (base32
3294 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
3295 (build-system perl-build-system)
3296 (propagated-inputs
3297 `(("pkg-config" ,pkg-config)))
3298 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
3299 (synopsis "Simplistic interface to pkg-config")
3300 (description
3301 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
3302 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
3303 of perl extensions which bind libraries that @command{pkg-config} knows.
3304 It is really just boilerplate code that you would have written yourself.")
3305 (license lgpl2.1+)))
3306
3307 (define-public perl-file-changenotify
3308 (package
3309 (name "perl-file-changenotify")
3310 (version "0.24")
3311 (source
3312 (origin
3313 (method url-fetch)
3314 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3315 "File-ChangeNotify-" version ".tar.gz"))
3316 (sha256
3317 (base32
3318 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
3319 (build-system perl-build-system)
3320 (native-inputs
3321 `(("perl-module-build" ,perl-module-build)
3322 ("perl-test-exception" ,perl-test-exception)))
3323 (propagated-inputs
3324 `(("perl-class-load" ,perl-class-load)
3325 ("perl-list-moreutils" ,perl-list-moreutils)
3326 ("perl-module-pluggable" ,perl-module-pluggable)
3327 ("perl-moose" ,perl-moose)
3328 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
3329 ("perl-moosex-semiaffordanceaccessor"
3330 ,perl-moosex-semiaffordanceaccessor)
3331 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3332 (home-page "https://metacpan.org/release/File-ChangeNotify")
3333 (synopsis "Watch for changes to files")
3334 (description "This module provides a class to monitor a directory for
3335 changes made to any file.")
3336 (license artistic2.0)))
3337
3338 (define-public perl-file-configdir
3339 (package
3340 (name "perl-file-configdir")
3341 (version "0.018")
3342 (source
3343 (origin
3344 (method url-fetch)
3345 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3346 "File-ConfigDir-" version ".tar.gz"))
3347 (sha256
3348 (base32
3349 "1xpzrlya0gskk7lm6gppyfwbk0swv0n6ssgp629575dk5l49z2rf"))))
3350 (build-system perl-build-system)
3351 (propagated-inputs
3352 `(("perl-file-homedir" ,perl-file-homedir)
3353 ("perl-list-moreutils" ,perl-list-moreutils)))
3354 (home-page "https://metacpan.org/release/File-ConfigDir")
3355 (synopsis "Get directories of configuration files")
3356 (description "This module is a helper for installing, reading and finding
3357 configuration file locations. @code{File::ConfigDir} is a module to help out
3358 when Perl modules (especially applications) need to read and store
3359 configuration files from more than one location.")
3360 (license (package-license perl))))
3361
3362 (define-public perl-file-copy-recursive
3363 (package
3364 (name "perl-file-copy-recursive")
3365 (version "0.38")
3366 (source
3367 (origin
3368 (method url-fetch)
3369 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
3370 "File-Copy-Recursive-" version ".tar.gz"))
3371 (sha256
3372 (base32
3373 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
3374 (build-system perl-build-system)
3375 (home-page "https://metacpan.org/release/File-Copy-Recursive")
3376 (synopsis "Recursively copy files and directories")
3377 (description "This module has 3 functions: one to copy files only, one to
3378 copy directories only, and one to do either depending on the argument's
3379 type.")
3380 (license (package-license perl))))
3381
3382 (define-public perl-file-find-rule
3383 (package
3384 (name "perl-file-find-rule")
3385 (version "0.34")
3386 (source
3387 (origin
3388 (method url-fetch)
3389 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3390 "File-Find-Rule-" version ".tar.gz"))
3391 (sha256
3392 (base32
3393 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
3394 (build-system perl-build-system)
3395 (propagated-inputs
3396 `(("perl-text-glob" ,perl-text-glob)
3397 ("perl-number-compare" ,perl-number-compare)))
3398 (home-page "https://metacpan.org/release/File-Find-Rule")
3399 (synopsis "Alternative interface to File::Find")
3400 (description "File::Find::Rule is a friendlier interface to File::Find.
3401 It allows you to build rules which specify the desired files and
3402 directories.")
3403 (license (package-license perl))))
3404
3405 (define-public perl-file-find-rule-perl
3406 (package
3407 (name "perl-file-find-rule-perl")
3408 (version "1.15")
3409 (source
3410 (origin
3411 (method url-fetch)
3412 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3413 "File-Find-Rule-Perl-" version ".tar.gz"))
3414 (sha256
3415 (base32
3416 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
3417 (build-system perl-build-system)
3418 (propagated-inputs
3419 `(("perl-file-find-rule" ,perl-file-find-rule)
3420 ("perl-params-util" ,perl-params-util)
3421 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
3422 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
3423 (synopsis "Common rules for searching for Perl things")
3424 (description "File::Find::Rule::Perl provides methods for finding various
3425 types Perl-related files, or replicating search queries run on a distribution
3426 in various parts of the CPAN ecosystem.")
3427 (license (package-license perl))))
3428
3429 (define-public perl-file-grep
3430 (package
3431 (name "perl-file-grep")
3432 (version "0.02")
3433 (source
3434 (origin
3435 (method url-fetch)
3436 (uri (string-append
3437 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
3438 version
3439 ".tar.gz"))
3440 (sha256
3441 (base32
3442 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
3443 (build-system perl-build-system)
3444 (home-page "https://metacpan.org/release/File-Grep")
3445 (synopsis "Matches patterns in a series of files")
3446 (description "@code{File::Grep} provides similar functionality as perl's
3447 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
3448 over a passed filelist instead of arrays. While trivial, this module can
3449 provide a quick dropin when such functionality is needed.")
3450 (license (package-license perl))))
3451
3452 (define-public perl-file-homedir
3453 (package
3454 (name "perl-file-homedir")
3455 (version "1.004")
3456 (source
3457 (origin
3458 (method url-fetch)
3459 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3460 "File-HomeDir-" version ".tar.gz"))
3461 (sha256
3462 (base32
3463 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
3464 (build-system perl-build-system)
3465 (propagated-inputs
3466 `(("perl-file-which" ,perl-file-which)))
3467 (arguments `(#:tests? #f)) ;Not appropriate for chroot
3468 (home-page "https://metacpan.org/release/File-HomeDir")
3469 (synopsis "Find your home and other directories on any platform")
3470 (description "File::HomeDir is a module for locating the directories that
3471 are \"owned\" by a user (typically your user) and to solve the various issues
3472 that arise trying to find them consistently across a wide variety of
3473 platforms.")
3474 (license (package-license perl))))
3475
3476 (define-public perl-file-path
3477 (package
3478 (name "perl-file-path")
3479 (version "2.13")
3480 (source
3481 (origin
3482 (method url-fetch)
3483 (uri (string-append
3484 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
3485 version
3486 ".tar.gz"))
3487 (sha256
3488 (base32
3489 "039gc0i5cbdmidl8j8x195yykwcdmzwawmpapnysvljl8l33jqwj"))))
3490 (build-system perl-build-system)
3491 (home-page "https://metacpan.org/release/File-Path")
3492 (synopsis "Create or remove directory trees")
3493 (description "This module provide a convenient way to create directories
3494 of arbitrary depth and to delete an entire directory subtree from the
3495 file system.")
3496 (license (package-license perl))))
3497
3498 (define-public perl-file-pushd
3499 (package
3500 (name "perl-file-pushd")
3501 (version "1.016")
3502 (source
3503 (origin
3504 (method url-fetch)
3505 (uri (string-append
3506 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
3507 version
3508 ".tar.gz"))
3509 (sha256
3510 (base32
3511 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
3512 (build-system perl-build-system)
3513 (home-page
3514 "https://metacpan.org/release/File-pushd")
3515 (synopsis
3516 "Change directory temporarily for a limited scope")
3517 (description "@code{File::pushd} does a temporary @code{chdir} that is
3518 easily and automatically reverted, similar to @code{pushd} in some Unix
3519 command shells. It works by creating an object that caches the original
3520 working directory. When the object is destroyed, the destructor calls
3521 @code{chdir} to revert to the original working directory. By storing the
3522 object in a lexical variable with a limited scope, this happens automatically
3523 at the end of the scope.")
3524 (license asl2.0)))
3525
3526 (define-public perl-file-list
3527 (package
3528 (name "perl-file-list")
3529 (version "0.3.1")
3530 (source (origin
3531 (method url-fetch)
3532 (uri (string-append
3533 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
3534 version ".tar.gz"))
3535 (sha256
3536 (base32
3537 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
3538 (build-system perl-build-system)
3539 (arguments
3540 `(#:phases
3541 (modify-phases %standard-phases
3542 (add-after 'unpack 'cd
3543 (lambda _ (chdir "List") #t)))))
3544 (license (package-license perl))
3545 (synopsis "Perl extension for crawling directory trees and compiling
3546 lists of files")
3547 (description
3548 "The File::List module crawls the directory tree starting at the
3549 provided base directory and can return files (and/or directories if desired)
3550 matching a regular expression.")
3551 (home-page "https://metacpan.org/release/File-List")))
3552
3553 (define-public perl-file-readbackwards
3554 (package
3555 (name "perl-file-readbackwards")
3556 (version "1.05")
3557 (source
3558 (origin
3559 (method url-fetch)
3560 (uri (string-append
3561 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
3562 version
3563 ".tar.gz"))
3564 (sha256
3565 (base32
3566 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
3567 (build-system perl-build-system)
3568 (home-page "https://metacpan.org/release/File-ReadBackwards")
3569 (synopsis "Read a file backwards by lines")
3570 (description "This module reads a file backwards line by line. It is
3571 simple to use, memory efficient and fast. It supports both an object and a
3572 tied handle interface.
3573
3574 It is intended for processing log and other similar text files which typically
3575 have their newest entries appended to them. By default files are assumed to
3576 be plain text and have a line ending appropriate to the OS. But you can set
3577 the input record separator string on a per file basis.")
3578 (license perl-license)))
3579
3580 (define-public perl-file-remove
3581 (package
3582 (name "perl-file-remove")
3583 (version "1.58")
3584 (source
3585 (origin
3586 (method url-fetch)
3587 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3588 "File-Remove-" version ".tar.gz"))
3589 (sha256
3590 (base32
3591 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
3592 (build-system perl-build-system)
3593 (native-inputs
3594 `(("perl-module-build" ,perl-module-build)))
3595 (home-page "https://metacpan.org/release/File-Remove")
3596 (synopsis "Remove files and directories in Perl")
3597 (description "@code{File::Remove::remove} removes files and directories.
3598 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
3599 given a list of files, it will not remove directories; this module remedies
3600 that. It also accepts wildcards, * and ?, as arguments for file names.")
3601 (license (package-license perl))))
3602
3603 (define-public perl-file-sharedir
3604 (package
3605 (name "perl-file-sharedir")
3606 (version "1.104")
3607 (source
3608 (origin
3609 (method url-fetch)
3610 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3611 "File-ShareDir-" version ".tar.gz"))
3612 (sha256
3613 (base32
3614 "1bqwhk3qfg60bkpi5b83bh93sng8jx20i3ka5sixc0prrppjidh7"))))
3615 (build-system perl-build-system)
3616 (native-inputs
3617 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
3618 (propagated-inputs
3619 `(("perl-class-inspector" ,perl-class-inspector)))
3620 (home-page "https://metacpan.org/release/File-ShareDir")
3621 (synopsis "Locate per-dist and per-module shared files")
3622 (description "The intent of File::ShareDir is to provide a companion to
3623 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
3624 module to have access to a large amount of read-only data that is stored on
3625 the file-system at run-time. Once the files have been installed to the
3626 correct directory, you can use File::ShareDir to find your files again after
3627 the installation.")
3628 (license (package-license perl))))
3629
3630 (define-public perl-file-sharedir-dist
3631 (package
3632 (name "perl-file-sharedir-dist")
3633 (version "0.05")
3634 (source
3635 (origin
3636 (method url-fetch)
3637 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3638 "File-ShareDir-Dist-" version ".tar.gz"))
3639 (sha256
3640 (base32
3641 "1xkmrckp1qfi9ik098n2vz0r8g7wfwp2y05zjd100w6wcqwfzcpn"))))
3642 (build-system perl-build-system)
3643 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
3644 (synopsis "Locate per-dist shared files")
3645 (description "File::ShareDir::Dist finds share directories for
3646 distributions. It is a companion module to File::ShareDir.")
3647 (license (package-license perl))))
3648
3649 (define-public perl-file-sharedir-install
3650 (package
3651 (name "perl-file-sharedir-install")
3652 (version "0.13")
3653 (source
3654 (origin
3655 (method url-fetch)
3656 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3657 "File-ShareDir-Install-" version ".tar.gz"))
3658 (sha256
3659 (base32
3660 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
3661 (build-system perl-build-system)
3662 (native-inputs
3663 `(("perl-module-build" ,perl-module-build)))
3664 (home-page "https://metacpan.org/release/File-ShareDir-Install")
3665 (synopsis "Install shared files")
3666 (description "File::ShareDir::Install allows you to install read-only data
3667 files from a distribution. It is a companion module to File::ShareDir, which
3668 allows you to locate these files after installation.")
3669 (license (package-license perl))))
3670
3671 (define-public perl-file-slurp
3672 (package
3673 (name "perl-file-slurp")
3674 (version "9999.25")
3675 (source
3676 (origin
3677 (method url-fetch)
3678 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
3679 "File-Slurp-" version ".tar.gz"))
3680 (sha256
3681 (base32
3682 "1hg3bhf5m78d77p4174cnldd75ppyrvr5rkc8w289ihvwsx9gsn7"))))
3683 (build-system perl-build-system)
3684 (home-page "https://metacpan.org/release/File-Slurp")
3685 (synopsis "Reading/Writing/Modifying of complete files")
3686 (description "File::Slurp provides subroutines to read or write entire
3687 files with a simple call. It also has a subroutine for reading the list of
3688 file names in a directory.")
3689 (license (package-license perl))))
3690
3691 (define-public perl-file-slurper
3692 (package
3693 (name "perl-file-slurper")
3694 (version "0.012")
3695 (source
3696 (origin
3697 (method url-fetch)
3698 (uri (string-append
3699 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
3700 version
3701 ".tar.gz"))
3702 (sha256
3703 (base32
3704 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
3705 (build-system perl-build-system)
3706 (native-inputs
3707 `(("perl-test-warnings" ,perl-test-warnings)))
3708 (propagated-inputs
3709 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
3710 (home-page "https://metacpan.org/release/File-Slurper")
3711 (synopsis "Simple, sane and efficient module to slurp a file")
3712 (description "This module provides functions for fast and correct file
3713 slurping and spewing. All functions are optionally exported.")
3714 (license (package-license perl))))
3715
3716 (define-public perl-file-slurp-tiny
3717 (package
3718 (name "perl-file-slurp-tiny")
3719 (version "0.004")
3720 (source (origin
3721 (method url-fetch)
3722 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3723 "File-Slurp-Tiny-" version ".tar.gz"))
3724 (sha256
3725 (base32
3726 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
3727 (build-system perl-build-system)
3728 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
3729 (synopsis "Simple file reader and writer")
3730 (description
3731 "This module provides functions for fast reading and writing of files.")
3732 (license (package-license perl))))
3733
3734 (define-public perl-file-temp
3735 (package
3736 (name "perl-file-temp")
3737 (version "0.2304")
3738 (source
3739 (origin
3740 (method url-fetch)
3741 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3742 "File-Temp-" version ".tar.gz"))
3743 (sha256
3744 (base32
3745 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
3746 (build-system perl-build-system)
3747 (propagated-inputs
3748 `(("perl-parent" ,perl-parent)))
3749 (home-page "https://metacpan.org/release/File-Temp")
3750 (synopsis "Return name and handle of a temporary file safely")
3751 (description "File::Temp can be used to create and open temporary files in
3752 a safe way.")
3753 (license (package-license perl))))
3754
3755 (define-public perl-file-which
3756 (package
3757 (name "perl-file-which")
3758 (version "1.23")
3759 (source (origin
3760 (method url-fetch)
3761 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
3762 "File-Which-" version ".tar.gz"))
3763 (sha256
3764 (base32
3765 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
3766 (build-system perl-build-system)
3767 (native-inputs `(("test-script" ,perl-test-script)))
3768 (synopsis "Portable implementation of the `which' utility")
3769 (description
3770 "File::Which was created to be able to get the paths to executable
3771 programs on systems under which the `which' program wasn't implemented in the
3772 shell.")
3773 (home-page "https://metacpan.org/release/File-Which")
3774 (license (package-license perl))))
3775
3776 (define-public perl-file-zglob
3777 (package
3778 (name "perl-file-zglob")
3779 (version "0.11")
3780 (source (origin
3781 (method url-fetch)
3782 (uri (string-append
3783 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
3784 version ".tar.gz"))
3785 (sha256
3786 (base32
3787 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
3788 (build-system perl-build-system)
3789 (native-inputs
3790 `(("perl-module-install" ,perl-module-install)))
3791 (home-page "https://metacpan.org/release/File-Zglob")
3792 (synopsis "Extended Unix style glob functionality")
3793 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
3794 functionality; it returns a list of file names that match the given pattern.
3795 For instance, it supports the @code{**/*.pm} form.")
3796 (license (package-license perl))))
3797
3798 (define-public perl-getopt-long
3799 (package
3800 (name "perl-getopt-long")
3801 (version "v2.49.1")
3802 (source
3803 (origin
3804 (method url-fetch)
3805 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
3806 "Getopt-Long-" (substring version 1) ".tar.gz"))
3807 (sha256
3808 (base32
3809 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
3810 (build-system perl-build-system)
3811 (home-page "https://metacpan.org/release/Getopt-Long")
3812 (synopsis "Module to handle parsing command line options")
3813 (description "The @code{Getopt::Long} module implements an extended getopt
3814 function called @code{GetOptions()}. It parses the command line from
3815 @code{ARGV}, recognizing and removing specified options and their possible
3816 values.
3817
3818 This function adheres to the POSIX syntax for command line options, with GNU
3819 extensions. In general, this means that options have long names instead of
3820 single letters, and are introduced with a double dash \"--\". Support for
3821 bundling of command line options, as was the case with the more traditional
3822 single-letter approach, is provided but not enabled by default.")
3823 ;; Can be used with either license.
3824 (license (list (package-license perl) gpl2+))))
3825
3826 (define-public perl-getopt-long-descriptive
3827 (package
3828 (name "perl-getopt-long-descriptive")
3829 (version "0.103")
3830 (source
3831 (origin
3832 (method url-fetch)
3833 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3834 "Getopt-Long-Descriptive-" version ".tar.gz"))
3835 (sha256
3836 (base32
3837 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
3838 (build-system perl-build-system)
3839 (native-inputs
3840 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3841 ("perl-test-fatal" ,perl-test-fatal)
3842 ("perl-test-warnings" ,perl-test-warnings)))
3843 (propagated-inputs
3844 `(("perl-params-validate" ,perl-params-validate)
3845 ("perl-sub-exporter" ,perl-sub-exporter)))
3846 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
3847 (synopsis "Getopt::Long, but simpler and more powerful")
3848 (description "Getopt::Long::Descriptive is yet another Getopt library.
3849 It's built atop Getopt::Long, and gets a lot of its features, but tries to
3850 avoid making you think about its huge array of options. It also provides
3851 usage (help) messages, data validation, and a few other useful features.")
3852 (license (package-license perl))))
3853
3854 (define-public perl-getopt-tabular
3855 (package
3856 (name "perl-getopt-tabular")
3857 (version "0.3")
3858 (source (origin
3859 (method url-fetch)
3860 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
3861 "Getopt-Tabular-" version ".tar.gz"))
3862 (sha256
3863 (base32
3864 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
3865 (build-system perl-build-system)
3866 (synopsis "Table-driven argument parsing for Perl")
3867 (description
3868 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
3869 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
3870 (home-page "https://metacpan.org/release/Getopt-Tabular")
3871 (license (package-license perl))))
3872
3873 (define-public perl-graph
3874 (package
3875 (name "perl-graph")
3876 (version "0.9704")
3877 (source
3878 (origin
3879 (method url-fetch)
3880 (uri (string-append
3881 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
3882 version
3883 ".tar.gz"))
3884 (sha256
3885 (base32
3886 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
3887 (build-system perl-build-system)
3888 (home-page "https://metacpan.org/release/Graph")
3889 (synopsis "Graph data structures and algorithms")
3890 (description "This is @code{Graph}, a Perl module for dealing with graphs,
3891 the abstract data structures.")
3892 (license (package-license perl))))
3893
3894 (define-public perl-guard
3895 (package
3896 (name "perl-guard")
3897 (version "1.023")
3898 (source (origin
3899 (method url-fetch)
3900 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
3901 version ".tar.gz"))
3902 (sha256
3903 (base32
3904 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
3905 (build-system perl-build-system)
3906 (home-page "https://metacpan.org/release/Guard")
3907 (synopsis "Safe cleanup blocks implemented as guards")
3908 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
3909 something (usually an object) that \"guards\" a resource, ensuring that it is
3910 cleaned up when expected.
3911
3912 Specifically, this module supports two different types of guards: guard
3913 objects, which execute a given code block when destroyed, and scoped guards,
3914 which are tied to the scope exit.")
3915 (license (package-license perl))))
3916
3917 (define-public perl-hash-fieldhash
3918 (package
3919 (name "perl-hash-fieldhash")
3920 (version "0.15")
3921 (source
3922 (origin
3923 (method url-fetch)
3924 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3925 "Hash-FieldHash-" version ".tar.gz"))
3926 (sha256
3927 (base32
3928 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
3929 (build-system perl-build-system)
3930 (arguments
3931 `(#:phases
3932 (modify-phases %standard-phases
3933 (add-before 'configure 'set-perl-search-path
3934 (lambda _
3935 ;; Work around "dotless @INC" build failure.
3936 (setenv "PERL5LIB"
3937 (string-append (getcwd) ":"
3938 (getenv "PERL5LIB")))
3939 #t)))))
3940 (native-inputs
3941 `(("perl-module-build" ,perl-module-build)
3942 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3943 (home-page "https://metacpan.org/release/Hash-FieldHash")
3944 (synopsis "Lightweight field hash for inside-out objects")
3945 (description "@code{Hash::FieldHash} provides the field hash mechanism
3946 which supports the inside-out technique. It is an alternative to
3947 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
3948 relic support.")
3949 (license (package-license perl))))
3950
3951 (define-public perl-hash-merge
3952 (package
3953 (name "perl-hash-merge")
3954 (version "0.200")
3955 (source
3956 (origin
3957 (method url-fetch)
3958 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3959 "Hash-Merge-" version ".tar.gz"))
3960 (sha256
3961 (base32
3962 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
3963 (build-system perl-build-system)
3964 (home-page "https://metacpan.org/release/Hash-Merge")
3965 (synopsis "Merge arbitrarily deep hashes into a single hash")
3966 (description "Hash::Merge merges two arbitrarily deep hashes into a single
3967 hash. That is, at any level, it will add non-conflicting key-value pairs from
3968 one hash to the other, and follows a set of specific rules when there are key
3969 value conflicts. The hash is followed recursively, so that deeply nested
3970 hashes that are at the same level will be merged when the parent hashes are
3971 merged.")
3972 (license (package-license perl))))
3973
3974 (define-public perl-hash-multivalue
3975 (package
3976 (name "perl-hash-multivalue")
3977 (version "0.16")
3978 (source
3979 (origin
3980 (method url-fetch)
3981 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
3982 "Hash-MultiValue-" version ".tar.gz"))
3983 (sha256
3984 (base32
3985 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
3986 (build-system perl-build-system)
3987 (home-page "https://metacpan.org/release/Hash-MultiValue")
3988 (synopsis "Store multiple values per key")
3989 (description "Hash::MultiValue is an object (and a plain hash reference)
3990 that may contain multiple values per key, inspired by MultiDict of WebOb.")
3991 (license (package-license perl))))
3992
3993 (define-public perl-importer
3994 (package
3995 (name "perl-importer")
3996 (version "0.025")
3997 (source
3998 (origin
3999 (method url-fetch)
4000 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4001 version ".tar.gz"))
4002 (sha256
4003 (base32
4004 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4005 (build-system perl-build-system)
4006 (home-page "https://metacpan.org/release/Importer")
4007 (synopsis "Alternative but compatible interface to modules that export symbols")
4008 (description "This module acts as a layer between Exporter and modules which
4009 consume exports. It is feature-compatible with Exporter, plus some much needed
4010 extras. You can use this to import symbols from any exporter that follows
4011 Exporters specification. The exporter modules themselves do not need to use or
4012 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4013 variables.")
4014 (license (package-license perl))))
4015
4016 (define-public perl-import-into
4017 (package
4018 (name "perl-import-into")
4019 (version "1.002005")
4020 (source
4021 (origin
4022 (method url-fetch)
4023 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4024 "Import-Into-" version ".tar.gz"))
4025 (sha256
4026 (base32
4027 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4028 (build-system perl-build-system)
4029 (propagated-inputs
4030 `(("perl-module-runtime" ,perl-module-runtime)))
4031 (home-page "https://metacpan.org/release/Import-Into")
4032 (synopsis "Import packages into other packages")
4033 (description "Writing exporters is a pain. Some use Exporter, some use
4034 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4035 some things are pragmas. Exporting on someone else's behalf is harder. The
4036 exporters don't provide a consistent API for this, and pragmas need to have
4037 their import method called directly, since they effect the current unit of
4038 compilation. Import::Into provides global methods to make this painless.")
4039 (license (package-license perl))))
4040
4041 (define-public perl-inc-latest
4042 (package
4043 (name "perl-inc-latest")
4044 (version "0.500")
4045 (source
4046 (origin
4047 (method url-fetch)
4048 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4049 "inc-latest-" version ".tar.gz"))
4050 (sha256
4051 (base32
4052 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4053 (build-system perl-build-system)
4054 (home-page "https://metacpan.org/release/inc-latest")
4055 (synopsis "Use modules in inc/ if newer than installed")
4056 (description "The inc::latest module helps bootstrap configure-time
4057 dependencies for CPAN distributions. These dependencies get bundled into the
4058 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4059 (license asl2.0)))
4060
4061 (define-public perl-indirect
4062 (package
4063 (name "perl-indirect")
4064 (version "0.38")
4065 (source
4066 (origin
4067 (method url-fetch)
4068 (uri (string-append
4069 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4070 version ".tar.gz"))
4071 (sha256
4072 (base32
4073 "13k5a8p903m8x3pcv9qqkzvnb8gpgq36cr3dvn3lk1ngsi9w5ydy"))))
4074 (build-system perl-build-system)
4075 (home-page "https://metacpan.org/release/indirect")
4076 (synopsis "Lexically warn about using the indirect method call syntax")
4077 (description
4078 "Indirect warns about using the indirect method call syntax.")
4079 (license (package-license perl))))
4080
4081 (define-public perl-inline
4082 (package
4083 (name "perl-inline")
4084 (version "0.81")
4085 (source
4086 (origin
4087 (method url-fetch)
4088 (uri (string-append
4089 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
4090 version ".tar.gz"))
4091 (sha256
4092 (base32
4093 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
4094 (build-system perl-build-system)
4095 (native-inputs
4096 `(("perl-test-warn" ,perl-test-warn)))
4097 (home-page "https://metacpan.org/release/Inline")
4098 (synopsis "Write Perl subroutines in other programming languages")
4099 (description "The @code{Inline} module allows you to put source code
4100 from other programming languages directly (inline) in a Perl script or
4101 module. The code is automatically compiled as needed, and then loaded
4102 for immediate access from Perl.")
4103 (license (package-license perl))))
4104
4105 (define-public perl-inline-c
4106 (package
4107 (name "perl-inline-c")
4108 (version "0.78")
4109 (source
4110 (origin
4111 (method url-fetch)
4112 (uri (string-append
4113 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4114 version ".tar.gz"))
4115 (sha256
4116 (base32
4117 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4118 (build-system perl-build-system)
4119 (native-inputs
4120 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4121 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4122 ("perl-test-warn" ,perl-test-warn)
4123 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4124 (propagated-inputs
4125 `(("perl-inline" ,perl-inline)
4126 ("perl-parse-recdescent" ,perl-parse-recdescent)
4127 ("perl-pegex" ,perl-pegex)))
4128 (home-page "https://metacpan.org/release/Inline-C")
4129 (synopsis "C Language Support for Inline")
4130 (description "The @code{Inline::C} module allows you to write Perl
4131 subroutines in C. Since version 0.30 the @code{Inline} module supports
4132 multiple programming languages and each language has its own support module.
4133 This document describes how to use Inline with the C programming language.
4134 It also goes a bit into Perl C internals.")
4135 (license (package-license perl))))
4136
4137 (define-public perl-io-all
4138 (package
4139 (name "perl-io-all")
4140 (version "0.87")
4141 (source
4142 (origin
4143 (method url-fetch)
4144 (uri (string-append
4145 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
4146 version
4147 ".tar.gz"))
4148 (sha256
4149 (base32
4150 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
4151 (build-system perl-build-system)
4152 (propagated-inputs
4153 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
4154 ("perl-file-readbackwards" ,perl-file-readbackwards)))
4155 (home-page "https://metacpan.org/release/IO-All")
4156 (synopsis "@code{IO::All} to Larry Wall!")
4157 (description "@code{IO::All} combines all of the best Perl IO modules into
4158 a single nifty object oriented interface to greatly simplify your everyday
4159 Perl IO idioms. It exports a single function called io, which returns a new
4160 @code{IO::All} object. And that object can do it all!")
4161 (license perl-license)))
4162
4163 (define-public perl-io-captureoutput
4164 (package
4165 (name "perl-io-captureoutput")
4166 (version "1.1104")
4167 (source
4168 (origin
4169 (method url-fetch)
4170 (uri (string-append
4171 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
4172 version
4173 ".tar.gz"))
4174 (sha256
4175 (base32
4176 "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
4177 (build-system perl-build-system)
4178 (home-page "https://metacpan.org/release/IO-CaptureOutput")
4179 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
4180 (description "@code{IO::CaptureOutput} provides routines for capturing
4181 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
4182 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
4183
4184 This module is no longer recommended by its maintainer. Users are advised to
4185 try @code{Capture::Tiny} instead.")
4186 (license (package-license perl))))
4187
4188 (define-public perl-io-interactive
4189 (package
4190 (name "perl-io-interactive")
4191 (version "0.0.6")
4192 (source
4193 (origin
4194 (method url-fetch)
4195 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
4196 "IO-Interactive-" version ".tar.gz"))
4197 (sha256
4198 (base32
4199 "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
4200 (build-system perl-build-system)
4201 (home-page "https://metacpan.org/release/IO-Interactive")
4202 (synopsis "Utilities for interactive I/O")
4203 (description "This module provides three utility subroutines that make it
4204 easier to develop interactive applications: is_interactive(), interactive(),
4205 and busy().")
4206 (license (package-license perl))))
4207
4208 (define-public perl-io-string
4209 (package
4210 (name "perl-io-string")
4211 (version "1.08")
4212 (source
4213 (origin
4214 (method url-fetch)
4215 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
4216 "IO-String-" version ".tar.gz"))
4217 (sha256
4218 (base32
4219 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
4220 (build-system perl-build-system)
4221 (home-page "https://metacpan.org/release/IO-String")
4222 (synopsis "Emulate file interface for in-core strings")
4223 (description "IO::String is an IO::File (and IO::Handle) compatible class
4224 that reads or writes data from in-core strings.")
4225 (license (package-license perl))))
4226
4227 (define-public perl-io-stringy
4228 (package
4229 (name "perl-io-stringy")
4230 (version "2.111")
4231 (source
4232 (origin
4233 (method url-fetch)
4234 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
4235 "IO-stringy-" version ".tar.gz"))
4236 (sha256
4237 (base32
4238 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
4239 (build-system perl-build-system)
4240 (home-page "https://metacpan.org/release/IO-stringy")
4241 (synopsis "IO:: interface for reading/writing an array of lines")
4242 (description "This toolkit primarily provides modules for performing both
4243 traditional and object-oriented i/o) on things *other* than normal
4244 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
4245 (license (package-license perl))))
4246
4247 (define-public perl-io-tty
4248 (package
4249 (name "perl-io-tty")
4250 (version "1.12")
4251 (source (origin
4252 (method url-fetch)
4253 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
4254 version ".tar.gz"))
4255 (sha256
4256 (base32
4257 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
4258 (build-system perl-build-system)
4259 (home-page "https://metacpan.org/release/IO-Tty")
4260 (synopsis "Perl interface to pseudo ttys")
4261 (description
4262 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
4263 pseudo ttys.")
4264 (license (package-license perl))))
4265
4266 (define-public perl-ipc-cmd
4267 (package
4268 (name "perl-ipc-cmd")
4269 (version "0.96")
4270 (source
4271 (origin
4272 (method url-fetch)
4273 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
4274 version ".tar.gz"))
4275 (sha256
4276 (base32
4277 "0a2v44x70gj9fd5wa8i08f9z6n14qppj1j49m1hc333wh72mzk6i"))))
4278 (build-system perl-build-system)
4279 (home-page "https://metacpan.org/release/IPC-Cmd")
4280 (synopsis "Run interactive command-line programs")
4281 (description "@code{IPC::Cmd} allows for the searching and execution of
4282 any binary on your system. It adheres to verbosity settings and is able to
4283 run interactively. It also has an option to capture output/error buffers.")
4284 (license (package-license perl))))
4285
4286 (define-public perl-ipc-run
4287 (package
4288 (name "perl-ipc-run")
4289 (version "0.94")
4290 (source
4291 (origin
4292 (method url-fetch)
4293 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
4294 "IPC-Run-" version ".tar.gz"))
4295 (sha256
4296 (base32
4297 "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
4298 (build-system perl-build-system)
4299 (propagated-inputs
4300 `(("perl-io-tty" ,perl-io-tty)))
4301 (arguments
4302 `(#:phases (modify-phases %standard-phases
4303 (add-before
4304 'check 'disable-w32-test
4305 (lambda _
4306 ;; This test fails, and we're not really interested in
4307 ;; it, so disable it.
4308 (delete-file "t/win32_compile.t")
4309 #t)))))
4310 (home-page "https://metacpan.org/release/IPC-Run")
4311 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
4312 (description "IPC::Run allows you run and interact with child processes
4313 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
4314 are supported and may be mixed. Likewise, functional and OO API styles are
4315 both supported and may be mixed.")
4316 (license (package-license perl))))
4317
4318 (define-public perl-ipc-run3
4319 (package
4320 (name "perl-ipc-run3")
4321 (version "0.048")
4322 (source (origin
4323 (method url-fetch)
4324 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4325 "IPC-Run3-" version ".tar.gz"))
4326 (sha256
4327 (base32
4328 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
4329 (build-system perl-build-system)
4330 (synopsis "Run a subprocess with input/output redirection")
4331 (description
4332 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
4333 stdout, and/or stderr to files and perl data structures. It aims to satisfy
4334 99% of the need for using system, qx, and open3 with a simple, extremely
4335 Perlish API and none of the bloat and rarely used features of IPC::Run.")
4336 (home-page "https://metacpan.org/release/IPC-Run3")
4337 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
4338 ;; licenses, any version."
4339 (license (list bsd-3 gpl3+))))
4340
4341 (define-public perl-ipc-sharelite
4342 (package
4343 (name "perl-ipc-sharelite")
4344 (version "0.17")
4345 (source
4346 (origin
4347 (method url-fetch)
4348 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
4349 "IPC-ShareLite-" version ".tar.gz"))
4350 (sha256
4351 (base32
4352 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
4353 (build-system perl-build-system)
4354 (home-page "https://metacpan.org/release/IPC-ShareLite")
4355 (synopsis "Lightweight interface to shared memory")
4356 (description "IPC::ShareLite provides a simple interface to shared memory,
4357 allowing data to be efficiently communicated between processes.")
4358 (license (package-license perl))))
4359
4360 (define-public perl-ipc-system-simple
4361 (package
4362 (name "perl-ipc-system-simple")
4363 (version "1.25")
4364 (source (origin
4365 (method url-fetch)
4366 (uri (string-append
4367 "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
4368 version ".tar.gz"))
4369 (sha256
4370 (base32
4371 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
4372 (build-system perl-build-system)
4373 (home-page "https://metacpan.org/release/IPC-System-Simple")
4374 (synopsis "Run commands simply, with detailed diagnostics")
4375 (description "Calling Perl's in-built @code{system} function is easy,
4376 determining if it was successful is hard. Let's face it, @code{$?} isn't the
4377 nicest variable in the world to play with, and even if you do check it,
4378 producing a well-formatted error string takes a lot of work.
4379
4380 @code{IPC::System::Simple} takes the hard work out of calling external
4381 commands.")
4382 (license (package-license perl))))
4383
4384 (define-public perl-json
4385 (package
4386 (name "perl-json")
4387 (version "4.01")
4388 (source
4389 (origin
4390 (method url-fetch)
4391 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
4392 "JSON-" version ".tar.gz"))
4393 (sha256
4394 (base32
4395 "1vdiw095g5rf51q8d0ipf8020jx371pma0k4sxp0wlfl76lr65b3"))))
4396 (build-system perl-build-system)
4397 (propagated-inputs
4398 `(("perl-json-xs" ,perl-json-xs))) ;recommended
4399 (home-page "https://metacpan.org/release/JSON")
4400 (synopsis "JSON encoder/decoder for Perl")
4401 (description "This module converts Perl data structures to JSON and vice
4402 versa using either JSON::XS or JSON::PP.")
4403 (license (package-license perl))))
4404
4405 (define-public perl-json-any
4406 (package
4407 (name "perl-json-any")
4408 (version "1.39")
4409 (source
4410 (origin
4411 (method url-fetch)
4412 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4413 "JSON-Any-" version ".tar.gz"))
4414 (sha256
4415 (base32
4416 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
4417 (build-system perl-build-system)
4418 (native-inputs
4419 `(("perl-test-fatal" ,perl-test-fatal)
4420 ("perl-test-requires" ,perl-test-requires)
4421 ("perl-test-warnings" ,perl-test-warnings)
4422 ("perl-test-without-module" ,perl-test-without-module)))
4423 (propagated-inputs
4424 `(("perl-namespace-clean" ,perl-namespace-clean)))
4425 (home-page "https://metacpan.org/release/JSON-Any")
4426 (synopsis "Wrapper for Perl JSON classes")
4427 (description
4428 "This module tries to provide a coherent API to bring together the
4429 various JSON modules currently on CPAN. This module will allow you to code to
4430 any JSON API and have it work regardless of which JSON module is actually
4431 installed.")
4432 (license (package-license perl))))
4433
4434 (define-public perl-json-maybexs
4435 (package
4436 (name "perl-json-maybexs")
4437 (version "1.004000")
4438 (source
4439 (origin
4440 (method url-fetch)
4441 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4442 "JSON-MaybeXS-" version ".tar.gz"))
4443 (sha256
4444 (base32
4445 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
4446 (build-system perl-build-system)
4447 (native-inputs
4448 `(("perl-test-without-module" ,perl-test-without-module)))
4449 (inputs
4450 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
4451 (home-page "https://metacpan.org/release/JSON-MaybeXS")
4452 (synopsis "Cpanel::JSON::XS with fallback")
4453 (description "This module first checks to see if either Cpanel::JSON::XS
4454 or JSON::XS is already loaded, in which case it uses that module. Otherwise
4455 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
4456 either uses the first module it finds or throws an error.")
4457 (license (package-license perl))))
4458
4459 (define-public perl-json-xs
4460 (package
4461 (name "perl-json-xs")
4462 (version "4.0")
4463 (source
4464 (origin
4465 (method url-fetch)
4466 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4467 "JSON-XS-" version ".tar.gz"))
4468 (sha256
4469 (base32
4470 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
4471 (build-system perl-build-system)
4472 (native-inputs
4473 `(("perl-canary-stability" ,perl-canary-stability)))
4474 (propagated-inputs
4475 `(("perl-common-sense" ,perl-common-sense)
4476 ("perl-types-serialiser" ,perl-types-serialiser)))
4477 (home-page "https://metacpan.org/release/JSON-XS")
4478 (synopsis "JSON serialising/deserialising for Perl")
4479 (description "This module converts Perl data structures to JSON and vice
4480 versa.")
4481 (license (package-license perl))))
4482
4483 (define-public perl-lexical-sealrequirehints
4484 (package
4485 (name "perl-lexical-sealrequirehints")
4486 (version "0.011")
4487 (source
4488 (origin
4489 (method url-fetch)
4490 (uri (string-append
4491 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
4492 version
4493 ".tar.gz"))
4494 (sha256
4495 (base32
4496 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
4497 (build-system perl-build-system)
4498 (native-inputs
4499 `(("perl-module-build" ,perl-module-build)))
4500 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
4501 (synopsis "Prevent leakage of lexical hints")
4502 (description
4503 "Lexical::SealRequireHints prevents leakage of lexical hints")
4504 (license (package-license perl))))
4505
4506 (define-public perl-log-any
4507 (package
4508 (name "perl-log-any")
4509 (version "1.040")
4510 (source
4511 (origin
4512 (method url-fetch)
4513 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
4514 version ".tar.gz"))
4515 (sha256
4516 (base32
4517 "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
4518 (build-system perl-build-system)
4519 (home-page "https://metacpan.org/release/Log-Any")
4520 (synopsis "Bringing loggers and listeners together")
4521 (description "@code{Log::Any} provides a standard log production API for
4522 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
4523 for log consumption, whether screen, file or another logging mechanism like
4524 @code{Log::Dispatch} or @code{Log::Log4perl}.
4525
4526 A CPAN module uses @code{Log::Any} to get a log producer object. An
4527 application, in turn, may choose one or more logging mechanisms via
4528 @code{Log::Any::Adapter}, or none at all.
4529
4530 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
4531 itself, which makes it appropriate for even small CPAN modules to use. It
4532 defaults to 'null' logging activity, so a module can safely log without
4533 worrying about whether the application has chosen (or will ever choose) a
4534 logging mechanism.")
4535 (license (package-license perl))))
4536
4537 (define-public perl-log-any-adapter-log4perl
4538 (package
4539 (name "perl-log-any-adapter-log4perl")
4540 (version "0.09")
4541 (source
4542 (origin
4543 (method url-fetch)
4544 (uri (string-append
4545 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
4546 version
4547 ".tar.gz"))
4548 (sha256
4549 (base32
4550 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
4551 (build-system perl-build-system)
4552 (propagated-inputs
4553 `(("perl-log-any" ,perl-log-any)
4554 ("perl-log-log4perl" ,perl-log-log4perl)))
4555 (home-page
4556 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
4557 (synopsis "Log::Any adapter for Log::Log4perl")
4558 (description "@code{Log::Any::Adapter::Log4perl} provides a
4559 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
4560 (license (package-license perl))))
4561
4562 (define-public perl-log-log4perl
4563 (package
4564 (name "perl-log-log4perl")
4565 (version "1.49")
4566 (source
4567 (origin
4568 (method url-fetch)
4569 (uri (string-append
4570 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
4571 version
4572 ".tar.gz"))
4573 (sha256
4574 (base32
4575 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
4576 (build-system perl-build-system)
4577 (home-page
4578 "https://metacpan.org/release/Log-Log4perl")
4579 (synopsis "Log4j implementation for Perl")
4580 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
4581 the logging behaviour of your system from the outside. It implements the
4582 widely popular (Java-based) Log4j logging package in pure Perl.")
4583 (license (package-license perl))))
4584
4585 (define-public perl-log-report-optional
4586 (package
4587 (name "perl-log-report-optional")
4588 (version "1.01")
4589 (source (origin
4590 (method url-fetch)
4591 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4592 "Log-Report-Optional-" version ".tar.gz"))
4593 (sha256
4594 (base32
4595 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
4596 (build-system perl-build-system)
4597 (propagated-inputs
4598 `(("perl-string-print" ,perl-string-print)))
4599 (home-page "https://metacpan.org/release/Log-Report-Optional")
4600 (synopsis "Log::Report in the lightest form")
4601 (description
4602 "This module allows libraries to have a dependency to a small module
4603 instead of the full Log-Report distribution. The full power of
4604 @code{Log::Report} is only released when the main program uses that module.
4605 In that case, the module using the 'Optional' will also use the full
4606 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
4607 version.")
4608 (license (package-license perl))))
4609
4610 (define-public perl-log-report
4611 (package
4612 (name "perl-log-report")
4613 (version "1.10")
4614 (source (origin
4615 (method url-fetch)
4616 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
4617 "Log-Report-" version ".tar.gz"))
4618 (sha256
4619 (base32
4620 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
4621 (build-system perl-build-system)
4622 (propagated-inputs
4623 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
4624 ("perl-log-report-optional" ,perl-log-report-optional)
4625 ("perl-string-print" ,perl-string-print)))
4626 (home-page "https://metacpan.org/release/Log-Report")
4627 (synopsis "Get messages to users and logs")
4628 (description
4629 "@code{Log::Report} combines three tasks which are closely related in
4630 one: logging, exceptions, and translations.")
4631 (license (package-license perl))))
4632
4633 (define-public perl-libintl-perl
4634 (package
4635 (name "perl-libintl-perl")
4636 (version "1.29")
4637 (source
4638 (origin
4639 (method url-fetch)
4640 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
4641 "libintl-perl-" version ".tar.gz"))
4642 (sha256
4643 (base32
4644 "1cgvrgh4axd8jlr6497ndgphgvgnqc1axd306460hskdvc85z4vq"))))
4645 (build-system perl-build-system)
4646 (arguments
4647 `(#:phases
4648 (modify-phases %standard-phases
4649 (add-before 'configure 'set-perl-search-path
4650 (lambda _
4651 ;; Work around "dotless @INC" build failure.
4652 (setenv "PERL5LIB" (string-append (getcwd) ":"
4653 (getenv "PERL5LIB")))
4654 #t)))))
4655 (propagated-inputs
4656 `(("perl-file-sharedir" ,perl-file-sharedir)))
4657 (home-page "https://metacpan.org/release/libintl-perl")
4658 (synopsis "High-level interface to Uniforum message translation")
4659 (description "This package is an internationalization library for Perl
4660 that aims to be compatible with the Uniforum message translations system as
4661 implemented for example in GNU gettext.")
4662 (license gpl3+)))
4663
4664 (define-public perl-lingua-translit
4665 (package
4666 (name "perl-lingua-translit")
4667 (version "0.28")
4668 (source
4669 (origin
4670 (method url-fetch)
4671 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
4672 "Lingua-Translit-" version ".tar.gz"))
4673 (sha256
4674 (base32
4675 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
4676 (build-system perl-build-system)
4677 (home-page "https://metacpan.org/release/Lingua-Translit")
4678 (synopsis "Transliterate text between writing systems")
4679 (description "@code{Lingua::Translit} can be used to convert text from one
4680 writing system to another, based on national or international transliteration
4681 tables. Where possible a reverse transliteration is supported.")
4682 (license (package-license perl))))
4683
4684 (define-public perl-list-allutils
4685 (package
4686 (name "perl-list-allutils")
4687 (version "0.09")
4688 (source
4689 (origin
4690 (method url-fetch)
4691 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4692 "List-AllUtils-" version ".tar.gz"))
4693 (sha256
4694 (base32
4695 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
4696 (build-system perl-build-system)
4697 (native-inputs
4698 `(("perl-test-warnings" ,perl-test-warnings)))
4699 (propagated-inputs
4700 `(("perl-list-moreutils" ,perl-list-moreutils)
4701 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4702 (home-page "https://metacpan.org/release/List-AllUtils")
4703 (synopsis "Combination of List::Util and List::MoreUtils")
4704 (description "This module exports all of the functions that either
4705 List::Util or List::MoreUtils defines, with preference to List::Util.")
4706 (license (package-license perl))))
4707
4708 (define-public perl-list-compare
4709 (package
4710 (name "perl-list-compare")
4711 (version "0.53")
4712 (source
4713 (origin
4714 (method url-fetch)
4715 (uri (string-append
4716 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
4717 version
4718 ".tar.gz"))
4719 (sha256
4720 (base32
4721 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
4722 (build-system perl-build-system)
4723 (native-inputs
4724 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
4725 (home-page "https://metacpan.org/release/List-Compare")
4726 (synopsis "Compare elements of two or more lists")
4727 (description "@code{List::Compare} provides a module to perform
4728 comparative operations on two or more lists. Provided operations include
4729 intersections, unions, unique elements, complements and many more.")
4730 (license (package-license perl))))
4731
4732 (define-public perl-list-moreutils
4733 (package
4734 (name "perl-list-moreutils")
4735 (version "0.428")
4736 (source
4737 (origin
4738 (method url-fetch)
4739 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4740 "List-MoreUtils-" version ".tar.gz"))
4741 (sha256
4742 (base32
4743 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
4744 (build-system perl-build-system)
4745 (arguments
4746 `(#:phases
4747 (modify-phases %standard-phases
4748 (add-before 'configure 'set-perl-search-path
4749 (lambda _
4750 ;; Work around "dotless @INC" build failure.
4751 (setenv "PERL5LIB"
4752 (string-append (getcwd) ":"
4753 (getenv "PERL5LIB")))
4754 #t)))))
4755 (native-inputs
4756 `(("perl-config-autoconf" ,perl-config-autoconf)
4757 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4758 (propagated-inputs
4759 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4760 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
4761 (home-page "https://metacpan.org/release/List-MoreUtils")
4762 (synopsis "Provide the stuff missing in List::Util")
4763 (description "List::MoreUtils provides some trivial but commonly needed
4764 functionality on lists which is not going to go into List::Util.")
4765 (license (package-license perl))))
4766
4767 (define-public perl-list-moreutils-xs
4768 (package
4769 (name "perl-list-moreutils-xs")
4770 (version "0.428")
4771 (source
4772 (origin
4773 (method url-fetch)
4774 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
4775 version ".tar.gz"))
4776 (sha256
4777 (base32
4778 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
4779 (build-system perl-build-system)
4780 (native-inputs
4781 `(("perl-config-autoconf" ,perl-config-autoconf)
4782 ("perl-inc-latest" ,perl-inc-latest)
4783 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4784 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
4785 (synopsis "Provide the stuff missing in List::Util in XS")
4786 (description "@code{List::MoreUtils::XS} provides some trivial but
4787 commonly needed functionality on lists which is not going to go into
4788 @code{List::Util}.")
4789 (license asl2.0)))
4790
4791 (define-public perl-list-someutils
4792 (package
4793 (name "perl-list-someutils")
4794 (version "0.52")
4795 (source
4796 (origin
4797 (method url-fetch)
4798 (uri (string-append
4799 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
4800 version
4801 ".tar.gz"))
4802 (sha256
4803 (base32
4804 "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
4805 (build-system perl-build-system)
4806 (native-inputs
4807 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
4808 (inputs
4809 `(("perl-exporter-tiny" ,perl-exporter-tiny)
4810 ("perl-module-implementation"
4811 ,perl-module-implementation)))
4812 (home-page "https://metacpan.org/release/List-SomeUtils")
4813 (synopsis "Provide the stuff missing in List::Util")
4814 (description "@code{List::SomeUtils} provides some trivial but commonly
4815 needed functionality on lists which is not going to go into @code{List::Util}.
4816
4817 All of the below functions are implementable in only a couple of lines of Perl
4818 code. Using the functions from this module however should give slightly
4819 better performance as everything is implemented in C. The pure-Perl
4820 implementation of these functions only serves as a fallback in case the C
4821 portions of this module couldn't be compiled on this machine.")
4822 (license (package-license perl))))
4823
4824 (define-public perl-mailtools
4825 (package
4826 (name "perl-mailtools")
4827 (version "2.20")
4828 (source
4829 (origin
4830 (method url-fetch)
4831 (uri (string-append
4832 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
4833 version
4834 ".tar.gz"))
4835 (sha256
4836 (base32
4837 "15iizg2x1w7ca0r8rn3wwhp7w160ljvf55prspljwd6cm7vhcmpm"))))
4838 (build-system perl-build-system)
4839 (propagated-inputs
4840 `(("perl-timedate" ,perl-timedate)))
4841 (home-page
4842 "https://metacpan.org/release/MailTools")
4843 (synopsis "Bundle of ancient email modules")
4844 (description "MailTools contains the following modules:
4845 @table @asis
4846 @item Mail::Address
4847 Parse email address from a header line.
4848 @item Mail::Cap
4849 Interpret mailcap files: mappings of file-types to applications as used by
4850 many command-line email programs.
4851 @item Mail::Field
4852 Simplifies access to (some) email header fields. Used by Mail::Header.
4853 @item Mail::Filter
4854 Process Mail::Internet messages.
4855 @item Mail::Header
4856 Collection of Mail::Field objects, representing the header of a Mail::Internet
4857 object.
4858 @item Mail::Internet
4859 Represents a single email message, with header and body.
4860 @item Mail::Mailer
4861 Send Mail::Internet emails via direct smtp or local MTA's.
4862 @item Mail::Send
4863 Build a Mail::Internet object, and then send it out using Mail::Mailer.
4864 @item Mail::Util
4865 \"Smart functions\" you should not depend on.
4866 @end table")
4867 (license perl-license)))
4868
4869 (define-public perl-math-bezier
4870 (package
4871 (name "perl-math-bezier")
4872 (version "0.01")
4873 (source (origin
4874 (method url-fetch)
4875 (uri (string-append
4876 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
4877 version ".tar.gz"))
4878 (sha256
4879 (base32
4880 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
4881 (build-system perl-build-system)
4882 (home-page "https://metacpan.org/release/Math-Bezier")
4883 (synopsis "Solution of bezier curves")
4884 (description "This module implements the algorithm for the solution of Bezier
4885 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
4886 Bezier Curve Drawing\".")
4887 (license perl-license)))
4888
4889 (define-public perl-math-round
4890 (package
4891 (name "perl-math-round")
4892 (version "0.07")
4893 (source (origin
4894 (method url-fetch)
4895 (uri (string-append
4896 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
4897 version ".tar.gz"))
4898 (sha256
4899 (base32
4900 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
4901 (build-system perl-build-system)
4902 (home-page "https://metacpan.org/release/Math-Round")
4903 (synopsis "Perl extension for rounding numbers")
4904 (description "@code{Math::Round} provides functions to round numbers,
4905 both positive and negative, in various ways.")
4906 (license perl-license)))
4907
4908 (define-public perl-memoize
4909 (package
4910 (name "perl-memoize")
4911 (version "1.03")
4912 (source (origin
4913 (method url-fetch)
4914 (uri (string-append
4915 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
4916 version".tgz"))
4917 (sha256
4918 (base32
4919 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
4920 (build-system perl-build-system)
4921 (home-page "https://metacpan.org/release/Memoize")
4922 (synopsis "Make functions faster by trading space for time")
4923 (description "This package transparently speeds up functions by caching
4924 return values, trading space for time.")
4925 (license perl-license)))
4926
4927 (define-public perl-memoize-expirelru
4928 (package
4929 (name "perl-memoize-expirelru")
4930 (version "0.56")
4931 (source
4932 (origin
4933 (method url-fetch)
4934 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4935 "Memoize-ExpireLRU-" version ".tar.gz"))
4936 (sha256
4937 (base32
4938 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
4939 (build-system perl-build-system)
4940 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
4941 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
4942 (description "This module implements an expiry policy for Memoize that
4943 follows LRU semantics, that is, the last n results, where n is specified as
4944 the argument to the CACHESIZE parameter, will be cached.")
4945 (license (package-license perl))))
4946
4947 (define-public perl-mime-charset
4948 (package
4949 (name "perl-mime-charset")
4950 (version "1.012.2")
4951 (source (origin
4952 (method url-fetch)
4953 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
4954 "MIME-Charset-" version ".tar.gz"))
4955 (sha256
4956 (base32
4957 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
4958 (build-system perl-build-system)
4959 (home-page "https://metacpan.org/release/MIME-Charset")
4960 (synopsis "Charset information for MIME messages")
4961 (description
4962 "@code{MIME::Charset} provides information about character sets used for
4963 MIME messages on Internet.")
4964 (license (package-license perl))))
4965
4966 (define-public perl-mime-tools
4967 (package
4968 (name "perl-mime-tools")
4969 (version "5.509")
4970 (source
4971 (origin
4972 (method url-fetch)
4973 (uri (string-append
4974 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
4975 version
4976 ".tar.gz"))
4977 (sha256
4978 (base32
4979 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
4980 (build-system perl-build-system)
4981 (native-inputs
4982 `(("perl-test-deep" ,perl-test-deep)))
4983 (inputs
4984 `(("perl-convert-binhex" ,perl-convert-binhex)))
4985 (propagated-inputs
4986 `(("perl-mailtools" ,perl-mailtools)))
4987 (home-page
4988 "https://metacpan.org/release/MIME-tools")
4989 (synopsis "Tools to manipulate MIME messages")
4990 (description
4991 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
4992 decoding, and generating single- or multipart (even nested multipart) MIME
4993 messages.")
4994 (license perl-license)))
4995
4996 (define-public perl-mime-types
4997 (package
4998 (name "perl-mime-types")
4999 (version "2.17")
5000 (source
5001 (origin
5002 (method url-fetch)
5003 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5004 "MIME-Types-" version ".tar.gz"))
5005 (sha256
5006 (base32
5007 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
5008 (build-system perl-build-system)
5009 (home-page "https://metacpan.org/release/MIME-Types")
5010 (synopsis "Definition of MIME types")
5011 (description "This module provides a list of known mime-types, combined
5012 from various sources. For instance, it contains all IANA types and the
5013 knowledge of Apache.")
5014 (license (package-license perl))))
5015
5016 (define-public perl-mixin-linewise
5017 (package
5018 (name "perl-mixin-linewise")
5019 (version "0.108")
5020 (source (origin
5021 (method url-fetch)
5022 (uri (string-append
5023 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5024 version ".tar.gz"))
5025 (sha256
5026 (base32
5027 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5028 (build-system perl-build-system)
5029 (inputs
5030 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5031 ("perl-sub-exporter" ,perl-sub-exporter)))
5032 (home-page "https://metacpan.org/release/Mixin-Linewise")
5033 (synopsis "Write your linewise code for handles; this does the rest")
5034 (description "It's boring to deal with opening files for IO, converting
5035 strings to handle-like objects, and all that. With
5036 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5037 just write a method to handle handles, and methods for handling strings and
5038 file names are added for you.")
5039 (license (package-license perl))))
5040
5041 (define-public perl-modern-perl
5042 (package
5043 (name "perl-modern-perl")
5044 (version "1.20170117")
5045 (source
5046 (origin
5047 (method url-fetch)
5048 (uri (string-append
5049 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5050 version ".tar.gz"))
5051 (sha256
5052 (base32
5053 "0a1n9c04zhs1a1km1zi0d1hj78d10qv3bhxr4bdi4chnc4saiwjx"))))
5054 (build-system perl-build-system)
5055 (native-inputs
5056 `(("perl-module-build" ,perl-module-build)))
5057 (home-page
5058 "https://metacpan.org/release/Modern-Perl")
5059 (synopsis
5060 "Enable all of the features of Modern Perl with one import")
5061 (description "@code{Modern::Perl} provides a simple way to enable
5062 multiple, by now, standard libraries in a Perl program.")
5063 (license (package-license perl))))
5064
5065 (define-public perl-module-build-tiny
5066 (package
5067 (name "perl-module-build-tiny")
5068 (version "0.039")
5069 (source
5070 (origin
5071 (method url-fetch)
5072 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5073 "Module-Build-Tiny-" version ".tar.gz"))
5074 (sha256
5075 (base32
5076 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
5077 (build-system perl-build-system)
5078 (native-inputs
5079 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5080 ("perl-extutils-config" ,perl-extutils-config)
5081 ("perl-extutils-helpers" ,perl-extutils-helpers)
5082 ("perl-test-harness" ,perl-test-harness)))
5083 (propagated-inputs
5084 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
5085 ("perl-extutils-config" ,perl-extutils-config)
5086 ("perl-extutils-helpers" ,perl-extutils-helpers)
5087 ("perl-test-harness" ,perl-test-harness)))
5088 (home-page "https://metacpan.org/release/Module-Build-Tiny")
5089 (synopsis "Tiny replacement for Module::Build")
5090 (description "Many Perl distributions use a Build.PL file instead of a
5091 Makefile.PL file to drive distribution configuration, build, test and
5092 installation. Traditionally, Build.PL uses Module::Build as the underlying
5093 build system. This module provides a simple, lightweight, drop-in
5094 replacement. Whereas Module::Build has over 6,700 lines of code; this module
5095 has less than 120, yet supports the features needed by most distributions.")
5096 (license (package-license perl))))
5097
5098 (define-public perl-module-build-xsutil
5099 (package
5100 (name "perl-module-build-xsutil")
5101 (version "0.16")
5102 (source (origin
5103 (method url-fetch)
5104 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
5105 "Module-Build-XSUtil-" version ".tar.gz"))
5106 (sha256
5107 (base32
5108 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
5109 (build-system perl-build-system)
5110 (native-inputs
5111 `(("perl-capture-tiny" ,perl-capture-tiny)
5112 ("perl-cwd-guard" ,perl-cwd-guard)
5113 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
5114 ("perl-module-build" ,perl-module-build)))
5115 (propagated-inputs
5116 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
5117 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
5118 (synopsis "Module::Build class for building XS modules")
5119 (description
5120 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
5121 for support building XS modules.
5122
5123 This is a list of a new parameters in the @code{Module::Build::new} method:
5124
5125 @enumerate
5126 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
5127 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
5128 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
5129 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
5130 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
5131 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
5132 @file{ppport.h}, and defines some portability stuff which are not supported by
5133 @file{ppport.h}.
5134
5135 It is ported from @code{Module::Install::XSUtil}.
5136 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
5137 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
5138 debug options.
5139 @end enumerate")
5140 (license (package-license perl))))
5141
5142 (define-public perl-module-find
5143 (package
5144 (name "perl-module-find")
5145 (version "0.13")
5146 (source
5147 (origin
5148 (method url-fetch)
5149 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
5150 "Module-Find-" version ".tar.gz"))
5151 (sha256
5152 (base32
5153 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
5154 (build-system perl-build-system)
5155 (home-page "https://metacpan.org/release/Module-Find")
5156 (synopsis "Find and use installed modules in a (sub)category")
5157 (description "Module::Find lets you find and use modules in categories.
5158 This can be useful for auto-detecting driver or plugin modules. You can
5159 differentiate between looking in the category itself or in all
5160 subcategories.")
5161 (license (package-license perl))))
5162
5163 (define-public perl-module-implementation
5164 (package
5165 (name "perl-module-implementation")
5166 (version "0.09")
5167 (source
5168 (origin
5169 (method url-fetch)
5170 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5171 "Module-Implementation-" version ".tar.gz"))
5172 (sha256
5173 (base32
5174 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
5175 (build-system perl-build-system)
5176 (native-inputs
5177 `(("perl-test-fatal" ,perl-test-fatal)
5178 ("perl-test-requires" ,perl-test-requires)))
5179 (propagated-inputs
5180 `(("perl-module-runtime" ,perl-module-runtime)
5181 ("perl-try-tiny" ,perl-try-tiny)))
5182 (home-page "https://metacpan.org/release/Module-Implementation")
5183 (synopsis "Loads alternate underlying implementations for a module")
5184 (description "This module abstracts out the process of choosing one of
5185 several underlying implementations for a module. This can be used to provide
5186 XS and pure Perl implementations of a module, or it could be used to load an
5187 implementation for a given OS or any other case of needing to provide multiple
5188 implementations.")
5189 (license artistic2.0)))
5190
5191 (define-public perl-module-install
5192 (package
5193 (name "perl-module-install")
5194 (version "1.19")
5195 (source
5196 (origin
5197 (method url-fetch)
5198 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5199 "Module-Install-" version ".tar.gz"))
5200 (sha256
5201 (base32
5202 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
5203 (build-system perl-build-system)
5204 (native-inputs
5205 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
5206 (propagated-inputs
5207 `(("perl-archive-zip" ,perl-archive-zip)
5208 ("perl-file-homedir" ,perl-file-homedir)
5209 ("perl-file-remove" ,perl-file-remove)
5210 ("perl-json" ,perl-json)
5211 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
5212 ;; would cause a circular dependency with (gnu packages web), so we
5213 ;; leave it out. It may be resolved at runtime, however.
5214 ;("perl-libwww-perl" ,perl-libwww-perl)
5215 ("perl-module-scandeps" ,perl-module-scandeps)
5216 ("perl-par-dist" ,perl-par-dist)
5217 ("perl-yaml-tiny" ,perl-yaml-tiny)))
5218 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
5219 ;; character handling.
5220 (arguments `(#:tests? #f))
5221 (home-page "https://metacpan.org/release/Module-Install")
5222 (synopsis "Standalone, extensible Perl module installer")
5223 (description "Module::Install is a package for writing installers for
5224 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
5225 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
5226 installation version 5.005 or newer.")
5227 (license (package-license perl))))
5228
5229 (define-public perl-module-manifest
5230 (package
5231 (name "perl-module-manifest")
5232 (version "1.09")
5233 (source
5234 (origin
5235 (method url-fetch)
5236 (uri (string-append
5237 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
5238 version ".tar.gz"))
5239 (sha256
5240 (base32
5241 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
5242 (build-system perl-build-system)
5243 (native-inputs
5244 `(("perl-test-exception" ,perl-test-exception)
5245 ("perl-test-warn" ,perl-test-warn)))
5246 (propagated-inputs
5247 `(("perl-params-util" ,perl-params-util)))
5248 (home-page "https://metacpan.org/release/Module-Manifest")
5249 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
5250 (description
5251 "@code{Module::Manifest} is a simple utility module created originally for
5252 use in @code{Module::Inspector}.
5253
5254 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
5255 examine the contents, and perform some simple tasks. It can also load the
5256 @file{MANIFEST.SKIP} file and check that.")
5257 (license perl-license)))
5258
5259 (define-public perl-module-pluggable
5260 (package
5261 (name "perl-module-pluggable")
5262 (version "5.2")
5263 (source
5264 (origin
5265 (method url-fetch)
5266 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
5267 "Module-Pluggable-" version ".tar.gz"))
5268 (sha256
5269 (base32
5270 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
5271 (patches (search-patches "perl-module-pluggable-search.patch"))))
5272 (build-system perl-build-system)
5273 (home-page "https://metacpan.org/release/Module-Pluggable")
5274 (synopsis "Give your Perl module the ability to have plugins")
5275 (description "This module provides a simple but extensible way of having
5276 'plugins' for your Perl module.")
5277 (license (package-license perl))))
5278
5279 (define-public perl-module-runtime
5280 (package
5281 (name "perl-module-runtime")
5282 (version "0.016")
5283 (source
5284 (origin
5285 (method url-fetch)
5286 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
5287 "Module-Runtime-" version ".tar.gz"))
5288 (sha256
5289 (base32
5290 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
5291 (build-system perl-build-system)
5292 (native-inputs `(("perl-module-build" ,perl-module-build)))
5293 (home-page "https://metacpan.org/release/Module-Runtime")
5294 (synopsis "Perl runtime module handling")
5295 (description "The functions exported by this module deal with runtime
5296 handling of Perl modules, which are normally handled at compile time.")
5297 (license (package-license perl))))
5298
5299 (define-public perl-module-runtime-conflicts
5300 (package
5301 (name "perl-module-runtime-conflicts")
5302 (version "0.003")
5303 (source
5304 (origin
5305 (method url-fetch)
5306 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5307 "Module-Runtime-Conflicts-" version ".tar.gz"))
5308 (sha256
5309 (base32
5310 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
5311 (build-system perl-build-system)
5312 (native-inputs
5313 `(("perl-module-build" ,perl-module-build)))
5314 (propagated-inputs
5315 `(("perl-module-runtime" ,perl-module-runtime)
5316 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
5317 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
5318 (synopsis "Provide information on conflicts for Module::Runtime")
5319 (description "This module provides conflicts checking for Module::Runtime,
5320 which had a recent release that broke some versions of Moose. It is called
5321 from Moose::Conflicts and moose-outdated.")
5322 (license (package-license perl))))
5323
5324 (define-public perl-module-scandeps
5325 (package
5326 (name "perl-module-scandeps")
5327 (version "1.27")
5328 (source
5329 (origin
5330 (method url-fetch)
5331 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
5332 "Module-ScanDeps-" version ".tar.gz"))
5333 (sha256
5334 (base32
5335 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
5336 (build-system perl-build-system)
5337 (native-inputs
5338 `(("perl-test-requires" ,perl-test-requires)))
5339 (home-page "https://metacpan.org/release/Module-ScanDeps")
5340 (synopsis "Recursively scan Perl code for dependencies")
5341 (description "Module::ScanDeps is a module to recursively scan Perl
5342 programs for dependencies.")
5343 (license (package-license perl))))
5344
5345 (define-public perl-module-util
5346 (package
5347 (name "perl-module-util")
5348 (version "1.09")
5349 (source
5350 (origin
5351 (method url-fetch)
5352 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
5353 "Module-Util-" version ".tar.gz"))
5354 (sha256
5355 (base32
5356 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
5357 (build-system perl-build-system)
5358 (native-inputs
5359 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
5360 (home-page "https://metacpan.org/release/Module-Util")
5361 (synopsis "Module name tools and transformations")
5362 (description "This module provides a few useful functions for manipulating
5363 module names. Its main aim is to centralise some of the functions commonly
5364 used by modules that manipulate other modules in some way, like converting
5365 module names to relative paths.")
5366 (license (package-license perl))))
5367
5368 (define-public perl-moo
5369 (package
5370 (name "perl-moo")
5371 (version "1.007000")
5372 (source
5373 (origin
5374 (method url-fetch)
5375 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5376 "Moo-" version ".tar.gz"))
5377 (sha256
5378 (base32
5379 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
5380 (build-system perl-build-system)
5381 (native-inputs
5382 `(("perl-test-fatal" ,perl-test-fatal)))
5383 (propagated-inputs
5384 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
5385 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
5386 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5387 ("perl-import-into" ,perl-import-into)
5388 ("perl-module-runtime" ,perl-module-runtime)
5389 ("perl-role-tiny" ,perl-role-tiny)
5390 ("perl-strictures" ,perl-strictures)))
5391 (home-page "https://metacpan.org/release/Moo")
5392 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
5393 (description "Moo is an extremely light-weight Object Orientation system.
5394 It allows one to concisely define objects and roles with a convenient syntax
5395 that avoids the details of Perl's object system. Moo contains a subset of
5396 Moose and is optimised for rapid startup.")
5397 (license (package-license perl))))
5398
5399 ;; Some packages don't yet work with this newer version of ‘Moo’.
5400 (define-public perl-moo-2
5401 (package
5402 (inherit perl-moo)
5403 (name "perl-moo-2")
5404 (version "2.003004")
5405 (source
5406 (origin
5407 (method url-fetch)
5408 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5409 "Moo-" version ".tar.gz"))
5410 (sha256
5411 (base32
5412 "1qciprcgb4661g2g4ks0fxkx5gbjvn7h9yfg0nzflqz9z0jvdfzq"))))
5413 (propagated-inputs
5414 `(("perl-role-tiny" ,perl-role-tiny-2)
5415 ("perl-sub-name" ,perl-sub-name)
5416 ("perl-sub-quote" ,perl-sub-quote)
5417 ("perl-strictures" ,perl-strictures-2)
5418 ,@(alist-delete "perl-strictures"
5419 (alist-delete "perl-role-tiny"
5420 (package-propagated-inputs perl-moo)))))
5421 (arguments
5422 `(#:phases
5423 (modify-phases %standard-phases
5424 (add-before 'configure 'set-perl-search-path
5425 (lambda _
5426 ;; Use perl-strictures for testing.
5427 (setenv "MOO_FATAL_WARNINGS" "=1")
5428 #t)))))))
5429
5430 (define-public perl-moose
5431 (package
5432 (name "perl-moose")
5433 (version "2.2004")
5434 (source (origin
5435 (method url-fetch)
5436 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5437 "Moose-" version ".tar.gz"))
5438 (sha256
5439 (base32
5440 "1c6jx2lnrh2mi9wlj2c0sirj6345xmbpr34ax8d85mcginzq3j74"))))
5441 (build-system perl-build-system)
5442 (native-inputs
5443 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5444 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5445 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
5446 ("perl-test-fatal" ,perl-test-fatal)
5447 ("perl-test-requires" ,perl-test-requires)
5448 ("perl-test-warnings" ,perl-test-warnings)))
5449 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
5450 ;; # === Other Modules ===
5451 ;; #
5452 ;; # Module Want Have
5453 ;; # ---------------------------- ---- -------
5454 ;; # Algorithm::C3 any missing
5455 ;; # DBM::Deep any missing
5456 ;; # DateTime any missing
5457 ;; # DateTime::Calendar::Mayan any missing
5458 ;; # DateTime::Format::MySQL any missing
5459 ;; # Declare::Constraints::Simple any missing
5460 ;; # Dist::CheckConflicts any 0.11
5461 ;; # HTTP::Headers any missing
5462 ;; # IO::File any 1.16
5463 ;; # IO::String any missing
5464 ;; # Locale::US any missing
5465 ;; # Module::Refresh any missing
5466 ;; # MooseX::NonMoose any missing
5467 ;; # Params::Coerce any missing
5468 ;; # Regexp::Common any missing
5469 ;; # SUPER any missing
5470 ;; # Test::Deep any missing
5471 ;; # Test::DependentModules any missing
5472 ;; # Test::LeakTrace any missing
5473 ;; # Test::Output any missing
5474 ;; # URI any missing
5475 (propagated-inputs
5476 `(("perl-class-load" ,perl-class-load)
5477 ("perl-class-load-xs" ,perl-class-load-xs)
5478 ("perl-data-optlist" ,perl-data-optlist)
5479 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5480 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
5481 ("perl-devel-partialdump" ,perl-devel-partialdump)
5482 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
5483 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
5484 ("perl-eval-closure" ,perl-eval-closure)
5485 ("perl-list-moreutils" ,perl-list-moreutils)
5486 ("perl-module-runtime" ,perl-module-runtime)
5487 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
5488 ("perl-mro-compat" ,perl-mro-compat)
5489 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
5490 ("perl-package-stash" ,perl-package-stash)
5491 ("perl-package-stash-xs" ,perl-package-stash-xs)
5492 ("perl-params-util" ,perl-params-util)
5493 ("perl-parent" ,perl-parent)
5494 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
5495 ("perl-sub-exporter" ,perl-sub-exporter)
5496 ("perl-sub-name" ,perl-sub-name)
5497 ("perl-task-weaken" ,perl-task-weaken)
5498 ("perl-try-tiny" ,perl-try-tiny)))
5499 (home-page "https://metacpan.org/release/Moose")
5500 (synopsis "Postmodern object system for Perl 5")
5501 (description
5502 "Moose is a complete object system for Perl 5. It provides keywords for
5503 attribute declaration, object construction, inheritance, and maybe more. With
5504 Moose, you define your class declaratively, without needing to know about
5505 blessed hashrefs, accessor methods, and so on. You can concentrate on the
5506 logical structure of your classes, focusing on \"what\" rather than \"how\".
5507 A class definition with Moose reads like a list of very concise English
5508 sentences.")
5509 (license (package-license perl))))
5510
5511 (define-public perl-moosex-emulate-class-accessor-fast
5512 (package
5513 (name "perl-moosex-emulate-class-accessor-fast")
5514 (version "0.00903")
5515 (source
5516 (origin
5517 (method url-fetch)
5518 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
5519 "MooseX-Emulate-Class-Accessor-Fast-"
5520 version ".tar.gz"))
5521 (sha256
5522 (base32
5523 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
5524 (build-system perl-build-system)
5525 (native-inputs
5526 `(("perl-module-install" ,perl-module-install)
5527 ("perl-test-exception" ,perl-test-exception)))
5528 (propagated-inputs
5529 `(("perl-moose" ,perl-moose)))
5530 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
5531 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
5532 (description "This module attempts to emulate the behavior of
5533 Class::Accessor::Fast as accurately as possible using the Moose attribute
5534 system. The public API of Class::Accessor::Fast is wholly supported, but the
5535 private methods are not.")
5536 (license (package-license perl))))
5537
5538 (define-public perl-moosex-getopt
5539 (package
5540 (name "perl-moosex-getopt")
5541 (version "0.73")
5542 (source
5543 (origin
5544 (method url-fetch)
5545 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5546 "MooseX-Getopt-" version ".tar.gz"))
5547 (sha256
5548 (base32
5549 "19zm8brf930p0ymqn3w1y0ix29kb74m8nvhrhjvrg8cgz6vc5fyz"))))
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.19")
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
5666 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
5667 (build-system perl-build-system)
5668 (native-inputs
5669 `(("perl-moose" ,perl-moose)
5670 ("perl-test-fatal" ,perl-test-fatal)))
5671 (propagated-inputs
5672 `(("perl-devel-caller" ,perl-devel-caller)
5673 ("perl-moose" ,perl-moose)
5674 ("perl-params-validate" ,perl-params-validate)
5675 ("perl-sub-exporter" ,perl-sub-exporter)))
5676 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
5677 (synopsis "Extension of Params::Validate using Moose's types")
5678 (description "This module fills a gap in Moose by adding method parameter
5679 validation to Moose.")
5680 (license (package-license perl))))
5681
5682 (define-public perl-moosex-relatedclassroles
5683 (package
5684 (name "perl-moosex-relatedclassroles")
5685 (version "0.004")
5686 (source
5687 (origin
5688 (method url-fetch)
5689 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
5690 "MooseX-RelatedClassRoles-" version ".tar.gz"))
5691 (sha256
5692 (base32
5693 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
5694 (build-system perl-build-system)
5695 (propagated-inputs
5696 `(("perl-moose" ,perl-moose)
5697 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
5698 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
5699 (synopsis "Apply roles to a related Perl class")
5700 (description "This module applies roles to make a subclass instead of
5701 manually setting up a subclass.")
5702 (license (package-license perl))))
5703
5704 (define-public perl-moosex-role-parameterized
5705 (package
5706 (name "perl-moosex-role-parameterized")
5707 (version "1.08")
5708 (source
5709 (origin
5710 (method url-fetch)
5711 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5712 "MooseX-Role-Parameterized-" version ".tar.gz"))
5713 (sha256
5714 (base32
5715 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
5716 (build-system perl-build-system)
5717 (native-inputs
5718 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
5719 ("perl-module-build" ,perl-module-build)
5720 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
5721 ("perl-test-fatal" ,perl-test-fatal)
5722 ("perl-test-requires" ,perl-test-requires)))
5723 (propagated-inputs
5724 `(("perl-moose" ,perl-moose)
5725 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5726 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
5727 (synopsis "Moose roles with composition parameters")
5728 (description "Because Moose roles serve many different masters, they
5729 usually provide only the least common denominator of functionality. To
5730 empower roles further, more configurability than -alias and -excludes is
5731 required. Perhaps your role needs to know which method to call when it is
5732 done processing, or what default value to use for its url attribute.
5733 Parameterized roles offer a solution to these (and other) kinds of problems.")
5734 (license (package-license perl))))
5735
5736 (define-public perl-moosex-role-withoverloading
5737 (package
5738 (name "perl-moosex-role-withoverloading")
5739 (version "0.16")
5740 (source
5741 (origin
5742 (method url-fetch)
5743 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5744 "MooseX-Role-WithOverloading-" version ".tar.gz"))
5745 (sha256
5746 (base32
5747 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
5748 (build-system perl-build-system)
5749 (propagated-inputs
5750 `(("perl-aliased" ,perl-aliased)
5751 ("perl-moose" ,perl-moose)
5752 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5753 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
5754 (synopsis "Roles which support overloading")
5755 (description "MooseX::Role::WithOverloading allows you to write a
5756 Moose::Role which defines overloaded operators and allows those overload
5757 methods to be composed into the classes/roles/instances it's compiled to,
5758 where plain Moose::Roles would lose the overloading.")
5759 (license (package-license perl))))
5760
5761 (define-public perl-moosex-semiaffordanceaccessor
5762 (package
5763 (name "perl-moosex-semiaffordanceaccessor")
5764 (version "0.10")
5765 (source
5766 (origin
5767 (method url-fetch)
5768 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5769 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
5770 (sha256
5771 (base32
5772 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
5773 (build-system perl-build-system)
5774 (propagated-inputs
5775 `(("perl-moose" ,perl-moose)))
5776 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
5777 (synopsis "Name your accessors foo() and set_foo()")
5778 (description "This module does not provide any methods. Simply loading it
5779 changes the default naming policy for the loading class so that accessors are
5780 separated into get and set methods. The get methods have the same name as the
5781 accessor, while set methods are prefixed with \"_set_\".")
5782 (license artistic2.0)))
5783
5784 (define-public perl-moosex-strictconstructor
5785 (package
5786 (name "perl-moosex-strictconstructor")
5787 (version "0.19")
5788 (source
5789 (origin
5790 (method url-fetch)
5791 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5792 "MooseX-StrictConstructor-" version ".tar.gz"))
5793 (sha256
5794 (base32
5795 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
5796 (build-system perl-build-system)
5797 (native-inputs
5798 `(("perl-moose" ,perl-moose)
5799 ("perl-test-fatal" ,perl-test-fatal)))
5800 (propagated-inputs
5801 `(("perl-moose" ,perl-moose)
5802 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5803 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
5804 (synopsis "Strict object constructors for Moose")
5805 (description "Simply loading this module makes your constructors
5806 \"strict\". If your constructor is called with an attribute init argument
5807 that your class does not declare, then it calls Moose->throw_error().")
5808 (license artistic2.0)))
5809
5810 (define-public perl-moosex-traits-pluggable
5811 (package
5812 (name "perl-moosex-traits-pluggable")
5813 (version "0.12")
5814 (source
5815 (origin
5816 (method url-fetch)
5817 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
5818 "MooseX-Traits-Pluggable-" version ".tar.gz"))
5819 (sha256
5820 (base32
5821 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
5822 (build-system perl-build-system)
5823 (native-inputs
5824 `(("perl-moose" ,perl-moose)
5825 ("perl-test-exception" ,perl-test-exception)))
5826 (propagated-inputs
5827 `(("perl-class-load" ,perl-class-load)
5828 ("perl-list-moreutils" ,perl-list-moreutils)
5829 ("perl-moose" ,perl-moose)
5830 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5831 (home-page
5832 "https://metacpan.org/release/MooseX-Traits-Pluggable")
5833 (synopsis "Trait loading and resolution for Moose")
5834 (description "Adds support on top of MooseX::Traits for class precedence
5835 search for traits and some extra attributes.")
5836 (license (package-license perl))))
5837
5838 (define-public perl-moosex-types
5839 (package
5840 (name "perl-moosex-types")
5841 (version "0.45")
5842 (source
5843 (origin
5844 (method url-fetch)
5845 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5846 "MooseX-Types-" version ".tar.gz"))
5847 (sha256
5848 (base32
5849 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
5850 (build-system perl-build-system)
5851 (native-inputs
5852 `(("perl-module-build" ,perl-module-build)
5853 ("perl-test-fatal" ,perl-test-fatal)
5854 ("perl-test-requires" ,perl-test-requires)))
5855 (propagated-inputs
5856 `(("perl-carp-clan" ,perl-carp-clan)
5857 ("perl-moose" ,perl-moose)
5858 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5859 (home-page "https://metacpan.org/release/MooseX-Types")
5860 (synopsis "Organise your Moose types in libraries")
5861 (description "This package lets you declare types using short names, but
5862 behind the scenes it namespaces all your type declarations, effectively
5863 prevent name clashes between packages.")
5864 (license (package-license perl))))
5865
5866 (define-public perl-moosex-types-datetime
5867 (package
5868 (name "perl-moosex-types-datetime")
5869 (version "0.13")
5870 (source
5871 (origin
5872 (method url-fetch)
5873 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5874 "MooseX-Types-DateTime-" version ".tar.gz"))
5875 (sha256
5876 (base32
5877 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
5878 (build-system perl-build-system)
5879 (native-inputs
5880 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5881 ("perl-moose" ,perl-moose)
5882 ("perl-test-fatal" ,perl-test-fatal)
5883 ("perl-test-simple" ,perl-test-simple)))
5884 (propagated-inputs
5885 `(("perl-datetime" ,perl-datetime)
5886 ("perl-datetime-locale" ,perl-datetime-locale)
5887 ("perl-datetime-timezone" ,perl-datetime-timezone)
5888 ("perl-moose" ,perl-moose)
5889 ("perl-moosex-types" ,perl-moosex-types)
5890 ("perl-namespace-clean" ,perl-namespace-clean)))
5891 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
5892 (synopsis "DateTime related constraints and coercions for Moose")
5893 (description "This module packages several Moose::Util::TypeConstraints
5894 with coercions, designed to work with the DateTime suite of objects.")
5895 (license (package-license perl))))
5896
5897 (define-public perl-moosex-types-datetime-morecoercions
5898 (package
5899 (name "perl-moosex-types-datetime-morecoercions")
5900 (version "0.14")
5901 (source
5902 (origin
5903 (method url-fetch)
5904 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5905 "MooseX-Types-DateTime-MoreCoercions-"
5906 version ".tar.gz"))
5907 (sha256
5908 (base32
5909 "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
5910 (build-system perl-build-system)
5911 (native-inputs
5912 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5913 ("perl-test-fatal" ,perl-test-fatal)
5914 ("perl-test-simple" ,perl-test-simple)))
5915 (propagated-inputs
5916 `(("perl-datetime" ,perl-datetime)
5917 ("perl-datetimex-easy" ,perl-datetimex-easy)
5918 ("perl-moose" ,perl-moose)
5919 ("perl-moosex-types" ,perl-moosex-types)
5920 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
5921 ("perl-namespace-clean" ,perl-namespace-clean)
5922 ("perl-time-duration-parse" ,perl-time-duration-parse)))
5923 (home-page
5924 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
5925 (synopsis "Extensions to MooseX::Types::DateTime")
5926 (description "This module builds on MooseX::Types::DateTime to add
5927 additional custom types and coercions. Since it builds on an existing type,
5928 all coercions and constraints are inherited.")
5929 (license (package-license perl))))
5930
5931 (define-public perl-moosex-types-loadableclass
5932 (package
5933 (name "perl-moosex-types-loadableclass")
5934 (version "0.013")
5935 (source
5936 (origin
5937 (method url-fetch)
5938 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5939 "MooseX-Types-LoadableClass-" version ".tar.gz"))
5940 (sha256
5941 (base32
5942 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
5943 (build-system perl-build-system)
5944 (native-inputs
5945 `(("perl-module-build-tiny" ,perl-module-build-tiny)
5946 ("perl-namespace-clean" ,perl-namespace-clean)
5947 ("perl-moose" ,perl-moose)
5948 ("perl-test-fatal" ,perl-test-fatal)
5949 ("perl-class-load" ,perl-class-load)))
5950 (propagated-inputs
5951 `(("perl-module-runtime" ,perl-module-runtime)
5952 ("perl-moosex-types" ,perl-moosex-types)
5953 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
5954 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
5955 (synopsis "ClassName type constraints for Moose")
5956 (description "MooseX::Types::LoadableClass provides a ClassName type
5957 constraint with coercion to load the class.")
5958 (license (package-license perl))))
5959
5960 (define-public perl-moox
5961 (package
5962 (name "perl-moox")
5963 (version "0.101")
5964 (source
5965 (origin
5966 (method url-fetch)
5967 (uri (string-append
5968 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
5969 version
5970 ".tar.gz"))
5971 (sha256
5972 (base32
5973 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
5974 (build-system perl-build-system)
5975 (inputs
5976 `(("perl-data-optlist" ,perl-data-optlist)
5977 ("perl-import-into" ,perl-import-into)
5978 ("perl-module-runtime" ,perl-module-runtime)
5979 ("perl-moo" ,perl-moo)))
5980 (home-page "https://metacpan.org/release/MooX")
5981 (synopsis
5982 "Using Moo and MooX:: packages the most lazy way")
5983 (description "Contains the MooX and MooX::Role packages.")
5984 (license perl-license)))
5985
5986 (define-public perl-moox-cmd
5987 (package
5988 (name "perl-moox-cmd")
5989 (version "0.015")
5990 (source
5991 (origin
5992 (method url-fetch)
5993 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
5994 version ".tar.gz"))
5995 (sha256
5996 (base32
5997 "0145ha8vnc6sbg82ps96wj716bznq2qamm657bia9ji2yxhbnsam"))))
5998 (build-system perl-build-system)
5999 (native-inputs
6000 `(("perl-capture-tiny" ,perl-capture-tiny)
6001 ("perl-list-moreutils" ,perl-list-moreutils)))
6002 (propagated-inputs
6003 `(("perl-module-pluggable" ,perl-module-pluggable)
6004 ("perl-module-runtime" ,perl-module-runtime)
6005 ("perl-moo" ,perl-moo)
6006 ("perl-package-stash" ,perl-package-stash)
6007 ("perl-params-util" ,perl-params-util)
6008 ("perl-regexp-common" ,perl-regexp-common)))
6009 (home-page "https://metacpan.org/release/MooX-Cmd")
6010 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
6011 (description "This package eases the writing of command line utilities,
6012 accepting commands and subcommands and so on. These commands can form a tree,
6013 which is mirrored in the package structure. On invocation, each command along
6014 the path through the tree (starting from the top-level command through to the
6015 most specific one) is instantiated.")
6016 (license (package-license perl))))
6017
6018 (define-public perl-moox-configfromfile
6019 (package
6020 (name "perl-moox-configfromfile")
6021 (version "0.008")
6022 (source
6023 (origin
6024 (method url-fetch)
6025 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6026 "MooX-ConfigFromFile-" version ".tar.gz"))
6027 (sha256
6028 (base32
6029 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6030 (build-system perl-build-system)
6031 (native-inputs
6032 `(("perl-hash-merge" ,perl-hash-merge)
6033 ("perl-json" ,perl-json)
6034 ("perl-moox-cmd" ,perl-moox-cmd)))
6035 (propagated-inputs
6036 `(("perl-config-any" ,perl-config-any)
6037 ("perl-file-configdir" ,perl-file-configdir)
6038 ("perl-file-find-rule" ,perl-file-find-rule)
6039 ("perl-hash-merge" ,perl-hash-merge)
6040 ("perl-moo" ,perl-moo)
6041 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6042 ("perl-namespace-clean" ,perl-namespace-clean)))
6043 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
6044 (synopsis "Moo eXtension for initializing objects from config file")
6045 (description "This module is intended to easily load initialization values
6046 for attributes on object construction from an appropriate config file. The
6047 building is done in @code{MooX::ConfigFromFile::Role}---using
6048 @code{MooX::ConfigFromFile} ensures that the role is applied.")
6049 (license (package-license perl))))
6050
6051 (define-public perl-moox-file-configdir
6052 (package
6053 (name "perl-moox-file-configdir")
6054 (version "0.007")
6055 (source
6056 (origin
6057 (method url-fetch)
6058 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6059 "MooX-File-ConfigDir-" version ".tar.gz"))
6060 (sha256
6061 (base32
6062 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
6063 (build-system perl-build-system)
6064 (propagated-inputs
6065 `(("perl-file-configdir" ,perl-file-configdir)
6066 ("perl-moo" ,perl-moo)
6067 ("perl-namespace-clean" ,perl-namespace-clean)))
6068 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
6069 (synopsis "Moo eXtension for @code{File::ConfigDir}")
6070 (description "This module is a helper for easily finding configuration
6071 file locations. This information can be used to find a suitable place for
6072 installing configuration files or for finding any piece of settings.")
6073 (license (package-license perl))))
6074
6075 (define-public perl-moox-handlesvia
6076 (package
6077 (name "perl-moox-handlesvia")
6078 (version "0.001008")
6079 (source
6080 (origin
6081 (method url-fetch)
6082 (uri (string-append
6083 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
6084 version
6085 ".tar.gz"))
6086 (sha256
6087 (base32
6088 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
6089 (build-system perl-build-system)
6090 (native-inputs
6091 `(("perl-moox-types-mooselike"
6092 ,perl-moox-types-mooselike)
6093 ("perl-test-exception" ,perl-test-exception)
6094 ("perl-test-fatal" ,perl-test-fatal)))
6095 (inputs
6096 `(("perl-class-method-modifiers"
6097 ,perl-class-method-modifiers)
6098 ("perl-module-runtime" ,perl-module-runtime)
6099 ("perl-moo" ,perl-moo)
6100 ("perl-role-tiny" ,perl-role-tiny)))
6101 (propagated-inputs
6102 `(("perl-data-perl" ,perl-data-perl)))
6103 (home-page
6104 "https://metacpan.org/release/MooX-HandlesVia")
6105 (synopsis "NativeTrait-like behavior for Moo")
6106 (description
6107 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
6108 attribute functionality. It provides a means of proxying functionality from
6109 an external class to the given atttribute.")
6110 (license perl-license)))
6111
6112 (define-public perl-moox-late
6113 (package
6114 (name "perl-moox-late")
6115 (version "0.015")
6116 (source
6117 (origin
6118 (method url-fetch)
6119 (uri (string-append
6120 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
6121 version
6122 ".tar.gz"))
6123 (sha256
6124 (base32
6125 "1gzvd9zws3v09sh0xx6srmw4jwi22fnrya4zcsc8dykn62pjclqp"))))
6126 (build-system perl-build-system)
6127 (native-inputs
6128 `(("perl-test-fatal" ,perl-test-fatal)
6129 ("perl-test-requires" ,perl-test-requires)))
6130 (inputs
6131 `(("perl-moo" ,perl-moo)
6132 ("perl-moox" ,perl-moox)
6133 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
6134 (propagated-inputs
6135 `(("perl-type-tiny" ,perl-type-tiny)))
6136 (home-page
6137 "https://metacpan.org/release/MooX-late")
6138 (synopsis "Easily translate Moose code to Moo")
6139 (description
6140 "MooX::late does the following:
6141 @enumerate
6142 @item Supports isa => $stringytype
6143 @item Supports does => $rolename
6144 @item Supports lazy_build => 1
6145 @item Exports blessed and confess functions to your namespace.
6146 @item Handles certain attribute traits
6147 Currently Hash, Array and Code are supported. This feature requires
6148 MooX::HandlesVia.
6149 @end enumerate")
6150 (license perl-license)))
6151
6152 (define-public perl-moox-options
6153 (package
6154 (name "perl-moox-options")
6155 (version "4.023")
6156 (source
6157 (origin
6158 (method url-fetch)
6159 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
6160 "MooX-Options-" version ".tar.gz"))
6161 (sha256
6162 (base32
6163 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
6164 (build-system perl-build-system)
6165 (native-inputs
6166 `(("perl-capture-tiny" ,perl-capture-tiny)
6167 ("perl-import-into" ,perl-import-into)
6168 ("perl-module-build" ,perl-module-build)
6169 ("perl-moo" ,perl-moo)
6170 ("perl-moose" ,perl-moose)
6171 ("perl-moox-cmd" ,perl-moox-cmd)
6172 ("perl-namespace-clean" ,perl-namespace-clean)
6173 ("perl-role-tiny" ,perl-role-tiny)
6174 ("perl-test-requires" ,perl-test-requires)
6175 ("perl-test-trap" ,perl-test-trap)
6176 ("perl-test-pod" ,perl-test-pod)
6177 ("perl-try-tiny" ,perl-try-tiny)))
6178 (propagated-inputs
6179 `(("perl-config-any" ,perl-config-any)
6180 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6181 ("perl-data-record" ,perl-data-record)
6182 ("perl-file-configdir" ,perl-file-configdir)
6183 ("perl-file-find-rule" ,perl-file-find-rule)
6184 ("perl-file-sharedir" ,perl-file-sharedir)
6185 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6186 ("perl-json-maybexs" ,perl-json-maybexs)
6187 ("perl-libintl-perl" ,perl-libintl-perl)
6188 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
6189 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
6190 ("perl-path-class" ,perl-path-class)
6191 ("perl-regexp-common" ,perl-regexp-common)
6192 ("perl-term-size-any" ,perl-term-size-any)
6193 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
6194 (home-page "https://metacpan.org/release/MooX-Options")
6195 (synopsis "Explicit Options eXtension for Object Class")
6196 (description "Create a command line tool with your Mo, Moo, Moose objects.
6197 You have an @code{option} keyword to replace the usual @code{has} to
6198 explicitly use your attribute on the command line. The @code{option} keyword
6199 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
6200 generate a command line tool.")
6201 (license (package-license perl))))
6202
6203 (define-public perl-moox-types-mooselike
6204 (package
6205 (name "perl-moox-types-mooselike")
6206 (version "0.28")
6207 (source
6208 (origin
6209 (method url-fetch)
6210 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
6211 "MooX-Types-MooseLike-" version ".tar.gz"))
6212 (sha256
6213 (base32
6214 "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
6215 (build-system perl-build-system)
6216 (native-inputs
6217 `(("perl-moo" ,perl-moo)
6218 ("perl-test-fatal" ,perl-test-fatal)))
6219 (propagated-inputs
6220 `(("perl-module-runtime" ,perl-module-runtime)
6221 ("perl-strictures" ,perl-strictures)))
6222 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
6223 (synopsis "Moosish types and type builder")
6224 (description "MooX::Types::MooseLike provides a possibility to build your
6225 own set of Moose-like types. These custom types can then be used to describe
6226 fields in Moo-based classes.")
6227 (license (package-license perl))))
6228
6229 (define-public perl-mouse
6230 (package
6231 (name "perl-mouse")
6232 (version "2.4.9")
6233 (source (origin
6234 (method url-fetch)
6235 (uri (string-append
6236 "mirror://cpan/authors/id/S/SY/SYOHEX/Mouse-v"
6237 version
6238 ".tar.gz"))
6239 (sha256
6240 (base32
6241 "1y20sl97x1h4y1iid47hj0w1hb2887dchh4nfffgmqpyggkslh4n"))))
6242 (build-system perl-build-system)
6243 (native-inputs
6244 `(("perl-module-build" ,perl-module-build)
6245 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
6246 ("perl-test-exception" ,perl-test-exception)
6247 ("perl-test-fatal" ,perl-test-fatal)
6248 ("perl-test-leaktrace" ,perl-test-leaktrace)
6249 ("perl-test-output" ,perl-test-output)
6250 ("perl-test-requires" ,perl-test-requires)
6251 ("perl-try-tiny" ,perl-try-tiny)))
6252 (home-page "https://github.com/gfx/p5-Mouse")
6253 (synopsis "Fast Moose-compatible object system for perl5")
6254 (description
6255 "Mouse is a @code{Moose} compatible object system that implements a
6256 subset of the functionality for reduced startup time.")
6257 (license (package-license perl))))
6258
6259 (define-public perl-mousex-nativetraits
6260 (package
6261 (name "perl-mousex-nativetraits")
6262 (version "1.09")
6263 (source (origin
6264 (method url-fetch)
6265 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
6266 "MouseX-NativeTraits-" version ".tar.gz"))
6267 (sha256
6268 (base32
6269 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
6270 (build-system perl-build-system)
6271 (native-inputs
6272 `(("perl-any-moose" ,perl-any-moose)
6273 ("perl-module-install" ,perl-module-install)
6274 ("perl-test-fatal" ,perl-test-fatal)))
6275 (propagated-inputs
6276 `(("perl-mouse" ,perl-mouse)))
6277 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
6278 (synopsis "Extend attribute interfaces for Mouse")
6279 (description
6280 "While @code{Mouse} attributes provide a way to name your accessors,
6281 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
6282 provides commonly used attribute helper methods for more specific types
6283 of data.")
6284 (license (package-license perl))))
6285
6286 (define-public perl-mozilla-ca
6287 (package
6288 (name "perl-mozilla-ca")
6289 (version "20180117")
6290 (source
6291 (origin
6292 (method url-fetch)
6293 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
6294 version ".tar.gz"))
6295 (sha256
6296 (base32
6297 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
6298 (build-system perl-build-system)
6299 (home-page "https://metacpan.org/release/Mozilla-CA")
6300 (synopsis "Mozilla's CA cert bundle in PEM format")
6301 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
6302 Certificate Authority certificates in a form that can be consumed by modules
6303 and libraries based on OpenSSL.")
6304 (license mpl2.0)))
6305
6306 (define-public perl-multidimensional
6307 (package
6308 (name "perl-multidimensional")
6309 (version "0.014")
6310 (source
6311 (origin
6312 (method url-fetch)
6313 (uri (string-append
6314 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
6315 version ".tar.gz"))
6316 (sha256
6317 (base32
6318 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
6319 (build-system perl-build-system)
6320 (native-inputs
6321 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6322 ("perl-extutils-depends" ,perl-extutils-depends)))
6323 (propagated-inputs
6324 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
6325 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
6326 (home-page "https://metacpan.org/release/multidimensional")
6327 (synopsis "Disable multidimensional array emulation")
6328 (description
6329 "Multidimensional disables multidimensional array emulation.")
6330 (license (package-license perl))))
6331
6332 (define-public perl-mro-compat
6333 (package
6334 (name "perl-mro-compat")
6335 (version "0.13")
6336 (source
6337 (origin
6338 (method url-fetch)
6339 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6340 "MRO-Compat-" version ".tar.gz"))
6341 (sha256
6342 (base32
6343 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
6344 (build-system perl-build-system)
6345 (home-page "https://metacpan.org/release/MRO-Compat")
6346 (synopsis "MRO interface compatibility for Perls < 5.9.5")
6347 (description "The \"mro\" namespace provides several utilities for dealing
6348 with method resolution order and method caching in general in Perl 5.9.5 and
6349 higher. This module provides those interfaces for earlier versions of
6350 Perl (back to 5.6.0).")
6351 (license (package-license perl))))
6352
6353 (define-public perl-namespace-autoclean
6354 (package
6355 (name "perl-namespace-autoclean")
6356 (version "0.28")
6357 (source
6358 (origin
6359 (method url-fetch)
6360 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6361 "namespace-autoclean-" version ".tar.gz"))
6362 (sha256
6363 (base32
6364 "0fbcq99yaix1aa99jl3v811dbw24il9jxnh5i2i23mddh4b0lhfd"))))
6365 (build-system perl-build-system)
6366 (native-inputs
6367 `(("perl-module-build" ,perl-module-build)
6368 ("perl-test-requires" ,perl-test-requires)))
6369 (propagated-inputs
6370 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
6371 ("perl-namespace-clean" ,perl-namespace-clean)
6372 ("perl-sub-identify" ,perl-sub-identify)))
6373 (home-page "https://metacpan.org/release/namespace-autoclean")
6374 (synopsis "Keep imports out of your namespace")
6375 (description "The namespace::autoclean pragma will remove all imported
6376 symbols at the end of the current package's compile cycle. Functions called
6377 in the package itself will still be bound by their name, but they won't show
6378 up as methods on your class or instances. It is very similar to
6379 namespace::clean, except it will clean all imported functions, no matter if
6380 you imported them before or after you used the pragma. It will also not touch
6381 anything that looks like a method.")
6382 (license (package-license perl))))
6383
6384 (define-public perl-namespace-clean
6385 (package
6386 (name "perl-namespace-clean")
6387 (version "0.27")
6388 (source
6389 (origin
6390 (method url-fetch)
6391 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
6392 "namespace-clean-" version ".tar.gz"))
6393 (sha256
6394 (base32
6395 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
6396 (build-system perl-build-system)
6397 (propagated-inputs
6398 `(("perl-package-stash" ,perl-package-stash)
6399 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
6400 (home-page "https://metacpan.org/release/namespace-clean")
6401 (synopsis "Keep imports and functions out of your namespace")
6402 (description "The namespace::clean pragma will remove all previously
6403 declared or imported symbols at the end of the current package's compile
6404 cycle. Functions called in the package itself will still be bound by their
6405 name, but they won't show up as methods on your class or instances.")
6406 (license (package-license perl))))
6407
6408 (define-public perl-net-dns-native
6409 (package
6410 (name "perl-net-dns-native")
6411 (version "0.15")
6412 (source
6413 (origin
6414 (method url-fetch)
6415 (uri (string-append
6416 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
6417 version ".tar.gz"))
6418 (sha256
6419 (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85"))))
6420 (build-system perl-build-system)
6421 (home-page "https://metacpan.org/release/Net-DNS-Native")
6422 (synopsis "Non-blocking system DNS resolver")
6423 (description
6424 "This class provides several methods for host name resolution. It is
6425 designed to be used with event loops. Names are resolved by your system's
6426 native @code{getaddrinfo(3)} implementation, called in a separate thread to
6427 avoid blocking the entire application. Threading overhead is limited by using
6428 system threads instead of Perl threads.")
6429 (license perl-license)))
6430
6431 (define-public perl-net-idn-encode
6432 (package
6433 (name "perl-net-idn-encode")
6434 (version "2.500")
6435 (source
6436 (origin
6437 (method url-fetch)
6438 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
6439 "Net-IDN-Encode-" version ".tar.gz"))
6440 (sha256
6441 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
6442 (build-system perl-build-system)
6443 (native-inputs
6444 `(("perl-module-build" ,perl-module-build)
6445 ("perl-test-nowarnings" ,perl-test-nowarnings)))
6446 (home-page "https://metacpan.org/release/Net-IDN-Encode")
6447 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
6448 (description
6449 "Internationalized Domain Names (IDNs) use characters drawn from a large
6450 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
6451 represented using only the ASCII characters already allowed in so-called host
6452 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
6453
6454 Use this module if you just want to convert domain names (or email addresses),
6455 using whatever IDNA standard is the best choice at the moment.")
6456 (license perl-license)))
6457
6458 (define-public perl-net-statsd
6459 (package
6460 (name "perl-net-statsd")
6461 (version "0.12")
6462 (source
6463 (origin
6464 (method url-fetch)
6465 (uri (string-append
6466 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
6467 version
6468 ".tar.gz"))
6469 (sha256
6470 (base32
6471 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
6472 (build-system perl-build-system)
6473 (home-page
6474 "https://metacpan.org/release/Net-Statsd")
6475 (synopsis "Perl client for Etsy's statsd daemon")
6476 (description "This module implement a UDP client for the statsd statistics
6477 collector daemon in use at Etsy.com.")
6478 (license (package-license perl))))
6479
6480 (define-public perl-number-compare
6481 (package
6482 (name "perl-number-compare")
6483 (version "0.03")
6484 (source
6485 (origin
6486 (method url-fetch)
6487 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6488 "Number-Compare-" version ".tar.gz"))
6489 (sha256
6490 (base32
6491 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
6492 (build-system perl-build-system)
6493 (home-page "https://metacpan.org/release/Number-Compare")
6494 (synopsis "Numeric comparisons")
6495 (description "Number::Compare compiles a simple comparison to an anonymous
6496 subroutine, which you can call with a value to be tested against.")
6497 (license (package-license perl))))
6498
6499 (define-public perl-number-format
6500 (package
6501 (name "perl-number-format")
6502 (version "1.75")
6503 (source (origin
6504 (method url-fetch)
6505 (uri (string-append
6506 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
6507 version ".tar.gz"))
6508 (sha256
6509 (base32
6510 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
6511 (build-system perl-build-system)
6512 (home-page "https://metacpan.org/release/Number-Format")
6513 (synopsis "Convert numbers to strings with pretty formatting")
6514 (description "@code{Number::Format} is a library for formatting numbers.
6515 Functions are provided for converting numbers to strings in a variety of ways,
6516 and to convert strings that contain numbers back into numeric form. The
6517 output formats may include thousands separators - characters inserted between
6518 each group of three characters counting right to left from the decimal point.
6519 The characters used for the decimal point and the thousands separator come from
6520 the locale information or can be specified by the user.")
6521 (license perl-license)))
6522
6523 (define-public perl-number-range
6524 (package
6525 (name "perl-number-range")
6526 (version "0.12")
6527 (source
6528 (origin
6529 (method url-fetch)
6530 (uri (string-append
6531 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
6532 version ".tar.gz"))
6533 (sha256
6534 (base32
6535 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
6536 (build-system perl-build-system)
6537 (home-page "https://metacpan.org/release/Number-Range")
6538 (synopsis "Perl extension defining ranges of numbers")
6539 (description "Number::Range is an object-oriented interface to test if a
6540 number exists in a given range, and to be able to manipulate the range.")
6541 (license (package-license perl))))
6542
6543 (define-public perl-object-signature
6544 (package
6545 (name "perl-object-signature")
6546 (version "1.07")
6547 (source
6548 (origin
6549 (method url-fetch)
6550 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6551 "Object-Signature-" version ".tar.gz"))
6552 (sha256
6553 (base32
6554 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
6555 (build-system perl-build-system)
6556 (native-inputs
6557 `(("perl-module-install" ,perl-module-install)))
6558 (home-page "https://metacpan.org/release/Object-Signature")
6559 (synopsis "Generate cryptographic signatures for objects")
6560 (description "Object::Signature is an abstract base class that you can
6561 inherit from in order to allow your objects to generate unique cryptographic
6562 signatures.")
6563 (license (package-license perl))))
6564
6565 (define-public perl-ole-storage-lite
6566 (package
6567 (name "perl-ole-storage-lite")
6568 (version "0.19")
6569 (source
6570 (origin
6571 (method url-fetch)
6572 (uri (string-append
6573 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
6574 version
6575 ".tar.gz"))
6576 (sha256
6577 (base32
6578 "179cxwqxb0f9dpx8954nvwjmggxxi5ndnang41yav1dx6mf0abp7"))))
6579 (build-system perl-build-system)
6580 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
6581 (synopsis "Read and write OLE storage files")
6582 (description "This module allows you to read and write
6583 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
6584 technology to store hierarchical information such as links to other
6585 documents within a single file.")
6586 (license (package-license perl))))
6587
6588 (define-public perl-package-anon
6589 (package
6590 (name "perl-package-anon")
6591 (version "0.05")
6592 (source
6593 (origin
6594 (method url-fetch)
6595 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
6596 "Package-Anon-" version ".tar.gz"))
6597 (sha256
6598 (base32
6599 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
6600 (build-system perl-build-system)
6601 (propagated-inputs
6602 `(("perl-sub-exporter" ,perl-sub-exporter)
6603 ("perl-params-util" ,perl-params-util)))
6604 (home-page "https://metacpan.org/release/Package-Anon")
6605 (synopsis "Anonymous packages")
6606 (description "This module allows for anonymous packages that are
6607 independent of the main namespace and only available through an object
6608 instance, not by name.")
6609 (license (package-license perl))))
6610
6611 (define-public perl-package-deprecationmanager
6612 (package
6613 (name "perl-package-deprecationmanager")
6614 (version "0.17")
6615 (source
6616 (origin
6617 (method url-fetch)
6618 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6619 "Package-DeprecationManager-" version ".tar.gz"))
6620 (sha256
6621 (base32
6622 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
6623 (build-system perl-build-system)
6624 (native-inputs
6625 `(("perl-test-fatal" ,perl-test-fatal)
6626 ("perl-test-requires" ,perl-test-requires)
6627 ("perl-test-output" ,perl-test-output)))
6628 (propagated-inputs
6629 `(("perl-list-moreutils" ,perl-list-moreutils)
6630 ("perl-params-util" ,perl-params-util)
6631 ("perl-sub-install" ,perl-sub-install)))
6632 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
6633 (home-page "https://metacpan.org/release/Package-DeprecationManager")
6634 (synopsis "Manage deprecation warnings for your distribution")
6635 (description "This module allows you to manage a set of deprecations for
6636 one or more modules.")
6637 (license artistic2.0)))
6638
6639 (define-public perl-package-stash
6640 (package
6641 (name "perl-package-stash")
6642 (version "0.37")
6643 (source
6644 (origin
6645 (method url-fetch)
6646 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6647 "Package-Stash-" version ".tar.gz"))
6648 (sha256
6649 (base32
6650 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
6651 (build-system perl-build-system)
6652 (native-inputs
6653 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6654 ("perl-test-fatal" ,perl-test-fatal)
6655 ("perl-test-requires" ,perl-test-requires)
6656 ("perl-package-anon" ,perl-package-anon)))
6657 (propagated-inputs
6658 `(("perl-module-implementation" ,perl-module-implementation)
6659 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6660 ("perl-package-stash-xs" ,perl-package-stash-xs)))
6661 (home-page "https://metacpan.org/release/Package-Stash")
6662 (synopsis "Routines for manipulating stashes")
6663 (description "Manipulating stashes (Perl's symbol tables) is occasionally
6664 necessary, but incredibly messy, and easy to get wrong. This module hides all
6665 of that behind a simple API.")
6666 (license (package-license perl))))
6667
6668 (define-public perl-package-stash-xs
6669 (package
6670 (name "perl-package-stash-xs")
6671 (version "0.28")
6672 (source
6673 (origin
6674 (method url-fetch)
6675 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6676 "Package-Stash-XS-" version ".tar.gz"))
6677 (sha256
6678 (base32
6679 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
6680 (build-system perl-build-system)
6681 (native-inputs
6682 `(("perl-test-fatal" ,perl-test-fatal)
6683 ("perl-test-requires" ,perl-test-requires)
6684 ("perl-package-anon" ,perl-package-anon)))
6685 (home-page "https://metacpan.org/release/Package-Stash-XS")
6686 (synopsis "Faster implementation of the Package::Stash API")
6687 (description "This is a backend for Package::Stash, which provides the
6688 functionality in a way that's less buggy and much faster. It will be used by
6689 default if it's installed, and should be preferred in all environments with a
6690 compiler.")
6691 (license (package-license perl))))
6692
6693 (define-public perl-padwalker
6694 (package
6695 (name "perl-padwalker")
6696 (version "2.0")
6697 (source
6698 (origin
6699 (method url-fetch)
6700 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
6701 "PadWalker-" version ".tar.gz"))
6702 (sha256
6703 (base32
6704 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
6705 (build-system perl-build-system)
6706 (home-page "https://metacpan.org/release/PadWalker")
6707 (synopsis "Play with other peoples' lexical variables")
6708 (description "PadWalker is a module which allows you to inspect (and even
6709 change) lexical variables in any subroutine which called you. It will only
6710 show those variables which are in scope at the point of the call. PadWalker
6711 is particularly useful for debugging.")
6712 (license (package-license perl))))
6713
6714 (define-public perl-parallel-forkmanager
6715 (package
6716 (name "perl-parallel-forkmanager")
6717 (version "1.19")
6718 (source
6719 (origin
6720 (method url-fetch)
6721 (uri (string-append
6722 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
6723 version
6724 ".tar.gz"))
6725 (sha256
6726 (base32
6727 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
6728 (build-system perl-build-system)
6729 (native-inputs
6730 `(("perl-test-warn" ,perl-test-warn)))
6731 (home-page "https://metacpan.org/release/Parallel-ForkManager")
6732 (synopsis "Simple parallel processing fork manager")
6733 (description "@code{Parallel::ForkManager} is intended for use in
6734 operations that can be done in parallel where the number of
6735 processes to be forked off should be limited.")
6736 (license (package-license perl))))
6737
6738 (define-public perl-params-util
6739 (package
6740 (name "perl-params-util")
6741 (version "1.07")
6742 (source
6743 (origin
6744 (method url-fetch)
6745 (uri (string-append
6746 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
6747 version ".tar.gz"))
6748 (sha256
6749 (base32
6750 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
6751 (build-system perl-build-system)
6752 (home-page "https://metacpan.org/release/Params-Util")
6753 (synopsis "Simple, compact and correct param-checking functions")
6754 (description
6755 "Params::Util provides a basic set of importable functions that makes
6756 checking parameters easier.")
6757 (license (package-license perl))))
6758
6759 (define-public perl-params-validate
6760 (package
6761 (name "perl-params-validate")
6762 (version "1.29")
6763 (source
6764 (origin
6765 (method url-fetch)
6766 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6767 "Params-Validate-" version ".tar.gz"))
6768 (sha256
6769 (base32
6770 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
6771 (build-system perl-build-system)
6772 (native-inputs
6773 `(("perl-module-build" ,perl-module-build)
6774 ("perl-test-fatal" ,perl-test-fatal)
6775 ("perl-test-requires" ,perl-test-requires)))
6776 (propagated-inputs
6777 `(("perl-module-implementation" ,perl-module-implementation)))
6778 (home-page "https://metacpan.org/release/Params-Validate")
6779 (synopsis "Validate method/function parameters")
6780 (description "The Params::Validate module allows you to validate method or
6781 function call parameters to an arbitrary level of specificity.")
6782 (license artistic2.0)))
6783
6784 (define-public perl-params-validationcompiler
6785 (package
6786 (name "perl-params-validationcompiler")
6787 (version "0.27")
6788 (source
6789 (origin
6790 (method url-fetch)
6791 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6792 "Params-ValidationCompiler-" version ".tar.gz"))
6793 (sha256
6794 (base32
6795 "1cpr188c2xm0kkmdir6slcsgv7v6ibqff4lax8s0whwx6ml9kaah"))))
6796 (build-system perl-build-system)
6797 (native-inputs
6798 ;; For tests.
6799 `(("perl-test-without-module" ,perl-test-without-module)
6800 ("perl-test2-bundle-extended" ,perl-test2-bundle-extended)
6801 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
6802 ("perl-type-tiny" ,perl-type-tiny)))
6803 (propagated-inputs
6804 `(("perl-eval-closure" ,perl-eval-closure)
6805 ("perl-exception-class" ,perl-exception-class)
6806 ("perl-specio" ,perl-specio)))
6807 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
6808 (synopsis "Build an optimized subroutine parameter validator")
6809 (description "This module creates a customized, highly efficient
6810 parameter checking subroutine. It can handle named or positional
6811 parameters, and can return the parameters as key/value pairs or a list
6812 of values. In addition to type checks, it also supports parameter
6813 defaults, optional parameters, and extra \"slurpy\" parameters.")
6814 (license artistic2.0)))
6815
6816 (define-public perl-par-dist
6817 (package
6818 (name "perl-par-dist")
6819 (version "0.49")
6820 (source
6821 (origin
6822 (method url-fetch)
6823 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6824 "PAR-Dist-" version ".tar.gz"))
6825 (sha256
6826 (base32
6827 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
6828 (build-system perl-build-system)
6829 (home-page "https://metacpan.org/release/PAR-Dist")
6830 (synopsis "Create and manipulate PAR distributions")
6831 (description "PAR::Dist is a toolkit to create and manipulate PAR
6832 distributions.")
6833 (license (package-license perl))))
6834
6835 (define-public perl-parent
6836 (package
6837 (name "perl-parent")
6838 (version "0.228")
6839 (source
6840 (origin
6841 (method url-fetch)
6842 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6843 "parent-" version ".tar.gz"))
6844 (sha256
6845 (base32
6846 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
6847 (build-system perl-build-system)
6848 (home-page "https://metacpan.org/release/parent")
6849 (synopsis "Establish an ISA relationship with base classes at compile time")
6850 (description "Allows you to both load one or more modules, while setting
6851 up inheritance from those modules at the same time.")
6852 (license (package-license perl))))
6853
6854 (define-public perl-path-class
6855 (package
6856 (name "perl-path-class")
6857 (version "0.37")
6858 (source
6859 (origin
6860 (method url-fetch)
6861 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
6862 "Path-Class-" version ".tar.gz"))
6863 (sha256
6864 (base32
6865 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
6866 (build-system perl-build-system)
6867 (native-inputs `(("perl-module-build" ,perl-module-build)))
6868 (home-page "https://metacpan.org/release/Path-Class")
6869 (synopsis "Path specification manipulation")
6870 (description "Path::Class is a module for manipulation of file and
6871 directory specifications in a cross-platform manner.")
6872 (license (package-license perl))))
6873
6874 (define-public perl-pathtools
6875 (package
6876 (name "perl-pathtools")
6877 (version "3.74")
6878 (source
6879 (origin
6880 (method url-fetch)
6881 (uri (string-append
6882 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
6883 version ".tar.gz"))
6884 (sha256
6885 (base32 "04bfjdvn5p78hirljcinpxv8djcjn8nyg5gcmnmvz8sr9k2lqwi5"))))
6886 (build-system perl-build-system)
6887 (arguments
6888 `(#:phases
6889 (modify-phases %standard-phases
6890 (add-after 'unpack 'patch-pwd-path
6891 (lambda* (#:key inputs #:allow-other-keys)
6892 (substitute* "Cwd.pm"
6893 (("'/bin/pwd'")
6894 (string-append "'" (assoc-ref inputs "coreutils")
6895 "/bin/pwd'")))
6896 #t)))))
6897 (inputs
6898 `(("coreutils" ,coreutils)))
6899 (home-page "https://metacpan.org/release/PathTools")
6900 (synopsis "Tools for working with directory and file names")
6901 (description "This package provides functions to work with directory and
6902 file names.")
6903 (license perl-license)))
6904
6905 (define-public perl-path-tiny
6906 (package
6907 (name "perl-path-tiny")
6908 (version "0.104")
6909 (source (origin
6910 (method url-fetch)
6911 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6912 "Path-Tiny-" version ".tar.gz"))
6913 (sha256
6914 (base32
6915 "1vxaczi44d2acfyyzwa7p6c5gx3rgm6c36zbdl40982axg7iv7y6"))))
6916 (build-system perl-build-system)
6917 (arguments
6918 `(#:tests? #f)) ; Tests require additional test modules to be packaged
6919 ;; (native-inputs
6920 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
6921 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
6922 (inputs
6923 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
6924 (home-page "https://metacpan.org/release/Path-Tiny")
6925 (synopsis "File path utility")
6926 (description "This module provides a small, fast utility for working
6927 with file paths.")
6928 (license asl2.0)))
6929
6930 (define-public perl-perlio-utf8_strict
6931 (package
6932 (name "perl-perlio-utf8-strict")
6933 (version "0.006")
6934 (source (origin
6935 (method url-fetch)
6936 (uri (string-append
6937 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
6938 version ".tar.gz"))
6939 (sha256
6940 (base32
6941 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
6942 (build-system perl-build-system)
6943 (native-inputs
6944 `(("perl-test-exception" ,perl-test-exception)))
6945 (home-page
6946 "https://metacpan.org/release/PerlIO-utf8_strict")
6947 (synopsis "Fast and correct UTF-8 IO")
6948 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
6949 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
6950 for correctness.")
6951 (license (package-license perl))))
6952
6953 (define-public perl-pegex
6954 (package
6955 (name "perl-pegex")
6956 (version "0.67")
6957 (source
6958 (origin
6959 (method url-fetch)
6960 (uri (string-append
6961 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
6962 version ".tar.gz"))
6963 (sha256
6964 (base32
6965 "149015ra2figalxrnj72fz02qc5cm96xg6x8d6kmyanfmrrxzf9w"))))
6966 (build-system perl-build-system)
6967 (native-inputs
6968 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
6969 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
6970 (home-page "https://metacpan.org/release/Pegex")
6971 (synopsis "Acmeist PEG Parser Framework")
6972 (description "Pegex is an Acmeist parser framework. It allows you to easily
6973 create parsers that will work equivalently in lots of programming languages.
6974 The inspiration for Pegex comes from the parsing engine upon which the
6975 postmodern programming language Perl 6 is based on. Pegex brings this beauty
6976 to the other justmodern languages that have a normal regular expression engine
6977 available.")
6978 (license (package-license perl))))
6979
6980 (define-public perl-pod-coverage
6981 (package
6982 (name "perl-pod-coverage")
6983 (version "0.23")
6984 (source
6985 (origin
6986 (method url-fetch)
6987 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6988 "Pod-Coverage-" version ".tar.gz"))
6989 (sha256
6990 (base32
6991 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
6992 (build-system perl-build-system)
6993 (propagated-inputs
6994 `(("perl-devel-symdump" ,perl-devel-symdump)))
6995 (home-page "https://metacpan.org/release/Pod-Coverage")
6996 (synopsis "Check for comprehensive documentation of a module")
6997 (description "This module provides a mechanism for determining if the pod
6998 for a given module is comprehensive.")
6999 (license (package-license perl))))
7000
7001 (define-public perl-pod-simple
7002 (package
7003 (name "perl-pod-simple")
7004 (version "3.35")
7005 (source (origin
7006 (method url-fetch)
7007 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
7008 "Pod-Simple-" version ".tar.gz"))
7009 (sha256
7010 (base32
7011 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
7012 (build-system perl-build-system)
7013 (home-page "https://metacpan.org/release/Pod-Simple")
7014 (synopsis "Parsing library for text in Pod format")
7015 (description "@code{Pod::Simple} is a Perl library for parsing text in
7016 the @dfn{Pod} (plain old documentation) markup language that is typically
7017 used for writing documentation for Perl and for Perl modules.")
7018 (license (package-license perl))))
7019
7020 (define-public perl-posix-strftime-compiler
7021 (package
7022 (name "perl-posix-strftime-compiler")
7023 (version "0.42")
7024 (source
7025 (origin
7026 (method url-fetch)
7027 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
7028 "POSIX-strftime-Compiler-" version ".tar.gz"))
7029 (sha256
7030 (base32
7031 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
7032 (build-system perl-build-system)
7033 (native-inputs `(("perl-module-build" ,perl-module-build)))
7034 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
7035 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
7036 (synopsis "GNU C library compatible strftime for loggers and servers")
7037 (description "POSIX::strftime::Compiler provides GNU C library compatible
7038 strftime(3). But this module is not affected by the system locale. This
7039 feature is useful when you want to write loggers, servers, and portable
7040 applications.")
7041 (license (package-license perl))))
7042
7043 (define-public perl-probe-perl
7044 (package
7045 (name "perl-probe-perl")
7046 (version "0.03")
7047 (source (origin
7048 (method url-fetch)
7049 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7050 "Probe-Perl-" version ".tar.gz"))
7051 (sha256
7052 (base32
7053 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
7054 (build-system perl-build-system)
7055 (synopsis "Information about the currently running perl")
7056 (description
7057 "Probe::Perl provides methods for obtaining information about the
7058 currently running perl interpreter. It originally began life as code in the
7059 Module::Build project, but has been externalized here for general use.")
7060 (home-page "https://metacpan.org/release/Probe-Perl")
7061 (license (package-license perl))))
7062
7063 (define-public perl-proc-invokeeditor
7064 (package
7065 (name "perl-proc-invokeeditor")
7066 (version "1.13")
7067 (source
7068 (origin
7069 (method url-fetch)
7070 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
7071 version ".tar.gz"))
7072 (sha256
7073 (base32
7074 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
7075 (build-system perl-build-system)
7076 (arguments
7077 `(#:phases
7078 (modify-phases %standard-phases
7079 (add-after 'unpack 'set-EDITOR
7080 (lambda _ (setenv "EDITOR" "echo") #t)))))
7081 (propagated-inputs
7082 `(("perl-carp-assert" ,perl-carp-assert)))
7083 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
7084 (synopsis "Interface to external editor from Perl")
7085 (description "This module provides the ability to supply some text to an
7086 external text editor, have it edited by the user, and retrieve the results.")
7087 (license (package-license perl))))
7088
7089 (define-public perl-readonly
7090 (package
7091 (name "perl-readonly")
7092 (version "2.00")
7093 (source
7094 (origin
7095 (method url-fetch)
7096 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
7097 "Readonly-" version ".tar.gz"))
7098 (sha256
7099 (base32
7100 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
7101 (build-system perl-build-system)
7102 (native-inputs `(("perl-module-build" ,perl-module-build)))
7103 (home-page "https://metacpan.org/release/Readonly")
7104 (synopsis "Create read-only scalars, arrays, hashes")
7105 (description "This module provides a facility for creating non-modifiable
7106 variables in Perl. This is useful for configuration files, headers, etc. It
7107 can also be useful as a development and debugging tool for catching updates to
7108 variables that should not be changed.")
7109 (license (package-license perl))))
7110
7111 (define-public perl-ref-util-xs
7112 (package
7113 (name "perl-ref-util-xs")
7114 (version "0.117")
7115 (source
7116 (origin
7117 (method url-fetch)
7118 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
7119 "Ref-Util-XS-" version ".tar.gz"))
7120 (sha256
7121 (base32
7122 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
7123 (build-system perl-build-system)
7124 (home-page "https://metacpan.org/release/Ref-Util-XS")
7125 (synopsis "XS implementation for Ref::Util")
7126 (description "@code{Ref::Util::XS} is the XS implementation of
7127 @code{Ref::Util}, which provides several functions to help identify references
7128 in a more convenient way than the usual approach of examining the return value
7129 of @code{ref}.")
7130 (license x11)))
7131
7132 (define-public perl-regexp-common
7133 (package
7134 (name "perl-regexp-common")
7135 (version "2017060201")
7136 (source (origin
7137 (method url-fetch)
7138 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
7139 "Regexp-Common-" version ".tar.gz"))
7140 (sha256
7141 (base32
7142 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
7143 (build-system perl-build-system)
7144 (synopsis "Provide commonly requested regular expressions")
7145 (description
7146 "This module exports a single hash (`%RE') that stores or generates
7147 commonly needed regular expressions. Patterns currently provided include:
7148 balanced parentheses and brackets, delimited text (with escapes), integers and
7149 floating-point numbers in any base (up to 36), comments in 44 languages,
7150 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
7151 codes.")
7152 (home-page "https://metacpan.org/release/Regexp-Common")
7153 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
7154 (license (list (package-license perl) x11 bsd-3))))
7155
7156 (define-public perl-regexp-util
7157 (package
7158 (name "perl-regexp-util")
7159 (version "0.003")
7160 (source
7161 (origin
7162 (method url-fetch)
7163 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
7164 "Regexp-Util-" version ".tar.gz"))
7165 (sha256
7166 (base32
7167 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
7168 (build-system perl-build-system)
7169 (home-page "https://metacpan.org/release/Regexp-Util")
7170 (synopsis "Selection of general-utility regexp subroutines")
7171 (description "This package provides a selection of regular expression
7172 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
7173 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
7174 and @code{deserialize_regexp}.")
7175 (license (package-license perl))))
7176
7177 (define-public perl-role-tiny
7178 (package
7179 (name "perl-role-tiny")
7180 (version "1.003004")
7181 (source
7182 (origin
7183 (method url-fetch)
7184 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7185 "Role-Tiny-" version ".tar.gz"))
7186 (sha256
7187 (base32
7188 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
7189 (build-system perl-build-system)
7190 (native-inputs
7191 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
7192 ("perl-test-fatal" ,perl-test-fatal)))
7193 (propagated-inputs
7194 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
7195 (home-page "https://metacpan.org/release/Role-Tiny")
7196 (synopsis "Roles, as a slice of Moose")
7197 (description "Role::Tiny is a minimalist role composition tool.")
7198 (license (package-license perl))))
7199
7200 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
7201 (define-public perl-role-tiny-2
7202 (package
7203 (inherit perl-role-tiny)
7204 (version "2.000006")
7205 (source
7206 (origin
7207 (method url-fetch)
7208 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7209 "Role-Tiny-" version ".tar.gz"))
7210 (sha256
7211 (base32
7212 "10p3sc639c0nj56bb77a2wg8samyyl8sqpliv3n8c0jaj2642wyc"))))))
7213
7214 (define-public perl-safe-isa
7215 (package
7216 (name "perl-safe-isa")
7217 (version "1.000010")
7218 (source
7219 (origin
7220 (method url-fetch)
7221 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7222 "Safe-Isa-" version ".tar.gz"))
7223 (sha256
7224 (base32
7225 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
7226 (build-system perl-build-system)
7227 (home-page "https://metacpan.org/release/Safe-Isa")
7228 (synopsis "Call isa, can, does, and DOES safely")
7229 (description "This module allows you to call isa, can, does, and DOES
7230 safely on things that may not be objects.")
7231 (license (package-license perl))))
7232
7233 (define-public perl-scope-guard
7234 (package
7235 (name "perl-scope-guard")
7236 (version "0.21")
7237 (source
7238 (origin
7239 (method url-fetch)
7240 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
7241 "Scope-Guard-" version ".tar.gz"))
7242 (sha256
7243 (base32
7244 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
7245 (build-system perl-build-system)
7246 (home-page "https://metacpan.org/release/Scope-Guard")
7247 (synopsis "Lexically-scoped resource management")
7248 (description "This module provides a convenient way to perform cleanup or
7249 other forms of resource management at the end of a scope. It is particularly
7250 useful when dealing with exceptions: the Scope::Guard constructor takes a
7251 reference to a subroutine that is guaranteed to be called even if the thread
7252 of execution is aborted prematurely. This effectively allows lexically-scoped
7253 \"promises\" to be made that are automatically honoured by perl's garbage
7254 collector.")
7255 (license (package-license perl))))
7256
7257 (define-public perl-set-infinite
7258 (package
7259 (name "perl-set-infinite")
7260 (version "0.65")
7261 (source
7262 (origin
7263 (method url-fetch)
7264 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
7265 "Set-Infinite-" version ".tar.gz"))
7266 (sha256
7267 (base32
7268 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
7269 (build-system perl-build-system)
7270 (home-page "https://metacpan.org/release/Set-Infinite")
7271 (synopsis "Infinite sets")
7272 (description "Set::Infinite is a set theory module for infinite sets.")
7273 (license (package-license perl))))
7274
7275 (define-public perl-set-intspan
7276 (package
7277 (name "perl-set-intspan")
7278 (version "1.19")
7279 (source (origin
7280 (method url-fetch)
7281 (uri (string-append
7282 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
7283 version ".tar.gz"))
7284 (sha256
7285 (base32
7286 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
7287 (build-system perl-build-system)
7288 (home-page "https://metacpan.org/release/Set-IntSpan")
7289 (synopsis "Manage sets of integers")
7290 (description "@code{Set::IntSpan} manages sets of integers. It is
7291 optimized for sets that have long runs of consecutive integers.")
7292 (license perl-license)))
7293
7294 (define-public perl-set-object
7295 (package
7296 (name "perl-set-object")
7297 (version "1.35")
7298 (source
7299 (origin
7300 (method url-fetch)
7301 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
7302 "Set-Object-" version ".tar.gz"))
7303 (sha256
7304 (base32
7305 "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
7306 (build-system perl-build-system)
7307 (propagated-inputs
7308 `(("perl-moose" ,perl-moose)
7309 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7310 (home-page "https://metacpan.org/release/Set-Object")
7311 (synopsis "Unordered collections of Perl Objects")
7312 (description "Set::Object provides efficient sets, unordered collections
7313 of Perl objects without duplicates for scalars and references.")
7314 (license artistic2.0)))
7315
7316 (define-public perl-set-scalar
7317 (package
7318 (name "perl-set-scalar")
7319 (version "1.29")
7320 (source
7321 (origin
7322 (method url-fetch)
7323 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
7324 "Set-Scalar-" version ".tar.gz"))
7325 (sha256
7326 (base32
7327 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
7328 (build-system perl-build-system)
7329 (home-page "https://metacpan.org/release/Set-Scalar")
7330 (synopsis "Set operations for Perl")
7331 (description "The first priority of Set::Scalar is to be a convenient
7332 interface to sets (as in: unordered collections of Perl scalars). While not
7333 designed to be slow or big, neither has it been designed to be fast or
7334 compact.")
7335 (license (package-license perl))))
7336
7337 (define-public perl-sort-key
7338 (package
7339 (name "perl-sort-key")
7340 (version "1.33")
7341 (source
7342 (origin
7343 (method url-fetch)
7344 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
7345 version ".tar.gz"))
7346 (sha256
7347 (base32
7348 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
7349 (build-system perl-build-system)
7350 (home-page "https://metacpan.org/release/Sort-Key")
7351 (synopsis "Sort arrays by one or multiple calculated keys")
7352 (description "This Perl module provides various functions to quickly sort
7353 arrays by one or multiple calculated keys.")
7354 (license (package-license perl))))
7355
7356 (define-public perl-sort-naturally
7357 (package
7358 (name "perl-sort-naturally")
7359 (version "1.03")
7360 (source
7361 (origin
7362 (method url-fetch)
7363 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
7364 version ".tar.gz"))
7365 (sha256
7366 (base32
7367 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
7368 (build-system perl-build-system)
7369 (home-page "https://metacpan.org/release/Sort-Naturally")
7370 (synopsis "Sort lexically, but sort numeral parts numerically")
7371 (description "This module exports two functions, @code{nsort} and
7372 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
7373 Under natural sorting, numeric substrings are compared numerically, and other
7374 word-characters are compared lexically.")
7375 (license (package-license perl))))
7376
7377 (define-public perl-specio
7378 (package
7379 (name "perl-specio")
7380 (version "0.38")
7381 (source
7382 (origin
7383 (method url-fetch)
7384 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7385 "Specio-" version ".tar.gz"))
7386 (sha256
7387 (base32
7388 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
7389 (build-system perl-build-system)
7390 (propagated-inputs
7391 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
7392 ("perl-eval-closure" ,perl-eval-closure)
7393 ("perl-module-runtime" ,perl-module-runtime)
7394 ("perl-mro-compat" ,perl-mro-compat)
7395 ("perl-role-tiny" ,perl-role-tiny)
7396 ("perl-test-fatal" ,perl-test-fatal)
7397 ("perl-test-needs" ,perl-test-needs)))
7398 (home-page "https://metacpan.org/release/Specio")
7399 (synopsis "Classes for representing type constraints and coercion")
7400 (description "The Specio distribution provides classes for representing type
7401 constraints and coercion, along with syntax sugar for declaring them. Note that
7402 this is not a proper type system for Perl. Nothing in this distribution will
7403 magically make the Perl interpreter start checking a value's type on assignment
7404 to a variable. In fact, there's no built-in way to apply a type to a variable at
7405 all. Instead, you can explicitly check a value against a type, and optionally
7406 coerce values to that type.")
7407 (license artistic2.0)))
7408
7409 (define-public perl-spiffy
7410 (package
7411 (name "perl-spiffy")
7412 (version "0.46")
7413 (source
7414 (origin
7415 (method url-fetch)
7416 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
7417 "Spiffy-" version ".tar.gz"))
7418 (sha256
7419 (base32
7420 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
7421 (build-system perl-build-system)
7422 (home-page "https://metacpan.org/release/Spiffy")
7423 (synopsis "Spiffy Perl Interface Framework For You")
7424 (description "Spiffy is a framework and methodology for doing object
7425 oriented (OO) programming in Perl. Spiffy combines the best parts of
7426 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
7427 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
7428 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
7429 other OO languages like Python, Ruby, Java and Perl 6.")
7430 (license (package-license perl))))
7431
7432 (define-public perl-statistics-basic
7433 (package
7434 (name "perl-statistics-basic")
7435 (version "1.6611")
7436 (source (origin
7437 (method url-fetch)
7438 (uri (string-append
7439 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
7440 version ".tar.gz"))
7441 (sha256
7442 (base32
7443 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
7444 (build-system perl-build-system)
7445 (inputs
7446 `(("perl-number-format" ,perl-number-format)))
7447 (home-page "https://metacpan.org/release/Statistics-Basic")
7448 (synopsis "Collection of very basic statistics modules")
7449 (description "This package provides basic statistics functions like
7450 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
7451 (license lgpl2.0)))
7452
7453 (define-public perl-stream-buffered
7454 (package
7455 (name "perl-stream-buffered")
7456 (version "0.03")
7457 (source
7458 (origin
7459 (method url-fetch)
7460 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
7461 "Stream-Buffered-" version ".tar.gz"))
7462 (sha256
7463 (base32
7464 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
7465 (build-system perl-build-system)
7466 (home-page "https://metacpan.org/release/Stream-Buffered")
7467 (synopsis "Temporary buffer to save bytes")
7468 (description "Stream::Buffered is a buffer class to store arbitrary length
7469 of byte strings and then get a seekable filehandle once everything is
7470 buffered. It uses PerlIO and/or temporary file to save the buffer depending
7471 on the length of the size.")
7472 (license (package-license perl))))
7473
7474 (define-public perl-strictures
7475 (package
7476 (name "perl-strictures")
7477 (version "1.005005")
7478 (source
7479 (origin
7480 (method url-fetch)
7481 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7482 "strictures-" version ".tar.gz"))
7483 (sha256
7484 (base32
7485 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
7486 (build-system perl-build-system)
7487 (home-page "https://metacpan.org/release/strictures")
7488 (synopsis "Turn on strict and make all warnings fatal")
7489 (description "Strictures turns on strict and make all warnings fatal when
7490 run from within a source-controlled directory.")
7491 (license (package-license perl))))
7492
7493 ;; Some packages don't yet work with this newer version of ‘strictures’.
7494 (define-public perl-strictures-2
7495 (package
7496 (inherit perl-strictures)
7497 (version "2.000004")
7498 (source
7499 (origin
7500 (method url-fetch)
7501 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7502 "strictures-" version ".tar.gz"))
7503 (sha256
7504 (base32
7505 "0lzp0q6kwk6vgf7zdlvy9zz28fj6n1b776irm556c7gylcq29113"))))))
7506
7507 (define-public perl-string-camelcase
7508 (package
7509 (name "perl-string-camelcase")
7510 (version "0.02")
7511 (source
7512 (origin
7513 (method url-fetch)
7514 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
7515 "String-CamelCase-" version ".tar.gz"))
7516 (sha256
7517 (base32
7518 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
7519 (build-system perl-build-system)
7520 (arguments
7521 `(#:phases
7522 (modify-phases %standard-phases
7523 (add-before 'configure 'set-perl-search-path
7524 (lambda _
7525 ;; Work around "dotless @INC" build failure.
7526 (setenv "PERL5LIB"
7527 (string-append (getcwd) ":"
7528 (getenv "PERL5LIB")))
7529 #t)))))
7530 (home-page "https://metacpan.org/release/String-CamelCase")
7531 (synopsis "Camelcase and de-camelcase")
7532 (description "This module may be used to convert from under_score text to
7533 CamelCase and back again.")
7534 (license (package-license perl))))
7535
7536 (define-public perl-string-escape
7537 (package
7538 (name "perl-string-escape")
7539 (version "2010.002")
7540 (source
7541 (origin
7542 (method url-fetch)
7543 (uri (string-append
7544 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
7545 version ".tar.gz"))
7546 (sha256
7547 (base32
7548 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
7549 (build-system perl-build-system)
7550 (home-page "https://metacpan.org/release/String-Escape")
7551 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
7552 (description "This module provides a flexible calling interface to some
7553 frequently-performed string conversion functions, including applying and
7554 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
7555 removing double-quotes, and truncating to fit within a desired length.")
7556 (license (package-license perl))))
7557
7558 (define-public perl-string-rewriteprefix
7559 (package
7560 (name "perl-string-rewriteprefix")
7561 (version "0.007")
7562 (source
7563 (origin
7564 (method url-fetch)
7565 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
7566 "String-RewritePrefix-" version ".tar.gz"))
7567 (sha256
7568 (base32
7569 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
7570 (build-system perl-build-system)
7571 (propagated-inputs
7572 `(("perl-sub-exporter" ,perl-sub-exporter)))
7573 (home-page "https://metacpan.org/release/String-RewritePrefix")
7574 (synopsis "Rewrite strings based on a set of known prefixes")
7575 (description "This module allows you to rewrite strings based on a set of
7576 known prefixes.")
7577 (license (package-license perl))))
7578
7579 (define-public perl-string-print
7580 (package
7581 (name "perl-string-print")
7582 (version "0.15")
7583 (source (origin
7584 (method url-fetch)
7585 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
7586 "String-Print-" version ".tar.gz"))
7587 (sha256
7588 (base32
7589 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
7590 (build-system perl-build-system)
7591 (propagated-inputs
7592 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7593 (home-page "https://metacpan.org/release/String-Print")
7594 (synopsis "String printing alternatives to printf")
7595 (description
7596 "This module inserts values into (translated) strings. It provides
7597 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
7598 a functional interface.")
7599 (license (package-license perl))))
7600
7601 (define-public perl-sub-exporter
7602 (package
7603 (name "perl-sub-exporter")
7604 (version "0.987")
7605 (source
7606 (origin
7607 (method url-fetch)
7608 (uri (string-append
7609 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
7610 version ".tar.gz"))
7611 (sha256
7612 (base32
7613 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
7614 (build-system perl-build-system)
7615 (propagated-inputs
7616 `(("perl-data-optlist" ,perl-data-optlist)
7617 ("perl-params-util" ,perl-params-util)))
7618 (home-page "https://metacpan.org/release/Sub-Exporter")
7619 (synopsis "Sophisticated exporter for custom-built routines")
7620 (description
7621 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
7622 custom-built routines.")
7623 (license (package-license perl))))
7624
7625 (define-public perl-sub-exporter-progressive
7626 (package
7627 (name "perl-sub-exporter-progressive")
7628 (version "0.001013")
7629 (source
7630 (origin
7631 (method url-fetch)
7632 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
7633 "Sub-Exporter-Progressive-" version ".tar.gz"))
7634 (sha256
7635 (base32
7636 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
7637 (build-system perl-build-system)
7638 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
7639 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
7640 (synopsis "Only use Sub::Exporter if you need it")
7641 (description "Sub::Exporter is an incredibly powerful module, but with
7642 that power comes great responsibility, as well as some runtime penalties.
7643 This module is a \"Sub::Exporter\" wrapper that will let your users just use
7644 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
7645 if your users try to use \"Sub::Exporter\"'s more advanced features, like
7646 renaming exports, if they try to use them.")
7647 (license (package-license perl))))
7648
7649 (define-public perl-sub-identify
7650 (package
7651 (name "perl-sub-identify")
7652 (version "0.14")
7653 (source
7654 (origin
7655 (method url-fetch)
7656 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
7657 "Sub-Identify-" version ".tar.gz"))
7658 (sha256
7659 (base32
7660 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
7661 (build-system perl-build-system)
7662 (home-page "https://metacpan.org/release/Sub-Identify")
7663 (synopsis "Retrieve names of code references")
7664 (description "Sub::Identify allows you to retrieve the real name of code
7665 references.")
7666 (license (package-license perl))))
7667
7668 (define-public perl-sub-info
7669 (package
7670 (name "perl-sub-info")
7671 (version "0.002")
7672 (source
7673 (origin
7674 (method url-fetch)
7675 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
7676 version ".tar.gz"))
7677 (sha256
7678 (base32
7679 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
7680 (build-system perl-build-system)
7681 (propagated-inputs
7682 `(("perl-importer" ,perl-importer)))
7683 (home-page "https://metacpan.org/release/Sub-Info")
7684 (synopsis "Tool to inspect subroutines")
7685 (description "This package provides tools for inspecting subroutines
7686 in Perl.")
7687 (license (package-license perl))))
7688
7689 (define-public perl-sub-install
7690 (package
7691 (name "perl-sub-install")
7692 (version "0.928")
7693 (source
7694 (origin
7695 (method url-fetch)
7696 (uri (string-append
7697 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
7698 version ".tar.gz"))
7699 (sha256
7700 (base32
7701 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
7702 (build-system perl-build-system)
7703 (home-page "https://metacpan.org/release/Sub-Install")
7704 (synopsis "Install subroutines into packages easily")
7705 (description
7706 "Sub::Install makes it easy to install subroutines into packages without
7707 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
7708 can see them.")
7709 (license (package-license perl))))
7710
7711 (define-public perl-sub-name
7712 (package
7713 (name "perl-sub-name")
7714 (version "0.21")
7715 (source
7716 (origin
7717 (method url-fetch)
7718 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7719 "Sub-Name-" version ".tar.gz"))
7720 (sha256
7721 (base32
7722 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
7723 (build-system perl-build-system)
7724 (native-inputs
7725 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
7726 (home-page "https://metacpan.org/release/Sub-Name")
7727 (synopsis "(Re)name a sub")
7728 (description "Assigns a new name to referenced sub. If package
7729 specification is omitted in the name, then the current package is used. The
7730 return value is the sub.")
7731 (license (package-license perl))))
7732
7733 (define-public perl-sub-quote
7734 (package
7735 (name "perl-sub-quote")
7736 (version "2.005001")
7737 (source
7738 (origin
7739 (method url-fetch)
7740 (uri (string-append
7741 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
7742 version ".tar.gz"))
7743 (sha256
7744 (base32
7745 "01xsvfdpxzimsbrp9mqipsr93y83nhj21q05g8v1bw6yfl3lzayn"))))
7746 (build-system perl-build-system)
7747 (native-inputs
7748 `(("perl-test-fatal" ,perl-test-fatal)))
7749 (propagated-inputs
7750 `(("perl-sub-name" ,perl-sub-name)))
7751 (home-page "https://metacpan.org/release/Sub-Quote")
7752 (synopsis "Efficient generation of subroutines via string eval")
7753 (description "Sub::Quote provides an efficient generation of subroutines
7754 via string eval.")
7755 (license (package-license perl))))
7756
7757 (define-public perl-sub-uplevel
7758 (package
7759 (name "perl-sub-uplevel")
7760 (version "0.24")
7761 (source
7762 (origin
7763 (method url-fetch)
7764 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7765 "Sub-Uplevel-" version ".tar.gz"))
7766 (sha256
7767 (base32
7768 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
7769 (build-system perl-build-system)
7770 (home-page "https://metacpan.org/release/Sub-Uplevel")
7771 (synopsis "Apparently run a function in a higher stack frame")
7772 (description "Like Tcl's uplevel() function, but not quite so dangerous.
7773 The idea is just to fool caller(). All the really naughty bits of Tcl's
7774 uplevel() are avoided.")
7775 (license (package-license perl))))
7776
7777 (define-public perl-super
7778 (package
7779 (name "perl-super")
7780 (version "1.20141117")
7781 (source
7782 (origin
7783 (method url-fetch)
7784 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
7785 "SUPER-" version ".tar.gz"))
7786 (sha256
7787 (base32 "1cn05kacg0xfbm1zzksm2yx2pnrzqja4d9163cxv3sdfc1yhwqhs"))))
7788 (build-system perl-build-system)
7789 (native-inputs
7790 `(("perl-module-build" ,perl-module-build)))
7791 (propagated-inputs
7792 `(("perl-sub-identify" ,perl-sub-identify)))
7793 (home-page "https://metacpan.org/release/SUPER")
7794 (synopsis "Control superclass method dispatching")
7795 (description
7796 "When subclassing a class, you may occasionally want to dispatch control to
7797 the superclass---at least conditionally and temporarily. This module provides
7798 nicer equivalents to the native Perl syntax for calling superclasses, along with
7799 a universal @code{super} method to determine a class' own superclass, and better
7800 support for run-time mix-ins and roles.")
7801 (license perl-license)))
7802
7803 (define-public perl-svg
7804 (package
7805 (name "perl-svg")
7806 (version "2.63")
7807 (source
7808 (origin
7809 (method url-fetch)
7810 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
7811 version ".tar.gz"))
7812 (sha256
7813 (base32
7814 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
7815 (build-system perl-build-system)
7816 (home-page "https://metacpan.org/release/SVG")
7817 (synopsis "Perl extension for generating SVG documents")
7818 (description "SVG is a Perl module which generates a nested data structure
7819 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
7820 Using SVG, you can generate SVG objects, embed other SVG instances into it,
7821 access the DOM object, create and access Javascript, and generate SMIL
7822 animation content.")
7823 (license (package-license perl))))
7824
7825 (define-public perl-switch
7826 (package
7827 (name "perl-switch")
7828 (version "2.17")
7829 (source
7830 (origin
7831 (method url-fetch)
7832 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
7833 version ".tar.gz"))
7834 (sha256
7835 (base32
7836 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
7837 (build-system perl-build-system)
7838 (home-page "https://metacpan.org/release/Switch")
7839 (synopsis "Switch statement for Perl")
7840 (description "Switch is a Perl module which implements a generalized case
7841 mechanism. The module augments the standard Perl syntax with two new
7842 statements: @code{switch} and @code{case}.")
7843 (license (package-license perl))))
7844
7845 (define-public perl-sys-cpu
7846 (package
7847 (name "perl-sys-cpu")
7848 (version "0.61")
7849 (source (origin
7850 (method url-fetch)
7851 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
7852 "Sys-CPU-" version ".tar.gz"))
7853 (sha256
7854 (base32
7855 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
7856 (modules '((guix build utils)))
7857 (snippet
7858 '(begin
7859 ;; The contents of /proc/cpuinfo can differ and confuse the
7860 ;; cpu_clock and cpu_type methods, so we replace the test
7861 ;; with one that marks cpu_clock and cpu_type as TODO.
7862 ;; Borrowed from Debian.
7863 (call-with-output-file "t/Sys-CPU.t"
7864 (lambda (port)
7865 (format port "#!/usr/bin/perl
7866
7867 use Test::More tests => 4;
7868
7869 BEGIN { use_ok('Sys::CPU'); }
7870
7871 $number = &Sys::CPU::cpu_count();
7872 ok( defined($number), \"CPU Count: $number\" );
7873
7874 TODO: {
7875 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
7876 $speed = &Sys::CPU::cpu_clock();
7877 ok( defined($speed), \"CPU Speed: $speed\" );
7878 }
7879
7880 TODO: {
7881 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
7882 $type = &Sys::CPU::cpu_type();
7883 ok( defined($type), \"CPU Type: $type\" );
7884 }~%")))
7885 #t))))
7886 (build-system perl-build-system)
7887 (synopsis "Perl extension for getting CPU information")
7888 (description
7889 "Sys::CPU is a module for counting the number of CPUs on a system, and
7890 determining their type and clock speed.")
7891 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
7892 (license (package-license perl))))
7893
7894 (define-public perl-sys-hostname-long
7895 (package
7896 (name "perl-sys-hostname-long")
7897 (version "1.5")
7898 (source
7899 (origin
7900 (method url-fetch)
7901 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
7902 "Sys-Hostname-Long-" version ".tar.gz"))
7903 (sha256
7904 (base32
7905 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
7906 (build-system perl-build-system)
7907 (arguments `(#:tests? #f)) ;no `hostname' during build
7908 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
7909 (synopsis "Get full hostname in Perl")
7910 (description "Sys::Hostname::Long tries very hard to get the full hostname
7911 of a system.")
7912 (license (package-license perl))))
7913
7914 (define-public perl-task-weaken
7915 (package
7916 (name "perl-task-weaken")
7917 (version "1.06")
7918 (source
7919 (origin
7920 (method url-fetch)
7921 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7922 "Task-Weaken-" version ".tar.gz"))
7923 (sha256
7924 (base32
7925 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
7926 (build-system perl-build-system)
7927 (arguments
7928 '(#:phases (modify-phases %standard-phases
7929 (add-before 'configure 'set-search-path
7930 (lambda _
7931 ;; Work around "dotless @INC" build failure.
7932 (setenv "PERL5LIB"
7933 (string-append (getcwd) ":"
7934 (getenv "PERL5LIB")))
7935 #t)))))
7936 (home-page "https://metacpan.org/release/Task-Weaken")
7937 (synopsis "Ensure that a platform has weaken support")
7938 (description "One recurring problem in modules that use Scalar::Util's
7939 weaken function is that it is not present in the pure-perl variant. If
7940 Scalar::Util is not available at all, it will issue a normal dependency on the
7941 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
7942 module does not have weaken, the install will bail out altogether with a long
7943 error encouraging the user to seek support.")
7944 (license (package-license perl))))
7945
7946 (define-public perl-template-toolkit
7947 (package
7948 (name "perl-template-toolkit")
7949 (version "2.26")
7950 (source
7951 (origin
7952 (method url-fetch)
7953 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
7954 "Template-Toolkit-" version ".tar.gz"))
7955 (sha256
7956 (base32
7957 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
7958 (build-system perl-build-system)
7959 (propagated-inputs
7960 `(("perl-appconfig" ,perl-appconfig)
7961 ("perl-test-leaktrace" ,perl-test-leaktrace)))
7962 (home-page "https://metacpan.org/release/Template-Toolkit")
7963 (synopsis "Template processing system for Perl")
7964 (description "The Template Toolkit is a collection of modules which
7965 implement an extensible template processing system. It was originally
7966 designed and remains primarily useful for generating dynamic web content, but
7967 it can be used equally well for processing any other kind of text based
7968 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
7969 (license (package-license perl))))
7970
7971 (define-public perl-template-timer
7972 (package
7973 (name "perl-template-timer")
7974 (version "1.00")
7975 (source
7976 (origin
7977 (method url-fetch)
7978 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
7979 "Template-Timer-" version ".tar.gz"))
7980 (sha256
7981 (base32
7982 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
7983 (build-system perl-build-system)
7984 (propagated-inputs
7985 `(("perl-template-toolkit" ,perl-template-toolkit)))
7986 (home-page "https://metacpan.org/release/Template-Timer")
7987 (synopsis "Profiling for Template Toolkit")
7988 (description "Template::Timer provides inline profiling of the template
7989 processing in Perl code.")
7990 (license (list gpl3 artistic2.0))))
7991
7992 (define-public perl-term-encoding
7993 (package
7994 (name "perl-term-encoding")
7995 (version "0.02")
7996 (source
7997 (origin
7998 (method url-fetch)
7999 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
8000 "Term-Encoding-" version ".tar.gz"))
8001 (sha256
8002 (base32
8003 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
8004 (build-system perl-build-system)
8005 (native-inputs
8006 `(("perl-module-install" ,perl-module-install)))
8007 (home-page "https://metacpan.org/release/Term-Encoding")
8008 (synopsis "Detect encoding of the current terminal")
8009 (description "Term::Encoding is a simple module to detect the encoding of
8010 the current terminal expects in various ways.")
8011 (license (package-license perl))))
8012
8013 (define-public perl-term-progressbar
8014 (package
8015 (name "perl-term-progressbar")
8016 (version "2.17")
8017 (source
8018 (origin
8019 (method url-fetch)
8020 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
8021 "Term-ProgressBar-" version ".tar.gz"))
8022 (sha256
8023 (base32
8024 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
8025 (build-system perl-build-system)
8026 (native-inputs
8027 `(("perl-capture-tiny" ,perl-capture-tiny)
8028 ("perl-test-exception" ,perl-test-exception)))
8029 (propagated-inputs
8030 `(("perl-class-methodmaker" ,perl-class-methodmaker)
8031 ("perl-term-readkey" ,perl-term-readkey)))
8032 (home-page "https://metacpan.org/release/Term-ProgressBar")
8033 (synopsis "Progress meter on a standard terminal")
8034 (description "Term::ProgressBar provides a simple progress bar on the
8035 terminal, to let the user know that something is happening, roughly how much
8036 stuff has been done, and maybe an estimate at how long remains.")
8037 (license (package-license perl))))
8038
8039 (define-public perl-term-progressbar-quiet
8040 (package
8041 (name "perl-term-progressbar-quiet")
8042 (version "0.31")
8043 (source
8044 (origin
8045 (method url-fetch)
8046 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
8047 "Term-ProgressBar-Quiet-" version ".tar.gz"))
8048 (sha256
8049 (base32
8050 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
8051 (build-system perl-build-system)
8052 (propagated-inputs
8053 `(("perl-io-interactive" ,perl-io-interactive)
8054 ("perl-term-progressbar" ,perl-term-progressbar)
8055 ("perl-test-mockobject" ,perl-test-mockobject)))
8056 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
8057 (synopsis "Progress meter if run interactively")
8058 (description "Term::ProgressBar is a wonderful module for showing progress
8059 bars on the terminal. This module acts very much like that module when it is
8060 run interactively. However, when it is not run interactively (for example, as
8061 a cron job) then it does not show the progress bar.")
8062 (license (package-license perl))))
8063
8064 (define-public perl-term-progressbar-simple
8065 (package
8066 (name "perl-term-progressbar-simple")
8067 (version "0.03")
8068 (source
8069 (origin
8070 (method url-fetch)
8071 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
8072 "Term-ProgressBar-Simple-" version ".tar.gz"))
8073 (sha256
8074 (base32
8075 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
8076 (build-system perl-build-system)
8077 (propagated-inputs
8078 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
8079 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
8080 (synopsis "Simple progress bars")
8081 (description "Term::ProgressBar::Simple tells you how much work has been
8082 done, how much is left to do, and estimate how long it will take.")
8083 (license (package-license perl))))
8084
8085 (define-public perl-term-readkey
8086 (package
8087 (name "perl-term-readkey")
8088 (version "2.37")
8089 (source
8090 (origin
8091 (method url-fetch)
8092 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
8093 "TermReadKey-" version ".tar.gz"))
8094 (sha256
8095 (base32
8096 "0hdj5mldpj3pyprd4hbbalfx9yjgi5p59gg2ixk9808f5v7q74sa"))))
8097 (build-system perl-build-system)
8098 (home-page "https://metacpan.org/release/TermReadKey")
8099 (synopsis "Simple terminal control")
8100 (description "This module, ReadKey, provides ioctl control for terminals
8101 so the input modes can be changed (thus allowing reads of a single character
8102 at a time), and also provides non-blocking reads of stdin, as well as several
8103 other terminal related features, including retrieval/modification of the
8104 screen size, and retrieval/modification of the control characters.")
8105 (license (package-license perl))))
8106
8107 (define-public perl-term-size-any
8108 (package
8109 (name "perl-term-size-any")
8110 (version "0.002")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8115 "Term-Size-Any-" version ".tar.gz"))
8116 (sha256
8117 (base32
8118 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
8119 (build-system perl-build-system)
8120 (native-inputs
8121 `(("perl-devel-hide" ,perl-devel-hide)))
8122 (propagated-inputs
8123 `(("perl-term-size-perl" ,perl-term-size-perl)))
8124 (home-page "https://metacpan.org/release/Term-Size-Any")
8125 (synopsis "Retrieve terminal size")
8126 (description "This is a unified interface to retrieve terminal size. It
8127 loads one module of a list of known alternatives, each implementing some way
8128 to get the desired terminal information. This loaded module will actually do
8129 the job on behalf of @code{Term::Size::Any}.")
8130 (license (package-license perl))))
8131
8132 (define-public perl-term-size-perl
8133 (package
8134 (name "perl-term-size-perl")
8135 (version "0.029")
8136 (source
8137 (origin
8138 (method url-fetch)
8139 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
8140 "Term-Size-Perl-" version ".tar.gz"))
8141 (sha256
8142 (base32
8143 "1rvm91bhdlxfwx5zka023p7szf2s7gm16wl27qiivvj66svsl6lc"))))
8144 (build-system perl-build-system)
8145 (home-page "https://metacpan.org/release/Term-Size-Perl")
8146 (synopsis "Perl extension for retrieving terminal size (Perl version)")
8147 (description "This is yet another implementation of @code{Term::Size}.
8148 Now in pure Perl, with the exception of a C probe run at build time.")
8149 (license (package-license perl))))
8150
8151 (define-public perl-term-table
8152 (package
8153 (name "perl-term-table")
8154 (version "0.008")
8155 (source
8156 (origin
8157 (method url-fetch)
8158 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
8159 version ".tar.gz"))
8160 (sha256
8161 (base32
8162 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
8163 (build-system perl-build-system)
8164 (propagated-inputs
8165 `(("perl-importer" ,perl-importer)))
8166 (home-page "https://metacpan.org/release/Term-Table")
8167 (synopsis "Format a header and rows into a table")
8168 (description "This module is able to generically format rows of data
8169 into tables.")
8170 (license (package-license perl))))
8171
8172 (define-public perl-text-aligner
8173 (package
8174 (name "perl-text-aligner")
8175 (version "0.12")
8176 (source
8177 (origin
8178 (method url-fetch)
8179 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8180 "Text-Aligner-" version ".tar.gz"))
8181 (sha256
8182 (base32
8183 "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
8184 (build-system perl-build-system)
8185 (native-inputs `(("perl-module-build" ,perl-module-build)))
8186 (home-page "https://metacpan.org/release/Text-Aligner")
8187 (synopsis "Align text")
8188 (description "Text::Aligner exports a single function, align(), which is
8189 used to justify strings to various alignment styles.")
8190 (license x11)))
8191
8192 (define-public perl-text-balanced
8193 (package
8194 (name "perl-text-balanced")
8195 (version "2.03")
8196 (source
8197 (origin
8198 (method url-fetch)
8199 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
8200 "Text-Balanced-" version ".tar.gz"))
8201 (sha256
8202 (base32
8203 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
8204 (build-system perl-build-system)
8205 (home-page "https://metacpan.org/release/Text-Balanced")
8206 (synopsis "Extract delimited text sequences from strings")
8207 (description "The Text::Balanced module can be used to extract delimited
8208 text sequences from strings.")
8209 (license (package-license perl))))
8210
8211 (define-public perl-text-csv
8212 (package
8213 (name "perl-text-csv")
8214 (version "1.33")
8215 (source
8216 (origin
8217 (method url-fetch)
8218 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
8219 "Text-CSV-" version ".tar.gz"))
8220 (sha256
8221 (base32
8222 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
8223 (build-system perl-build-system)
8224 (home-page "https://metacpan.org/release/Text-CSV")
8225 (synopsis "Manipulate comma-separated values")
8226 (description "Text::CSV provides facilities for the composition and
8227 decomposition of comma-separated values. An instance of the Text::CSV class
8228 can combine fields into a CSV string and parse a CSV string into fields.")
8229 (license (package-license perl))))
8230
8231 (define-public perl-text-csv-xs
8232 (package
8233 (name "perl-text-csv-xs")
8234 (version "1.25")
8235 (source
8236 (origin
8237 (method url-fetch)
8238 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
8239 "Text-CSV_XS-" version ".tgz"))
8240 (sha256
8241 (base32
8242 "06zlfbqrwbl0g2g3bhk6046yy5pf2rz80fzcp8aj47rnswz2yx5k"))))
8243 (build-system perl-build-system)
8244 (home-page "https://metacpan.org/release/Text-CSV_XS")
8245 (synopsis "Rountines for manipulating CSV files")
8246 (description "@code{Text::CSV_XS} provides facilities for the composition
8247 and decomposition of comma-separated values. An instance of the
8248 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
8249 CSV string into fields. The module accepts either strings or files as input
8250 and support the use of user-specified characters for delimiters, separators,
8251 and escapes.")
8252 (license (package-license perl))))
8253
8254 (define-public perl-text-diff
8255 (package
8256 (name "perl-text-diff")
8257 (version "1.45")
8258 (source
8259 (origin
8260 (method url-fetch)
8261 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8262 "Text-Diff-" version ".tar.gz"))
8263 (sha256
8264 (base32
8265 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
8266 (build-system perl-build-system)
8267 (propagated-inputs
8268 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
8269 (home-page "https://metacpan.org/release/Text-Diff")
8270 (synopsis "Perform diffs on files and record sets")
8271 (description "Text::Diff provides a basic set of services akin to the GNU
8272 diff utility. It is not anywhere near as feature complete as GNU diff, but it
8273 is better integrated with Perl and available on all platforms. It is often
8274 faster than shelling out to a system's diff executable for small files, and
8275 generally slower on larger files.")
8276 (license (package-license perl))))
8277
8278 (define-public perl-text-format
8279 (package
8280 (name "perl-text-format")
8281 (version "0.61")
8282 (source (origin
8283 (method url-fetch)
8284 (uri (string-append
8285 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
8286 version ".tar.gz"))
8287 (sha256
8288 (base32
8289 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
8290 (build-system perl-build-system)
8291 (native-inputs
8292 `(("perl-module-build" ,perl-module-build)
8293 ("perl-test-pod" ,perl-test-pod)
8294 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8295 (home-page "https://metacpan.org/release/Text-Format")
8296 (synopsis "Various subroutines to format text")
8297 (description "This package provides functions to format text in various
8298 ways like centering, paragraphing, and converting tabs to spaces and spaces
8299 to tabs.")
8300 (license perl-license)))
8301
8302 (define-public perl-text-glob
8303 (package
8304 (name "perl-text-glob")
8305 (version "0.11")
8306 (source
8307 (origin
8308 (method url-fetch)
8309 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8310 "Text-Glob-" version ".tar.gz"))
8311 (sha256
8312 (base32
8313 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
8314 (build-system perl-build-system)
8315 (native-inputs `(("perl-module-build" ,perl-module-build)))
8316 (home-page "https://metacpan.org/release/Text-Glob")
8317 (synopsis "Match globbing patterns against text")
8318 (description "Text::Glob implements glob(3) style matching that can be
8319 used to match against text, rather than fetching names from a file system. If
8320 you want to do full file globbing use the File::Glob module instead.")
8321 (license (package-license perl))))
8322
8323 (define-public perl-text-neattemplate
8324 (package
8325 (name "perl-text-neattemplate")
8326 (version "0.1101")
8327 (source
8328 (origin
8329 (method url-fetch)
8330 (uri (string-append
8331 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
8332 "Text-NeatTemplate-" version ".tar.gz"))
8333 (sha256
8334 (base32
8335 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
8336 (build-system perl-build-system)
8337 (native-inputs
8338 `(("perl-module-build" ,perl-module-build)))
8339 (home-page
8340 "https://metacpan.org/release/Text-NeatTemplate")
8341 (synopsis "Fast, middleweight template engine")
8342 (description
8343 "Text::NeatTemplate provides a simple, middleweight but fast
8344 template engine, for when you need speed rather than complex features,
8345 yet need more features than simple variable substitution.")
8346 (license (package-license perl))))
8347
8348 (define-public perl-text-roman
8349 (package
8350 (name "perl-text-roman")
8351 (version "3.5")
8352 (source
8353 (origin
8354 (method url-fetch)
8355 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
8356 version ".tar.gz"))
8357 (sha256
8358 (base32
8359 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
8360 (build-system perl-build-system)
8361 (home-page "https://metacpan.org/release/Text-Roman")
8362 (synopsis "Convert between Roman and Arabic algorisms")
8363 (description "This package provides functions to convert between Roman and
8364 Arabic algorisms. It supports both conventional Roman algorisms (which range
8365 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
8366 algorism to indicate multiplication by 1000.")
8367 (license (package-license perl))))
8368
8369 (define-public perl-text-simpletable
8370 (package
8371 (name "perl-text-simpletable")
8372 (version "2.04")
8373 (source
8374 (origin
8375 (method url-fetch)
8376 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
8377 "Text-SimpleTable-" version ".tar.gz"))
8378 (sha256
8379 (base32
8380 "14sjmdcy7s73sk740g3ccmzmwhwd52x5ay3bjmibjlql1cag70ld"))))
8381 (build-system perl-build-system)
8382 (home-page "https://metacpan.org/release/Text-SimpleTable")
8383 (synopsis "Simple ASCII tables")
8384 (description "Text::SimpleTable draws simple ASCII tables.")
8385 (license artistic2.0)))
8386
8387 (define-public perl-text-table
8388 (package
8389 (name "perl-text-table")
8390 (version "1.133")
8391 (source
8392 (origin
8393 (method url-fetch)
8394 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
8395 "Text-Table-" version ".tar.gz"))
8396 (sha256
8397 (base32
8398 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
8399 (build-system perl-build-system)
8400 (native-inputs
8401 `(("perl-module-build" ,perl-module-build)))
8402 (propagated-inputs
8403 `(("perl-text-aligner" ,perl-text-aligner)))
8404 (home-page "https://metacpan.org/release/Text-Table")
8405 (synopsis "Organize Data in Tables")
8406 (description "Text::Table renders plaintext tables.")
8407 (license x11)))
8408
8409 (define-public perl-text-template
8410 (package
8411 (name "perl-text-template")
8412 (version "1.54")
8413 (source
8414 (origin
8415 (method url-fetch)
8416 (uri (string-append
8417 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
8418 version
8419 ".tar.gz"))
8420 (sha256
8421 (base32
8422 "0s56jgak9ccbbbybf5v8hvvhyplbfhzl6p6v1751inly80rlj1kv"))))
8423 (build-system perl-build-system)
8424 (native-inputs
8425 `(("perl-test-more-utf8" ,perl-test-more-utf8)
8426 ("perl-test-warnings" ,perl-test-warnings)))
8427 (home-page
8428 "https://metacpan.org/release/Text-Template")
8429 (synopsis
8430 "Expand template text with embedded Perl")
8431 (description
8432 "This is a library for generating letters, building HTML pages, or
8433 filling in templates generally. A template is a piece of text that has little
8434 Perl programs embedded in it here and there. When you fill in a template, you
8435 evaluate the little programs and replace them with their values.")
8436 (license perl-license)))
8437
8438 (define-public perl-text-unidecode
8439 (package
8440 (name "perl-text-unidecode")
8441 (version "1.23")
8442 (source
8443 (origin
8444 (method url-fetch)
8445 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
8446 "Text-Unidecode-" version ".tar.gz"))
8447 (sha256
8448 (base32
8449 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
8450 (build-system perl-build-system)
8451 (home-page "https://metacpan.org/release/Text-Unidecode")
8452 (synopsis "Provide plain ASCII transliterations of Unicode text")
8453 (description "Text::Unidecode provides a function, unidecode(...) that
8454 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
8455 universally displayable characters between 0x00 and 0x7F). The representation
8456 is almost always an attempt at transliteration-- i.e., conveying, in Roman
8457 letters, the pronunciation expressed by the text in some other writing
8458 system.")
8459 (license (package-license perl))))
8460
8461 (define-public perl-threads
8462 (package
8463 (name "perl-threads")
8464 (version "2.21")
8465 (source
8466 (origin
8467 (method url-fetch)
8468 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
8469 version ".tar.gz"))
8470 (sha256
8471 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
8472 (build-system perl-build-system)
8473 (home-page "https://metacpan.org/release/threads")
8474 (synopsis "Perl interpreter-based threads")
8475 (description "This module exposes interpreter threads to the Perl level.")
8476 (license perl-license)))
8477
8478 (define-public perl-throwable
8479 (package
8480 (name "perl-throwable")
8481 (version "0.200013")
8482 (source
8483 (origin
8484 (method url-fetch)
8485 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8486 "Throwable-" version ".tar.gz"))
8487 (sha256
8488 (base32
8489 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
8490 (build-system perl-build-system)
8491 (native-inputs
8492 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
8493 (propagated-inputs
8494 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8495 ("perl-module-runtime" ,perl-module-runtime)
8496 ("perl-moo" ,perl-moo)))
8497 (home-page "https://metacpan.org/release/Throwable")
8498 (synopsis "Role for classes that can be thrown")
8499 (description "Throwable is a role for classes that are meant to be thrown
8500 as exceptions to standard program flow.")
8501 (license (package-license perl))))
8502
8503 (define-public perltidy
8504 (package
8505 (name "perltidy")
8506 (version "20180220")
8507 (source (origin
8508 (method url-fetch)
8509 (uri (string-append "mirror://sourceforge/perltidy/" version
8510 "/Perl-Tidy-" version ".tar.gz"))
8511 (sha256
8512 (base32
8513 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
8514 (build-system perl-build-system)
8515 (home-page "http://perltidy.sourceforge.net/")
8516 (synopsis "Perl script tidier")
8517 (description "This package contains a Perl script which indents and
8518 reformats Perl scripts to make them easier to read. The formatting can be
8519 controlled with command line parameters. The default parameter settings
8520 approximately follow the suggestions in the Perl Style Guide.")
8521 (license gpl2+)))
8522
8523 (define-public perl-tie-cycle
8524 (package
8525 (name "perl-tie-cycle")
8526 (version "1.225")
8527 (source
8528 (origin
8529 (method url-fetch)
8530 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
8531 version ".tar.gz"))
8532 (sha256
8533 (base32
8534 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
8535 (build-system perl-build-system)
8536 (home-page "https://metacpan.org/release/Tie-Cycle")
8537 (synopsis "Cycle through a list of values")
8538 (description "You use @code{Tie::Cycle} to go through a list over and over
8539 again. Once you get to the end of the list, you go back to the beginning.")
8540 (license (package-license perl))))
8541
8542 (define-public perl-tie-ixhash
8543 (package
8544 (name "perl-tie-ixhash")
8545 (version "1.23")
8546 (source
8547 (origin
8548 (method url-fetch)
8549 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
8550 "Tie-IxHash-" version ".tar.gz"))
8551 (sha256
8552 (base32
8553 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
8554 (build-system perl-build-system)
8555 (native-inputs `(("perl-module-build" ,perl-module-build)))
8556 (home-page "https://metacpan.org/release/Tie-IxHash")
8557 (synopsis "Ordered associative arrays for Perl")
8558 (description "This Perl module implements Perl hashes that preserve the
8559 order in which the hash elements were added. The order is not affected when
8560 values corresponding to existing keys in the IxHash are changed. The elements
8561 can also be set to any arbitrary supplied order. The familiar perl array
8562 operations can also be performed on the IxHash.")
8563 (license (package-license perl))))
8564
8565 (define-public perl-tie-toobject
8566 (package
8567 (name "perl-tie-toobject")
8568 (version "0.03")
8569 (source
8570 (origin
8571 (method url-fetch)
8572 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
8573 "Tie-ToObject-" version ".tar.gz"))
8574 (sha256
8575 (base32
8576 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
8577 (build-system perl-build-system)
8578 (propagated-inputs
8579 `(("perl-test-simple" ,perl-test-simple)))
8580 (home-page "https://metacpan.org/release/Tie-ToObject")
8581 (synopsis "Tie to an existing Perl object")
8582 (description "This class provides a tie constructor that returns the
8583 object it was given as it's first argument. This way side effects of calling
8584 $object->TIEHASH are avoided.")
8585 (license (package-license perl))))
8586
8587 (define-public perl-time-duration
8588 (package
8589 (name "perl-time-duration")
8590 (version "1.1")
8591 (source
8592 (origin
8593 (method url-fetch)
8594 (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
8595 "Time-Duration-" version ".tar.gz"))
8596 (sha256
8597 (base32
8598 "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
8599 (build-system perl-build-system)
8600 (native-inputs
8601 `(("perl-module-install" ,perl-module-install)
8602 ("perl-test-pod" ,perl-test-pod)
8603 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8604 (home-page "https://metacpan.org/release/Time-Duration")
8605 (synopsis "English expression of durations")
8606 (description "This module provides functions for expressing durations in
8607 rounded or exact terms.")
8608 (license (package-license perl))))
8609
8610 (define-public perl-time-duration-parse
8611 (package
8612 (name "perl-time-duration-parse")
8613 (version "0.13")
8614 (source
8615 (origin
8616 (method url-fetch)
8617 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
8618 "Time-Duration-Parse-" version ".tar.gz"))
8619 (sha256
8620 (base32
8621 "0affdzhsiy7dr6dzj2p6m9lynmjh53k31bprfsfa21pz8551hjj1"))))
8622 (build-system perl-build-system)
8623 (native-inputs
8624 `(("perl-time-duration" ,perl-time-duration)))
8625 (propagated-inputs
8626 `(("perl-exporter-lite" ,perl-exporter-lite)))
8627 (home-page "https://metacpan.org/release/Time-Duration-Parse")
8628 (synopsis "Parse time duration strings")
8629 (description "Time::Duration::Parse is a module to parse human readable
8630 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
8631 (license (package-license perl))))
8632
8633 (define-public perl-time-hires
8634 (package
8635 (name "perl-time-hires")
8636 (version "1.9758")
8637 (source (origin
8638 (method url-fetch)
8639 (uri (string-append
8640 "mirror://cpan/authors/id/J/JH/JHI/Time-HiRes-"
8641 version ".tar.gz"))
8642 (sha256
8643 (base32
8644 "07jbydcdzpjm6i4nidci0rlklx4kla210fsl6zishw0yq5di9yjv"))))
8645 (build-system perl-build-system)
8646 (home-page "https://metacpan.org/release/Time-HiRes")
8647 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
8648 (description "This package implements @code{usleep}, @code{ualarm}, and
8649 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
8650 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
8651 (license perl-license)))
8652
8653 (define-public perl-time-local
8654 (package
8655 (name "perl-time-local")
8656 (version "1.2300")
8657 (source
8658 (origin
8659 (method url-fetch)
8660 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8661 "Time-Local-" version ".tar.gz"))
8662 (sha256
8663 (base32
8664 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
8665 (build-system perl-build-system)
8666 (home-page "https://metacpan.org/release/Time-Local")
8667 (synopsis "Efficiently compute time from local and GMT time")
8668 (description "This module provides functions that are the inverse of
8669 built-in perl functions localtime() and gmtime(). They accept a date as a
8670 six-element array, and return the corresponding time(2) value in seconds since
8671 the system epoch.")
8672 (license (package-license perl))))
8673
8674 (define-public perl-time-piece
8675 (package
8676 (name "perl-time-piece")
8677 (version "1.3203")
8678 (source
8679 (origin
8680 (method url-fetch)
8681 (uri (string-append
8682 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
8683 version ".tar.gz"))
8684 (sha256
8685 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
8686 (build-system perl-build-system)
8687 (home-page "https://metacpan.org/release/Time-Piece")
8688 (synopsis "Object-Oriented time objects")
8689 (description
8690 "This module replaces the standard @code{localtime} and @code{gmtime}
8691 functions with implementations that return objects. It does so in a
8692 backwards-compatible manner, so that using these functions as documented will
8693 still work as expected.")
8694 (license perl-license)))
8695
8696 (define-public perl-timedate
8697 (package
8698 (name "perl-timedate")
8699 (version "2.30")
8700 (source
8701 (origin
8702 (method url-fetch)
8703 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
8704 "TimeDate-" version ".tar.gz"))
8705 (sha256
8706 (base32
8707 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
8708 (build-system perl-build-system)
8709 (home-page "https://metacpan.org/release/TimeDate")
8710 (synopsis "Date parsing/formatting subroutines")
8711 (description "This module provides routines for parsing date string into
8712 time values and formatting dates into ASCII strings.")
8713 (license (package-license perl))))
8714
8715 (define-public perl-time-mock
8716 (package
8717 (name "perl-time-mock")
8718 (version "v0.0.2")
8719 (source
8720 (origin
8721 (method url-fetch)
8722 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
8723 "Time-Mock-" version ".tar.gz"))
8724 (sha256
8725 (base32
8726 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
8727 (build-system perl-build-system)
8728 (native-inputs
8729 `(("perl-module-build" ,perl-module-build)))
8730 (propagated-inputs
8731 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
8732 (home-page "https://metacpan.org/release/Time-Mock")
8733 (synopsis "Shift and scale time")
8734 (description "This module allows you to speed up your sleep(), alarm(),
8735 and time() calls.")
8736 (license (package-license perl))))
8737
8738 (define-public perl-tree-simple
8739 (package
8740 (name "perl-tree-simple")
8741 (version "1.25")
8742 (source
8743 (origin
8744 (method url-fetch)
8745 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8746 "Tree-Simple-" version ".tgz"))
8747 (sha256
8748 (base32
8749 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
8750 (build-system perl-build-system)
8751 (native-inputs
8752 `(("perl-module-build" ,perl-module-build)
8753 ("perl-test-exception" ,perl-test-exception)))
8754 (propagated-inputs
8755 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
8756 (home-page "https://metacpan.org/release/Tree-Simple")
8757 (synopsis "Simple tree object")
8758 (description "This module in a fully object-oriented implementation of a
8759 simple n-ary tree.")
8760 (license (package-license perl))))
8761
8762 (define-public perl-tree-simple-visitorfactory
8763 (package
8764 (name "perl-tree-simple-visitorfactory")
8765 (version "0.12")
8766 (source
8767 (origin
8768 (method url-fetch)
8769 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
8770 "Tree-Simple-VisitorFactory-" version ".tgz"))
8771 (sha256
8772 (base32
8773 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
8774 (build-system perl-build-system)
8775 (native-inputs
8776 `(("perl-module-build" ,perl-module-build)
8777 ("perl-test-exception" ,perl-test-exception)))
8778 (propagated-inputs
8779 `(("perl-tree-simple" ,perl-tree-simple)
8780 ("perl-base" ,perl-base)))
8781 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
8782 (synopsis "Factory object for dispensing Visitor objects")
8783 (description "This module is a factory for dispensing
8784 Tree::Simple::Visitor::* objects.")
8785 (license (package-license perl))))
8786
8787 (define-public perl-try-tiny
8788 (package
8789 (name "perl-try-tiny")
8790 (version "0.22")
8791 (source
8792 (origin
8793 (method url-fetch)
8794 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8795 "Try-Tiny-" version ".tar.gz"))
8796 (sha256
8797 (base32
8798 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
8799 (build-system perl-build-system)
8800 (home-page "https://metacpan.org/release/Try-Tiny")
8801 (synopsis "Minimal try/catch with proper preservation of $@@")
8802 (description "This module provides bare bones try/catch/finally statements
8803 that are designed to minimize common mistakes with eval blocks, and nothing
8804 else.")
8805 (license x11)))
8806
8807 (define-public perl-type-tie
8808 (package
8809 (name "perl-type-tie")
8810 (version "0.009")
8811 (source
8812 (origin
8813 (method url-fetch)
8814 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8815 "Type-Tie-" version ".tar.gz"))
8816 (sha256
8817 (base32
8818 "1wv32kd7gx4kfyvzs13y029f49qbbji991wawvarac7rlz09wpan"))))
8819 (build-system perl-build-system)
8820 (native-inputs
8821 `(("perl-test-fatal" ,perl-test-fatal)
8822 ("perl-test-requires" ,perl-test-requires)))
8823 (propagated-inputs
8824 `(("perl-exporter-tiny" ,perl-exporter-tiny)
8825 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
8826 (home-page "https://metacpan.org/release/Type-Tie")
8827 (synopsis "Tie a variable to a type constraint")
8828 (description "This module exports a single function: @code{ttie}. It ties
8829 a variable to a type constraint, ensuring that whatever values stored in the
8830 variable will conform to the type constraint. If the type constraint has
8831 coercions, these will be used if necessary to ensure values assigned to the
8832 variable conform.")
8833 (license (package-license perl))))
8834
8835 (define-public perl-type-tiny
8836 (package
8837 (name "perl-type-tiny")
8838 (version "1.002002")
8839 (source
8840 (origin
8841 (method url-fetch)
8842 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8843 "Type-Tiny-" version ".tar.gz"))
8844 (sha256
8845 (base32
8846 "0b48v28rvl20969gyr62yg6gr6a2nj9qik0bixavbjdmk67hqnx8"))))
8847 (build-system perl-build-system)
8848 (native-inputs
8849 `(("perl-test-warnings" ,perl-test-warnings)))
8850 (propagated-inputs
8851 `(("perl-devel-lexalias" ,perl-devel-lexalias)
8852 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
8853 ("perl-exporter-tiny" ,perl-exporter-tiny)
8854 ("perl-moo" ,perl-moo)
8855 ("perl-moose" ,perl-moose)
8856 ("perl-mouse" ,perl-mouse)
8857 ("perl-ref-util-xs" ,perl-ref-util-xs)
8858 ("perl-regexp-util" ,perl-regexp-util)
8859 ("perl-type-tie" ,perl-type-tie)))
8860 (home-page "https://metacpan.org/release/Type-Tiny")
8861 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
8862 (description "@code{Type::Tiny} is a small class for writing type
8863 constraints, inspired by Moose's type constraint API. It has only one
8864 non-core dependency (and even that is simply a module that was previously
8865 distributed as part of @code{Type::Tiny} but has since been spun off), and can
8866 be used with Moose, Mouse and Moo (or none of the above).")
8867 (license (package-license perl))))
8868
8869 (define-public perl-type-tiny-xs
8870 (package
8871 (name "perl-type-tiny-xs")
8872 (version "0.012")
8873 (source
8874 (origin
8875 (method url-fetch)
8876 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
8877 version ".tar.gz"))
8878 (sha256
8879 (base32
8880 "05nbr898cvjjh1wsy55l84zasx65gijdxc6dnn558ihns8zx6gm9"))))
8881 (build-system perl-build-system)
8882 (home-page "https://metacpan.org/release/Type-Tiny-XS")
8883 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
8884 (description "This module is optionally used by @code{Type::Tiny} to
8885 provide faster, C-based implementations of some type constraints. This
8886 package has only core dependencies, and does not depend on @code{Type::Tiny},
8887 so other data validation frameworks might also consider using it.")
8888 (license perl-license)))
8889
8890 (define-public perl-types-path-tiny
8891 (package
8892 (name "perl-types-path-tiny")
8893 (version "0.005")
8894 (source
8895 (origin
8896 (method url-fetch)
8897 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8898 "Types-Path-Tiny-" version ".tar.gz"))
8899 (sha256
8900 (base32
8901 "09nf167ssi4rgj8hhzylwp3zdx61njdpyfri43arcmk9aqn7f0pp"))))
8902 (build-system perl-build-system)
8903 (propagated-inputs
8904 `(("perl-file-pushd" ,perl-file-pushd)
8905 ("perl-path-tiny" ,perl-path-tiny)
8906 ("perl-type-tiny" ,perl-type-tiny)
8907 ("perl-exporter-tiny" ,perl-exporter-tiny)))
8908 (home-page "https://metacpan.org/release/Types-Path-Tiny")
8909 (synopsis "Types and coercions for Moose and Moo")
8910 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
8911 etc. It handles two important types of coercion: coercing objects with
8912 overloaded stringification, and coercing to absolute paths. It also can check
8913 to ensure that files or directories exist.")
8914 (license artistic2.0)))
8915
8916 (define-public perl-types-serialiser
8917 (package
8918 (name "perl-types-serialiser")
8919 (version "1.0")
8920 (source
8921 (origin
8922 (method url-fetch)
8923 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
8924 "Types-Serialiser-" version ".tar.gz"))
8925 (sha256
8926 (base32
8927 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
8928 (build-system perl-build-system)
8929 (propagated-inputs
8930 `(("perl-common-sense" ,perl-common-sense)))
8931 (home-page "https://metacpan.org/release/Types-Serialiser")
8932 (synopsis "Data types for common serialisation formats")
8933 (description "This module provides some extra datatypes that are used by
8934 common serialisation formats such as JSON or CBOR.")
8935 (license (package-license perl))))
8936
8937 (define-public perl-unicode-normalize
8938 (package
8939 (name "perl-unicode-normalize")
8940 (version "1.25")
8941 (source
8942 (origin
8943 (method url-fetch)
8944 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8945 "Unicode-Normalize-" version ".tar.gz"))
8946 (sha256
8947 (base32
8948 "0v04bcyjfcfap4kfpc8q3ikq3j7s68nym4ckw3iasmmksdskmcq0"))))
8949 (build-system perl-build-system)
8950 (arguments
8951 '(#:phases (modify-phases %standard-phases
8952 (add-before 'configure 'set-search-path
8953 (lambda _
8954 ;; Work around "dotless @INC" build failure.
8955 (setenv "PERL5LIB"
8956 (string-append (getcwd) ":"
8957 (getenv "PERL5LIB")))
8958 #t)))))
8959 (home-page "https://metacpan.org/release/Unicode-Normalize")
8960 (synopsis "Unicode normalization forms")
8961 (description "This Perl module provides Unicode normalization forms.")
8962 (license (package-license perl))))
8963
8964 (define-public perl-unicode-collate
8965 (package
8966 (name "perl-unicode-collate")
8967 (version "1.18")
8968 (source
8969 (origin
8970 (method url-fetch)
8971 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
8972 "Unicode-Collate-" version ".tar.gz"))
8973 (sha256
8974 (base32
8975 "1lq4p3mqqljhhy8wyiyahris33j4m5qfzpi6iacmcqjzw5g4afbm"))))
8976 (build-system perl-build-system)
8977 (arguments
8978 `(#:phases
8979 (modify-phases %standard-phases
8980 (add-before 'configure 'set-perl-search-path
8981 (lambda _
8982 ;; Work around "dotless @INC" build failure.
8983 (setenv "PERL5LIB"
8984 (string-append (getcwd) ":"
8985 (getenv "PERL5LIB")))
8986 #t)))))
8987 (propagated-inputs
8988 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
8989 (home-page "https://metacpan.org/release/Unicode-Collate")
8990 (synopsis "Unicode collation algorithm")
8991 (description "This package provides tools for sorting and comparing
8992 Unicode data.")
8993 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
8994 ;; license.
8995 (license (list (package-license perl) expat))))
8996
8997 (define-public perl-unicode-linebreak
8998 (package
8999 (name "perl-unicode-linebreak")
9000 (version "2016.003")
9001 (source (origin
9002 (method url-fetch)
9003 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
9004 "Unicode-LineBreak-" version ".tar.gz"))
9005 (sha256
9006 (base32
9007 "096wf5x99swx7l7yd8pm2aw50g596nf50rkq7250zjcc1acjskp6"))))
9008 (build-system perl-build-system)
9009 (propagated-inputs
9010 `(("perl-mime-charset" ,perl-mime-charset)))
9011 (home-page "https://metacpan.org/release/Unicode-LineBreak")
9012 (synopsis "Unicode line breaking algorithm")
9013 (description
9014 "@code{Unicode::LineBreak} implements the line breaking algorithm
9015 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
9016 defined by Annex #11 is used to determine breaking positions.")
9017 (license (package-license perl))))
9018
9019 (define-public perl-unicode-utf8
9020 (package
9021 (name "perl-unicode-utf8")
9022 (version "0.62")
9023 (source (origin
9024 (method url-fetch)
9025 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
9026 "Unicode-UTF8-" version ".tar.gz"))
9027 (sha256
9028 (base32
9029 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
9030 (build-system perl-build-system)
9031 ;; FIXME: Tests fail on 32-bit architectures:
9032 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
9033 (arguments `(#:tests? ,(target-64bit?)))
9034 (native-inputs
9035 `(("perl-test-fatal" ,perl-test-fatal)
9036 ("perl-test-leaktrace" ,perl-test-leaktrace)
9037 ("perl-variable-magic" ,perl-variable-magic)
9038 ("perl-test-pod" ,perl-test-pod)))
9039 (home-page "https://metacpan.org/release/Unicode-UTF8")
9040 (synopsis "Encoding and decoding of UTF-8 encoding form")
9041 (description
9042 "This module provides functions to encode and decode UTF-8 encoding form
9043 as specified by Unicode and ISO/IEC 10646:2011.")
9044 (license (package-license perl))))
9045
9046 (define-public perl-universal-can
9047 (package
9048 (name "perl-universal-can")
9049 (version "1.20140328")
9050 (source
9051 (origin
9052 (method url-fetch)
9053 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9054 "UNIVERSAL-can-" version ".tar.gz"))
9055 (sha256
9056 (base32
9057 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
9058 (build-system perl-build-system)
9059 (home-page "https://metacpan.org/release/UNIVERSAL-can")
9060 (synopsis "UNIVERSAL::can() reimplementation")
9061 (description "This module attempts to work around people calling
9062 UNIVERSAL::can() as a function, which it is not.")
9063 (license (package-license perl))))
9064
9065 (define-public perl-universal-isa
9066 (package
9067 (name "perl-universal-isa")
9068 (version "1.20140927")
9069 (source
9070 (origin
9071 (method url-fetch)
9072 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9073 "UNIVERSAL-isa-" version ".tar.gz"))
9074 (sha256
9075 (base32
9076 "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
9077 (build-system perl-build-system)
9078 (native-inputs
9079 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9080 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
9081 (synopsis "UNIVERSAL::isa() reimplementation")
9082 (description "This module attempts to recover from people calling
9083 UNIVERSAL::isa as a function.")
9084 (license (package-license perl))))
9085
9086 (define-public perl-universal-require
9087 (package
9088 (name "perl-universal-require")
9089 (version "0.18")
9090 (source
9091 (origin
9092 (method url-fetch)
9093 (uri (string-append
9094 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
9095 version ".tar.gz"))
9096 (sha256
9097 (base32
9098 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
9099 (build-system perl-build-system)
9100 (home-page "https://metacpan.org/release/UNIVERSAL-require")
9101 (synopsis "Require modules from a variable")
9102 (description "This module lets you require other modules where the module
9103 name is in a variable, something you can't do with the @code{require}
9104 built-in.")
9105 (license (package-license perl))))
9106
9107 (define-public perl-variable-magic
9108 (package
9109 (name "perl-variable-magic")
9110 (version "0.62")
9111 (source
9112 (origin
9113 (method url-fetch)
9114 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
9115 "Variable-Magic-" version ".tar.gz"))
9116 (sha256
9117 (base32
9118 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
9119 (build-system perl-build-system)
9120 (home-page "https://metacpan.org/release/Variable-Magic")
9121 (synopsis "Associate user-defined magic to variables from Perl")
9122 (description "Magic is Perl's way of enhancing variables. This mechanism
9123 lets the user add extra data to any variable and hook syntactical
9124 operations (such as access, assignment or destruction) that can be applied to
9125 it. With this module, you can add your own magic to any variable without
9126 having to write a single line of XS.")
9127 (license (package-license perl))))
9128
9129 (define-public perl-xml-writer
9130 (package
9131 (name "perl-xml-writer")
9132 (version "0.625")
9133 (source
9134 (origin
9135 (method url-fetch)
9136 (uri (string-append
9137 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
9138 version
9139 ".tar.gz"))
9140 (sha256
9141 (base32
9142 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
9143 (build-system perl-build-system)
9144 (home-page "https://metacpan.org/release/XML-Writer")
9145 (synopsis "Easily generate well-formed, namespace-aware XML")
9146 (description "@code{XML::Writer} is a simple Perl module for writing XML
9147 documents: it takes care of constructing markup and escaping data correctly.
9148 By default, it also performs a significant amount of well-formedness checking
9149 on the output to make certain (for example) that start and end tags match,
9150 that there is exactly one document element, and that there are not duplicate
9151 attribute names.")
9152 ;; Redistribution and use in source and compiled forms, with or without
9153 ;; modification, are permitted under any circumstances. No warranty.
9154 (license public-domain)))
9155
9156 (define-public perl-xs-object-magic
9157 (package
9158 (name "perl-xs-object-magic")
9159 (version "0.04")
9160 (source (origin
9161 (method url-fetch)
9162 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
9163 "XS-Object-Magic-" version ".tar.gz"))
9164 (sha256
9165 (base32
9166 "03fghj7hq0fiicmfdxhmzfm4mzv7s097pgkd32ji7jnljvhm9six"))))
9167 (build-system perl-build-system)
9168 (native-inputs
9169 `(("perl-extutils-depends" ,perl-extutils-depends)
9170 ("perl-module-install" ,perl-module-install)
9171 ("perl-test-fatal" ,perl-test-fatal)))
9172 (home-page "https://metacpan.org/release/XS-Object-Magic")
9173 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
9174 (description
9175 "This way of associating structs with Perl space objects is designed to
9176 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
9177 (structs can be associated with any data type) and opaque (the C pointer is
9178 neither visible nor modifiable from Perl space).")
9179 (license (package-license perl))))
9180
9181 (define-public perl-yaml
9182 (package
9183 (name "perl-yaml")
9184 (version "1.24")
9185 (source
9186 (origin
9187 (method url-fetch)
9188 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
9189 "YAML-" version ".tar.gz"))
9190 (sha256
9191 (base32
9192 "1dpzgnjbd8yvf94vf45cmyj5bc6vrm6bchhx9xqwxqd5f9d093dm"))))
9193 (build-system perl-build-system)
9194 (native-inputs
9195 `(("perl-test-yaml" ,perl-test-yaml)))
9196 (home-page "https://metacpan.org/release/YAML")
9197 (synopsis "YAML for Perl")
9198 (description "The YAML.pm module implements a YAML Loader and Dumper based
9199 on the YAML 1.0 specification.")
9200 (license (package-license perl))))
9201
9202 (define-public perl-yaml-libyaml
9203 (package
9204 (name "perl-yaml-libyaml")
9205 (version "0.69")
9206 (source
9207 (origin
9208 (method url-fetch)
9209 (uri (string-append
9210 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
9211 version
9212 ".tar.gz"))
9213 (sha256
9214 (base32
9215 "06msvj3vmjszl5zj1k7g47ll0kkds9gdb5sky0q27lh4zw1vlj33"))))
9216 (build-system perl-build-system)
9217 (home-page
9218 "https://metacpan.org/release/YAML-LibYAML")
9219 (synopsis
9220 "Perl YAML Serialization using XS and libyaml")
9221 (description
9222 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
9223 best YAML support to date.")
9224 (license perl-license)))
9225
9226 (define-public perl-yaml-tiny
9227 (package
9228 (name "perl-yaml-tiny")
9229 (version "1.73")
9230 (source
9231 (origin
9232 (method url-fetch)
9233 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9234 "YAML-Tiny-" version ".tar.gz"))
9235 (sha256
9236 (base32
9237 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
9238 (build-system perl-build-system)
9239 (native-inputs
9240 `(("perl-json-maybexs" ,perl-json-maybexs)
9241 ("perl-module-build-tiny" ,perl-module-build-tiny)))
9242 (arguments
9243 `(#:tests? #f)) ;requires Test::More >= 0.99
9244 (home-page "https://metacpan.org/release/YAML-Tiny")
9245 (synopsis "Read/Write YAML files")
9246 (description "YAML::Tiny is a perl class for reading and writing
9247 YAML-style files, written with as little code as possible, reducing load time
9248 and memory overhead.")
9249 (license (package-license perl))))
9250
9251 (define-public perl-parse-recdescent
9252 (package
9253 (name "perl-parse-recdescent")
9254 (version "1.967015")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (string-append
9259 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
9260 version
9261 ".tar.gz"))
9262 (sha256
9263 (base32
9264 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
9265 (build-system perl-build-system)
9266 (native-inputs
9267 `(("perl-module-build" ,perl-module-build)))
9268 (home-page
9269 "https://metacpan.org/release/Parse-RecDescent")
9270 (synopsis "Generate recursive-descent parsers")
9271 (description
9272 "@code{Parse::RecDescent} can incrementally generate top-down
9273 recursive-descent text parsers from simple yacc-like grammar specifications.")
9274 (license perl-license)))
9275
9276 (define-public perl-parse-yapp
9277 (package
9278 (name "perl-parse-yapp")
9279 (version "1.21")
9280 (source
9281 (origin
9282 (method url-fetch)
9283 (uri (string-append
9284 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
9285 version
9286 ".tar.gz"))
9287 (sha256
9288 (base32
9289 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
9290 (build-system perl-build-system)
9291 (home-page "https://metacpan.org/release/Parse-Yapp")
9292 (synopsis "Generate and use LALR parsers")
9293 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
9294 grammars to generate Perl object oriented parser modules.")
9295 (license (package-license perl))))
9296
9297 \f
9298 ;;; Some packaged modules need versions of core modules that are newer than
9299 ;;; those in our perl 5.16.1.
9300
9301 (define-public perl-cpan-meta
9302 (package
9303 (name "perl-cpan-meta")
9304 (version "2.143240")
9305 (source
9306 (origin
9307 (method url-fetch)
9308 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9309 "CPAN-Meta-" version ".tar.gz"))
9310 (sha256
9311 (base32
9312 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
9313 (build-system perl-build-system)
9314 (propagated-inputs
9315 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
9316 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
9317 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
9318 (home-page "https://metacpan.org/release/CPAN-Meta")
9319 (synopsis "Distribution metadata for a CPAN dist")
9320 (description "Software distributions released to the CPAN include a
9321 META.json or, for older distributions, META.yml, which describes the
9322 distribution, its contents, and the requirements for building and installing
9323 the distribution. The data structure stored in the META.json file is
9324 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
9325 represent this distribution metadata (or distmeta), along with some helpful
9326 methods for interrogating that data.")
9327 (license (package-license perl))))
9328
9329 (define-public perl-cpan-meta-requirements
9330 (package
9331 (name "perl-cpan-meta-requirements")
9332 (version "2.140")
9333 (source
9334 (origin
9335 (method url-fetch)
9336 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9337 "CPAN-Meta-Requirements-" version ".tar.gz"))
9338 (sha256
9339 (base32
9340 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
9341 (build-system perl-build-system)
9342 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
9343 (synopsis "Set of version requirements for a CPAN dist")
9344 (description "A CPAN::Meta::Requirements object models a set of version
9345 constraints like those specified in the META.yml or META.json files in CPAN
9346 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
9347 adding more and more constraints, and will reduce them to the simplest
9348 representation.")
9349 (license (package-license perl))))
9350
9351 (define-public perl-cpan-meta-yaml
9352 (package
9353 (name "perl-cpan-meta-yaml")
9354 (version "0.018")
9355 (source
9356 (origin
9357 (method url-fetch)
9358 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9359 "CPAN-Meta-YAML-" version ".tar.gz"))
9360 (sha256
9361 (base32
9362 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
9363 (build-system perl-build-system)
9364 (arguments
9365 `(#:tests? #f)) ;Tests require Test::More >= 0.99
9366 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
9367 (synopsis "Read and write a subset of YAML for CPAN Meta files")
9368 (description "This module implements a subset of the YAML specification
9369 for use in reading and writing CPAN metadata files like META.yml and
9370 MYMETA.yml.")
9371 (license (package-license perl))))
9372
9373 (define-public perl-module-build
9374 (package
9375 (name "perl-module-build")
9376 (version "0.4220")
9377 (source
9378 (origin
9379 (method url-fetch)
9380 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
9381 "Module-Build-" version ".tar.gz"))
9382 (sha256
9383 (base32
9384 "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
9385 (build-system perl-build-system)
9386 (propagated-inputs
9387 `(("perl-cpan-meta" ,perl-cpan-meta)))
9388 (home-page "https://metacpan.org/release/Module-Build")
9389 (synopsis "Build and install Perl modules")
9390 (description "@code{Module::Build} is a system for building, testing, and
9391 installing Perl modules; it used to be part of Perl itself until version 5.22,
9392 which dropped it. It is meant to be an alternative to
9393 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
9394 through subclassing in a much more straightforward way than with
9395 @code{MakeMaker}. It also does not require a @command{make} on your
9396 system---most of the @code{Module::Build} code is pure-Perl.")
9397 (license (package-license perl))))
9398
9399 (define-public perl-parse-cpan-meta
9400 (package
9401 (name "perl-parse-cpan-meta")
9402 (version "2.150010")
9403 (source
9404 (origin
9405 (method url-fetch)
9406 ;; This module is now known as CPAN::Meta on CPAN.
9407 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9408 "CPAN-Meta-" version ".tar.gz"))
9409 (sha256
9410 (base32
9411 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
9412 (build-system perl-build-system)
9413 (propagated-inputs
9414 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
9415 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
9416 (synopsis "Parse META.yml and META.json CPAN metadata files")
9417 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
9418 files, using JSON::PP and/or CPAN::Meta::YAML.")
9419 (license (package-license perl))))
9420
9421 (define-public perl-scalar-list-utils
9422 (package
9423 (name "perl-scalar-list-utils")
9424 (version "1.50")
9425 (source
9426 (origin
9427 (method url-fetch)
9428 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
9429 "Scalar-List-Utils-" version ".tar.gz"))
9430 (sha256
9431 (base32
9432 "0x9n0617gjjcqa4nk5biiwkxdi90xpdfg6z07gjr009qjg3bkah6"))))
9433 (build-system perl-build-system)
9434 (home-page "https://metacpan.org/release/Scalar-List-Utils")
9435 (synopsis "Common Scalar and List utility subroutines")
9436 (description "This package contains a selection of subroutines that people
9437 have expressed would be nice to have in the perl core, but the usage would not
9438 really be high enough to warrant the use of a keyword, and the size so small
9439 such that being individual extensions would be wasteful.")
9440 (license (package-license perl))))
9441
9442 (define-public perl-shell-command
9443 (package
9444 (name "perl-shell-command")
9445 (version "0.06")
9446 (source
9447 (origin
9448 (method url-fetch)
9449 (uri (string-append
9450 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
9451 version
9452 ".tar.gz"))
9453 (sha256
9454 (base32
9455 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
9456 (build-system perl-build-system)
9457 (home-page
9458 "https://metacpan.org/release/Shell-Command")
9459 (synopsis
9460 "Cross-platform functions emulating common shell commands")
9461 (description
9462 "Shell::Command is a thin wrapper around ExtUtils::Command.")
9463 (license (package-license perl))))
9464
9465 ;;; END: Core module overrides
9466
9467 (define-public perl-file-find-object
9468 (package
9469 (name "perl-file-find-object")
9470 (version "v0.2.13")
9471 (source
9472 (origin
9473 (method url-fetch)
9474 (uri (string-append
9475 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
9476 version
9477 ".tar.gz"))
9478 (sha256
9479 (base32
9480 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
9481 (build-system perl-build-system)
9482 (native-inputs
9483 `(("perl-module-build" ,perl-module-build)))
9484 (inputs
9485 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
9486 (home-page
9487 "https://metacpan.org/release/File-Find-Object")
9488 (synopsis
9489 "Object-oriented File::Find replacement in Perl")
9490 (description "File::Find::Object is an object-oriented
9491 File::Find replacement in Perl.")
9492 (license artistic2.0)))
9493
9494 (define-public perl-file-find-object-rule
9495 (package
9496 (name "perl-file-find-object-rule")
9497 (version "0.0305")
9498 (source
9499 (origin
9500 (method url-fetch)
9501 (uri (string-append
9502 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
9503 version
9504 ".tar.gz"))
9505 (sha256
9506 (base32
9507 "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
9508 (build-system perl-build-system)
9509 (native-inputs
9510 `(("perl-module-build" ,perl-module-build)))
9511 (inputs
9512 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
9513 ("perl-file-find-object" ,perl-file-find-object)
9514 ("perl-number-compare" ,perl-number-compare)
9515 ("perl-text-glob" ,perl-text-glob)))
9516 (home-page
9517 "https://metacpan.org/release/File-Find-Object-Rule")
9518 (synopsis
9519 "Alternative interface to File::Find::Object")
9520 (description "File::Find::Object::Rule is an alternative Perl
9521 interface to File::Find::Object.")
9522 (license (package-license perl))))
9523
9524 (define-public perl-file-finder
9525 (package
9526 (name "perl-file-finder")
9527 (version "0.53")
9528 (source
9529 (origin
9530 (method url-fetch)
9531 (uri (string-append
9532 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
9533 version ".tar.gz"))
9534 (sha256
9535 (base32
9536 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
9537 (build-system perl-build-system)
9538 (propagated-inputs
9539 `(("perl-text-glob" ,perl-text-glob)))
9540 (home-page "https://metacpan.org/release/File-Finder")
9541 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
9542 (description
9543 "@code{File::Find} is great, but constructing the wanted routine can
9544 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
9545 syntax that is directly mappable to the @code{find(1)} command's syntax.
9546
9547 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
9548 a series of steps that mimic find's predicates. Initially, a
9549 @code{File::Finder} object has no steps. Each step method clones the previous
9550 object's options and steps, and then adds the new step, returning the new
9551 object. In this manner, an object can be grown, step by step, by chaining
9552 method calls. Furthermore, a partial sequence can be created and held, and
9553 used as the head of many different sequences.")
9554 (license perl-license)))
9555
9556 (define-public perl-font-ttf
9557 (package
9558 (name "perl-font-ttf")
9559 (version "1.06")
9560 (source (origin
9561 (method url-fetch)
9562 (uri (string-append
9563 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
9564 version ".tar.gz"))
9565 (sha256
9566 (base32
9567 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
9568 (build-system perl-build-system)
9569 (propagated-inputs
9570 `(("perl-io-string" ,perl-io-string)))
9571 (home-page "https://metacpan.org/release/Font-TTF")
9572 (synopsis "TTF font support for Perl")
9573 (description "This package provides a Perl module for TrueType/OpenType
9574 font hacking. It supports reading, processing and writing of the following
9575 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
9576 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
9577 prop, vhea, vmtx and the reading and writing of all other table types.")
9578 (license artistic2.0)))
9579
9580 (define-public perl-libtime-parsedate
9581 (package
9582 (name "perl-libtime-parsedate")
9583 (version "2015.103")
9584 (source
9585 (origin
9586 (method url-fetch)
9587 (uri (string-append
9588 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
9589 version ".tar.gz"))
9590 (sha256
9591 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
9592 (build-system perl-build-system)
9593 (arguments
9594 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
9595 ;; doesn't support it yet.
9596 ;;
9597 ;; #:disallowed-references (,tzdata-for-tests)
9598
9599 #:phases
9600 (modify-phases %standard-phases
9601 ;; This is needed for tests
9602 (add-after 'unpack 'set-TZDIR
9603 (lambda* (#:key inputs #:allow-other-keys)
9604 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
9605 "/share/zoneinfo"))
9606 #t)))))
9607 (native-inputs
9608 `(("perl-module-build" ,perl-module-build)
9609 ("tzdata" ,tzdata-for-tests)))
9610 (home-page "https://metacpan.org/release/Time-ParseDate")
9611 (synopsis "Collection of Perl modules for time/date manipulation")
9612 (description "Provides several perl modules for date/time manipulation:
9613 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
9614 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
9615 ;; License text:
9616 ;; "License hereby granted for anyone to use, modify or redistribute this
9617 ;; module at their own risk. Please feed useful changes back to
9618 ;; cpan@dave.sharnoff.org."
9619 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
9620 changelogs/main/libt/libtime-parsedate-perl/\
9621 libtime-parsedate-perl_2015.103-2_copyright"))))
9622
9623 (define-public perl-libtime-period
9624 (package
9625 (name "perl-libtime-period")
9626 (version "1.20")
9627 (source
9628 (origin
9629 (method url-fetch)
9630 (uri (string-append
9631 "http://http.debian.net/debian/pool/main/libt/"
9632 "libtime-period-perl/libtime-period-perl_"
9633 version ".orig.tar.gz"))
9634 (sha256
9635 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
9636 (build-system perl-build-system)
9637 (native-inputs
9638 `(("perl-module-build" ,perl-module-build)))
9639 ;; Unless some other homepage is out there...
9640 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
9641 (synopsis "Perl library for testing if a time() is in a specific period")
9642 (description "This Perl library provides a function which tells whether a
9643 specific time falls within a specified time period. Its syntax for specifying
9644 time periods allows you to test for conditions like \"Monday to Friday, 9am
9645 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
9646 4:15pm\" and \"in the first half of each minute\" and \"in January of
9647 1998\".")
9648 (license perl-license)))
9649
9650 (define-public perl-path-iterator-rule
9651 (package
9652 (name "perl-path-iterator-rule")
9653 (version "1.012")
9654 (source
9655 (origin
9656 (method url-fetch)
9657 (uri (string-append
9658 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
9659 version ".tar.gz"))
9660 (sha256
9661 (base32
9662 "1z76avwvwgv4bw28kzx79mmb4449s5l345sn0wljq3dbf4wqigd1"))))
9663 (build-system perl-build-system)
9664 (native-inputs
9665 `(("perl-file-pushd" ,perl-file-pushd)
9666 ("perl-path-tiny" ,perl-path-tiny)
9667 ("perl-test-deep" ,perl-test-deep)
9668 ("perl-test-filename" ,perl-test-filename)))
9669 (propagated-inputs
9670 `(("perl-number-compare" ,perl-number-compare)
9671 ("perl-text-glob" ,perl-text-glob)
9672 ("perl-try-tiny" ,perl-try-tiny)))
9673 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
9674 (synopsis "Iterative, recursive file finder")
9675 (description "Path::Iterator::Rule iterates over files and directories to
9676 identify ones matching a user-defined set of rules. The API is based heavily
9677 on File::Find::Rule, but with more explicit distinction between matching rules
9678 and options that influence how directories are searched. A
9679 Path::Iterator::Rule object is a collection of rules (match criteria) with
9680 methods to add additional criteria. Options that control directory traversal
9681 are given as arguments to the method that generates an iterator.
9682
9683 A summary of features for comparison to other file finding modules:
9684
9685 @itemize
9686 @item provides many helper methods for specifying rules
9687 @item offers (lazy) iterator and flattened list interfaces
9688 @item custom rules implemented with callbacks
9689 @item breadth-first (default) or pre- or post-order depth-first searching
9690 @item follows symlinks (by default, but can be disabled)
9691 @item directories visited only once (no infinite loop; can be disabled)
9692 @item doesn't chdir during operation
9693 @item provides an API for extensions
9694 @end itemize
9695
9696 As a convenience, the PIR module is an empty subclass of this one that is less
9697 arduous to type for one-liners.")
9698 (license asl2.0)))
9699
9700 (define-public perl-pod-constants
9701 (package
9702 (name "perl-pod-constants")
9703 (version "0.19")
9704 (source
9705 (origin
9706 (method url-fetch)
9707 (uri (string-append
9708 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
9709 version ".tar.gz"))
9710 (sha256
9711 (base32
9712 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
9713 (build-system perl-build-system)
9714 (home-page "https://metacpan.org/release/Pod-Constants")
9715 (synopsis "Include constants from POD")
9716 (description "This module allows you to specify those constants that
9717 should be documented in your POD, and pull them out a run time in a fairly
9718 arbitrary fashion.
9719
9720 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
9721 to open the source file it is called from, and does so directly either by
9722 lookup in %INC or by assuming it is $0 if the caller is @code{main}
9723 (or it can't find %INC{caller()}).")
9724 (license artistic2.0)))
9725
9726 (define-public perl-regexp-pattern
9727 (package
9728 (name "perl-regexp-pattern")
9729 (version "0.1.4")
9730 (source
9731 (origin
9732 (method url-fetch)
9733 (uri (string-append
9734 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
9735 version ".tar.gz"))
9736 (sha256
9737 (base32
9738 "0rwpl6dxd1yl2ng3d4jdy68jz3mggmdl35rphrw1x619sm1aa876"))))
9739 (build-system perl-build-system)
9740 (native-inputs
9741 `(("perl-test-exception" ,perl-test-exception)))
9742 (home-page "https://metacpan.org/release/Regexp-Pattern")
9743 (synopsis "Collection of regexp patterns")
9744 (description "Regexp::Pattern is a convention for organizing reusable
9745 regexp patterns in modules.")
9746 (license (package-license perl))))
9747
9748 (define-public perl-data-sexpression
9749 (package
9750 (name "perl-data-sexpression")
9751 (version "0.41")
9752 (source
9753 (origin
9754 (method url-fetch)
9755 (uri (string-append
9756 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
9757 version ".tar.gz"))
9758 (sha256
9759 (base32
9760 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
9761 (build-system perl-build-system)
9762 (native-inputs
9763 `(("perl-module-install" ,perl-module-install)
9764 ("perl-test-deep" ,perl-test-deep)))
9765 (propagated-inputs
9766 `(("perl-class-accessor" ,perl-class-accessor)))
9767 (home-page "https://metacpan.org/release/Data-SExpression")
9768 (synopsis "Parse Lisp S-Expressions into Perl data structures")
9769 (description "Data::SExpression parses Lisp S-Expressions into Perl data
9770 structures.")
9771 (license perl-license)))