d6a75506ec394358c925a24aa4fedf8a7a00c742
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016, 2017 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013, 2019 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017, 2019 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016, 2017, 2019, 2020 Eric Bavier <bavier@posteo.net>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016, 2018 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016, 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2016 ng0 <ng0@n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016, 2018, 2020 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;; Copyright © 2017 Raoul J.P. Bonnal <ilpuccio.febo@gmail.com>
16 ;;; Copyright © 2017, 2018 Marius Bakke <mbakke@fastmail.com>
17 ;;; Copyright © 2017 Adriano Peluso <catonano@gmail.com>
18 ;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
19 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
20 ;;; Copyright © 2017 Christopher Allan Webber <cwebber@dustycloud.org>
21 ;;; Copyright © 2018, 2019 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;; Copyright © 2018, 2019 Pierre Neidhardt <mail@ambrevar.xyz>
23 ;;; Copyright © 2018 Kei Kebreau <kkebreau@posteo.net>
24 ;;; Copyright © 2019 Alex Griffin <a@ajgrf.com>
25 ;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
26 ;;; Copyright © 2019 Stephen J. Scheck <sscheck@cpan.org>
27 ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
28 ;;; Copyright © 2020 Paul Garlick <pgarlick@tourbillion-technology.com>
29 ;;;
30 ;;; This file is part of GNU Guix.
31 ;;;
32 ;;; GNU Guix is free software; you can redistribute it and/or modify it
33 ;;; under the terms of the GNU General Public License as published by
34 ;;; the Free Software Foundation; either version 3 of the License, or (at
35 ;;; your option) any later version.
36 ;;;
37 ;;; GNU Guix is distributed in the hope that it will be useful, but
38 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
39 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 ;;; GNU General Public License for more details.
41 ;;;
42 ;;; You should have received a copy of the GNU General Public License
43 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
44
45 (define-module (gnu packages perl)
46 #:use-module (srfi srfi-1)
47 #:use-module (guix licenses)
48 #:use-module (gnu packages)
49 #:use-module (guix packages)
50 #:use-module (guix download)
51 #:use-module (guix utils)
52 #:use-module (guix build-system gnu)
53 #:use-module (guix build-system perl)
54 #:use-module (gnu packages base)
55 #:use-module (gnu packages compression)
56 #:use-module (gnu packages databases)
57 #:use-module (gnu packages freedesktop)
58 #:use-module (gnu packages gd)
59 #:use-module (gnu packages less)
60 #:use-module (gnu packages ncurses)
61 #:use-module (gnu packages perl-check)
62 #:use-module (gnu packages perl-compression)
63 #:use-module (gnu packages perl-web)
64 #:use-module (gnu packages pkg-config)
65 #:use-module (gnu packages readline)
66 #:use-module (gnu packages textutils)
67 #:use-module (gnu packages web))
68
69 ;;;
70 ;;; Please: Try to add new module packages in alphabetic order.
71 ;;;
72
73 \f
74 (define-public perl
75 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
76 (package
77 (name "perl")
78 (version "5.30.2")
79 (source (origin
80 (method url-fetch)
81 (uri (string-append "mirror://cpan/src/5.0/perl-"
82 version ".tar.gz"))
83 (sha256
84 (base32
85 "128nfdxcvxfn5kq55qcfrx2851ys8hv794dcdxbyny8rm7w7vnv6"))
86 (patches (search-patches
87 "perl-no-sys-dirs.patch"
88 "perl-autosplit-default-time.patch"
89 "perl-deterministic-ordering.patch"
90 "perl-reproducible-build-date.patch"))))
91 (build-system gnu-build-system)
92 (arguments
93 `(#:tests? #f
94 #:configure-flags
95 (let ((out (assoc-ref %outputs "out"))
96 (libc (assoc-ref %build-inputs "libc")))
97 (list
98 (string-append "-Dprefix=" out)
99 (string-append "-Dman1dir=" out "/share/man/man1")
100 (string-append "-Dman3dir=" out "/share/man/man3")
101 "-de" "-Dcc=gcc"
102 "-Uinstallusrbinperl"
103 "-Dinstallstyle=lib/perl5"
104 "-Duseshrplib"
105 (string-append "-Dlocincpth=" libc "/include")
106 (string-append "-Dloclibpth=" libc "/lib")
107 "-Dusethreads"))
108 #:phases
109 (modify-phases %standard-phases
110 (add-before 'configure 'setup-configure
111 (lambda _
112 ;; Use the right path for `pwd'.
113 (substitute* "dist/PathTools/Cwd.pm"
114 (("/bin/pwd")
115 (which "pwd")))
116
117 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
118 ;; <bits/string3.h>.
119 (substitute* "cflags.SH"
120 (("-std=c89")
121 "-std=gnu89"))
122 #t))
123 (replace 'configure
124 (lambda* (#:key configure-flags #:allow-other-keys)
125 (format #t "Perl configure flags: ~s~%" configure-flags)
126 (apply invoke "./Configure" configure-flags)))
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
131 ,(if (%current-target-system)
132 "cross-libc" "libc")))
133 (config1 (car (find-files (string-append out "/lib/perl5")
134 "^Config_heavy\\.pl$")))
135 (config2 (find-files (string-append out "/lib/perl5")
136 "^Config\\.pm$")))
137 ;; Force the library search path to contain only libc because
138 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
139 ;; want to keep a reference to everything that's in
140 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
141 ;; etc.)
142 (substitute* config1
143 (("^incpth=.*$")
144 (string-append "incpth='" libc "/include'\n"))
145 (("^(libpth|plibpth|libspath)=.*$" _ variable)
146 (string-append variable "='" libc "/lib'\n")))
147
148 (for-each (lambda (file)
149 (substitute* config2
150 (("libpth => .*$")
151 (string-append "libpth => '" libc
152 "/lib',\n"))))
153 config2)
154 #t))))))
155 (native-search-paths (list (search-path-specification
156 (variable "PERL5LIB")
157 (files '("lib/perl5/site_perl")))))
158 (synopsis "Implementation of the Perl programming language")
159 (description
160 "Perl is a general-purpose programming language originally developed for
161 text manipulation and now used for a wide range of tasks including system
162 administration, web development, network programming, GUI development, and
163 more.")
164 (home-page "https://www.perl.org/")
165 (license gpl1+))) ; or "Artistic"
166
167 (define-public perl-algorithm-c3
168 (package
169 (name "perl-algorithm-c3")
170 (version "0.10")
171 (source
172 (origin
173 (method url-fetch)
174 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
175 "Algorithm-C3-" version ".tar.gz"))
176 (sha256
177 (base32
178 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
179 (build-system perl-build-system)
180 (home-page "https://metacpan.org/release/Algorithm-C3")
181 (synopsis "Module for merging hierarchies using the C3 algorithm")
182 (description "This module implements the C3 algorithm, which aims to
183 provide a sane method resolution order under multiple inheritance.")
184 (license (package-license perl))))
185
186 (define-public perl-algorithm-diff
187 (package
188 (name "perl-algorithm-diff")
189 (version "1.1903")
190 (source
191 (origin
192 (method url-fetch)
193 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
194 "Algorithm-Diff-" version ".tar.gz"))
195 (sha256
196 (base32
197 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
198 (build-system perl-build-system)
199 (home-page "https://metacpan.org/release/Algorithm-Diff")
200 (synopsis "Compute differences between two files or lists")
201 (description "This is a module for computing the difference between two
202 files, two strings, or any other two lists of things. It uses an intelligent
203 algorithm similar to (or identical to) the one used by the Unix \"diff\"
204 program. It is guaranteed to find the *smallest possible* set of
205 differences.")
206 (license (package-license perl))))
207
208 (define-public perl-aliased
209 (package
210 (name "perl-aliased")
211 (version "0.34")
212 (source
213 (origin
214 (method url-fetch)
215 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
216 "aliased-" version ".tar.gz"))
217 (sha256
218 (base32
219 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
220 (build-system perl-build-system)
221 (native-inputs `(("perl-module-build" ,perl-module-build)))
222 (home-page "https://metacpan.org/release/aliased")
223 (synopsis "Use shorter versions of class names")
224 (description "The alias module loads the class you specify and exports
225 into your namespace a subroutine that returns the class name. You can
226 explicitly alias the class to another name or, if you prefer, you can do so
227 implicitly.")
228 (license (package-license perl))))
229
230 (define-public perl-any-moose
231 (package
232 (name "perl-any-moose")
233 (version "0.27")
234 (source (origin
235 (method url-fetch)
236 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
237 "Any-Moose-" version ".tar.gz"))
238 (sha256
239 (base32
240 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
241 (build-system perl-build-system)
242 (native-inputs
243 `(("perl-mouse" ,perl-mouse)
244 ("perl-moose" ,perl-moose)))
245 (home-page "https://metacpan.org/release/Any-Moose")
246 (synopsis "Transparently use Moose or Mouse modules")
247 (description
248 "This module facilitates using @code{Moose} or @code{Mouse} modules
249 without changing the code. By default, Mouse will be provided to libraries,
250 unless Moose is already loaded, or explicitly requested by the end-user. End
251 users can force the decision of which backend to use by setting the environment
252 variable ANY_MOOSE to be Moose or Mouse.")
253 (license (package-license perl))))
254
255 (define-public perl-appconfig
256 (package
257 (name "perl-appconfig")
258 (version "1.71")
259 (source
260 (origin
261 (method url-fetch)
262 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
263 "AppConfig-" version ".tar.gz"))
264 (sha256
265 (base32
266 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
267 (build-system perl-build-system)
268 (native-inputs
269 `(("perl-test-pod" ,perl-test-pod)))
270 (home-page "https://metacpan.org/release/AppConfig")
271 (synopsis "Configuration files and command line parsing")
272 (description "AppConfig is a bundle of Perl5 modules for reading
273 configuration files and parsing command line arguments.")
274 (license (package-license perl))))
275
276 (define-public perl-array-utils
277 (package
278 (name "perl-array-utils")
279 (version "0.5")
280 (source
281 (origin
282 (method url-fetch)
283 (uri (string-append
284 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
285 version
286 ".tar.gz"))
287 (sha256
288 (base32
289 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
290 (build-system perl-build-system)
291 (home-page "https://metacpan.org/release/Array-Utils")
292 (synopsis "Small utils for array manipulation")
293 (description "@code{Array::Utils} is a small pure-perl module containing
294 list manipulation routines.")
295 (license (package-license perl))))
296
297 (define-public perl-async-interrupt
298 (package
299 (name "perl-async-interrupt")
300 (version "1.25")
301 (source (origin
302 (method url-fetch)
303 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
304 "Async-Interrupt-" version ".tar.gz"))
305 (sha256
306 (base32
307 "0jh94wj1b6a0cnni8prsb59g5lak5rfj2fw5ng96291zmz2yqp1w"))))
308 (build-system perl-build-system)
309 (native-inputs
310 `(("perl-canary-stability" ,perl-canary-stability)))
311 (propagated-inputs
312 `(("perl-common-sense" ,perl-common-sense)))
313 (home-page "https://metacpan.org/release/Async-Interrupt")
314 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
315 (description
316 "@code{Async::Interrupt} implements a single feature only of interest
317 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
318 signals\", which are very similar).
319
320 Sometimes, modules wish to run code asynchronously (in another thread,
321 or from a signal handler), and then signal the perl interpreter on
322 certain events. One common way is to write some data to a pipe and use
323 an event handling toolkit to watch for I/O events. Another way is to
324 send a signal. Those methods are slow, and in the case of a pipe, also
325 not asynchronous - it won't interrupt a running perl interpreter.
326
327 This module implements asynchronous notifications that enable you to
328 signal running perl code from another thread, asynchronously, and
329 sometimes even without using a single syscall.")
330 (license (package-license perl))))
331
332 (define-public perl-attribute-util
333 (package
334 (name "perl-attribute-util")
335 (version "1.07")
336 (source (origin
337 (method url-fetch)
338 (uri (string-append
339 "https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/"
340 "Attribute-Util-" version ".tar.gz"))
341 (sha256
342 (base32
343 "1z79d845dy96lg0pxw0kr2za0gniwnpn963r7ccajfpj6k7jfw07"))))
344 (build-system perl-build-system)
345 (home-page "https://metacpan.org/pod/Attribute::Util")
346 (synopsis "Assorted general utility attributes")
347 (description "This package provides various utility functions. When used
348 without argument, this module provides four universally accessible attributes
349 of general interest as follows:
350 @itemize
351 @item Abstract
352 @item Alias
353 @item Memoize
354 @item Method
355 @item SigHandler
356 @end itemize")
357 (license (package-license perl))))
358
359 (define-public perl-authen-dechpwd
360 (package
361 (name "perl-authen-dechpwd")
362 (version "2.007")
363 (source
364 (origin
365 (method url-fetch)
366 (uri (string-append
367 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-DecHpwd-"
368 version ".tar.gz"))
369 (sha256
370 (base32
371 "0xzind7zr2prjq3zbs2j18snfpshd4xrd7igv4kp67xl0axr6fpl"))))
372 (build-system perl-build-system)
373 (native-inputs
374 `(("perl-module-build" ,perl-module-build)
375 ("perl-test-pod" ,perl-test-pod)
376 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
377 (propagated-inputs
378 `(("perl-data-integer" ,perl-data-integer)
379 ("perl-digest-crc" ,perl-digest-crc)
380 ("perl-scalar-string" ,perl-scalar-string)))
381 (home-page "https://metacpan.org/release/Authen-DecHpwd")
382 (synopsis "DEC VMS password hashing")
383 (description "@code{Authen::DecHpwd} implements the
384 SYS$HASH_PASSWORD password hashing function from VMS (also known as
385 LGI$HPWD) and some associated VMS username and password handling
386 functions. The password hashing function is implemented in XS with a
387 pure Perl backup version for systems that cannot handle XS.")
388 (license gpl2+)))
389
390 (define-public perl-authen-passphrase
391 (package
392 (name "perl-authen-passphrase")
393 (version "0.008")
394 (source
395 (origin
396 (method url-fetch)
397 (uri (string-append
398 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-Passphrase-"
399 version ".tar.gz"))
400 (sha256
401 (base32
402 "0qq4krap687rxf6xr31bg5nj5dqmm1frcm7fq249v1bxc4h4bnsm"))))
403 (build-system perl-build-system)
404 (native-inputs
405 `(("perl-module-build" ,perl-module-build)
406 ("perl-test-pod" ,perl-test-pod)
407 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
408 (propagated-inputs
409 `(("perl-authen-dechpwd" ,perl-authen-dechpwd)
410 ("perl-crypt-des" ,perl-crypt-des)
411 ("perl-crypt-eksblowfish" ,perl-crypt-eksblowfish)
412 ("perl-crypt-mysql" ,perl-crypt-mysql)
413 ("perl-crypt-passwdmd5" ,perl-crypt-passwdmd5)
414 ("perl-crypt-unixcrypt_xs" ,perl-crypt-unixcrypt_xs)
415 ("perl-data-entropy" ,perl-data-entropy)
416 ("perl-digest-md4" ,perl-digest-md4)
417 ("perl-module-runtime" ,perl-module-runtime)
418 ("perl-params-classify" ,perl-params-classify)))
419 (home-page "https://metacpan.org/release/Authen-Passphrase")
420 (synopsis "Hashed passwords/passphrases as objects")
421 (description "@code{Authen-Passphrase} is the base class for a
422 system of objects that encapsulate passphrases. An object of this
423 type is a passphrase recogniser; its job is to recognise whether an
424 offered passphrase is the right one. For security such passphrase
425 recognisers usually do not themselves know the passphrase they are
426 looking for; they can merely recognise it when they see it. There are
427 many schemes in use to achieve this effect and the intent of this
428 class is to provide a consistent interface to them all. In addition
429 to the base class, this module also contains implementations of
430 several specific passphrase schemes.")
431 (license perl-license)))
432
433 (define-public perl-autovivification
434 (package
435 (name "perl-autovivification")
436 (version "0.18")
437 (source
438 (origin
439 (method url-fetch)
440 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
441 "autovivification-" version ".tar.gz"))
442 (sha256
443 (base32
444 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
445 (build-system perl-build-system)
446 (home-page "https://metacpan.org/release/autovivification")
447 (synopsis "Lexically disable autovivification")
448 (description "When an undefined variable is dereferenced, it gets silently
449 upgraded to an array or hash reference (depending of the type of the
450 dereferencing). This behaviour is called autovivification and usually does
451 what you mean but it may be unnatural or surprising because your variables get
452 populated behind your back. This is especially true when several levels of
453 dereferencing are involved, in which case all levels are vivified up to the
454 last, or when it happens in intuitively read-only constructs like
455 @code{exists}. The pragma provided by this package lets you disable
456 autovivification for some constructs and optionally throws a warning or an
457 error when it would have happened.")
458 (license (package-license perl))))
459
460 (define-public perl-bareword-filehandles
461 (package
462 (name "perl-bareword-filehandles")
463 (version "0.006")
464 (source
465 (origin
466 (method url-fetch)
467 (uri (string-append
468 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
469 version ".tar.gz"))
470 (sha256
471 (base32
472 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
473 (build-system perl-build-system)
474 (native-inputs
475 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
476 ("perl-extutils-depends" ,perl-extutils-depends)))
477 (propagated-inputs
478 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
479 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
480 (home-page "https://metacpan.org/release/bareword-filehandles")
481 (synopsis "Disables bareword filehandles")
482 (description "This module disables bareword filehandles.")
483 (license (package-license perl))))
484
485 (define-public perl-base
486 (deprecated-package "perl-base" perl))
487
488 (define-public perl-browser-open
489 (package
490 (name "perl-browser-open")
491 (version "0.04")
492 (source
493 (origin
494 (method url-fetch)
495 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
496 version ".tar.gz"))
497 (sha256
498 (base32
499 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
500 (build-system perl-build-system)
501 (home-page "https://metacpan.org/release/Browser-Open")
502 (synopsis "Open a browser in a given URL")
503 (description "The functions exported by this module allow you to open URLs
504 in the user's browser. A set of known commands per OS-name is tested for
505 presence, and the first one found is executed. With an optional parameter,
506 all known commands are checked.")
507 (license (package-license perl))))
508
509 (define-public perl-b-hooks-endofscope
510 (package
511 (name "perl-b-hooks-endofscope")
512 (version "0.24")
513 (source
514 (origin
515 (method url-fetch)
516 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
517 "B-Hooks-EndOfScope-" version ".tar.gz"))
518 (sha256
519 (base32
520 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
521 (build-system perl-build-system)
522 (propagated-inputs
523 `(("perl-module-runtime" ,perl-module-runtime)
524 ("perl-module-implementation" ,perl-module-implementation)
525 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
526 ("perl-variable-magic" ,perl-variable-magic)))
527 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
528 (synopsis "Execute code after a scope finished compilation")
529 (description "This module allows you to execute code when perl finished
530 compiling the surrounding scope.")
531 (license (package-license perl))))
532
533 (define-public perl-b-hooks-op-check
534 (package
535 (name "perl-b-hooks-op-check")
536 (version "0.22")
537 (source
538 (origin
539 (method url-fetch)
540 (uri (string-append
541 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
542 version ".tar.gz"))
543 (sha256
544 (base32
545 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
546 (build-system perl-build-system)
547 (native-inputs
548 `(("perl-extutils-depends" ,perl-extutils-depends)))
549 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
550 (synopsis "Wrap OP check callbacks")
551 (description "This module allows you to wrap OP check callbacks.")
552 (license (package-license perl))))
553
554 (define-public perl-b-keywords
555 (package
556 (name "perl-b-keywords")
557 (version "1.20")
558 (source
559 (origin
560 (method url-fetch)
561 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
562 version ".tar.gz"))
563 (sha256
564 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
565 (build-system perl-build-system)
566 (home-page "https://metacpan.org/release/B-Keywords")
567 (synopsis "Lists of reserved barewords and symbol names")
568 (description "@code{B::Keywords} supplies several arrays of exportable
569 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
570 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
571 @@ExporterSymbols}.")
572 ;; GPLv2 only
573 (license gpl2)))
574
575 (define-public perl-benchmark-timer
576 (package
577 (name "perl-benchmark-timer")
578 (version "0.7102")
579 (source (origin
580 (method url-fetch)
581 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
582 "Benchmark-Timer-" version ".tar.gz"))
583 (sha256
584 (base32
585 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
586 (build-system perl-build-system)
587 (native-inputs
588 `(("perl-module-install" ,perl-module-install)))
589 ;; The optional input module Statistics::PointEstimation (from
590 ;; Statistics-TTest) lists no license.
591 (synopsis "Benchmarking with statistical confidence")
592 (description
593 "The Benchmark::Timer class allows you to time portions of code
594 conveniently, as well as benchmark code by allowing timings of repeated
595 trials. It is perfect for when you need more precise information about the
596 running time of portions of your code than the Benchmark module will give you,
597 but don't want to go all out and profile your code.")
598 (home-page "https://metacpan.org/release/Benchmark-Timer")
599 (license gpl2)))
600
601 (define-public perl-bit-vector
602 (package
603 (name "perl-bit-vector")
604 (version "7.4")
605 (source
606 (origin
607 (method url-fetch)
608 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
609 "Bit-Vector-" version ".tar.gz"))
610 (sha256
611 (base32
612 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
613 (build-system perl-build-system)
614 (propagated-inputs
615 `(("perl-carp-clan" ,perl-carp-clan)))
616 (home-page "https://metacpan.org/release/Bit-Vector")
617 (synopsis "Bit vector library")
618 (description "Bit::Vector is an efficient C library which allows you to
619 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
620 matrices, all of arbitrary sizes. The package also includes an
621 object-oriented Perl module for accessing the C library from Perl, and
622 optionally features overloaded operators for maximum ease of use. The C
623 library can nevertheless be used stand-alone, without Perl.")
624 (license (list (package-license perl) lgpl2.0+))))
625
626 (define-public perl-boolean
627 (package
628 (name "perl-boolean")
629 (version "0.46")
630 (source
631 (origin
632 (method url-fetch)
633 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
634 "boolean-" version ".tar.gz"))
635 (sha256
636 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
637 (build-system perl-build-system)
638 (home-page "https://metacpan.org/release/boolean")
639 (synopsis "Boolean support for Perl")
640 (description "This module provides basic Boolean support, by defining two
641 special objects: true and false.")
642 (license (package-license perl))))
643
644 (define-public perl-business-isbn-data
645 (package
646 (name "perl-business-isbn-data")
647 (version "20140910.003")
648 (source
649 (origin
650 (method url-fetch)
651 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
652 "Business-ISBN-Data-" version ".tar.gz"))
653 (sha256
654 (base32
655 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
656 (build-system perl-build-system)
657 (home-page "https://metacpan.org/release/Business-ISBN-Data")
658 (synopsis "Data files for Business::ISBN")
659 (description "This package provides a data pack for @code{Business::ISBN}.
660 These data are generated from the RangeMessage.xml file provided by the ISBN
661 Agency.")
662 (license (package-license perl))))
663
664 (define-public perl-business-isbn
665 (package
666 (name "perl-business-isbn")
667 (version "3.004")
668 (source
669 (origin
670 (method url-fetch)
671 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
672 "Business-ISBN-" version ".tar.gz"))
673 (sha256
674 (base32
675 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
676 (build-system perl-build-system)
677 (propagated-inputs
678 `(("perl-business-isbn-data" ,perl-business-isbn-data)
679 ("perl-mojolicious" ,perl-mojolicious)))
680 (home-page "https://metacpan.org/release/Business-ISBN")
681 (synopsis "Work with International Standard Book Numbers")
682 (description "This modules provides tools to deal with International
683 Standard Book Numbers, including ISBN-10 and ISBN-13.")
684 (license artistic2.0)))
685
686 (define-public perl-business-issn
687 (package
688 (name "perl-business-issn")
689 (version "1.003")
690 (source
691 (origin
692 (method url-fetch)
693 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
694 "Business-ISSN-" version ".tar.gz"))
695 (sha256
696 (base32
697 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
698 (build-system perl-build-system)
699 (home-page "https://metacpan.org/release/Business-ISSN")
700 (synopsis "Work with International Standard Serial Numbers")
701 (description "This modules provides tools to deal with International
702 Standard Serial Numbers.")
703 (license (package-license perl))))
704
705 (define-public perl-business-ismn
706 (package
707 (name "perl-business-ismn")
708 (version "1.201")
709 (source
710 (origin
711 (method url-fetch)
712 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
713 "Business-ISMN-" version ".tar.gz"))
714 (sha256
715 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
716 (build-system perl-build-system)
717 (native-inputs
718 `(("perl-tie-cycle" ,perl-tie-cycle)))
719 (home-page "https://metacpan.org/release/Business-ISMN")
720 (synopsis "Work with International Standard Music Numbers")
721 (description "This modules provides tools to deal with International
722 Standard Music Numbers.")
723 (license (package-license perl))))
724
725 (define-public perl-cache-cache
726 (package
727 (name "perl-cache-cache")
728 (version "1.08")
729 (source (origin
730 (method url-fetch)
731 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
732 "Cache-Cache-" version ".tar.gz"))
733 (sha256
734 (base32
735 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
736 (build-system perl-build-system)
737 (propagated-inputs
738 `(("perl-digest-sha1" ,perl-digest-sha1)
739 ("perl-error" ,perl-error)
740 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
741 (home-page "https://metacpan.org/release/Cache-Cache")
742 (synopsis "Cache interface for Perl")
743 (description "The Cache modules are designed to assist a developer in
744 persisting data for a specified period of time. Often these modules are used
745 in web applications to store data locally to save repeated and redundant
746 expensive calls to remote machines or databases. People have also been known
747 to use Cache::Cache for its straightforward interface in sharing data between
748 runs of an application or invocations of a CGI-style script or simply as an
749 easy to use abstraction of the file system or shared memory.")
750 (license (package-license perl))))
751
752 (define-public perl-cache-fastmmap
753 (package
754 (name "perl-cache-fastmmap")
755 (version "1.48")
756 (source
757 (origin
758 (method url-fetch)
759 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
760 "Cache-FastMmap-" version ".tar.gz"))
761 (sha256
762 (base32 "118y5lxwa092zrii7mcwnqypff7424w1dpgfkg8zlnz7h2mmnd9c"))))
763 (build-system perl-build-system)
764 (home-page "https://metacpan.org/release/Cache-FastMmap")
765 (synopsis "Shared memory interprocess cache via mmap")
766 (description "A shared memory cache through an mmap'ed file. It's core is
767 written in C for performance. It uses fcntl locking to ensure multiple
768 processes can safely access the cache at the same time. It uses a basic LRU
769 algorithm to keep the most used entries in the cache.")
770 (license (package-license perl))))
771
772 (define-public perl-capture-tiny
773 (package
774 (name "perl-capture-tiny")
775 (version "0.48")
776 (source
777 (origin
778 (method url-fetch)
779 (uri (string-append
780 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
781 version ".tar.gz"))
782 (sha256
783 (base32
784 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
785 (build-system perl-build-system)
786 (home-page "https://metacpan.org/release/Capture-Tiny")
787 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
788 (description
789 "Capture::Tiny provides a simple, portable way to capture almost anything
790 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
791 code or from an external program. Optionally, output can be teed so that it
792 is captured while being passed through to the original file handles.")
793 (license asl2.0)))
794
795 (define-public perl-canary-stability
796 (package
797 (name "perl-canary-stability")
798 (version "2013")
799 (source (origin
800 (method url-fetch)
801 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
802 "Canary-Stability-" version ".tar.gz"))
803 (sha256
804 (base32
805 "1smnsx371x9zrqmylgq145991xh8561mraqfyrlbiz4mrxi1rjd5"))))
806 (build-system perl-build-system)
807 (home-page "https://metacpan.org/release/Canary-Stability")
808 (synopsis "Check compatibility with the installed perl version")
809 (description
810 "This module is used by Schmorp's modules during configuration stage
811 to test the installed perl for compatibility with his modules.")
812 (license (package-license perl))))
813
814 (define-public perl-carp
815 (package
816 (name "perl-carp")
817 (version "1.50")
818 (source (origin
819 (method url-fetch)
820 (uri (string-append
821 "mirror://cpan/authors/id/X/XS/XSAWYERX/Carp-"
822 version ".tar.gz"))
823 (sha256
824 (base32
825 "1ngbpjyd9qi7n4h5r3q3qibd8by7rfiv7364jqlv4lbd3973n9zm"))))
826 (build-system perl-build-system)
827 (home-page "https://metacpan.org/release/Carp")
828 (synopsis "Alternative warn and die for modules")
829 (description "The @code{Carp} routines are useful in your own modules
830 because they act like @code{die()} or @code{warn()}, but with a message
831 which is more likely to be useful to a user of your module. In the case
832 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
833 summary of every call in the call-stack. For a shorter message you can use
834 @code{carp} or @code{croak} which report the error as being from where your
835 module was called. There is no guarantee that that is where the error was,
836 but it is a good educated guess.")
837 (license (package-license perl))))
838
839 (define-public perl-carp-always
840 (package
841 (name "perl-carp-always")
842 (version "0.16")
843 (source
844 (origin
845 (method url-fetch)
846 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
847 version ".tar.gz"))
848 (sha256
849 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
850 (build-system perl-build-system)
851 (native-inputs
852 `(("perl-test-base" ,perl-test-base)))
853 (home-page "https://metacpan.org/release/Carp-Always")
854 (synopsis "Warns and dies noisily with stack backtraces/")
855 (description "This module is meant as a debugging aid. It can be used to
856 make a script complain loudly with stack backtraces when @code{warn()}-ing or
857 @code{die()}ing.")
858 (license (package-license perl))))
859
860 (define-public perl-carp-assert
861 (package
862 (name "perl-carp-assert")
863 (version "0.21")
864 (source
865 (origin
866 (method url-fetch)
867 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
868 "Carp-Assert-" version ".tar.gz"))
869 (sha256
870 (base32
871 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
872 (build-system perl-build-system)
873 (home-page "https://metacpan.org/release/Carp-Assert")
874 (synopsis "Executable comments for Perl")
875 (description "Carp::Assert is intended for a purpose like the ANSI C
876 library assert.h.")
877 (license (package-license perl))))
878
879 (define-public perl-carp-assert-more
880 (package
881 (name "perl-carp-assert-more")
882 (version "1.20")
883 (source
884 (origin
885 (method url-fetch)
886 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
887 "Carp-Assert-More-" version ".tar.gz"))
888 (sha256
889 (base32 "16jnhdjgfwymrc5fki4xlf1rlziszf9k6q0245g976124k708ac5"))))
890 (build-system perl-build-system)
891 (native-inputs
892 `(("perl-test-exception" ,perl-test-exception)))
893 (propagated-inputs
894 `(("perl-carp-assert" ,perl-carp-assert)))
895 (home-page "https://metacpan.org/release/Carp-Assert-More")
896 (synopsis "Convenience wrappers around Carp::Assert")
897 (description "Carp::Assert::More is a set of handy assertion functions for
898 Perl.")
899 (license artistic2.0)))
900
901 (define-public perl-carp-clan
902 (package
903 (name "perl-carp-clan")
904 (version "6.08")
905 (source
906 (origin
907 (method url-fetch)
908 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
909 "Carp-Clan-" version ".tar.gz"))
910 (sha256
911 (base32 "0237xx3rqa72sr4vdvws9r1m453h5f25bl85mdjmmk128kir4py7"))))
912 (build-system perl-build-system)
913 (native-inputs
914 `(("perl-test-exception" ,perl-test-exception)))
915 (home-page "https://metacpan.org/release/Carp-Clan")
916 (synopsis "Report errors from a \"clan\" of modules")
917 (description "This module allows errors from a clan (or family) of modules
918 to appear to originate from the caller of the clan. This is necessary in
919 cases where the clan modules are not classes derived from each other, and thus
920 the Carp.pm module doesn't help.")
921 (license (package-license perl))))
922
923 (define-public perl-cddb-get
924 (package
925 (name "perl-cddb-get")
926 (version "2.28")
927 (source (origin
928 (method url-fetch)
929 (uri (string-append
930 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
931 version ".tar.gz"))
932 (sha256
933 (base32
934 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
935 (build-system perl-build-system)
936 (home-page "https://metacpan.org/release/CDDB_get")
937 (synopsis "Read the CDDB entry for an audio CD in your drive")
938 (description "This module can retrieve information from the CDDB.")
939 ;; Either GPLv2 or the "Artistic" license.
940 (license (list gpl2 artistic2.0))))
941
942 (define-public circos
943 (package
944 (name "circos")
945 (version "0.69-9")
946 (source (origin
947 (method url-fetch)
948 (uri (string-append
949 "http://circos.ca/distribution/circos-" version ".tgz"))
950 (sha256
951 (base32 "1ll9yxbk0v64813np0qz6h8bc53qlnhg9y1053b57xgkxgmxgn1l"))
952 (patches (list (search-patch "circos-remove-findbin.patch")))))
953 (build-system gnu-build-system)
954 (arguments
955 `(#:tests? #f ; There are no tests.
956 #:phases
957 (modify-phases %standard-phases
958 (delete 'configure)
959 (delete 'build)
960 (replace 'install
961 (lambda* (#:key outputs #:allow-other-keys)
962 (let* ((out (assoc-ref outputs "out"))
963 (bin (string-append out "/bin"))
964 (datapath (string-append out "/share/Circos"))
965 (error (string-append out "/share/Circos/error"))
966 (fonts (string-append out "/share/Circos/fonts"))
967 (data (string-append out "/share/Circos/data"))
968 (tiles (string-append out "/share/Circos/tiles"))
969 (etc (string-append out "/share/Circos/etc"))
970 (lib (string-append out "/lib/perl5/site_perl/"
971 ,(package-version perl)))
972 (install-directory (lambda (source target)
973 (mkdir-p target)
974 (copy-recursively source target))))
975 ;; Circos looks into a relative path for its configuration
976 ;; files. We need to provide an absolute path towards the
977 ;; corresponding paths in the store.
978 (substitute* '("bin/circos" "etc/colors_fonts_patterns.conf"
979 "etc/gddiag.conf" "etc/brewer.conf" "README")
980 (("<<include etc") (string-append "<<include " etc)))
981 (substitute* '("etc/colors.conf" "etc/image.black.conf"
982 "etc/patterns.conf" "etc/image.conf")
983 (("<<include ") (string-append "<<include " etc "/")))
984 (substitute* '("etc/fonts.conf" "fonts/README.fonts")
985 (("= fonts") (string-append "= " fonts)))
986 (substitute* "etc/patterns.conf"
987 (("= tiles") (string-append "= " tiles)))
988 (substitute* "lib/Circos/Error.pm"
989 (("error/configuration.missing.txt")
990 (string-append error "/configuration.missing.txt")))
991 (substitute* "etc/housekeeping.conf"
992 (("# data_path = /home/martink/circos-tutorials ")
993 (string-append "data_path = " datapath)))
994 (substitute* "lib/Circos/Configuration.pm"
995 (("my @possibilities = \\(")
996 (string-append "my @possibilities = ("
997 "catfile( \"" datapath "\", $arg ), "
998 "catfile( \"" etc "\", $arg ), "
999 "catfile( \"" etc "/tracks\", $arg ), ")))
1000 (for-each install-directory
1001 (list "error" "fonts" "data" "tiles" "etc" "lib")
1002 (list error fonts data tiles etc lib))
1003 (install-file "bin/circos" bin)
1004 #t))))))
1005 (propagated-inputs
1006 `(("perl" ,perl)
1007 ("perl-carp" ,perl-carp)
1008 ("perl-clone" ,perl-clone)
1009 ("perl-config-general" ,perl-config-general)
1010 ("perl-digest-md5" ,perl-digest-md5)
1011 ("perl-file-temp" ,perl-file-temp)
1012 ("perl-font-ttf" ,perl-font-ttf)
1013 ("perl-gd" ,perl-gd)
1014 ("perl-getopt-long" ,perl-getopt-long)
1015 ("perl-list-allutils" ,perl-list-allutils)
1016 ("perl-math-bezier" ,perl-math-bezier)
1017 ("perl-math-round" ,perl-math-round)
1018 ("perl-math-vecstat" ,perl-math-vecstat)
1019 ("perl-memoize" ,perl-memoize)
1020 ("perl-number-format" ,perl-number-format)
1021 ("perl-params-validate" ,perl-params-validate)
1022 ("perl-readonly" ,perl-readonly)
1023 ("perl-regexp-common" ,perl-regexp-common)
1024 ("perl-set-intspan" ,perl-set-intspan)
1025 ("perl-statistics-basic" ,perl-statistics-basic)
1026 ("perl-svg" ,perl-svg)
1027 ("perl-text-balanced" ,perl-text-balanced)
1028 ("perl-text-format" ,perl-text-format)
1029 ("perl-time-hires" ,perl-time-hires)))
1030 (home-page "http://circos.ca/")
1031 (synopsis "Generation of circularly composited renditions")
1032 (description
1033 "Circos is a program for the generation of publication-quality, circularly
1034 composited renditions of genomic data and related annotations.")
1035 (license gpl2+)))
1036
1037 (define-public perl-class-accessor
1038 (package
1039 (name "perl-class-accessor")
1040 (version "0.51")
1041 (source
1042 (origin
1043 (method url-fetch)
1044 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
1045 "Class-Accessor-" version ".tar.gz"))
1046 (sha256
1047 (base32
1048 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
1049 (build-system perl-build-system)
1050 (native-inputs
1051 `(("perl-sub-name" ,perl-sub-name)))
1052 (home-page "https://metacpan.org/release/Class-Accessor")
1053 (synopsis "Automated accessor generation")
1054 (description "This module automagically generates accessors/mutators for
1055 your class.")
1056 (license (package-license perl))))
1057
1058 (define-public perl-class-accessor-chained
1059 (package
1060 (name "perl-class-accessor-chained")
1061 (version "0.01")
1062 (source
1063 (origin
1064 (method url-fetch)
1065 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1066 "Class-Accessor-Chained-" version ".tar.gz"))
1067 (sha256
1068 (base32
1069 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
1070 (build-system perl-build-system)
1071 (native-inputs
1072 `(("perl-module-build" ,perl-module-build)))
1073 (propagated-inputs
1074 `(("perl-class-accessor" ,perl-class-accessor)))
1075 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
1076 (synopsis "Faster, but less expandable, chained accessors")
1077 (description "A chained accessor is one that always returns the object
1078 when called with parameters (to set), and the value of the field when called
1079 with no arguments. This module subclasses Class::Accessor in order to provide
1080 the same mk_accessors interface.")
1081 (license (package-license perl))))
1082
1083 (define-public perl-class-accessor-grouped
1084 (package
1085 (name "perl-class-accessor-grouped")
1086 (version "0.10014")
1087 (source
1088 (origin
1089 (method url-fetch)
1090 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1091 "Class-Accessor-Grouped-" version ".tar.gz"))
1092 (sha256
1093 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
1094 (build-system perl-build-system)
1095 (native-inputs
1096 `(("perl-module-install" ,perl-module-install)
1097 ("perl-test-exception" ,perl-test-exception)))
1098 (propagated-inputs
1099 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
1100 ("perl-module-runtime" ,perl-module-runtime)
1101 ("perl-sub-name" ,perl-sub-name)))
1102 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
1103 (synopsis "Build groups of accessors")
1104 (description "This class lets you build groups of accessors that will call
1105 different getters and setters.")
1106 (license (package-license perl))))
1107
1108 (define-public perl-class-c3
1109 (package
1110 (name "perl-class-c3")
1111 (version "0.34")
1112 (source
1113 (origin
1114 (method url-fetch)
1115 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1116 "Class-C3-" version ".tar.gz"))
1117 (sha256
1118 (base32 "1dcibc31v5jwmi6hsdzi7c5ag1sb4wp3kxkibc889qrdj7jm12sd"))))
1119 (build-system perl-build-system)
1120 (propagated-inputs
1121 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
1122 (home-page "https://metacpan.org/release//Class-C3")
1123 (synopsis "Pragma to use the C3 method resolution order algorithm")
1124 (description "This is pragma to change Perl 5's standard method resolution
1125 order from depth-first left-to-right (a.k.a - pre-order) to the more
1126 sophisticated C3 method resolution order.")
1127 (license (package-license perl))))
1128
1129 (define-public perl-class-c3-adopt-next
1130 (package
1131 (name "perl-class-c3-adopt-next")
1132 (version "0.14")
1133 (source
1134 (origin
1135 (method url-fetch)
1136 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1137 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1138 (sha256
1139 (base32 "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"))))
1140 (build-system perl-build-system)
1141 (native-inputs
1142 `(("perl-module-build" ,perl-module-build)
1143 ("perl-module-build-tiny" ,perl-module-build-tiny)
1144 ("perl-test-exception" ,perl-test-exception)))
1145 (propagated-inputs
1146 `(("perl-list-moreutils" ,perl-list-moreutils)
1147 ("perl-mro-compat" ,perl-mro-compat)))
1148 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
1149 (synopsis "Drop-in replacement for NEXT")
1150 (description "This module is intended as a drop-in replacement for NEXT,
1151 supporting the same interface, but using Class::C3 to do the hard work.")
1152 (license (package-license perl))))
1153
1154 (define-public perl-class-c3-componentised
1155 (package
1156 (name "perl-class-c3-componentised")
1157 (version "1.001002")
1158 (source
1159 (origin
1160 (method url-fetch)
1161 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1162 "Class-C3-Componentised-" version ".tar.gz"))
1163 (sha256
1164 (base32 "14wn1g45z3b5apqq7dcai5drk01hfyqydsd2m6hsxzhyvi3b2l9h"))))
1165 (build-system perl-build-system)
1166 (native-inputs
1167 `(("perl-module-install" ,perl-module-install)
1168 ("perl-test-exception" ,perl-test-exception)))
1169 (propagated-inputs
1170 `(("perl-class-c3" ,perl-class-c3)
1171 ("perl-class-inspector" ,perl-class-inspector)
1172 ("perl-mro-compat" ,perl-mro-compat)))
1173 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1174 (synopsis "Load mix-ins or components to your C3-based class")
1175 (description "This module will inject base classes to your module using
1176 the Class::C3 method resolution order.")
1177 (license (package-license perl))))
1178
1179 (define-public perl-class-data-inheritable
1180 (package
1181 (name "perl-class-data-inheritable")
1182 (version "0.08")
1183 (source
1184 (origin
1185 (method url-fetch)
1186 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1187 "Class-Data-Inheritable-" version ".tar.gz"))
1188 (sha256
1189 (base32
1190 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1191 (build-system perl-build-system)
1192 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1193 (synopsis "Inheritable, overridable class data")
1194 (description "Class::Data::Inheritable is for creating accessor/mutators
1195 to class data. That is, if you want to store something about your class as a
1196 whole (instead of about a single object). This data is then inherited by your
1197 subclasses and can be overridden.")
1198 (license (package-license perl))))
1199
1200 (define-public perl-class-date
1201 (package
1202 (name "perl-class-date")
1203 (version "1.1.17")
1204 (source
1205 (origin
1206 (method url-fetch)
1207 (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/"
1208 "Class-Date-" version ".tar.gz"))
1209 (sha256
1210 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1211 (build-system perl-build-system)
1212 (arguments `(#:tests? #f)) ;timezone tests in chroot
1213 (home-page "https://metacpan.org/release/Class-Date")
1214 (synopsis "Class for easy date and time manipulation")
1215 (description "This module provides a general-purpose date and datetime
1216 type for perl.")
1217 (license (package-license perl))))
1218
1219 (define-public perl-class-errorhandler
1220 (package
1221 (name "perl-class-errorhandler")
1222 (version "0.04")
1223 (source (origin
1224 (method url-fetch)
1225 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1226 "Class-ErrorHandler-" version ".tar.gz"))
1227 (sha256
1228 (base32
1229 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1230 (build-system perl-build-system)
1231 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1232 (synopsis "Base class for error handling")
1233 (description
1234 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1235 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1236 its two error-handling methods, error and errstr, to communicate error messages back
1237 to the calling program.")
1238 (license (package-license perl))))
1239
1240 (define-public perl-class-factory-util
1241 (package
1242 (name "perl-class-factory-util")
1243 (version "1.7")
1244 (source
1245 (origin
1246 (method url-fetch)
1247 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1248 "Class-Factory-Util-" version ".tar.gz"))
1249 (sha256
1250 (base32
1251 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1252 (build-system perl-build-system)
1253 (native-inputs `(("perl-module-build" ,perl-module-build)))
1254 (home-page "https://metacpan.org/release/Class-Factory-Util")
1255 (synopsis "Utility methods for factory classes")
1256 (description "This module exports methods useful for factory classes.")
1257 (license (package-license perl))))
1258
1259 (define-public perl-class-inspector
1260 (package
1261 (name "perl-class-inspector")
1262 (version "1.36")
1263 (source
1264 (origin
1265 (method url-fetch)
1266 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1267 "Class-Inspector-" version ".tar.gz"))
1268 (sha256
1269 (base32
1270 "0kk900bp8iq7bw5jyllfb31gvf93mmp24n4x90j7qs3jlhimsafc"))))
1271 (build-system perl-build-system)
1272 (home-page "https://metacpan.org/release/Class-Inspector")
1273 (synopsis "Get information about a class and its structure")
1274 (description "Class::Inspector allows you to get information about a
1275 loaded class.")
1276 (license (package-license perl))))
1277
1278 (define-public perl-class-load
1279 (package
1280 (name "perl-class-load")
1281 (version "0.25")
1282 (source
1283 (origin
1284 (method url-fetch)
1285 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1286 "Class-Load-" version ".tar.gz"))
1287 (sha256
1288 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1289 (build-system perl-build-system)
1290 (native-inputs
1291 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1292 ("perl-test-fatal" ,perl-test-fatal)
1293 ("perl-test-needs" ,perl-test-needs)
1294 ("perl-test-without-module" ,perl-test-without-module)))
1295 (propagated-inputs
1296 `(("perl-package-stash" ,perl-package-stash)
1297 ("perl-data-optlist" ,perl-data-optlist)
1298 ("perl-namespace-clean" ,perl-namespace-clean)
1299 ("perl-module-runtime" ,perl-module-runtime)
1300 ("perl-module-implementation" ,perl-module-implementation)))
1301 (home-page "https://metacpan.org/release/Class-Load")
1302 (synopsis "Working (require \"Class::Name\") and more")
1303 (description "\"require EXPR\" only accepts Class/Name.pm style module
1304 names, not Class::Name. For that, this module provides \"load_class
1305 'Class::Name'\".")
1306 (license (package-license perl))))
1307
1308 (define-public perl-class-load-xs
1309 (package
1310 (name "perl-class-load-xs")
1311 (version "0.10")
1312 (source
1313 (origin
1314 (method url-fetch)
1315 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1316 "Class-Load-XS-" version ".tar.gz"))
1317 (sha256
1318 (base32
1319 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1320 (build-system perl-build-system)
1321 (native-inputs
1322 `(("perl-test-fatal" ,perl-test-fatal)
1323 ("perl-test-needs" ,perl-test-needs)
1324 ("perl-test-without-module" ,perl-test-without-module)))
1325 (inputs `(("perl-class-load" ,perl-class-load)))
1326 (home-page "https://metacpan.org/release/Class-Load-XS")
1327 (synopsis "XS implementation of parts of Class::Load")
1328 (description "This module provides an XS implementation for portions of
1329 Class::Load.")
1330 (license artistic2.0)))
1331
1332 (define-public perl-class-methodmaker
1333 (package
1334 (name "perl-class-methodmaker")
1335 (version "2.24")
1336 (source
1337 (origin
1338 (method url-fetch)
1339 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1340 "class-methodmaker/Class-MethodMaker-"
1341 version ".tar.gz"))
1342 (sha256
1343 (base32
1344 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1345 (build-system perl-build-system)
1346 (home-page "https://metacpan.org/release/Class-MethodMaker")
1347 (synopsis "Create generic methods for OO Perl")
1348 (description "This module solves the problem of having to continually
1349 write accessor methods for your objects that perform standard tasks.")
1350 (license (package-license perl))))
1351
1352 (define-public perl-class-method-modifiers
1353 (package
1354 (name "perl-class-method-modifiers")
1355 (version "2.13")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1360 "Class-Method-Modifiers-" version ".tar.gz"))
1361 (sha256
1362 (base32 "0qzx83mgd71hlc2m1kpw15dqsjzjq7b2cj3sdgg45a0q23vhfn5b"))))
1363 (build-system perl-build-system)
1364 (native-inputs
1365 `(("perl-test-fatal" ,perl-test-fatal)
1366 ("perl-test-needs" ,perl-test-needs)))
1367 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1368 (synopsis "Moose-like method modifiers")
1369 (description "Class::Method::Modifiers provides three modifiers:
1370 @code{before}, @code{around}, and @code{after}. @code{before} and @code{after}
1371 are run just before and after the method they modify, but can not really affect
1372 that original method. @code{around} is run in place of the original method,
1373 with a hook to easily call that original method.")
1374 (license (package-license perl))))
1375
1376 (define-public perl-class-mix
1377 (package
1378 (name "perl-class-mix")
1379 (version "0.006")
1380 (source
1381 (origin
1382 (method url-fetch)
1383 (uri (string-append
1384 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Class-Mix-"
1385 version ".tar.gz"))
1386 (sha256
1387 (base32
1388 "02vwzzqn1s24g525arbrjh9s9j0y1inp3wbr972gh51ri51zciw7"))))
1389 (build-system perl-build-system)
1390 (native-inputs
1391 `(("perl-module-build" ,perl-module-build)
1392 ("perl-test-pod" ,perl-test-pod)
1393 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1394 (propagated-inputs
1395 `(("perl-params-classify" ,perl-params-classify)))
1396 (home-page "https://metacpan.org/release/Class-Mix")
1397 (synopsis "Dynamic class mixing")
1398 (description "The @code{mix_class} function provided by this
1399 module dynamically generates anonymous classes with specified
1400 inheritance. This is useful where an incomplete class requires use of
1401 a mixin in order to become instantiable.")
1402 (license perl-license)))
1403
1404 (define-public perl-class-singleton
1405 (package
1406 (name "perl-class-singleton")
1407 (version "1.5")
1408 (source
1409 (origin
1410 (method url-fetch)
1411 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1412 "Class-Singleton-" version ".tar.gz"))
1413 (sha256
1414 (base32
1415 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1416 (build-system perl-build-system)
1417 (home-page "https://metacpan.org/release/Class-Singleton")
1418 (synopsis "Implementation of a singleton class for Perl")
1419 (description "This module implements a Singleton class from which other
1420 classes can be derived. By itself, the Class::Singleton module does very
1421 little other than manage the instantiation of a single object.")
1422 (license (package-license perl))))
1423
1424 (define-public perl-class-tiny
1425 (package
1426 (name "perl-class-tiny")
1427 (version "1.006")
1428 (source
1429 (origin
1430 (method url-fetch)
1431 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1432 "Class-Tiny-" version ".tar.gz"))
1433 (sha256
1434 (base32
1435 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1436 (build-system perl-build-system)
1437 (home-page "https://metacpan.org/release/Class-Tiny")
1438 (synopsis "Minimalist class construction")
1439 (description "This module offers a minimalist class construction kit. It
1440 uses no non-core modules for any recent Perl.")
1441 (license asl2.0)))
1442
1443 (define-public perl-class-unload
1444 (package
1445 (name "perl-class-unload")
1446 (version "0.11")
1447 (source
1448 (origin
1449 (method url-fetch)
1450 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1451 "Class-Unload-" version ".tar.gz"))
1452 (sha256
1453 (base32 "0pqa98z3ij6a3v9wkmvc8b410kv30y0xxqf0i6if3lp4lx3rgqjj"))))
1454 (build-system perl-build-system)
1455 (native-inputs
1456 `(("perl-test-requires" ,perl-test-requires)))
1457 (propagated-inputs
1458 `(("perl-class-inspector" ,perl-class-inspector)))
1459 (home-page "https://metacpan.org/release/Class-Unload")
1460 (synopsis "Unload a class")
1461 (description "Class:Unload unloads a given class by clearing out its
1462 symbol table and removing it from %INC.")
1463 (license (package-license perl))))
1464
1465 (define-public perl-class-xsaccessor
1466 (package
1467 (name "perl-class-xsaccessor")
1468 (version "1.19")
1469 (source
1470 (origin
1471 (method url-fetch)
1472 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1473 "Class-XSAccessor-" version ".tar.gz"))
1474 (sha256
1475 (base32
1476 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1477 (build-system perl-build-system)
1478 (home-page "https://metacpan.org/release/Class-XSAccessor")
1479 (synopsis "Generate fast XS accessors without runtime compilation")
1480 (description "Class::XSAccessor implements fast read, write, and
1481 read/write accessors in XS. Additionally, it can provide predicates such as
1482 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1483 object. It only works with objects that are implemented as ordinary hashes.
1484 Class::XSAccessor::Array implements the same interface for objects that use
1485 arrays for their internal representation.")
1486 (license (package-license perl))))
1487
1488 (define-public perl-clone
1489 (package
1490 (name "perl-clone")
1491 (version "0.43")
1492 (source (origin
1493 (method url-fetch)
1494 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
1495 "Clone-" version ".tar.gz"))
1496 (sha256
1497 (base32
1498 "1npf5s4b90ds6lv8gn76b2w4bdh0z5ni5zk4skgc2db5d12560lr"))))
1499 (build-system perl-build-system)
1500 (synopsis "Recursively copy Perl datatypes")
1501 (description
1502 "This module provides a clone() method which makes recursive copies of
1503 nested hash, array, scalar and reference types, including tied variables and
1504 objects.")
1505 (home-page "https://metacpan.org/release/Clone")
1506 (license (package-license perl))))
1507
1508 (define-public perl-clone-choose
1509 (package
1510 (name "perl-clone-choose")
1511 (version "0.010")
1512 (source
1513 (origin
1514 (method url-fetch)
1515 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
1516 "Clone-Choose-" version ".tar.gz"))
1517 (sha256
1518 (base32
1519 "0cin2bjn5z8xhm9v4j7pwlkx88jnvz8al0njdjwyvs6fb0glh8sn"))))
1520 (build-system perl-build-system)
1521 (native-inputs
1522 `(("perl-clone" ,perl-clone)
1523 ("perl-clone-pp" ,perl-clone-pp)
1524 ("perl-test-without-module" ,perl-test-without-module)))
1525 (propagated-inputs
1526 `(("perl-module-runtime" ,perl-module-runtime)))
1527 (home-page "https://metacpan.org/release/Clone-Choose")
1528 (synopsis "Choose appropriate Perl @code{clone} utility")
1529 (description "This @code{Clone::Choose} module checks several different
1530 modules which provide a @code{clone()} function and selects an appropriate
1531 one.")
1532 (license perl-license)))
1533
1534 (define-public perl-clone-pp
1535 (package
1536 (name "perl-clone-pp")
1537 (version "1.07")
1538 (source
1539 (origin
1540 (method url-fetch)
1541 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1542 version ".tar.gz"))
1543 (sha256
1544 (base32
1545 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1546 (build-system perl-build-system)
1547 (home-page "https://metacpan.org/release/Clone-PP")
1548 (synopsis "Recursively copy Perl datatypes")
1549 (description "This module provides a general-purpose @code{clone} function
1550 to make deep copies of Perl data structures. It calls itself recursively to
1551 copy nested hash, array, scalar and reference types, including tied variables
1552 and objects.")
1553 (license (package-license perl))))
1554
1555 (define-public perl-common-sense
1556 (package
1557 (name "perl-common-sense")
1558 (version "3.74")
1559 (source
1560 (origin
1561 (method url-fetch)
1562 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1563 "common-sense-" version ".tar.gz"))
1564 (sha256
1565 (base32
1566 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1567 (build-system perl-build-system)
1568 (home-page "https://metacpan.org/release/common-sense")
1569 (synopsis "Sane defaults for Perl programs")
1570 (description "This module implements some sane defaults for Perl programs,
1571 as defined by two typical specimens of Perl coders.")
1572 (license (package-license perl))))
1573
1574 (define-public perl-conf-libconfig
1575 (package
1576 (name "perl-conf-libconfig")
1577 (version "0.100")
1578 (source
1579 (origin
1580 (method url-fetch)
1581 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1582 "Conf-Libconfig-" version ".tar.gz"))
1583 (sha256
1584 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1585 (build-system perl-build-system)
1586 (native-inputs
1587 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1588 ("perl-test-deep" ,perl-test-deep)
1589 ("perl-test-exception" ,perl-test-exception)
1590 ("perl-test-warn" ,perl-test-warn)))
1591 (inputs
1592 `(("libconfig" ,libconfig)))
1593 (home-page "https://metacpan.org/release/Conf-Libconfig")
1594 (synopsis "Perl extension for libconfig")
1595 (description
1596 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1597 library. It support scalar, array, and hash data structures just like its C/C++
1598 counterpart. It reduces the effort required to implement a configuration file
1599 parser in your Perl programme and allows sharing configuration files between
1600 languages.")
1601 (license bsd-3)))
1602
1603 (define-public perl-config-grammar
1604 (package
1605 (name "perl-config-grammar")
1606 (version "1.13")
1607 (source
1608 (origin
1609 (method url-fetch)
1610 (uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
1611 "Config-Grammar-" version ".tar.gz"))
1612 (sha256
1613 (base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
1614 (build-system perl-build-system)
1615 (home-page "https://metacpan.org/release/Config-Grammar")
1616 (synopsis "Grammar-based config parser")
1617 (description
1618 "Config::Grammar is a module to parse configuration files. The
1619 configuration may consist of multiple-level sections with assignments and
1620 tabular data.")
1621 (license (package-license perl))))
1622
1623 (define-public perl-config-any
1624 (package
1625 (name "perl-config-any")
1626 (version "0.32")
1627 (source
1628 (origin
1629 (method url-fetch)
1630 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1631 "Config-Any-" version ".tar.gz"))
1632 (sha256
1633 (base32
1634 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1635 (build-system perl-build-system)
1636 (propagated-inputs
1637 `(("perl-module-pluggable" ,perl-module-pluggable)))
1638 (home-page "https://metacpan.org/release/Config-Any")
1639 (synopsis "Load configuration from different file formats")
1640 (description "Config::Any provides a facility for Perl applications and
1641 libraries to load configuration data from multiple different file formats. It
1642 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1643 (license (package-license perl))))
1644
1645 (define-public perl-config-inifiles
1646 (package
1647 (name "perl-config-inifiles")
1648 (version "3.000002")
1649 (source
1650 (origin
1651 (method url-fetch)
1652 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/"
1653 "Config-IniFiles-" version ".tar.gz"))
1654 (sha256
1655 (base32 "02dsz3inh5jwgaxmbcz8qxwgin8mkhm6vj9jyzfmm3dr5pnxcbnr"))))
1656 (build-system perl-build-system)
1657 (propagated-inputs
1658 `(("perl-module-build" ,perl-module-build)
1659 ("perl-io-stringy",perl-io-stringy)))
1660 (home-page "https://metacpan.org/pod/Config::IniFiles")
1661 (synopsis "Package for configuration files outside your Perl script")
1662 (description "This package provides a way to have readable configuration
1663 files outside your Perl script. Configurations can be imported, sections
1664 can be grouped, and settings can be accessed from a tied hash.")
1665 (license (package-license perl))))
1666
1667 (define-public perl-config-autoconf
1668 (package
1669 (name "perl-config-autoconf")
1670 (version "0.317")
1671 (source
1672 (origin
1673 (method url-fetch)
1674 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1675 "Config-AutoConf-" version ".tar.gz"))
1676 (sha256
1677 (base32
1678 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1679 (build-system perl-build-system)
1680 (propagated-inputs
1681 `(("perl-capture-tiny" ,perl-capture-tiny)))
1682 (home-page "https://metacpan.org/release/Config-AutoConf")
1683 (synopsis "Module to implement some AutoConf macros in Perl")
1684 (description "Config::AutoConf is intended to provide the same
1685 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1686 (license (package-license perl))))
1687
1688 (define-public perl-config-general
1689 (package
1690 (name "perl-config-general")
1691 (version "2.63")
1692 (source
1693 (origin
1694 (method url-fetch)
1695 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1696 "Config-General-" version ".tar.gz"))
1697 (sha256
1698 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1699 (build-system perl-build-system)
1700 (home-page "https://metacpan.org/release/Config-General")
1701 (synopsis "Generic Config Module")
1702 (description "This module opens a config file and parses its contents for
1703 you. The format of config files supported by Config::General is inspired by
1704 the well known Apache config format and is 100% compatible with Apache
1705 configs, but you can also just use simple name/value pairs in your config
1706 files. In addition to the capabilities of an Apache config file it supports
1707 some enhancements such as here-documents, C-style comments, and multiline
1708 options.")
1709 (license (package-license perl))))
1710
1711 (define-public perl-config-gitlike
1712 (package
1713 (name "perl-config-gitlike")
1714 (version "1.17")
1715 (source
1716 (origin
1717 (method url-fetch)
1718 (uri (string-append
1719 "mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
1720 version
1721 ".tar.gz"))
1722 (sha256
1723 (base32
1724 "0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
1725 (build-system perl-build-system)
1726 (native-inputs
1727 `(("perl-test-exception" ,perl-test-exception)))
1728 (propagated-inputs
1729 `(("perl-moo" ,perl-moo)
1730 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
1731 (home-page "https://metacpan.org/release/Config-GitLike")
1732 (synopsis "Parse Git style configuration files")
1733 (description
1734 "This module handles parsing, modifying and creating configuration files
1735 of the style used by the Git version control system.")
1736 (license perl-license)))
1737
1738 (define-public perl-config-ini
1739 (package
1740 (name "perl-config-ini")
1741 (version "0.025")
1742 (source (origin
1743 (method url-fetch)
1744 (uri (string-append
1745 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1746 version ".tar.gz"))
1747 (sha256
1748 (base32
1749 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1750 (build-system perl-build-system)
1751 (inputs
1752 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1753 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1754 ("perl-sub-exporter" ,perl-sub-exporter)))
1755 (home-page "https://metacpan.org/release/Config-INI")
1756 (synopsis "Simple .ini-file format reader and writer")
1757 (description "@code{Config::INI} is a module that facilates the reading
1758 and writing of @code{.ini}-style configuration files.")
1759 (license (package-license perl))))
1760
1761 (define-public perl-context-preserve
1762 (package
1763 (name "perl-context-preserve")
1764 (version "0.03")
1765 (source
1766 (origin
1767 (method url-fetch)
1768 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1769 "Context-Preserve-" version ".tar.gz"))
1770 (sha256
1771 (base32
1772 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1773 (build-system perl-build-system)
1774 (native-inputs
1775 `(("perl-test-exception" ,perl-test-exception)
1776 ("perl-test-simple" ,perl-test-simple)))
1777 (home-page "https://metacpan.org/release/Context-Preserve")
1778 (synopsis "Preserve context during subroutine call")
1779 (description "This module runs code after a subroutine call, preserving
1780 the context the subroutine would have seen if it were the last statement in
1781 the caller.")
1782 (license (package-license perl))))
1783
1784 (define-public perl-convert-binhex
1785 (package
1786 (name "perl-convert-binhex")
1787 (version "1.125")
1788 (source
1789 (origin
1790 (method url-fetch)
1791 (uri (string-append
1792 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1793 version
1794 ".tar.gz"))
1795 (sha256
1796 (base32
1797 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1798 (build-system perl-build-system)
1799 (native-inputs
1800 `(("perl-file-slurp" ,perl-file-slurp)
1801 ("perl-test-most" ,perl-test-most)))
1802 (home-page
1803 "https://metacpan.org/release/Convert-BinHex")
1804 (synopsis "Extract data from Macintosh BinHex files")
1805 (description
1806 "BinHex is a format for transporting files safely through electronic
1807 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1808 provides a means of converting those data streams back into into binary
1809 data.")
1810 (license perl-license)))
1811
1812 (define-public perl-cpan-changes
1813 (package
1814 (name "perl-cpan-changes")
1815 (version "0.400002")
1816 (source
1817 (origin
1818 (method url-fetch)
1819 (uri (string-append
1820 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1821 version ".tar.gz"))
1822 (sha256
1823 (base32
1824 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1825 (build-system perl-build-system)
1826 (home-page "https://metacpan.org/release/CPAN-Changes")
1827 (synopsis "Read and write @file{Changes} files")
1828 (description
1829 "@code{CPAN::Changes} helps users programmatically read and write
1830 @file{Changes} files that conform to a common specification.")
1831 (license perl-license)))
1832
1833 (define-public perl-cpan-distnameinfo
1834 (package
1835 (name "perl-cpan-distnameinfo")
1836 (version "0.12")
1837 (source
1838 (origin
1839 (method url-fetch)
1840 (uri (string-append
1841 "mirror://cpan/authors/id/G/GB/GBARR/CPAN-DistnameInfo-"
1842 version
1843 ".tar.gz"))
1844 (sha256
1845 (base32
1846 "0d94kx596w7k328cvq4y96z1gz12hdhn3z1mklkbrb7fyzlzn91g"))))
1847 (build-system perl-build-system)
1848 (home-page "https://metacpan.org/release/CPAN-DistnameInfo")
1849 (synopsis "Extract the name and version from a distribution filename")
1850 (description
1851 "@code{CPAN::DistnameInfo} uses heuristics to extract the distribution
1852 name and version from filenames.")
1853 (license perl-license)))
1854
1855 (define-public perl-cpan-meta-check
1856 (package
1857 (name "perl-cpan-meta-check")
1858 (version "0.014")
1859 (source
1860 (origin
1861 (method url-fetch)
1862 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1863 "CPAN-Meta-Check-" version ".tar.gz"))
1864 (sha256
1865 (base32
1866 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1867 (build-system perl-build-system)
1868 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1869 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1870 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1871 (synopsis "Verify requirements in a CPAN::Meta object")
1872 (description "This module verifies if requirements described in a
1873 CPAN::Meta object are present.")
1874 (license (package-license perl))))
1875
1876 (define-public perl-cpanel-json-xs
1877 (package
1878 (name "perl-cpanel-json-xs")
1879 (version "4.18")
1880 (source
1881 (origin
1882 (method url-fetch)
1883 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1884 "Cpanel-JSON-XS-" version ".tar.gz"))
1885 (sha256
1886 (base32 "1dnnf6bjz0fi9hk8gzmsklmh5y0z137vk62k3d7s88q30maf3rk3"))))
1887 (build-system perl-build-system)
1888 (propagated-inputs
1889 `(("perl-common-sense" ,perl-common-sense)))
1890 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1891 (synopsis "JSON::XS for Cpanel")
1892 (description "This module converts Perl data structures to JSON and vice
1893 versa.")
1894 (license (package-license perl))))
1895
1896 (define-public perl-crypt-cbc
1897 (package
1898 (name "perl-crypt-cbc")
1899 (version "2.33")
1900 (source
1901 (origin
1902 (method url-fetch)
1903 (uri (string-append
1904 "mirror://cpan/authors/id/L/LD/LDS/Crypt-CBC-"
1905 version ".tar.gz"))
1906 (sha256
1907 (base32
1908 "0ig698lmpjz7fslnznxm0609lvlnvf4f3s370082nzycnqhxww3a"))))
1909 (build-system perl-build-system)
1910 (native-inputs
1911 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)))
1912 (home-page "https://metacpan.org/release/Crypt-CBC")
1913 (synopsis "Encrypt Data with Cipher Block Chaining Mode")
1914 (description "@code{Crypt::CBC} is a Perl-only implementation of
1915 the cryptographic Cipher Block Chaining (CBC) mode. In combination
1916 with a block cipher such as @code{Crypt::Rijndael} you can encrypt and
1917 decrypt messages of arbitrarily long length. The encrypted messages
1918 are compatible with the encryption format used by SSLeay.")
1919 (license perl-license)))
1920
1921 (define-public perl-crypt-des
1922 (package
1923 (name "perl-crypt-des")
1924 (version "2.07")
1925 (source
1926 (origin
1927 (method url-fetch)
1928 (uri (string-append
1929 "mirror://cpan/authors/id/D/DP/DPARIS/Crypt-DES-"
1930 version ".tar.gz"))
1931 (sha256
1932 (base32
1933 "1rypxlhpd1jc0c327aghgl9y6ls47drmpvn0a40b4k3vhfsypc9d"))))
1934 (build-system perl-build-system)
1935 (native-inputs
1936 `(("perl-crypt-cbc" ,perl-crypt-cbc)))
1937 (home-page "https://metacpan.org/release/Crypt-DES")
1938 (synopsis "DES encryption module")
1939 (description "@code{Crypt::DES} is an XS-based implementation of
1940 the DES cryptography algorithm. The module implements the
1941 @code{Crypt::CBC} interface which has blocksize, keysize, encrypt and
1942 decrypt functions.")
1943 (license bsd-3)))
1944
1945 (define-public perl-crypt-eksblowfish
1946 (package
1947 (name "perl-crypt-eksblowfish")
1948 (version "0.009")
1949 (source
1950 (origin
1951 (method url-fetch)
1952 (uri (string-append
1953 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Crypt-Eksblowfish-"
1954 version ".tar.gz"))
1955 (sha256
1956 (base32
1957 "0k01aw3qb2s4m1w4dqsc9cycyry1zg3wabdym4vp4421b1ni5irw"))))
1958 (build-system perl-build-system)
1959 (native-inputs
1960 `(("perl-module-build" ,perl-module-build)
1961 ("perl-test-pod" ,perl-test-pod)
1962 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1963 (propagated-inputs
1964 `(("perl-class-mix" ,perl-class-mix)))
1965 (home-page "https://metacpan.org/release/Crypt-Eksblowfish")
1966 (synopsis "The Eksblowfish block cipher")
1967 (description "Eksblowfish is a variant of the Blowfish cipher,
1968 modified to make the key setup very expensive. This doesn't make it
1969 significantly cryptographically stronger but is intended to hinder
1970 brute-force attacks. Eksblowfish is a parameterised (family-keyed)
1971 cipher. It takes a cost parameter that controls how expensive the key
1972 scheduling is. It also takes a family key, known as the \"salt\".
1973 Cost and salt parameters together define a cipher family. Within each
1974 family, the key determines the encryption function. This distribution
1975 also includes an implementation of @code{bcrypt}, the Unix crypt()
1976 password hashing algorithm based on Eksblowfish.")
1977 (license perl-license)))
1978
1979 (define-public perl-crypt-mysql
1980 (package
1981 (name "perl-crypt-mysql")
1982 (version "0.04")
1983 (source
1984 (origin
1985 (method url-fetch)
1986 (uri (string-append
1987 "mirror://cpan/authors/id/I/IK/IKEBE/Crypt-MySQL-"
1988 version ".tar.gz"))
1989 (sha256
1990 (base32
1991 "1qyx6ha13r0rh80ldv5wy2bq2pa74igwh8817xlapsfgxymdzswk"))))
1992 (build-system perl-build-system)
1993 (native-inputs
1994 `(("perl-module-build" ,perl-module-build)
1995 ("perl-dbd-mysql" ,perl-dbd-mysql)))
1996 (propagated-inputs
1997 `(("perl-digest-sha1" ,perl-digest-sha1)))
1998 (home-page "https://metacpan.org/release/Crypt-MySQL")
1999 (synopsis "Emulate the MySQL PASSWORD() function")
2000 (description "@code{Crypt::MySQL} emulates the MySQL PASSWORD()
2001 function. The module does not depend on an interface to the MySQL
2002 database server. This enables the comparison of encrypted passwords
2003 without the need for a real MySQL environment.")
2004 (license perl-license)))
2005
2006 (define-public perl-crypt-passwdmd5
2007 (package
2008 (name "perl-crypt-passwdmd5")
2009 (version "1.40")
2010 (source
2011 (origin
2012 (method url-fetch)
2013 (uri (string-append
2014 "mirror://cpan/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-"
2015 version ".tgz"))
2016 (sha256
2017 (base32
2018 "0j0r74f18nk63phddzqbf7wqma2ci4p4bxvrwrxsy0aklbp6lzdp"))))
2019 (build-system perl-build-system)
2020 (native-inputs
2021 `(("perl-module-build" ,perl-module-build)))
2022 (home-page "https://metacpan.org/release/Crypt-PasswdMD5")
2023 (synopsis "Interoperable MD5-based crypt() functions")
2024 (description "@code{Crypt::PasswdMD5} provides various
2025 crypt()-compatible interfaces to the MD5-based crypt() function found
2026 in various *nixes. It is based on the implementation found on FreeBSD
2027 2.2.[56]-RELEASE.")
2028 (license perl-license)))
2029
2030 (define-public perl-crypt-randpasswd
2031 (package
2032 (name "perl-crypt-randpasswd")
2033 (version "0.06")
2034 (source
2035 (origin
2036 (method url-fetch)
2037 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2038 "Crypt-RandPasswd-" version ".tar.gz"))
2039 (sha256
2040 (base32
2041 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
2042 (build-system perl-build-system)
2043 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
2044 (synopsis "Random password generator")
2045 (description "Crypt::RandPasswd provides three functions that can be used
2046 to generate random passwords, constructed from words, letters, or characters.
2047 This code is a Perl implementation of the Automated Password Generator
2048 standard, like the program described in \"A Random Word Generator For
2049 Pronounceable Passwords\". This code is a re-engineering of the program
2050 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
2051 Password Generator\".")
2052 (license (package-license perl))))
2053
2054 (define-public perl-crypt-rijndael
2055 (package
2056 (name "perl-crypt-rijndael")
2057 (version "1.14")
2058 (source
2059 (origin
2060 (method url-fetch)
2061 (uri (string-append
2062 "mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-"
2063 version ".tar.gz"))
2064 (sha256
2065 (base32
2066 "03l5nwq97a8q9na4dpd4m3r7vrwpranx225vw8xm40w7zvgw6lb4"))))
2067 (build-system perl-build-system)
2068 (home-page "https://metacpan.org/release/Crypt-Rijndael")
2069 (synopsis "Crypt::CBC compliant Rijndael encryption module")
2070 (description "This module implements the Rijndael cipher which has
2071 been selected as the Advanced Encryption Standard. The keysize for
2072 Rijndael is 32 bytes. The blocksize is 16 bytes (128 bits). The
2073 supported encryption modes are:
2074
2075 @itemize
2076 @item @code{MODE_CBC}---Cipher Block Chaining
2077 @item @code{MODE_CFB}---Cipher feedback
2078 @item @code{MODE_CTR}---Counter mode
2079 @item @code{MODE_ECB}---Electronic cookbook mode
2080 @item @code{MODE_OFB}---Output feedback
2081 @end itemize")
2082 (license gpl3)))
2083
2084 (define-public perl-crypt-rc4
2085 (package
2086 (name "perl-crypt-rc4")
2087 (version "2.02")
2088 (source
2089 (origin
2090 (method url-fetch)
2091 (uri (string-append
2092 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
2093 version
2094 ".tar.gz"))
2095 (sha256
2096 (base32
2097 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
2098 (build-system perl-build-system)
2099 (home-page "https://metacpan.org/release//Crypt-RC4")
2100 (synopsis "Perl implementation of the RC4 encryption algorithm")
2101 (description "A pure Perl implementation of the RC4 algorithm.")
2102 (license (package-license perl))))
2103
2104 (define-public perl-crypt-unixcrypt_xs
2105 (package
2106 (name "perl-crypt-unixcrypt_xs")
2107 (version "0.11")
2108 (source
2109 (origin
2110 (method url-fetch)
2111 (uri (string-append
2112 "mirror://cpan/authors/id/B/BO/BORISZ/Crypt-UnixCrypt_XS-"
2113 version ".tar.gz"))
2114 (sha256
2115 (base32
2116 "1ajg3x6kwxy4x9p3nw1j36qjxpjvdpi9wkca5gfd86y9q8939sv2"))))
2117 (build-system perl-build-system)
2118 (home-page "https://metacpan.org/release/Crypt-UnixCrypt_XS")
2119 (synopsis "XS interface for a portable traditional crypt function")
2120 (description "@code{Crypt::UnixCrypt_XS} implements the DES-based
2121 Unix @code{crypt} function. For those who need to construct
2122 non-standard variants of @code{crypt}, the various building blocks
2123 used in @code{crypt} are also supplied separately.")
2124 ;; Files in the 'fcrypt' directory are covered by a BSD licence.
2125 (license (list perl-license bsd-3))))
2126
2127 (define-public perl-cwd-guard
2128 (package
2129 (name "perl-cwd-guard")
2130 (version "0.05")
2131 (source (origin
2132 (method url-fetch)
2133 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
2134 "Cwd-Guard-" version ".tar.gz"))
2135 (sha256
2136 (base32
2137 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
2138 (build-system perl-build-system)
2139 (native-inputs
2140 `(("perl-module-build" ,perl-module-build)
2141 ("perl-test-requires" ,perl-test-requires)))
2142 (home-page "https://metacpan.org/release/Cwd-Guard")
2143 (synopsis "Temporarily change working directory")
2144 (description
2145 "@code{Cwd::Guard} changes the current directory using a limited scope.
2146 It returns to the previous working directory when the object is destroyed.")
2147 (license (package-license perl))))
2148
2149 (define-public perl-czplib
2150 (package
2151 (name "perl-czplib")
2152 (version "1.0.5")
2153 (source
2154 (origin
2155 (method url-fetch)
2156 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
2157 version ".tgz"))
2158 (sha256
2159 (base32
2160 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
2161 (modules '((guix build utils)))
2162 (snippet
2163 '(begin
2164 ;; Remove .git directory
2165 (delete-file-recursively ".git")
2166 #t))))
2167 (build-system perl-build-system)
2168 (arguments
2169 `(#:phases
2170 (modify-phases %standard-phases
2171 (delete 'configure)
2172 (delete 'build)
2173 (replace
2174 'install
2175 (lambda* (#:key outputs #:allow-other-keys)
2176 (copy-recursively "."
2177 (string-append (assoc-ref outputs "out")
2178 "/lib/perl5/site_perl/"
2179 ,(package-version perl)))
2180 #t)))))
2181 (home-page "https://sourceforge.net/projects/czplib/")
2182 (synopsis "Library for genomic analysis")
2183 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
2184 functions and data structures for processing and analysing genomic and
2185 bioinformatics data.")
2186 (license gpl3+)))
2187
2188 (define-public perl-data
2189 (package
2190 (name "perl-data")
2191 (version "0.002009")
2192 (source
2193 (origin
2194 (method url-fetch)
2195 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
2196 "Data-Perl-" version ".tar.gz"))
2197 (sha256
2198 (base32
2199 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2200 (build-system perl-build-system)
2201 (native-inputs
2202 `(("perl-test-deep" ,perl-test-deep)
2203 ("perl-test-output" ,perl-test-output)
2204 ("perl-test-fatal" ,perl-test-fatal)))
2205 (inputs
2206 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
2207 ("perl-list-moreutils" ,perl-list-moreutils)
2208 ("perl-module-runtime" ,perl-module-runtime)
2209 ("perl-role-tiny" ,perl-role-tiny)
2210 ("perl-strictures" ,perl-strictures)))
2211 (home-page "https://metacpan.org/release/Data-Perl")
2212 (synopsis "Base classes wrapping fundamental Perl data types")
2213 (description "Collection of classes that wrap fundamental data types that
2214 exist in Perl. These classes and methods as they exist today are an attempt
2215 to mirror functionality provided by Moose's Native Traits. One important
2216 thing to note is all classes currently do no validation on constructor
2217 input.")
2218 (license (package-license perl))))
2219
2220 (define-public perl-data-compare
2221 (package
2222 (name "perl-data-compare")
2223 (version "1.27")
2224 (source
2225 (origin
2226 (method url-fetch)
2227 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
2228 "Data-Compare-" version ".tar.gz"))
2229 (sha256
2230 (base32 "1gg8rqbv3x6a1lrpabv6vnlab53zxmpwz2ygad9fcx4gygqj12l1"))))
2231 (build-system perl-build-system)
2232 (propagated-inputs
2233 `(("perl-clone" ,perl-clone)
2234 ("perl-file-find-rule" ,perl-file-find-rule)))
2235 (home-page "https://metacpan.org/release/Data-Compare")
2236 (synopsis "Compare Perl data structures")
2237 (description "This module compares arbitrary data structures to see if
2238 they are copies of each other.")
2239 (license (package-license perl))))
2240
2241 (define-public perl-data-entropy
2242 (package
2243 (name "perl-data-entropy")
2244 (version "0.007")
2245 (source
2246 (origin
2247 (method url-fetch)
2248 (uri (string-append
2249 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Entropy-"
2250 version ".tar.gz"))
2251 (sha256
2252 (base32
2253 "1r176jjzir2zg5kidx85f7vzi6jsw7ci9vd4kvbr9183lfhw8496"))))
2254 (build-system perl-build-system)
2255 (native-inputs
2256 `(("perl-module-build" ,perl-module-build)
2257 ("perl-test-pod" ,perl-test-pod)
2258 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2259 (propagated-inputs
2260 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)
2261 ("perl-data-float" ,perl-data-float)
2262 ("perl-http-lite" ,perl-http-lite)
2263 ("perl-params-classify" ,perl-params-classify)))
2264 (home-page "https://metacpan.org/release/Data-Entropy")
2265 (synopsis "Entropy (randomness) management")
2266 (description "@code{Data::Entropy} provides modules relating to
2267 the generation and use of entropy. The Data::Entropy::Source class
2268 manages the entropy coming from a particular source. This class acts
2269 as a layer over a raw entropy source, which may be a normal I/O handle
2270 or a special-purpose class. The Data::Entropy::RawSource::* classes
2271 provide fundamental sources of entropy. The sources specially
2272 supported are an OS-supplied entropy collector, downloads from servers
2273 on the Internet, and cryptographic fake entropy. The
2274 Data::Entropy::Algorithms module contains a collection of fundamental
2275 algorithms that use entropy. There are random number generators and
2276 functions to shuffle arrays.")
2277 (license perl-license)))
2278
2279 (define-public perl-data-integer
2280 (package
2281 (name "perl-data-integer")
2282 (version "0.006")
2283 (source
2284 (origin
2285 (method url-fetch)
2286 (uri (string-append
2287 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Integer-"
2288 version ".tar.gz"))
2289 (sha256
2290 (base32
2291 "0m53zxhx9sn49yqh7azlpyy9m65g54v8cd2ha98y77337gg7xdv3"))))
2292 (build-system perl-build-system)
2293 (native-inputs
2294 `(("perl-module-build" ,perl-module-build)
2295 ("perl-test-pod" ,perl-test-pod)
2296 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2297 (home-page "https://metacpan.org/release/Data-Integer")
2298 (synopsis "Details of the native integer data type")
2299 (description "This module is about the native integer numerical
2300 data type. A native integer is one of the types of datum that can
2301 appear in the numeric part of a Perl scalar. This module supplies
2302 constants describing the native integer type. Both signed and
2303 unsigned representations are handled.")
2304 (license perl-license)))
2305
2306 (define-public perl-data-uniqid
2307 (package
2308 (name "perl-data-uniqid")
2309 (version "0.12")
2310 (source
2311 (origin
2312 (method url-fetch)
2313 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
2314 version ".tar.gz"))
2315 (sha256
2316 (base32
2317 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
2318 (build-system perl-build-system)
2319 (home-page "https://metacpan.org/release/Data-Uniqid")
2320 (synopsis "Perl extension for generating unique identifiers")
2321 (description "@code{Data::Uniqid} provides three simple routines for
2322 generating unique ids. These ids are coded with a Base62 system to make them
2323 short and handy (e.g. to use it as part of a URL).")
2324 (license (package-license perl))))
2325
2326 (define-public perl-data-dump
2327 (package
2328 (name "perl-data-dump")
2329 (version "1.23")
2330 (source
2331 (origin
2332 (method url-fetch)
2333 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2334 "Data-Dump-" version ".tar.gz"))
2335 (sha256
2336 (base32
2337 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
2338 (build-system perl-build-system)
2339 (home-page "https://metacpan.org/release/Data-Dump")
2340 (synopsis "Pretty printing of data structures")
2341 (description "This module provide functions that takes a list of values as
2342 their argument and produces a string as its result. The string contains Perl
2343 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
2344 (license (package-license perl))))
2345
2346 (define-public perl-data-dumper
2347 (package
2348 (name "perl-data-dumper")
2349 (version "2.173")
2350 (source
2351 (origin
2352 (method url-fetch)
2353 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
2354 "Data-Dumper-" version ".tar.gz"))
2355 (sha256
2356 (base32
2357 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
2358 (build-system perl-build-system)
2359 (home-page "https://metacpan.org/release/Data-Dumper")
2360 (synopsis "Convert data structures to strings")
2361 (description "Given a list of scalars or reference variables,
2362 @code{Data::Dumper} writes out their contents in Perl syntax. The references
2363 can also be objects. The content of each variable is output in a single Perl
2364 statement. It handles self-referential structures correctly.")
2365 (license perl-license)))
2366
2367 (define-public perl-data-dumper-concise
2368 (package
2369 (name "perl-data-dumper-concise")
2370 (version "2.023")
2371 (source
2372 (origin
2373 (method url-fetch)
2374 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2375 "Data-Dumper-Concise-" version ".tar.gz"))
2376 (sha256
2377 (base32
2378 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
2379 (build-system perl-build-system)
2380 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
2381 (synopsis "Concise data dumper")
2382 (description "Data::Dumper::Concise provides a dumper with Less
2383 indentation and newlines plus sub deparsing.")
2384 (license (package-license perl))))
2385
2386 (define-public perl-data-float
2387 (package
2388 (name "perl-data-float")
2389 (version "0.013")
2390 (source
2391 (origin
2392 (method url-fetch)
2393 (uri (string-append
2394 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Float-"
2395 version ".tar.gz"))
2396 (sha256
2397 (base32
2398 "12ji4yf3nc965rqqgfhr96w7irpm6n1g15nivfxvhc49hlym5cg2"))))
2399 (build-system perl-build-system)
2400 (native-inputs
2401 `(("perl-module-build" ,perl-module-build)
2402 ("perl-test-pod" ,perl-test-pod)
2403 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2404 (home-page "https://metacpan.org/release/Data-Float")
2405 (synopsis "Details of the floating point data type")
2406 (description "@code{Data::Float} is about the native floating
2407 point numerical data type. A floating point number is one of the
2408 types of datum that can appear in the numeric part of a Perl scalar.
2409 This module supplies constants describing the native floating point
2410 type, classification functions and functions to manipulate floating
2411 point values at a low level.")
2412 (license perl-license)))
2413
2414 (define-public perl-data-optlist
2415 (package
2416 (name "perl-data-optlist")
2417 (version "0.110")
2418 (source
2419 (origin
2420 (method url-fetch)
2421 (uri (string-append
2422 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
2423 version ".tar.gz"))
2424 (sha256
2425 (base32
2426 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
2427 (build-system perl-build-system)
2428 (propagated-inputs
2429 `(("perl-sub-install" ,perl-sub-install)
2430 ("perl-params-util" ,perl-params-util)))
2431 (home-page "https://metacpan.org/release/Data-OptList")
2432 (synopsis "Parse and validate simple name/value option pairs")
2433 (description
2434 "Data::OptList provides a simple syntax for name/value option pairs.")
2435 (license (package-license perl))))
2436
2437 (define-public perl-data-page
2438 (package
2439 (name "perl-data-page")
2440 (version "2.03")
2441 (source
2442 (origin
2443 (method url-fetch)
2444 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2445 "Data-Page-" version ".tar.gz"))
2446 (sha256
2447 (base32 "12rxrr2b11qjk0c437cisw2kfqkafw1awcng09cv6yhzglb55yif"))))
2448 (build-system perl-build-system)
2449 (native-inputs
2450 `(("perl-module-build" ,perl-module-build)
2451 ("perl-test-exception" ,perl-test-exception)))
2452 (propagated-inputs
2453 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
2454 (home-page "https://metacpan.org/release/Data-Page")
2455 (synopsis "Help when paging through sets of results")
2456 (description "When searching through large amounts of data, it is often
2457 the case that a result set is returned that is larger than we want to display
2458 on one page. This results in wanting to page through various pages of data.
2459 The maths behind this is unfortunately fiddly, hence this module.")
2460 (license (package-license perl))))
2461
2462 (define-public perl-data-perl
2463 (package
2464 (name "perl-data-perl")
2465 (version "0.002009")
2466 (source
2467 (origin
2468 (method url-fetch)
2469 (uri (string-append
2470 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
2471 version
2472 ".tar.gz"))
2473 (sha256
2474 (base32
2475 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2476 (build-system perl-build-system)
2477 (native-inputs
2478 `(("perl-test-deep" ,perl-test-deep)
2479 ("perl-test-fatal" ,perl-test-fatal)
2480 ("perl-test-output" ,perl-test-output)))
2481 (inputs
2482 `(("perl-class-method-modifiers"
2483 ,perl-class-method-modifiers)
2484 ("perl-module-runtime" ,perl-module-runtime)
2485 ("perl-role-tiny" ,perl-role-tiny)
2486 ("perl-strictures" ,perl-strictures)))
2487 (propagated-inputs
2488 `(("perl-list-moreutils" ,perl-list-moreutils)))
2489 (home-page
2490 "https://metacpan.org/release/Data-Perl")
2491 (synopsis "Base classes wrapping fundamental Perl data types")
2492 (description
2493 "@code{Data::Perl} is a container class for the following classes:
2494 @itemize
2495 @item @code{Data::Perl::Collection::Hash}
2496 @item @code{Data::Perl::Collection::Array}
2497 @item @code{Data::Perl::String}
2498 @item @code{Data::Perl::Number}
2499 @item @code{Data::Perl::Counter}
2500 @item @code{Data::Perl::Bool}
2501 @item @code{Data::Perl::Code}
2502 @end itemize")
2503 (license perl-license)))
2504
2505 (define-public perl-data-printer
2506 (package
2507 (name "perl-data-printer")
2508 (version "0.40")
2509 (source
2510 (origin
2511 (method url-fetch)
2512 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
2513 version ".tar.gz"))
2514 (sha256
2515 (base32
2516 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
2517 (build-system perl-build-system)
2518 (propagated-inputs
2519 `(("perl-clone-pp" ,perl-clone-pp)
2520 ("perl-file-homedir" ,perl-file-homedir)
2521 ("perl-package-stash" ,perl-package-stash)
2522 ("perl-sort-naturally" ,perl-sort-naturally)))
2523 (home-page "https://metacpan.org/release/Data-Printer")
2524 (synopsis "Colored pretty-print of Perl data structures and objects")
2525 (description "Display Perl variables and objects on screen, properly
2526 formatted (to be inspected by a human).")
2527 (license (package-license perl))))
2528
2529 (define-public perl-data-record
2530 (package
2531 (name "perl-data-record")
2532 (version "0.02")
2533 (source
2534 (origin
2535 (method url-fetch)
2536 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
2537 "Data-Record-" version ".tar.gz"))
2538 (sha256
2539 (base32
2540 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
2541 (build-system perl-build-system)
2542 (native-inputs
2543 `(("perl-test-exception" ,perl-test-exception)
2544 ("perl-module-build" ,perl-module-build)))
2545 (propagated-inputs
2546 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
2547 (home-page "https://metacpan.org/release/Data-Record")
2548 (synopsis "Conditionally split data into records")
2549 (description "This Perl module allows you to split data into records by
2550 not only specifying what you wish to split the data on, but also by specifying
2551 an \"unless\" regular expression. If the text in question matches the
2552 \"unless\" regex, it will not be split there. This allows us to do things
2553 like split on newlines unless newlines are embedded in quotes.")
2554 (license (package-license perl))))
2555
2556 (define-public perl-data-section
2557 (package
2558 (name "perl-data-section")
2559 (version "0.200007")
2560 (source
2561 (origin
2562 (method url-fetch)
2563 (uri (string-append
2564 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
2565 version
2566 ".tar.gz"))
2567 (sha256
2568 (base32
2569 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
2570 (build-system perl-build-system)
2571 (native-inputs
2572 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
2573 (propagated-inputs
2574 `(("perl-mro-compat" ,perl-mro-compat)
2575 ("perl-sub-exporter" ,perl-sub-exporter)))
2576 (home-page "https://metacpan.org/release/Data-Section")
2577 (synopsis "Read multiple hunks of data out of your DATA section")
2578 (description "This package provides a Perl library to read multiple hunks
2579 of data out of your DATA section.")
2580 (license (package-license perl))))
2581
2582 (define-public perl-data-stag
2583 (package
2584 (name "perl-data-stag")
2585 (version "0.14")
2586 (source
2587 (origin
2588 (method url-fetch)
2589 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
2590 "Data-Stag-" version ".tar.gz"))
2591 (sha256
2592 (base32
2593 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
2594 (build-system perl-build-system)
2595 (propagated-inputs
2596 `(("perl-io-string" ,perl-io-string)))
2597 (home-page "https://metacpan.org/release/Data-Stag")
2598 (synopsis "Structured tags datastructures")
2599 (description
2600 "This module is for manipulating data as hierarchical tag/value
2601 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2602 be represented as nested arrays, which have the advantage of being native to
2603 Perl.")
2604 (license (package-license perl))))
2605
2606 (define-public perl-data-stream-bulk
2607 (package
2608 (name "perl-data-stream-bulk")
2609 (version "0.11")
2610 (source
2611 (origin
2612 (method url-fetch)
2613 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2614 "Data-Stream-Bulk-" version ".tar.gz"))
2615 (sha256
2616 (base32
2617 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2618 (build-system perl-build-system)
2619 (native-inputs
2620 `(("perl-test-requires" ,perl-test-requires)))
2621 (propagated-inputs
2622 `(("perl-moose" ,perl-moose)
2623 ("perl-namespace-clean" ,perl-namespace-clean)
2624 ("perl-path-class" ,perl-path-class)
2625 ("perl-sub-exporter" ,perl-sub-exporter)))
2626 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2627 (synopsis "N at a time iteration API")
2628 (description "This module tries to find middle ground between one at a
2629 time and all at once processing of data sets. The purpose of this module is
2630 to avoid the overhead of implementing an iterative api when this isn't
2631 necessary, without breaking forward compatibility in case that becomes
2632 necessary later on.")
2633 (license (package-license perl))))
2634
2635 (define-public perl-data-tumbler
2636 (package
2637 (name "perl-data-tumbler")
2638 (version "0.010")
2639 (source
2640 (origin
2641 (method url-fetch)
2642 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2643 "Data-Tumbler-" version ".tar.gz"))
2644 (sha256
2645 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2646 (build-system perl-build-system)
2647 (native-inputs
2648 `(("perl-test-most" ,perl-test-most)))
2649 (propagated-inputs
2650 `(("perl-file-homedir" ,perl-file-homedir)))
2651 (home-page "https://metacpan.org/release/Data-Tumbler")
2652 (synopsis "Dynamic generation of nested combinations of variants")
2653 (description "Data::Tumbler - Dynamic generation of nested combinations of
2654 variants.")
2655 (license (package-license perl))))
2656
2657 (define-public perl-data-visitor
2658 (package
2659 (name "perl-data-visitor")
2660 (version "0.30")
2661 (source
2662 (origin
2663 (method url-fetch)
2664 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2665 "Data-Visitor-" version ".tar.gz"))
2666 (sha256
2667 (base32
2668 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2669 (build-system perl-build-system)
2670 (native-inputs
2671 `(("perl-test-requires" ,perl-test-requires)))
2672 (propagated-inputs
2673 `(("perl-class-load" ,perl-class-load)
2674 ("perl-moose" ,perl-moose)
2675 ("perl-namespace-clean" ,perl-namespace-clean)
2676 ("perl-task-weaken" ,perl-task-weaken)
2677 ("perl-tie-toobject" ,perl-tie-toobject)))
2678 (home-page "https://metacpan.org/release/Data-Visitor")
2679 (synopsis "Visitor style traversal of Perl data structures")
2680 (description "This module is a simple visitor implementation for Perl
2681 values. It has a main dispatcher method, visit, which takes a single perl
2682 value and then calls the methods appropriate for that value. It can
2683 recursively map (cloning as necessary) or just traverse most structures, with
2684 support for per-object behavior, circular structures, visiting tied
2685 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2686 (license (package-license perl))))
2687
2688 (define-public perl-date-calc
2689 (package
2690 (name "perl-date-calc")
2691 (version "6.4")
2692 (source
2693 (origin
2694 (method url-fetch)
2695 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2696 "Date-Calc-" version ".tar.gz"))
2697 (sha256
2698 (base32
2699 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2700 (build-system perl-build-system)
2701 (propagated-inputs
2702 `(("perl-bit-vector" ,perl-bit-vector)
2703 ("perl-carp-clan" ,perl-carp-clan)))
2704 (home-page "https://metacpan.org/release/Date-Calc")
2705 (synopsis "Gregorian calendar date calculations")
2706 (description "This package consists of a Perl module for date calculations
2707 based on the Gregorian calendar, thereby complying with all relevant norms and
2708 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2709 applicable).")
2710 (license (package-license perl))))
2711
2712 (define-public perl-date-calc-xs
2713 (package
2714 (name "perl-date-calc-xs")
2715 (version "6.4")
2716 (source
2717 (origin
2718 (method url-fetch)
2719 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2720 "Date-Calc-XS-" version ".tar.gz"))
2721 (sha256
2722 (base32
2723 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2724 (build-system perl-build-system)
2725 (propagated-inputs
2726 `(("perl-bit-vector" ,perl-bit-vector)
2727 ("perl-carp-clan" ,perl-carp-clan)
2728 ("perl-date-calc" ,perl-date-calc)))
2729 (home-page "https://metacpan.org/release/Date-Calc-XS")
2730 (synopsis "XS wrapper for Date::Calc")
2731 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2732 Date::Calc.")
2733 (license (list (package-license perl) lgpl2.0+))))
2734
2735 (define-public perl-date-manip
2736 (package
2737 (name "perl-date-manip")
2738 (version "6.78")
2739 (source
2740 (origin
2741 (method url-fetch)
2742 (uri (string-append "mirror://cpan/authors/id/S/SB/SBECK/"
2743 "Date-Manip-" version ".tar.gz"))
2744 (sha256
2745 (base32 "1faxj6gafrqir9hvy9r8q57s93n57b412s04qycrks7r0520hdnb"))))
2746 (build-system perl-build-system)
2747 (arguments
2748 ;; Tests would require tzdata for timezone information, but tzdata is in
2749 ;; (gnu packages base) which would create a circular dependency. TODO:
2750 ;; Maybe put this package elsewhere so we can turn on tests.
2751 '(#:tests? #f))
2752 (home-page "https://metacpan.org/release/Date-Manip")
2753 (synopsis "Date manipulation routines")
2754 (description "Date::Manip is a series of modules for common date/time
2755 operations, such as comparing two times, determining a date a given amount of
2756 time from another, or parsing international times.")
2757 (license (package-license perl))))
2758
2759 (define-public perl-date-simple
2760 (package
2761 (name "perl-date-simple")
2762 (version "3.03")
2763 (source
2764 (origin
2765 (method url-fetch)
2766 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2767 "Date-Simple-" version ".tar.gz"))
2768 (sha256
2769 (base32
2770 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2771 (build-system perl-build-system)
2772 (home-page "https://metacpan.org/release/Date-Simple")
2773 (synopsis "Simple date handling")
2774 (description "Dates are complex enough without times and timezones. This
2775 module may be used to create simple date objects. It handles validation,
2776 interval arithmetic, and day-of-week calculation. It does not deal with
2777 hours, minutes, seconds, and time zones.")
2778 ;; Can be used with either license.
2779 (license (list (package-license perl) gpl2+))))
2780
2781 (define-public perl-datetime
2782 (package
2783 (name "perl-datetime")
2784 (version "1.52")
2785 (source
2786 (origin
2787 (method url-fetch)
2788 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2789 "DateTime-" version ".tar.gz"))
2790 (sha256
2791 (base32 "1z1xpifh2kpyw7rlc8ivg9rl0qmabjq979gjp0s9agdjf9hqp0k7"))))
2792 (build-system perl-build-system)
2793 (native-inputs
2794 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2795 ("perl-module-build" ,perl-module-build)
2796 ("perl-test-fatal" ,perl-test-fatal)
2797 ("perl-test-warnings" ,perl-test-warnings)))
2798 (propagated-inputs
2799 `(("perl-datetime-locale" ,perl-datetime-locale)
2800 ("perl-datetime-timezone" ,perl-datetime-timezone)
2801 ("perl-file-sharedir" ,perl-file-sharedir)
2802 ("perl-params-validate" ,perl-params-validate)
2803 ("perl-try-tiny" ,perl-try-tiny)))
2804 (home-page "https://metacpan.org/release/DateTime")
2805 (synopsis "Date and time object for Perl")
2806 (description "DateTime is a class for the representation of date/time
2807 combinations. It represents the Gregorian calendar, extended backwards in
2808 time before its creation (in 1582).")
2809 (license artistic2.0)))
2810
2811 (define-public perl-datetime-calendar-julian
2812 (package
2813 (name "perl-datetime-calendar-julian")
2814 (version "0.102")
2815 (source
2816 (origin
2817 (method url-fetch)
2818 (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/"
2819 "DateTime-Calendar-Julian-" version ".tar.gz"))
2820 (sha256
2821 (base32 "0j95dhma66spjyb04zi6rwy7l33hibnrx02mn0znd9m89aiq52s6"))))
2822 (build-system perl-build-system)
2823 ;; Only needed for tests
2824 (native-inputs
2825 `(("perl-datetime" ,perl-datetime)))
2826 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2827 (synopsis "Dates in the Julian calendar")
2828 (description "This package is a companion module to @code{DateTime.pm}.
2829 It implements the Julian calendar. It supports everything that
2830 @code{DateTime.pm} supports and more: about one day per century more, to be
2831 precise.")
2832 (license (package-license perl))))
2833
2834 (define-public perl-datetime-set
2835 (package
2836 (name "perl-datetime-set")
2837 (version "0.3900")
2838 (source
2839 (origin
2840 (method url-fetch)
2841 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2842 "DateTime-Set-" version ".tar.gz"))
2843 (sha256
2844 (base32
2845 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2846 (build-system perl-build-system)
2847 (native-inputs
2848 `(("perl-module-build" ,perl-module-build)))
2849 (propagated-inputs
2850 `(("perl-datetime" ,perl-datetime)
2851 ("perl-params-validate" ,perl-params-validate)
2852 ("perl-set-infinite" ,perl-set-infinite)))
2853 (home-page "https://metacpan.org/release/DateTime-Set")
2854 (synopsis "DateTime set objects")
2855 (description "The DateTime::Set module provides a date/time sets
2856 implementation. It allows, for example, the generation of groups of dates,
2857 like \"every wednesday\", and then find all the dates matching that pattern,
2858 within a time range.")
2859 (license (package-license perl))))
2860
2861 (define-public perl-datetime-event-ical
2862 (package
2863 (name "perl-datetime-event-ical")
2864 (version "0.13")
2865 (source
2866 (origin
2867 (method url-fetch)
2868 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2869 "DateTime-Event-ICal-" version ".tar.gz"))
2870 (sha256
2871 (base32
2872 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2873 (build-system perl-build-system)
2874 (propagated-inputs
2875 `(("perl-datetime" ,perl-datetime)
2876 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2877 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2878 (synopsis "DateTime rfc2445 recurrences")
2879 (description "This module provides convenience methods that let you easily
2880 create DateTime::Set objects for RFC 2445 style recurrences.")
2881 (license (package-license perl))))
2882
2883 (define-public perl-datetime-event-recurrence
2884 (package
2885 (name "perl-datetime-event-recurrence")
2886 (version "0.19")
2887 (source
2888 (origin
2889 (method url-fetch)
2890 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2891 "DateTime-Event-Recurrence-" version ".tar.gz"))
2892 (sha256
2893 (base32
2894 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2895 (build-system perl-build-system)
2896 (propagated-inputs
2897 `(("perl-datetime" ,perl-datetime)
2898 ("perl-datetime-set" ,perl-datetime-set)))
2899 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2900 (synopsis "DateTime::Set extension for basic recurrences")
2901 (description "This module provides convenience methods that let you easily
2902 create DateTime::Set objects for various recurrences, such as \"once a month\"
2903 or \"every day\". You can also create more complicated recurrences, such as
2904 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2905 (license (package-license perl))))
2906
2907 (define-public perl-datetime-format-builder
2908 (package
2909 (name "perl-datetime-format-builder")
2910 (version "0.82")
2911 (source
2912 (origin
2913 (method url-fetch)
2914 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2915 "DateTime-Format-Builder-" version ".tar.gz"))
2916 (sha256
2917 (base32
2918 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
2919 (build-system perl-build-system)
2920 (propagated-inputs
2921 `(("perl-class-factory-util" ,perl-class-factory-util)
2922 ("perl-datetime" ,perl-datetime)
2923 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
2924 ("perl-params-validate" ,perl-params-validate)))
2925 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
2926 (synopsis "Create DateTime parser classes and objects")
2927 (description "DateTime::Format::Builder creates DateTime parsers. Many
2928 string formats of dates and times are simple and just require a basic regular
2929 expression to extract the relevant information. Builder provides a simple way
2930 to do this without writing reams of structural code.")
2931 (license artistic2.0)))
2932
2933 (define-public perl-datetime-format-flexible
2934 (package
2935 (name "perl-datetime-format-flexible")
2936 (version "0.32")
2937 (source
2938 (origin
2939 (method url-fetch)
2940 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
2941 "DateTime-Format-Flexible-" version ".tar.gz"))
2942 (sha256
2943 (base32 "1vnq3a8bwhidcv3z9cvcmfiq2qa84hikr993ffr19fw7nbzbk9sh"))))
2944 (build-system perl-build-system)
2945 (native-inputs
2946 `(("perl-test-exception" ,perl-test-exception)
2947 ("perl-test-nowarnings" ,perl-test-nowarnings)
2948 ("perl-test-mocktime" ,perl-test-mocktime)))
2949 (propagated-inputs
2950 `(("perl-datetime" ,perl-datetime)
2951 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
2952 ("perl-datetime-timezone" ,perl-datetime-timezone)
2953 ("perl-list-moreutils" ,perl-list-moreutils)
2954 ("perl-module-pluggable" ,perl-module-pluggable)))
2955 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
2956 (synopsis "Parse date and time strings")
2957 (description "DateTime::Format::Flexible attempts to take any string you
2958 give it and parse it into a DateTime object.")
2959 (license (package-license perl))))
2960
2961 (define-public perl-datetime-format-ical
2962 (package
2963 (name "perl-datetime-format-ical")
2964 (version "0.09")
2965 (source
2966 (origin
2967 (method url-fetch)
2968 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2969 "DateTime-Format-ICal-" version ".tar.gz"))
2970 (sha256
2971 (base32
2972 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
2973 (build-system perl-build-system)
2974 (native-inputs
2975 `(("perl-module-build" ,perl-module-build)))
2976 (propagated-inputs
2977 `(("perl-datetime" ,perl-datetime)
2978 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
2979 ("perl-datetime-set" ,perl-datetime-set)
2980 ("perl-datetime-timezone" ,perl-datetime-timezone)
2981 ("perl-params-validate" ,perl-params-validate)))
2982 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
2983 (synopsis "Parse and format iCal datetime and duration strings")
2984 (description "This module understands the ICal date/time and duration
2985 formats, as defined in RFC 2445. It can be used to parse these formats in
2986 order to create the appropriate objects.")
2987 (license (package-license perl))))
2988
2989 (define-public perl-datetime-format-natural
2990 (package
2991 (name "perl-datetime-format-natural")
2992 (version "1.06")
2993 (source
2994 (origin
2995 (method url-fetch)
2996 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
2997 "DateTime-Format-Natural-" version ".tar.gz"))
2998 (sha256
2999 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
3000 (build-system perl-build-system)
3001 (native-inputs
3002 `(("perl-module-build" ,perl-module-build)
3003 ("perl-module-util" ,perl-module-util)
3004 ("perl-test-mocktime" ,perl-test-mocktime)))
3005 (propagated-inputs
3006 `(("perl-boolean" ,perl-boolean)
3007 ("perl-clone" ,perl-clone)
3008 ("perl-date-calc" ,perl-date-calc)
3009 ("perl-date-calc-xs" ,perl-date-calc-xs)
3010 ("perl-datetime" ,perl-datetime)
3011 ("perl-datetime-timezone" ,perl-datetime-timezone)
3012 ("perl-list-moreutils" ,perl-list-moreutils)
3013 ("perl-params-validate" ,perl-params-validate)))
3014 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
3015 (synopsis "Machine-readable date/time with natural parsing")
3016 (description "DateTime::Format::Natural takes a string with a human
3017 readable date/time and creates a machine readable one by applying natural
3018 parsing logic.")
3019 (license (package-license perl))))
3020
3021 (define-public perl-datetime-format-strptime
3022 (package
3023 (name "perl-datetime-format-strptime")
3024 (version "1.77")
3025 (source
3026 (origin
3027 (method url-fetch)
3028 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3029 "DateTime-Format-Strptime-" version ".tar.gz"))
3030 (sha256
3031 (base32 "0jiy2yc9h9932ykb8x2l1j3ff8ms3p4426m947r5clygis1kr91g"))))
3032 (build-system perl-build-system)
3033 (propagated-inputs
3034 `(("perl-datetime" ,perl-datetime)
3035 ("perl-datetime-locale" ,perl-datetime-locale)
3036 ("perl-datetime-timezone" ,perl-datetime-timezone)
3037 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3038 ("perl-params-validate" ,perl-params-validate)
3039 ("perl-sub-name" ,perl-sub-name)
3040 ("perl-test-warnings" ,perl-test-warnings)))
3041 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
3042 (synopsis "Parse and format strp and strf time patterns")
3043 (description "This module implements most of `strptime(3)`, the POSIX
3044 function that is the reverse of `strftime(3)`, for `DateTime`. While
3045 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
3046 takes a string and a pattern and returns the `DateTime` object associated.")
3047 (license artistic2.0)))
3048
3049 (define-public perl-datetime-locale
3050 (package
3051 (name "perl-datetime-locale")
3052 (version "1.23")
3053 (source
3054 (origin
3055 (method url-fetch)
3056 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3057 "DateTime-Locale-" version ".tar.gz"))
3058 (sha256
3059 (base32
3060 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
3061 (build-system perl-build-system)
3062 (native-inputs
3063 `(("perl-file-sharedir" ,perl-file-sharedir)
3064 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
3065 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
3066 ("perl-test-warnings" ,perl-test-warnings)
3067 ("perl-test-requires" ,perl-test-requires)
3068 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3069 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
3070 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
3071 ("perl-module-build" ,perl-module-build)))
3072 (propagated-inputs
3073 `(("perl-list-moreutils" ,perl-list-moreutils)
3074 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
3075 (home-page "https://metacpan.org/release/DateTime-Locale")
3076 (synopsis "Localization support for DateTime.pm")
3077 (description "The DateTime::Locale modules provide localization data for
3078 the DateTime.pm class.")
3079 (license (package-license perl))))
3080
3081 (define-public perl-datetime-timezone
3082 (package
3083 (name "perl-datetime-timezone")
3084 (version "2.23")
3085 (source
3086 (origin
3087 (method url-fetch)
3088 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3089 "DateTime-TimeZone-" version ".tar.gz"))
3090 (sha256
3091 (base32
3092 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
3093 (build-system perl-build-system)
3094 (arguments
3095 '(#:phases
3096 (modify-phases %standard-phases
3097 (add-after 'unpack 'patch-tzdata
3098 (lambda* (#:key inputs #:allow-other-keys)
3099 (substitute* "lib/DateTime/TimeZone/Local/Unix.pm"
3100 (("our \\$ZoneinfoDir = '\\/usr\\/share\\/zoneinfo';")
3101 (string-append "our $ZoneinfoDir = '"
3102 (assoc-ref inputs "tzdata") "/share/zoneinfo"
3103 "';")))
3104 #t)))))
3105 (native-inputs
3106 `(("perl-test-fatal" ,perl-test-fatal)
3107 ("perl-test-requires" ,perl-test-requires)))
3108 (inputs
3109 `(("tzdata" ,tzdata)))
3110 (propagated-inputs
3111 `(("perl-class-singleton" ,perl-class-singleton)
3112 ("perl-list-allutils" ,perl-list-allutils)
3113 ("perl-module-runtime" ,perl-module-runtime)
3114 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3115 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
3116 ("perl-try-tiny" ,perl-try-tiny)))
3117 (home-page "https://metacpan.org/release/DateTime-TimeZone")
3118 (synopsis "Time zone object for Perl")
3119 (description "This class is the base class for all time zone objects. A
3120 time zone is represented internally as a set of observances, each of which
3121 describes the offset from GMT for a given time period. Note that without the
3122 DateTime module, this module does not do much. It's primary interface is
3123 through a DateTime object, and most users will not need to directly use
3124 DateTime::TimeZone methods.")
3125 (license (package-license perl))))
3126
3127 (define-public perl-datetimex-easy
3128 (package
3129 (name "perl-datetimex-easy")
3130 (version "0.089")
3131 (source
3132 (origin
3133 (method url-fetch)
3134 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
3135 "DateTimeX-Easy-" version ".tar.gz"))
3136 (sha256
3137 (base32
3138 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
3139 (build-system perl-build-system)
3140 (native-inputs
3141 `(("perl-test-most" ,perl-test-most)))
3142 (propagated-inputs
3143 `(("perl-datetime" ,perl-datetime)
3144 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
3145 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
3146 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
3147 ("perl-timedate" ,perl-timedate)))
3148 (home-page "https://metacpan.org/release/DateTimeX-Easy")
3149 (synopsis "Parse date/time strings")
3150 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
3151 to create DateTime objects, with some custom tweaks to smooth out the rough
3152 edges (mainly concerning timezone detection and selection).")
3153 (license (package-license perl))))
3154
3155 (define-public perl-datetime-format-mail
3156 (package
3157 (name "perl-datetime-format-mail")
3158 (version "0.403")
3159 (source (origin
3160 (method url-fetch)
3161 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
3162 "DateTime-Format-Mail-" version ".tar.gz"))
3163 (sha256
3164 (base32
3165 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
3166 (build-system perl-build-system)
3167 (inputs
3168 `(("perl-datetime" ,perl-datetime)
3169 ("perl-params-validate" ,perl-params-validate)))
3170 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
3171 (synopsis "Convert between DateTime and RFC2822/822 formats")
3172 (description "RFCs 2822 and 822 specify date formats to be used by email.
3173 This module parses and emits such dates.")
3174 (license (package-license perl))))
3175
3176 (define-public perl-datetime-format-w3cdtf
3177 (package
3178 (name "perl-datetime-format-w3cdtf")
3179 (version "0.07")
3180 (source (origin
3181 (method url-fetch)
3182 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
3183 "DateTime-Format-W3CDTF-" version ".tar.gz"))
3184 (sha256
3185 (base32
3186 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
3187 (build-system perl-build-system)
3188 (inputs
3189 `(("perl-datetime" ,perl-datetime)))
3190 (native-inputs
3191 `(("perl-test-pod" ,perl-test-pod)
3192 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3193 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
3194 (synopsis "Parse and format W3CDTF datetime strings")
3195 (description
3196 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
3197 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
3198 format of RSS 1.0. It can be used to parse these formats in order to create
3199 the appropriate objects.")
3200 (license (package-license perl))))
3201
3202 (define-public perl-devel-callchecker
3203 (package
3204 (name "perl-devel-callchecker")
3205 (version "0.008")
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (string-append
3210 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Devel-CallChecker-"
3211 version ".tar.gz"))
3212 (sha256
3213 (base32
3214 "1p0ij2k2i81zhl7064h9ghld1w5xy2zsbghkpdzm2hjryl5lwn2x"))))
3215 (build-system perl-build-system)
3216 (native-inputs
3217 `(("perl-module-build" ,perl-module-build)
3218 ("perl-test-pod" ,perl-test-pod)
3219 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3220 (propagated-inputs
3221 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
3222 ("perl-dynaloader-functions" ,perl-dynaloader-functions)))
3223 (home-page "https://metacpan.org/release/Devel-CallChecker")
3224 (synopsis "Custom op checking attached to subroutines")
3225 (description "This module makes some new features of the Perl
3226 5.14.0 C API available to XS modules running on older versions of
3227 Perl. The features are centred around the function
3228 @code{cv_set_call_checker}, which allows XS code to attach a magical
3229 annotation to a Perl subroutine, resulting in resolvable calls to that
3230 subroutine being mutated at compile time by arbitrary C code. This
3231 module makes @code{cv_set_call_checker} and several supporting
3232 functions available.")
3233 (license perl-license)))
3234
3235 (define-public perl-devel-caller
3236 (package
3237 (name "perl-devel-caller")
3238 (version "2.06")
3239 (source
3240 (origin
3241 (method url-fetch)
3242 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3243 "Devel-Caller-" version ".tar.gz"))
3244 (sha256
3245 (base32
3246 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
3247 (build-system perl-build-system)
3248 (propagated-inputs
3249 `(("perl-padwalker" ,perl-padwalker)))
3250 (home-page "https://metacpan.org/release/Devel-Caller")
3251 (synopsis "Meatier version of caller")
3252 (description "Devel::Caller provides meatier version of caller.")
3253 (license (package-license perl))))
3254
3255 (define-public perl-devel-checkbin
3256 (package
3257 (name "perl-devel-checkbin")
3258 (version "0.04")
3259 (source
3260 (origin
3261 (method url-fetch)
3262 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
3263 "Devel-CheckBin-" version ".tar.gz"))
3264 (sha256
3265 (base32
3266 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
3267 (build-system perl-build-system)
3268 (native-inputs `(("perl-module-build" ,perl-module-build)))
3269 (home-page "https://metacpan.org/release/Devel-CheckBin")
3270 (synopsis "Check that a command is available")
3271 (description "Devel::CheckBin is a perl module that checks whether a
3272 particular command is available.")
3273 (license (package-license perl))))
3274
3275 (define-public perl-devel-checklib
3276 (package
3277 (name "perl-devel-checklib")
3278 (version "1.14")
3279 (source
3280 (origin
3281 (method url-fetch)
3282 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
3283 version ".tar.gz"))
3284 (sha256
3285 (base32 "15621qh5gaan1sgmk9y9svl70nm8viw17x5h1kf0zknkk8lmw77j"))))
3286 (build-system perl-build-system)
3287 (native-inputs
3288 `(("perl-capture-tiny" ,perl-capture-tiny)
3289 ("perl-mock-config" ,perl-mock-config)))
3290 (home-page "https://metacpan.org/release/Devel-CheckLib")
3291 (synopsis "Check that a library is available")
3292 (description
3293 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
3294 C library and its headers are available. You can also check for the presence of
3295 particular functions in a library, or even that those functions return
3296 particular results.")
3297 (license perl-license)))
3298
3299 (define-public perl-devel-checkcompiler
3300 (package
3301 (name "perl-devel-checkcompiler")
3302 (version "0.07")
3303 (source (origin
3304 (method url-fetch)
3305 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
3306 "Devel-CheckCompiler-" version ".tar.gz"))
3307 (sha256
3308 (base32
3309 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
3310 (build-system perl-build-system)
3311 (native-inputs
3312 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
3313 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
3314 (synopsis "Check compiler availability")
3315 (description "@code{Devel::CheckCompiler} is a tiny module to check
3316 whether a compiler is available. It can test for a C99 compiler, or
3317 you can tell it to compile a C source file with optional linker flags.")
3318 (license (package-license perl))))
3319
3320 (define-public perl-devel-cycle
3321 (package
3322 (name "perl-devel-cycle")
3323 (version "1.12")
3324 (source
3325 (origin
3326 (method url-fetch)
3327 (uri (string-append
3328 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
3329 version
3330 ".tar.gz"))
3331 (sha256
3332 (base32
3333 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
3334 (build-system perl-build-system)
3335 (home-page
3336 "https://metacpan.org/release/Devel-Cycle")
3337 (synopsis "Find memory cycles in objects")
3338 (description
3339 "@code{Devel::Cycle} This is a tool for finding circular references in
3340 objects and other types of references. Because of Perl's reference-count
3341 based memory management, circular references will cause memory leaks.")
3342 (license perl-license)))
3343
3344 (define-public perl-devel-globaldestruction
3345 (package
3346 (name "perl-devel-globaldestruction")
3347 (version "0.14")
3348 (source
3349 (origin
3350 (method url-fetch)
3351 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3352 "Devel-GlobalDestruction-" version ".tar.gz"))
3353 (sha256
3354 (base32
3355 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
3356 (build-system perl-build-system)
3357 (propagated-inputs
3358 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
3359 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
3360 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
3361 (description "Devel::GlobalDestruction provides a function returning the
3362 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
3363 (license (package-license perl))))
3364
3365 (define-public perl-devel-hide
3366 (package
3367 (name "perl-devel-hide")
3368 (version "0.0010")
3369 (source
3370 (origin
3371 (method url-fetch)
3372 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
3373 version ".tar.gz"))
3374 (sha256
3375 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
3376 (build-system perl-build-system)
3377 (propagated-inputs
3378 `(("perl-test-pod" ,perl-test-pod)
3379 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3380 (home-page "https://metacpan.org/release/Devel-Hide")
3381 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
3382 (description "Given a list of Perl modules/filenames, this module makes
3383 @code{require} and @code{use} statements fail (no matter whether the specified
3384 files/modules are installed or not).")
3385 (license (package-license perl))))
3386
3387 (define-public perl-devel-leak
3388 (package
3389 (name "perl-devel-leak")
3390 (version "0.03")
3391 (source
3392 (origin
3393 (method url-fetch)
3394 (uri (string-append "mirror://cpan/authors/id/N/NI/NI-S/"
3395 "Devel-Leak-" version ".tar.gz"))
3396 (sha256
3397 (base32
3398 "0lkj2xwc3lhxv7scl43r8kfmls4am0b98sqf5vmf7d72257w6hkg"))))
3399 (build-system perl-build-system)
3400 (home-page "https://metacpan.org/release/Devel-Leak")
3401 (synopsis "Utility for looking for perl objects that are not reclaimed")
3402 (description
3403 "This module provides a basic way to discover if a piece of perl code is
3404 allocating perl data and not releasing them again.")
3405 (license perl-license)))
3406
3407 (define-public perl-devel-lexalias
3408 (package
3409 (name "perl-devel-lexalias")
3410 (version "0.05")
3411 (source
3412 (origin
3413 (method url-fetch)
3414 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3415 "Devel-LexAlias-" version ".tar.gz"))
3416 (sha256
3417 (base32
3418 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
3419 (build-system perl-build-system)
3420 (propagated-inputs
3421 `(("perl-devel-caller" ,perl-devel-caller)))
3422 (home-page "https://metacpan.org/release/Devel-LexAlias")
3423 (synopsis "Alias lexical variables")
3424 (description "Devel::LexAlias provides the ability to alias a lexical
3425 variable in a subroutines scope to one of your choosing.")
3426 (license (package-license perl))))
3427
3428 (define-public perl-devel-overloadinfo
3429 (package
3430 (name "perl-devel-overloadinfo")
3431 (version "0.005")
3432 (source
3433 (origin
3434 (method url-fetch)
3435 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
3436 "Devel-OverloadInfo-" version ".tar.gz"))
3437 (sha256
3438 (base32
3439 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
3440 (build-system perl-build-system)
3441 (native-inputs
3442 `(("perl-test-fatal" ,perl-test-fatal)))
3443 (propagated-inputs
3444 `(("perl-package-stash" ,perl-package-stash)
3445 ("perl-sub-identify" ,perl-sub-identify)
3446 ("perl-mro-compat" ,perl-mro-compat)))
3447 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
3448 (synopsis "Introspect overloaded operators")
3449 (description "Devel::OverloadInfo returns information about overloaded
3450 operators for a given class (or object), including where in the inheritance
3451 hierarchy the overloads are declared and where the code implementing it is.")
3452 (license (package-license perl))))
3453
3454 (define-public perl-devel-partialdump
3455 (package
3456 (name "perl-devel-partialdump")
3457 (version "0.18")
3458 (source
3459 (origin
3460 (method url-fetch)
3461 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3462 "Devel-PartialDump-" version ".tar.gz"))
3463 (sha256
3464 (base32
3465 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
3466 (build-system perl-build-system)
3467 (native-inputs
3468 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3469 ("perl-test-warn" ,perl-test-warn)
3470 ("perl-test-simple" ,perl-test-simple)))
3471 (propagated-inputs
3472 `(("perl-class-tiny" ,perl-class-tiny)
3473 ("perl-sub-exporter" ,perl-sub-exporter)
3474 ("perl-namespace-clean" ,perl-namespace-clean)))
3475 (home-page "https://metacpan.org/release/Devel-PartialDump")
3476 (synopsis "Partial dumping of data structures")
3477 (description "This module is a data dumper optimized for logging of
3478 arbitrary parameters.")
3479 (license (package-license perl))))
3480
3481 (define-public perl-devel-stacktrace
3482 (package
3483 (name "perl-devel-stacktrace")
3484 (version "2.04")
3485 (source
3486 (origin
3487 (method url-fetch)
3488 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3489 "Devel-StackTrace-" version ".tar.gz"))
3490 (sha256
3491 (base32 "0mb8bngjq7s3kbh95h3ig4p3jfb156c4r0d53z344gbxaknh6g6d"))))
3492 (build-system perl-build-system)
3493 (home-page "https://metacpan.org/release/Devel-StackTrace")
3494 (synopsis "Object representing a stack trace")
3495 (description "The Devel::StackTrace module contains two classes,
3496 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
3497 information that can be retrieved via Perl's caller() function, as well as
3498 providing a simple interface to this data.")
3499 (license artistic2.0)))
3500
3501 (define-public perl-devel-stacktrace-ashtml
3502 (package
3503 (name "perl-devel-stacktrace-ashtml")
3504 (version "0.15")
3505 (source
3506 (origin
3507 (method url-fetch)
3508 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3509 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
3510 (sha256
3511 (base32
3512 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
3513 (build-system perl-build-system)
3514 (propagated-inputs
3515 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
3516 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
3517 (synopsis "Displays stack trace in HTML")
3518 (description "Devel::StackTrace::AsHTML adds as_html method to
3519 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
3520 snippet context and function parameters. If you call it on an instance of
3521 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
3522 each stack frame.")
3523 (license (package-license perl))))
3524
3525 (define-public perl-devel-symdump
3526 (package
3527 (name "perl-devel-symdump")
3528 (version "2.18")
3529 (source
3530 (origin
3531 (method url-fetch)
3532 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
3533 "Devel-Symdump-" version ".tar.gz"))
3534 (sha256
3535 (base32
3536 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
3537 (build-system perl-build-system)
3538 (home-page "https://metacpan.org/release/Devel-Symdump")
3539 (synopsis "Dump symbol names or the symbol table")
3540 (description "Devel::Symdump provides access to the perl symbol table.")
3541 (license (package-license perl))))
3542
3543 (define-public perl-digest-crc
3544 (package
3545 (name "perl-digest-crc")
3546 (version "0.22")
3547 (source
3548 (origin
3549 (method url-fetch)
3550 (uri (string-append
3551 "mirror://cpan/authors/id/O/OL/OLIMAUL/Digest-CRC-"
3552 version ".2.tar.gz"))
3553 (sha256
3554 (base32
3555 "1jvqcyrbi11cj3vlfc9sq2g6rv9caizyjkjqsksvmxn6zgvm0aqi"))))
3556 (build-system perl-build-system)
3557 (home-page "https://metacpan.org/release/Digest-CRC")
3558 (synopsis "Generic CRC functions")
3559 (description "The @code{Digest::CRC} module calculates CRC sums of
3560 all sorts. It contains wrapper functions with the correct parameters
3561 for CRC-CCITT, CRC-16 and CRC-32.")
3562 (license public-domain)))
3563
3564 (define-public perl-digest-hmac
3565 (package
3566 (name "perl-digest-hmac")
3567 (version "1.03")
3568 (source
3569 (origin
3570 (method url-fetch)
3571 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3572 "Digest-HMAC-" version ".tar.gz"))
3573 (sha256
3574 (base32
3575 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
3576 (build-system perl-build-system)
3577 (home-page "https://metacpan.org/release/Digest-HMAC")
3578 (synopsis "Keyed-Hashing for Message Authentication")
3579 (description "The Digest::HMAC module follows the common Digest::
3580 interface for the RFC 2104 HMAC mechanism.")
3581 (license (package-license perl))))
3582
3583 (define-public perl-digest-md4
3584 (package
3585 (name "perl-digest-md4")
3586 (version "1.9")
3587 (source
3588 (origin
3589 (method url-fetch)
3590 (uri (string-append
3591 "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-"
3592 version ".tar.gz"))
3593 (sha256
3594 (base32
3595 "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"))))
3596 (build-system perl-build-system)
3597 (home-page "https://metacpan.org/release/Digest-MD4")
3598 (synopsis "Interface to the MD4 Algorithm")
3599 (description "The @code{Digest::MD4} module allows you to use the
3600 RSA Data Security Inc.@: MD4 Message Digest algorithm from within Perl
3601 programs. The algorithm takes as input a message of arbitrary length
3602 and produces as output a 128-bit \"fingerprint\" or \"message digest\"
3603 of the input. MD4 is described in RFC 1320.")
3604 (license perl-license)))
3605
3606 (define-public perl-digest-md5
3607 (package
3608 (name "perl-digest-md5")
3609 (version "2.55")
3610 (source
3611 (origin
3612 (method url-fetch)
3613 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
3614 version ".tar.gz"))
3615 (sha256
3616 (base32
3617 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
3618 (build-system perl-build-system)
3619 (arguments
3620 `(#:phases
3621 (modify-phases %standard-phases
3622 (add-after 'build 'set-permissions
3623 (lambda _
3624 ;; Make MD5.so read-write so it can be stripped.
3625 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
3626 #t)))))
3627 (home-page "https://metacpan.org/release/Digest-MD5")
3628 (synopsis "Perl interface to the MD-5 algorithm")
3629 (description
3630 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
3631 algorithm from within Perl programs. The algorithm takes as
3632 input a message of arbitrary length and produces as output a
3633 128-bit \"fingerprint\" or \"message digest\" of the input.")
3634 (license (package-license perl))))
3635
3636 (define-public perl-digest-sha1
3637 (package
3638 (name "perl-digest-sha1")
3639 (version "2.13")
3640 (source (origin
3641 (method url-fetch)
3642 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3643 "Digest-SHA1-" version ".tar.gz"))
3644 (sha256
3645 (base32
3646 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
3647 (build-system perl-build-system)
3648 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
3649 (description
3650 "This package provides @code{Digest::SHA1}, an implementation of the NIST
3651 SHA-1 message digest algorithm for use by Perl programs.")
3652 (home-page "https://metacpan.org/release/Digest-SHA1")
3653 (license (package-license perl))))
3654
3655 (define-public perl-dist-checkconflicts
3656 (package
3657 (name "perl-dist-checkconflicts")
3658 (version "0.11")
3659 (source (origin
3660 (method url-fetch)
3661 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3662 "Dist-CheckConflicts-" version ".tar.gz"))
3663 (sha256
3664 (base32
3665 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
3666 (build-system perl-build-system)
3667 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
3668 (propagated-inputs
3669 `(("perl-module-runtime" ,perl-module-runtime)))
3670 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
3671 (synopsis "Declare version conflicts for your dist")
3672 (description "This module allows you to specify conflicting versions of
3673 modules separately and deal with them after the module is done installing.")
3674 (license (package-license perl))))
3675
3676 (define-public perl-dynaloader-functions
3677 (package
3678 (name "perl-dynaloader-functions")
3679 (version "0.003")
3680 (source
3681 (origin
3682 (method url-fetch)
3683 (uri (string-append
3684 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/DynaLoader-Functions-"
3685 version ".tar.gz"))
3686 (sha256
3687 (base32
3688 "10x13q920j9kid7vmbj6fiaz153042dy4mwdmpzrdrxw2ir39ciy"))))
3689 (build-system perl-build-system)
3690 (native-inputs
3691 `(("perl-module-build" ,perl-module-build)
3692 ("perl-test-pod" ,perl-test-pod)
3693 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3694 (home-page "https://metacpan.org/release/DynaLoader-Functions")
3695 (synopsis "Deconstructed dynamic C library loading")
3696 (description "This module provides a function-based interface to
3697 dynamic loading as used by Perl. Some details of dynamic loading are
3698 very platform-dependent, so correct use of these functions requires
3699 the programmer to be mindfulof the space of platform variations.")
3700 (license perl-license)))
3701
3702 (define-public perl-encode-detect
3703 (package
3704 (name "perl-encode-detect")
3705 (version "1.01")
3706 (source
3707 (origin
3708 (method url-fetch)
3709 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
3710 "Encode-Detect-" version ".tar.gz"))
3711 (sha256
3712 (base32
3713 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
3714 (build-system perl-build-system)
3715 (native-inputs
3716 `(("perl-module-build" ,perl-module-build)))
3717 (home-page "https://metacpan.org/release/Encode-Detect")
3718 (synopsis "Detect the encoding of data")
3719 (description "This package provides a class @code{Encode::Detect} to detect
3720 the encoding of data.")
3721 (license mpl1.1)))
3722
3723 (define-public perl-encode-eucjpascii
3724 (package
3725 (name "perl-encode-eucjpascii")
3726 (version "0.03")
3727 (source
3728 (origin
3729 (method url-fetch)
3730 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3731 "Encode-EUCJPASCII-" version ".tar.gz"))
3732 (sha256
3733 (base32
3734 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3735 (build-system perl-build-system)
3736 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3737 (synopsis "ASCII mapping for eucJP encoding")
3738 (description "This package provides an ASCII mapping for the eucJP
3739 encoding.")
3740 (license (package-license perl))))
3741
3742 (define-public perl-encode-jis2k
3743 (package
3744 (name "perl-encode-jis2k")
3745 (version "0.03")
3746 (source
3747 (origin
3748 (method url-fetch)
3749 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3750 "Encode-JIS2K-" version ".tar.gz"))
3751 (sha256
3752 (base32
3753 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3754 (build-system perl-build-system)
3755 (home-page "https://metacpan.org/release/Encode-JIS2K")
3756 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3757 (description "This package provides encodings for JIS X 0212, which is
3758 also known as JIS 2000.")
3759 (license (package-license perl))))
3760
3761 (define-public perl-encode-hanextra
3762 (package
3763 (name "perl-encode-hanextra")
3764 (version "0.23")
3765 (source
3766 (origin
3767 (method url-fetch)
3768 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3769 "Encode-HanExtra-" version ".tar.gz"))
3770 (sha256
3771 (base32
3772 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3773 (build-system perl-build-system)
3774 (arguments
3775 '(#:phases
3776 (modify-phases %standard-phases
3777 (add-after 'unpack 'set-env
3778 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3779 (home-page "https://metacpan.org/release/Encode-HanExtra")
3780 (synopsis "Additional Chinese encodings")
3781 (description "This Perl module provides Chinese encodings that are not
3782 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3783 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3784 \"UNISYS\".")
3785 (license expat)))
3786
3787 (define-public perl-env-path
3788 (package
3789 (name "perl-env-path")
3790 (version "0.19")
3791 (source
3792 (origin
3793 (method url-fetch)
3794 (uri (string-append
3795 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3796 version
3797 ".tar.gz"))
3798 (sha256
3799 (base32
3800 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3801 (build-system perl-build-system)
3802 (home-page "https://metacpan.org/release/Env-Path")
3803 (synopsis "Advanced operations on path variables")
3804 (description "@code{Env::Path} presents an object-oriented interface to
3805 path variables, defined as that subclass of environment variables which name
3806 an ordered list of file system elements separated by a platform-standard
3807 separator.")
3808 (license (package-license perl))))
3809
3810 (define-public perl-error
3811 (package
3812 (name "perl-error")
3813 (version "0.17028")
3814 (source (origin
3815 (method url-fetch)
3816 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3817 "Error-" version ".tar.gz"))
3818 (sha256
3819 (base32
3820 "0q796nwwiarfc6pga97380c9z8xva5545632001qj75kb1g5rn1s"))))
3821 (build-system perl-build-system)
3822 (native-inputs `(("perl-module-build" ,perl-module-build)))
3823 (home-page "https://metacpan.org/release/Error")
3824 (synopsis "OO-ish Error/Exception handling for Perl")
3825 (description "The Error package provides two interfaces. Firstly Error
3826 provides a procedural interface to exception handling. Secondly Error is a
3827 base class for errors/exceptions that can either be thrown, for subsequent
3828 catch, or can simply be recorded.")
3829 (license (package-license perl))))
3830
3831 (define-public perl-eval-closure
3832 (package
3833 (name "perl-eval-closure")
3834 (version "0.14")
3835 (source
3836 (origin
3837 (method url-fetch)
3838 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3839 "Eval-Closure-" version ".tar.gz"))
3840 (sha256
3841 (base32
3842 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3843 (build-system perl-build-system)
3844 (native-inputs
3845 `(("perl-test-fatal" ,perl-test-fatal)
3846 ("perl-test-requires" ,perl-test-requires)))
3847 (propagated-inputs
3848 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3849 (home-page "https://metacpan.org/release/Eval-Closure")
3850 (synopsis "Safely and cleanly create closures via string eval")
3851 (description "String eval is often used for dynamic code generation. For
3852 instance, Moose uses it heavily, to generate inlined versions of accessors and
3853 constructors, which speeds code up at runtime by a significant amount. String
3854 eval is not without its issues however - it's difficult to control the scope
3855 it's used in (which determines which variables are in scope inside the eval),
3856 and it's easy to miss compilation errors, since eval catches them and sticks
3857 them in $@@ instead. This module attempts to solve these problems. It
3858 provides an eval_closure function, which evals a string in a clean
3859 environment, other than a fixed list of specified variables. Compilation
3860 errors are rethrown automatically.")
3861 (license (package-license perl))))
3862
3863 (define-public perl-exception-class
3864 (package
3865 (name "perl-exception-class")
3866 (version "1.44")
3867 (source
3868 (origin
3869 (method url-fetch)
3870 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3871 "Exception-Class-" version ".tar.gz"))
3872 (sha256
3873 (base32
3874 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3875 (build-system perl-build-system)
3876 (propagated-inputs
3877 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3878 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
3879 (home-page "https://metacpan.org/release/Exception-Class")
3880 (synopsis "Allows you to declare real exception classes in Perl")
3881 (description "Exception::Class allows you to declare exception hierarchies
3882 in your modules in a \"Java-esque\" manner.")
3883 (license (package-license perl))))
3884
3885 (define-public perl-exporter-lite
3886 (package
3887 (name "perl-exporter-lite")
3888 (version "0.08")
3889 (source (origin
3890 (method url-fetch)
3891 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
3892 "Exporter-Lite-" version ".tar.gz"))
3893 (sha256
3894 (base32
3895 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
3896 (build-system perl-build-system)
3897 (synopsis "Lightweight exporting of functions and variables")
3898 (description
3899 "Exporter::Lite is an alternative to Exporter, intended to provide a
3900 lightweight subset of the most commonly-used functionality. It supports
3901 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
3902 (home-page "https://metacpan.org/release/Exporter-Lite")
3903 (license (package-license perl))))
3904
3905 (define-public perl-exporter-tiny
3906 (package
3907 (name "perl-exporter-tiny")
3908 (version "1.002001")
3909 (source
3910 (origin
3911 (method url-fetch)
3912 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
3913 "Exporter-Tiny-" version ".tar.gz"))
3914 (sha256
3915 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
3916 (build-system perl-build-system)
3917 (home-page "https://metacpan.org/release/Exporter-Tiny")
3918 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
3919 (description "Exporter::Tiny supports many of Sub::Exporter's
3920 external-facing features including renaming imported functions with the `-as`,
3921 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
3922 and alternative installers with the `installler` option. But it's written in
3923 only about 40% as many lines of code and with zero non-core dependencies.")
3924 (license (package-license perl))))
3925
3926 (define-public perl-extutils-installpaths
3927 (package
3928 (name "perl-extutils-installpaths")
3929 (version "0.012")
3930 (source
3931 (origin
3932 (method url-fetch)
3933 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3934 "ExtUtils-InstallPaths-" version ".tar.gz"))
3935 (sha256
3936 (base32
3937 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
3938 (build-system perl-build-system)
3939 (propagated-inputs
3940 `(("perl-extutils-config" ,perl-extutils-config)))
3941 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
3942 (synopsis "Build.PL install path logic made easy")
3943 (description "This module tries to make install path resolution as easy as
3944 possible.")
3945 (license (package-license perl))))
3946
3947 (define-public perl-extutils-config
3948 (package
3949 (name "perl-extutils-config")
3950 (version "0.008")
3951 (source
3952 (origin
3953 (method url-fetch)
3954 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3955 "ExtUtils-Config-" version ".tar.gz"))
3956 (sha256
3957 (base32
3958 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
3959 (build-system perl-build-system)
3960 (home-page "https://metacpan.org/release/ExtUtils-Config")
3961 (synopsis "Wrapper for perl's configuration")
3962 (description "ExtUtils::Config is an abstraction around the %Config hash.
3963 By itself it is not a particularly interesting module by any measure, however
3964 it ties together a family of modern toolchain modules.")
3965 (license (package-license perl))))
3966
3967 (define-public perl-extutils-cppguess
3968 (package
3969 (name "perl-extutils-cppguess")
3970 (version "0.20")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (string-append
3975 "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
3976 version
3977 ".tar.gz"))
3978 (sha256
3979 (base32
3980 "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
3981 (build-system perl-build-system)
3982 (native-inputs
3983 `(("perl-capture-tiny" ,perl-capture-tiny)
3984 ("perl-module-build" ,perl-module-build)))
3985 (propagated-inputs
3986 `(("perl-capture-tiny" ,perl-capture-tiny)))
3987 (home-page
3988 "https://metacpan.org/release/ExtUtils-CppGuess")
3989 (synopsis "Tool for guessing C++ compiler and flags")
3990 (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
3991 is compatible with the C compiler used to build perl.")
3992 (license (package-license perl))))
3993
3994 (define-public perl-extutils-depends
3995 (package
3996 (name "perl-extutils-depends")
3997 (version "0.405")
3998 (source (origin
3999 (method url-fetch)
4000 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4001 "ExtUtils-Depends-" version ".tar.gz"))
4002 (sha256
4003 (base32
4004 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
4005 (build-system perl-build-system)
4006 (native-inputs
4007 `(("perl-test-number-delta" ,perl-test-number-delta)))
4008 (home-page "https://metacpan.org/release/ExtUtils-Depends")
4009 (synopsis "Easily build XS extensions that depend on XS extensions")
4010 (description
4011 "This module tries to make it easy to build Perl extensions that use
4012 functions and typemaps provided by other perl extensions. This means that a
4013 perl extension is treated like a shared library that provides also a C and an
4014 XS interface besides the perl one.")
4015 (license (package-license perl))))
4016
4017 (define-public perl-extutils-helpers
4018 (package
4019 (name "perl-extutils-helpers")
4020 (version "0.026")
4021 (source
4022 (origin
4023 (method url-fetch)
4024 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4025 "ExtUtils-Helpers-" version ".tar.gz"))
4026 (sha256
4027 (base32
4028 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
4029 (build-system perl-build-system)
4030 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
4031 (synopsis "Various portability utilities for module builders")
4032 (description "This module provides various portable helper functions for
4033 module building modules.")
4034 (license (package-license perl))))
4035
4036 (define-public perl-extutils-libbuilder
4037 (package
4038 (name "perl-extutils-libbuilder")
4039 (version "0.08")
4040 (source
4041 (origin
4042 (method url-fetch)
4043 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
4044 "ExtUtils-LibBuilder-" version ".tar.gz"))
4045 (sha256
4046 (base32
4047 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
4048 (build-system perl-build-system)
4049 (native-inputs
4050 `(("perl-module-build" ,perl-module-build)))
4051 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
4052 (synopsis "Tool to build C libraries")
4053 (description "Some Perl modules need to ship C libraries together with
4054 their Perl code. Although there are mechanisms to compile and link (or glue)
4055 C code in your Perl programs, there isn't a clear method to compile standard,
4056 self-contained C libraries. This module main goal is to help in that task.")
4057 (license (package-license perl))))
4058
4059 (define-public perl-extutils-parsexs
4060 (package
4061 (name "perl-extutils-parsexs")
4062 (version "3.35")
4063 (source
4064 (origin
4065 (method url-fetch)
4066 (uri (string-append
4067 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-"
4068 version
4069 ".tar.gz"))
4070 (sha256
4071 (base32
4072 "077fqiyabydm8j34wxzxwxskyidh8nmwq9gskaxai8kq298z1pj1"))))
4073 (build-system perl-build-system)
4074 (home-page
4075 "https://metacpan.org/release/ExtUtils-ParseXS")
4076 (synopsis "Module to convert Perl XS code into C code")
4077 (description "The package contains the ExtUtils::ParseXS module to
4078 convert Perl XS code into C code, the ExtUtils::Typemaps module to
4079 handle Perl/XS typemap files, and their submodules.")
4080 (license (package-license perl))))
4081
4082 (define-public perl-extutils-pkgconfig
4083 (package
4084 (name "perl-extutils-pkgconfig")
4085 (version "1.16")
4086 (source (origin
4087 (method url-fetch)
4088 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4089 "ExtUtils-PkgConfig-" version ".tar.gz"))
4090 (sha256
4091 (base32
4092 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
4093 (build-system perl-build-system)
4094 (propagated-inputs
4095 `(("pkg-config" ,pkg-config)))
4096 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
4097 (synopsis "Simplistic interface to pkg-config")
4098 (description
4099 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
4100 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
4101 of perl extensions which bind libraries that @command{pkg-config} knows.
4102 It is really just boilerplate code that you would have written yourself.")
4103 (license lgpl2.1+)))
4104
4105 (define-public perl-extutils-typemaps-default
4106 (package
4107 (name "perl-extutils-typemaps-default")
4108 (version "1.05")
4109 (source
4110 (origin
4111 (method url-fetch)
4112 (uri (string-append
4113 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-Typemaps-Default-"
4114 version
4115 ".tar.gz"))
4116 (sha256
4117 (base32
4118 "1phmha0ks95kvzl00r1kgnd5hvg7qb1q9jmzjmw01p5zgs1zbyix"))))
4119 (build-system perl-build-system)
4120 (native-inputs
4121 `(("perl-module-build" ,perl-module-build)))
4122 (home-page
4123 "https://metacpan.org/release/ExtUtils-Typemaps-Default")
4124 (synopsis "Set of useful typemaps")
4125 (description "The package provides a number of useful typemaps as
4126 submodules of ExtUtils::Typemaps.")
4127 (license (package-license perl))))
4128
4129 (define-public perl-extutils-xspp
4130 (package
4131 (name "perl-extutils-xspp")
4132 (version "0.18")
4133 (source
4134 (origin
4135 (method url-fetch)
4136 (uri (string-append
4137 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-"
4138 version
4139 ".tar.gz"))
4140 (sha256
4141 (base32
4142 "1zx84f93lkymqz7qa4d63gzlnhnkxm5i3gvsrwkvvqr9cxjasxli"))))
4143 (build-system perl-build-system)
4144 (native-inputs
4145 `(("perl-module-build" ,perl-module-build)
4146 ("perl-test-base" ,perl-test-base)
4147 ("perl-test-differences" ,perl-test-differences)))
4148 (home-page
4149 "https://metacpan.org/release/ExtUtils-XSpp")
4150 (synopsis "XS for C++")
4151 (description "This module implements the Perl foreign function
4152 interface XS for C++; it is a thin layer over plain XS.")
4153 (license (package-license perl))))
4154
4155 (define-public perl-file-changenotify
4156 (package
4157 (name "perl-file-changenotify")
4158 (version "0.24")
4159 (source
4160 (origin
4161 (method url-fetch)
4162 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4163 "File-ChangeNotify-" version ".tar.gz"))
4164 (sha256
4165 (base32
4166 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
4167 (build-system perl-build-system)
4168 (native-inputs
4169 `(("perl-module-build" ,perl-module-build)
4170 ("perl-test-exception" ,perl-test-exception)))
4171 (propagated-inputs
4172 `(("perl-class-load" ,perl-class-load)
4173 ("perl-list-moreutils" ,perl-list-moreutils)
4174 ("perl-module-pluggable" ,perl-module-pluggable)
4175 ("perl-moose" ,perl-moose)
4176 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
4177 ("perl-moosex-semiaffordanceaccessor"
4178 ,perl-moosex-semiaffordanceaccessor)
4179 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4180 (home-page "https://metacpan.org/release/File-ChangeNotify")
4181 (synopsis "Watch for changes to files")
4182 (description "This module provides a class to monitor a directory for
4183 changes made to any file.")
4184 (license artistic2.0)))
4185
4186 (define-public perl-file-configdir
4187 (package
4188 (name "perl-file-configdir")
4189 (version "0.021")
4190 (source
4191 (origin
4192 (method url-fetch)
4193 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4194 "File-ConfigDir-" version ".tar.gz"))
4195 (sha256
4196 (base32
4197 "1ihlhdbwaybyj3xqfxpx4ii0ypa41907b6zdh94rvr4wyqa5lh3b"))))
4198 (build-system perl-build-system)
4199 (propagated-inputs
4200 `(("perl-file-homedir" ,perl-file-homedir)
4201 ("perl-list-moreutils" ,perl-list-moreutils)
4202 ("perl-test-without-module" ,perl-test-without-module)))
4203 (home-page "https://metacpan.org/release/File-ConfigDir")
4204 (synopsis "Get directories of configuration files")
4205 (description "This module is a helper for installing, reading and finding
4206 configuration file locations. @code{File::ConfigDir} is a module to help out
4207 when Perl modules (especially applications) need to read and store
4208 configuration files from more than one location.")
4209 (license (package-license perl))))
4210
4211 (define-public perl-file-copy-recursive
4212 (package
4213 (name "perl-file-copy-recursive")
4214 (version "0.38")
4215 (source
4216 (origin
4217 (method url-fetch)
4218 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
4219 "File-Copy-Recursive-" version ".tar.gz"))
4220 (sha256
4221 (base32
4222 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
4223 (build-system perl-build-system)
4224 (home-page "https://metacpan.org/release/File-Copy-Recursive")
4225 (synopsis "Recursively copy files and directories")
4226 (description "This module has 3 functions: one to copy files only, one to
4227 copy directories only, and one to do either depending on the argument's
4228 type.")
4229 (license (package-license perl))))
4230
4231 (define-public perl-file-find-rule
4232 (package
4233 (name "perl-file-find-rule")
4234 (version "0.34")
4235 (source
4236 (origin
4237 (method url-fetch)
4238 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4239 "File-Find-Rule-" version ".tar.gz"))
4240 (sha256
4241 (base32
4242 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
4243 (build-system perl-build-system)
4244 (propagated-inputs
4245 `(("perl-text-glob" ,perl-text-glob)
4246 ("perl-number-compare" ,perl-number-compare)))
4247 (home-page "https://metacpan.org/release/File-Find-Rule")
4248 (synopsis "Alternative interface to File::Find")
4249 (description "File::Find::Rule is a friendlier interface to File::Find.
4250 It allows you to build rules which specify the desired files and
4251 directories.")
4252 (license (package-license perl))))
4253
4254 (define-public perl-file-find-rule-perl
4255 (package
4256 (name "perl-file-find-rule-perl")
4257 (version "1.15")
4258 (source
4259 (origin
4260 (method url-fetch)
4261 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4262 "File-Find-Rule-Perl-" version ".tar.gz"))
4263 (sha256
4264 (base32
4265 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
4266 (build-system perl-build-system)
4267 (propagated-inputs
4268 `(("perl-file-find-rule" ,perl-file-find-rule)
4269 ("perl-params-util" ,perl-params-util)
4270 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
4271 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
4272 (synopsis "Common rules for searching for Perl things")
4273 (description "File::Find::Rule::Perl provides methods for finding various
4274 types Perl-related files, or replicating search queries run on a distribution
4275 in various parts of the CPAN ecosystem.")
4276 (license (package-license perl))))
4277
4278 (define-public perl-file-grep
4279 (package
4280 (name "perl-file-grep")
4281 (version "0.02")
4282 (source
4283 (origin
4284 (method url-fetch)
4285 (uri (string-append
4286 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
4287 version
4288 ".tar.gz"))
4289 (sha256
4290 (base32
4291 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
4292 (build-system perl-build-system)
4293 (home-page "https://metacpan.org/release/File-Grep")
4294 (synopsis "Matches patterns in a series of files")
4295 (description "@code{File::Grep} provides similar functionality as perl's
4296 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
4297 over a passed filelist instead of arrays. While trivial, this module can
4298 provide a quick dropin when such functionality is needed.")
4299 (license (package-license perl))))
4300
4301 (define-public perl-file-homedir
4302 (package
4303 (name "perl-file-homedir")
4304 (version "1.004")
4305 (source
4306 (origin
4307 (method url-fetch)
4308 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4309 "File-HomeDir-" version ".tar.gz"))
4310 (sha256
4311 (base32
4312 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
4313 (build-system perl-build-system)
4314 (propagated-inputs
4315 `(("perl-file-which" ,perl-file-which)))
4316 (arguments `(#:tests? #f)) ;Not appropriate for chroot
4317 (home-page "https://metacpan.org/release/File-HomeDir")
4318 (synopsis "Find your home and other directories on any platform")
4319 (description "File::HomeDir is a module for locating the directories that
4320 are @code{owned} by a user (typically your user) and to solve the various issues
4321 that arise trying to find them consistently across a wide variety of
4322 platforms.")
4323 (license (package-license perl))))
4324
4325 (define-public perl-file-path
4326 (package
4327 (name "perl-file-path")
4328 (version "2.16")
4329 (source
4330 (origin
4331 (method url-fetch)
4332 (uri (string-append
4333 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
4334 version
4335 ".tar.gz"))
4336 (sha256
4337 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
4338 (build-system perl-build-system)
4339 (home-page "https://metacpan.org/release/File-Path")
4340 (synopsis "Create or remove directory trees")
4341 (description "This module provide a convenient way to create directories
4342 of arbitrary depth and to delete an entire directory subtree from the
4343 file system.")
4344 (license (package-license perl))))
4345
4346 (define-public perl-file-pushd
4347 (package
4348 (name "perl-file-pushd")
4349 (version "1.016")
4350 (source
4351 (origin
4352 (method url-fetch)
4353 (uri (string-append
4354 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
4355 version
4356 ".tar.gz"))
4357 (sha256
4358 (base32
4359 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
4360 (build-system perl-build-system)
4361 (home-page
4362 "https://metacpan.org/release/File-pushd")
4363 (synopsis
4364 "Change directory temporarily for a limited scope")
4365 (description "@code{File::pushd} does a temporary @code{chdir} that is
4366 easily and automatically reverted, similar to @code{pushd} in some Unix
4367 command shells. It works by creating an object that caches the original
4368 working directory. When the object is destroyed, the destructor calls
4369 @code{chdir} to revert to the original working directory. By storing the
4370 object in a lexical variable with a limited scope, this happens automatically
4371 at the end of the scope.")
4372 (license asl2.0)))
4373
4374 (define-public perl-file-list
4375 (package
4376 (name "perl-file-list")
4377 (version "0.3.1")
4378 (source (origin
4379 (method url-fetch)
4380 (uri (string-append
4381 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
4382 version ".tar.gz"))
4383 (sha256
4384 (base32
4385 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
4386 (build-system perl-build-system)
4387 (arguments
4388 `(#:phases
4389 (modify-phases %standard-phases
4390 (add-after 'unpack 'cd
4391 (lambda _ (chdir "List") #t)))))
4392 (license (package-license perl))
4393 (synopsis "Perl extension for crawling directory trees and compiling
4394 lists of files")
4395 (description
4396 "The File::List module crawls the directory tree starting at the
4397 provided base directory and can return files (and/or directories if desired)
4398 matching a regular expression.")
4399 (home-page "https://metacpan.org/release/File-List")))
4400
4401 (define-public perl-file-readbackwards
4402 (package
4403 (name "perl-file-readbackwards")
4404 (version "1.05")
4405 (source
4406 (origin
4407 (method url-fetch)
4408 (uri (string-append
4409 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
4410 version
4411 ".tar.gz"))
4412 (sha256
4413 (base32
4414 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
4415 (build-system perl-build-system)
4416 (home-page "https://metacpan.org/release/File-ReadBackwards")
4417 (synopsis "Read a file backwards by lines")
4418 (description "This module reads a file backwards line by line. It is
4419 simple to use, memory efficient and fast. It supports both an object and a
4420 tied handle interface.
4421
4422 It is intended for processing log and other similar text files which typically
4423 have their newest entries appended to them. By default files are assumed to
4424 be plain text and have a line ending appropriate to the OS. But you can set
4425 the input record separator string on a per file basis.")
4426 (license perl-license)))
4427
4428 (define-public perl-file-remove
4429 (package
4430 (name "perl-file-remove")
4431 (version "1.58")
4432 (source
4433 (origin
4434 (method url-fetch)
4435 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4436 "File-Remove-" version ".tar.gz"))
4437 (sha256
4438 (base32
4439 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
4440 (build-system perl-build-system)
4441 (native-inputs
4442 `(("perl-module-build" ,perl-module-build)))
4443 (home-page "https://metacpan.org/release/File-Remove")
4444 (synopsis "Remove files and directories in Perl")
4445 (description "@code{File::Remove::remove} removes files and directories.
4446 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
4447 given a list of files, it will not remove directories; this module remedies
4448 that. It also accepts wildcards, * and ?, as arguments for file names.")
4449 (license (package-license perl))))
4450
4451 (define-public perl-file-sharedir
4452 (package
4453 (name "perl-file-sharedir")
4454 (version "1.116")
4455 (source
4456 (origin
4457 (method url-fetch)
4458 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4459 "File-ShareDir-" version ".tar.gz"))
4460 (sha256
4461 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
4462 (build-system perl-build-system)
4463 (native-inputs
4464 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
4465 (propagated-inputs
4466 `(("perl-class-inspector" ,perl-class-inspector)))
4467 (home-page "https://metacpan.org/release/File-ShareDir")
4468 (synopsis "Locate per-dist and per-module shared files")
4469 (description "The intent of File::ShareDir is to provide a companion to
4470 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
4471 module to have access to a large amount of read-only data that is stored on
4472 the file-system at run-time. Once the files have been installed to the
4473 correct directory, you can use File::ShareDir to find your files again after
4474 the installation.")
4475 (license (package-license perl))))
4476
4477 (define-public perl-file-sharedir-dist
4478 (package
4479 (name "perl-file-sharedir-dist")
4480 (version "0.07")
4481 (source
4482 (origin
4483 (method url-fetch)
4484 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4485 "File-ShareDir-Dist-" version ".tar.gz"))
4486 (sha256
4487 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
4488 (build-system perl-build-system)
4489 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
4490 (synopsis "Locate per-dist shared files")
4491 (description "File::ShareDir::Dist finds share directories for
4492 distributions. It is a companion module to File::ShareDir.")
4493 (license (package-license perl))))
4494
4495 (define-public perl-file-sharedir-install
4496 (package
4497 (name "perl-file-sharedir-install")
4498 (version "0.13")
4499 (source
4500 (origin
4501 (method url-fetch)
4502 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4503 "File-ShareDir-Install-" version ".tar.gz"))
4504 (sha256
4505 (base32
4506 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
4507 (build-system perl-build-system)
4508 (native-inputs
4509 `(("perl-module-build" ,perl-module-build)))
4510 (home-page "https://metacpan.org/release/File-ShareDir-Install")
4511 (synopsis "Install shared files")
4512 (description "File::ShareDir::Install allows you to install read-only data
4513 files from a distribution. It is a companion module to File::ShareDir, which
4514 allows you to locate these files after installation.")
4515 (license (package-license perl))))
4516
4517 (define-public perl-file-slurp
4518 (package
4519 (name "perl-file-slurp")
4520 (version "9999.28")
4521 (source
4522 (origin
4523 (method url-fetch)
4524 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
4525 "File-Slurp-" version ".tar.gz"))
4526 (sha256
4527 (base32 "1vkwh880lbyr2qcrfka7yb3z4yz9id4va52gfjgdnyfb1c0wx1q5"))))
4528 (build-system perl-build-system)
4529 (home-page "https://metacpan.org/release/File-Slurp")
4530 (synopsis "Reading/Writing/Modifying of complete files")
4531 (description "File::Slurp provides subroutines to read or write entire
4532 files with a simple call. It also has a subroutine for reading the list of
4533 file names in a directory.")
4534 (license (package-license perl))))
4535
4536 (define-public perl-file-slurper
4537 (package
4538 (name "perl-file-slurper")
4539 (version "0.012")
4540 (source
4541 (origin
4542 (method url-fetch)
4543 (uri (string-append
4544 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
4545 version
4546 ".tar.gz"))
4547 (sha256
4548 (base32
4549 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
4550 (build-system perl-build-system)
4551 (native-inputs
4552 `(("perl-test-warnings" ,perl-test-warnings)))
4553 (propagated-inputs
4554 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
4555 (home-page "https://metacpan.org/release/File-Slurper")
4556 (synopsis "Simple, sane and efficient module to slurp a file")
4557 (description "This module provides functions for fast and correct file
4558 slurping and spewing. All functions are optionally exported.")
4559 (license (package-license perl))))
4560
4561 (define-public perl-file-slurp-tiny
4562 (package
4563 (name "perl-file-slurp-tiny")
4564 (version "0.004")
4565 (source (origin
4566 (method url-fetch)
4567 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4568 "File-Slurp-Tiny-" version ".tar.gz"))
4569 (sha256
4570 (base32
4571 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
4572 (build-system perl-build-system)
4573 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
4574 (synopsis "Simple file reader and writer")
4575 (description
4576 "This module provides functions for fast reading and writing of files.")
4577 (license (package-license perl))))
4578
4579 (define-public perl-file-temp
4580 (package
4581 (name "perl-file-temp")
4582 (version "0.2309")
4583 (source
4584 (origin
4585 (method url-fetch)
4586 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4587 "File-Temp-" version ".tar.gz"))
4588 (sha256
4589 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
4590 (build-system perl-build-system)
4591 (home-page "https://metacpan.org/release/File-Temp")
4592 (synopsis "Return name and handle of a temporary file safely")
4593 (description "File::Temp can be used to create and open temporary files in
4594 a safe way.")
4595 (license (package-license perl))))
4596
4597 (define-public perl-file-which
4598 (package
4599 (name "perl-file-which")
4600 (version "1.23")
4601 (source (origin
4602 (method url-fetch)
4603 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4604 "File-Which-" version ".tar.gz"))
4605 (sha256
4606 (base32
4607 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
4608 (build-system perl-build-system)
4609 (native-inputs `(("test-script" ,perl-test-script)))
4610 (synopsis "Portable implementation of the `which' utility")
4611 (description
4612 "File::Which was created to be able to get the paths to executable
4613 programs on systems under which the `which' program wasn't implemented in the
4614 shell.")
4615 (home-page "https://metacpan.org/release/File-Which")
4616 (license (package-license perl))))
4617
4618 (define-public perl-file-zglob
4619 (package
4620 (name "perl-file-zglob")
4621 (version "0.11")
4622 (source (origin
4623 (method url-fetch)
4624 (uri (string-append
4625 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
4626 version ".tar.gz"))
4627 (sha256
4628 (base32
4629 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
4630 (build-system perl-build-system)
4631 (native-inputs
4632 `(("perl-module-install" ,perl-module-install)))
4633 (home-page "https://metacpan.org/release/File-Zglob")
4634 (synopsis "Extended Unix style glob functionality")
4635 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
4636 functionality; it returns a list of file names that match the given pattern.
4637 For instance, it supports the @code{**/*.pm} form.")
4638 (license (package-license perl))))
4639
4640 (define-public perl-filesys-notify-simple
4641 (package
4642 (name "perl-filesys-notify-simple")
4643 (version "0.13")
4644 (source
4645 (origin
4646 (method url-fetch)
4647 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
4648 "Filesys-Notify-Simple-" version ".tar.gz"))
4649 (sha256
4650 (base32
4651 "18jv96k1pf8wqf4vn2ahs7dv44lc9cyqj0bja9z17qici3dx7qxd"))))
4652 (build-system perl-build-system)
4653 (native-inputs
4654 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
4655 (home-page "https://metacpan.org/release/Filesys-Notify-Simple")
4656 (synopsis "Simple and dumb file system watcher")
4657 (description
4658 "@code{Filesys::Notify::Simple} is a simple but unified interface to get
4659 notifications of changes to a given file system path. It uses inotify2 on
4660 Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
4661 @code{FindFirstChangeNotification} on Windows if they're installed, and falls
4662 back to a full directory scan if none of these are available.")
4663 (license perl-license)))
4664
4665 (define-public perl-getopt-long
4666 (package
4667 (name "perl-getopt-long")
4668 (version "v2.49.1")
4669 (source
4670 (origin
4671 (method url-fetch)
4672 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
4673 "Getopt-Long-" (substring version 1) ".tar.gz"))
4674 (sha256
4675 (base32
4676 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
4677 (build-system perl-build-system)
4678 (home-page "https://metacpan.org/release/Getopt-Long")
4679 (synopsis "Module to handle parsing command line options")
4680 (description "The @code{Getopt::Long} module implements an extended getopt
4681 function called @code{GetOptions()}. It parses the command line from
4682 @code{ARGV}, recognizing and removing specified options and their possible
4683 values.
4684
4685 This function adheres to the POSIX syntax for command line options, with GNU
4686 extensions. In general, this means that options have long names instead of
4687 single letters, and are introduced with a double dash \"--\". Support for
4688 bundling of command line options, as was the case with the more traditional
4689 single-letter approach, is provided but not enabled by default.")
4690 ;; Can be used with either license.
4691 (license (list (package-license perl) gpl2+))))
4692
4693 (define-public perl-getopt-long-descriptive
4694 (package
4695 (name "perl-getopt-long-descriptive")
4696 (version "0.103")
4697 (source
4698 (origin
4699 (method url-fetch)
4700 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4701 "Getopt-Long-Descriptive-" version ".tar.gz"))
4702 (sha256
4703 (base32
4704 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
4705 (build-system perl-build-system)
4706 (native-inputs
4707 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4708 ("perl-test-fatal" ,perl-test-fatal)
4709 ("perl-test-warnings" ,perl-test-warnings)))
4710 (propagated-inputs
4711 `(("perl-params-validate" ,perl-params-validate)
4712 ("perl-sub-exporter" ,perl-sub-exporter)))
4713 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
4714 (synopsis "Getopt::Long, but simpler and more powerful")
4715 (description "Getopt::Long::Descriptive is yet another Getopt library.
4716 It's built atop Getopt::Long, and gets a lot of its features, but tries to
4717 avoid making you think about its huge array of options. It also provides
4718 usage (help) messages, data validation, and a few other useful features.")
4719 (license (package-license perl))))
4720
4721 (define-public perl-getopt-tabular
4722 (package
4723 (name "perl-getopt-tabular")
4724 (version "0.3")
4725 (source (origin
4726 (method url-fetch)
4727 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
4728 "Getopt-Tabular-" version ".tar.gz"))
4729 (sha256
4730 (base32
4731 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
4732 (build-system perl-build-system)
4733 (synopsis "Table-driven argument parsing for Perl")
4734 (description
4735 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
4736 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
4737 (home-page "https://metacpan.org/release/Getopt-Tabular")
4738 (license (package-license perl))))
4739
4740 (define-public perl-graph
4741 (package
4742 (name "perl-graph")
4743 (version "0.9704")
4744 (source
4745 (origin
4746 (method url-fetch)
4747 (uri (string-append
4748 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
4749 version
4750 ".tar.gz"))
4751 (sha256
4752 (base32
4753 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
4754 (build-system perl-build-system)
4755 (home-page "https://metacpan.org/release/Graph")
4756 (synopsis "Graph data structures and algorithms")
4757 (description "This is @code{Graph}, a Perl module for dealing with graphs,
4758 the abstract data structures.")
4759 (license (package-license perl))))
4760
4761 (define-public perl-guard
4762 (package
4763 (name "perl-guard")
4764 (version "1.023")
4765 (source (origin
4766 (method url-fetch)
4767 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
4768 version ".tar.gz"))
4769 (sha256
4770 (base32
4771 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
4772 (build-system perl-build-system)
4773 (home-page "https://metacpan.org/release/Guard")
4774 (synopsis "Safe cleanup blocks implemented as guards")
4775 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
4776 something (usually an object) that \"guards\" a resource, ensuring that it is
4777 cleaned up when expected.
4778
4779 Specifically, this module supports two different types of guards: guard
4780 objects, which execute a given code block when destroyed, and scoped guards,
4781 which are tied to the scope exit.")
4782 (license (package-license perl))))
4783
4784 (define-public perl-hash-fieldhash
4785 (package
4786 (name "perl-hash-fieldhash")
4787 (version "0.15")
4788 (source
4789 (origin
4790 (method url-fetch)
4791 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
4792 "Hash-FieldHash-" version ".tar.gz"))
4793 (sha256
4794 (base32
4795 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
4796 (build-system perl-build-system)
4797 (arguments
4798 `(#:phases
4799 (modify-phases %standard-phases
4800 (add-before 'configure 'set-perl-search-path
4801 (lambda _
4802 ;; Work around "dotless @INC" build failure.
4803 (setenv "PERL5LIB"
4804 (string-append (getcwd) ":"
4805 (getenv "PERL5LIB")))
4806 #t)))))
4807 (native-inputs
4808 `(("perl-module-build" ,perl-module-build)
4809 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4810 (home-page "https://metacpan.org/release/Hash-FieldHash")
4811 (synopsis "Lightweight field hash for inside-out objects")
4812 (description "@code{Hash::FieldHash} provides the field hash mechanism
4813 which supports the inside-out technique. It is an alternative to
4814 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
4815 relic support.")
4816 (license (package-license perl))))
4817
4818 (define-public perl-hash-merge
4819 (package
4820 (name "perl-hash-merge")
4821 (version "0.300")
4822 (source
4823 (origin
4824 (method url-fetch)
4825 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4826 "Hash-Merge-" version ".tar.gz"))
4827 (sha256
4828 (base32
4829 "0h3wfnpv5d4d3f9xzmwkchay6251nhzngdv3f6xia56mj4hxabs0"))))
4830 (build-system perl-build-system)
4831 (propagated-inputs
4832 `(("perl-clone-choose" ,perl-clone-choose)))
4833 (home-page "https://metacpan.org/release/Hash-Merge")
4834 (synopsis "Merge arbitrarily deep hashes into a single hash")
4835 (description "Hash::Merge merges two arbitrarily deep hashes into a single
4836 hash. That is, at any level, it will add non-conflicting key-value pairs from
4837 one hash to the other, and follows a set of specific rules when there are key
4838 value conflicts. The hash is followed recursively, so that deeply nested
4839 hashes that are at the same level will be merged when the parent hashes are
4840 merged.")
4841 (license (package-license perl))))
4842
4843 (define-public perl-hash-multivalue
4844 (package
4845 (name "perl-hash-multivalue")
4846 (version "0.16")
4847 (source
4848 (origin
4849 (method url-fetch)
4850 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
4851 "Hash-MultiValue-" version ".tar.gz"))
4852 (sha256
4853 (base32
4854 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
4855 (build-system perl-build-system)
4856 (home-page "https://metacpan.org/release/Hash-MultiValue")
4857 (synopsis "Store multiple values per key")
4858 (description "Hash::MultiValue is an object (and a plain hash reference)
4859 that may contain multiple values per key, inspired by MultiDict of WebOb.")
4860 (license (package-license perl))))
4861
4862 (define-public perl-importer
4863 (package
4864 (name "perl-importer")
4865 (version "0.025")
4866 (source
4867 (origin
4868 (method url-fetch)
4869 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4870 version ".tar.gz"))
4871 (sha256
4872 (base32
4873 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4874 (build-system perl-build-system)
4875 (home-page "https://metacpan.org/release/Importer")
4876 (synopsis "Alternative but compatible interface to modules that export symbols")
4877 (description "This module acts as a layer between Exporter and modules which
4878 consume exports. It is feature-compatible with Exporter, plus some much needed
4879 extras. You can use this to import symbols from any exporter that follows
4880 Exporters specification. The exporter modules themselves do not need to use or
4881 inherit from the Exporter module, they just need to set @@EXPORT and/or other
4882 variables.")
4883 (license (package-license perl))))
4884
4885 (define-public perl-import-into
4886 (package
4887 (name "perl-import-into")
4888 (version "1.002005")
4889 (source
4890 (origin
4891 (method url-fetch)
4892 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4893 "Import-Into-" version ".tar.gz"))
4894 (sha256
4895 (base32
4896 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
4897 (build-system perl-build-system)
4898 (propagated-inputs
4899 `(("perl-module-runtime" ,perl-module-runtime)))
4900 (home-page "https://metacpan.org/release/Import-Into")
4901 (synopsis "Import packages into other packages")
4902 (description "Writing exporters is a pain. Some use Exporter, some use
4903 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
4904 some things are pragmas. Exporting on someone else's behalf is harder. The
4905 exporters don't provide a consistent API for this, and pragmas need to have
4906 their import method called directly, since they effect the current unit of
4907 compilation. Import::Into provides global methods to make this painless.")
4908 (license (package-license perl))))
4909
4910 (define-public perl-inc-latest
4911 (package
4912 (name "perl-inc-latest")
4913 (version "0.500")
4914 (source
4915 (origin
4916 (method url-fetch)
4917 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4918 "inc-latest-" version ".tar.gz"))
4919 (sha256
4920 (base32
4921 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
4922 (build-system perl-build-system)
4923 (home-page "https://metacpan.org/release/inc-latest")
4924 (synopsis "Use modules in inc/ if newer than installed")
4925 (description "The inc::latest module helps bootstrap configure-time
4926 dependencies for CPAN distributions. These dependencies get bundled into the
4927 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
4928 (license asl2.0)))
4929
4930 (define-public perl-indirect
4931 (package
4932 (name "perl-indirect")
4933 (version "0.39")
4934 (source
4935 (origin
4936 (method url-fetch)
4937 (uri (string-append
4938 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
4939 version ".tar.gz"))
4940 (sha256
4941 (base32 "1r971mykvvsrzrp6a9ccl649ihr84h254jmlfpazv64f6i63qwvi"))))
4942 (build-system perl-build-system)
4943 (home-page "https://metacpan.org/release/indirect")
4944 (synopsis "Lexically warn about using the indirect method call syntax")
4945 (description
4946 "Indirect warns about using the indirect method call syntax.")
4947 (license (package-license perl))))
4948
4949 (define-public perl-inline
4950 (package
4951 (name "perl-inline")
4952 (version "0.81")
4953 (source
4954 (origin
4955 (method url-fetch)
4956 (uri (string-append
4957 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
4958 version ".tar.gz"))
4959 (sha256
4960 (base32
4961 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
4962 (build-system perl-build-system)
4963 (native-inputs
4964 `(("perl-test-warn" ,perl-test-warn)))
4965 (home-page "https://metacpan.org/release/Inline")
4966 (synopsis "Write Perl subroutines in other programming languages")
4967 (description "The @code{Inline} module allows you to put source code
4968 from other programming languages directly (inline) in a Perl script or
4969 module. The code is automatically compiled as needed, and then loaded
4970 for immediate access from Perl.")
4971 (license (package-license perl))))
4972
4973 (define-public perl-inline-c
4974 (package
4975 (name "perl-inline-c")
4976 (version "0.78")
4977 (source
4978 (origin
4979 (method url-fetch)
4980 (uri (string-append
4981 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
4982 version ".tar.gz"))
4983 (sha256
4984 (base32
4985 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
4986 (build-system perl-build-system)
4987 (native-inputs
4988 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
4989 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
4990 ("perl-test-warn" ,perl-test-warn)
4991 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
4992 (propagated-inputs
4993 `(("perl-inline" ,perl-inline)
4994 ("perl-parse-recdescent" ,perl-parse-recdescent)
4995 ("perl-pegex" ,perl-pegex)))
4996 (home-page "https://metacpan.org/release/Inline-C")
4997 (synopsis "C Language Support for Inline")
4998 (description "The @code{Inline::C} module allows you to write Perl
4999 subroutines in C. Since version 0.30 the @code{Inline} module supports
5000 multiple programming languages and each language has its own support module.
5001 This document describes how to use Inline with the C programming language.
5002 It also goes a bit into Perl C internals.")
5003 (license (package-license perl))))
5004
5005 (define-public perl-io-all
5006 (package
5007 (name "perl-io-all")
5008 (version "0.87")
5009 (source
5010 (origin
5011 (method url-fetch)
5012 (uri (string-append
5013 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
5014 version
5015 ".tar.gz"))
5016 (sha256
5017 (base32
5018 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
5019 (build-system perl-build-system)
5020 (propagated-inputs
5021 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
5022 ("perl-file-readbackwards" ,perl-file-readbackwards)))
5023 (home-page "https://metacpan.org/release/IO-All")
5024 (synopsis "@code{IO::All} to Larry Wall!")
5025 (description "@code{IO::All} combines all of the best Perl IO modules into
5026 a single nifty object oriented interface to greatly simplify your everyday
5027 Perl IO idioms. It exports a single function called io, which returns a new
5028 @code{IO::All} object. And that object can do it all!")
5029 (license perl-license)))
5030
5031 (define-public perl-io-captureoutput
5032 (package
5033 (name "perl-io-captureoutput")
5034 (version "1.1105")
5035 (source
5036 (origin
5037 (method url-fetch)
5038 (uri (string-append
5039 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
5040 version
5041 ".tar.gz"))
5042 (sha256
5043 (base32 "11zlfbahac09q3jvwmpijmkwgihwxps85jwy2q7q0wqjragh16df"))))
5044 (build-system perl-build-system)
5045 (home-page "https://metacpan.org/release/IO-CaptureOutput")
5046 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
5047 (description "@code{IO::CaptureOutput} provides routines for capturing
5048 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
5049 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
5050
5051 This module is no longer recommended by its maintainer. Users are advised to
5052 try @code{Capture::Tiny} instead.")
5053 (license (package-license perl))))
5054
5055 (define-public perl-io-interactive
5056 (package
5057 (name "perl-io-interactive")
5058 (version "1.022")
5059 (source
5060 (origin
5061 (method url-fetch)
5062 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5063 "IO-Interactive-" version ".tar.gz"))
5064 (sha256
5065 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
5066 (build-system perl-build-system)
5067 (home-page "https://metacpan.org/release/IO-Interactive")
5068 (synopsis "Utilities for interactive I/O")
5069 (description "This module provides three utility subroutines that make it
5070 easier to develop interactive applications: is_interactive(), interactive(),
5071 and busy().")
5072 (license (package-license perl))))
5073
5074 (define-public perl-io-pager
5075 (package
5076 (name "perl-io-pager")
5077 (version "0.44")
5078 (source
5079 (origin
5080 (method url-fetch)
5081 (uri (string-append
5082 "mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-"
5083 version
5084 ".tgz"))
5085 (sha256
5086 (base32 "0h52gplhc3rij18xc4ngpg5kqv6mylxfzig18xll1aqda8iwa8kl"))))
5087 (build-system perl-build-system)
5088 (arguments
5089 '(#:phases
5090 (modify-phases %standard-phases
5091 (add-after 'unpack 'patch-less
5092 (lambda _
5093 (substitute* "lib/IO/Pager.pm"
5094 (("/usr/local/bin/less', '/usr/bin/less")
5095 (which "less")))
5096 #t)))))
5097 (propagated-inputs
5098 `(("perl-file-which" ,perl-file-which)))
5099 (inputs
5100 `(("less" ,less)))
5101 (home-page "https://metacpan.org/release/IO-Pager")
5102 (synopsis "Select a pager and pipe text to it")
5103 (description
5104 "@code{IO::Pager} can be used to locate an available pager and use it to
5105 display output if a TTY is in use.")
5106 (license (package-license perl))))
5107
5108 (define-public perl-io-string
5109 (package
5110 (name "perl-io-string")
5111 (version "1.08")
5112 (source
5113 (origin
5114 (method url-fetch)
5115 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
5116 "IO-String-" version ".tar.gz"))
5117 (sha256
5118 (base32
5119 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
5120 (build-system perl-build-system)
5121 (home-page "https://metacpan.org/release/IO-String")
5122 (synopsis "Emulate file interface for in-core strings")
5123 (description "IO::String is an IO::File (and IO::Handle) compatible class
5124 that reads or writes data from in-core strings.")
5125 (license (package-license perl))))
5126
5127 (define-public perl-io-stringy
5128 (package
5129 (name "perl-io-stringy")
5130 (version "2.111")
5131 (source
5132 (origin
5133 (method url-fetch)
5134 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
5135 "IO-stringy-" version ".tar.gz"))
5136 (sha256
5137 (base32
5138 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
5139 (build-system perl-build-system)
5140 (home-page "https://metacpan.org/release/IO-stringy")
5141 (synopsis "IO:: interface for reading/writing an array of lines")
5142 (description "This toolkit primarily provides modules for performing both
5143 traditional and object-oriented i/o) on things *other* than normal
5144 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
5145 (license (package-license perl))))
5146
5147 (define-public perl-io-tty
5148 (package
5149 (name "perl-io-tty")
5150 (version "1.12")
5151 (source (origin
5152 (method url-fetch)
5153 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
5154 version ".tar.gz"))
5155 (sha256
5156 (base32
5157 "0399anjy3bc0w8xzsc3qx5vcyqryc9gc52lc7wh7i49hsdq8gvx2"))))
5158 (build-system perl-build-system)
5159 (home-page "https://metacpan.org/release/IO-Tty")
5160 (synopsis "Perl interface to pseudo ttys")
5161 (description
5162 "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl
5163 interfaces to pseudo ttys.")
5164 (license (package-license perl))))
5165
5166 (define-public perl-ipc-cmd
5167 (package
5168 (name "perl-ipc-cmd")
5169 (version "1.02")
5170 (source
5171 (origin
5172 (method url-fetch)
5173 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
5174 version ".tar.gz"))
5175 (sha256
5176 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
5177 (build-system perl-build-system)
5178 (home-page "https://metacpan.org/release/IPC-Cmd")
5179 (synopsis "Run interactive command-line programs")
5180 (description "@code{IPC::Cmd} allows for the searching and execution of
5181 any binary on your system. It adheres to verbosity settings and is able to
5182 run interactively. It also has an option to capture output/error buffers.")
5183 (license (package-license perl))))
5184
5185 (define-public perl-ipc-run
5186 (package
5187 (name "perl-ipc-run")
5188 (version "20180523.0")
5189 (source
5190 (origin
5191 (method url-fetch)
5192 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
5193 "IPC-Run-" version ".tar.gz"))
5194 (sha256
5195 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
5196 (build-system perl-build-system)
5197 (propagated-inputs
5198 `(("perl-io-tty" ,perl-io-tty)))
5199 (arguments
5200 `(#:phases (modify-phases %standard-phases
5201 (add-before
5202 'check 'disable-w32-test
5203 (lambda _
5204 ;; This test fails, and we're not really interested in
5205 ;; it, so disable it.
5206 (delete-file "t/win32_compile.t")
5207 #t)))))
5208 (home-page "https://metacpan.org/release/IPC-Run")
5209 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
5210 (description "IPC::Run allows you run and interact with child processes
5211 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
5212 are supported and may be mixed. Likewise, functional and OO API styles are
5213 both supported and may be mixed.")
5214 (license (package-license perl))))
5215
5216 (define-public perl-ipc-run3
5217 (package
5218 (name "perl-ipc-run3")
5219 (version "0.048")
5220 (source (origin
5221 (method url-fetch)
5222 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5223 "IPC-Run3-" version ".tar.gz"))
5224 (sha256
5225 (base32
5226 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
5227 (build-system perl-build-system)
5228 (synopsis "Run a subprocess with input/output redirection")
5229 (description
5230 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
5231 stdout, and/or stderr to files and perl data structures. It aims to satisfy
5232 99% of the need for using system, qx, and open3 with a simple, extremely
5233 Perlish API and none of the bloat and rarely used features of IPC::Run.")
5234 (home-page "https://metacpan.org/release/IPC-Run3")
5235 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
5236 ;; licenses, any version."
5237 (license (list bsd-3 gpl3+))))
5238
5239 (define-public perl-ipc-sharelite
5240 (package
5241 (name "perl-ipc-sharelite")
5242 (version "0.17")
5243 (source
5244 (origin
5245 (method url-fetch)
5246 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
5247 "IPC-ShareLite-" version ".tar.gz"))
5248 (sha256
5249 (base32
5250 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
5251 (build-system perl-build-system)
5252 (home-page "https://metacpan.org/release/IPC-ShareLite")
5253 (synopsis "Lightweight interface to shared memory")
5254 (description "IPC::ShareLite provides a simple interface to shared memory,
5255 allowing data to be efficiently communicated between processes.")
5256 (license (package-license perl))))
5257
5258 (define-public perl-ipc-system-simple
5259 (package
5260 (name "perl-ipc-system-simple")
5261 (version "1.26")
5262 (source (origin
5263 (method url-fetch)
5264 (uri (string-append
5265 "mirror://cpan/authors/id/J/JK/JKEENAN/IPC-System-Simple-"
5266 version ".tar.gz"))
5267 (sha256
5268 (base32
5269 "1zb5ni8ikaq6s60amwdsq69nz8gxl484yiga6ax5nqp8v0hpy5sp"))))
5270 (build-system perl-build-system)
5271 (home-page "https://metacpan.org/release/IPC-System-Simple")
5272 (synopsis "Run commands simply, with detailed diagnostics")
5273 (description "Calling Perl's in-built @code{system} function is easy,
5274 determining if it was successful is hard. Let's face it, @code{$?} isn't the
5275 nicest variable in the world to play with, and even if you do check it,
5276 producing a well-formatted error string takes a lot of work.
5277
5278 @code{IPC::System::Simple} takes the hard work out of calling external
5279 commands.")
5280 (license (package-license perl))))
5281
5282 (define-public perl-json
5283 (package
5284 (name "perl-json")
5285 (version "4.02")
5286 (source
5287 (origin
5288 (method url-fetch)
5289 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
5290 "JSON-" version ".tar.gz"))
5291 (sha256
5292 (base32
5293 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
5294 (build-system perl-build-system)
5295 (propagated-inputs
5296 `(("perl-json-xs" ,perl-json-xs))) ;recommended
5297 (home-page "https://metacpan.org/release/JSON")
5298 (synopsis "JSON encoder/decoder for Perl")
5299 (description "This module converts Perl data structures to JSON and vice
5300 versa using either JSON::XS or JSON::PP.")
5301 (license (package-license perl))))
5302
5303 (define-public perl-json-any
5304 (package
5305 (name "perl-json-any")
5306 (version "1.39")
5307 (source
5308 (origin
5309 (method url-fetch)
5310 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5311 "JSON-Any-" version ".tar.gz"))
5312 (sha256
5313 (base32
5314 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
5315 (build-system perl-build-system)
5316 (native-inputs
5317 `(("perl-test-fatal" ,perl-test-fatal)
5318 ("perl-test-requires" ,perl-test-requires)
5319 ("perl-test-warnings" ,perl-test-warnings)
5320 ("perl-test-without-module" ,perl-test-without-module)))
5321 (propagated-inputs
5322 `(("perl-namespace-clean" ,perl-namespace-clean)))
5323 (home-page "https://metacpan.org/release/JSON-Any")
5324 (synopsis "Wrapper for Perl JSON classes")
5325 (description
5326 "This module tries to provide a coherent API to bring together the
5327 various JSON modules currently on CPAN. This module will allow you to code to
5328 any JSON API and have it work regardless of which JSON module is actually
5329 installed.")
5330 (license (package-license perl))))
5331
5332 (define-public perl-json-maybexs
5333 (package
5334 (name "perl-json-maybexs")
5335 (version "1.004000")
5336 (source
5337 (origin
5338 (method url-fetch)
5339 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5340 "JSON-MaybeXS-" version ".tar.gz"))
5341 (sha256
5342 (base32
5343 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
5344 (build-system perl-build-system)
5345 (native-inputs
5346 `(("perl-test-without-module" ,perl-test-without-module)))
5347 (inputs
5348 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
5349 (home-page "https://metacpan.org/release/JSON-MaybeXS")
5350 (synopsis "Cpanel::JSON::XS with fallback")
5351 (description "This module first checks to see if either Cpanel::JSON::XS
5352 or JSON::XS is already loaded, in which case it uses that module. Otherwise
5353 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
5354 either uses the first module it finds or throws an error.")
5355 (license (package-license perl))))
5356
5357 (define-public perl-json-xs
5358 (package
5359 (name "perl-json-xs")
5360 (version "4.0")
5361 (source
5362 (origin
5363 (method url-fetch)
5364 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
5365 "JSON-XS-" version ".tar.gz"))
5366 (sha256
5367 (base32
5368 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
5369 (build-system perl-build-system)
5370 (native-inputs
5371 `(("perl-canary-stability" ,perl-canary-stability)))
5372 (propagated-inputs
5373 `(("perl-common-sense" ,perl-common-sense)
5374 ("perl-types-serialiser" ,perl-types-serialiser)))
5375 (home-page "https://metacpan.org/release/JSON-XS")
5376 (synopsis "JSON serialising/deserialising for Perl")
5377 (description "This module converts Perl data structures to JSON and vice
5378 versa.")
5379 (license (package-license perl))))
5380
5381 (define-public perl-lexical-sealrequirehints
5382 (package
5383 (name "perl-lexical-sealrequirehints")
5384 (version "0.011")
5385 (source
5386 (origin
5387 (method url-fetch)
5388 (uri (string-append
5389 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
5390 version
5391 ".tar.gz"))
5392 (sha256
5393 (base32
5394 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
5395 (build-system perl-build-system)
5396 (native-inputs
5397 `(("perl-module-build" ,perl-module-build)))
5398 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
5399 (synopsis "Prevent leakage of lexical hints")
5400 (description
5401 "Lexical::SealRequireHints prevents leakage of lexical hints")
5402 (license (package-license perl))))
5403
5404 (define-public perl-log-any
5405 (package
5406 (name "perl-log-any")
5407 (version "1.707")
5408 (source
5409 (origin
5410 (method url-fetch)
5411 (uri (string-append "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-"
5412 version ".tar.gz"))
5413 (sha256
5414 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
5415 (build-system perl-build-system)
5416 (home-page "https://metacpan.org/release/Log-Any")
5417 (synopsis "Bringing loggers and listeners together")
5418 (description "@code{Log::Any} provides a standard log production API for
5419 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
5420 for log consumption, whether screen, file or another logging mechanism like
5421 @code{Log::Dispatch} or @code{Log::Log4perl}.
5422
5423 A CPAN module uses @code{Log::Any} to get a log producer object. An
5424 application, in turn, may choose one or more logging mechanisms via
5425 @code{Log::Any::Adapter}, or none at all.
5426
5427 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
5428 itself, which makes it appropriate for even small CPAN modules to use. It
5429 defaults to @code{null} logging activity, so a module can safely log without
5430 worrying about whether the application has chosen (or will ever choose) a
5431 logging mechanism.")
5432 (license (package-license perl))))
5433
5434 (define-public perl-log-any-adapter-log4perl
5435 (package
5436 (name "perl-log-any-adapter-log4perl")
5437 (version "0.09")
5438 (source
5439 (origin
5440 (method url-fetch)
5441 (uri (string-append
5442 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
5443 version
5444 ".tar.gz"))
5445 (sha256
5446 (base32
5447 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
5448 (build-system perl-build-system)
5449 (propagated-inputs
5450 `(("perl-log-any" ,perl-log-any)
5451 ("perl-log-log4perl" ,perl-log-log4perl)))
5452 (home-page
5453 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
5454 (synopsis "Log::Any adapter for Log::Log4perl")
5455 (description "@code{Log::Any::Adapter::Log4perl} provides a
5456 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
5457 (license (package-license perl))))
5458
5459 (define-public perl-log-log4perl
5460 (package
5461 (name "perl-log-log4perl")
5462 (version "1.49")
5463 (source
5464 (origin
5465 (method url-fetch)
5466 (uri (string-append
5467 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
5468 version
5469 ".tar.gz"))
5470 (sha256
5471 (base32
5472 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
5473 (build-system perl-build-system)
5474 (home-page
5475 "https://metacpan.org/release/Log-Log4perl")
5476 (synopsis "Log4j implementation for Perl")
5477 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
5478 the logging behaviour of your system from the outside. It implements the
5479 widely popular (Java-based) Log4j logging package in pure Perl.")
5480 (license (package-license perl))))
5481
5482 (define-public perl-log-report-optional
5483 (package
5484 (name "perl-log-report-optional")
5485 (version "1.06")
5486 (source (origin
5487 (method url-fetch)
5488 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5489 "Log-Report-Optional-" version ".tar.gz"))
5490 (sha256
5491 (base32
5492 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
5493 (build-system perl-build-system)
5494 (propagated-inputs
5495 `(("perl-string-print" ,perl-string-print)))
5496 (home-page "https://metacpan.org/release/Log-Report-Optional")
5497 (synopsis "Log::Report in the lightest form")
5498 (description
5499 "This module allows libraries to have a dependency to a small module
5500 instead of the full Log-Report distribution. The full power of
5501 @code{Log::Report} is only released when the main program uses that module.
5502 In that case, the module using the @code{Optional} will also use the full
5503 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
5504 version.")
5505 (license (package-license perl))))
5506
5507 (define-public perl-log-report
5508 (package
5509 (name "perl-log-report")
5510 (version "1.10")
5511 (source (origin
5512 (method url-fetch)
5513 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5514 "Log-Report-" version ".tar.gz"))
5515 (sha256
5516 (base32
5517 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
5518 (build-system perl-build-system)
5519 (propagated-inputs
5520 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5521 ("perl-log-report-optional" ,perl-log-report-optional)
5522 ("perl-string-print" ,perl-string-print)))
5523 (home-page "https://metacpan.org/release/Log-Report")
5524 (synopsis "Get messages to users and logs")
5525 (description
5526 "@code{Log::Report} combines three tasks which are closely related in
5527 one: logging, exceptions, and translations.")
5528 (license (package-license perl))))
5529
5530 (define-public perl-libintl-perl
5531 (package
5532 (name "perl-libintl-perl")
5533 (version "1.31")
5534 (source
5535 (origin
5536 (method url-fetch)
5537 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
5538 "libintl-perl-" version ".tar.gz"))
5539 (sha256
5540 (base32 "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"))))
5541 (build-system perl-build-system)
5542 (arguments
5543 `(#:phases
5544 (modify-phases %standard-phases
5545 (add-before 'configure 'set-perl-search-path
5546 (lambda _
5547 ;; Work around "dotless @INC" build failure.
5548 (setenv "PERL5LIB" (string-append (getcwd) ":"
5549 (getenv "PERL5LIB")))
5550 #t)))))
5551 (propagated-inputs
5552 `(("perl-file-sharedir" ,perl-file-sharedir)))
5553 (home-page "https://metacpan.org/release/libintl-perl")
5554 (synopsis "High-level interface to Uniforum message translation")
5555 (description "This package is an internationalization library for Perl
5556 that aims to be compatible with the Uniforum message translations system as
5557 implemented for example in GNU gettext.")
5558 (license gpl3+)))
5559
5560 (define-public perl-lingua-translit
5561 (package
5562 (name "perl-lingua-translit")
5563 (version "0.28")
5564 (source
5565 (origin
5566 (method url-fetch)
5567 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
5568 "Lingua-Translit-" version ".tar.gz"))
5569 (sha256
5570 (base32
5571 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
5572 (build-system perl-build-system)
5573 (home-page "https://metacpan.org/release/Lingua-Translit")
5574 (synopsis "Transliterate text between writing systems")
5575 (description "@code{Lingua::Translit} can be used to convert text from one
5576 writing system to another, based on national or international transliteration
5577 tables. Where possible a reverse transliteration is supported.")
5578 (license (package-license perl))))
5579
5580 (define-public perl-list-allutils
5581 (package
5582 (name "perl-list-allutils")
5583 (version "0.09")
5584 (source
5585 (origin
5586 (method url-fetch)
5587 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5588 "List-AllUtils-" version ".tar.gz"))
5589 (sha256
5590 (base32
5591 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
5592 (build-system perl-build-system)
5593 (native-inputs
5594 `(("perl-test-warnings" ,perl-test-warnings)))
5595 (propagated-inputs
5596 `(("perl-list-moreutils" ,perl-list-moreutils)
5597 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
5598 (home-page "https://metacpan.org/release/List-AllUtils")
5599 (synopsis "Combination of List::Util and List::MoreUtils")
5600 (description "This module exports all of the functions that either
5601 List::Util or List::MoreUtils defines, with preference to List::Util.")
5602 (license (package-license perl))))
5603
5604 (define-public perl-list-compare
5605 (package
5606 (name "perl-list-compare")
5607 (version "0.53")
5608 (source
5609 (origin
5610 (method url-fetch)
5611 (uri (string-append
5612 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
5613 version
5614 ".tar.gz"))
5615 (sha256
5616 (base32
5617 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
5618 (build-system perl-build-system)
5619 (native-inputs
5620 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
5621 (home-page "https://metacpan.org/release/List-Compare")
5622 (synopsis "Compare elements of two or more lists")
5623 (description "@code{List::Compare} provides a module to perform
5624 comparative operations on two or more lists. Provided operations include
5625 intersections, unions, unique elements, complements and many more.")
5626 (license (package-license perl))))
5627
5628 (define-public perl-list-moreutils
5629 (package
5630 (name "perl-list-moreutils")
5631 (version "0.428")
5632 (source
5633 (origin
5634 (method url-fetch)
5635 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5636 "List-MoreUtils-" version ".tar.gz"))
5637 (sha256
5638 (base32
5639 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
5640 (build-system perl-build-system)
5641 (arguments
5642 `(#:phases
5643 (modify-phases %standard-phases
5644 (add-before 'configure 'set-perl-search-path
5645 (lambda _
5646 ;; Work around "dotless @INC" build failure.
5647 (setenv "PERL5LIB"
5648 (string-append (getcwd) ":"
5649 (getenv "PERL5LIB")))
5650 #t)))))
5651 (native-inputs
5652 `(("perl-config-autoconf" ,perl-config-autoconf)
5653 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5654 (propagated-inputs
5655 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5656 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
5657 (home-page "https://metacpan.org/release/List-MoreUtils")
5658 (synopsis "Provide the stuff missing in List::Util")
5659 (description "List::MoreUtils provides some trivial but commonly needed
5660 functionality on lists which is not going to go into List::Util.")
5661 (license (package-license perl))))
5662
5663 (define-public perl-list-moreutils-xs
5664 (package
5665 (name "perl-list-moreutils-xs")
5666 (version "0.428")
5667 (source
5668 (origin
5669 (method url-fetch)
5670 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
5671 version ".tar.gz"))
5672 (sha256
5673 (base32
5674 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
5675 (build-system perl-build-system)
5676 (native-inputs
5677 `(("perl-config-autoconf" ,perl-config-autoconf)
5678 ("perl-inc-latest" ,perl-inc-latest)
5679 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5680 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
5681 (synopsis "Provide the stuff missing in List::Util in XS")
5682 (description "@code{List::MoreUtils::XS} provides some trivial but
5683 commonly needed functionality on lists which is not going to go into
5684 @code{List::Util}.")
5685 (license asl2.0)))
5686
5687 (define-public perl-list-someutils
5688 (package
5689 (name "perl-list-someutils")
5690 (version "0.56")
5691 (source
5692 (origin
5693 (method url-fetch)
5694 (uri (string-append
5695 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
5696 version
5697 ".tar.gz"))
5698 (sha256
5699 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
5700 (build-system perl-build-system)
5701 (native-inputs
5702 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
5703 (inputs
5704 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5705 ("perl-module-implementation"
5706 ,perl-module-implementation)))
5707 (home-page "https://metacpan.org/release/List-SomeUtils")
5708 (synopsis "Provide the stuff missing in List::Util")
5709 (description "@code{List::SomeUtils} provides some trivial but commonly
5710 needed functionality on lists which is not going to go into @code{List::Util}.
5711
5712 All of the below functions are implementable in only a couple of lines of Perl
5713 code. Using the functions from this module however should give slightly
5714 better performance as everything is implemented in C. The pure-Perl
5715 implementation of these functions only serves as a fallback in case the C
5716 portions of this module couldn't be compiled on this machine.")
5717 (license (package-license perl))))
5718
5719 (define-public perl-mailtools
5720 (package
5721 (name "perl-mailtools")
5722 (version "2.21")
5723 (source
5724 (origin
5725 (method url-fetch)
5726 (uri (string-append
5727 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
5728 version
5729 ".tar.gz"))
5730 (sha256
5731 (base32
5732 "1js43bp2dnd8n2rv8clsv749166jnyqnc91k4wkkmw5n4rlbvnaa"))))
5733 (build-system perl-build-system)
5734 (propagated-inputs
5735 `(("perl-timedate" ,perl-timedate)))
5736 (home-page
5737 "https://metacpan.org/release/MailTools")
5738 (synopsis "Bundle of ancient email modules")
5739 (description "MailTools contains the following modules:
5740 @table @asis
5741 @item Mail::Address
5742 Parse email address from a header line.
5743 @item Mail::Cap
5744 Interpret mailcap files: mappings of file-types to applications as used by
5745 many command-line email programs.
5746 @item Mail::Field
5747 Simplifies access to (some) email header fields. Used by Mail::Header.
5748 @item Mail::Filter
5749 Process Mail::Internet messages.
5750 @item Mail::Header
5751 Collection of Mail::Field objects, representing the header of a Mail::Internet
5752 object.
5753 @item Mail::Internet
5754 Represents a single email message, with header and body.
5755 @item Mail::Mailer
5756 Send Mail::Internet emails via direct smtp or local MTA's.
5757 @item Mail::Send
5758 Build a Mail::Internet object, and then send it out using Mail::Mailer.
5759 @item Mail::Util
5760 \"Smart functions\" you should not depend on.
5761 @end table")
5762 (license perl-license)))
5763
5764 (define-public perl-mail-sendmail
5765 (package
5766 (name "perl-mail-sendmail")
5767 (version "0.80")
5768 (source
5769 (origin
5770 (method url-fetch)
5771 (uri (string-append
5772 "mirror://cpan/authors/id/N/NE/NEILB/Mail-Sendmail-"
5773 version
5774 ".tar.gz"))
5775 (sha256
5776 (base32
5777 "1r38qbkj7jwj8cqy1rnqzkk81psxi08b1aiq392817f3bk5ri2jv"))))
5778 (build-system perl-build-system)
5779 (arguments `(#:tests? #f)) ;socket not available during build
5780 (home-page "https://metacpan.org/release/Mail-Sendmail")
5781 (synopsis "Simple platform independent mailer")
5782 (description "Mail::Sendmail is a pure perl module that provides a
5783 simple means to send email from a perl script. The module only
5784 requires Perl5 and a network connection.")
5785 (license perl-license)))
5786
5787 (define-public perl-math-bezier
5788 (package
5789 (name "perl-math-bezier")
5790 (version "0.01")
5791 (source (origin
5792 (method url-fetch)
5793 (uri (string-append
5794 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
5795 version ".tar.gz"))
5796 (sha256
5797 (base32
5798 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
5799 (build-system perl-build-system)
5800 (home-page "https://metacpan.org/release/Math-Bezier")
5801 (synopsis "Solution of bezier curves")
5802 (description "This module implements the algorithm for the solution of Bezier
5803 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
5804 Bezier Curve Drawing\".")
5805 (license perl-license)))
5806
5807 (define-public perl-math-round
5808 (package
5809 (name "perl-math-round")
5810 (version "0.07")
5811 (source (origin
5812 (method url-fetch)
5813 (uri (string-append
5814 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
5815 version ".tar.gz"))
5816 (sha256
5817 (base32
5818 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
5819 (build-system perl-build-system)
5820 (home-page "https://metacpan.org/release/Math-Round")
5821 (synopsis "Perl extension for rounding numbers")
5822 (description "@code{Math::Round} provides functions to round numbers,
5823 both positive and negative, in various ways.")
5824 (license perl-license)))
5825
5826 (define-public perl-math-vecstat
5827 (package
5828 (name "perl-math-vecstat")
5829 (version "0.08")
5830 (source (origin
5831 (method url-fetch)
5832 (uri (string-append
5833 "mirror://cpan/authors/id/A/AS/ASPINELLI/Math-VecStat-"
5834 version ".tar.gz"))
5835 (sha256
5836 (base32
5837 "03bdcl9pn2bc9b50c50nhnr7m9wafylnb3v21zlch98h9c78x6j0"))))
5838 (build-system perl-build-system)
5839 (home-page "http://search.cpan.org/dist/Math-VecStat")
5840 (synopsis "Basic numeric stats on vectors")
5841 (description "This package provides some basic statistics on numerical
5842 vectors. All the subroutines can take a reference to the vector to be
5843 operated on.")
5844 (license (package-license perl))))
5845
5846 (define-public perl-memoize
5847 (package
5848 (name "perl-memoize")
5849 (version "1.03")
5850 (source (origin
5851 (method url-fetch)
5852 (uri (string-append
5853 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
5854 version".tgz"))
5855 (sha256
5856 (base32
5857 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
5858 (build-system perl-build-system)
5859 (home-page "https://metacpan.org/release/Memoize")
5860 (synopsis "Make functions faster by trading space for time")
5861 (description "This package transparently speeds up functions by caching
5862 return values, trading space for time.")
5863 (license perl-license)))
5864
5865 (define-public perl-memoize-expirelru
5866 (package
5867 (name "perl-memoize-expirelru")
5868 (version "0.56")
5869 (source
5870 (origin
5871 (method url-fetch)
5872 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
5873 "Memoize-ExpireLRU-" version ".tar.gz"))
5874 (sha256
5875 (base32
5876 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
5877 (build-system perl-build-system)
5878 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
5879 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
5880 (description "This module implements an expiry policy for Memoize that
5881 follows LRU semantics, that is, the last n results, where n is specified as
5882 the argument to the CACHESIZE parameter, will be cached.")
5883 (license (package-license perl))))
5884
5885 (define-public perl-mime-charset
5886 (package
5887 (name "perl-mime-charset")
5888 (version "1.012.2")
5889 (source (origin
5890 (method url-fetch)
5891 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
5892 "MIME-Charset-" version ".tar.gz"))
5893 (sha256
5894 (base32
5895 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
5896 (build-system perl-build-system)
5897 (home-page "https://metacpan.org/release/MIME-Charset")
5898 (synopsis "Charset information for MIME messages")
5899 (description
5900 "@code{MIME::Charset} provides information about character sets used for
5901 MIME messages on Internet.")
5902 (license (package-license perl))))
5903
5904 (define-public perl-mime-tools
5905 (package
5906 (name "perl-mime-tools")
5907 (version "5.509")
5908 (source
5909 (origin
5910 (method url-fetch)
5911 (uri (string-append
5912 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
5913 version
5914 ".tar.gz"))
5915 (sha256
5916 (base32
5917 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
5918 (build-system perl-build-system)
5919 (native-inputs
5920 `(("perl-test-deep" ,perl-test-deep)))
5921 (inputs
5922 `(("perl-convert-binhex" ,perl-convert-binhex)))
5923 (propagated-inputs
5924 `(("perl-mailtools" ,perl-mailtools)))
5925 (home-page
5926 "https://metacpan.org/release/MIME-tools")
5927 (synopsis "Tools to manipulate MIME messages")
5928 (description
5929 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
5930 decoding, and generating single- or multipart (even nested multipart) MIME
5931 messages.")
5932 (license perl-license)))
5933
5934 (define-public perl-mime-types
5935 (package
5936 (name "perl-mime-types")
5937 (version "2.17")
5938 (source
5939 (origin
5940 (method url-fetch)
5941 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5942 "MIME-Types-" version ".tar.gz"))
5943 (sha256
5944 (base32
5945 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
5946 (build-system perl-build-system)
5947 (home-page "https://metacpan.org/release/MIME-Types")
5948 (synopsis "Definition of MIME types")
5949 (description "This module provides a list of known mime-types, combined
5950 from various sources. For instance, it contains all IANA types and the
5951 knowledge of Apache.")
5952 (license (package-license perl))))
5953
5954 (define-public perl-mixin-linewise
5955 (package
5956 (name "perl-mixin-linewise")
5957 (version "0.108")
5958 (source (origin
5959 (method url-fetch)
5960 (uri (string-append
5961 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
5962 version ".tar.gz"))
5963 (sha256
5964 (base32
5965 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
5966 (build-system perl-build-system)
5967 (inputs
5968 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
5969 ("perl-sub-exporter" ,perl-sub-exporter)))
5970 (home-page "https://metacpan.org/release/Mixin-Linewise")
5971 (synopsis "Write your linewise code for handles; this does the rest")
5972 (description "It's boring to deal with opening files for IO, converting
5973 strings to handle-like objects, and all that. With
5974 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
5975 just write a method to handle handles, and methods for handling strings and
5976 file names are added for you.")
5977 (license (package-license perl))))
5978
5979 (define-public perl-modern-perl
5980 (package
5981 (name "perl-modern-perl")
5982 (version "1.20181021")
5983 (source
5984 (origin
5985 (method url-fetch)
5986 (uri (string-append
5987 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
5988 version ".tar.gz"))
5989 (sha256
5990 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
5991 (build-system perl-build-system)
5992 (native-inputs
5993 `(("perl-module-build" ,perl-module-build)))
5994 (home-page
5995 "https://metacpan.org/release/Modern-Perl")
5996 (synopsis
5997 "Enable all of the features of Modern Perl with one import")
5998 (description "@code{Modern::Perl} provides a simple way to enable
5999 multiple, by now, standard libraries in a Perl program.")
6000 (license (package-license perl))))
6001
6002 (define-public perl-module-build-tiny
6003 (package
6004 (name "perl-module-build-tiny")
6005 (version "0.039")
6006 (source
6007 (origin
6008 (method url-fetch)
6009 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6010 "Module-Build-Tiny-" version ".tar.gz"))
6011 (sha256
6012 (base32
6013 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
6014 (build-system perl-build-system)
6015 (native-inputs
6016 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6017 ("perl-extutils-config" ,perl-extutils-config)
6018 ("perl-extutils-helpers" ,perl-extutils-helpers)
6019 ("perl-test-harness" ,perl-test-harness)))
6020 (propagated-inputs
6021 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6022 ("perl-extutils-config" ,perl-extutils-config)
6023 ("perl-extutils-helpers" ,perl-extutils-helpers)
6024 ("perl-test-harness" ,perl-test-harness)))
6025 (home-page "https://metacpan.org/release/Module-Build-Tiny")
6026 (synopsis "Tiny replacement for Module::Build")
6027 (description "Many Perl distributions use a Build.PL file instead of a
6028 Makefile.PL file to drive distribution configuration, build, test and
6029 installation. Traditionally, Build.PL uses Module::Build as the underlying
6030 build system. This module provides a simple, lightweight, drop-in
6031 replacement. Whereas Module::Build has over 6,700 lines of code; this module
6032 has less than 120, yet supports the features needed by most distributions.")
6033 (license (package-license perl))))
6034
6035 (define-public perl-module-build-withxspp
6036 (package
6037 (name "perl-module-build-withxspp")
6038 (version "0.14")
6039 (source
6040 (origin
6041 (method url-fetch)
6042 (uri (string-append
6043 "mirror://cpan/authors/id/S/SM/SMUELLER/Module-Build-WithXSpp-"
6044 version
6045 ".tar.gz"))
6046 (sha256
6047 (base32
6048 "0d39fjg9c0n820bk3fb50vvlwhdny4hdl69xmlyzql5xzp4cicsk"))))
6049 (build-system perl-build-system)
6050 (native-inputs
6051 `(("perl-module-build" ,perl-module-build)))
6052 (propagated-inputs
6053 `(("perl-extutils-cppguess" ,perl-extutils-cppguess)
6054 ("perl-extutils-xspp" ,perl-extutils-xspp)
6055 ("perl-module-build" ,perl-module-build)))
6056 (home-page
6057 "https://metacpan.org/release/Module-Build-WithXSpp")
6058 (synopsis
6059 "The module provides an XS++ enhanced flavour of Module::Build")
6060 (description "This subclass of Module::Build adds some tools and
6061 processes to make it easier to use for wrapping C++ using XS++
6062 (ExtUtils::XSpp).")
6063 (license (package-license perl))))
6064
6065 (define-public perl-module-build-xsutil
6066 (package
6067 (name "perl-module-build-xsutil")
6068 (version "0.16")
6069 (source (origin
6070 (method url-fetch)
6071 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
6072 "Module-Build-XSUtil-" version ".tar.gz"))
6073 (sha256
6074 (base32
6075 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
6076 (build-system perl-build-system)
6077 (native-inputs
6078 `(("perl-capture-tiny" ,perl-capture-tiny)
6079 ("perl-cwd-guard" ,perl-cwd-guard)
6080 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
6081 ("perl-module-build" ,perl-module-build)))
6082 (propagated-inputs
6083 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
6084 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
6085 (synopsis "Module::Build class for building XS modules")
6086 (description
6087 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
6088 for support building XS modules.
6089
6090 This is a list of a new parameters in the @code{Module::Build::new} method:
6091
6092 @enumerate
6093 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
6094 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
6095 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
6096 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
6097 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
6098 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
6099 @file{ppport.h}, and defines some portability stuff which are not supported by
6100 @file{ppport.h}.
6101
6102 It is ported from @code{Module::Install::XSUtil}.
6103 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
6104 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
6105 debug options.
6106 @end enumerate")
6107 (license (package-license perl))))
6108
6109 (define-public perl-module-find
6110 (package
6111 (name "perl-module-find")
6112 (version "0.13")
6113 (source
6114 (origin
6115 (method url-fetch)
6116 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
6117 "Module-Find-" version ".tar.gz"))
6118 (sha256
6119 (base32
6120 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
6121 (build-system perl-build-system)
6122 (home-page "https://metacpan.org/release/Module-Find")
6123 (synopsis "Find and use installed modules in a (sub)category")
6124 (description "Module::Find lets you find and use modules in categories.
6125 This can be useful for auto-detecting driver or plugin modules. You can
6126 differentiate between looking in the category itself or in all
6127 subcategories.")
6128 (license (package-license perl))))
6129
6130 (define-public perl-module-implementation
6131 (package
6132 (name "perl-module-implementation")
6133 (version "0.09")
6134 (source
6135 (origin
6136 (method url-fetch)
6137 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6138 "Module-Implementation-" version ".tar.gz"))
6139 (sha256
6140 (base32
6141 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
6142 (build-system perl-build-system)
6143 (native-inputs
6144 `(("perl-test-fatal" ,perl-test-fatal)
6145 ("perl-test-requires" ,perl-test-requires)))
6146 (propagated-inputs
6147 `(("perl-module-runtime" ,perl-module-runtime)
6148 ("perl-try-tiny" ,perl-try-tiny)))
6149 (home-page "https://metacpan.org/release/Module-Implementation")
6150 (synopsis "Loads alternate underlying implementations for a module")
6151 (description "This module abstracts out the process of choosing one of
6152 several underlying implementations for a module. This can be used to provide
6153 XS and pure Perl implementations of a module, or it could be used to load an
6154 implementation for a given OS or any other case of needing to provide multiple
6155 implementations.")
6156 (license artistic2.0)))
6157
6158 (define-public perl-module-install
6159 (package
6160 (name "perl-module-install")
6161 (version "1.19")
6162 (source
6163 (origin
6164 (method url-fetch)
6165 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6166 "Module-Install-" version ".tar.gz"))
6167 (sha256
6168 (base32
6169 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
6170 (build-system perl-build-system)
6171 (native-inputs
6172 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
6173 (propagated-inputs
6174 `(("perl-archive-zip" ,perl-archive-zip)
6175 ("perl-file-homedir" ,perl-file-homedir)
6176 ("perl-file-remove" ,perl-file-remove)
6177 ("perl-json" ,perl-json)
6178 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
6179 ;; would cause a circular dependency with (gnu packages web), so we
6180 ;; leave it out. It may be resolved at runtime, however.
6181 ;("perl-libwww-perl" ,perl-libwww-perl)
6182 ("perl-module-scandeps" ,perl-module-scandeps)
6183 ("perl-par-dist" ,perl-par-dist)
6184 ("perl-yaml-tiny" ,perl-yaml-tiny)))
6185 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
6186 ;; character handling.
6187 (arguments `(#:tests? #f))
6188 (home-page "https://metacpan.org/release/Module-Install")
6189 (synopsis "Standalone, extensible Perl module installer")
6190 (description "Module::Install is a package for writing installers for
6191 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
6192 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
6193 installation version 5.005 or newer.")
6194 (license (package-license perl))))
6195
6196 (define-public perl-module-manifest
6197 (package
6198 (name "perl-module-manifest")
6199 (version "1.09")
6200 (source
6201 (origin
6202 (method url-fetch)
6203 (uri (string-append
6204 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
6205 version ".tar.gz"))
6206 (sha256
6207 (base32
6208 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
6209 (build-system perl-build-system)
6210 (native-inputs
6211 `(("perl-test-exception" ,perl-test-exception)
6212 ("perl-test-warn" ,perl-test-warn)))
6213 (propagated-inputs
6214 `(("perl-params-util" ,perl-params-util)))
6215 (home-page "https://metacpan.org/release/Module-Manifest")
6216 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
6217 (description
6218 "@code{Module::Manifest} is a simple utility module created originally for
6219 use in @code{Module::Inspector}.
6220
6221 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
6222 examine the contents, and perform some simple tasks. It can also load the
6223 @file{MANIFEST.SKIP} file and check that.")
6224 (license perl-license)))
6225
6226 (define-public perl-module-pluggable
6227 (package
6228 (name "perl-module-pluggable")
6229 (version "5.2")
6230 (source
6231 (origin
6232 (method url-fetch)
6233 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
6234 "Module-Pluggable-" version ".tar.gz"))
6235 (sha256
6236 (base32
6237 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
6238 (patches (search-patches "perl-module-pluggable-search.patch"))))
6239 (build-system perl-build-system)
6240 (home-page "https://metacpan.org/release/Module-Pluggable")
6241 (synopsis "Give your Perl module the ability to have plugins")
6242 (description "This module provides a simple but extensible way of having
6243 @code{plugins} for your Perl module.")
6244 (license (package-license perl))))
6245
6246 (define-public perl-module-runtime
6247 (package
6248 (name "perl-module-runtime")
6249 (version "0.016")
6250 (source
6251 (origin
6252 (method url-fetch)
6253 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
6254 "Module-Runtime-" version ".tar.gz"))
6255 (sha256
6256 (base32
6257 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
6258 (build-system perl-build-system)
6259 (native-inputs `(("perl-module-build" ,perl-module-build)))
6260 (home-page "https://metacpan.org/release/Module-Runtime")
6261 (synopsis "Perl runtime module handling")
6262 (description "The functions exported by this module deal with runtime
6263 handling of Perl modules, which are normally handled at compile time.")
6264 (license (package-license perl))))
6265
6266 (define-public perl-module-runtime-conflicts
6267 (package
6268 (name "perl-module-runtime-conflicts")
6269 (version "0.003")
6270 (source
6271 (origin
6272 (method url-fetch)
6273 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6274 "Module-Runtime-Conflicts-" version ".tar.gz"))
6275 (sha256
6276 (base32
6277 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
6278 (build-system perl-build-system)
6279 (native-inputs
6280 `(("perl-module-build" ,perl-module-build)))
6281 (propagated-inputs
6282 `(("perl-module-runtime" ,perl-module-runtime)
6283 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
6284 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
6285 (synopsis "Provide information on conflicts for Module::Runtime")
6286 (description "This module provides conflicts checking for Module::Runtime,
6287 which had a recent release that broke some versions of Moose. It is called
6288 from Moose::Conflicts and moose-outdated.")
6289 (license (package-license perl))))
6290
6291 (define-public perl-module-scandeps
6292 (package
6293 (name "perl-module-scandeps")
6294 (version "1.27")
6295 (source
6296 (origin
6297 (method url-fetch)
6298 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6299 "Module-ScanDeps-" version ".tar.gz"))
6300 (sha256
6301 (base32
6302 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
6303 (build-system perl-build-system)
6304 (native-inputs
6305 `(("perl-test-requires" ,perl-test-requires)))
6306 (home-page "https://metacpan.org/release/Module-ScanDeps")
6307 (synopsis "Recursively scan Perl code for dependencies")
6308 (description "Module::ScanDeps is a module to recursively scan Perl
6309 programs for dependencies.")
6310 (license (package-license perl))))
6311
6312 (define-public perl-module-util
6313 (package
6314 (name "perl-module-util")
6315 (version "1.09")
6316 (source
6317 (origin
6318 (method url-fetch)
6319 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
6320 "Module-Util-" version ".tar.gz"))
6321 (sha256
6322 (base32
6323 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
6324 (build-system perl-build-system)
6325 (native-inputs
6326 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
6327 (home-page "https://metacpan.org/release/Module-Util")
6328 (synopsis "Module name tools and transformations")
6329 (description "This module provides a few useful functions for manipulating
6330 module names. Its main aim is to centralise some of the functions commonly
6331 used by modules that manipulate other modules in some way, like converting
6332 module names to relative paths.")
6333 (license (package-license perl))))
6334
6335 (define-public perl-moo
6336 (package
6337 (name "perl-moo")
6338 (version "1.007000")
6339 (source
6340 (origin
6341 (method url-fetch)
6342 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6343 "Moo-" version ".tar.gz"))
6344 (sha256
6345 (base32
6346 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
6347 (build-system perl-build-system)
6348 (native-inputs
6349 `(("perl-test-fatal" ,perl-test-fatal)))
6350 (propagated-inputs
6351 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
6352 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
6353 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6354 ("perl-import-into" ,perl-import-into)
6355 ("perl-module-runtime" ,perl-module-runtime)
6356 ("perl-role-tiny" ,perl-role-tiny)
6357 ("perl-strictures" ,perl-strictures)))
6358 (home-page "https://metacpan.org/release/Moo")
6359 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
6360 (description "Moo is an extremely light-weight Object Orientation system.
6361 It allows one to concisely define objects and roles with a convenient syntax
6362 that avoids the details of Perl's object system. Moo contains a subset of
6363 Moose and is optimised for rapid startup.")
6364 (license (package-license perl))))
6365
6366 ;; Some packages don't yet work with this newer version of ‘Moo’.
6367 (define-public perl-moo-2
6368 (package
6369 (inherit perl-moo)
6370 (name "perl-moo-2")
6371 (version "2.003006")
6372 (source
6373 (origin
6374 (method url-fetch)
6375 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6376 "Moo-" version ".tar.gz"))
6377 (sha256
6378 (base32 "0wi4gyp5kn4lbags0hrax3c9jj9spxg4d11fbrdh0ican4m0kcmw"))))
6379 (propagated-inputs
6380 `(("perl-role-tiny" ,perl-role-tiny-2)
6381 ("perl-sub-name" ,perl-sub-name)
6382 ("perl-sub-quote" ,perl-sub-quote)
6383 ("perl-strictures" ,perl-strictures-2)
6384 ,@(alist-delete "perl-strictures"
6385 (alist-delete "perl-role-tiny"
6386 (package-propagated-inputs perl-moo)))))
6387 (arguments
6388 `(#:phases
6389 (modify-phases %standard-phases
6390 (add-before 'configure 'set-perl-search-path
6391 (lambda _
6392 ;; Use perl-strictures for testing.
6393 (setenv "MOO_FATAL_WARNINGS" "=1")
6394 #t)))))))
6395
6396 (define-public perl-moose
6397 (package
6398 (name "perl-moose")
6399 (version "2.2012")
6400 (source (origin
6401 (method url-fetch)
6402 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6403 "Moose-" version ".tar.gz"))
6404 (sha256
6405 (base32
6406 "0s9m2pskc8h1k94pbvx0lvf0xgv9xca349isbcsrqdqnkmxf9fs6"))))
6407 (build-system perl-build-system)
6408 (native-inputs
6409 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6410 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6411 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
6412 ("perl-test-fatal" ,perl-test-fatal)
6413 ("perl-test-requires" ,perl-test-requires)
6414 ("perl-test-warnings" ,perl-test-warnings)))
6415 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
6416 ;; # === Other Modules ===
6417 ;; #
6418 ;; # Module Want Have
6419 ;; # ---------------------------- ---- -------
6420 ;; # Algorithm::C3 any missing
6421 ;; # DBM::Deep any missing
6422 ;; # DateTime any missing
6423 ;; # DateTime::Calendar::Mayan any missing
6424 ;; # DateTime::Format::MySQL any missing
6425 ;; # Declare::Constraints::Simple any missing
6426 ;; # Dist::CheckConflicts any 0.11
6427 ;; # HTTP::Headers any missing
6428 ;; # IO::File any 1.16
6429 ;; # IO::String any missing
6430 ;; # Locale::US any missing
6431 ;; # Module::Refresh any missing
6432 ;; # MooseX::NonMoose any missing
6433 ;; # Params::Coerce any missing
6434 ;; # Regexp::Common any missing
6435 ;; # SUPER any missing
6436 ;; # Test::Deep any missing
6437 ;; # Test::DependentModules any missing
6438 ;; # Test::LeakTrace any missing
6439 ;; # Test::Output any missing
6440 ;; # URI any missing
6441 (propagated-inputs
6442 `(("perl-class-load" ,perl-class-load)
6443 ("perl-class-load-xs" ,perl-class-load-xs)
6444 ("perl-data-optlist" ,perl-data-optlist)
6445 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6446 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
6447 ("perl-devel-partialdump" ,perl-devel-partialdump)
6448 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
6449 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6450 ("perl-eval-closure" ,perl-eval-closure)
6451 ("perl-list-moreutils" ,perl-list-moreutils)
6452 ("perl-module-runtime" ,perl-module-runtime)
6453 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
6454 ("perl-mro-compat" ,perl-mro-compat)
6455 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
6456 ("perl-package-stash" ,perl-package-stash)
6457 ("perl-package-stash-xs" ,perl-package-stash-xs)
6458 ("perl-params-util" ,perl-params-util)
6459 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
6460 ("perl-sub-exporter" ,perl-sub-exporter)
6461 ("perl-sub-name" ,perl-sub-name)
6462 ("perl-task-weaken" ,perl-task-weaken)
6463 ("perl-try-tiny" ,perl-try-tiny)))
6464 (home-page "https://metacpan.org/release/Moose")
6465 (synopsis "Postmodern object system for Perl 5")
6466 (description
6467 "Moose is a complete object system for Perl 5. It provides keywords for
6468 attribute declaration, object construction, inheritance, and maybe more. With
6469 Moose, you define your class declaratively, without needing to know about
6470 blessed hashrefs, accessor methods, and so on. You can concentrate on the
6471 logical structure of your classes, focusing on \"what\" rather than \"how\".
6472 A class definition with Moose reads like a list of very concise English
6473 sentences.")
6474 (license (package-license perl))))
6475
6476 (define-public perl-moosex-emulate-class-accessor-fast
6477 (package
6478 (name "perl-moosex-emulate-class-accessor-fast")
6479 (version "0.009032")
6480 (source
6481 (origin
6482 (method url-fetch)
6483 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6484 "MooseX-Emulate-Class-Accessor-Fast-"
6485 version ".tar.gz"))
6486 (sha256
6487 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
6488 (build-system perl-build-system)
6489 (native-inputs
6490 `(("perl-module-install" ,perl-module-install)
6491 ("perl-test-exception" ,perl-test-exception)))
6492 (propagated-inputs
6493 `(("perl-moose" ,perl-moose)))
6494 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
6495 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
6496 (description "This module attempts to emulate the behavior of
6497 Class::Accessor::Fast as accurately as possible using the Moose attribute
6498 system. The public API of Class::Accessor::Fast is wholly supported, but the
6499 private methods are not.")
6500 (license (package-license perl))))
6501
6502 (define-public perl-moosex-getopt
6503 (package
6504 (name "perl-moosex-getopt")
6505 (version "0.74")
6506 (source
6507 (origin
6508 (method url-fetch)
6509 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6510 "MooseX-Getopt-" version ".tar.gz"))
6511 (sha256
6512 (base32 "091crga5gjyhj2lz55w3ba37xq6pmjg5dx5xccsrzghy8cxxzq0x"))))
6513 (build-system perl-build-system)
6514 (native-inputs
6515 `(("perl-module-build" ,perl-module-build)
6516 ("perl-module-build-tiny" ,perl-module-build-tiny)
6517 ("perl-path-tiny" ,perl-path-tiny)
6518 ("perl-test-deep" ,perl-test-deep)
6519 ("perl-test-fatal" ,perl-test-fatal)
6520 ("perl-test-needs" ,perl-test-needs)
6521 ("perl-test-requires" ,perl-test-requires)
6522 ("perl-test-trap" ,perl-test-trap)
6523 ("perl-test-warnings" ,perl-test-warnings)))
6524 (propagated-inputs
6525 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6526 ("perl-moose" ,perl-moose)
6527 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
6528 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6529 (home-page "https://metacpan.org/release/MooseX-Getopt")
6530 (synopsis "Moose role for processing command line options")
6531 (description "This is a Moose role which provides an alternate constructor
6532 for creating objects using parameters passed in from the command line.")
6533 (license (package-license perl))))
6534
6535 (define-public perl-moosex-markasmethods
6536 (package
6537 (name "perl-moosex-markasmethods")
6538 (version "0.15")
6539 (source
6540 (origin
6541 (method url-fetch)
6542 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
6543 "MooseX-MarkAsMethods-" version ".tar.gz"))
6544 (sha256
6545 (base32
6546 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
6547 (build-system perl-build-system)
6548 (inputs
6549 `(("perl-moose" ,perl-moose)
6550 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6551 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
6552 (synopsis "Mark overload code symbols as methods")
6553 (description "MooseX::MarkAsMethods allows one to easily mark certain
6554 functions as Moose methods. This will allow other packages such as
6555 namespace::autoclean to operate without blowing away your overloads. After
6556 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
6557 being methods, and class extension as well as composition from roles with
6558 overloads will \"just work\".")
6559 (license lgpl2.1)))
6560
6561 (define-public perl-moosex-methodattributes
6562 (package
6563 (name "perl-moosex-methodattributes")
6564 (version "0.31")
6565 (source
6566 (origin
6567 (method url-fetch)
6568 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6569 "MooseX-MethodAttributes-" version ".tar.gz"))
6570 (sha256
6571 (base32
6572 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
6573 (build-system perl-build-system)
6574 (native-inputs
6575 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6576 ("perl-test-fatal" ,perl-test-fatal)
6577 ("perl-test-requires" ,perl-test-requires)))
6578 (propagated-inputs
6579 `(("perl-moose" ,perl-moose)
6580 ("perl-moosex-types" ,perl-moosex-types)
6581 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6582 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
6583 (synopsis "Code attribute introspection")
6584 (description "This module allows code attributes of methods to be
6585 introspected using Moose meta method objects.")
6586 (license (package-license perl))))
6587
6588 (define-public perl-moosex-nonmoose
6589 (package
6590 (name "perl-moosex-nonmoose")
6591 (version "0.26")
6592 (source
6593 (origin
6594 (method url-fetch)
6595 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6596 "MooseX-NonMoose-" version ".tar.gz"))
6597 (sha256
6598 (base32
6599 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
6600 (build-system perl-build-system)
6601 (native-inputs
6602 `(("perl-moose" ,perl-moose)
6603 ("perl-test-fatal" ,perl-test-fatal)))
6604 (propagated-inputs
6605 `(("perl-list-moreutils" ,perl-list-moreutils)
6606 ("perl-module-runtime" ,perl-module-runtime)
6607 ("perl-moose" ,perl-moose)
6608 ("perl-try-tiny" ,perl-try-tiny)))
6609 (home-page "https://metacpan.org/release/MooseX-NonMoose")
6610 (synopsis "Subclassing of non-Moose classes")
6611 (description "MooseX::NonMoose allows for easily subclassing non-Moose
6612 classes with Moose, taking care of the details connected with doing this, such
6613 as setting up proper inheritance from Moose::Object and installing (and
6614 inlining, at make_immutable time) a constructor that makes sure things like
6615 BUILD methods are called. It tries to be as non-intrusive as possible.")
6616 (license (package-license perl))))
6617
6618 (define-public perl-moosex-params-validate
6619 (package
6620 (name "perl-moosex-params-validate")
6621 (version "0.21")
6622 (source
6623 (origin
6624 (method url-fetch)
6625 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6626 "MooseX-Params-Validate-" version ".tar.gz"))
6627 (sha256
6628 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
6629 (build-system perl-build-system)
6630 (native-inputs
6631 `(("perl-moose" ,perl-moose)
6632 ("perl-test-fatal" ,perl-test-fatal)))
6633 (propagated-inputs
6634 `(("perl-devel-caller" ,perl-devel-caller)
6635 ("perl-moose" ,perl-moose)
6636 ("perl-params-validate" ,perl-params-validate)
6637 ("perl-sub-exporter" ,perl-sub-exporter)))
6638 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
6639 (synopsis "Extension of Params::Validate using Moose's types")
6640 (description "This module fills a gap in Moose by adding method parameter
6641 validation to Moose.")
6642 (license (package-license perl))))
6643
6644 (define-public perl-moosex-relatedclassroles
6645 (package
6646 (name "perl-moosex-relatedclassroles")
6647 (version "0.004")
6648 (source
6649 (origin
6650 (method url-fetch)
6651 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
6652 "MooseX-RelatedClassRoles-" version ".tar.gz"))
6653 (sha256
6654 (base32
6655 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
6656 (build-system perl-build-system)
6657 (propagated-inputs
6658 `(("perl-moose" ,perl-moose)
6659 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
6660 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
6661 (synopsis "Apply roles to a related Perl class")
6662 (description "This module applies roles to make a subclass instead of
6663 manually setting up a subclass.")
6664 (license (package-license perl))))
6665
6666 (define-public perl-moosex-role-parameterized
6667 (package
6668 (name "perl-moosex-role-parameterized")
6669 (version "1.10")
6670 (source
6671 (origin
6672 (method url-fetch)
6673 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6674 "MooseX-Role-Parameterized-" version ".tar.gz"))
6675 (sha256
6676 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
6677 (build-system perl-build-system)
6678 (native-inputs
6679 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6680 ("perl-module-build" ,perl-module-build)
6681 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
6682 ("perl-test-fatal" ,perl-test-fatal)
6683 ("perl-test-requires" ,perl-test-requires)))
6684 (propagated-inputs
6685 `(("perl-moose" ,perl-moose)
6686 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6687 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
6688 (synopsis "Moose roles with composition parameters")
6689 (description "Because Moose roles serve many different masters, they
6690 usually provide only the least common denominator of functionality. To
6691 empower roles further, more configurability than -alias and -excludes is
6692 required. Perhaps your role needs to know which method to call when it is
6693 done processing, or what default value to use for its url attribute.
6694 Parameterized roles offer a solution to these (and other) kinds of problems.")
6695 (license (package-license perl))))
6696
6697 (define-public perl-moosex-role-withoverloading
6698 (package
6699 (name "perl-moosex-role-withoverloading")
6700 (version "0.17")
6701 (source
6702 (origin
6703 (method url-fetch)
6704 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6705 "MooseX-Role-WithOverloading-" version ".tar.gz"))
6706 (sha256
6707 (base32
6708 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
6709 (build-system perl-build-system)
6710 (propagated-inputs
6711 `(("perl-aliased" ,perl-aliased)
6712 ("perl-moose" ,perl-moose)
6713 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6714 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
6715 (synopsis "Roles which support overloading")
6716 (description "MooseX::Role::WithOverloading allows you to write a
6717 Moose::Role which defines overloaded operators and allows those overload
6718 methods to be composed into the classes/roles/instances it's compiled to,
6719 where plain Moose::Roles would lose the overloading.")
6720 (license (package-license perl))))
6721
6722 (define-public perl-moosex-semiaffordanceaccessor
6723 (package
6724 (name "perl-moosex-semiaffordanceaccessor")
6725 (version "0.10")
6726 (source
6727 (origin
6728 (method url-fetch)
6729 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6730 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
6731 (sha256
6732 (base32
6733 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
6734 (build-system perl-build-system)
6735 (propagated-inputs
6736 `(("perl-moose" ,perl-moose)))
6737 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
6738 (synopsis "Name your accessors foo() and set_foo()")
6739 (description "This module does not provide any methods. Simply loading it
6740 changes the default naming policy for the loading class so that accessors are
6741 separated into get and set methods. The get methods have the same name as the
6742 accessor, while set methods are prefixed with \"_set_\".")
6743 (license artistic2.0)))
6744
6745 (define-public perl-moosex-strictconstructor
6746 (package
6747 (name "perl-moosex-strictconstructor")
6748 (version "0.19")
6749 (source
6750 (origin
6751 (method url-fetch)
6752 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6753 "MooseX-StrictConstructor-" version ".tar.gz"))
6754 (sha256
6755 (base32
6756 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
6757 (build-system perl-build-system)
6758 (native-inputs
6759 `(("perl-moose" ,perl-moose)
6760 ("perl-test-fatal" ,perl-test-fatal)))
6761 (propagated-inputs
6762 `(("perl-moose" ,perl-moose)
6763 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6764 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
6765 (synopsis "Strict object constructors for Moose")
6766 (description "Simply loading this module makes your constructors
6767 \"strict\". If your constructor is called with an attribute init argument
6768 that your class does not declare, then it calls Moose->throw_error().")
6769 (license artistic2.0)))
6770
6771 (define-public perl-moosex-traits-pluggable
6772 (package
6773 (name "perl-moosex-traits-pluggable")
6774 (version "0.12")
6775 (source
6776 (origin
6777 (method url-fetch)
6778 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
6779 "MooseX-Traits-Pluggable-" version ".tar.gz"))
6780 (sha256
6781 (base32
6782 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
6783 (build-system perl-build-system)
6784 (native-inputs
6785 `(("perl-moose" ,perl-moose)
6786 ("perl-test-exception" ,perl-test-exception)))
6787 (propagated-inputs
6788 `(("perl-class-load" ,perl-class-load)
6789 ("perl-list-moreutils" ,perl-list-moreutils)
6790 ("perl-moose" ,perl-moose)
6791 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6792 (home-page
6793 "https://metacpan.org/release/MooseX-Traits-Pluggable")
6794 (synopsis "Trait loading and resolution for Moose")
6795 (description "Adds support on top of MooseX::Traits for class precedence
6796 search for traits and some extra attributes.")
6797 (license (package-license perl))))
6798
6799 (define-public perl-moosex-types
6800 (package
6801 (name "perl-moosex-types")
6802 (version "0.45")
6803 (source
6804 (origin
6805 (method url-fetch)
6806 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6807 "MooseX-Types-" version ".tar.gz"))
6808 (sha256
6809 (base32
6810 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
6811 (build-system perl-build-system)
6812 (native-inputs
6813 `(("perl-module-build" ,perl-module-build)
6814 ("perl-test-fatal" ,perl-test-fatal)
6815 ("perl-test-requires" ,perl-test-requires)))
6816 (propagated-inputs
6817 `(("perl-carp-clan" ,perl-carp-clan)
6818 ("perl-moose" ,perl-moose)
6819 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6820 (home-page "https://metacpan.org/release/MooseX-Types")
6821 (synopsis "Organise your Moose types in libraries")
6822 (description "This package lets you declare types using short names, but
6823 behind the scenes it namespaces all your type declarations, effectively
6824 prevent name clashes between packages.")
6825 (license (package-license perl))))
6826
6827 (define-public perl-moosex-types-datetime
6828 (package
6829 (name "perl-moosex-types-datetime")
6830 (version "0.13")
6831 (source
6832 (origin
6833 (method url-fetch)
6834 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6835 "MooseX-Types-DateTime-" version ".tar.gz"))
6836 (sha256
6837 (base32
6838 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
6839 (build-system perl-build-system)
6840 (native-inputs
6841 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6842 ("perl-moose" ,perl-moose)
6843 ("perl-test-fatal" ,perl-test-fatal)
6844 ("perl-test-simple" ,perl-test-simple)))
6845 (propagated-inputs
6846 `(("perl-datetime" ,perl-datetime)
6847 ("perl-datetime-locale" ,perl-datetime-locale)
6848 ("perl-datetime-timezone" ,perl-datetime-timezone)
6849 ("perl-moose" ,perl-moose)
6850 ("perl-moosex-types" ,perl-moosex-types)
6851 ("perl-namespace-clean" ,perl-namespace-clean)))
6852 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
6853 (synopsis "DateTime related constraints and coercions for Moose")
6854 (description "This module packages several Moose::Util::TypeConstraints
6855 with coercions, designed to work with the DateTime suite of objects.")
6856 (license (package-license perl))))
6857
6858 (define-public perl-moosex-types-datetime-morecoercions
6859 (package
6860 (name "perl-moosex-types-datetime-morecoercions")
6861 (version "0.15")
6862 (source
6863 (origin
6864 (method url-fetch)
6865 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6866 "MooseX-Types-DateTime-MoreCoercions-"
6867 version ".tar.gz"))
6868 (sha256
6869 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
6870 (build-system perl-build-system)
6871 (native-inputs
6872 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6873 ("perl-test-fatal" ,perl-test-fatal)
6874 ("perl-test-simple" ,perl-test-simple)))
6875 (propagated-inputs
6876 `(("perl-datetime" ,perl-datetime)
6877 ("perl-datetimex-easy" ,perl-datetimex-easy)
6878 ("perl-moose" ,perl-moose)
6879 ("perl-moosex-types" ,perl-moosex-types)
6880 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
6881 ("perl-namespace-clean" ,perl-namespace-clean)
6882 ("perl-time-duration-parse" ,perl-time-duration-parse)))
6883 (home-page
6884 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
6885 (synopsis "Extensions to MooseX::Types::DateTime")
6886 (description "This module builds on MooseX::Types::DateTime to add
6887 additional custom types and coercions. Since it builds on an existing type,
6888 all coercions and constraints are inherited.")
6889 (license (package-license perl))))
6890
6891 (define-public perl-moosex-types-loadableclass
6892 (package
6893 (name "perl-moosex-types-loadableclass")
6894 (version "0.015")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6899 "MooseX-Types-LoadableClass-" version ".tar.gz"))
6900 (sha256
6901 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
6902 (build-system perl-build-system)
6903 (native-inputs
6904 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6905 ("perl-namespace-clean" ,perl-namespace-clean)
6906 ("perl-moose" ,perl-moose)
6907 ("perl-test-fatal" ,perl-test-fatal)
6908 ("perl-class-load" ,perl-class-load)))
6909 (propagated-inputs
6910 `(("perl-module-runtime" ,perl-module-runtime)
6911 ("perl-moosex-types" ,perl-moosex-types)
6912 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6913 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
6914 (synopsis "ClassName type constraints for Moose")
6915 (description "MooseX::Types::LoadableClass provides a ClassName type
6916 constraint with coercion to load the class.")
6917 (license (package-license perl))))
6918
6919 (define-public perl-moox
6920 (package
6921 (name "perl-moox")
6922 (version "0.101")
6923 (source
6924 (origin
6925 (method url-fetch)
6926 (uri (string-append
6927 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
6928 version
6929 ".tar.gz"))
6930 (sha256
6931 (base32
6932 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
6933 (build-system perl-build-system)
6934 (inputs
6935 `(("perl-data-optlist" ,perl-data-optlist)
6936 ("perl-import-into" ,perl-import-into)
6937 ("perl-module-runtime" ,perl-module-runtime)
6938 ("perl-moo" ,perl-moo)))
6939 (home-page "https://metacpan.org/release/MooX")
6940 (synopsis
6941 "Using Moo and MooX:: packages the most lazy way")
6942 (description "Contains the MooX and MooX::Role packages.")
6943 (license perl-license)))
6944
6945 (define-public perl-moox-cmd
6946 (package
6947 (name "perl-moox-cmd")
6948 (version "0.017")
6949 (source
6950 (origin
6951 (method url-fetch)
6952 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
6953 version ".tar.gz"))
6954 (sha256
6955 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
6956 (build-system perl-build-system)
6957 (native-inputs
6958 `(("perl-capture-tiny" ,perl-capture-tiny)
6959 ("perl-list-moreutils" ,perl-list-moreutils)))
6960 (propagated-inputs
6961 `(("perl-module-pluggable" ,perl-module-pluggable)
6962 ("perl-module-runtime" ,perl-module-runtime)
6963 ("perl-moo" ,perl-moo)
6964 ("perl-package-stash" ,perl-package-stash)
6965 ("perl-params-util" ,perl-params-util)
6966 ("perl-regexp-common" ,perl-regexp-common)))
6967 (home-page "https://metacpan.org/release/MooX-Cmd")
6968 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
6969 (description "This package eases the writing of command line utilities,
6970 accepting commands and subcommands and so on. These commands can form a tree,
6971 which is mirrored in the package structure. On invocation, each command along
6972 the path through the tree (starting from the top-level command through to the
6973 most specific one) is instantiated.")
6974 (license (package-license perl))))
6975
6976 (define-public perl-moox-configfromfile
6977 (package
6978 (name "perl-moox-configfromfile")
6979 (version "0.008")
6980 (source
6981 (origin
6982 (method url-fetch)
6983 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6984 "MooX-ConfigFromFile-" version ".tar.gz"))
6985 (sha256
6986 (base32
6987 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
6988 (build-system perl-build-system)
6989 (native-inputs
6990 `(("perl-hash-merge" ,perl-hash-merge)
6991 ("perl-json" ,perl-json)
6992 ("perl-moox-cmd" ,perl-moox-cmd)))
6993 (propagated-inputs
6994 `(("perl-config-any" ,perl-config-any)
6995 ("perl-file-configdir" ,perl-file-configdir)
6996 ("perl-file-find-rule" ,perl-file-find-rule)
6997 ("perl-hash-merge" ,perl-hash-merge)
6998 ("perl-moo" ,perl-moo)
6999 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7000 ("perl-namespace-clean" ,perl-namespace-clean)))
7001 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
7002 (synopsis "Moo eXtension for initializing objects from config file")
7003 (description "This module is intended to easily load initialization values
7004 for attributes on object construction from an appropriate config file. The
7005 building is done in @code{MooX::ConfigFromFile::Role}---using
7006 @code{MooX::ConfigFromFile} ensures that the role is applied.")
7007 (license (package-license perl))))
7008
7009 (define-public perl-moox-file-configdir
7010 (package
7011 (name "perl-moox-file-configdir")
7012 (version "0.007")
7013 (source
7014 (origin
7015 (method url-fetch)
7016 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7017 "MooX-File-ConfigDir-" version ".tar.gz"))
7018 (sha256
7019 (base32
7020 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
7021 (build-system perl-build-system)
7022 (propagated-inputs
7023 `(("perl-file-configdir" ,perl-file-configdir)
7024 ("perl-moo" ,perl-moo)
7025 ("perl-namespace-clean" ,perl-namespace-clean)))
7026 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
7027 (synopsis "Moo eXtension for @code{File::ConfigDir}")
7028 (description "This module is a helper for easily finding configuration
7029 file locations. This information can be used to find a suitable place for
7030 installing configuration files or for finding any piece of settings.")
7031 (license (package-license perl))))
7032
7033 (define-public perl-moox-handlesvia
7034 (package
7035 (name "perl-moox-handlesvia")
7036 (version "0.001008")
7037 (source
7038 (origin
7039 (method url-fetch)
7040 (uri (string-append
7041 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
7042 version
7043 ".tar.gz"))
7044 (sha256
7045 (base32
7046 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
7047 (build-system perl-build-system)
7048 (native-inputs
7049 `(("perl-moox-types-mooselike"
7050 ,perl-moox-types-mooselike)
7051 ("perl-test-exception" ,perl-test-exception)
7052 ("perl-test-fatal" ,perl-test-fatal)))
7053 (inputs
7054 `(("perl-class-method-modifiers"
7055 ,perl-class-method-modifiers)
7056 ("perl-module-runtime" ,perl-module-runtime)
7057 ("perl-moo" ,perl-moo)
7058 ("perl-role-tiny" ,perl-role-tiny)))
7059 (propagated-inputs
7060 `(("perl-data-perl" ,perl-data-perl)))
7061 (home-page
7062 "https://metacpan.org/release/MooX-HandlesVia")
7063 (synopsis "NativeTrait-like behavior for Moo")
7064 (description
7065 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
7066 attribute functionality. It provides a means of proxying functionality from
7067 an external class to the given attribute.")
7068 (license perl-license)))
7069
7070 (define-public perl-moox-late
7071 (package
7072 (name "perl-moox-late")
7073 (version "0.016")
7074 (source
7075 (origin
7076 (method url-fetch)
7077 (uri (string-append
7078 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
7079 version ".tar.gz"))
7080 (sha256
7081 (base32 "0kjy86rrpzfy6w5r9ykjq7njwdnvp7swd6r2k4gfrh3picz3kdhz"))))
7082 (build-system perl-build-system)
7083 (native-inputs
7084 `(("perl-test-fatal" ,perl-test-fatal)
7085 ("perl-test-requires" ,perl-test-requires)))
7086 (inputs
7087 `(("perl-moo" ,perl-moo)
7088 ("perl-moox" ,perl-moox)
7089 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
7090 (propagated-inputs
7091 `(("perl-type-tiny" ,perl-type-tiny)))
7092 (home-page "https://metacpan.org/release/MooX-late")
7093 (synopsis "Easily translate Moose code to Moo")
7094 (description
7095 "MooX::late does the following:
7096 @enumerate
7097 @item Supports isa => $stringytype
7098 @item Supports does => $rolename
7099 @item Supports lazy_build => 1
7100 @item Exports blessed and confess functions to your namespace.
7101 @item Handles certain attribute traits
7102 Currently Hash, Array and Code are supported. This feature requires
7103 MooX::HandlesVia.
7104 @end enumerate")
7105 (license perl-license)))
7106
7107 (define-public perl-moox-options
7108 (package
7109 (name "perl-moox-options")
7110 (version "4.023")
7111 (source
7112 (origin
7113 (method url-fetch)
7114 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
7115 "MooX-Options-" version ".tar.gz"))
7116 (sha256
7117 (base32
7118 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
7119 (build-system perl-build-system)
7120 (native-inputs
7121 `(("perl-capture-tiny" ,perl-capture-tiny)
7122 ("perl-import-into" ,perl-import-into)
7123 ("perl-module-build" ,perl-module-build)
7124 ("perl-moo" ,perl-moo)
7125 ("perl-moose" ,perl-moose)
7126 ("perl-moox-cmd" ,perl-moox-cmd)
7127 ("perl-namespace-clean" ,perl-namespace-clean)
7128 ("perl-role-tiny" ,perl-role-tiny)
7129 ("perl-test-requires" ,perl-test-requires)
7130 ("perl-test-trap" ,perl-test-trap)
7131 ("perl-test-pod" ,perl-test-pod)
7132 ("perl-try-tiny" ,perl-try-tiny)))
7133 (propagated-inputs
7134 `(("perl-config-any" ,perl-config-any)
7135 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7136 ("perl-data-record" ,perl-data-record)
7137 ("perl-file-configdir" ,perl-file-configdir)
7138 ("perl-file-find-rule" ,perl-file-find-rule)
7139 ("perl-file-sharedir" ,perl-file-sharedir)
7140 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
7141 ("perl-json-maybexs" ,perl-json-maybexs)
7142 ("perl-libintl-perl" ,perl-libintl-perl)
7143 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7144 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7145 ("perl-path-class" ,perl-path-class)
7146 ("perl-regexp-common" ,perl-regexp-common)
7147 ("perl-term-size-any" ,perl-term-size-any)
7148 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7149 (home-page "https://metacpan.org/release/MooX-Options")
7150 (synopsis "Explicit Options eXtension for Object Class")
7151 (description "Create a command line tool with your Mo, Moo, Moose objects.
7152 You have an @code{option} keyword to replace the usual @code{has} to
7153 explicitly use your attribute on the command line. The @code{option} keyword
7154 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
7155 generate a command line tool.")
7156 (license (package-license perl))))
7157
7158 (define-public perl-moox-strictconstructor
7159 (package
7160 (name "perl-moox-strictconstructor")
7161 (version "0.010")
7162 (source
7163 (origin
7164 (method url-fetch)
7165 (uri (string-append
7166 "mirror://cpan/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-"
7167 version
7168 ".tar.gz"))
7169 (sha256
7170 (base32
7171 "0vvjgz7xbfmf69yav7sxsxmvklqv835xvh7h47w0apxmlkm9fjgr"))))
7172 (build-system perl-build-system)
7173 (native-inputs
7174 `(("perl-test-fatal" ,perl-test-fatal)))
7175 (propagated-inputs
7176 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
7177 ("perl-moo" ,perl-moo)
7178 ("perl-strictures" ,perl-strictures)))
7179 (home-page "https://metacpan.org/release/MooX-StrictConstructor")
7180 (synopsis "Make Moo-based object constructors blow up on unknown attributes")
7181 (description
7182 "Loading @code{MooX::StrictConstructor} makes your constructors \"strict\".
7183 If your constructor is called with an attribute init argument that your class
7184 does not declare, then it dies.")
7185 (license perl-license)))
7186
7187 (define-public perl-moox-types-mooselike
7188 (package
7189 (name "perl-moox-types-mooselike")
7190 (version "0.29")
7191 (source
7192 (origin
7193 (method url-fetch)
7194 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
7195 "MooX-Types-MooseLike-" version ".tar.gz"))
7196 (sha256
7197 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
7198 (build-system perl-build-system)
7199 (native-inputs
7200 `(("perl-moo" ,perl-moo)
7201 ("perl-test-fatal" ,perl-test-fatal)))
7202 (propagated-inputs
7203 `(("perl-module-runtime" ,perl-module-runtime)
7204 ("perl-strictures" ,perl-strictures)))
7205 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
7206 (synopsis "Moosish types and type builder")
7207 (description "MooX::Types::MooseLike provides a possibility to build your
7208 own set of Moose-like types. These custom types can then be used to describe
7209 fields in Moo-based classes.")
7210 (license (package-license perl))))
7211
7212 (define-public perl-mouse
7213 (package
7214 (name "perl-mouse")
7215 (version "2.5.6")
7216 (source (origin
7217 (method url-fetch)
7218 (uri (string-append
7219 "mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v"
7220 version
7221 ".tar.gz"))
7222 (sha256
7223 (base32
7224 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
7225 (build-system perl-build-system)
7226 (native-inputs
7227 `(("perl-module-build" ,perl-module-build)
7228 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
7229 ("perl-test-exception" ,perl-test-exception)
7230 ("perl-test-fatal" ,perl-test-fatal)
7231 ("perl-test-leaktrace" ,perl-test-leaktrace)
7232 ("perl-test-output" ,perl-test-output)
7233 ("perl-test-requires" ,perl-test-requires)
7234 ("perl-try-tiny" ,perl-try-tiny)))
7235 (home-page "https://github.com/gfx/p5-Mouse")
7236 (synopsis "Fast Moose-compatible object system for perl5")
7237 (description
7238 "Mouse is a @code{Moose} compatible object system that implements a
7239 subset of the functionality for reduced startup time.")
7240 (license (package-license perl))))
7241
7242 (define-public perl-mousex-nativetraits
7243 (package
7244 (name "perl-mousex-nativetraits")
7245 (version "1.09")
7246 (source (origin
7247 (method url-fetch)
7248 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
7249 "MouseX-NativeTraits-" version ".tar.gz"))
7250 (sha256
7251 (base32
7252 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
7253 (build-system perl-build-system)
7254 (native-inputs
7255 `(("perl-any-moose" ,perl-any-moose)
7256 ("perl-module-install" ,perl-module-install)
7257 ("perl-test-fatal" ,perl-test-fatal)))
7258 (propagated-inputs
7259 `(("perl-mouse" ,perl-mouse)))
7260 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
7261 (synopsis "Extend attribute interfaces for Mouse")
7262 (description
7263 "While @code{Mouse} attributes provide a way to name your accessors,
7264 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
7265 provides commonly used attribute helper methods for more specific types
7266 of data.")
7267 (license (package-license perl))))
7268
7269 (define-public perl-mozilla-ca
7270 (package
7271 (name "perl-mozilla-ca")
7272 (version "20180117")
7273 (source
7274 (origin
7275 (method url-fetch)
7276 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
7277 version ".tar.gz"))
7278 (sha256
7279 (base32
7280 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
7281 (build-system perl-build-system)
7282 (home-page "https://metacpan.org/release/Mozilla-CA")
7283 (synopsis "Mozilla's CA cert bundle in PEM format")
7284 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
7285 Certificate Authority certificates in a form that can be consumed by modules
7286 and libraries based on OpenSSL.")
7287 (license mpl2.0)))
7288
7289 (define-public perl-multidimensional
7290 (package
7291 (name "perl-multidimensional")
7292 (version "0.014")
7293 (source
7294 (origin
7295 (method url-fetch)
7296 (uri (string-append
7297 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
7298 version ".tar.gz"))
7299 (sha256
7300 (base32
7301 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
7302 (build-system perl-build-system)
7303 (native-inputs
7304 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7305 ("perl-extutils-depends" ,perl-extutils-depends)))
7306 (propagated-inputs
7307 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7308 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
7309 (home-page "https://metacpan.org/release/multidimensional")
7310 (synopsis "Disable multidimensional array emulation")
7311 (description
7312 "Multidimensional disables multidimensional array emulation.")
7313 (license (package-license perl))))
7314
7315 (define-public perl-mro-compat
7316 (package
7317 (name "perl-mro-compat")
7318 (version "0.13")
7319 (source
7320 (origin
7321 (method url-fetch)
7322 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7323 "MRO-Compat-" version ".tar.gz"))
7324 (sha256
7325 (base32
7326 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
7327 (build-system perl-build-system)
7328 (home-page "https://metacpan.org/release/MRO-Compat")
7329 (synopsis "MRO interface compatibility for Perls < 5.9.5")
7330 (description "The \"mro\" namespace provides several utilities for dealing
7331 with method resolution order and method caching in general in Perl 5.9.5 and
7332 higher. This module provides those interfaces for earlier versions of
7333 Perl (back to 5.6.0).")
7334 (license (package-license perl))))
7335
7336 (define-public perl-namespace-autoclean
7337 (package
7338 (name "perl-namespace-autoclean")
7339 (version "0.29")
7340 (source
7341 (origin
7342 (method url-fetch)
7343 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7344 "namespace-autoclean-" version ".tar.gz"))
7345 (sha256
7346 (base32 "012qqs561xyyhm082znmzsl8lz4n299fa6p0v246za2l9bkdiss5"))))
7347 (build-system perl-build-system)
7348 (native-inputs
7349 `(("perl-module-build" ,perl-module-build)
7350 ("perl-test-needs" ,perl-test-needs)))
7351 (propagated-inputs
7352 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
7353 ("perl-namespace-clean" ,perl-namespace-clean)
7354 ("perl-sub-identify" ,perl-sub-identify)))
7355 (home-page "https://metacpan.org/release/namespace-autoclean")
7356 (synopsis "Keep imports out of your namespace")
7357 (description "The namespace::autoclean pragma will remove all imported
7358 symbols at the end of the current package's compile cycle. Functions called
7359 in the package itself will still be bound by their name, but they won't show
7360 up as methods on your class or instances. It is very similar to
7361 namespace::clean, except it will clean all imported functions, no matter if
7362 you imported them before or after you used the pragma. It will also not touch
7363 anything that looks like a method.")
7364 (license (package-license perl))))
7365
7366 (define-public perl-namespace-clean
7367 (package
7368 (name "perl-namespace-clean")
7369 (version "0.27")
7370 (source
7371 (origin
7372 (method url-fetch)
7373 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
7374 "namespace-clean-" version ".tar.gz"))
7375 (sha256
7376 (base32
7377 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
7378 (build-system perl-build-system)
7379 (propagated-inputs
7380 `(("perl-package-stash" ,perl-package-stash)
7381 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
7382 (home-page "https://metacpan.org/release/namespace-clean")
7383 (synopsis "Keep imports and functions out of your namespace")
7384 (description "The namespace::clean pragma will remove all previously
7385 declared or imported symbols at the end of the current package's compile
7386 cycle. Functions called in the package itself will still be bound by their
7387 name, but they won't show up as methods on your class or instances.")
7388 (license (package-license perl))))
7389
7390 (define-public perl-net-bgp
7391 (package
7392 (name "perl-net-bgp")
7393 (version "0.17")
7394 (source
7395 (origin
7396 (method url-fetch)
7397 (uri (string-append
7398 "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
7399 (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y"))))
7400 (build-system perl-build-system)
7401 (home-page "https://metacpan.org/release/Net-BGP")
7402 (synopsis "Object-oriented API to the BGP protocol")
7403 (description
7404 "This module is an implementation of the BGP-4 inter-domain routing protocol.
7405 It encapsulates all of the functionality needed to establish and maintain a
7406 BGP peering session and exchange routing update information with the peer.
7407 It aims to provide a simple API to the BGP protocol for the purposes of
7408 automation, logging, monitoring, testing, and similar tasks using the
7409 power and flexibility of perl. The module does not implement the
7410 functionality of a RIB (Routing Information Base) nor does it modify the
7411 kernel routing table of the host system. However, such operations could be
7412 implemented using the API provided by the module.")
7413 (license perl-license)))
7414
7415 (define-public perl-net-dns-native
7416 (package
7417 (name "perl-net-dns-native")
7418 (version "0.22")
7419 (source
7420 (origin
7421 (method url-fetch)
7422 (uri (string-append
7423 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
7424 version ".tar.gz"))
7425 (sha256
7426 (base32 "1m9hbj83ikg52wvq7z8bjm78i50qvqk5alh11mmazzxrpbnrv38h"))))
7427 (build-system perl-build-system)
7428 (home-page "https://metacpan.org/release/Net-DNS-Native")
7429 (synopsis "Non-blocking system DNS resolver")
7430 (description
7431 "This class provides several methods for host name resolution. It is
7432 designed to be used with event loops. Names are resolved by your system's
7433 native @code{getaddrinfo(3)} implementation, called in a separate thread to
7434 avoid blocking the entire application. Threading overhead is limited by using
7435 system threads instead of Perl threads.")
7436 (license perl-license)))
7437
7438 (define-public perl-net-idn-encode
7439 (package
7440 (name "perl-net-idn-encode")
7441 (version "2.500")
7442 (source
7443 (origin
7444 (method url-fetch)
7445 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
7446 "Net-IDN-Encode-" version ".tar.gz"))
7447 (sha256
7448 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
7449 (build-system perl-build-system)
7450 (native-inputs
7451 `(("perl-module-build" ,perl-module-build)
7452 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7453 (home-page "https://metacpan.org/release/Net-IDN-Encode")
7454 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
7455 (description
7456 "Internationalized Domain Names (IDNs) use characters drawn from a large
7457 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
7458 represented using only the ASCII characters already allowed in so-called host
7459 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
7460
7461 Use this module if you just want to convert domain names (or email addresses),
7462 using whatever IDNA standard is the best choice at the moment.")
7463 (license perl-license)))
7464
7465 (define-public perl-net-statsd
7466 (package
7467 (name "perl-net-statsd")
7468 (version "0.12")
7469 (source
7470 (origin
7471 (method url-fetch)
7472 (uri (string-append
7473 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
7474 version
7475 ".tar.gz"))
7476 (sha256
7477 (base32
7478 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
7479 (build-system perl-build-system)
7480 (home-page
7481 "https://metacpan.org/release/Net-Statsd")
7482 (synopsis "Perl client for Etsy's statsd daemon")
7483 (description "This module implement a UDP client for the statsd statistics
7484 collector daemon in use at Etsy.com.")
7485 (license (package-license perl))))
7486
7487 (define-public perl-number-compare
7488 (package
7489 (name "perl-number-compare")
7490 (version "0.03")
7491 (source
7492 (origin
7493 (method url-fetch)
7494 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7495 "Number-Compare-" version ".tar.gz"))
7496 (sha256
7497 (base32
7498 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
7499 (build-system perl-build-system)
7500 (home-page "https://metacpan.org/release/Number-Compare")
7501 (synopsis "Numeric comparisons")
7502 (description "Number::Compare compiles a simple comparison to an anonymous
7503 subroutine, which you can call with a value to be tested against.")
7504 (license (package-license perl))))
7505
7506 (define-public perl-number-format
7507 (package
7508 (name "perl-number-format")
7509 (version "1.75")
7510 (source (origin
7511 (method url-fetch)
7512 (uri (string-append
7513 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
7514 version ".tar.gz"))
7515 (sha256
7516 (base32
7517 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
7518 (build-system perl-build-system)
7519 (home-page "https://metacpan.org/release/Number-Format")
7520 (synopsis "Convert numbers to strings with pretty formatting")
7521 (description "@code{Number::Format} is a library for formatting numbers.
7522 Functions are provided for converting numbers to strings in a variety of ways,
7523 and to convert strings that contain numbers back into numeric form. The
7524 output formats may include thousands separators - characters inserted between
7525 each group of three characters counting right to left from the decimal point.
7526 The characters used for the decimal point and the thousands separator come from
7527 the locale information or can be specified by the user.")
7528 (license perl-license)))
7529
7530 (define-public perl-number-range
7531 (package
7532 (name "perl-number-range")
7533 (version "0.12")
7534 (source
7535 (origin
7536 (method url-fetch)
7537 (uri (string-append
7538 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
7539 version ".tar.gz"))
7540 (sha256
7541 (base32
7542 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
7543 (build-system perl-build-system)
7544 (home-page "https://metacpan.org/release/Number-Range")
7545 (synopsis "Perl extension defining ranges of numbers")
7546 (description "Number::Range is an object-oriented interface to test if a
7547 number exists in a given range, and to be able to manipulate the range.")
7548 (license (package-license perl))))
7549
7550 (define-public perl-object-signature
7551 (package
7552 (name "perl-object-signature")
7553 (version "1.08")
7554 (source
7555 (origin
7556 (method url-fetch)
7557 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7558 "Object-Signature-" version ".tar.gz"))
7559 (sha256
7560 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
7561 (build-system perl-build-system)
7562 (native-inputs
7563 `(("perl-module-install" ,perl-module-install)))
7564 (home-page "https://metacpan.org/release/Object-Signature")
7565 (synopsis "Generate cryptographic signatures for objects")
7566 (description "Object::Signature is an abstract base class that you can
7567 inherit from in order to allow your objects to generate unique cryptographic
7568 signatures.")
7569 (license (package-license perl))))
7570
7571 (define-public perl-ole-storage-lite
7572 (package
7573 (name "perl-ole-storage-lite")
7574 (version "0.20")
7575 (source
7576 (origin
7577 (method url-fetch)
7578 (uri (string-append
7579 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
7580 version
7581 ".tar.gz"))
7582 (sha256
7583 (base32
7584 "1fpqhhgb8blj4hhs97fsbnbhk29s9yms057a9s9yl20f3hbsc65b"))))
7585 (build-system perl-build-system)
7586 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
7587 (synopsis "Read and write OLE storage files")
7588 (description "This module allows you to read and write
7589 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
7590 technology to store hierarchical information such as links to other
7591 documents within a single file.")
7592 (license (package-license perl))))
7593
7594 (define-public perl-package-anon
7595 (package
7596 (name "perl-package-anon")
7597 (version "0.05")
7598 (source
7599 (origin
7600 (method url-fetch)
7601 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
7602 "Package-Anon-" version ".tar.gz"))
7603 (sha256
7604 (base32
7605 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
7606 (build-system perl-build-system)
7607 (propagated-inputs
7608 `(("perl-sub-exporter" ,perl-sub-exporter)
7609 ("perl-params-util" ,perl-params-util)))
7610 (home-page "https://metacpan.org/release/Package-Anon")
7611 (synopsis "Anonymous packages")
7612 (description "This module allows for anonymous packages that are
7613 independent of the main namespace and only available through an object
7614 instance, not by name.")
7615 (license (package-license perl))))
7616
7617 (define-public perl-package-deprecationmanager
7618 (package
7619 (name "perl-package-deprecationmanager")
7620 (version "0.17")
7621 (source
7622 (origin
7623 (method url-fetch)
7624 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7625 "Package-DeprecationManager-" version ".tar.gz"))
7626 (sha256
7627 (base32
7628 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
7629 (build-system perl-build-system)
7630 (native-inputs
7631 `(("perl-test-fatal" ,perl-test-fatal)
7632 ("perl-test-requires" ,perl-test-requires)
7633 ("perl-test-output" ,perl-test-output)))
7634 (propagated-inputs
7635 `(("perl-list-moreutils" ,perl-list-moreutils)
7636 ("perl-params-util" ,perl-params-util)
7637 ("perl-sub-install" ,perl-sub-install)))
7638 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
7639 (home-page "https://metacpan.org/release/Package-DeprecationManager")
7640 (synopsis "Manage deprecation warnings for your distribution")
7641 (description "This module allows you to manage a set of deprecations for
7642 one or more modules.")
7643 (license artistic2.0)))
7644
7645 (define-public perl-package-stash
7646 (package
7647 (name "perl-package-stash")
7648 (version "0.38")
7649 (source
7650 (origin
7651 (method url-fetch)
7652 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7653 "Package-Stash-" version ".tar.gz"))
7654 (sha256
7655 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
7656 (build-system perl-build-system)
7657 (native-inputs
7658 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7659 ("perl-test-fatal" ,perl-test-fatal)
7660 ("perl-test-requires" ,perl-test-requires)
7661 ("perl-package-anon" ,perl-package-anon)))
7662 (propagated-inputs
7663 `(("perl-module-implementation" ,perl-module-implementation)
7664 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7665 ("perl-package-stash-xs" ,perl-package-stash-xs)))
7666 (home-page "https://metacpan.org/release/Package-Stash")
7667 (synopsis "Routines for manipulating stashes")
7668 (description "Manipulating stashes (Perl's symbol tables) is occasionally
7669 necessary, but incredibly messy, and easy to get wrong. This module hides all
7670 of that behind a simple API.")
7671 (license (package-license perl))))
7672
7673 (define-public perl-package-stash-xs
7674 (package
7675 (name "perl-package-stash-xs")
7676 (version "0.29")
7677 (source
7678 (origin
7679 (method url-fetch)
7680 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7681 "Package-Stash-XS-" version ".tar.gz"))
7682 (sha256
7683 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
7684 (build-system perl-build-system)
7685 (native-inputs
7686 `(("perl-test-fatal" ,perl-test-fatal)
7687 ("perl-test-requires" ,perl-test-requires)
7688 ("perl-package-anon" ,perl-package-anon)))
7689 (home-page "https://metacpan.org/release/Package-Stash-XS")
7690 (synopsis "Faster implementation of the Package::Stash API")
7691 (description "This is a backend for Package::Stash, which provides the
7692 functionality in a way that's less buggy and much faster. It will be used by
7693 default if it's installed, and should be preferred in all environments with a
7694 compiler.")
7695 (license (package-license perl))))
7696
7697 (define-public perl-padwalker
7698 (package
7699 (name "perl-padwalker")
7700 (version "2.3")
7701 (source
7702 (origin
7703 (method url-fetch)
7704 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
7705 "PadWalker-" version ".tar.gz"))
7706 (sha256
7707 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
7708 (build-system perl-build-system)
7709 (home-page "https://metacpan.org/release/PadWalker")
7710 (synopsis "Play with other peoples' lexical variables")
7711 (description "PadWalker is a module which allows you to inspect (and even
7712 change) lexical variables in any subroutine which called you. It will only
7713 show those variables which are in scope at the point of the call. PadWalker
7714 is particularly useful for debugging.")
7715 (license (package-license perl))))
7716
7717 (define-public perl-parallel-forkmanager
7718 (package
7719 (name "perl-parallel-forkmanager")
7720 (version "1.19")
7721 (source
7722 (origin
7723 (method url-fetch)
7724 (uri (string-append
7725 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
7726 version
7727 ".tar.gz"))
7728 (sha256
7729 (base32
7730 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
7731 (build-system perl-build-system)
7732 (native-inputs
7733 `(("perl-test-warn" ,perl-test-warn)))
7734 (home-page "https://metacpan.org/release/Parallel-ForkManager")
7735 (synopsis "Simple parallel processing fork manager")
7736 (description "@code{Parallel::ForkManager} is intended for use in
7737 operations that can be done in parallel where the number of
7738 processes to be forked off should be limited.")
7739 (license (package-license perl))))
7740
7741 (define-public perl-params-classify
7742 (package
7743 (name "perl-params-classify")
7744 (version "0.015")
7745 (source
7746 (origin
7747 (method url-fetch)
7748 (uri (string-append
7749 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Params-Classify-"
7750 version ".tar.gz"))
7751 (sha256
7752 (base32
7753 "052r198xyrsv8wz21gijdigz2cgnidsa37nvyfzdiz4rv1fc33ir"))))
7754 (build-system perl-build-system)
7755 (native-inputs
7756 `(("perl-module-build" ,perl-module-build)
7757 ("perl-test-pod" ,perl-test-pod)
7758 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7759 (propagated-inputs
7760 `(("perl-devel-callchecker" ,perl-devel-callchecker)))
7761 (home-page "https://metacpan.org/release/Params-Classify")
7762 (synopsis "Argument type classification")
7763 (description "This module provides various type-testing functions.
7764 These are intended for functions that care what type of data they are
7765 operating on. There are two flavours of function. Functions of the
7766 first flavour provide type classification only. Functions of the
7767 second flavour also check that an argument is of an expected type.
7768 The type enforcement functions handle only the simplest requirements
7769 for arguments of the types handled by the classification functions.
7770 Enforcement of more complex types may be built using the
7771 classification functions, or it may be more convenient to use a module
7772 designed for the more complex job, such as @code{Params::Validate}")
7773 (license perl-license)))
7774
7775 (define-public perl-params-util
7776 (package
7777 (name "perl-params-util")
7778 (version "1.07")
7779 (source
7780 (origin
7781 (method url-fetch)
7782 (uri (string-append
7783 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
7784 version ".tar.gz"))
7785 (sha256
7786 (base32
7787 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
7788 (build-system perl-build-system)
7789 (home-page "https://metacpan.org/release/Params-Util")
7790 (synopsis "Simple, compact and correct param-checking functions")
7791 (description
7792 "Params::Util provides a basic set of importable functions that makes
7793 checking parameters easier.")
7794 (license (package-license perl))))
7795
7796 (define-public perl-params-validate
7797 (package
7798 (name "perl-params-validate")
7799 (version "1.29")
7800 (source
7801 (origin
7802 (method url-fetch)
7803 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7804 "Params-Validate-" version ".tar.gz"))
7805 (sha256
7806 (base32
7807 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
7808 (build-system perl-build-system)
7809 (native-inputs
7810 `(("perl-module-build" ,perl-module-build)
7811 ("perl-test-fatal" ,perl-test-fatal)
7812 ("perl-test-requires" ,perl-test-requires)))
7813 (propagated-inputs
7814 `(("perl-module-implementation" ,perl-module-implementation)))
7815 (home-page "https://metacpan.org/release/Params-Validate")
7816 (synopsis "Validate method/function parameters")
7817 (description "The Params::Validate module allows you to validate method or
7818 function call parameters to an arbitrary level of specificity.")
7819 (license artistic2.0)))
7820
7821 (define-public perl-params-validationcompiler
7822 (package
7823 (name "perl-params-validationcompiler")
7824 (version "0.30")
7825 (source
7826 (origin
7827 (method url-fetch)
7828 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7829 "Params-ValidationCompiler-" version ".tar.gz"))
7830 (sha256
7831 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
7832 (build-system perl-build-system)
7833 (native-inputs
7834 ;; For tests.
7835 `(("perl-test-without-module" ,perl-test-without-module)
7836 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
7837 ("perl-test2-suite" ,perl-test2-suite)
7838 ("perl-type-tiny" ,perl-type-tiny)))
7839 (propagated-inputs
7840 `(("perl-eval-closure" ,perl-eval-closure)
7841 ("perl-exception-class" ,perl-exception-class)
7842 ("perl-specio" ,perl-specio)))
7843 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
7844 (synopsis "Build an optimized subroutine parameter validator")
7845 (description "This module creates a customized, highly efficient
7846 parameter checking subroutine. It can handle named or positional
7847 parameters, and can return the parameters as key/value pairs or a list
7848 of values. In addition to type checks, it also supports parameter
7849 defaults, optional parameters, and extra \"slurpy\" parameters.")
7850 (license artistic2.0)))
7851
7852 (define-public perl-par-dist
7853 (package
7854 (name "perl-par-dist")
7855 (version "0.49")
7856 (source
7857 (origin
7858 (method url-fetch)
7859 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
7860 "PAR-Dist-" version ".tar.gz"))
7861 (sha256
7862 (base32
7863 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
7864 (build-system perl-build-system)
7865 (home-page "https://metacpan.org/release/PAR-Dist")
7866 (synopsis "Create and manipulate PAR distributions")
7867 (description "PAR::Dist is a toolkit to create and manipulate PAR
7868 distributions.")
7869 (license (package-license perl))))
7870
7871 (define-public perl-parent
7872 (deprecated-package "perl-parent" perl))
7873
7874 (define-public perl-path-class
7875 (package
7876 (name "perl-path-class")
7877 (version "0.37")
7878 (source
7879 (origin
7880 (method url-fetch)
7881 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
7882 "Path-Class-" version ".tar.gz"))
7883 (sha256
7884 (base32
7885 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
7886 (build-system perl-build-system)
7887 (native-inputs `(("perl-module-build" ,perl-module-build)))
7888 (home-page "https://metacpan.org/release/Path-Class")
7889 (synopsis "Path specification manipulation")
7890 (description "Path::Class is a module for manipulation of file and
7891 directory specifications in a cross-platform manner.")
7892 (license (package-license perl))))
7893
7894 (define-public perl-pathtools
7895 (package
7896 (name "perl-pathtools")
7897 (version "3.75")
7898 (source
7899 (origin
7900 (method url-fetch)
7901 (uri (string-append
7902 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
7903 version ".tar.gz"))
7904 (sha256
7905 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
7906 (build-system perl-build-system)
7907 (arguments
7908 `(#:phases
7909 (modify-phases %standard-phases
7910 (add-after 'unpack 'patch-pwd-path
7911 (lambda* (#:key inputs #:allow-other-keys)
7912 (substitute* "Cwd.pm"
7913 (("'/bin/pwd'")
7914 (string-append "'" (assoc-ref inputs "coreutils")
7915 "/bin/pwd'")))
7916 #t)))))
7917 (inputs
7918 `(("coreutils" ,coreutils)))
7919 (home-page "https://metacpan.org/release/PathTools")
7920 (synopsis "Tools for working with directory and file names")
7921 (description "This package provides functions to work with directory and
7922 file names.")
7923 (license perl-license)))
7924
7925 (define-public perl-path-tiny
7926 (package
7927 (name "perl-path-tiny")
7928 (version "0.108")
7929 (source (origin
7930 (method url-fetch)
7931 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7932 "Path-Tiny-" version ".tar.gz"))
7933 (sha256
7934 (base32
7935 "1x9zf8r3cynf4vqlycyyspsr70v4zw6bk9bkgvfpvsxkw8mlhj9w"))))
7936 (build-system perl-build-system)
7937 (arguments
7938 `(#:tests? #f)) ; Tests require additional test modules to be packaged
7939 ;; (native-inputs
7940 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
7941 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
7942 (inputs
7943 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
7944 (home-page "https://metacpan.org/release/Path-Tiny")
7945 (synopsis "File path utility")
7946 (description "This module provides a small, fast utility for working
7947 with file paths.")
7948 (license asl2.0)))
7949
7950 (define-public perl-pdf-api2
7951 (package
7952 (name "perl-pdf-api2")
7953 (version "2.036")
7954 (source (origin
7955 (method url-fetch)
7956 (uri (string-append
7957 "mirror://cpan/authors/id/S/SS/SSIMMS/PDF-API2-"
7958 version ".tar.gz"))
7959 (sha256
7960 (base32
7961 "0x0pa75wpb87pcshl92y5nh8pzikjp46ljlr2pqvdgpqzvll8107"))))
7962 (build-system perl-build-system)
7963 (native-inputs
7964 `(("perl-test-exception" ,perl-test-exception)
7965 ("perl-test-memory-cycle" ,perl-test-memory-cycle)))
7966 (propagated-inputs
7967 `(("perl-font-ttf" ,perl-font-ttf)))
7968 (home-page "https://metacpan.org/release/PDF-API2")
7969 (synopsis "Facilitates the creation and modification of PDF files")
7970 (description "This Perl module facilitates the creation and modification
7971 of PDF files.")
7972 (license lgpl2.1)))
7973
7974 (define-public perl-perlio-utf8_strict
7975 (package
7976 (name "perl-perlio-utf8-strict")
7977 (version "0.007")
7978 (source (origin
7979 (method url-fetch)
7980 (uri (string-append
7981 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
7982 version ".tar.gz"))
7983 (sha256
7984 (base32
7985 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
7986 (build-system perl-build-system)
7987 (native-inputs
7988 `(("perl-test-exception" ,perl-test-exception)))
7989 (home-page
7990 "https://metacpan.org/release/PerlIO-utf8_strict")
7991 (synopsis "Fast and correct UTF-8 IO")
7992 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
7993 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
7994 for correctness.")
7995 (license (package-license perl))))
7996
7997 (define-public perl-pegex
7998 (package
7999 (name "perl-pegex")
8000 (version "0.70")
8001 (source
8002 (origin
8003 (method url-fetch)
8004 (uri (string-append
8005 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
8006 version ".tar.gz"))
8007 (sha256
8008 (base32
8009 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
8010 (build-system perl-build-system)
8011 (native-inputs
8012 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
8013 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
8014 (home-page "https://metacpan.org/release/Pegex")
8015 (synopsis "Acmeist PEG Parser Framework")
8016 (description "Pegex is an Acmeist parser framework. It allows you to easily
8017 create parsers that will work equivalently in lots of programming languages.
8018 The inspiration for Pegex comes from the parsing engine upon which the
8019 postmodern programming language Perl 6 is based on. Pegex brings this beauty
8020 to the other justmodern languages that have a normal regular expression engine
8021 available.")
8022 (license (package-license perl))))
8023
8024 (define-public perl-pod-coverage
8025 (package
8026 (name "perl-pod-coverage")
8027 (version "0.23")
8028 (source
8029 (origin
8030 (method url-fetch)
8031 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8032 "Pod-Coverage-" version ".tar.gz"))
8033 (sha256
8034 (base32
8035 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
8036 (build-system perl-build-system)
8037 (propagated-inputs
8038 `(("perl-devel-symdump" ,perl-devel-symdump)))
8039 (home-page "https://metacpan.org/release/Pod-Coverage")
8040 (synopsis "Check for comprehensive documentation of a module")
8041 (description "This module provides a mechanism for determining if the pod
8042 for a given module is comprehensive.")
8043 (license (package-license perl))))
8044
8045 (define-public perl-pod-simple
8046 (package
8047 (name "perl-pod-simple")
8048 (version "3.35")
8049 (source (origin
8050 (method url-fetch)
8051 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8052 "Pod-Simple-" version ".tar.gz"))
8053 (sha256
8054 (base32
8055 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
8056 (build-system perl-build-system)
8057 (home-page "https://metacpan.org/release/Pod-Simple")
8058 (synopsis "Parsing library for text in Pod format")
8059 (description "@code{Pod::Simple} is a Perl library for parsing text in
8060 the @dfn{Pod} (plain old documentation) markup language that is typically
8061 used for writing documentation for Perl and for Perl modules.")
8062 (license (package-license perl))))
8063
8064 (define-public perl-posix-strftime-compiler
8065 (package
8066 (name "perl-posix-strftime-compiler")
8067 (version "0.42")
8068 (source
8069 (origin
8070 (method url-fetch)
8071 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
8072 "POSIX-strftime-Compiler-" version ".tar.gz"))
8073 (sha256
8074 (base32
8075 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
8076 (build-system perl-build-system)
8077 (native-inputs `(("perl-module-build" ,perl-module-build)))
8078 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
8079 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
8080 (synopsis "GNU C library compatible strftime for loggers and servers")
8081 (description "POSIX::strftime::Compiler provides GNU C library compatible
8082 strftime(3). But this module is not affected by the system locale. This
8083 feature is useful when you want to write loggers, servers, and portable
8084 applications.")
8085 (license (package-license perl))))
8086
8087 (define-public perl-probe-perl
8088 (package
8089 (name "perl-probe-perl")
8090 (version "0.03")
8091 (source (origin
8092 (method url-fetch)
8093 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8094 "Probe-Perl-" version ".tar.gz"))
8095 (sha256
8096 (base32
8097 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
8098 (build-system perl-build-system)
8099 (synopsis "Information about the currently running perl")
8100 (description
8101 "Probe::Perl provides methods for obtaining information about the
8102 currently running perl interpreter. It originally began life as code in the
8103 Module::Build project, but has been externalized here for general use.")
8104 (home-page "https://metacpan.org/release/Probe-Perl")
8105 (license (package-license perl))))
8106
8107 (define-public perl-proc-invokeeditor
8108 (package
8109 (name "perl-proc-invokeeditor")
8110 (version "1.13")
8111 (source
8112 (origin
8113 (method url-fetch)
8114 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
8115 version ".tar.gz"))
8116 (sha256
8117 (base32
8118 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
8119 (build-system perl-build-system)
8120 (arguments
8121 `(#:phases
8122 (modify-phases %standard-phases
8123 (add-after 'unpack 'set-EDITOR
8124 (lambda _ (setenv "EDITOR" "echo") #t)))))
8125 (propagated-inputs
8126 `(("perl-carp-assert" ,perl-carp-assert)))
8127 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
8128 (synopsis "Interface to external editor from Perl")
8129 (description "This module provides the ability to supply some text to an
8130 external text editor, have it edited by the user, and retrieve the results.")
8131 (license (package-license perl))))
8132
8133 (define-public perl-readonly
8134 (package
8135 (name "perl-readonly")
8136 (version "2.00")
8137 (source
8138 (origin
8139 (method url-fetch)
8140 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
8141 "Readonly-" version ".tar.gz"))
8142 (sha256
8143 (base32
8144 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
8145 (build-system perl-build-system)
8146 (native-inputs `(("perl-module-build" ,perl-module-build)))
8147 (home-page "https://metacpan.org/release/Readonly")
8148 (synopsis "Create read-only scalars, arrays, hashes")
8149 (description "This module provides a facility for creating non-modifiable
8150 variables in Perl. This is useful for configuration files, headers, etc. It
8151 can also be useful as a development and debugging tool for catching updates to
8152 variables that should not be changed.")
8153 (license (package-license perl))))
8154
8155 (define-public perl-ref-util-xs
8156 (package
8157 (name "perl-ref-util-xs")
8158 (version "0.117")
8159 (source
8160 (origin
8161 (method url-fetch)
8162 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
8163 "Ref-Util-XS-" version ".tar.gz"))
8164 (sha256
8165 (base32
8166 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
8167 (build-system perl-build-system)
8168 (home-page "https://metacpan.org/release/Ref-Util-XS")
8169 (synopsis "XS implementation for Ref::Util")
8170 (description "@code{Ref::Util::XS} is the XS implementation of
8171 @code{Ref::Util}, which provides several functions to help identify references
8172 in a more convenient way than the usual approach of examining the return value
8173 of @code{ref}.")
8174 (license x11)))
8175
8176 (define-public perl-regexp-common
8177 (package
8178 (name "perl-regexp-common")
8179 (version "2017060201")
8180 (source (origin
8181 (method url-fetch)
8182 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
8183 "Regexp-Common-" version ".tar.gz"))
8184 (sha256
8185 (base32
8186 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
8187 (build-system perl-build-system)
8188 (synopsis "Provide commonly requested regular expressions")
8189 (description
8190 "This module exports a single hash (@code{%RE}) that stores or generates
8191 commonly needed regular expressions. Patterns currently provided include:
8192 balanced parentheses and brackets, delimited text (with escapes), integers and
8193 floating-point numbers in any base (up to 36), comments in 44 languages,
8194 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
8195 codes.")
8196 (home-page "https://metacpan.org/release/Regexp-Common")
8197 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
8198 (license (list (package-license perl) x11 bsd-3))))
8199
8200 (define-public perl-regexp-util
8201 (package
8202 (name "perl-regexp-util")
8203 (version "0.003")
8204 (source
8205 (origin
8206 (method url-fetch)
8207 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8208 "Regexp-Util-" version ".tar.gz"))
8209 (sha256
8210 (base32
8211 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
8212 (build-system perl-build-system)
8213 (home-page "https://metacpan.org/release/Regexp-Util")
8214 (synopsis "Selection of general-utility regexp subroutines")
8215 (description "This package provides a selection of regular expression
8216 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
8217 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
8218 and @code{deserialize_regexp}.")
8219 (license (package-license perl))))
8220
8221 (define-public perl-role-tiny
8222 (package
8223 (name "perl-role-tiny")
8224 (version "1.003004")
8225 (source
8226 (origin
8227 (method url-fetch)
8228 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8229 "Role-Tiny-" version ".tar.gz"))
8230 (sha256
8231 (base32
8232 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
8233 (build-system perl-build-system)
8234 (native-inputs
8235 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
8236 ("perl-test-fatal" ,perl-test-fatal)))
8237 (propagated-inputs
8238 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
8239 (home-page "https://metacpan.org/release/Role-Tiny")
8240 (synopsis "Roles, as a slice of Moose")
8241 (description "Role::Tiny is a minimalist role composition tool.")
8242 (license (package-license perl))))
8243
8244 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
8245 (define-public perl-role-tiny-2
8246 (package
8247 (inherit perl-role-tiny)
8248 (version "2.001001")
8249 (source
8250 (origin
8251 (method url-fetch)
8252 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8253 "Role-Tiny-" version ".tar.gz"))
8254 (sha256
8255 (base32 "16yryg3cr14xw201gm8k8ci00hs60fy8lk2xhnaqa85n5m68flk8"))))))
8256
8257 (define-public perl-safe-isa
8258 (package
8259 (name "perl-safe-isa")
8260 (version "1.000010")
8261 (source
8262 (origin
8263 (method url-fetch)
8264 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8265 "Safe-Isa-" version ".tar.gz"))
8266 (sha256
8267 (base32
8268 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
8269 (build-system perl-build-system)
8270 (home-page "https://metacpan.org/release/Safe-Isa")
8271 (synopsis "Call isa, can, does, and DOES safely")
8272 (description "This module allows you to call isa, can, does, and DOES
8273 safely on things that may not be objects.")
8274 (license (package-license perl))))
8275
8276 (define-public perl-scalar-string
8277 (package
8278 (name "perl-scalar-string")
8279 (version "0.003")
8280 (source
8281 (origin
8282 (method url-fetch)
8283 (uri (string-append
8284 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Scalar-String-"
8285 version ".tar.gz"))
8286 (sha256
8287 (base32
8288 "0llbsqk7rsg9p7l1f4yk6iv7wij91gvavprsqhnb04w7nz4ifjpm"))))
8289 (build-system perl-build-system)
8290 (native-inputs
8291 `(("perl-module-build" ,perl-module-build)
8292 ("perl-test-pod" ,perl-test-pod)
8293 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8294 (home-page "https://metacpan.org/release/Scalar-String")
8295 (synopsis "String aspects of scalars")
8296 (description "@code{Scalar::String} is about the string part of
8297 plain Perl scalars. A scalar has a string value, which is notionally
8298 a sequence of Unicode codepoints but may be internally encoded in
8299 either ISO-8859-1 or UTF-8. In places, more so in older versions of
8300 Perl, the internal encoding shows through. To fully understand Perl
8301 strings it is necessary to understand these implementation details.
8302 This module provides functions to classify a string by encoding and to
8303 encode a string in a desired way. The module is implemented in XS,
8304 with a pure Perl backup version for systems that cannot handle XS.")
8305 (license perl-license)))
8306
8307 (define-public perl-scope-guard
8308 (package
8309 (name "perl-scope-guard")
8310 (version "0.21")
8311 (source
8312 (origin
8313 (method url-fetch)
8314 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
8315 "Scope-Guard-" version ".tar.gz"))
8316 (sha256
8317 (base32
8318 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
8319 (build-system perl-build-system)
8320 (home-page "https://metacpan.org/release/Scope-Guard")
8321 (synopsis "Lexically-scoped resource management")
8322 (description "This module provides a convenient way to perform cleanup or
8323 other forms of resource management at the end of a scope. It is particularly
8324 useful when dealing with exceptions: the Scope::Guard constructor takes a
8325 reference to a subroutine that is guaranteed to be called even if the thread
8326 of execution is aborted prematurely. This effectively allows lexically-scoped
8327 \"promises\" to be made that are automatically honoured by perl's garbage
8328 collector.")
8329 (license (package-license perl))))
8330
8331 (define-public perl-set-infinite
8332 (package
8333 (name "perl-set-infinite")
8334 (version "0.65")
8335 (source
8336 (origin
8337 (method url-fetch)
8338 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
8339 "Set-Infinite-" version ".tar.gz"))
8340 (sha256
8341 (base32
8342 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
8343 (build-system perl-build-system)
8344 (home-page "https://metacpan.org/release/Set-Infinite")
8345 (synopsis "Infinite sets")
8346 (description "Set::Infinite is a set theory module for infinite sets.")
8347 (license (package-license perl))))
8348
8349 (define-public perl-set-intspan
8350 (package
8351 (name "perl-set-intspan")
8352 (version "1.19")
8353 (source (origin
8354 (method url-fetch)
8355 (uri (string-append
8356 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
8357 version ".tar.gz"))
8358 (sha256
8359 (base32
8360 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
8361 (build-system perl-build-system)
8362 (home-page "https://metacpan.org/release/Set-IntSpan")
8363 (synopsis "Manage sets of integers")
8364 (description "@code{Set::IntSpan} manages sets of integers. It is
8365 optimized for sets that have long runs of consecutive integers.")
8366 (license perl-license)))
8367
8368 (define-public perl-set-object
8369 (package
8370 (name "perl-set-object")
8371 (version "1.39")
8372 (source
8373 (origin
8374 (method url-fetch)
8375 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
8376 "Set-Object-" version ".tar.gz"))
8377 (sha256
8378 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
8379 (build-system perl-build-system)
8380 (propagated-inputs
8381 `(("perl-moose" ,perl-moose)
8382 ("perl-test-leaktrace" ,perl-test-leaktrace)))
8383 (home-page "https://metacpan.org/release/Set-Object")
8384 (synopsis "Unordered collections of Perl Objects")
8385 (description "Set::Object provides efficient sets, unordered collections
8386 of Perl objects without duplicates for scalars and references.")
8387 (license artistic2.0)))
8388
8389 (define-public perl-set-scalar
8390 (package
8391 (name "perl-set-scalar")
8392 (version "1.29")
8393 (source
8394 (origin
8395 (method url-fetch)
8396 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
8397 "Set-Scalar-" version ".tar.gz"))
8398 (sha256
8399 (base32
8400 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
8401 (build-system perl-build-system)
8402 (home-page "https://metacpan.org/release/Set-Scalar")
8403 (synopsis "Set operations for Perl")
8404 (description "The first priority of Set::Scalar is to be a convenient
8405 interface to sets (as in: unordered collections of Perl scalars). While not
8406 designed to be slow or big, neither has it been designed to be fast or
8407 compact.")
8408 (license (package-license perl))))
8409
8410 (define-public perl-sort-key
8411 (package
8412 (name "perl-sort-key")
8413 (version "1.33")
8414 (source
8415 (origin
8416 (method url-fetch)
8417 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
8418 version ".tar.gz"))
8419 (sha256
8420 (base32
8421 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
8422 (build-system perl-build-system)
8423 (home-page "https://metacpan.org/release/Sort-Key")
8424 (synopsis "Sort arrays by one or multiple calculated keys")
8425 (description "This Perl module provides various functions to quickly sort
8426 arrays by one or multiple calculated keys.")
8427 (license (package-license perl))))
8428
8429 (define-public perl-sort-naturally
8430 (package
8431 (name "perl-sort-naturally")
8432 (version "1.03")
8433 (source
8434 (origin
8435 (method url-fetch)
8436 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
8437 version ".tar.gz"))
8438 (sha256
8439 (base32
8440 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
8441 (build-system perl-build-system)
8442 (home-page "https://metacpan.org/release/Sort-Naturally")
8443 (synopsis "Sort lexically, but sort numeral parts numerically")
8444 (description "This module exports two functions, @code{nsort} and
8445 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
8446 Under natural sorting, numeric substrings are compared numerically, and other
8447 word-characters are compared lexically.")
8448 (license (package-license perl))))
8449
8450 (define-public perl-specio
8451 (package
8452 (name "perl-specio")
8453 (version "0.38")
8454 (source
8455 (origin
8456 (method url-fetch)
8457 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8458 "Specio-" version ".tar.gz"))
8459 (sha256
8460 (base32
8461 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
8462 (build-system perl-build-system)
8463 (propagated-inputs
8464 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8465 ("perl-eval-closure" ,perl-eval-closure)
8466 ("perl-module-runtime" ,perl-module-runtime)
8467 ("perl-mro-compat" ,perl-mro-compat)
8468 ("perl-role-tiny" ,perl-role-tiny)
8469 ("perl-test-fatal" ,perl-test-fatal)
8470 ("perl-test-needs" ,perl-test-needs)))
8471 (home-page "https://metacpan.org/release/Specio")
8472 (synopsis "Classes for representing type constraints and coercion")
8473 (description "The Specio distribution provides classes for representing type
8474 constraints and coercion, along with syntax sugar for declaring them. Note that
8475 this is not a proper type system for Perl. Nothing in this distribution will
8476 magically make the Perl interpreter start checking a value's type on assignment
8477 to a variable. In fact, there's no built-in way to apply a type to a variable at
8478 all. Instead, you can explicitly check a value against a type, and optionally
8479 coerce values to that type.")
8480 (license artistic2.0)))
8481
8482 (define-public perl-spiffy
8483 (package
8484 (name "perl-spiffy")
8485 (version "0.46")
8486 (source
8487 (origin
8488 (method url-fetch)
8489 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8490 "Spiffy-" version ".tar.gz"))
8491 (sha256
8492 (base32
8493 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
8494 (build-system perl-build-system)
8495 (home-page "https://metacpan.org/release/Spiffy")
8496 (synopsis "Spiffy Perl Interface Framework For You")
8497 (description "Spiffy is a framework and methodology for doing object
8498 oriented (OO) programming in Perl. Spiffy combines the best parts of
8499 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
8500 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
8501 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
8502 other OO languages like Python, Ruby, Java and Perl 6.")
8503 (license (package-license perl))))
8504
8505 (define-public perl-statistics-basic
8506 (package
8507 (name "perl-statistics-basic")
8508 (version "1.6611")
8509 (source (origin
8510 (method url-fetch)
8511 (uri (string-append
8512 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
8513 version ".tar.gz"))
8514 (sha256
8515 (base32
8516 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
8517 (build-system perl-build-system)
8518 (inputs
8519 `(("perl-number-format" ,perl-number-format)))
8520 (home-page "https://metacpan.org/release/Statistics-Basic")
8521 (synopsis "Collection of very basic statistics modules")
8522 (description "This package provides basic statistics functions like
8523 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
8524 (license lgpl2.0)))
8525
8526 (define-public perl-stream-buffered
8527 (package
8528 (name "perl-stream-buffered")
8529 (version "0.03")
8530 (source
8531 (origin
8532 (method url-fetch)
8533 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8534 "Stream-Buffered-" version ".tar.gz"))
8535 (sha256
8536 (base32
8537 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
8538 (build-system perl-build-system)
8539 (home-page "https://metacpan.org/release/Stream-Buffered")
8540 (synopsis "Temporary buffer to save bytes")
8541 (description "Stream::Buffered is a buffer class to store arbitrary length
8542 of byte strings and then get a seekable filehandle once everything is
8543 buffered. It uses PerlIO and/or temporary file to save the buffer depending
8544 on the length of the size.")
8545 (license (package-license perl))))
8546
8547 (define-public perl-strictures
8548 (package
8549 (name "perl-strictures")
8550 (version "1.005005")
8551 (source
8552 (origin
8553 (method url-fetch)
8554 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8555 "strictures-" version ".tar.gz"))
8556 (sha256
8557 (base32
8558 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
8559 (build-system perl-build-system)
8560 (home-page "https://metacpan.org/release/strictures")
8561 (synopsis "Turn on strict and make all warnings fatal")
8562 (description "Strictures turns on strict and make all warnings fatal when
8563 run from within a source-controlled directory.")
8564 (license (package-license perl))))
8565
8566 ;; Some packages don't yet work with this newer version of ‘strictures’.
8567 (define-public perl-strictures-2
8568 (package
8569 (inherit perl-strictures)
8570 (version "2.000006")
8571 (source
8572 (origin
8573 (method url-fetch)
8574 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8575 "strictures-" version ".tar.gz"))
8576 (sha256
8577 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
8578
8579 (define-public perl-string-camelcase
8580 (package
8581 (name "perl-string-camelcase")
8582 (version "0.04")
8583 (source
8584 (origin
8585 (method url-fetch)
8586 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
8587 "String-CamelCase-" version ".tar.gz"))
8588 (sha256
8589 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
8590 (build-system perl-build-system)
8591 (arguments
8592 `(#:phases
8593 (modify-phases %standard-phases
8594 (add-before 'configure 'set-perl-search-path
8595 (lambda _
8596 ;; Work around "dotless @INC" build failure.
8597 (setenv "PERL5LIB"
8598 (string-append (getcwd) ":"
8599 (getenv "PERL5LIB")))
8600 #t)))))
8601 (home-page "https://metacpan.org/release/String-CamelCase")
8602 (synopsis "Camelcase and de-camelcase")
8603 (description "This module may be used to convert from under_score text to
8604 CamelCase and back again.")
8605 (license (package-license perl))))
8606
8607 (define-public perl-string-escape
8608 (package
8609 (name "perl-string-escape")
8610 (version "2010.002")
8611 (source
8612 (origin
8613 (method url-fetch)
8614 (uri (string-append
8615 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
8616 version ".tar.gz"))
8617 (sha256
8618 (base32
8619 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
8620 (build-system perl-build-system)
8621 (home-page "https://metacpan.org/release/String-Escape")
8622 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
8623 (description "This module provides a flexible calling interface to some
8624 frequently-performed string conversion functions, including applying and
8625 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
8626 removing double-quotes, and truncating to fit within a desired length.")
8627 (license (package-license perl))))
8628
8629 (define-public perl-string-formatter
8630 (package
8631 (name "perl-string-formatter")
8632 (version "0.102084")
8633 (source
8634 (origin
8635 (method url-fetch)
8636 (uri (string-append
8637 "mirror://cpan/authors/id/R/RJ/RJBS/String-Formatter-"
8638 version
8639 ".tar.gz"))
8640 (sha256
8641 (base32
8642 "0mlwm0rirv46gj4h072q8gdync5zxxsxy8p028gdyrhczl942dc3"))))
8643 (build-system perl-build-system)
8644 (propagated-inputs
8645 `(("perl-params-util" ,perl-params-util)
8646 ("perl-sub-exporter" ,perl-sub-exporter)))
8647 (home-page "https://metacpan.org/release/String-Formatter")
8648 (synopsis "Build your own sprintf-like functions")
8649 (description
8650 "@code{String::Formatter} is a tool for building sprintf-like formatting
8651 routines. It supports named or positional formatting, custom conversions,
8652 fixed string interpolation, and simple width-matching.")
8653 (license gpl2)))
8654
8655 (define-public perl-string-rewriteprefix
8656 (package
8657 (name "perl-string-rewriteprefix")
8658 (version "0.007")
8659 (source
8660 (origin
8661 (method url-fetch)
8662 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8663 "String-RewritePrefix-" version ".tar.gz"))
8664 (sha256
8665 (base32
8666 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
8667 (build-system perl-build-system)
8668 (propagated-inputs
8669 `(("perl-sub-exporter" ,perl-sub-exporter)))
8670 (home-page "https://metacpan.org/release/String-RewritePrefix")
8671 (synopsis "Rewrite strings based on a set of known prefixes")
8672 (description "This module allows you to rewrite strings based on a set of
8673 known prefixes.")
8674 (license (package-license perl))))
8675
8676 (define-public perl-string-shellquote
8677 (package
8678 (name "perl-string-shellquote")
8679 (version "1.04")
8680 (source
8681 (origin
8682 (method url-fetch)
8683 (uri (string-append
8684 "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
8685 version
8686 ".tar.gz"))
8687 (sha256
8688 (base32
8689 "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
8690 (build-system perl-build-system)
8691 (home-page "https://metacpan.org/release/String-ShellQuote")
8692 (synopsis "Quote strings for passing through a shell")
8693 (description
8694 "@code{shell-quote} lets you pass arbitrary strings through the shell so
8695 that they won't be changed.")
8696 (license (package-license perl))))
8697
8698 (define-public perl-string-print
8699 (package
8700 (name "perl-string-print")
8701 (version "0.15")
8702 (source (origin
8703 (method url-fetch)
8704 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
8705 "String-Print-" version ".tar.gz"))
8706 (sha256
8707 (base32
8708 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
8709 (build-system perl-build-system)
8710 (propagated-inputs
8711 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
8712 (home-page "https://metacpan.org/release/String-Print")
8713 (synopsis "String printing alternatives to printf")
8714 (description
8715 "This module inserts values into (translated) strings. It provides
8716 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
8717 a functional interface.")
8718 (license (package-license perl))))
8719
8720 (define-public perl-sub-exporter
8721 (package
8722 (name "perl-sub-exporter")
8723 (version "0.987")
8724 (source
8725 (origin
8726 (method url-fetch)
8727 (uri (string-append
8728 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
8729 version ".tar.gz"))
8730 (sha256
8731 (base32
8732 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
8733 (build-system perl-build-system)
8734 (propagated-inputs
8735 `(("perl-data-optlist" ,perl-data-optlist)
8736 ("perl-params-util" ,perl-params-util)))
8737 (home-page "https://metacpan.org/release/Sub-Exporter")
8738 (synopsis "Sophisticated exporter for custom-built routines")
8739 (description
8740 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
8741 custom-built routines.")
8742 (license (package-license perl))))
8743
8744 (define-public perl-sub-exporter-progressive
8745 (package
8746 (name "perl-sub-exporter-progressive")
8747 (version "0.001013")
8748 (source
8749 (origin
8750 (method url-fetch)
8751 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
8752 "Sub-Exporter-Progressive-" version ".tar.gz"))
8753 (sha256
8754 (base32
8755 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
8756 (build-system perl-build-system)
8757 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
8758 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
8759 (synopsis "Only use Sub::Exporter if you need it")
8760 (description "Sub::Exporter is an incredibly powerful module, but with
8761 that power comes great responsibility, as well as some runtime penalties.
8762 This module is a \"Sub::Exporter\" wrapper that will let your users just use
8763 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
8764 if your users try to use \"Sub::Exporter\"'s more advanced features, like
8765 renaming exports, if they try to use them.")
8766 (license (package-license perl))))
8767
8768 (define-public perl-sub-identify
8769 (package
8770 (name "perl-sub-identify")
8771 (version "0.14")
8772 (source
8773 (origin
8774 (method url-fetch)
8775 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
8776 "Sub-Identify-" version ".tar.gz"))
8777 (sha256
8778 (base32
8779 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
8780 (build-system perl-build-system)
8781 (home-page "https://metacpan.org/release/Sub-Identify")
8782 (synopsis "Retrieve names of code references")
8783 (description "Sub::Identify allows you to retrieve the real name of code
8784 references.")
8785 (license (package-license perl))))
8786
8787 (define-public perl-sub-info
8788 (package
8789 (name "perl-sub-info")
8790 (version "0.002")
8791 (source
8792 (origin
8793 (method url-fetch)
8794 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
8795 version ".tar.gz"))
8796 (sha256
8797 (base32
8798 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
8799 (build-system perl-build-system)
8800 (propagated-inputs
8801 `(("perl-importer" ,perl-importer)))
8802 (home-page "https://metacpan.org/release/Sub-Info")
8803 (synopsis "Tool to inspect subroutines")
8804 (description "This package provides tools for inspecting subroutines
8805 in Perl.")
8806 (license (package-license perl))))
8807
8808 (define-public perl-sub-install
8809 (package
8810 (name "perl-sub-install")
8811 (version "0.928")
8812 (source
8813 (origin
8814 (method url-fetch)
8815 (uri (string-append
8816 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
8817 version ".tar.gz"))
8818 (sha256
8819 (base32
8820 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
8821 (build-system perl-build-system)
8822 (home-page "https://metacpan.org/release/Sub-Install")
8823 (synopsis "Install subroutines into packages easily")
8824 (description
8825 "Sub::Install makes it easy to install subroutines into packages without
8826 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
8827 can see them.")
8828 (license (package-license perl))))
8829
8830 (define-public perl-sub-name
8831 (package
8832 (name "perl-sub-name")
8833 (version "0.21")
8834 (source
8835 (origin
8836 (method url-fetch)
8837 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8838 "Sub-Name-" version ".tar.gz"))
8839 (sha256
8840 (base32
8841 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
8842 (build-system perl-build-system)
8843 (native-inputs
8844 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
8845 (home-page "https://metacpan.org/release/Sub-Name")
8846 (synopsis "(Re)name a sub")
8847 (description "Assigns a new name to referenced sub. If package
8848 specification is omitted in the name, then the current package is used. The
8849 return value is the sub.")
8850 (license (package-license perl))))
8851
8852 (define-public perl-sub-quote
8853 (package
8854 (name "perl-sub-quote")
8855 (version "2.006006")
8856 (source
8857 (origin
8858 (method url-fetch)
8859 (uri (string-append
8860 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
8861 version ".tar.gz"))
8862 (sha256
8863 (base32 "17fq4iskrisnqs96amrz493vxikwvqbj9s7014k6vyl84gs2lkkf"))))
8864 (build-system perl-build-system)
8865 (native-inputs
8866 `(("perl-test-fatal" ,perl-test-fatal)))
8867 (propagated-inputs
8868 `(("perl-sub-name" ,perl-sub-name)))
8869 (home-page "https://metacpan.org/release/Sub-Quote")
8870 (synopsis "Efficient generation of subroutines via string eval")
8871 (description "Sub::Quote provides an efficient generation of subroutines
8872 via string eval.")
8873 (license (package-license perl))))
8874
8875 (define-public perl-sub-uplevel
8876 (package
8877 (name "perl-sub-uplevel")
8878 (version "0.24")
8879 (source
8880 (origin
8881 (method url-fetch)
8882 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8883 "Sub-Uplevel-" version ".tar.gz"))
8884 (sha256
8885 (base32
8886 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
8887 (build-system perl-build-system)
8888 (home-page "https://metacpan.org/release/Sub-Uplevel")
8889 (synopsis "Apparently run a function in a higher stack frame")
8890 (description "Like Tcl's uplevel() function, but not quite so dangerous.
8891 The idea is just to fool caller(). All the really naughty bits of Tcl's
8892 uplevel() are avoided.")
8893 (license (package-license perl))))
8894
8895 (define-public perl-super
8896 (package
8897 (name "perl-super")
8898 (version "1.20190531")
8899 (source
8900 (origin
8901 (method url-fetch)
8902 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
8903 "SUPER-" version ".tar.gz"))
8904 (sha256
8905 (base32 "16nk2za9fwyg7mcifacr69qi075iz1yvy8r9jh3903kzdvkiwpb8"))))
8906 (build-system perl-build-system)
8907 (native-inputs
8908 `(("perl-module-build" ,perl-module-build)))
8909 (propagated-inputs
8910 `(("perl-sub-identify" ,perl-sub-identify)))
8911 (home-page "https://metacpan.org/release/SUPER")
8912 (synopsis "Control superclass method dispatching")
8913 (description
8914 "When subclassing a class, you may occasionally want to dispatch control to
8915 the superclass---at least conditionally and temporarily. This module provides
8916 nicer equivalents to the native Perl syntax for calling superclasses, along with
8917 a universal @code{super} method to determine a class' own superclass, and better
8918 support for run-time mix-ins and roles.")
8919 (license perl-license)))
8920
8921 (define-public perl-svg
8922 (package
8923 (name "perl-svg")
8924 (version "2.84")
8925 (source
8926 (origin
8927 (method url-fetch)
8928 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/SVG-"
8929 version ".tar.gz"))
8930 (sha256
8931 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
8932 (build-system perl-build-system)
8933 (home-page "https://metacpan.org/release/SVG")
8934 (synopsis "Perl extension for generating SVG documents")
8935 (description "SVG is a Perl module which generates a nested data structure
8936 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
8937 Using SVG, you can generate SVG objects, embed other SVG instances into it,
8938 access the DOM object, create and access Javascript, and generate SMIL
8939 animation content.")
8940 (license (package-license perl))))
8941
8942 (define-public perl-switch
8943 (package
8944 (name "perl-switch")
8945 (version "2.17")
8946 (source
8947 (origin
8948 (method url-fetch)
8949 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
8950 version ".tar.gz"))
8951 (sha256
8952 (base32
8953 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
8954 (build-system perl-build-system)
8955 (home-page "https://metacpan.org/release/Switch")
8956 (synopsis "Switch statement for Perl")
8957 (description "Switch is a Perl module which implements a generalized case
8958 mechanism. The module augments the standard Perl syntax with two new
8959 statements: @code{switch} and @code{case}.")
8960 (license (package-license perl))))
8961
8962 (define-public perl-sys-cpu
8963 (package
8964 (name "perl-sys-cpu")
8965 (version "0.61")
8966 (source (origin
8967 (method url-fetch)
8968 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
8969 "Sys-CPU-" version ".tar.gz"))
8970 (sha256
8971 (base32
8972 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
8973 (modules '((guix build utils)))
8974 (snippet
8975 '(begin
8976 ;; The contents of /proc/cpuinfo can differ and confuse the
8977 ;; cpu_clock and cpu_type methods, so we replace the test
8978 ;; with one that marks cpu_clock and cpu_type as TODO.
8979 ;; Borrowed from Debian.
8980 (call-with-output-file "t/Sys-CPU.t"
8981 (lambda (port)
8982 (format port "#!/usr/bin/perl
8983
8984 use Test::More tests => 4;
8985
8986 BEGIN { use_ok('Sys::CPU'); }
8987
8988 $number = &Sys::CPU::cpu_count();
8989 ok( defined($number), \"CPU Count: $number\" );
8990
8991 TODO: {
8992 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
8993 $speed = &Sys::CPU::cpu_clock();
8994 ok( defined($speed), \"CPU Speed: $speed\" );
8995 }
8996
8997 TODO: {
8998 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
8999 $type = &Sys::CPU::cpu_type();
9000 ok( defined($type), \"CPU Type: $type\" );
9001 }~%")))
9002 #t))))
9003 (build-system perl-build-system)
9004 (synopsis "Perl extension for getting CPU information")
9005 (description
9006 "Sys::CPU is a module for counting the number of CPUs on a system, and
9007 determining their type and clock speed.")
9008 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
9009 (license (package-license perl))))
9010
9011 (define-public perl-sys-hostname-long
9012 (package
9013 (name "perl-sys-hostname-long")
9014 (version "1.5")
9015 (source
9016 (origin
9017 (method url-fetch)
9018 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
9019 "Sys-Hostname-Long-" version ".tar.gz"))
9020 (sha256
9021 (base32
9022 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
9023 (build-system perl-build-system)
9024 (arguments `(#:tests? #f)) ;no `hostname' during build
9025 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
9026 (synopsis "Get full hostname in Perl")
9027 (description "Sys::Hostname::Long tries very hard to get the full hostname
9028 of a system.")
9029 (license (package-license perl))))
9030
9031 (define-public perl-sys-syscall
9032 (package
9033 (name "perl-sys-syscall")
9034 (version "0.25")
9035 (source
9036 (origin
9037 (method url-fetch)
9038 (uri (string-append "mirror://cpan/authors/id/B/BR/BRADFITZ/"
9039 "Sys-Syscall-" version ".tar.gz"))
9040 (sha256
9041 (base32
9042 "1r8k4q04dhs191zgdfgiagvbra770hx0bm6x24jsykxn0c6ghi8y"))))
9043 (build-system perl-build-system)
9044 (home-page "https://metacpan.org/release/Sys-Syscall")
9045 (synopsis
9046 "Access system calls that Perl doesn't normally provide access to")
9047 (description
9048 "Sys::Syscall allows one to use epoll and sendfile system calls from
9049 Perl. Support is mostly Linux-only for now, but other syscalls/OSes are
9050 planned for the future.")
9051 (license perl-license)))
9052
9053 (define-public perl-task-weaken
9054 (package
9055 (name "perl-task-weaken")
9056 (version "1.06")
9057 (source
9058 (origin
9059 (method url-fetch)
9060 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9061 "Task-Weaken-" version ".tar.gz"))
9062 (sha256
9063 (base32
9064 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
9065 (build-system perl-build-system)
9066 (arguments
9067 '(#:phases (modify-phases %standard-phases
9068 (add-before 'configure 'set-search-path
9069 (lambda _
9070 ;; Work around "dotless @INC" build failure.
9071 (setenv "PERL5LIB"
9072 (string-append (getcwd) ":"
9073 (getenv "PERL5LIB")))
9074 #t)))))
9075 (home-page "https://metacpan.org/release/Task-Weaken")
9076 (synopsis "Ensure that a platform has weaken support")
9077 (description "One recurring problem in modules that use Scalar::Util's
9078 weaken function is that it is not present in the pure-perl variant. If
9079 Scalar::Util is not available at all, it will issue a normal dependency on the
9080 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
9081 module does not have weaken, the install will bail out altogether with a long
9082 error encouraging the user to seek support.")
9083 (license (package-license perl))))
9084
9085 (define-public perl-template-toolkit
9086 (package
9087 (name "perl-template-toolkit")
9088 (version "2.28")
9089 (source
9090 (origin
9091 (method url-fetch)
9092 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9093 "Template-Toolkit-" version ".tar.gz"))
9094 (sha256
9095 (base32
9096 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
9097 (build-system perl-build-system)
9098 (propagated-inputs
9099 `(("perl-appconfig" ,perl-appconfig)
9100 ("perl-test-leaktrace" ,perl-test-leaktrace)))
9101 (home-page "https://metacpan.org/release/Template-Toolkit")
9102 (synopsis "Template processing system for Perl")
9103 (description "The Template Toolkit is a collection of modules which
9104 implement an extensible template processing system. It was originally
9105 designed and remains primarily useful for generating dynamic web content, but
9106 it can be used equally well for processing any other kind of text based
9107 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
9108 (license (package-license perl))))
9109
9110 (define-public perl-template-timer
9111 (package
9112 (name "perl-template-timer")
9113 (version "1.00")
9114 (source
9115 (origin
9116 (method url-fetch)
9117 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
9118 "Template-Timer-" version ".tar.gz"))
9119 (sha256
9120 (base32
9121 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
9122 (build-system perl-build-system)
9123 (propagated-inputs
9124 `(("perl-template-toolkit" ,perl-template-toolkit)))
9125 (home-page "https://metacpan.org/release/Template-Timer")
9126 (synopsis "Profiling for Template Toolkit")
9127 (description "Template::Timer provides inline profiling of the template
9128 processing in Perl code.")
9129 (license (list gpl3 artistic2.0))))
9130
9131 (define-public perl-template-tiny
9132 (package
9133 (name "perl-template-tiny")
9134 (version "1.12")
9135 (source
9136 (origin
9137 (method url-fetch)
9138 (uri (string-append
9139 "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-"
9140 version
9141 ".tar.gz"))
9142 (sha256
9143 (base32
9144 "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7"))))
9145 (build-system perl-build-system)
9146 (home-page "https://metacpan.org/release/Template-Tiny")
9147 (synopsis "Template Toolkit reimplemented in as little code as possible")
9148 (description
9149 "@code{Template::Tiny} is a reimplementation of a subset of the
9150 functionality from Template Toolkit in as few lines of code as possible.
9151
9152 It is intended for use in light-usage, low-memory, or low-cpu templating
9153 situations, where you may need to upgrade to the full feature set in the
9154 future, or if you want the retain the familiarity of TT-style templates.")
9155 (license perl-license)))
9156
9157 (define-public perl-term-encoding
9158 (package
9159 (name "perl-term-encoding")
9160 (version "0.02")
9161 (source
9162 (origin
9163 (method url-fetch)
9164 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
9165 "Term-Encoding-" version ".tar.gz"))
9166 (sha256
9167 (base32
9168 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
9169 (build-system perl-build-system)
9170 (native-inputs
9171 `(("perl-module-install" ,perl-module-install)))
9172 (home-page "https://metacpan.org/release/Term-Encoding")
9173 (synopsis "Detect encoding of the current terminal")
9174 (description "Term::Encoding is a simple module to detect the encoding of
9175 the current terminal expects in various ways.")
9176 (license (package-license perl))))
9177
9178 (define-public perl-term-progressbar
9179 (package
9180 (name "perl-term-progressbar")
9181 (version "2.17")
9182 (source
9183 (origin
9184 (method url-fetch)
9185 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
9186 "Term-ProgressBar-" version ".tar.gz"))
9187 (sha256
9188 (base32
9189 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
9190 (build-system perl-build-system)
9191 (native-inputs
9192 `(("perl-capture-tiny" ,perl-capture-tiny)
9193 ("perl-test-exception" ,perl-test-exception)))
9194 (propagated-inputs
9195 `(("perl-class-methodmaker" ,perl-class-methodmaker)
9196 ("perl-term-readkey" ,perl-term-readkey)))
9197 (home-page "https://metacpan.org/release/Term-ProgressBar")
9198 (synopsis "Progress meter on a standard terminal")
9199 (description "Term::ProgressBar provides a simple progress bar on the
9200 terminal, to let the user know that something is happening, roughly how much
9201 stuff has been done, and maybe an estimate at how long remains.")
9202 (license (package-license perl))))
9203
9204 (define-public perl-term-progressbar-quiet
9205 (package
9206 (name "perl-term-progressbar-quiet")
9207 (version "0.31")
9208 (source
9209 (origin
9210 (method url-fetch)
9211 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
9212 "Term-ProgressBar-Quiet-" version ".tar.gz"))
9213 (sha256
9214 (base32
9215 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
9216 (build-system perl-build-system)
9217 (propagated-inputs
9218 `(("perl-io-interactive" ,perl-io-interactive)
9219 ("perl-term-progressbar" ,perl-term-progressbar)
9220 ("perl-test-mockobject" ,perl-test-mockobject)))
9221 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
9222 (synopsis "Progress meter if run interactively")
9223 (description "Term::ProgressBar is a wonderful module for showing progress
9224 bars on the terminal. This module acts very much like that module when it is
9225 run interactively. However, when it is not run interactively (for example, as
9226 a cron job) then it does not show the progress bar.")
9227 (license (package-license perl))))
9228
9229 (define-public perl-term-progressbar-simple
9230 (package
9231 (name "perl-term-progressbar-simple")
9232 (version "0.03")
9233 (source
9234 (origin
9235 (method url-fetch)
9236 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
9237 "Term-ProgressBar-Simple-" version ".tar.gz"))
9238 (sha256
9239 (base32
9240 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
9241 (build-system perl-build-system)
9242 (propagated-inputs
9243 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
9244 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
9245 (synopsis "Simple progress bars")
9246 (description "Term::ProgressBar::Simple tells you how much work has been
9247 done, how much is left to do, and estimate how long it will take.")
9248 (license (package-license perl))))
9249
9250 (define-public perl-term-readkey
9251 (package
9252 (name "perl-term-readkey")
9253 (version "2.38")
9254 (source
9255 (origin
9256 (method url-fetch)
9257 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
9258 "TermReadKey-" version ".tar.gz"))
9259 (sha256
9260 (base32
9261 "143jlibah1g14bym7sj3gphvqkpj1w4vn7sqc4vc62jpviw5hr2s"))))
9262 (build-system perl-build-system)
9263 (home-page "https://metacpan.org/release/TermReadKey")
9264 (synopsis "Simple terminal control")
9265 (description "This module, ReadKey, provides ioctl control for terminals
9266 so the input modes can be changed (thus allowing reads of a single character
9267 at a time), and also provides non-blocking reads of stdin, as well as several
9268 other terminal related features, including retrieval/modification of the
9269 screen size, and retrieval/modification of the control characters.")
9270 (license (package-license perl))))
9271
9272 (define-public perl-term-readline-gnu
9273 (package
9274 (name "perl-term-readline-gnu")
9275 (version "1.36")
9276 (source
9277 (origin
9278 (method url-fetch)
9279 (uri (string-append "mirror://cpan/authors/id/H/HA/HAYASHI/"
9280 "Term-ReadLine-Gnu-" version ".tar.gz"))
9281 (sha256
9282 (base32
9283 "09b9mcmp09kdfh5jaqdr528yny8746hvn3f185aqd6rw06jgf24s"))))
9284 (build-system perl-build-system)
9285 (inputs
9286 `(("readline" ,readline)
9287 ("ncurses" ,ncurses)))
9288 (arguments
9289 `(#:tests? #f ; Tests fail without other Term::ReadLine interfaces present
9290 #:phases (modify-phases %standard-phases
9291 (add-before 'configure 'patch-search-lib
9292 (lambda* (#:key inputs #:allow-other-keys)
9293 (substitute* "Makefile.PL"
9294 ;; The configuration provides no way easy was to pass
9295 ;; additional directories to search for libraries, so
9296 ;; just patch in the flags.
9297 (("-lreadline" &)
9298 (format #f "-L~a/lib ~a" (assoc-ref inputs "readline") &))
9299 (("&search_lib\\('-lncurses'\\)")
9300 (string-append "'-L" (assoc-ref inputs "ncurses") "/lib"
9301 " -lncurses'"))))))))
9302 (home-page "https://metacpan.org/release/Term-ReadLine-Gnu")
9303 (synopsis "GNU Readline/History Library interface for Perl")
9304 (description "This module implements an interface to the GNU Readline
9305 library. It gives you input line editing facilities, input history management
9306 facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards
9307 compatible with Term::ReadLine.")
9308 (license (package-license perl))))
9309
9310 (define-public perl-term-size-any
9311 (package
9312 (name "perl-term-size-any")
9313 (version "0.002")
9314 (source
9315 (origin
9316 (method url-fetch)
9317 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9318 "Term-Size-Any-" version ".tar.gz"))
9319 (sha256
9320 (base32
9321 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
9322 (build-system perl-build-system)
9323 (native-inputs
9324 `(("perl-devel-hide" ,perl-devel-hide)))
9325 (propagated-inputs
9326 `(("perl-term-size-perl" ,perl-term-size-perl)))
9327 (home-page "https://metacpan.org/release/Term-Size-Any")
9328 (synopsis "Retrieve terminal size")
9329 (description "This is a unified interface to retrieve terminal size. It
9330 loads one module of a list of known alternatives, each implementing some way
9331 to get the desired terminal information. This loaded module will actually do
9332 the job on behalf of @code{Term::Size::Any}.")
9333 (license (package-license perl))))
9334
9335 (define-public perl-term-size-perl
9336 (package
9337 (name "perl-term-size-perl")
9338 (version "0.031")
9339 (source
9340 (origin
9341 (method url-fetch)
9342 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9343 "Term-Size-Perl-" version ".tar.gz"))
9344 (sha256
9345 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
9346 (build-system perl-build-system)
9347 (home-page "https://metacpan.org/release/Term-Size-Perl")
9348 (synopsis "Perl extension for retrieving terminal size (Perl version)")
9349 (description "This is yet another implementation of @code{Term::Size}.
9350 Now in pure Perl, with the exception of a C probe run at build time.")
9351 (license (package-license perl))))
9352
9353 (define-public perl-term-table
9354 (package
9355 (name "perl-term-table")
9356 (version "0.008")
9357 (source
9358 (origin
9359 (method url-fetch)
9360 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
9361 version ".tar.gz"))
9362 (sha256
9363 (base32
9364 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
9365 (build-system perl-build-system)
9366 (propagated-inputs
9367 `(("perl-importer" ,perl-importer)))
9368 (home-page "https://metacpan.org/release/Term-Table")
9369 (synopsis "Format a header and rows into a table")
9370 (description "This module is able to generically format rows of data
9371 into tables.")
9372 (license (package-license perl))))
9373
9374 (define-public perl-text-aligner
9375 (package
9376 (name "perl-text-aligner")
9377 (version "0.13")
9378 (source
9379 (origin
9380 (method url-fetch)
9381 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9382 "Text-Aligner-" version ".tar.gz"))
9383 (sha256
9384 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
9385 (build-system perl-build-system)
9386 (native-inputs `(("perl-module-build" ,perl-module-build)))
9387 (home-page "https://metacpan.org/release/Text-Aligner")
9388 (synopsis "Align text")
9389 (description "Text::Aligner exports a single function, align(), which is
9390 used to justify strings to various alignment styles.")
9391 (license x11)))
9392
9393 (define-public perl-text-balanced
9394 (package
9395 (name "perl-text-balanced")
9396 (version "2.03")
9397 (source
9398 (origin
9399 (method url-fetch)
9400 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
9401 "Text-Balanced-" version ".tar.gz"))
9402 (sha256
9403 (base32
9404 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
9405 (build-system perl-build-system)
9406 (home-page "https://metacpan.org/release/Text-Balanced")
9407 (synopsis "Extract delimited text sequences from strings")
9408 (description "The Text::Balanced module can be used to extract delimited
9409 text sequences from strings.")
9410 (license (package-license perl))))
9411
9412 (define-public perl-text-csv
9413 (package
9414 (name "perl-text-csv")
9415 (version "2.00")
9416 (source
9417 (origin
9418 (method url-fetch)
9419 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
9420 "Text-CSV-" version ".tar.gz"))
9421 (sha256
9422 (base32 "1hmjrc8h622nybdq8lpqi3hlrcjvb474s4a4b2cjs8h5b0cxkjwc"))))
9423 (build-system perl-build-system)
9424 (home-page "https://metacpan.org/release/Text-CSV")
9425 (synopsis "Manipulate comma-separated values")
9426 (description "Text::CSV provides facilities for the composition and
9427 decomposition of comma-separated values. An instance of the Text::CSV class
9428 can combine fields into a CSV string and parse a CSV string into fields.")
9429 (license (package-license perl))))
9430
9431 (define-public perl-text-csv-xs
9432 (package
9433 (name "perl-text-csv-xs")
9434 (version "1.39")
9435 (source
9436 (origin
9437 (method url-fetch)
9438 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
9439 "Text-CSV_XS-" version ".tgz"))
9440 (sha256
9441 (base32 "1gcy1bxym6f7qsxivkl3c5p94r1bjhf9csy1x38a1gk8mx744kma"))))
9442 (build-system perl-build-system)
9443 (home-page "https://metacpan.org/release/Text-CSV_XS")
9444 (synopsis "Routines for manipulating CSV files")
9445 (description "@code{Text::CSV_XS} provides facilities for the composition
9446 and decomposition of comma-separated values. An instance of the
9447 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
9448 CSV string into fields. The module accepts either strings or files as input
9449 and support the use of user-specified characters for delimiters, separators,
9450 and escapes.")
9451 (license (package-license perl))))
9452
9453 (define-public perl-text-diff
9454 (package
9455 (name "perl-text-diff")
9456 (version "1.45")
9457 (source
9458 (origin
9459 (method url-fetch)
9460 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9461 "Text-Diff-" version ".tar.gz"))
9462 (sha256
9463 (base32
9464 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
9465 (build-system perl-build-system)
9466 (propagated-inputs
9467 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
9468 (home-page "https://metacpan.org/release/Text-Diff")
9469 (synopsis "Perform diffs on files and record sets")
9470 (description "Text::Diff provides a basic set of services akin to the GNU
9471 diff utility. It is not anywhere near as feature complete as GNU diff, but it
9472 is better integrated with Perl and available on all platforms. It is often
9473 faster than shelling out to a system's diff executable for small files, and
9474 generally slower on larger files.")
9475 (license (package-license perl))))
9476
9477 (define-public perl-text-format
9478 (package
9479 (name "perl-text-format")
9480 (version "0.61")
9481 (source (origin
9482 (method url-fetch)
9483 (uri (string-append
9484 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
9485 version ".tar.gz"))
9486 (sha256
9487 (base32
9488 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
9489 (build-system perl-build-system)
9490 (native-inputs
9491 `(("perl-module-build" ,perl-module-build)
9492 ("perl-test-pod" ,perl-test-pod)
9493 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9494 (home-page "https://metacpan.org/release/Text-Format")
9495 (synopsis "Various subroutines to format text")
9496 (description "This package provides functions to format text in various
9497 ways like centering, paragraphing, and converting tabs to spaces and spaces
9498 to tabs.")
9499 (license perl-license)))
9500
9501 (define-public perl-text-glob
9502 (package
9503 (name "perl-text-glob")
9504 (version "0.11")
9505 (source
9506 (origin
9507 (method url-fetch)
9508 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
9509 "Text-Glob-" version ".tar.gz"))
9510 (sha256
9511 (base32
9512 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
9513 (build-system perl-build-system)
9514 (native-inputs `(("perl-module-build" ,perl-module-build)))
9515 (home-page "https://metacpan.org/release/Text-Glob")
9516 (synopsis "Match globbing patterns against text")
9517 (description "Text::Glob implements glob(3) style matching that can be
9518 used to match against text, rather than fetching names from a file system. If
9519 you want to do full file globbing use the File::Glob module instead.")
9520 (license (package-license perl))))
9521
9522 (define-public perl-text-neattemplate
9523 (package
9524 (name "perl-text-neattemplate")
9525 (version "0.1101")
9526 (source
9527 (origin
9528 (method url-fetch)
9529 (uri (string-append
9530 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
9531 "Text-NeatTemplate-" version ".tar.gz"))
9532 (sha256
9533 (base32
9534 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
9535 (build-system perl-build-system)
9536 (native-inputs
9537 `(("perl-module-build" ,perl-module-build)))
9538 (home-page
9539 "https://metacpan.org/release/Text-NeatTemplate")
9540 (synopsis "Fast, middleweight template engine")
9541 (description
9542 "Text::NeatTemplate provides a simple, middleweight but fast
9543 template engine, for when you need speed rather than complex features,
9544 yet need more features than simple variable substitution.")
9545 (license (package-license perl))))
9546
9547 (define-public perl-text-roman
9548 (package
9549 (name "perl-text-roman")
9550 (version "3.5")
9551 (source
9552 (origin
9553 (method url-fetch)
9554 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
9555 version ".tar.gz"))
9556 (sha256
9557 (base32
9558 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
9559 (build-system perl-build-system)
9560 (home-page "https://metacpan.org/release/Text-Roman")
9561 (synopsis "Convert between Roman and Arabic algorisms")
9562 (description "This package provides functions to convert between Roman and
9563 Arabic algorisms. It supports both conventional Roman algorisms (which range
9564 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
9565 algorism to indicate multiplication by 1000.")
9566 (license (package-license perl))))
9567
9568 (define-public perl-text-simpletable
9569 (package
9570 (name "perl-text-simpletable")
9571 (version "2.07")
9572 (source
9573 (origin
9574 (method url-fetch)
9575 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
9576 "Text-SimpleTable-" version ".tar.gz"))
9577 (sha256
9578 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
9579 (build-system perl-build-system)
9580 (home-page "https://metacpan.org/release/Text-SimpleTable")
9581 (synopsis "Simple ASCII tables")
9582 (description "Text::SimpleTable draws simple ASCII tables.")
9583 (license artistic2.0)))
9584
9585 (define-public perl-text-table
9586 (package
9587 (name "perl-text-table")
9588 (version "1.133")
9589 (source
9590 (origin
9591 (method url-fetch)
9592 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9593 "Text-Table-" version ".tar.gz"))
9594 (sha256
9595 (base32
9596 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
9597 (build-system perl-build-system)
9598 (native-inputs
9599 `(("perl-module-build" ,perl-module-build)))
9600 (propagated-inputs
9601 `(("perl-text-aligner" ,perl-text-aligner)))
9602 (home-page "https://metacpan.org/release/Text-Table")
9603 (synopsis "Organize Data in Tables")
9604 (description "Text::Table renders plaintext tables.")
9605 (license x11)))
9606
9607 (define-public perl-text-template
9608 (package
9609 (name "perl-text-template")
9610 (version "1.55")
9611 (source
9612 (origin
9613 (method url-fetch)
9614 (uri (string-append
9615 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
9616 version
9617 ".tar.gz"))
9618 (sha256
9619 (base32
9620 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
9621 (build-system perl-build-system)
9622 (native-inputs
9623 `(("perl-test-more-utf8" ,perl-test-more-utf8)
9624 ("perl-test-warnings" ,perl-test-warnings)))
9625 (home-page
9626 "https://metacpan.org/release/Text-Template")
9627 (synopsis
9628 "Expand template text with embedded Perl")
9629 (description
9630 "This is a library for generating letters, building HTML pages, or
9631 filling in templates generally. A template is a piece of text that has little
9632 Perl programs embedded in it here and there. When you fill in a template, you
9633 evaluate the little programs and replace them with their values.")
9634 (license perl-license)))
9635
9636 (define-public perl-text-unidecode
9637 (package
9638 (name "perl-text-unidecode")
9639 (version "1.30")
9640 (source
9641 (origin
9642 (method url-fetch)
9643 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
9644 "Text-Unidecode-" version ".tar.gz"))
9645 (sha256
9646 (base32 "1imii0p6wvhrxsr5z2zhazpx5vl4l4ybf1y2c5hy480xvi6z293c"))))
9647 (build-system perl-build-system)
9648 (home-page "https://metacpan.org/release/Text-Unidecode")
9649 (synopsis "Provide plain ASCII transliterations of Unicode text")
9650 (description "Text::Unidecode provides a function, unidecode(...) that
9651 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
9652 universally displayable characters between 0x00 and 0x7F). The representation
9653 is almost always an attempt at transliteration-- i.e., conveying, in Roman
9654 letters, the pronunciation expressed by the text in some other writing
9655 system.")
9656 (license (package-license perl))))
9657
9658 (define-public perl-threads
9659 (package
9660 (name "perl-threads")
9661 (version "2.21")
9662 (source
9663 (origin
9664 (method url-fetch)
9665 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
9666 version ".tar.gz"))
9667 (sha256
9668 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
9669 (build-system perl-build-system)
9670 (home-page "https://metacpan.org/release/threads")
9671 (synopsis "Perl interpreter-based threads")
9672 (description "This module exposes interpreter threads to the Perl level.")
9673 (license perl-license)))
9674
9675 (define-public perl-throwable
9676 (package
9677 (name "perl-throwable")
9678 (version "0.200013")
9679 (source
9680 (origin
9681 (method url-fetch)
9682 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
9683 "Throwable-" version ".tar.gz"))
9684 (sha256
9685 (base32
9686 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
9687 (build-system perl-build-system)
9688 (native-inputs
9689 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
9690 (propagated-inputs
9691 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
9692 ("perl-module-runtime" ,perl-module-runtime)
9693 ("perl-moo" ,perl-moo)))
9694 (home-page "https://metacpan.org/release/Throwable")
9695 (synopsis "Role for classes that can be thrown")
9696 (description "Throwable is a role for classes that are meant to be thrown
9697 as exceptions to standard program flow.")
9698 (license (package-license perl))))
9699
9700 (define-public perltidy
9701 (package
9702 (name "perltidy")
9703 (version "20180220")
9704 (source (origin
9705 (method url-fetch)
9706 (uri (string-append "mirror://sourceforge/perltidy/" version
9707 "/Perl-Tidy-" version ".tar.gz"))
9708 (sha256
9709 (base32
9710 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
9711 (build-system perl-build-system)
9712 (home-page "http://perltidy.sourceforge.net/")
9713 (synopsis "Perl script tidier")
9714 (description "This package contains a Perl script which indents and
9715 reformats Perl scripts to make them easier to read. The formatting can be
9716 controlled with command line parameters. The default parameter settings
9717 approximately follow the suggestions in the Perl Style Guide.")
9718 (license gpl2+)))
9719
9720 (define-public perl-tie-cycle
9721 (package
9722 (name "perl-tie-cycle")
9723 (version "1.225")
9724 (source
9725 (origin
9726 (method url-fetch)
9727 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
9728 version ".tar.gz"))
9729 (sha256
9730 (base32
9731 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
9732 (build-system perl-build-system)
9733 (home-page "https://metacpan.org/release/Tie-Cycle")
9734 (synopsis "Cycle through a list of values")
9735 (description "You use @code{Tie::Cycle} to go through a list over and over
9736 again. Once you get to the end of the list, you go back to the beginning.")
9737 (license (package-license perl))))
9738
9739 (define-public perl-tie-ixhash
9740 (package
9741 (name "perl-tie-ixhash")
9742 (version "1.23")
9743 (source
9744 (origin
9745 (method url-fetch)
9746 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
9747 "Tie-IxHash-" version ".tar.gz"))
9748 (sha256
9749 (base32
9750 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
9751 (build-system perl-build-system)
9752 (native-inputs `(("perl-module-build" ,perl-module-build)))
9753 (home-page "https://metacpan.org/release/Tie-IxHash")
9754 (synopsis "Ordered associative arrays for Perl")
9755 (description "This Perl module implements Perl hashes that preserve the
9756 order in which the hash elements were added. The order is not affected when
9757 values corresponding to existing keys in the IxHash are changed. The elements
9758 can also be set to any arbitrary supplied order. The familiar perl array
9759 operations can also be performed on the IxHash.")
9760 (license (package-license perl))))
9761
9762 (define-public perl-tie-handle-offset
9763 (package
9764 (name "perl-tie-handle-offset")
9765 (version "0.004")
9766 (source
9767 (origin
9768 (method url-fetch)
9769 (uri (string-append
9770 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
9771 version
9772 ".tar.gz"))
9773 (sha256
9774 (base32
9775 "17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
9776 (build-system perl-build-system)
9777 (home-page "https://metacpan.org/release/Tie-Handle-Offset")
9778 (synopsis "Special file handle that hides the beginning of a file")
9779 (description
9780 "This modules provides a file handle that hides the beginning of a file,
9781 by modifying the @code{seek()} and @code{tell()} calls.")
9782 (license asl2.0)))
9783
9784 (define-public perl-tie-toobject
9785 (package
9786 (name "perl-tie-toobject")
9787 (version "0.03")
9788 (source
9789 (origin
9790 (method url-fetch)
9791 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
9792 "Tie-ToObject-" version ".tar.gz"))
9793 (sha256
9794 (base32
9795 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
9796 (build-system perl-build-system)
9797 (propagated-inputs
9798 `(("perl-test-simple" ,perl-test-simple)))
9799 (home-page "https://metacpan.org/release/Tie-ToObject")
9800 (synopsis "Tie to an existing Perl object")
9801 (description "This class provides a tie constructor that returns the
9802 object it was given as it's first argument. This way side effects of calling
9803 $object->TIEHASH are avoided.")
9804 (license (package-license perl))))
9805
9806 (define-public perl-time-duration
9807 (package
9808 (name "perl-time-duration")
9809 (version "1.21")
9810 (source
9811 (origin
9812 (method url-fetch)
9813 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9814 "Time-Duration-" version ".tar.gz"))
9815 (sha256
9816 (base32 "1f59z2svfydxgd1gzrb5k3hl6d432kzmskk7jhv2dyb5hyx0wd7y"))))
9817 (build-system perl-build-system)
9818 (native-inputs
9819 `(("perl-module-install" ,perl-module-install)
9820 ("perl-test-pod" ,perl-test-pod)
9821 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9822 (home-page "https://metacpan.org/release/Time-Duration")
9823 (synopsis "English expression of durations")
9824 (description "This module provides functions for expressing durations in
9825 rounded or exact terms.")
9826 (license (package-license perl))))
9827
9828 (define-public perl-time-duration-parse
9829 (package
9830 (name "perl-time-duration-parse")
9831 (version "0.14")
9832 (source
9833 (origin
9834 (method url-fetch)
9835 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9836 "Time-Duration-Parse-" version ".tar.gz"))
9837 (sha256
9838 (base32 "17nh73r50mqqpgxdf3zpgdiqrizmjy0vdk0zd6xi9zcsdijrdhnc"))))
9839 (build-system perl-build-system)
9840 (native-inputs
9841 `(("perl-time-duration" ,perl-time-duration)))
9842 (propagated-inputs
9843 `(("perl-exporter-lite" ,perl-exporter-lite)))
9844 (home-page "https://metacpan.org/release/Time-Duration-Parse")
9845 (synopsis "Parse time duration strings")
9846 (description "Time::Duration::Parse is a module to parse human readable
9847 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
9848 (license (package-license perl))))
9849
9850 (define-public perl-time-hires
9851 (package
9852 (name "perl-time-hires")
9853 (version "1.9760")
9854 (source (origin
9855 (method url-fetch)
9856 (uri (string-append
9857 "mirror://cpan/authors/id/A/AT/ATOOMIC/Time-HiRes-"
9858 version ".tar.gz"))
9859 (sha256
9860 (base32
9861 "0avh25m5ffsqc2xnfczvlnlbfbisw5wjq9d3w0j01h9byjzrif1c"))))
9862 (build-system perl-build-system)
9863 (home-page "https://metacpan.org/release/Time-HiRes")
9864 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
9865 (description "This package implements @code{usleep}, @code{ualarm}, and
9866 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
9867 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
9868 (license perl-license)))
9869
9870 (define-public perl-time-local
9871 (package
9872 (name "perl-time-local")
9873 (version "1.28")
9874 (source
9875 (origin
9876 (method url-fetch)
9877 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
9878 "Time-Local-" version ".tar.gz"))
9879 (sha256
9880 (base32
9881 "03p1mxk75vmmi4l0ibpd05b6hncbh8afjhvss87vpp4rrkjvjy4j"))))
9882 (build-system perl-build-system)
9883 (home-page "https://metacpan.org/release/Time-Local")
9884 (synopsis "Efficiently compute time from local and GMT time")
9885 (description "This module provides functions that are the inverse of
9886 built-in perl functions localtime() and gmtime(). They accept a date as a
9887 six-element array, and return the corresponding time(2) value in seconds since
9888 the system epoch.")
9889 (license (package-license perl))))
9890
9891 (define-public perl-time-piece
9892 (package
9893 (name "perl-time-piece")
9894 (version "1.3203")
9895 (source
9896 (origin
9897 (method url-fetch)
9898 (uri (string-append
9899 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
9900 version ".tar.gz"))
9901 (sha256
9902 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
9903 (build-system perl-build-system)
9904 (home-page "https://metacpan.org/release/Time-Piece")
9905 (synopsis "Object-Oriented time objects")
9906 (description
9907 "This module replaces the standard @code{localtime} and @code{gmtime}
9908 functions with implementations that return objects. It does so in a
9909 backwards-compatible manner, so that using these functions as documented will
9910 still work as expected.")
9911 (license perl-license)))
9912
9913 (define-public perl-timedate
9914 (package
9915 (name "perl-timedate")
9916 (version "2.32")
9917 (source
9918 (origin
9919 (method url-fetch)
9920 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9921 "TimeDate-" version ".tar.gz"))
9922 (sha256
9923 (base32 "1mmk9dy4a26a4d4c5rswqqhxr0295j93bjbcx91d3qkmwfcs1v1l"))))
9924 (build-system perl-build-system)
9925 (home-page "https://metacpan.org/release/TimeDate")
9926 (synopsis "Date parsing/formatting subroutines")
9927 (description "This module provides routines for parsing date string into
9928 time values and formatting dates into ASCII strings.")
9929 (license (package-license perl))))
9930
9931 (define-public perl-time-mock
9932 (package
9933 (name "perl-time-mock")
9934 (version "v0.0.2")
9935 (source
9936 (origin
9937 (method url-fetch)
9938 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
9939 "Time-Mock-" version ".tar.gz"))
9940 (sha256
9941 (base32
9942 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
9943 (build-system perl-build-system)
9944 (native-inputs
9945 `(("perl-module-build" ,perl-module-build)))
9946 (propagated-inputs
9947 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
9948 (home-page "https://metacpan.org/release/Time-Mock")
9949 (synopsis "Shift and scale time")
9950 (description "This module allows you to speed up your sleep(), alarm(),
9951 and time() calls.")
9952 (license (package-license perl))))
9953
9954 (define-public perl-tree-simple
9955 (package
9956 (name "perl-tree-simple")
9957 (version "1.33")
9958 (source
9959 (origin
9960 (method url-fetch)
9961 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
9962 "Tree-Simple-" version ".tgz"))
9963 (sha256
9964 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
9965 (build-system perl-build-system)
9966 (native-inputs
9967 `(("perl-module-build" ,perl-module-build)
9968 ("perl-test-exception" ,perl-test-exception)))
9969 (propagated-inputs
9970 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
9971 (home-page "https://metacpan.org/release/Tree-Simple")
9972 (synopsis "Simple tree object")
9973 (description "This module in a fully object-oriented implementation of a
9974 simple n-ary tree.")
9975 (license (package-license perl))))
9976
9977 (define-public perl-tree-simple-visitorfactory
9978 (package
9979 (name "perl-tree-simple-visitorfactory")
9980 (version "0.15")
9981 (source
9982 (origin
9983 (method url-fetch)
9984 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
9985 "Tree-Simple-VisitorFactory-" version ".tgz"))
9986 (sha256
9987 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
9988 (build-system perl-build-system)
9989 (native-inputs
9990 `(("perl-module-build" ,perl-module-build)
9991 ("perl-test-exception" ,perl-test-exception)))
9992 (propagated-inputs
9993 `(("perl-tree-simple" ,perl-tree-simple)))
9994 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
9995 (synopsis "Factory object for dispensing Visitor objects")
9996 (description "This module is a factory for dispensing
9997 Tree::Simple::Visitor::* objects.")
9998 (license (package-license perl))))
9999
10000 (define-public perl-try-tiny
10001 (package
10002 (name "perl-try-tiny")
10003 (version "0.30")
10004 (source
10005 (origin
10006 (method url-fetch)
10007 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10008 "Try-Tiny-" version ".tar.gz"))
10009 (sha256
10010 (base32
10011 "0szgvlz19yz3mq1lbzmwh8w5dh6agg5s16xv22zrnl83r7ax0nys"))))
10012 (build-system perl-build-system)
10013 (home-page "https://metacpan.org/release/Try-Tiny")
10014 (synopsis "Minimal try/catch with proper preservation of $@@")
10015 (description "This module provides bare bones try/catch/finally statements
10016 that are designed to minimize common mistakes with eval blocks, and nothing
10017 else.")
10018 (license x11)))
10019
10020 (define-public perl-type-tie
10021 (package
10022 (name "perl-type-tie")
10023 (version "0.014")
10024 (source
10025 (origin
10026 (method url-fetch)
10027 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10028 "Type-Tie-" version ".tar.gz"))
10029 (sha256
10030 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
10031 (build-system perl-build-system)
10032 (native-inputs
10033 `(("perl-test-fatal" ,perl-test-fatal)
10034 ("perl-test-requires" ,perl-test-requires)))
10035 (propagated-inputs
10036 `(("perl-exporter-tiny" ,perl-exporter-tiny)
10037 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
10038 (home-page "https://metacpan.org/release/Type-Tie")
10039 (synopsis "Tie a variable to a type constraint")
10040 (description "This module exports a single function: @code{ttie}. It ties
10041 a variable to a type constraint, ensuring that whatever values stored in the
10042 variable will conform to the type constraint. If the type constraint has
10043 coercions, these will be used if necessary to ensure values assigned to the
10044 variable conform.")
10045 (license (package-license perl))))
10046
10047 (define-public perl-type-tiny
10048 (package
10049 (name "perl-type-tiny")
10050 (version "1.008003")
10051 (source
10052 (origin
10053 (method url-fetch)
10054 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10055 "Type-Tiny-" version ".tar.gz"))
10056 (sha256
10057 (base32 "1x80rlnh7kl4xgm4qvyfbgahcyla4wbyh3b759nm21czn8x6wkm4"))))
10058 (build-system perl-build-system)
10059 (native-inputs
10060 `(("perl-test-warnings" ,perl-test-warnings)))
10061 (propagated-inputs
10062 `(("perl-devel-lexalias" ,perl-devel-lexalias)
10063 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
10064 ("perl-exporter-tiny" ,perl-exporter-tiny)
10065 ("perl-moo" ,perl-moo)
10066 ("perl-moose" ,perl-moose)
10067 ("perl-mouse" ,perl-mouse)
10068 ("perl-ref-util-xs" ,perl-ref-util-xs)
10069 ("perl-regexp-util" ,perl-regexp-util)
10070 ("perl-type-tie" ,perl-type-tie)))
10071 (home-page "https://metacpan.org/release/Type-Tiny")
10072 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
10073 (description "@code{Type::Tiny} is a small class for writing type
10074 constraints, inspired by Moose's type constraint API. It has only one
10075 non-core dependency (and even that is simply a module that was previously
10076 distributed as part of @code{Type::Tiny} but has since been spun off), and can
10077 be used with Moose, Mouse and Moo (or none of the above).")
10078 (license (package-license perl))))
10079
10080 (define-public perl-type-tiny-xs
10081 (package
10082 (name "perl-type-tiny-xs")
10083 (version "0.014")
10084 (source
10085 (origin
10086 (method url-fetch)
10087 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
10088 version ".tar.gz"))
10089 (sha256
10090 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
10091 (build-system perl-build-system)
10092 (home-page "https://metacpan.org/release/Type-Tiny-XS")
10093 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
10094 (description "This module is optionally used by @code{Type::Tiny} to
10095 provide faster, C-based implementations of some type constraints. This
10096 package has only core dependencies, and does not depend on @code{Type::Tiny},
10097 so other data validation frameworks might also consider using it.")
10098 (license perl-license)))
10099
10100 (define-public perl-types-path-tiny
10101 (package
10102 (name "perl-types-path-tiny")
10103 (version "0.006")
10104 (source
10105 (origin
10106 (method url-fetch)
10107 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10108 "Types-Path-Tiny-" version ".tar.gz"))
10109 (sha256
10110 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
10111 (build-system perl-build-system)
10112 (propagated-inputs
10113 `(("perl-file-pushd" ,perl-file-pushd)
10114 ("perl-path-tiny" ,perl-path-tiny)
10115 ("perl-type-tiny" ,perl-type-tiny)
10116 ("perl-exporter-tiny" ,perl-exporter-tiny)))
10117 (home-page "https://metacpan.org/release/Types-Path-Tiny")
10118 (synopsis "Types and coercions for Moose and Moo")
10119 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
10120 etc. It handles two important types of coercion: coercing objects with
10121 overloaded stringification, and coercing to absolute paths. It also can check
10122 to ensure that files or directories exist.")
10123 (license artistic2.0)))
10124
10125 (define-public perl-types-serialiser
10126 (package
10127 (name "perl-types-serialiser")
10128 (version "1.0")
10129 (source
10130 (origin
10131 (method url-fetch)
10132 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
10133 "Types-Serialiser-" version ".tar.gz"))
10134 (sha256
10135 (base32
10136 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
10137 (build-system perl-build-system)
10138 (propagated-inputs
10139 `(("perl-common-sense" ,perl-common-sense)))
10140 (home-page "https://metacpan.org/release/Types-Serialiser")
10141 (synopsis "Data types for common serialisation formats")
10142 (description "This module provides some extra datatypes that are used by
10143 common serialisation formats such as JSON or CBOR.")
10144 (license (package-license perl))))
10145
10146 (define-public perl-unicode-normalize
10147 (package
10148 (name "perl-unicode-normalize")
10149 (version "1.26")
10150 (source
10151 (origin
10152 (method url-fetch)
10153 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
10154 "Unicode-Normalize-" version ".tar.gz"))
10155 (sha256
10156 (base32
10157 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
10158 (build-system perl-build-system)
10159 (arguments
10160 '(#:phases (modify-phases %standard-phases
10161 (add-before 'configure 'set-search-path
10162 (lambda _
10163 ;; Work around "dotless @INC" build failure.
10164 (setenv "PERL5LIB"
10165 (string-append (getcwd) ":"
10166 (getenv "PERL5LIB")))
10167 #t)))))
10168 (home-page "https://metacpan.org/release/Unicode-Normalize")
10169 (synopsis "Unicode normalization forms")
10170 (description "This Perl module provides Unicode normalization forms.")
10171 (license (package-license perl))))
10172
10173 (define-public perl-unicode-collate
10174 (package
10175 (name "perl-unicode-collate")
10176 (version "1.27")
10177 (source
10178 (origin
10179 (method url-fetch)
10180 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
10181 "Unicode-Collate-" version ".tar.gz"))
10182 (sha256
10183 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
10184 (build-system perl-build-system)
10185 (arguments
10186 `(#:phases
10187 (modify-phases %standard-phases
10188 (add-before 'configure 'set-perl-search-path
10189 (lambda _
10190 ;; Work around "dotless @INC" build failure.
10191 (setenv "PERL5LIB"
10192 (string-append (getcwd) ":"
10193 (getenv "PERL5LIB")))
10194 #t)))))
10195 (propagated-inputs
10196 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
10197 (home-page "https://metacpan.org/release/Unicode-Collate")
10198 (synopsis "Unicode collation algorithm")
10199 (description "This package provides tools for sorting and comparing
10200 Unicode data.")
10201 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
10202 ;; license.
10203 (license (list (package-license perl) expat))))
10204
10205 (define-public perl-unicode-linebreak
10206 (package
10207 (name "perl-unicode-linebreak")
10208 (version "2019.001")
10209 (source (origin
10210 (method url-fetch)
10211 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
10212 "Unicode-LineBreak-" version ".tar.gz"))
10213 (sha256
10214 (base32
10215 "12iinva5gqc9g7qzxrvmh45n714z0ad9g7wq2dxwgp6drbj64rs8"))))
10216 (build-system perl-build-system)
10217 (propagated-inputs
10218 `(("perl-mime-charset" ,perl-mime-charset)))
10219 (home-page "https://metacpan.org/release/Unicode-LineBreak")
10220 (synopsis "Unicode line breaking algorithm")
10221 (description
10222 "@code{Unicode::LineBreak} implements the line breaking algorithm
10223 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
10224 defined by Annex #11 is used to determine breaking positions.")
10225 (license (package-license perl))))
10226
10227 (define-public perl-unicode-utf8
10228 (package
10229 (name "perl-unicode-utf8")
10230 (version "0.62")
10231 (source (origin
10232 (method url-fetch)
10233 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
10234 "Unicode-UTF8-" version ".tar.gz"))
10235 (sha256
10236 (base32
10237 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
10238 (build-system perl-build-system)
10239 ;; FIXME: Tests fail on 32-bit architectures:
10240 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
10241 (arguments `(#:tests? ,(target-64bit?)))
10242 (native-inputs
10243 `(("perl-test-fatal" ,perl-test-fatal)
10244 ("perl-test-leaktrace" ,perl-test-leaktrace)
10245 ("perl-variable-magic" ,perl-variable-magic)
10246 ("perl-test-pod" ,perl-test-pod)))
10247 (home-page "https://metacpan.org/release/Unicode-UTF8")
10248 (synopsis "Encoding and decoding of UTF-8 encoding form")
10249 (description
10250 "This module provides functions to encode and decode UTF-8 encoding form
10251 as specified by Unicode and ISO/IEC 10646:2011.")
10252 (license (package-license perl))))
10253
10254 (define-public perl-universal-can
10255 (package
10256 (name "perl-universal-can")
10257 (version "1.20140328")
10258 (source
10259 (origin
10260 (method url-fetch)
10261 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
10262 "UNIVERSAL-can-" version ".tar.gz"))
10263 (sha256
10264 (base32
10265 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
10266 (build-system perl-build-system)
10267 (home-page "https://metacpan.org/release/UNIVERSAL-can")
10268 (synopsis "UNIVERSAL::can() reimplementation")
10269 (description "This module attempts to work around people calling
10270 UNIVERSAL::can() as a function, which it is not.")
10271 (license (package-license perl))))
10272
10273 (define-public perl-universal-isa
10274 (package
10275 (name "perl-universal-isa")
10276 (version "1.20171012")
10277 (source
10278 (origin
10279 (method url-fetch)
10280 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10281 "UNIVERSAL-isa-" version ".tar.gz"))
10282 (sha256
10283 (base32
10284 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
10285 (build-system perl-build-system)
10286 (native-inputs
10287 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
10288 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
10289 (synopsis "UNIVERSAL::isa() reimplementation")
10290 (description "This module attempts to recover from people calling
10291 UNIVERSAL::isa as a function.")
10292 (license (package-license perl))))
10293
10294 (define-public perl-universal-require
10295 (package
10296 (name "perl-universal-require")
10297 (version "0.18")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (string-append
10302 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
10303 version ".tar.gz"))
10304 (sha256
10305 (base32
10306 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
10307 (build-system perl-build-system)
10308 (home-page "https://metacpan.org/release/UNIVERSAL-require")
10309 (synopsis "Require modules from a variable")
10310 (description "This module lets you require other modules where the module
10311 name is in a variable, something you can't do with the @code{require}
10312 built-in.")
10313 (license (package-license perl))))
10314
10315 (define-public perl-variable-magic
10316 (package
10317 (name "perl-variable-magic")
10318 (version "0.62")
10319 (source
10320 (origin
10321 (method url-fetch)
10322 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
10323 "Variable-Magic-" version ".tar.gz"))
10324 (sha256
10325 (base32
10326 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
10327 (build-system perl-build-system)
10328 (home-page "https://metacpan.org/release/Variable-Magic")
10329 (synopsis "Associate user-defined magic to variables from Perl")
10330 (description "Magic is Perl's way of enhancing variables. This mechanism
10331 lets the user add extra data to any variable and hook syntactical
10332 operations (such as access, assignment or destruction) that can be applied to
10333 it. With this module, you can add your own magic to any variable without
10334 having to write a single line of XS.")
10335 (license (package-license perl))))
10336
10337 (define-public perl-xml-writer
10338 (package
10339 (name "perl-xml-writer")
10340 (version "0.625")
10341 (source
10342 (origin
10343 (method url-fetch)
10344 (uri (string-append
10345 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
10346 version
10347 ".tar.gz"))
10348 (sha256
10349 (base32
10350 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
10351 (build-system perl-build-system)
10352 (home-page "https://metacpan.org/release/XML-Writer")
10353 (synopsis "Easily generate well-formed, namespace-aware XML")
10354 (description "@code{XML::Writer} is a simple Perl module for writing XML
10355 documents: it takes care of constructing markup and escaping data correctly.
10356 By default, it also performs a significant amount of well-formedness checking
10357 on the output to make certain (for example) that start and end tags match,
10358 that there is exactly one document element, and that there are not duplicate
10359 attribute names.")
10360 ;; Redistribution and use in source and compiled forms, with or without
10361 ;; modification, are permitted under any circumstances. No warranty.
10362 (license public-domain)))
10363
10364 (define-public perl-xs-object-magic
10365 (package
10366 (name "perl-xs-object-magic")
10367 (version "0.05")
10368 (source (origin
10369 (method url-fetch)
10370 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10371 "XS-Object-Magic-" version ".tar.gz"))
10372 (sha256
10373 (base32
10374 "0njyy4y0zax4zz55y82dlm9cly1pld1lcxb281s12bp9rrhf9j9x"))))
10375 (build-system perl-build-system)
10376 (native-inputs
10377 `(("perl-extutils-depends" ,perl-extutils-depends)
10378 ("perl-module-install" ,perl-module-install)
10379 ("perl-test-fatal" ,perl-test-fatal)))
10380 (home-page "https://metacpan.org/release/XS-Object-Magic")
10381 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
10382 (description
10383 "This way of associating structs with Perl space objects is designed to
10384 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
10385 (structs can be associated with any data type) and opaque (the C pointer is
10386 neither visible nor modifiable from Perl space).")
10387 (license (package-license perl))))
10388
10389 (define-public perl-yaml
10390 (package
10391 (name "perl-yaml")
10392 (version "1.29")
10393 (source
10394 (origin
10395 (method url-fetch)
10396 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
10397 "YAML-" version ".tar.gz"))
10398 (sha256
10399 (base32 "0gl5ssvrdajlbc85cy6z873n9cwlssk5q8z97a31vyiikhw5fp4w"))))
10400 (build-system perl-build-system)
10401 (native-inputs
10402 `(("perl-test-yaml" ,perl-test-yaml)))
10403 (home-page "https://metacpan.org/release/YAML")
10404 (synopsis "YAML for Perl")
10405 (description "The YAML.pm module implements a YAML Loader and Dumper based
10406 on the YAML 1.0 specification.")
10407 (license (package-license perl))))
10408
10409 (define-public perl-yaml-libyaml
10410 (package
10411 (name "perl-yaml-libyaml")
10412 (version "0.80")
10413 (source
10414 (origin
10415 (method url-fetch)
10416 (uri (string-append
10417 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
10418 version ".tar.gz"))
10419 (sha256
10420 (base32 "1nhn4w52kpq757rxl052f61h36rdzsy416k740m3fy5ih7axhq4x"))))
10421 (build-system perl-build-system)
10422 (home-page "https://metacpan.org/release/YAML-LibYAML")
10423 (synopsis "Perl YAML Serialization using XS and libyaml")
10424 (description
10425 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
10426 best YAML support to date.")
10427 (license perl-license)))
10428
10429 (define-public perl-yaml-tiny
10430 (package
10431 (name "perl-yaml-tiny")
10432 (version "1.73")
10433 (source
10434 (origin
10435 (method url-fetch)
10436 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10437 "YAML-Tiny-" version ".tar.gz"))
10438 (sha256
10439 (base32
10440 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
10441 (build-system perl-build-system)
10442 (native-inputs
10443 `(("perl-json-maybexs" ,perl-json-maybexs)
10444 ("perl-module-build-tiny" ,perl-module-build-tiny)))
10445 (arguments
10446 `(#:tests? #f)) ;requires Test::More >= 0.99
10447 (home-page "https://metacpan.org/release/YAML-Tiny")
10448 (synopsis "Read/Write YAML files")
10449 (description "YAML::Tiny is a perl class for reading and writing
10450 YAML-style files, written with as little code as possible, reducing load time
10451 and memory overhead.")
10452 (license (package-license perl))))
10453
10454 (define-public perl-parse-recdescent
10455 (package
10456 (name "perl-parse-recdescent")
10457 (version "1.967015")
10458 (source
10459 (origin
10460 (method url-fetch)
10461 (uri (string-append
10462 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
10463 version
10464 ".tar.gz"))
10465 (sha256
10466 (base32
10467 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
10468 (build-system perl-build-system)
10469 (native-inputs
10470 `(("perl-module-build" ,perl-module-build)))
10471 (home-page
10472 "https://metacpan.org/release/Parse-RecDescent")
10473 (synopsis "Generate recursive-descent parsers")
10474 (description
10475 "@code{Parse::RecDescent} can incrementally generate top-down
10476 recursive-descent text parsers from simple yacc-like grammar specifications.")
10477 (license perl-license)))
10478
10479 (define-public perl-parse-yapp
10480 (package
10481 (name "perl-parse-yapp")
10482 (version "1.21")
10483 (source
10484 (origin
10485 (method url-fetch)
10486 (uri (string-append
10487 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
10488 version
10489 ".tar.gz"))
10490 (sha256
10491 (base32
10492 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
10493 (build-system perl-build-system)
10494 (home-page "https://metacpan.org/release/Parse-Yapp")
10495 (synopsis "Generate and use LALR parsers")
10496 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
10497 grammars to generate Perl object oriented parser modules.")
10498 (license (package-license perl))))
10499
10500 \f
10501 ;;; Some packaged modules need versions of core modules that are newer than
10502 ;;; those in our perl 5.16.1.
10503
10504 (define-public perl-cpan-meta
10505 (package
10506 (name "perl-cpan-meta")
10507 (version "2.150010")
10508 (source
10509 (origin
10510 (method url-fetch)
10511 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10512 "CPAN-Meta-" version ".tar.gz"))
10513 (sha256
10514 (base32
10515 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10516 (build-system perl-build-system)
10517 (propagated-inputs
10518 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
10519 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
10520 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
10521 (home-page "https://metacpan.org/release/CPAN-Meta")
10522 (synopsis "Distribution metadata for a CPAN dist")
10523 (description "Software distributions released to the CPAN include a
10524 META.json or, for older distributions, META.yml, which describes the
10525 distribution, its contents, and the requirements for building and installing
10526 the distribution. The data structure stored in the META.json file is
10527 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
10528 represent this distribution metadata (or distmeta), along with some helpful
10529 methods for interrogating that data.")
10530 (license (package-license perl))))
10531
10532 (define-public perl-cpan-meta-requirements
10533 (package
10534 (name "perl-cpan-meta-requirements")
10535 (version "2.140")
10536 (source
10537 (origin
10538 (method url-fetch)
10539 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10540 "CPAN-Meta-Requirements-" version ".tar.gz"))
10541 (sha256
10542 (base32
10543 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
10544 (build-system perl-build-system)
10545 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
10546 (synopsis "Set of version requirements for a CPAN dist")
10547 (description "A CPAN::Meta::Requirements object models a set of version
10548 constraints like those specified in the META.yml or META.json files in CPAN
10549 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
10550 adding more and more constraints, and will reduce them to the simplest
10551 representation.")
10552 (license (package-license perl))))
10553
10554 (define-public perl-cpan-meta-yaml
10555 (package
10556 (name "perl-cpan-meta-yaml")
10557 (version "0.018")
10558 (source
10559 (origin
10560 (method url-fetch)
10561 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10562 "CPAN-Meta-YAML-" version ".tar.gz"))
10563 (sha256
10564 (base32
10565 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
10566 (build-system perl-build-system)
10567 (arguments
10568 `(#:tests? #f)) ;Tests require Test::More >= 0.99
10569 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
10570 (synopsis "Read and write a subset of YAML for CPAN Meta files")
10571 (description "This module implements a subset of the YAML specification
10572 for use in reading and writing CPAN metadata files like META.yml and
10573 MYMETA.yml.")
10574 (license (package-license perl))))
10575
10576 (define-public perl-module-build
10577 (package
10578 (name "perl-module-build")
10579 (version "0.4229")
10580 (source
10581 (origin
10582 (method url-fetch)
10583 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
10584 "Module-Build-" version ".tar.gz"))
10585 (sha256
10586 (base32
10587 "064c03wxia7jz0i578awj4srykj0nnigm4p5r0dv0559rnk93r0z"))))
10588 (build-system perl-build-system)
10589 (propagated-inputs
10590 `(("perl-cpan-meta" ,perl-cpan-meta)))
10591 (home-page "https://metacpan.org/release/Module-Build")
10592 (synopsis "Build and install Perl modules")
10593 (description "@code{Module::Build} is a system for building, testing, and
10594 installing Perl modules; it used to be part of Perl itself until version 5.22,
10595 which dropped it. It is meant to be an alternative to
10596 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
10597 through subclassing in a much more straightforward way than with
10598 @code{MakeMaker}. It also does not require a @command{make} on your
10599 system---most of the @code{Module::Build} code is pure-Perl.")
10600 (license (package-license perl))))
10601
10602 (define-public perl-parse-cpan-meta
10603 (package
10604 (name "perl-parse-cpan-meta")
10605 (version "2.150010")
10606 (source
10607 (origin
10608 (method url-fetch)
10609 ;; This module is now known as CPAN::Meta on CPAN.
10610 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10611 "CPAN-Meta-" version ".tar.gz"))
10612 (sha256
10613 (base32
10614 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10615 (build-system perl-build-system)
10616 (propagated-inputs
10617 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
10618 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
10619 (synopsis "Parse META.yml and META.json CPAN metadata files")
10620 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
10621 files, using JSON::PP and/or CPAN::Meta::YAML.")
10622 (license (package-license perl))))
10623
10624 (define-public perl-scalar-list-utils
10625 (package
10626 (name "perl-scalar-list-utils")
10627 (version "1.53")
10628 (source
10629 (origin
10630 (method url-fetch)
10631 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
10632 "Scalar-List-Utils-" version ".tar.gz"))
10633 (sha256
10634 (base32 "16dfpnrcf5846j998rdd6gra16m9030rnz9fpsh1hfzvcsq8ch5x"))))
10635 (build-system perl-build-system)
10636 (home-page "https://metacpan.org/release/Scalar-List-Utils")
10637 (synopsis "Common Scalar and List utility subroutines")
10638 (description "This package contains a selection of subroutines that people
10639 have expressed would be nice to have in the perl core, but the usage would not
10640 really be high enough to warrant the use of a keyword, and the size so small
10641 such that being individual extensions would be wasteful.")
10642 (license (package-license perl))))
10643
10644 (define-public perl-shell-command
10645 (package
10646 (name "perl-shell-command")
10647 (version "0.06")
10648 (source
10649 (origin
10650 (method url-fetch)
10651 (uri (string-append
10652 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
10653 version
10654 ".tar.gz"))
10655 (sha256
10656 (base32
10657 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
10658 (build-system perl-build-system)
10659 (home-page
10660 "https://metacpan.org/release/Shell-Command")
10661 (synopsis
10662 "Cross-platform functions emulating common shell commands")
10663 (description
10664 "Shell::Command is a thin wrapper around ExtUtils::Command.")
10665 (license (package-license perl))))
10666
10667 ;;; END: Core module overrides
10668
10669 (define-public perl-file-find-object
10670 (package
10671 (name "perl-file-find-object")
10672 (version "v0.2.13")
10673 (source
10674 (origin
10675 (method url-fetch)
10676 (uri (string-append
10677 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
10678 version
10679 ".tar.gz"))
10680 (sha256
10681 (base32
10682 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
10683 (build-system perl-build-system)
10684 (native-inputs
10685 `(("perl-module-build" ,perl-module-build)))
10686 (inputs
10687 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
10688 (home-page
10689 "https://metacpan.org/release/File-Find-Object")
10690 (synopsis
10691 "Object-oriented File::Find replacement in Perl")
10692 (description "File::Find::Object is an object-oriented
10693 File::Find replacement in Perl.")
10694 (license artistic2.0)))
10695
10696 (define-public perl-file-find-object-rule
10697 (package
10698 (name "perl-file-find-object-rule")
10699 (version "0.0311")
10700 (source
10701 (origin
10702 (method url-fetch)
10703 (uri (string-append
10704 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
10705 version
10706 ".tar.gz"))
10707 (sha256
10708 (base32 "0gjzfd5fz7mhr5abafxr7qic7nwhk7y9iv17as6l880973j952h3"))))
10709 (build-system perl-build-system)
10710 (native-inputs
10711 `(("perl-module-build" ,perl-module-build)))
10712 (inputs
10713 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
10714 ("perl-file-find-object" ,perl-file-find-object)
10715 ("perl-number-compare" ,perl-number-compare)
10716 ("perl-text-glob" ,perl-text-glob)))
10717 (home-page
10718 "https://metacpan.org/release/File-Find-Object-Rule")
10719 (synopsis
10720 "Alternative interface to File::Find::Object")
10721 (description "File::Find::Object::Rule is an alternative Perl
10722 interface to File::Find::Object.")
10723 (license (package-license perl))))
10724
10725 (define-public perl-file-finder
10726 (package
10727 (name "perl-file-finder")
10728 (version "0.53")
10729 (source
10730 (origin
10731 (method url-fetch)
10732 (uri (string-append
10733 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
10734 version ".tar.gz"))
10735 (sha256
10736 (base32
10737 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
10738 (build-system perl-build-system)
10739 (propagated-inputs
10740 `(("perl-text-glob" ,perl-text-glob)))
10741 (home-page "https://metacpan.org/release/File-Finder")
10742 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
10743 (description
10744 "@code{File::Find} is great, but constructing the wanted routine can
10745 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
10746 syntax that is directly mappable to the @code{find(1)} command's syntax.
10747
10748 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
10749 a series of steps that mimic find's predicates. Initially, a
10750 @code{File::Finder} object has no steps. Each step method clones the previous
10751 object's options and steps, and then adds the new step, returning the new
10752 object. In this manner, an object can be grown, step by step, by chaining
10753 method calls. Furthermore, a partial sequence can be created and held, and
10754 used as the head of many different sequences.")
10755 (license perl-license)))
10756
10757 (define-public perl-font-ttf
10758 (package
10759 (name "perl-font-ttf")
10760 (version "1.06")
10761 (source (origin
10762 (method url-fetch)
10763 (uri (string-append
10764 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
10765 version ".tar.gz"))
10766 (sha256
10767 (base32
10768 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
10769 (build-system perl-build-system)
10770 (propagated-inputs
10771 `(("perl-io-string" ,perl-io-string)))
10772 (home-page "https://metacpan.org/release/Font-TTF")
10773 (synopsis "TTF font support for Perl")
10774 (description "This package provides a Perl module for TrueType/OpenType
10775 font hacking. It supports reading, processing and writing of the following
10776 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
10777 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
10778 prop, vhea, vmtx and the reading and writing of all other table types.")
10779 (license artistic2.0)))
10780
10781 (define-public perl-libtime-parsedate
10782 (package
10783 (name "perl-libtime-parsedate")
10784 (version "2015.103")
10785 (source
10786 (origin
10787 (method url-fetch)
10788 (uri (string-append
10789 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
10790 version ".tar.gz"))
10791 (sha256
10792 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
10793 (build-system perl-build-system)
10794 (arguments
10795 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
10796 ;; doesn't support it yet.
10797 ;;
10798 ;; #:disallowed-references (,tzdata-for-tests)
10799
10800 #:phases
10801 (modify-phases %standard-phases
10802 ;; This is needed for tests
10803 (add-after 'unpack 'set-TZDIR
10804 (lambda* (#:key inputs #:allow-other-keys)
10805 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
10806 "/share/zoneinfo"))
10807 #t)))))
10808 (native-inputs
10809 `(("perl-module-build" ,perl-module-build)
10810 ("tzdata" ,tzdata-for-tests)))
10811 (home-page "https://metacpan.org/release/Time-ParseDate")
10812 (synopsis "Collection of Perl modules for time/date manipulation")
10813 (description "Provides several perl modules for date/time manipulation:
10814 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
10815 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
10816 ;; License text:
10817 ;; "License hereby granted for anyone to use, modify or redistribute this
10818 ;; module at their own risk. Please feed useful changes back to
10819 ;; cpan@dave.sharnoff.org."
10820 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
10821 changelogs/main/libt/libtime-parsedate-perl/\
10822 libtime-parsedate-perl_2015.103-2_copyright"))))
10823
10824 (define-public perl-libtime-period
10825 (package
10826 (name "perl-libtime-period")
10827 (version "1.20")
10828 (source
10829 (origin
10830 (method url-fetch)
10831 (uri (string-append
10832 "http://http.debian.net/debian/pool/main/libt/"
10833 "libtime-period-perl/libtime-period-perl_"
10834 version ".orig.tar.gz"))
10835 (sha256
10836 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
10837 (build-system perl-build-system)
10838 (native-inputs
10839 `(("perl-module-build" ,perl-module-build)))
10840 ;; Unless some other homepage is out there...
10841 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
10842 (synopsis "Perl library for testing if a time() is in a specific period")
10843 (description "This Perl library provides a function which tells whether a
10844 specific time falls within a specified time period. Its syntax for specifying
10845 time periods allows you to test for conditions like \"Monday to Friday, 9am
10846 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
10847 4:15pm\" and \"in the first half of each minute\" and \"in January of
10848 1998\".")
10849 (license perl-license)))
10850
10851 (define-public perl-path-iterator-rule
10852 (package
10853 (name "perl-path-iterator-rule")
10854 (version "1.014")
10855 (source
10856 (origin
10857 (method url-fetch)
10858 (uri (string-append
10859 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
10860 version ".tar.gz"))
10861 (sha256
10862 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
10863 (build-system perl-build-system)
10864 (native-inputs
10865 `(("perl-file-pushd" ,perl-file-pushd)
10866 ("perl-path-tiny" ,perl-path-tiny)
10867 ("perl-test-deep" ,perl-test-deep)
10868 ("perl-test-filename" ,perl-test-filename)))
10869 (propagated-inputs
10870 `(("perl-number-compare" ,perl-number-compare)
10871 ("perl-text-glob" ,perl-text-glob)
10872 ("perl-try-tiny" ,perl-try-tiny)))
10873 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
10874 (synopsis "Iterative, recursive file finder")
10875 (description "Path::Iterator::Rule iterates over files and directories to
10876 identify ones matching a user-defined set of rules. The API is based heavily
10877 on File::Find::Rule, but with more explicit distinction between matching rules
10878 and options that influence how directories are searched. A
10879 Path::Iterator::Rule object is a collection of rules (match criteria) with
10880 methods to add additional criteria. Options that control directory traversal
10881 are given as arguments to the method that generates an iterator.
10882
10883 A summary of features for comparison to other file finding modules:
10884
10885 @itemize
10886 @item provides many helper methods for specifying rules
10887 @item offers (lazy) iterator and flattened list interfaces
10888 @item custom rules implemented with callbacks
10889 @item breadth-first (default) or pre- or post-order depth-first searching
10890 @item follows symlinks (by default, but can be disabled)
10891 @item directories visited only once (no infinite loop; can be disabled)
10892 @item doesn't chdir during operation
10893 @item provides an API for extensions
10894 @end itemize
10895
10896 As a convenience, the PIR module is an empty subclass of this one that is less
10897 arduous to type for one-liners.")
10898 (license asl2.0)))
10899
10900 (define-public perl-pod-constants
10901 (package
10902 (name "perl-pod-constants")
10903 (version "0.19")
10904 (source
10905 (origin
10906 (method url-fetch)
10907 (uri (string-append
10908 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
10909 version ".tar.gz"))
10910 (sha256
10911 (base32
10912 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
10913 (build-system perl-build-system)
10914 (home-page "https://metacpan.org/release/Pod-Constants")
10915 (synopsis "Include constants from POD")
10916 (description "This module allows you to specify those constants that
10917 should be documented in your POD, and pull them out a run time in a fairly
10918 arbitrary fashion.
10919
10920 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
10921 to open the source file it is called from, and does so directly either by
10922 lookup in %INC or by assuming it is $0 if the caller is @code{main}
10923 (or it can't find %INC{caller()}).")
10924 (license artistic2.0)))
10925
10926 (define-public perl-regexp-pattern
10927 (package
10928 (name "perl-regexp-pattern")
10929 (version "0.2.8")
10930 (source
10931 (origin
10932 (method url-fetch)
10933 (uri (string-append
10934 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
10935 version ".tar.gz"))
10936 (sha256
10937 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
10938 (build-system perl-build-system)
10939 (native-inputs
10940 `(("perl-test-exception" ,perl-test-exception)))
10941 (home-page "https://metacpan.org/release/Regexp-Pattern")
10942 (synopsis "Collection of regexp patterns")
10943 (description "Regexp::Pattern is a convention for organizing reusable
10944 regexp patterns in modules.")
10945 (license (package-license perl))))
10946
10947 (define-public perl-data-sexpression
10948 (package
10949 (name "perl-data-sexpression")
10950 (version "0.41")
10951 (source
10952 (origin
10953 (method url-fetch)
10954 (uri (string-append
10955 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
10956 version ".tar.gz"))
10957 (sha256
10958 (base32
10959 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
10960 (build-system perl-build-system)
10961 (native-inputs
10962 `(("perl-module-install" ,perl-module-install)
10963 ("perl-test-deep" ,perl-test-deep)))
10964 (propagated-inputs
10965 `(("perl-class-accessor" ,perl-class-accessor)))
10966 (home-page "https://metacpan.org/release/Data-SExpression")
10967 (synopsis "Parse Lisp S-Expressions into Perl data structures")
10968 (description "Data::SExpression parses Lisp S-Expressions into Perl data
10969 structures.")
10970 (license perl-license)))