gnu: perl-timedate: Update to 2.33.
[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 Nikita <nikita@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, 2020 Jan (janneke) 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 git-download)
52 #:use-module (guix utils)
53 #:use-module (guix build-system gnu)
54 #:use-module (guix build-system perl)
55 #:use-module (gnu packages base)
56 #:use-module (gnu packages bash)
57 #:use-module (gnu packages compression)
58 #:use-module (gnu packages databases)
59 #:use-module (gnu packages freedesktop)
60 #:use-module (gnu packages gd)
61 #:use-module (gnu packages hurd)
62 #:use-module (gnu packages less)
63 #:use-module (gnu packages ncurses)
64 #:use-module (gnu packages perl-check)
65 #:use-module (gnu packages perl-compression)
66 #:use-module (gnu packages perl-web)
67 #:use-module (gnu packages pkg-config)
68 #:use-module (gnu packages readline)
69 #:use-module (gnu packages textutils)
70 #:use-module (gnu packages web))
71
72 ;;;
73 ;;; Please: Try to add new module packages in alphabetic order.
74 ;;;
75
76 \f
77 (define-public perl
78 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
79 (package
80 (name "perl")
81 (version "5.30.2")
82 (source (origin
83 (method url-fetch)
84 (uri (string-append "mirror://cpan/src/5.0/perl-"
85 version ".tar.gz"))
86 (sha256
87 (base32
88 "128nfdxcvxfn5kq55qcfrx2851ys8hv794dcdxbyny8rm7w7vnv6"))
89 (patches (search-patches
90 "perl-no-sys-dirs.patch"
91 "perl-autosplit-default-time.patch"
92 "perl-deterministic-ordering.patch"
93 "perl-reproducible-build-date.patch"))))
94 (build-system gnu-build-system)
95 (arguments
96 `(#:tests? #f
97 #:configure-flags
98 (let ((out (assoc-ref %outputs "out"))
99 (libc (assoc-ref %build-inputs "libc")))
100 (list
101 (string-append "-Dprefix=" out)
102 (string-append "-Dman1dir=" out "/share/man/man1")
103 (string-append "-Dman3dir=" out "/share/man/man3")
104 "-de" "-Dcc=gcc"
105 "-Uinstallusrbinperl"
106 "-Dinstallstyle=lib/perl5"
107 "-Duseshrplib"
108 (string-append "-Dlocincpth=" libc "/include")
109 (string-append "-Dloclibpth=" libc "/lib")
110 "-Dusethreads"))
111 #:phases
112 (modify-phases %standard-phases
113 (add-before 'configure 'setup-configure
114 (lambda _
115 ;; Use the right path for `pwd'.
116 ;; TODO: use coreutils from INPUTS instead of 'which'
117 ;; in next rebuild cycle, see fixup below.
118 (substitute* "dist/PathTools/Cwd.pm"
119 (("/bin/pwd")
120 (which "pwd")))
121
122 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
123 ;; <bits/string3.h>.
124 (substitute* "cflags.SH"
125 (("-std=c89")
126 "-std=gnu89"))
127 #t))
128 ,@(if (%current-target-system)
129 `((add-after 'unpack 'unpack-cross
130 (lambda* (#:key native-inputs inputs #:allow-other-keys)
131 (let ((cross-checkout
132 (assoc-ref native-inputs "perl-cross"))
133 (cross-patch
134 (assoc-ref native-inputs "perl-cross-patch")))
135 (rename-file "Artistic" "Artistic.perl")
136 (rename-file "Copying" "Copying.perl")
137 (copy-recursively cross-checkout ".")
138 (format #t "Applying ~a\n" cross-patch)
139 (invoke "patch" "-p1" "-i" cross-patch))
140 (let ((bash (assoc-ref inputs "bash")))
141 (substitute* '("Makefile.config.SH"
142 "cnf/config.guess"
143 "cnf/config.sub"
144 "cnf/configure"
145 "cnf/configure_misc.sh"
146 "miniperl_top")
147 (("! */bin/sh") (string-append "! " bash "/bin/bash"))
148 ((" /bin/sh") (string-append bash "/bin/bash")))
149 (substitute* '("ext/Errno/Errno_pm.PL")
150 (("\\$cpp < errno.c") "$Config{cc} -E errno.c")))
151 #t))
152 (replace 'configure
153 (lambda* (#:key configure-flags outputs inputs #:allow-other-keys)
154 (let* ((out (assoc-ref outputs "out"))
155 (store-directory (%store-directory))
156 (configure-flags
157 (cons*
158 ;; `perl-cross' confuses target and host
159 (string-append "--target=" ,(%current-target-system))
160 (string-append "--prefix=" out)
161 (string-append "-Dcc=" ,(%current-target-system) "-gcc")
162 "-Dbyteorder=1234"
163 (filter (negate
164 (lambda (x) (or (string-prefix? "-d" x)
165 (string-prefix? "-Dcc=" x))))
166 configure-flags)))
167 (bash (assoc-ref inputs "bash"))
168 (coreutils (assoc-ref inputs "coreutils")))
169 (format (current-error-port)
170 "running ./configure ~a\n" (string-join configure-flags))
171 (apply invoke (cons "./configure" configure-flags))
172 (substitute* "config.sh"
173 (((string-append store-directory "/[^/]*-bash-[^/]*"))
174 bash))
175 (substitute* '("config.h")
176 (("^#define SH_PATH .*")
177 (string-append "#define SH_PATH \"" bash "/bin/bash\"\n")))
178 ;;TODO: fix this in setup-configure next rebuild cycle
179 (substitute* "dist/PathTools/Cwd.pm"
180 (((string-append store-directory "/[^/]*-coreutils-[^/]*"))
181 coreutils))
182 #t)))
183 (add-after 'build 'touch-non-built-files-for-install
184 (lambda _
185 ;; `make install' wants to install these although they do
186 ;; not get built...
187 (with-directory-excursion "cpan"
188 (mkdir-p "Pod-Usage/blib/script")
189 (mkdir-p "Pod-Parser/blib/script")
190 (for-each (lambda (file)
191 (call-with-output-file file
192 (lambda (port) (display "" port))))
193 '("Pod-Usage/blib/script/pod2text"
194 "Pod-Usage/blib/script/pod2usage"
195 "Pod-Checker/blib/script/podchecker"
196 "Pod-Parser/blib/script/podselect")))
197 #t)))
198 `((replace 'configure
199 (lambda* (#:key configure-flags #:allow-other-keys)
200 (format #t "Perl configure flags: ~s~%" configure-flags)
201 (apply invoke "./Configure" configure-flags)))))
202 (add-after 'install 'remove-extra-references
203 (lambda* (#:key inputs outputs #:allow-other-keys)
204 (let* ((out (assoc-ref outputs "out"))
205 (libc (assoc-ref inputs
206 ,(if (%current-target-system)
207 "cross-libc" "libc")))
208 (config1 (car (find-files (string-append out "/lib/perl5")
209 "^Config_heavy\\.pl$")))
210 (config2 (find-files (string-append out "/lib/perl5")
211 "^Config\\.pm$")))
212 ;; Force the library search path to contain only libc because
213 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
214 ;; want to keep a reference to everything that's in
215 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
216 ;; etc.)
217 (substitute* config1
218 (("^incpth=.*$")
219 (string-append "incpth='" libc "/include'\n"))
220 (("^(libpth|plibpth|libspath)=.*$" _ variable)
221 (string-append variable "='" libc "/lib'\n")))
222
223 (for-each (lambda (file)
224 (substitute* config2
225 (("libpth => .*$")
226 (string-append "libpth => '" libc
227 "/lib',\n"))))
228 config2)
229 #t))))))
230 (inputs
231 (if (%current-target-system)
232 `(("bash" ,bash-minimal)
233 ("coreutils" ,coreutils))
234 '()))
235 (native-inputs
236 (if (%current-target-system)
237 `(("perl-cross"
238 ,(origin
239 (method git-fetch)
240 (uri (git-reference
241 (url "https://github.com/arsv/perl-cross")
242 (commit "1.3.3")))
243 (file-name (git-file-name "perl-cross" "1.3.3"))
244 (sha256
245 (base32 "065qbl1x44maykaj8p8za0b6qxj74bz7fi2zsrlydir1mqb1js3d"))))
246 ("perl-cross-patch" ,@(search-patches "perl-cross.patch")))
247 '()))
248 (native-search-paths (list (search-path-specification
249 (variable "PERL5LIB")
250 (files '("lib/perl5/site_perl")))))
251 (synopsis "Implementation of the Perl programming language")
252 (description
253 "Perl is a general-purpose programming language originally developed for
254 text manipulation and now used for a wide range of tasks including system
255 administration, web development, network programming, GUI development, and
256 more.")
257 (home-page "https://www.perl.org/")
258 (license gpl1+))) ; or "Artistic"
259
260 (define-public perl-algorithm-c3
261 (package
262 (name "perl-algorithm-c3")
263 (version "0.10")
264 (source
265 (origin
266 (method url-fetch)
267 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
268 "Algorithm-C3-" version ".tar.gz"))
269 (sha256
270 (base32
271 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
272 (build-system perl-build-system)
273 (home-page "https://metacpan.org/release/Algorithm-C3")
274 (synopsis "Module for merging hierarchies using the C3 algorithm")
275 (description "This module implements the C3 algorithm, which aims to
276 provide a sane method resolution order under multiple inheritance.")
277 (license (package-license perl))))
278
279 (define-public perl-algorithm-diff
280 (package
281 (name "perl-algorithm-diff")
282 (version "1.1903")
283 (source
284 (origin
285 (method url-fetch)
286 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
287 "Algorithm-Diff-" version ".tar.gz"))
288 (sha256
289 (base32
290 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
291 (build-system perl-build-system)
292 (home-page "https://metacpan.org/release/Algorithm-Diff")
293 (synopsis "Compute differences between two files or lists")
294 (description "This is a module for computing the difference between two
295 files, two strings, or any other two lists of things. It uses an intelligent
296 algorithm similar to (or identical to) the one used by the Unix \"diff\"
297 program. It is guaranteed to find the *smallest possible* set of
298 differences.")
299 (license (package-license perl))))
300
301 (define-public perl-aliased
302 (package
303 (name "perl-aliased")
304 (version "0.34")
305 (source
306 (origin
307 (method url-fetch)
308 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
309 "aliased-" version ".tar.gz"))
310 (sha256
311 (base32
312 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
313 (build-system perl-build-system)
314 (native-inputs `(("perl-module-build" ,perl-module-build)))
315 (home-page "https://metacpan.org/release/aliased")
316 (synopsis "Use shorter versions of class names")
317 (description "The alias module loads the class you specify and exports
318 into your namespace a subroutine that returns the class name. You can
319 explicitly alias the class to another name or, if you prefer, you can do so
320 implicitly.")
321 (license (package-license perl))))
322
323 (define-public perl-any-moose
324 (package
325 (name "perl-any-moose")
326 (version "0.27")
327 (source (origin
328 (method url-fetch)
329 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
330 "Any-Moose-" version ".tar.gz"))
331 (sha256
332 (base32
333 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
334 (build-system perl-build-system)
335 (native-inputs
336 `(("perl-mouse" ,perl-mouse)
337 ("perl-moose" ,perl-moose)))
338 (home-page "https://metacpan.org/release/Any-Moose")
339 (synopsis "Transparently use Moose or Mouse modules")
340 (description
341 "This module facilitates using @code{Moose} or @code{Mouse} modules
342 without changing the code. By default, Mouse will be provided to libraries,
343 unless Moose is already loaded, or explicitly requested by the end-user. End
344 users can force the decision of which backend to use by setting the environment
345 variable ANY_MOOSE to be Moose or Mouse.")
346 (license (package-license perl))))
347
348 (define-public perl-appconfig
349 (package
350 (name "perl-appconfig")
351 (version "1.71")
352 (source
353 (origin
354 (method url-fetch)
355 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
356 "AppConfig-" version ".tar.gz"))
357 (sha256
358 (base32
359 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
360 (build-system perl-build-system)
361 (native-inputs
362 `(("perl-test-pod" ,perl-test-pod)))
363 (home-page "https://metacpan.org/release/AppConfig")
364 (synopsis "Configuration files and command line parsing")
365 (description "AppConfig is a bundle of Perl5 modules for reading
366 configuration files and parsing command line arguments.")
367 (license (package-license perl))))
368
369 (define-public perl-array-utils
370 (package
371 (name "perl-array-utils")
372 (version "0.5")
373 (source
374 (origin
375 (method url-fetch)
376 (uri (string-append
377 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
378 version
379 ".tar.gz"))
380 (sha256
381 (base32
382 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
383 (build-system perl-build-system)
384 (home-page "https://metacpan.org/release/Array-Utils")
385 (synopsis "Small utils for array manipulation")
386 (description "@code{Array::Utils} is a small pure-perl module containing
387 list manipulation routines.")
388 (license (package-license perl))))
389
390 (define-public perl-async-interrupt
391 (package
392 (name "perl-async-interrupt")
393 (version "1.25")
394 (source (origin
395 (method url-fetch)
396 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
397 "Async-Interrupt-" version ".tar.gz"))
398 (sha256
399 (base32
400 "0jh94wj1b6a0cnni8prsb59g5lak5rfj2fw5ng96291zmz2yqp1w"))))
401 (build-system perl-build-system)
402 (native-inputs
403 `(("perl-canary-stability" ,perl-canary-stability)))
404 (propagated-inputs
405 `(("perl-common-sense" ,perl-common-sense)))
406 (home-page "https://metacpan.org/release/Async-Interrupt")
407 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
408 (description
409 "@code{Async::Interrupt} implements a single feature only of interest
410 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
411 signals\", which are very similar).
412
413 Sometimes, modules wish to run code asynchronously (in another thread,
414 or from a signal handler), and then signal the perl interpreter on
415 certain events. One common way is to write some data to a pipe and use
416 an event handling toolkit to watch for I/O events. Another way is to
417 send a signal. Those methods are slow, and in the case of a pipe, also
418 not asynchronous - it won't interrupt a running perl interpreter.
419
420 This module implements asynchronous notifications that enable you to
421 signal running perl code from another thread, asynchronously, and
422 sometimes even without using a single syscall.")
423 (license (package-license perl))))
424
425 (define-public perl-attribute-util
426 (package
427 (name "perl-attribute-util")
428 (version "1.07")
429 (source (origin
430 (method url-fetch)
431 (uri (string-append
432 "https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/"
433 "Attribute-Util-" version ".tar.gz"))
434 (sha256
435 (base32
436 "1z79d845dy96lg0pxw0kr2za0gniwnpn963r7ccajfpj6k7jfw07"))))
437 (build-system perl-build-system)
438 (home-page "https://metacpan.org/pod/Attribute::Util")
439 (synopsis "Assorted general utility attributes")
440 (description "This package provides various utility functions. When used
441 without argument, this module provides four universally accessible attributes
442 of general interest as follows:
443 @itemize
444 @item Abstract
445 @item Alias
446 @item Memoize
447 @item Method
448 @item SigHandler
449 @end itemize")
450 (license (package-license perl))))
451
452 (define-public perl-authen-dechpwd
453 (package
454 (name "perl-authen-dechpwd")
455 (version "2.007")
456 (source
457 (origin
458 (method url-fetch)
459 (uri (string-append
460 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-DecHpwd-"
461 version ".tar.gz"))
462 (sha256
463 (base32
464 "0xzind7zr2prjq3zbs2j18snfpshd4xrd7igv4kp67xl0axr6fpl"))))
465 (build-system perl-build-system)
466 (native-inputs
467 `(("perl-module-build" ,perl-module-build)
468 ("perl-test-pod" ,perl-test-pod)
469 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
470 (propagated-inputs
471 `(("perl-data-integer" ,perl-data-integer)
472 ("perl-digest-crc" ,perl-digest-crc)
473 ("perl-scalar-string" ,perl-scalar-string)))
474 (home-page "https://metacpan.org/release/Authen-DecHpwd")
475 (synopsis "DEC VMS password hashing")
476 (description "@code{Authen::DecHpwd} implements the
477 SYS$HASH_PASSWORD password hashing function from VMS (also known as
478 LGI$HPWD) and some associated VMS username and password handling
479 functions. The password hashing function is implemented in XS with a
480 pure Perl backup version for systems that cannot handle XS.")
481 (license gpl2+)))
482
483 (define-public perl-authen-passphrase
484 (package
485 (name "perl-authen-passphrase")
486 (version "0.008")
487 (source
488 (origin
489 (method url-fetch)
490 (uri (string-append
491 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-Passphrase-"
492 version ".tar.gz"))
493 (sha256
494 (base32
495 "0qq4krap687rxf6xr31bg5nj5dqmm1frcm7fq249v1bxc4h4bnsm"))))
496 (build-system perl-build-system)
497 (native-inputs
498 `(("perl-module-build" ,perl-module-build)
499 ("perl-test-pod" ,perl-test-pod)
500 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
501 (propagated-inputs
502 `(("perl-authen-dechpwd" ,perl-authen-dechpwd)
503 ("perl-crypt-des" ,perl-crypt-des)
504 ("perl-crypt-eksblowfish" ,perl-crypt-eksblowfish)
505 ("perl-crypt-mysql" ,perl-crypt-mysql)
506 ("perl-crypt-passwdmd5" ,perl-crypt-passwdmd5)
507 ("perl-crypt-unixcrypt_xs" ,perl-crypt-unixcrypt_xs)
508 ("perl-data-entropy" ,perl-data-entropy)
509 ("perl-digest-md4" ,perl-digest-md4)
510 ("perl-module-runtime" ,perl-module-runtime)
511 ("perl-params-classify" ,perl-params-classify)))
512 (home-page "https://metacpan.org/release/Authen-Passphrase")
513 (synopsis "Hashed passwords/passphrases as objects")
514 (description "@code{Authen-Passphrase} is the base class for a
515 system of objects that encapsulate passphrases. An object of this
516 type is a passphrase recogniser; its job is to recognise whether an
517 offered passphrase is the right one. For security such passphrase
518 recognisers usually do not themselves know the passphrase they are
519 looking for; they can merely recognise it when they see it. There are
520 many schemes in use to achieve this effect and the intent of this
521 class is to provide a consistent interface to them all. In addition
522 to the base class, this module also contains implementations of
523 several specific passphrase schemes.")
524 (license perl-license)))
525
526 (define-public perl-autovivification
527 (package
528 (name "perl-autovivification")
529 (version "0.18")
530 (source
531 (origin
532 (method url-fetch)
533 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
534 "autovivification-" version ".tar.gz"))
535 (sha256
536 (base32
537 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
538 (build-system perl-build-system)
539 (home-page "https://metacpan.org/release/autovivification")
540 (synopsis "Lexically disable autovivification")
541 (description "When an undefined variable is dereferenced, it gets silently
542 upgraded to an array or hash reference (depending of the type of the
543 dereferencing). This behaviour is called autovivification and usually does
544 what you mean but it may be unnatural or surprising because your variables get
545 populated behind your back. This is especially true when several levels of
546 dereferencing are involved, in which case all levels are vivified up to the
547 last, or when it happens in intuitively read-only constructs like
548 @code{exists}. The pragma provided by this package lets you disable
549 autovivification for some constructs and optionally throws a warning or an
550 error when it would have happened.")
551 (license (package-license perl))))
552
553 (define-public perl-bareword-filehandles
554 (package
555 (name "perl-bareword-filehandles")
556 (version "0.006")
557 (source
558 (origin
559 (method url-fetch)
560 (uri (string-append
561 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
562 version ".tar.gz"))
563 (sha256
564 (base32
565 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
566 (build-system perl-build-system)
567 (native-inputs
568 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
569 ("perl-extutils-depends" ,perl-extutils-depends)))
570 (propagated-inputs
571 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
572 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
573 (home-page "https://metacpan.org/release/bareword-filehandles")
574 (synopsis "Disables bareword filehandles")
575 (description "This module disables bareword filehandles.")
576 (license (package-license perl))))
577
578 (define-public perl-base
579 (deprecated-package "perl-base" perl))
580
581 (define-public perl-browser-open
582 (package
583 (name "perl-browser-open")
584 (version "0.04")
585 (source
586 (origin
587 (method url-fetch)
588 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
589 version ".tar.gz"))
590 (sha256
591 (base32
592 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
593 (build-system perl-build-system)
594 (home-page "https://metacpan.org/release/Browser-Open")
595 (synopsis "Open a browser in a given URL")
596 (description "The functions exported by this module allow you to open URLs
597 in the user's browser. A set of known commands per OS-name is tested for
598 presence, and the first one found is executed. With an optional parameter,
599 all known commands are checked.")
600 (license (package-license perl))))
601
602 (define-public perl-b-hooks-endofscope
603 (package
604 (name "perl-b-hooks-endofscope")
605 (version "0.24")
606 (source
607 (origin
608 (method url-fetch)
609 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
610 "B-Hooks-EndOfScope-" version ".tar.gz"))
611 (sha256
612 (base32
613 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
614 (build-system perl-build-system)
615 (propagated-inputs
616 `(("perl-module-runtime" ,perl-module-runtime)
617 ("perl-module-implementation" ,perl-module-implementation)
618 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
619 ("perl-variable-magic" ,perl-variable-magic)))
620 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
621 (synopsis "Execute code after a scope finished compilation")
622 (description "This module allows you to execute code when perl finished
623 compiling the surrounding scope.")
624 (license (package-license perl))))
625
626 (define-public perl-b-hooks-op-check
627 (package
628 (name "perl-b-hooks-op-check")
629 (version "0.22")
630 (source
631 (origin
632 (method url-fetch)
633 (uri (string-append
634 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
635 version ".tar.gz"))
636 (sha256
637 (base32
638 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
639 (build-system perl-build-system)
640 (native-inputs
641 `(("perl-extutils-depends" ,perl-extutils-depends)))
642 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
643 (synopsis "Wrap OP check callbacks")
644 (description "This module allows you to wrap OP check callbacks.")
645 (license (package-license perl))))
646
647 (define-public perl-b-keywords
648 (package
649 (name "perl-b-keywords")
650 (version "1.20")
651 (source
652 (origin
653 (method url-fetch)
654 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
655 version ".tar.gz"))
656 (sha256
657 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
658 (build-system perl-build-system)
659 (home-page "https://metacpan.org/release/B-Keywords")
660 (synopsis "Lists of reserved barewords and symbol names")
661 (description "@code{B::Keywords} supplies several arrays of exportable
662 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
663 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
664 @@ExporterSymbols}.")
665 ;; GPLv2 only
666 (license gpl2)))
667
668 (define-public perl-benchmark-timer
669 (package
670 (name "perl-benchmark-timer")
671 (version "0.7102")
672 (source (origin
673 (method url-fetch)
674 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
675 "Benchmark-Timer-" version ".tar.gz"))
676 (sha256
677 (base32
678 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
679 (build-system perl-build-system)
680 (native-inputs
681 `(("perl-module-install" ,perl-module-install)))
682 ;; The optional input module Statistics::PointEstimation (from
683 ;; Statistics-TTest) lists no license.
684 (synopsis "Benchmarking with statistical confidence")
685 (description
686 "The Benchmark::Timer class allows you to time portions of code
687 conveniently, as well as benchmark code by allowing timings of repeated
688 trials. It is perfect for when you need more precise information about the
689 running time of portions of your code than the Benchmark module will give you,
690 but don't want to go all out and profile your code.")
691 (home-page "https://metacpan.org/release/Benchmark-Timer")
692 (license gpl2)))
693
694 (define-public perl-bit-vector
695 (package
696 (name "perl-bit-vector")
697 (version "7.4")
698 (source
699 (origin
700 (method url-fetch)
701 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
702 "Bit-Vector-" version ".tar.gz"))
703 (sha256
704 (base32
705 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
706 (build-system perl-build-system)
707 (propagated-inputs
708 `(("perl-carp-clan" ,perl-carp-clan)))
709 (home-page "https://metacpan.org/release/Bit-Vector")
710 (synopsis "Bit vector library")
711 (description "Bit::Vector is an efficient C library which allows you to
712 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
713 matrices, all of arbitrary sizes. The package also includes an
714 object-oriented Perl module for accessing the C library from Perl, and
715 optionally features overloaded operators for maximum ease of use. The C
716 library can nevertheless be used stand-alone, without Perl.")
717 (license (list (package-license perl) lgpl2.0+))))
718
719 (define-public perl-boolean
720 (package
721 (name "perl-boolean")
722 (version "0.46")
723 (source
724 (origin
725 (method url-fetch)
726 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
727 "boolean-" version ".tar.gz"))
728 (sha256
729 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
730 (build-system perl-build-system)
731 (home-page "https://metacpan.org/release/boolean")
732 (synopsis "Boolean support for Perl")
733 (description "This module provides basic Boolean support, by defining two
734 special objects: true and false.")
735 (license (package-license perl))))
736
737 (define-public perl-business-isbn-data
738 (package
739 (name "perl-business-isbn-data")
740 (version "20140910.003")
741 (source
742 (origin
743 (method url-fetch)
744 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
745 "Business-ISBN-Data-" version ".tar.gz"))
746 (sha256
747 (base32
748 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
749 (build-system perl-build-system)
750 (home-page "https://metacpan.org/release/Business-ISBN-Data")
751 (synopsis "Data files for Business::ISBN")
752 (description "This package provides a data pack for @code{Business::ISBN}.
753 These data are generated from the RangeMessage.xml file provided by the ISBN
754 Agency.")
755 (license (package-license perl))))
756
757 (define-public perl-business-isbn
758 (package
759 (name "perl-business-isbn")
760 (version "3.004")
761 (source
762 (origin
763 (method url-fetch)
764 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
765 "Business-ISBN-" version ".tar.gz"))
766 (sha256
767 (base32
768 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
769 (build-system perl-build-system)
770 (propagated-inputs
771 `(("perl-business-isbn-data" ,perl-business-isbn-data)
772 ("perl-mojolicious" ,perl-mojolicious)))
773 (home-page "https://metacpan.org/release/Business-ISBN")
774 (synopsis "Work with International Standard Book Numbers")
775 (description "This modules provides tools to deal with International
776 Standard Book Numbers, including ISBN-10 and ISBN-13.")
777 (license artistic2.0)))
778
779 (define-public perl-business-issn
780 (package
781 (name "perl-business-issn")
782 (version "1.003")
783 (source
784 (origin
785 (method url-fetch)
786 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
787 "Business-ISSN-" version ".tar.gz"))
788 (sha256
789 (base32
790 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
791 (build-system perl-build-system)
792 (home-page "https://metacpan.org/release/Business-ISSN")
793 (synopsis "Work with International Standard Serial Numbers")
794 (description "This modules provides tools to deal with International
795 Standard Serial Numbers.")
796 (license (package-license perl))))
797
798 (define-public perl-business-ismn
799 (package
800 (name "perl-business-ismn")
801 (version "1.201")
802 (source
803 (origin
804 (method url-fetch)
805 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
806 "Business-ISMN-" version ".tar.gz"))
807 (sha256
808 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
809 (build-system perl-build-system)
810 (native-inputs
811 `(("perl-tie-cycle" ,perl-tie-cycle)))
812 (home-page "https://metacpan.org/release/Business-ISMN")
813 (synopsis "Work with International Standard Music Numbers")
814 (description "This modules provides tools to deal with International
815 Standard Music Numbers.")
816 (license (package-license perl))))
817
818 (define-public perl-cache-cache
819 (package
820 (name "perl-cache-cache")
821 (version "1.08")
822 (source (origin
823 (method url-fetch)
824 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
825 "Cache-Cache-" version ".tar.gz"))
826 (sha256
827 (base32
828 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
829 (build-system perl-build-system)
830 (propagated-inputs
831 `(("perl-digest-sha1" ,perl-digest-sha1)
832 ("perl-error" ,perl-error)
833 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
834 (home-page "https://metacpan.org/release/Cache-Cache")
835 (synopsis "Cache interface for Perl")
836 (description "The Cache modules are designed to assist a developer in
837 persisting data for a specified period of time. Often these modules are used
838 in web applications to store data locally to save repeated and redundant
839 expensive calls to remote machines or databases. People have also been known
840 to use Cache::Cache for its straightforward interface in sharing data between
841 runs of an application or invocations of a CGI-style script or simply as an
842 easy to use abstraction of the file system or shared memory.")
843 (license (package-license perl))))
844
845 (define-public perl-cache-fastmmap
846 (package
847 (name "perl-cache-fastmmap")
848 (version "1.48")
849 (source
850 (origin
851 (method url-fetch)
852 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
853 "Cache-FastMmap-" version ".tar.gz"))
854 (sha256
855 (base32 "118y5lxwa092zrii7mcwnqypff7424w1dpgfkg8zlnz7h2mmnd9c"))))
856 (build-system perl-build-system)
857 (home-page "https://metacpan.org/release/Cache-FastMmap")
858 (synopsis "Shared memory interprocess cache via mmap")
859 (description "A shared memory cache through an mmap'ed file. It's core is
860 written in C for performance. It uses fcntl locking to ensure multiple
861 processes can safely access the cache at the same time. It uses a basic LRU
862 algorithm to keep the most used entries in the cache.")
863 (license (package-license perl))))
864
865 (define-public perl-capture-tiny
866 (package
867 (name "perl-capture-tiny")
868 (version "0.48")
869 (source
870 (origin
871 (method url-fetch)
872 (uri (string-append
873 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
874 version ".tar.gz"))
875 (sha256
876 (base32
877 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
878 (build-system perl-build-system)
879 (home-page "https://metacpan.org/release/Capture-Tiny")
880 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
881 (description
882 "Capture::Tiny provides a simple, portable way to capture almost anything
883 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
884 code or from an external program. Optionally, output can be teed so that it
885 is captured while being passed through to the original file handles.")
886 (license asl2.0)))
887
888 (define-public perl-canary-stability
889 (package
890 (name "perl-canary-stability")
891 (version "2013")
892 (source (origin
893 (method url-fetch)
894 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
895 "Canary-Stability-" version ".tar.gz"))
896 (sha256
897 (base32
898 "1smnsx371x9zrqmylgq145991xh8561mraqfyrlbiz4mrxi1rjd5"))))
899 (build-system perl-build-system)
900 (home-page "https://metacpan.org/release/Canary-Stability")
901 (synopsis "Check compatibility with the installed perl version")
902 (description
903 "This module is used by Schmorp's modules during configuration stage
904 to test the installed perl for compatibility with his modules.")
905 (license (package-license perl))))
906
907 (define-public perl-carp
908 (package
909 (name "perl-carp")
910 (version "1.50")
911 (source (origin
912 (method url-fetch)
913 (uri (string-append
914 "mirror://cpan/authors/id/X/XS/XSAWYERX/Carp-"
915 version ".tar.gz"))
916 (sha256
917 (base32
918 "1ngbpjyd9qi7n4h5r3q3qibd8by7rfiv7364jqlv4lbd3973n9zm"))))
919 (build-system perl-build-system)
920 (home-page "https://metacpan.org/release/Carp")
921 (synopsis "Alternative warn and die for modules")
922 (description "The @code{Carp} routines are useful in your own modules
923 because they act like @code{die()} or @code{warn()}, but with a message
924 which is more likely to be useful to a user of your module. In the case
925 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
926 summary of every call in the call-stack. For a shorter message you can use
927 @code{carp} or @code{croak} which report the error as being from where your
928 module was called. There is no guarantee that that is where the error was,
929 but it is a good educated guess.")
930 (license (package-license perl))))
931
932 (define-public perl-carp-always
933 (package
934 (name "perl-carp-always")
935 (version "0.16")
936 (source
937 (origin
938 (method url-fetch)
939 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
940 version ".tar.gz"))
941 (sha256
942 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
943 (build-system perl-build-system)
944 (native-inputs
945 `(("perl-test-base" ,perl-test-base)))
946 (home-page "https://metacpan.org/release/Carp-Always")
947 (synopsis "Warns and dies noisily with stack backtraces/")
948 (description "This module is meant as a debugging aid. It can be used to
949 make a script complain loudly with stack backtraces when @code{warn()}-ing or
950 @code{die()}ing.")
951 (license (package-license perl))))
952
953 (define-public perl-carp-assert
954 (package
955 (name "perl-carp-assert")
956 (version "0.21")
957 (source
958 (origin
959 (method url-fetch)
960 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
961 "Carp-Assert-" version ".tar.gz"))
962 (sha256
963 (base32
964 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
965 (build-system perl-build-system)
966 (home-page "https://metacpan.org/release/Carp-Assert")
967 (synopsis "Executable comments for Perl")
968 (description "Carp::Assert is intended for a purpose like the ANSI C
969 library assert.h.")
970 (license (package-license perl))))
971
972 (define-public perl-carp-assert-more
973 (package
974 (name "perl-carp-assert-more")
975 (version "1.20")
976 (source
977 (origin
978 (method url-fetch)
979 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
980 "Carp-Assert-More-" version ".tar.gz"))
981 (sha256
982 (base32 "16jnhdjgfwymrc5fki4xlf1rlziszf9k6q0245g976124k708ac5"))))
983 (build-system perl-build-system)
984 (native-inputs
985 `(("perl-test-exception" ,perl-test-exception)))
986 (propagated-inputs
987 `(("perl-carp-assert" ,perl-carp-assert)))
988 (home-page "https://metacpan.org/release/Carp-Assert-More")
989 (synopsis "Convenience wrappers around Carp::Assert")
990 (description "Carp::Assert::More is a set of handy assertion functions for
991 Perl.")
992 (license artistic2.0)))
993
994 (define-public perl-carp-clan
995 (package
996 (name "perl-carp-clan")
997 (version "6.08")
998 (source
999 (origin
1000 (method url-fetch)
1001 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1002 "Carp-Clan-" version ".tar.gz"))
1003 (sha256
1004 (base32 "0237xx3rqa72sr4vdvws9r1m453h5f25bl85mdjmmk128kir4py7"))))
1005 (build-system perl-build-system)
1006 (native-inputs
1007 `(("perl-test-exception" ,perl-test-exception)))
1008 (home-page "https://metacpan.org/release/Carp-Clan")
1009 (synopsis "Report errors from a \"clan\" of modules")
1010 (description "This module allows errors from a clan (or family) of modules
1011 to appear to originate from the caller of the clan. This is necessary in
1012 cases where the clan modules are not classes derived from each other, and thus
1013 the Carp.pm module doesn't help.")
1014 (license (package-license perl))))
1015
1016 (define-public perl-cddb-get
1017 (package
1018 (name "perl-cddb-get")
1019 (version "2.28")
1020 (source (origin
1021 (method url-fetch)
1022 (uri (string-append
1023 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
1024 version ".tar.gz"))
1025 (sha256
1026 (base32
1027 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
1028 (build-system perl-build-system)
1029 (home-page "https://metacpan.org/release/CDDB_get")
1030 (synopsis "Read the CDDB entry for an audio CD in your drive")
1031 (description "This module can retrieve information from the CDDB.")
1032 ;; Either GPLv2 or the "Artistic" license.
1033 (license (list gpl2 artistic2.0))))
1034
1035 (define-public circos
1036 (package
1037 (name "circos")
1038 (version "0.69-9")
1039 (source (origin
1040 (method url-fetch)
1041 (uri (string-append
1042 "http://circos.ca/distribution/circos-" version ".tgz"))
1043 (sha256
1044 (base32 "1ll9yxbk0v64813np0qz6h8bc53qlnhg9y1053b57xgkxgmxgn1l"))
1045 (patches (list (search-patch "circos-remove-findbin.patch")))))
1046 (build-system gnu-build-system)
1047 (arguments
1048 `(#:tests? #f ; There are no tests.
1049 #:phases
1050 (modify-phases %standard-phases
1051 (delete 'configure)
1052 (delete 'build)
1053 (replace 'install
1054 (lambda* (#:key outputs #:allow-other-keys)
1055 (let* ((out (assoc-ref outputs "out"))
1056 (bin (string-append out "/bin"))
1057 (datapath (string-append out "/share/Circos"))
1058 (error (string-append out "/share/Circos/error"))
1059 (fonts (string-append out "/share/Circos/fonts"))
1060 (data (string-append out "/share/Circos/data"))
1061 (tiles (string-append out "/share/Circos/tiles"))
1062 (etc (string-append out "/share/Circos/etc"))
1063 (lib (string-append out "/lib/perl5/site_perl/"
1064 ,(package-version perl)))
1065 (install-directory (lambda (source target)
1066 (mkdir-p target)
1067 (copy-recursively source target))))
1068 ;; Circos looks into a relative path for its configuration
1069 ;; files. We need to provide an absolute path towards the
1070 ;; corresponding paths in the store.
1071 (substitute* '("bin/circos" "etc/colors_fonts_patterns.conf"
1072 "etc/gddiag.conf" "etc/brewer.conf" "README")
1073 (("<<include etc") (string-append "<<include " etc)))
1074 (substitute* '("etc/colors.conf" "etc/image.black.conf"
1075 "etc/patterns.conf" "etc/image.conf")
1076 (("<<include ") (string-append "<<include " etc "/")))
1077 (substitute* '("etc/fonts.conf" "fonts/README.fonts")
1078 (("= fonts") (string-append "= " fonts)))
1079 (substitute* "etc/patterns.conf"
1080 (("= tiles") (string-append "= " tiles)))
1081 (substitute* "lib/Circos/Error.pm"
1082 (("error/configuration.missing.txt")
1083 (string-append error "/configuration.missing.txt")))
1084 (substitute* "etc/housekeeping.conf"
1085 (("# data_path = /home/martink/circos-tutorials ")
1086 (string-append "data_path = " datapath)))
1087 (substitute* "lib/Circos/Configuration.pm"
1088 (("my @possibilities = \\(")
1089 (string-append "my @possibilities = ("
1090 "catfile( \"" datapath "\", $arg ), "
1091 "catfile( \"" etc "\", $arg ), "
1092 "catfile( \"" etc "/tracks\", $arg ), ")))
1093 (for-each install-directory
1094 (list "error" "fonts" "data" "tiles" "etc" "lib")
1095 (list error fonts data tiles etc lib))
1096 (install-file "bin/circos" bin)
1097 #t))))))
1098 (propagated-inputs
1099 `(("perl" ,perl)
1100 ("perl-carp" ,perl-carp)
1101 ("perl-clone" ,perl-clone)
1102 ("perl-config-general" ,perl-config-general)
1103 ("perl-digest-md5" ,perl-digest-md5)
1104 ("perl-file-temp" ,perl-file-temp)
1105 ("perl-font-ttf" ,perl-font-ttf)
1106 ("perl-gd" ,perl-gd)
1107 ("perl-getopt-long" ,perl-getopt-long)
1108 ("perl-list-allutils" ,perl-list-allutils)
1109 ("perl-math-bezier" ,perl-math-bezier)
1110 ("perl-math-round" ,perl-math-round)
1111 ("perl-math-vecstat" ,perl-math-vecstat)
1112 ("perl-memoize" ,perl-memoize)
1113 ("perl-number-format" ,perl-number-format)
1114 ("perl-params-validate" ,perl-params-validate)
1115 ("perl-readonly" ,perl-readonly)
1116 ("perl-regexp-common" ,perl-regexp-common)
1117 ("perl-set-intspan" ,perl-set-intspan)
1118 ("perl-statistics-basic" ,perl-statistics-basic)
1119 ("perl-svg" ,perl-svg)
1120 ("perl-text-balanced" ,perl-text-balanced)
1121 ("perl-text-format" ,perl-text-format)
1122 ("perl-time-hires" ,perl-time-hires)))
1123 (home-page "http://circos.ca/")
1124 (synopsis "Generation of circularly composited renditions")
1125 (description
1126 "Circos is a program for the generation of publication-quality, circularly
1127 composited renditions of genomic data and related annotations.")
1128 (license gpl2+)))
1129
1130 (define-public perl-class-accessor
1131 (package
1132 (name "perl-class-accessor")
1133 (version "0.51")
1134 (source
1135 (origin
1136 (method url-fetch)
1137 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
1138 "Class-Accessor-" version ".tar.gz"))
1139 (sha256
1140 (base32
1141 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
1142 (build-system perl-build-system)
1143 (native-inputs
1144 `(("perl-sub-name" ,perl-sub-name)))
1145 (home-page "https://metacpan.org/release/Class-Accessor")
1146 (synopsis "Automated accessor generation")
1147 (description "This module automagically generates accessors/mutators for
1148 your class.")
1149 (license (package-license perl))))
1150
1151 (define-public perl-class-accessor-chained
1152 (package
1153 (name "perl-class-accessor-chained")
1154 (version "0.01")
1155 (source
1156 (origin
1157 (method url-fetch)
1158 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1159 "Class-Accessor-Chained-" version ".tar.gz"))
1160 (sha256
1161 (base32
1162 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
1163 (build-system perl-build-system)
1164 (native-inputs
1165 `(("perl-module-build" ,perl-module-build)))
1166 (propagated-inputs
1167 `(("perl-class-accessor" ,perl-class-accessor)))
1168 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
1169 (synopsis "Faster, but less expandable, chained accessors")
1170 (description "A chained accessor is one that always returns the object
1171 when called with parameters (to set), and the value of the field when called
1172 with no arguments. This module subclasses Class::Accessor in order to provide
1173 the same mk_accessors interface.")
1174 (license (package-license perl))))
1175
1176 (define-public perl-class-accessor-grouped
1177 (package
1178 (name "perl-class-accessor-grouped")
1179 (version "0.10014")
1180 (source
1181 (origin
1182 (method url-fetch)
1183 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1184 "Class-Accessor-Grouped-" version ".tar.gz"))
1185 (sha256
1186 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
1187 (build-system perl-build-system)
1188 (native-inputs
1189 `(("perl-module-install" ,perl-module-install)
1190 ("perl-test-exception" ,perl-test-exception)))
1191 (propagated-inputs
1192 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
1193 ("perl-module-runtime" ,perl-module-runtime)
1194 ("perl-sub-name" ,perl-sub-name)))
1195 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
1196 (synopsis "Build groups of accessors")
1197 (description "This class lets you build groups of accessors that will call
1198 different getters and setters.")
1199 (license (package-license perl))))
1200
1201 (define-public perl-class-c3
1202 (package
1203 (name "perl-class-c3")
1204 (version "0.34")
1205 (source
1206 (origin
1207 (method url-fetch)
1208 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1209 "Class-C3-" version ".tar.gz"))
1210 (sha256
1211 (base32 "1dcibc31v5jwmi6hsdzi7c5ag1sb4wp3kxkibc889qrdj7jm12sd"))))
1212 (build-system perl-build-system)
1213 (propagated-inputs
1214 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
1215 (home-page "https://metacpan.org/release//Class-C3")
1216 (synopsis "Pragma to use the C3 method resolution order algorithm")
1217 (description "This is pragma to change Perl 5's standard method resolution
1218 order from depth-first left-to-right (a.k.a - pre-order) to the more
1219 sophisticated C3 method resolution order.")
1220 (license (package-license perl))))
1221
1222 (define-public perl-class-c3-adopt-next
1223 (package
1224 (name "perl-class-c3-adopt-next")
1225 (version "0.14")
1226 (source
1227 (origin
1228 (method url-fetch)
1229 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1230 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1231 (sha256
1232 (base32 "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"))))
1233 (build-system perl-build-system)
1234 (native-inputs
1235 `(("perl-module-build" ,perl-module-build)
1236 ("perl-module-build-tiny" ,perl-module-build-tiny)
1237 ("perl-test-exception" ,perl-test-exception)))
1238 (propagated-inputs
1239 `(("perl-list-moreutils" ,perl-list-moreutils)
1240 ("perl-mro-compat" ,perl-mro-compat)))
1241 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
1242 (synopsis "Drop-in replacement for NEXT")
1243 (description "This module is intended as a drop-in replacement for NEXT,
1244 supporting the same interface, but using Class::C3 to do the hard work.")
1245 (license (package-license perl))))
1246
1247 (define-public perl-class-c3-componentised
1248 (package
1249 (name "perl-class-c3-componentised")
1250 (version "1.001002")
1251 (source
1252 (origin
1253 (method url-fetch)
1254 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1255 "Class-C3-Componentised-" version ".tar.gz"))
1256 (sha256
1257 (base32 "14wn1g45z3b5apqq7dcai5drk01hfyqydsd2m6hsxzhyvi3b2l9h"))))
1258 (build-system perl-build-system)
1259 (native-inputs
1260 `(("perl-module-install" ,perl-module-install)
1261 ("perl-test-exception" ,perl-test-exception)))
1262 (propagated-inputs
1263 `(("perl-class-c3" ,perl-class-c3)
1264 ("perl-class-inspector" ,perl-class-inspector)
1265 ("perl-mro-compat" ,perl-mro-compat)))
1266 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1267 (synopsis "Load mix-ins or components to your C3-based class")
1268 (description "This module will inject base classes to your module using
1269 the Class::C3 method resolution order.")
1270 (license (package-license perl))))
1271
1272 (define-public perl-class-data-inheritable
1273 (package
1274 (name "perl-class-data-inheritable")
1275 (version "0.08")
1276 (source
1277 (origin
1278 (method url-fetch)
1279 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1280 "Class-Data-Inheritable-" version ".tar.gz"))
1281 (sha256
1282 (base32
1283 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1284 (build-system perl-build-system)
1285 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1286 (synopsis "Inheritable, overridable class data")
1287 (description "Class::Data::Inheritable is for creating accessor/mutators
1288 to class data. That is, if you want to store something about your class as a
1289 whole (instead of about a single object). This data is then inherited by your
1290 subclasses and can be overridden.")
1291 (license (package-license perl))))
1292
1293 (define-public perl-class-date
1294 (package
1295 (name "perl-class-date")
1296 (version "1.1.17")
1297 (source
1298 (origin
1299 (method url-fetch)
1300 (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/"
1301 "Class-Date-" version ".tar.gz"))
1302 (sha256
1303 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1304 (build-system perl-build-system)
1305 (arguments `(#:tests? #f)) ;timezone tests in chroot
1306 (home-page "https://metacpan.org/release/Class-Date")
1307 (synopsis "Class for easy date and time manipulation")
1308 (description "This module provides a general-purpose date and datetime
1309 type for perl.")
1310 (license (package-license perl))))
1311
1312 (define-public perl-class-errorhandler
1313 (package
1314 (name "perl-class-errorhandler")
1315 (version "0.04")
1316 (source (origin
1317 (method url-fetch)
1318 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1319 "Class-ErrorHandler-" version ".tar.gz"))
1320 (sha256
1321 (base32
1322 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1323 (build-system perl-build-system)
1324 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1325 (synopsis "Base class for error handling")
1326 (description
1327 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1328 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1329 its two error-handling methods, error and errstr, to communicate error messages back
1330 to the calling program.")
1331 (license (package-license perl))))
1332
1333 (define-public perl-class-factory-util
1334 (package
1335 (name "perl-class-factory-util")
1336 (version "1.7")
1337 (source
1338 (origin
1339 (method url-fetch)
1340 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1341 "Class-Factory-Util-" version ".tar.gz"))
1342 (sha256
1343 (base32
1344 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1345 (build-system perl-build-system)
1346 (native-inputs `(("perl-module-build" ,perl-module-build)))
1347 (home-page "https://metacpan.org/release/Class-Factory-Util")
1348 (synopsis "Utility methods for factory classes")
1349 (description "This module exports methods useful for factory classes.")
1350 (license (package-license perl))))
1351
1352 (define-public perl-class-inspector
1353 (package
1354 (name "perl-class-inspector")
1355 (version "1.36")
1356 (source
1357 (origin
1358 (method url-fetch)
1359 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1360 "Class-Inspector-" version ".tar.gz"))
1361 (sha256
1362 (base32
1363 "0kk900bp8iq7bw5jyllfb31gvf93mmp24n4x90j7qs3jlhimsafc"))))
1364 (build-system perl-build-system)
1365 (home-page "https://metacpan.org/release/Class-Inspector")
1366 (synopsis "Get information about a class and its structure")
1367 (description "Class::Inspector allows you to get information about a
1368 loaded class.")
1369 (license (package-license perl))))
1370
1371 (define-public perl-class-load
1372 (package
1373 (name "perl-class-load")
1374 (version "0.25")
1375 (source
1376 (origin
1377 (method url-fetch)
1378 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1379 "Class-Load-" version ".tar.gz"))
1380 (sha256
1381 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1382 (build-system perl-build-system)
1383 (native-inputs
1384 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1385 ("perl-test-fatal" ,perl-test-fatal)
1386 ("perl-test-needs" ,perl-test-needs)
1387 ("perl-test-without-module" ,perl-test-without-module)))
1388 (propagated-inputs
1389 `(("perl-package-stash" ,perl-package-stash)
1390 ("perl-data-optlist" ,perl-data-optlist)
1391 ("perl-namespace-clean" ,perl-namespace-clean)
1392 ("perl-module-runtime" ,perl-module-runtime)
1393 ("perl-module-implementation" ,perl-module-implementation)))
1394 (home-page "https://metacpan.org/release/Class-Load")
1395 (synopsis "Working (require \"Class::Name\") and more")
1396 (description "\"require EXPR\" only accepts Class/Name.pm style module
1397 names, not Class::Name. For that, this module provides \"load_class
1398 'Class::Name'\".")
1399 (license (package-license perl))))
1400
1401 (define-public perl-class-load-xs
1402 (package
1403 (name "perl-class-load-xs")
1404 (version "0.10")
1405 (source
1406 (origin
1407 (method url-fetch)
1408 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1409 "Class-Load-XS-" version ".tar.gz"))
1410 (sha256
1411 (base32
1412 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1413 (build-system perl-build-system)
1414 (native-inputs
1415 `(("perl-test-fatal" ,perl-test-fatal)
1416 ("perl-test-needs" ,perl-test-needs)
1417 ("perl-test-without-module" ,perl-test-without-module)))
1418 (inputs `(("perl-class-load" ,perl-class-load)))
1419 (home-page "https://metacpan.org/release/Class-Load-XS")
1420 (synopsis "XS implementation of parts of Class::Load")
1421 (description "This module provides an XS implementation for portions of
1422 Class::Load.")
1423 (license artistic2.0)))
1424
1425 (define-public perl-class-methodmaker
1426 (package
1427 (name "perl-class-methodmaker")
1428 (version "2.24")
1429 (source
1430 (origin
1431 (method url-fetch)
1432 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1433 "class-methodmaker/Class-MethodMaker-"
1434 version ".tar.gz"))
1435 (sha256
1436 (base32
1437 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1438 (build-system perl-build-system)
1439 (home-page "https://metacpan.org/release/Class-MethodMaker")
1440 (synopsis "Create generic methods for OO Perl")
1441 (description "This module solves the problem of having to continually
1442 write accessor methods for your objects that perform standard tasks.")
1443 (license (package-license perl))))
1444
1445 (define-public perl-class-method-modifiers
1446 (package
1447 (name "perl-class-method-modifiers")
1448 (version "2.13")
1449 (source
1450 (origin
1451 (method url-fetch)
1452 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1453 "Class-Method-Modifiers-" version ".tar.gz"))
1454 (sha256
1455 (base32 "0qzx83mgd71hlc2m1kpw15dqsjzjq7b2cj3sdgg45a0q23vhfn5b"))))
1456 (build-system perl-build-system)
1457 (native-inputs
1458 `(("perl-test-fatal" ,perl-test-fatal)
1459 ("perl-test-needs" ,perl-test-needs)))
1460 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1461 (synopsis "Moose-like method modifiers")
1462 (description "Class::Method::Modifiers provides three modifiers:
1463 @code{before}, @code{around}, and @code{after}. @code{before} and @code{after}
1464 are run just before and after the method they modify, but can not really affect
1465 that original method. @code{around} is run in place of the original method,
1466 with a hook to easily call that original method.")
1467 (license (package-license perl))))
1468
1469 (define-public perl-class-mix
1470 (package
1471 (name "perl-class-mix")
1472 (version "0.006")
1473 (source
1474 (origin
1475 (method url-fetch)
1476 (uri (string-append
1477 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Class-Mix-"
1478 version ".tar.gz"))
1479 (sha256
1480 (base32
1481 "02vwzzqn1s24g525arbrjh9s9j0y1inp3wbr972gh51ri51zciw7"))))
1482 (build-system perl-build-system)
1483 (native-inputs
1484 `(("perl-module-build" ,perl-module-build)
1485 ("perl-test-pod" ,perl-test-pod)
1486 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1487 (propagated-inputs
1488 `(("perl-params-classify" ,perl-params-classify)))
1489 (home-page "https://metacpan.org/release/Class-Mix")
1490 (synopsis "Dynamic class mixing")
1491 (description "The @code{mix_class} function provided by this
1492 module dynamically generates anonymous classes with specified
1493 inheritance. This is useful where an incomplete class requires use of
1494 a mixin in order to become instantiable.")
1495 (license perl-license)))
1496
1497 (define-public perl-class-singleton
1498 (package
1499 (name "perl-class-singleton")
1500 (version "1.5")
1501 (source
1502 (origin
1503 (method url-fetch)
1504 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1505 "Class-Singleton-" version ".tar.gz"))
1506 (sha256
1507 (base32
1508 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1509 (build-system perl-build-system)
1510 (home-page "https://metacpan.org/release/Class-Singleton")
1511 (synopsis "Implementation of a singleton class for Perl")
1512 (description "This module implements a Singleton class from which other
1513 classes can be derived. By itself, the Class::Singleton module does very
1514 little other than manage the instantiation of a single object.")
1515 (license (package-license perl))))
1516
1517 (define-public perl-class-tiny
1518 (package
1519 (name "perl-class-tiny")
1520 (version "1.006")
1521 (source
1522 (origin
1523 (method url-fetch)
1524 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1525 "Class-Tiny-" version ".tar.gz"))
1526 (sha256
1527 (base32
1528 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1529 (build-system perl-build-system)
1530 (home-page "https://metacpan.org/release/Class-Tiny")
1531 (synopsis "Minimalist class construction")
1532 (description "This module offers a minimalist class construction kit. It
1533 uses no non-core modules for any recent Perl.")
1534 (license asl2.0)))
1535
1536 (define-public perl-class-unload
1537 (package
1538 (name "perl-class-unload")
1539 (version "0.11")
1540 (source
1541 (origin
1542 (method url-fetch)
1543 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1544 "Class-Unload-" version ".tar.gz"))
1545 (sha256
1546 (base32 "0pqa98z3ij6a3v9wkmvc8b410kv30y0xxqf0i6if3lp4lx3rgqjj"))))
1547 (build-system perl-build-system)
1548 (native-inputs
1549 `(("perl-test-requires" ,perl-test-requires)))
1550 (propagated-inputs
1551 `(("perl-class-inspector" ,perl-class-inspector)))
1552 (home-page "https://metacpan.org/release/Class-Unload")
1553 (synopsis "Unload a class")
1554 (description "Class:Unload unloads a given class by clearing out its
1555 symbol table and removing it from %INC.")
1556 (license (package-license perl))))
1557
1558 (define-public perl-class-xsaccessor
1559 (package
1560 (name "perl-class-xsaccessor")
1561 (version "1.19")
1562 (source
1563 (origin
1564 (method url-fetch)
1565 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1566 "Class-XSAccessor-" version ".tar.gz"))
1567 (sha256
1568 (base32
1569 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1570 (build-system perl-build-system)
1571 (home-page "https://metacpan.org/release/Class-XSAccessor")
1572 (synopsis "Generate fast XS accessors without runtime compilation")
1573 (description "Class::XSAccessor implements fast read, write, and
1574 read/write accessors in XS. Additionally, it can provide predicates such as
1575 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1576 object. It only works with objects that are implemented as ordinary hashes.
1577 Class::XSAccessor::Array implements the same interface for objects that use
1578 arrays for their internal representation.")
1579 (license (package-license perl))))
1580
1581 (define-public perl-clone
1582 (package
1583 (name "perl-clone")
1584 (version "0.43")
1585 (source (origin
1586 (method url-fetch)
1587 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
1588 "Clone-" version ".tar.gz"))
1589 (sha256
1590 (base32
1591 "1npf5s4b90ds6lv8gn76b2w4bdh0z5ni5zk4skgc2db5d12560lr"))))
1592 (build-system perl-build-system)
1593 (synopsis "Recursively copy Perl datatypes")
1594 (description
1595 "This module provides a clone() method which makes recursive copies of
1596 nested hash, array, scalar and reference types, including tied variables and
1597 objects.")
1598 (home-page "https://metacpan.org/release/Clone")
1599 (license (package-license perl))))
1600
1601 (define-public perl-clone-choose
1602 (package
1603 (name "perl-clone-choose")
1604 (version "0.010")
1605 (source
1606 (origin
1607 (method url-fetch)
1608 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
1609 "Clone-Choose-" version ".tar.gz"))
1610 (sha256
1611 (base32
1612 "0cin2bjn5z8xhm9v4j7pwlkx88jnvz8al0njdjwyvs6fb0glh8sn"))))
1613 (build-system perl-build-system)
1614 (native-inputs
1615 `(("perl-clone" ,perl-clone)
1616 ("perl-clone-pp" ,perl-clone-pp)
1617 ("perl-test-without-module" ,perl-test-without-module)))
1618 (propagated-inputs
1619 `(("perl-module-runtime" ,perl-module-runtime)))
1620 (home-page "https://metacpan.org/release/Clone-Choose")
1621 (synopsis "Choose appropriate Perl @code{clone} utility")
1622 (description "This @code{Clone::Choose} module checks several different
1623 modules which provide a @code{clone()} function and selects an appropriate
1624 one.")
1625 (license perl-license)))
1626
1627 (define-public perl-clone-pp
1628 (package
1629 (name "perl-clone-pp")
1630 (version "1.07")
1631 (source
1632 (origin
1633 (method url-fetch)
1634 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1635 version ".tar.gz"))
1636 (sha256
1637 (base32
1638 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1639 (build-system perl-build-system)
1640 (home-page "https://metacpan.org/release/Clone-PP")
1641 (synopsis "Recursively copy Perl datatypes")
1642 (description "This module provides a general-purpose @code{clone} function
1643 to make deep copies of Perl data structures. It calls itself recursively to
1644 copy nested hash, array, scalar and reference types, including tied variables
1645 and objects.")
1646 (license (package-license perl))))
1647
1648 (define-public perl-common-sense
1649 (package
1650 (name "perl-common-sense")
1651 (version "3.74")
1652 (source
1653 (origin
1654 (method url-fetch)
1655 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1656 "common-sense-" version ".tar.gz"))
1657 (sha256
1658 (base32
1659 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1660 (build-system perl-build-system)
1661 (home-page "https://metacpan.org/release/common-sense")
1662 (synopsis "Sane defaults for Perl programs")
1663 (description "This module implements some sane defaults for Perl programs,
1664 as defined by two typical specimens of Perl coders.")
1665 (license (package-license perl))))
1666
1667 (define-public perl-conf-libconfig
1668 (package
1669 (name "perl-conf-libconfig")
1670 (version "0.100")
1671 (source
1672 (origin
1673 (method url-fetch)
1674 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1675 "Conf-Libconfig-" version ".tar.gz"))
1676 (sha256
1677 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1678 (build-system perl-build-system)
1679 (native-inputs
1680 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1681 ("perl-test-deep" ,perl-test-deep)
1682 ("perl-test-exception" ,perl-test-exception)
1683 ("perl-test-warn" ,perl-test-warn)))
1684 (inputs
1685 `(("libconfig" ,libconfig)))
1686 (home-page "https://metacpan.org/release/Conf-Libconfig")
1687 (synopsis "Perl extension for libconfig")
1688 (description
1689 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1690 library. It support scalar, array, and hash data structures just like its C/C++
1691 counterpart. It reduces the effort required to implement a configuration file
1692 parser in your Perl programme and allows sharing configuration files between
1693 languages.")
1694 (license bsd-3)))
1695
1696 (define-public perl-config-grammar
1697 (package
1698 (name "perl-config-grammar")
1699 (version "1.13")
1700 (source
1701 (origin
1702 (method url-fetch)
1703 (uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
1704 "Config-Grammar-" version ".tar.gz"))
1705 (sha256
1706 (base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
1707 (build-system perl-build-system)
1708 (home-page "https://metacpan.org/release/Config-Grammar")
1709 (synopsis "Grammar-based config parser")
1710 (description
1711 "Config::Grammar is a module to parse configuration files. The
1712 configuration may consist of multiple-level sections with assignments and
1713 tabular data.")
1714 (license (package-license perl))))
1715
1716 (define-public perl-config-any
1717 (package
1718 (name "perl-config-any")
1719 (version "0.32")
1720 (source
1721 (origin
1722 (method url-fetch)
1723 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1724 "Config-Any-" version ".tar.gz"))
1725 (sha256
1726 (base32
1727 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1728 (build-system perl-build-system)
1729 (propagated-inputs
1730 `(("perl-module-pluggable" ,perl-module-pluggable)))
1731 (home-page "https://metacpan.org/release/Config-Any")
1732 (synopsis "Load configuration from different file formats")
1733 (description "Config::Any provides a facility for Perl applications and
1734 libraries to load configuration data from multiple different file formats. It
1735 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1736 (license (package-license perl))))
1737
1738 (define-public perl-config-inifiles
1739 (package
1740 (name "perl-config-inifiles")
1741 (version "3.000002")
1742 (source
1743 (origin
1744 (method url-fetch)
1745 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/"
1746 "Config-IniFiles-" version ".tar.gz"))
1747 (sha256
1748 (base32 "02dsz3inh5jwgaxmbcz8qxwgin8mkhm6vj9jyzfmm3dr5pnxcbnr"))))
1749 (build-system perl-build-system)
1750 (propagated-inputs
1751 `(("perl-module-build" ,perl-module-build)
1752 ("perl-io-stringy",perl-io-stringy)))
1753 (home-page "https://metacpan.org/pod/Config::IniFiles")
1754 (synopsis "Package for configuration files outside your Perl script")
1755 (description "This package provides a way to have readable configuration
1756 files outside your Perl script. Configurations can be imported, sections
1757 can be grouped, and settings can be accessed from a tied hash.")
1758 (license (package-license perl))))
1759
1760 (define-public perl-config-autoconf
1761 (package
1762 (name "perl-config-autoconf")
1763 (version "0.317")
1764 (source
1765 (origin
1766 (method url-fetch)
1767 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1768 "Config-AutoConf-" version ".tar.gz"))
1769 (sha256
1770 (base32
1771 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1772 (build-system perl-build-system)
1773 (propagated-inputs
1774 `(("perl-capture-tiny" ,perl-capture-tiny)))
1775 (home-page "https://metacpan.org/release/Config-AutoConf")
1776 (synopsis "Module to implement some AutoConf macros in Perl")
1777 (description "Config::AutoConf is intended to provide the same
1778 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1779 (license (package-license perl))))
1780
1781 (define-public perl-config-general
1782 (package
1783 (name "perl-config-general")
1784 (version "2.63")
1785 (source
1786 (origin
1787 (method url-fetch)
1788 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1789 "Config-General-" version ".tar.gz"))
1790 (sha256
1791 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1792 (build-system perl-build-system)
1793 (home-page "https://metacpan.org/release/Config-General")
1794 (synopsis "Generic Config Module")
1795 (description "This module opens a config file and parses its contents for
1796 you. The format of config files supported by Config::General is inspired by
1797 the well known Apache config format and is 100% compatible with Apache
1798 configs, but you can also just use simple name/value pairs in your config
1799 files. In addition to the capabilities of an Apache config file it supports
1800 some enhancements such as here-documents, C-style comments, and multiline
1801 options.")
1802 (license (package-license perl))))
1803
1804 (define-public perl-config-gitlike
1805 (package
1806 (name "perl-config-gitlike")
1807 (version "1.17")
1808 (source
1809 (origin
1810 (method url-fetch)
1811 (uri (string-append
1812 "mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
1813 version
1814 ".tar.gz"))
1815 (sha256
1816 (base32
1817 "0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
1818 (build-system perl-build-system)
1819 (native-inputs
1820 `(("perl-test-exception" ,perl-test-exception)))
1821 (propagated-inputs
1822 `(("perl-moo" ,perl-moo)
1823 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
1824 (home-page "https://metacpan.org/release/Config-GitLike")
1825 (synopsis "Parse Git style configuration files")
1826 (description
1827 "This module handles parsing, modifying and creating configuration files
1828 of the style used by the Git version control system.")
1829 (license perl-license)))
1830
1831 (define-public perl-config-ini
1832 (package
1833 (name "perl-config-ini")
1834 (version "0.025")
1835 (source (origin
1836 (method url-fetch)
1837 (uri (string-append
1838 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1839 version ".tar.gz"))
1840 (sha256
1841 (base32
1842 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1843 (build-system perl-build-system)
1844 (inputs
1845 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1846 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1847 ("perl-sub-exporter" ,perl-sub-exporter)))
1848 (home-page "https://metacpan.org/release/Config-INI")
1849 (synopsis "Simple .ini-file format reader and writer")
1850 (description "@code{Config::INI} is a module that facilates the reading
1851 and writing of @code{.ini}-style configuration files.")
1852 (license (package-license perl))))
1853
1854 (define-public perl-context-preserve
1855 (package
1856 (name "perl-context-preserve")
1857 (version "0.03")
1858 (source
1859 (origin
1860 (method url-fetch)
1861 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1862 "Context-Preserve-" version ".tar.gz"))
1863 (sha256
1864 (base32
1865 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1866 (build-system perl-build-system)
1867 (native-inputs
1868 `(("perl-test-exception" ,perl-test-exception)
1869 ("perl-test-simple" ,perl-test-simple)))
1870 (home-page "https://metacpan.org/release/Context-Preserve")
1871 (synopsis "Preserve context during subroutine call")
1872 (description "This module runs code after a subroutine call, preserving
1873 the context the subroutine would have seen if it were the last statement in
1874 the caller.")
1875 (license (package-license perl))))
1876
1877 (define-public perl-convert-binhex
1878 (package
1879 (name "perl-convert-binhex")
1880 (version "1.125")
1881 (source
1882 (origin
1883 (method url-fetch)
1884 (uri (string-append
1885 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1886 version
1887 ".tar.gz"))
1888 (sha256
1889 (base32
1890 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1891 (build-system perl-build-system)
1892 (native-inputs
1893 `(("perl-file-slurp" ,perl-file-slurp)
1894 ("perl-test-most" ,perl-test-most)))
1895 (home-page
1896 "https://metacpan.org/release/Convert-BinHex")
1897 (synopsis "Extract data from Macintosh BinHex files")
1898 (description
1899 "BinHex is a format for transporting files safely through electronic
1900 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1901 provides a means of converting those data streams back into into binary
1902 data.")
1903 (license perl-license)))
1904
1905 (define-public perl-cpan-changes
1906 (package
1907 (name "perl-cpan-changes")
1908 (version "0.400002")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (string-append
1913 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1914 version ".tar.gz"))
1915 (sha256
1916 (base32
1917 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1918 (build-system perl-build-system)
1919 (home-page "https://metacpan.org/release/CPAN-Changes")
1920 (synopsis "Read and write @file{Changes} files")
1921 (description
1922 "@code{CPAN::Changes} helps users programmatically read and write
1923 @file{Changes} files that conform to a common specification.")
1924 (license perl-license)))
1925
1926 (define-public perl-cpan-distnameinfo
1927 (package
1928 (name "perl-cpan-distnameinfo")
1929 (version "0.12")
1930 (source
1931 (origin
1932 (method url-fetch)
1933 (uri (string-append
1934 "mirror://cpan/authors/id/G/GB/GBARR/CPAN-DistnameInfo-"
1935 version
1936 ".tar.gz"))
1937 (sha256
1938 (base32
1939 "0d94kx596w7k328cvq4y96z1gz12hdhn3z1mklkbrb7fyzlzn91g"))))
1940 (build-system perl-build-system)
1941 (home-page "https://metacpan.org/release/CPAN-DistnameInfo")
1942 (synopsis "Extract the name and version from a distribution filename")
1943 (description
1944 "@code{CPAN::DistnameInfo} uses heuristics to extract the distribution
1945 name and version from filenames.")
1946 (license perl-license)))
1947
1948 (define-public perl-cpan-meta-check
1949 (package
1950 (name "perl-cpan-meta-check")
1951 (version "0.014")
1952 (source
1953 (origin
1954 (method url-fetch)
1955 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1956 "CPAN-Meta-Check-" version ".tar.gz"))
1957 (sha256
1958 (base32
1959 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1960 (build-system perl-build-system)
1961 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1962 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1963 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1964 (synopsis "Verify requirements in a CPAN::Meta object")
1965 (description "This module verifies if requirements described in a
1966 CPAN::Meta object are present.")
1967 (license (package-license perl))))
1968
1969 (define-public perl-cpanel-json-xs
1970 (package
1971 (name "perl-cpanel-json-xs")
1972 (version "4.18")
1973 (source
1974 (origin
1975 (method url-fetch)
1976 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1977 "Cpanel-JSON-XS-" version ".tar.gz"))
1978 (sha256
1979 (base32 "1dnnf6bjz0fi9hk8gzmsklmh5y0z137vk62k3d7s88q30maf3rk3"))))
1980 (build-system perl-build-system)
1981 (propagated-inputs
1982 `(("perl-common-sense" ,perl-common-sense)))
1983 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1984 (synopsis "JSON::XS for Cpanel")
1985 (description "This module converts Perl data structures to JSON and vice
1986 versa.")
1987 (license (package-license perl))))
1988
1989 (define-public perl-crypt-cbc
1990 (package
1991 (name "perl-crypt-cbc")
1992 (version "2.33")
1993 (source
1994 (origin
1995 (method url-fetch)
1996 (uri (string-append
1997 "mirror://cpan/authors/id/L/LD/LDS/Crypt-CBC-"
1998 version ".tar.gz"))
1999 (sha256
2000 (base32
2001 "0ig698lmpjz7fslnznxm0609lvlnvf4f3s370082nzycnqhxww3a"))))
2002 (build-system perl-build-system)
2003 (native-inputs
2004 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)))
2005 (home-page "https://metacpan.org/release/Crypt-CBC")
2006 (synopsis "Encrypt Data with Cipher Block Chaining Mode")
2007 (description "@code{Crypt::CBC} is a Perl-only implementation of
2008 the cryptographic Cipher Block Chaining (CBC) mode. In combination
2009 with a block cipher such as @code{Crypt::Rijndael} you can encrypt and
2010 decrypt messages of arbitrarily long length. The encrypted messages
2011 are compatible with the encryption format used by SSLeay.")
2012 (license perl-license)))
2013
2014 (define-public perl-crypt-des
2015 (package
2016 (name "perl-crypt-des")
2017 (version "2.07")
2018 (source
2019 (origin
2020 (method url-fetch)
2021 (uri (string-append
2022 "mirror://cpan/authors/id/D/DP/DPARIS/Crypt-DES-"
2023 version ".tar.gz"))
2024 (sha256
2025 (base32
2026 "1rypxlhpd1jc0c327aghgl9y6ls47drmpvn0a40b4k3vhfsypc9d"))))
2027 (build-system perl-build-system)
2028 (native-inputs
2029 `(("perl-crypt-cbc" ,perl-crypt-cbc)))
2030 (home-page "https://metacpan.org/release/Crypt-DES")
2031 (synopsis "DES encryption module")
2032 (description "@code{Crypt::DES} is an XS-based implementation of
2033 the DES cryptography algorithm. The module implements the
2034 @code{Crypt::CBC} interface which has blocksize, keysize, encrypt and
2035 decrypt functions.")
2036 (license bsd-3)))
2037
2038 (define-public perl-crypt-eksblowfish
2039 (package
2040 (name "perl-crypt-eksblowfish")
2041 (version "0.009")
2042 (source
2043 (origin
2044 (method url-fetch)
2045 (uri (string-append
2046 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Crypt-Eksblowfish-"
2047 version ".tar.gz"))
2048 (sha256
2049 (base32
2050 "0k01aw3qb2s4m1w4dqsc9cycyry1zg3wabdym4vp4421b1ni5irw"))))
2051 (build-system perl-build-system)
2052 (native-inputs
2053 `(("perl-module-build" ,perl-module-build)
2054 ("perl-test-pod" ,perl-test-pod)
2055 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2056 (propagated-inputs
2057 `(("perl-class-mix" ,perl-class-mix)))
2058 (home-page "https://metacpan.org/release/Crypt-Eksblowfish")
2059 (synopsis "The Eksblowfish block cipher")
2060 (description "Eksblowfish is a variant of the Blowfish cipher,
2061 modified to make the key setup very expensive. This doesn't make it
2062 significantly cryptographically stronger but is intended to hinder
2063 brute-force attacks. Eksblowfish is a parameterised (family-keyed)
2064 cipher. It takes a cost parameter that controls how expensive the key
2065 scheduling is. It also takes a family key, known as the \"salt\".
2066 Cost and salt parameters together define a cipher family. Within each
2067 family, the key determines the encryption function. This distribution
2068 also includes an implementation of @code{bcrypt}, the Unix crypt()
2069 password hashing algorithm based on Eksblowfish.")
2070 (license perl-license)))
2071
2072 (define-public perl-crypt-mysql
2073 (package
2074 (name "perl-crypt-mysql")
2075 (version "0.04")
2076 (source
2077 (origin
2078 (method url-fetch)
2079 (uri (string-append
2080 "mirror://cpan/authors/id/I/IK/IKEBE/Crypt-MySQL-"
2081 version ".tar.gz"))
2082 (sha256
2083 (base32
2084 "1qyx6ha13r0rh80ldv5wy2bq2pa74igwh8817xlapsfgxymdzswk"))))
2085 (build-system perl-build-system)
2086 (native-inputs
2087 `(("perl-module-build" ,perl-module-build)
2088 ("perl-dbd-mysql" ,perl-dbd-mysql)))
2089 (propagated-inputs
2090 `(("perl-digest-sha1" ,perl-digest-sha1)))
2091 (home-page "https://metacpan.org/release/Crypt-MySQL")
2092 (synopsis "Emulate the MySQL PASSWORD() function")
2093 (description "@code{Crypt::MySQL} emulates the MySQL PASSWORD()
2094 function. The module does not depend on an interface to the MySQL
2095 database server. This enables the comparison of encrypted passwords
2096 without the need for a real MySQL environment.")
2097 (license perl-license)))
2098
2099 (define-public perl-crypt-passwdmd5
2100 (package
2101 (name "perl-crypt-passwdmd5")
2102 (version "1.40")
2103 (source
2104 (origin
2105 (method url-fetch)
2106 (uri (string-append
2107 "mirror://cpan/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-"
2108 version ".tgz"))
2109 (sha256
2110 (base32
2111 "0j0r74f18nk63phddzqbf7wqma2ci4p4bxvrwrxsy0aklbp6lzdp"))))
2112 (build-system perl-build-system)
2113 (native-inputs
2114 `(("perl-module-build" ,perl-module-build)))
2115 (home-page "https://metacpan.org/release/Crypt-PasswdMD5")
2116 (synopsis "Interoperable MD5-based crypt() functions")
2117 (description "@code{Crypt::PasswdMD5} provides various
2118 crypt()-compatible interfaces to the MD5-based crypt() function found
2119 in various *nixes. It is based on the implementation found on FreeBSD
2120 2.2.[56]-RELEASE.")
2121 (license perl-license)))
2122
2123 (define-public perl-crypt-randpasswd
2124 (package
2125 (name "perl-crypt-randpasswd")
2126 (version "0.06")
2127 (source
2128 (origin
2129 (method url-fetch)
2130 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2131 "Crypt-RandPasswd-" version ".tar.gz"))
2132 (sha256
2133 (base32
2134 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
2135 (build-system perl-build-system)
2136 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
2137 (synopsis "Random password generator")
2138 (description "Crypt::RandPasswd provides three functions that can be used
2139 to generate random passwords, constructed from words, letters, or characters.
2140 This code is a Perl implementation of the Automated Password Generator
2141 standard, like the program described in \"A Random Word Generator For
2142 Pronounceable Passwords\". This code is a re-engineering of the program
2143 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
2144 Password Generator\".")
2145 (license (package-license perl))))
2146
2147 (define-public perl-crypt-rijndael
2148 (package
2149 (name "perl-crypt-rijndael")
2150 (version "1.14")
2151 (source
2152 (origin
2153 (method url-fetch)
2154 (uri (string-append
2155 "mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-"
2156 version ".tar.gz"))
2157 (sha256
2158 (base32
2159 "03l5nwq97a8q9na4dpd4m3r7vrwpranx225vw8xm40w7zvgw6lb4"))))
2160 (build-system perl-build-system)
2161 (home-page "https://metacpan.org/release/Crypt-Rijndael")
2162 (synopsis "Crypt::CBC compliant Rijndael encryption module")
2163 (description "This module implements the Rijndael cipher which has
2164 been selected as the Advanced Encryption Standard. The keysize for
2165 Rijndael is 32 bytes. The blocksize is 16 bytes (128 bits). The
2166 supported encryption modes are:
2167
2168 @itemize
2169 @item @code{MODE_CBC}---Cipher Block Chaining
2170 @item @code{MODE_CFB}---Cipher feedback
2171 @item @code{MODE_CTR}---Counter mode
2172 @item @code{MODE_ECB}---Electronic cookbook mode
2173 @item @code{MODE_OFB}---Output feedback
2174 @end itemize")
2175 (license gpl3)))
2176
2177 (define-public perl-crypt-rc4
2178 (package
2179 (name "perl-crypt-rc4")
2180 (version "2.02")
2181 (source
2182 (origin
2183 (method url-fetch)
2184 (uri (string-append
2185 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
2186 version
2187 ".tar.gz"))
2188 (sha256
2189 (base32
2190 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
2191 (build-system perl-build-system)
2192 (home-page "https://metacpan.org/release//Crypt-RC4")
2193 (synopsis "Perl implementation of the RC4 encryption algorithm")
2194 (description "A pure Perl implementation of the RC4 algorithm.")
2195 (license (package-license perl))))
2196
2197 (define-public perl-crypt-unixcrypt_xs
2198 (package
2199 (name "perl-crypt-unixcrypt_xs")
2200 (version "0.11")
2201 (source
2202 (origin
2203 (method url-fetch)
2204 (uri (string-append
2205 "mirror://cpan/authors/id/B/BO/BORISZ/Crypt-UnixCrypt_XS-"
2206 version ".tar.gz"))
2207 (sha256
2208 (base32
2209 "1ajg3x6kwxy4x9p3nw1j36qjxpjvdpi9wkca5gfd86y9q8939sv2"))))
2210 (build-system perl-build-system)
2211 (home-page "https://metacpan.org/release/Crypt-UnixCrypt_XS")
2212 (synopsis "XS interface for a portable traditional crypt function")
2213 (description "@code{Crypt::UnixCrypt_XS} implements the DES-based
2214 Unix @code{crypt} function. For those who need to construct
2215 non-standard variants of @code{crypt}, the various building blocks
2216 used in @code{crypt} are also supplied separately.")
2217 ;; Files in the 'fcrypt' directory are covered by a BSD licence.
2218 (license (list perl-license bsd-3))))
2219
2220 (define-public perl-cwd-guard
2221 (package
2222 (name "perl-cwd-guard")
2223 (version "0.05")
2224 (source (origin
2225 (method url-fetch)
2226 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
2227 "Cwd-Guard-" version ".tar.gz"))
2228 (sha256
2229 (base32
2230 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
2231 (build-system perl-build-system)
2232 (native-inputs
2233 `(("perl-module-build" ,perl-module-build)
2234 ("perl-test-requires" ,perl-test-requires)))
2235 (home-page "https://metacpan.org/release/Cwd-Guard")
2236 (synopsis "Temporarily change working directory")
2237 (description
2238 "@code{Cwd::Guard} changes the current directory using a limited scope.
2239 It returns to the previous working directory when the object is destroyed.")
2240 (license (package-license perl))))
2241
2242 (define-public perl-czplib
2243 (package
2244 (name "perl-czplib")
2245 (version "1.0.5")
2246 (source
2247 (origin
2248 (method url-fetch)
2249 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
2250 version ".tgz"))
2251 (sha256
2252 (base32
2253 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
2254 (modules '((guix build utils)))
2255 (snippet
2256 '(begin
2257 ;; Remove .git directory
2258 (delete-file-recursively ".git")
2259 #t))))
2260 (build-system perl-build-system)
2261 (arguments
2262 `(#:phases
2263 (modify-phases %standard-phases
2264 (delete 'configure)
2265 (delete 'build)
2266 (replace
2267 'install
2268 (lambda* (#:key outputs #:allow-other-keys)
2269 (copy-recursively "."
2270 (string-append (assoc-ref outputs "out")
2271 "/lib/perl5/site_perl/"
2272 ,(package-version perl)))
2273 #t)))))
2274 (home-page "https://sourceforge.net/projects/czplib/")
2275 (synopsis "Library for genomic analysis")
2276 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
2277 functions and data structures for processing and analysing genomic and
2278 bioinformatics data.")
2279 (license gpl3+)))
2280
2281 (define-public perl-data
2282 (package
2283 (name "perl-data")
2284 (version "0.002009")
2285 (source
2286 (origin
2287 (method url-fetch)
2288 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
2289 "Data-Perl-" version ".tar.gz"))
2290 (sha256
2291 (base32
2292 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2293 (build-system perl-build-system)
2294 (native-inputs
2295 `(("perl-test-deep" ,perl-test-deep)
2296 ("perl-test-output" ,perl-test-output)
2297 ("perl-test-fatal" ,perl-test-fatal)))
2298 (inputs
2299 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
2300 ("perl-list-moreutils" ,perl-list-moreutils)
2301 ("perl-module-runtime" ,perl-module-runtime)
2302 ("perl-role-tiny" ,perl-role-tiny)
2303 ("perl-strictures" ,perl-strictures)))
2304 (home-page "https://metacpan.org/release/Data-Perl")
2305 (synopsis "Base classes wrapping fundamental Perl data types")
2306 (description "Collection of classes that wrap fundamental data types that
2307 exist in Perl. These classes and methods as they exist today are an attempt
2308 to mirror functionality provided by Moose's Native Traits. One important
2309 thing to note is all classes currently do no validation on constructor
2310 input.")
2311 (license (package-license perl))))
2312
2313 (define-public perl-data-compare
2314 (package
2315 (name "perl-data-compare")
2316 (version "1.27")
2317 (source
2318 (origin
2319 (method url-fetch)
2320 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
2321 "Data-Compare-" version ".tar.gz"))
2322 (sha256
2323 (base32 "1gg8rqbv3x6a1lrpabv6vnlab53zxmpwz2ygad9fcx4gygqj12l1"))))
2324 (build-system perl-build-system)
2325 (propagated-inputs
2326 `(("perl-clone" ,perl-clone)
2327 ("perl-file-find-rule" ,perl-file-find-rule)))
2328 (home-page "https://metacpan.org/release/Data-Compare")
2329 (synopsis "Compare Perl data structures")
2330 (description "This module compares arbitrary data structures to see if
2331 they are copies of each other.")
2332 (license (package-license perl))))
2333
2334 (define-public perl-data-entropy
2335 (package
2336 (name "perl-data-entropy")
2337 (version "0.007")
2338 (source
2339 (origin
2340 (method url-fetch)
2341 (uri (string-append
2342 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Entropy-"
2343 version ".tar.gz"))
2344 (sha256
2345 (base32
2346 "1r176jjzir2zg5kidx85f7vzi6jsw7ci9vd4kvbr9183lfhw8496"))))
2347 (build-system perl-build-system)
2348 (native-inputs
2349 `(("perl-module-build" ,perl-module-build)
2350 ("perl-test-pod" ,perl-test-pod)
2351 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2352 (propagated-inputs
2353 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)
2354 ("perl-data-float" ,perl-data-float)
2355 ("perl-http-lite" ,perl-http-lite)
2356 ("perl-params-classify" ,perl-params-classify)))
2357 (home-page "https://metacpan.org/release/Data-Entropy")
2358 (synopsis "Entropy (randomness) management")
2359 (description "@code{Data::Entropy} provides modules relating to
2360 the generation and use of entropy. The Data::Entropy::Source class
2361 manages the entropy coming from a particular source. This class acts
2362 as a layer over a raw entropy source, which may be a normal I/O handle
2363 or a special-purpose class. The Data::Entropy::RawSource::* classes
2364 provide fundamental sources of entropy. The sources specially
2365 supported are an OS-supplied entropy collector, downloads from servers
2366 on the Internet, and cryptographic fake entropy. The
2367 Data::Entropy::Algorithms module contains a collection of fundamental
2368 algorithms that use entropy. There are random number generators and
2369 functions to shuffle arrays.")
2370 (license perl-license)))
2371
2372 (define-public perl-data-integer
2373 (package
2374 (name "perl-data-integer")
2375 (version "0.006")
2376 (source
2377 (origin
2378 (method url-fetch)
2379 (uri (string-append
2380 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Integer-"
2381 version ".tar.gz"))
2382 (sha256
2383 (base32
2384 "0m53zxhx9sn49yqh7azlpyy9m65g54v8cd2ha98y77337gg7xdv3"))))
2385 (build-system perl-build-system)
2386 (native-inputs
2387 `(("perl-module-build" ,perl-module-build)
2388 ("perl-test-pod" ,perl-test-pod)
2389 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2390 (home-page "https://metacpan.org/release/Data-Integer")
2391 (synopsis "Details of the native integer data type")
2392 (description "This module is about the native integer numerical
2393 data type. A native integer is one of the types of datum that can
2394 appear in the numeric part of a Perl scalar. This module supplies
2395 constants describing the native integer type. Both signed and
2396 unsigned representations are handled.")
2397 (license perl-license)))
2398
2399 (define-public perl-data-uniqid
2400 (package
2401 (name "perl-data-uniqid")
2402 (version "0.12")
2403 (source
2404 (origin
2405 (method url-fetch)
2406 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
2407 version ".tar.gz"))
2408 (sha256
2409 (base32
2410 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
2411 (build-system perl-build-system)
2412 (home-page "https://metacpan.org/release/Data-Uniqid")
2413 (synopsis "Perl extension for generating unique identifiers")
2414 (description "@code{Data::Uniqid} provides three simple routines for
2415 generating unique ids. These ids are coded with a Base62 system to make them
2416 short and handy (e.g. to use it as part of a URL).")
2417 (license (package-license perl))))
2418
2419 (define-public perl-data-dump
2420 (package
2421 (name "perl-data-dump")
2422 (version "1.23")
2423 (source
2424 (origin
2425 (method url-fetch)
2426 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2427 "Data-Dump-" version ".tar.gz"))
2428 (sha256
2429 (base32
2430 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
2431 (build-system perl-build-system)
2432 (home-page "https://metacpan.org/release/Data-Dump")
2433 (synopsis "Pretty printing of data structures")
2434 (description "This module provide functions that takes a list of values as
2435 their argument and produces a string as its result. The string contains Perl
2436 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
2437 (license (package-license perl))))
2438
2439 (define-public perl-data-dumper
2440 (package
2441 (name "perl-data-dumper")
2442 (version "2.173")
2443 (source
2444 (origin
2445 (method url-fetch)
2446 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
2447 "Data-Dumper-" version ".tar.gz"))
2448 (sha256
2449 (base32
2450 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
2451 (build-system perl-build-system)
2452 (home-page "https://metacpan.org/release/Data-Dumper")
2453 (synopsis "Convert data structures to strings")
2454 (description "Given a list of scalars or reference variables,
2455 @code{Data::Dumper} writes out their contents in Perl syntax. The references
2456 can also be objects. The content of each variable is output in a single Perl
2457 statement. It handles self-referential structures correctly.")
2458 (license perl-license)))
2459
2460 (define-public perl-data-dumper-concise
2461 (package
2462 (name "perl-data-dumper-concise")
2463 (version "2.023")
2464 (source
2465 (origin
2466 (method url-fetch)
2467 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2468 "Data-Dumper-Concise-" version ".tar.gz"))
2469 (sha256
2470 (base32
2471 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
2472 (build-system perl-build-system)
2473 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
2474 (synopsis "Concise data dumper")
2475 (description "Data::Dumper::Concise provides a dumper with Less
2476 indentation and newlines plus sub deparsing.")
2477 (license (package-license perl))))
2478
2479 (define-public perl-data-float
2480 (package
2481 (name "perl-data-float")
2482 (version "0.013")
2483 (source
2484 (origin
2485 (method url-fetch)
2486 (uri (string-append
2487 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Float-"
2488 version ".tar.gz"))
2489 (sha256
2490 (base32
2491 "12ji4yf3nc965rqqgfhr96w7irpm6n1g15nivfxvhc49hlym5cg2"))))
2492 (build-system perl-build-system)
2493 (native-inputs
2494 `(("perl-module-build" ,perl-module-build)
2495 ("perl-test-pod" ,perl-test-pod)
2496 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2497 (home-page "https://metacpan.org/release/Data-Float")
2498 (synopsis "Details of the floating point data type")
2499 (description "@code{Data::Float} is about the native floating
2500 point numerical data type. A floating point number is one of the
2501 types of datum that can appear in the numeric part of a Perl scalar.
2502 This module supplies constants describing the native floating point
2503 type, classification functions and functions to manipulate floating
2504 point values at a low level.")
2505 (license perl-license)))
2506
2507 (define-public perl-data-optlist
2508 (package
2509 (name "perl-data-optlist")
2510 (version "0.110")
2511 (source
2512 (origin
2513 (method url-fetch)
2514 (uri (string-append
2515 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
2516 version ".tar.gz"))
2517 (sha256
2518 (base32
2519 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
2520 (build-system perl-build-system)
2521 (propagated-inputs
2522 `(("perl-sub-install" ,perl-sub-install)
2523 ("perl-params-util" ,perl-params-util)))
2524 (home-page "https://metacpan.org/release/Data-OptList")
2525 (synopsis "Parse and validate simple name/value option pairs")
2526 (description
2527 "Data::OptList provides a simple syntax for name/value option pairs.")
2528 (license (package-license perl))))
2529
2530 (define-public perl-data-page
2531 (package
2532 (name "perl-data-page")
2533 (version "2.03")
2534 (source
2535 (origin
2536 (method url-fetch)
2537 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2538 "Data-Page-" version ".tar.gz"))
2539 (sha256
2540 (base32 "12rxrr2b11qjk0c437cisw2kfqkafw1awcng09cv6yhzglb55yif"))))
2541 (build-system perl-build-system)
2542 (native-inputs
2543 `(("perl-module-build" ,perl-module-build)
2544 ("perl-test-exception" ,perl-test-exception)))
2545 (propagated-inputs
2546 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
2547 (home-page "https://metacpan.org/release/Data-Page")
2548 (synopsis "Help when paging through sets of results")
2549 (description "When searching through large amounts of data, it is often
2550 the case that a result set is returned that is larger than we want to display
2551 on one page. This results in wanting to page through various pages of data.
2552 The maths behind this is unfortunately fiddly, hence this module.")
2553 (license (package-license perl))))
2554
2555 (define-public perl-data-perl
2556 (package
2557 (name "perl-data-perl")
2558 (version "0.002009")
2559 (source
2560 (origin
2561 (method url-fetch)
2562 (uri (string-append
2563 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
2564 version
2565 ".tar.gz"))
2566 (sha256
2567 (base32
2568 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2569 (build-system perl-build-system)
2570 (native-inputs
2571 `(("perl-test-deep" ,perl-test-deep)
2572 ("perl-test-fatal" ,perl-test-fatal)
2573 ("perl-test-output" ,perl-test-output)))
2574 (inputs
2575 `(("perl-class-method-modifiers"
2576 ,perl-class-method-modifiers)
2577 ("perl-module-runtime" ,perl-module-runtime)
2578 ("perl-role-tiny" ,perl-role-tiny)
2579 ("perl-strictures" ,perl-strictures)))
2580 (propagated-inputs
2581 `(("perl-list-moreutils" ,perl-list-moreutils)))
2582 (home-page
2583 "https://metacpan.org/release/Data-Perl")
2584 (synopsis "Base classes wrapping fundamental Perl data types")
2585 (description
2586 "@code{Data::Perl} is a container class for the following classes:
2587 @itemize
2588 @item @code{Data::Perl::Collection::Hash}
2589 @item @code{Data::Perl::Collection::Array}
2590 @item @code{Data::Perl::String}
2591 @item @code{Data::Perl::Number}
2592 @item @code{Data::Perl::Counter}
2593 @item @code{Data::Perl::Bool}
2594 @item @code{Data::Perl::Code}
2595 @end itemize")
2596 (license perl-license)))
2597
2598 (define-public perl-data-printer
2599 (package
2600 (name "perl-data-printer")
2601 (version "0.40")
2602 (source
2603 (origin
2604 (method url-fetch)
2605 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
2606 version ".tar.gz"))
2607 (sha256
2608 (base32
2609 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
2610 (build-system perl-build-system)
2611 (propagated-inputs
2612 `(("perl-clone-pp" ,perl-clone-pp)
2613 ("perl-file-homedir" ,perl-file-homedir)
2614 ("perl-package-stash" ,perl-package-stash)
2615 ("perl-sort-naturally" ,perl-sort-naturally)))
2616 (home-page "https://metacpan.org/release/Data-Printer")
2617 (synopsis "Colored pretty-print of Perl data structures and objects")
2618 (description "Display Perl variables and objects on screen, properly
2619 formatted (to be inspected by a human).")
2620 (license (package-license perl))))
2621
2622 (define-public perl-data-record
2623 (package
2624 (name "perl-data-record")
2625 (version "0.02")
2626 (source
2627 (origin
2628 (method url-fetch)
2629 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
2630 "Data-Record-" version ".tar.gz"))
2631 (sha256
2632 (base32
2633 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
2634 (build-system perl-build-system)
2635 (native-inputs
2636 `(("perl-test-exception" ,perl-test-exception)
2637 ("perl-module-build" ,perl-module-build)))
2638 (propagated-inputs
2639 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
2640 (home-page "https://metacpan.org/release/Data-Record")
2641 (synopsis "Conditionally split data into records")
2642 (description "This Perl module allows you to split data into records by
2643 not only specifying what you wish to split the data on, but also by specifying
2644 an \"unless\" regular expression. If the text in question matches the
2645 \"unless\" regex, it will not be split there. This allows us to do things
2646 like split on newlines unless newlines are embedded in quotes.")
2647 (license (package-license perl))))
2648
2649 (define-public perl-data-section
2650 (package
2651 (name "perl-data-section")
2652 (version "0.200007")
2653 (source
2654 (origin
2655 (method url-fetch)
2656 (uri (string-append
2657 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
2658 version
2659 ".tar.gz"))
2660 (sha256
2661 (base32
2662 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
2663 (build-system perl-build-system)
2664 (native-inputs
2665 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
2666 (propagated-inputs
2667 `(("perl-mro-compat" ,perl-mro-compat)
2668 ("perl-sub-exporter" ,perl-sub-exporter)))
2669 (home-page "https://metacpan.org/release/Data-Section")
2670 (synopsis "Read multiple hunks of data out of your DATA section")
2671 (description "This package provides a Perl library to read multiple hunks
2672 of data out of your DATA section.")
2673 (license (package-license perl))))
2674
2675 (define-public perl-data-stag
2676 (package
2677 (name "perl-data-stag")
2678 (version "0.14")
2679 (source
2680 (origin
2681 (method url-fetch)
2682 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
2683 "Data-Stag-" version ".tar.gz"))
2684 (sha256
2685 (base32
2686 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
2687 (build-system perl-build-system)
2688 (propagated-inputs
2689 `(("perl-io-string" ,perl-io-string)))
2690 (home-page "https://metacpan.org/release/Data-Stag")
2691 (synopsis "Structured tags datastructures")
2692 (description
2693 "This module is for manipulating data as hierarchical tag/value
2694 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2695 be represented as nested arrays, which have the advantage of being native to
2696 Perl.")
2697 (license (package-license perl))))
2698
2699 (define-public perl-data-stream-bulk
2700 (package
2701 (name "perl-data-stream-bulk")
2702 (version "0.11")
2703 (source
2704 (origin
2705 (method url-fetch)
2706 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2707 "Data-Stream-Bulk-" version ".tar.gz"))
2708 (sha256
2709 (base32
2710 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2711 (build-system perl-build-system)
2712 (native-inputs
2713 `(("perl-test-requires" ,perl-test-requires)))
2714 (propagated-inputs
2715 `(("perl-moose" ,perl-moose)
2716 ("perl-namespace-clean" ,perl-namespace-clean)
2717 ("perl-path-class" ,perl-path-class)
2718 ("perl-sub-exporter" ,perl-sub-exporter)))
2719 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2720 (synopsis "N at a time iteration API")
2721 (description "This module tries to find middle ground between one at a
2722 time and all at once processing of data sets. The purpose of this module is
2723 to avoid the overhead of implementing an iterative api when this isn't
2724 necessary, without breaking forward compatibility in case that becomes
2725 necessary later on.")
2726 (license (package-license perl))))
2727
2728 (define-public perl-data-tumbler
2729 (package
2730 (name "perl-data-tumbler")
2731 (version "0.010")
2732 (source
2733 (origin
2734 (method url-fetch)
2735 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2736 "Data-Tumbler-" version ".tar.gz"))
2737 (sha256
2738 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2739 (build-system perl-build-system)
2740 (native-inputs
2741 `(("perl-test-most" ,perl-test-most)))
2742 (propagated-inputs
2743 `(("perl-file-homedir" ,perl-file-homedir)))
2744 (home-page "https://metacpan.org/release/Data-Tumbler")
2745 (synopsis "Dynamic generation of nested combinations of variants")
2746 (description "Data::Tumbler - Dynamic generation of nested combinations of
2747 variants.")
2748 (license (package-license perl))))
2749
2750 (define-public perl-data-visitor
2751 (package
2752 (name "perl-data-visitor")
2753 (version "0.30")
2754 (source
2755 (origin
2756 (method url-fetch)
2757 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2758 "Data-Visitor-" version ".tar.gz"))
2759 (sha256
2760 (base32
2761 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2762 (build-system perl-build-system)
2763 (native-inputs
2764 `(("perl-test-requires" ,perl-test-requires)))
2765 (propagated-inputs
2766 `(("perl-class-load" ,perl-class-load)
2767 ("perl-moose" ,perl-moose)
2768 ("perl-namespace-clean" ,perl-namespace-clean)
2769 ("perl-task-weaken" ,perl-task-weaken)
2770 ("perl-tie-toobject" ,perl-tie-toobject)))
2771 (home-page "https://metacpan.org/release/Data-Visitor")
2772 (synopsis "Visitor style traversal of Perl data structures")
2773 (description "This module is a simple visitor implementation for Perl
2774 values. It has a main dispatcher method, visit, which takes a single perl
2775 value and then calls the methods appropriate for that value. It can
2776 recursively map (cloning as necessary) or just traverse most structures, with
2777 support for per-object behavior, circular structures, visiting tied
2778 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2779 (license (package-license perl))))
2780
2781 (define-public perl-date-calc
2782 (package
2783 (name "perl-date-calc")
2784 (version "6.4")
2785 (source
2786 (origin
2787 (method url-fetch)
2788 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2789 "Date-Calc-" version ".tar.gz"))
2790 (sha256
2791 (base32
2792 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2793 (build-system perl-build-system)
2794 (propagated-inputs
2795 `(("perl-bit-vector" ,perl-bit-vector)
2796 ("perl-carp-clan" ,perl-carp-clan)))
2797 (home-page "https://metacpan.org/release/Date-Calc")
2798 (synopsis "Gregorian calendar date calculations")
2799 (description "This package consists of a Perl module for date calculations
2800 based on the Gregorian calendar, thereby complying with all relevant norms and
2801 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2802 applicable).")
2803 (license (package-license perl))))
2804
2805 (define-public perl-date-calc-xs
2806 (package
2807 (name "perl-date-calc-xs")
2808 (version "6.4")
2809 (source
2810 (origin
2811 (method url-fetch)
2812 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2813 "Date-Calc-XS-" version ".tar.gz"))
2814 (sha256
2815 (base32
2816 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2817 (build-system perl-build-system)
2818 (propagated-inputs
2819 `(("perl-bit-vector" ,perl-bit-vector)
2820 ("perl-carp-clan" ,perl-carp-clan)
2821 ("perl-date-calc" ,perl-date-calc)))
2822 (home-page "https://metacpan.org/release/Date-Calc-XS")
2823 (synopsis "XS wrapper for Date::Calc")
2824 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2825 Date::Calc.")
2826 (license (list (package-license perl) lgpl2.0+))))
2827
2828 (define-public perl-date-manip
2829 (package
2830 (name "perl-date-manip")
2831 (version "6.78")
2832 (source
2833 (origin
2834 (method url-fetch)
2835 (uri (string-append "mirror://cpan/authors/id/S/SB/SBECK/"
2836 "Date-Manip-" version ".tar.gz"))
2837 (sha256
2838 (base32 "1faxj6gafrqir9hvy9r8q57s93n57b412s04qycrks7r0520hdnb"))))
2839 (build-system perl-build-system)
2840 (arguments
2841 ;; Tests would require tzdata for timezone information, but tzdata is in
2842 ;; (gnu packages base) which would create a circular dependency. TODO:
2843 ;; Maybe put this package elsewhere so we can turn on tests.
2844 '(#:tests? #f))
2845 (home-page "https://metacpan.org/release/Date-Manip")
2846 (synopsis "Date manipulation routines")
2847 (description "Date::Manip is a series of modules for common date/time
2848 operations, such as comparing two times, determining a date a given amount of
2849 time from another, or parsing international times.")
2850 (license (package-license perl))))
2851
2852 (define-public perl-date-simple
2853 (package
2854 (name "perl-date-simple")
2855 (version "3.03")
2856 (source
2857 (origin
2858 (method url-fetch)
2859 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2860 "Date-Simple-" version ".tar.gz"))
2861 (sha256
2862 (base32
2863 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2864 (build-system perl-build-system)
2865 (home-page "https://metacpan.org/release/Date-Simple")
2866 (synopsis "Simple date handling")
2867 (description "Dates are complex enough without times and timezones. This
2868 module may be used to create simple date objects. It handles validation,
2869 interval arithmetic, and day-of-week calculation. It does not deal with
2870 hours, minutes, seconds, and time zones.")
2871 ;; Can be used with either license.
2872 (license (list (package-license perl) gpl2+))))
2873
2874 (define-public perl-datetime
2875 (package
2876 (name "perl-datetime")
2877 (version "1.52")
2878 (source
2879 (origin
2880 (method url-fetch)
2881 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2882 "DateTime-" version ".tar.gz"))
2883 (sha256
2884 (base32 "1z1xpifh2kpyw7rlc8ivg9rl0qmabjq979gjp0s9agdjf9hqp0k7"))))
2885 (build-system perl-build-system)
2886 (native-inputs
2887 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2888 ("perl-module-build" ,perl-module-build)
2889 ("perl-test-fatal" ,perl-test-fatal)
2890 ("perl-test-warnings" ,perl-test-warnings)))
2891 (propagated-inputs
2892 `(("perl-datetime-locale" ,perl-datetime-locale)
2893 ("perl-datetime-timezone" ,perl-datetime-timezone)
2894 ("perl-file-sharedir" ,perl-file-sharedir)
2895 ("perl-params-validate" ,perl-params-validate)
2896 ("perl-try-tiny" ,perl-try-tiny)))
2897 (home-page "https://metacpan.org/release/DateTime")
2898 (synopsis "Date and time object for Perl")
2899 (description "DateTime is a class for the representation of date/time
2900 combinations. It represents the Gregorian calendar, extended backwards in
2901 time before its creation (in 1582).")
2902 (license artistic2.0)))
2903
2904 (define-public perl-datetime-calendar-julian
2905 (package
2906 (name "perl-datetime-calendar-julian")
2907 (version "0.102")
2908 (source
2909 (origin
2910 (method url-fetch)
2911 (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/"
2912 "DateTime-Calendar-Julian-" version ".tar.gz"))
2913 (sha256
2914 (base32 "0j95dhma66spjyb04zi6rwy7l33hibnrx02mn0znd9m89aiq52s6"))))
2915 (build-system perl-build-system)
2916 ;; Only needed for tests
2917 (native-inputs
2918 `(("perl-datetime" ,perl-datetime)))
2919 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2920 (synopsis "Dates in the Julian calendar")
2921 (description "This package is a companion module to @code{DateTime.pm}.
2922 It implements the Julian calendar. It supports everything that
2923 @code{DateTime.pm} supports and more: about one day per century more, to be
2924 precise.")
2925 (license (package-license perl))))
2926
2927 (define-public perl-datetime-set
2928 (package
2929 (name "perl-datetime-set")
2930 (version "0.3900")
2931 (source
2932 (origin
2933 (method url-fetch)
2934 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2935 "DateTime-Set-" version ".tar.gz"))
2936 (sha256
2937 (base32
2938 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2939 (build-system perl-build-system)
2940 (native-inputs
2941 `(("perl-module-build" ,perl-module-build)))
2942 (propagated-inputs
2943 `(("perl-datetime" ,perl-datetime)
2944 ("perl-params-validate" ,perl-params-validate)
2945 ("perl-set-infinite" ,perl-set-infinite)))
2946 (home-page "https://metacpan.org/release/DateTime-Set")
2947 (synopsis "DateTime set objects")
2948 (description "The DateTime::Set module provides a date/time sets
2949 implementation. It allows, for example, the generation of groups of dates,
2950 like \"every wednesday\", and then find all the dates matching that pattern,
2951 within a time range.")
2952 (license (package-license perl))))
2953
2954 (define-public perl-datetime-event-ical
2955 (package
2956 (name "perl-datetime-event-ical")
2957 (version "0.13")
2958 (source
2959 (origin
2960 (method url-fetch)
2961 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2962 "DateTime-Event-ICal-" version ".tar.gz"))
2963 (sha256
2964 (base32
2965 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2966 (build-system perl-build-system)
2967 (propagated-inputs
2968 `(("perl-datetime" ,perl-datetime)
2969 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2970 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2971 (synopsis "DateTime rfc2445 recurrences")
2972 (description "This module provides convenience methods that let you easily
2973 create DateTime::Set objects for RFC 2445 style recurrences.")
2974 (license (package-license perl))))
2975
2976 (define-public perl-datetime-event-recurrence
2977 (package
2978 (name "perl-datetime-event-recurrence")
2979 (version "0.19")
2980 (source
2981 (origin
2982 (method url-fetch)
2983 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2984 "DateTime-Event-Recurrence-" version ".tar.gz"))
2985 (sha256
2986 (base32
2987 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
2988 (build-system perl-build-system)
2989 (propagated-inputs
2990 `(("perl-datetime" ,perl-datetime)
2991 ("perl-datetime-set" ,perl-datetime-set)))
2992 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
2993 (synopsis "DateTime::Set extension for basic recurrences")
2994 (description "This module provides convenience methods that let you easily
2995 create DateTime::Set objects for various recurrences, such as \"once a month\"
2996 or \"every day\". You can also create more complicated recurrences, such as
2997 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
2998 (license (package-license perl))))
2999
3000 (define-public perl-datetime-format-builder
3001 (package
3002 (name "perl-datetime-format-builder")
3003 (version "0.82")
3004 (source
3005 (origin
3006 (method url-fetch)
3007 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3008 "DateTime-Format-Builder-" version ".tar.gz"))
3009 (sha256
3010 (base32
3011 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
3012 (build-system perl-build-system)
3013 (propagated-inputs
3014 `(("perl-class-factory-util" ,perl-class-factory-util)
3015 ("perl-datetime" ,perl-datetime)
3016 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
3017 ("perl-params-validate" ,perl-params-validate)))
3018 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
3019 (synopsis "Create DateTime parser classes and objects")
3020 (description "DateTime::Format::Builder creates DateTime parsers. Many
3021 string formats of dates and times are simple and just require a basic regular
3022 expression to extract the relevant information. Builder provides a simple way
3023 to do this without writing reams of structural code.")
3024 (license artistic2.0)))
3025
3026 (define-public perl-datetime-format-flexible
3027 (package
3028 (name "perl-datetime-format-flexible")
3029 (version "0.32")
3030 (source
3031 (origin
3032 (method url-fetch)
3033 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
3034 "DateTime-Format-Flexible-" version ".tar.gz"))
3035 (sha256
3036 (base32 "1vnq3a8bwhidcv3z9cvcmfiq2qa84hikr993ffr19fw7nbzbk9sh"))))
3037 (build-system perl-build-system)
3038 (native-inputs
3039 `(("perl-test-exception" ,perl-test-exception)
3040 ("perl-test-nowarnings" ,perl-test-nowarnings)
3041 ("perl-test-mocktime" ,perl-test-mocktime)))
3042 (propagated-inputs
3043 `(("perl-datetime" ,perl-datetime)
3044 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3045 ("perl-datetime-timezone" ,perl-datetime-timezone)
3046 ("perl-list-moreutils" ,perl-list-moreutils)
3047 ("perl-module-pluggable" ,perl-module-pluggable)))
3048 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
3049 (synopsis "Parse date and time strings")
3050 (description "DateTime::Format::Flexible attempts to take any string you
3051 give it and parse it into a DateTime object.")
3052 (license (package-license perl))))
3053
3054 (define-public perl-datetime-format-ical
3055 (package
3056 (name "perl-datetime-format-ical")
3057 (version "0.09")
3058 (source
3059 (origin
3060 (method url-fetch)
3061 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3062 "DateTime-Format-ICal-" version ".tar.gz"))
3063 (sha256
3064 (base32
3065 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
3066 (build-system perl-build-system)
3067 (native-inputs
3068 `(("perl-module-build" ,perl-module-build)))
3069 (propagated-inputs
3070 `(("perl-datetime" ,perl-datetime)
3071 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
3072 ("perl-datetime-set" ,perl-datetime-set)
3073 ("perl-datetime-timezone" ,perl-datetime-timezone)
3074 ("perl-params-validate" ,perl-params-validate)))
3075 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
3076 (synopsis "Parse and format iCal datetime and duration strings")
3077 (description "This module understands the ICal date/time and duration
3078 formats, as defined in RFC 2445. It can be used to parse these formats in
3079 order to create the appropriate objects.")
3080 (license (package-license perl))))
3081
3082 (define-public perl-datetime-format-iso8601
3083 (package
3084 (name "perl-datetime-format-iso8601")
3085 (version "0.08")
3086 (source
3087 (origin
3088 (method url-fetch)
3089 (uri (string-append
3090 "mirror://cpan/authors/id/J/JH/JHOBLITT/DateTime-Format-ISO8601-"
3091 version ".tar.gz"))
3092 (sha256
3093 (base32
3094 "1syccqd5jlwms8v78ksnf68xijzl97jky5vbwhnyhxi5gvgfx8xk"))))
3095 (build-system perl-build-system)
3096 (native-inputs
3097 `(("perl-module-build" ,perl-module-build)))
3098 (propagated-inputs
3099 `(("perl-datetime" ,perl-datetime)
3100 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3101 ("perl-file-find-rule" ,perl-file-find-rule)
3102 ("perl-test-distribution" ,perl-test-distribution)
3103 ("perl-test-pod" ,perl-test-pod)))
3104 (home-page "https://metacpan.org/release/DateTime-Format-ISO8601")
3105 (synopsis "Parse ISO8601 date and time formats")
3106 (description "@code{DateTime::Format::ISO8601} is a DateTime
3107 extension that parses almost all ISO8601 date and time formats.")
3108 (license perl-license)))
3109
3110 (define-public perl-datetime-format-natural
3111 (package
3112 (name "perl-datetime-format-natural")
3113 (version "1.06")
3114 (source
3115 (origin
3116 (method url-fetch)
3117 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
3118 "DateTime-Format-Natural-" version ".tar.gz"))
3119 (sha256
3120 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
3121 (build-system perl-build-system)
3122 (native-inputs
3123 `(("perl-module-build" ,perl-module-build)
3124 ("perl-module-util" ,perl-module-util)
3125 ("perl-test-mocktime" ,perl-test-mocktime)))
3126 (propagated-inputs
3127 `(("perl-boolean" ,perl-boolean)
3128 ("perl-clone" ,perl-clone)
3129 ("perl-date-calc" ,perl-date-calc)
3130 ("perl-date-calc-xs" ,perl-date-calc-xs)
3131 ("perl-datetime" ,perl-datetime)
3132 ("perl-datetime-timezone" ,perl-datetime-timezone)
3133 ("perl-list-moreutils" ,perl-list-moreutils)
3134 ("perl-params-validate" ,perl-params-validate)))
3135 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
3136 (synopsis "Machine-readable date/time with natural parsing")
3137 (description "DateTime::Format::Natural takes a string with a human
3138 readable date/time and creates a machine readable one by applying natural
3139 parsing logic.")
3140 (license (package-license perl))))
3141
3142 (define-public perl-datetime-format-strptime
3143 (package
3144 (name "perl-datetime-format-strptime")
3145 (version "1.77")
3146 (source
3147 (origin
3148 (method url-fetch)
3149 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3150 "DateTime-Format-Strptime-" version ".tar.gz"))
3151 (sha256
3152 (base32 "0jiy2yc9h9932ykb8x2l1j3ff8ms3p4426m947r5clygis1kr91g"))))
3153 (build-system perl-build-system)
3154 (propagated-inputs
3155 `(("perl-datetime" ,perl-datetime)
3156 ("perl-datetime-locale" ,perl-datetime-locale)
3157 ("perl-datetime-timezone" ,perl-datetime-timezone)
3158 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3159 ("perl-params-validate" ,perl-params-validate)
3160 ("perl-sub-name" ,perl-sub-name)
3161 ("perl-test-warnings" ,perl-test-warnings)))
3162 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
3163 (synopsis "Parse and format strp and strf time patterns")
3164 (description "This module implements most of `strptime(3)`, the POSIX
3165 function that is the reverse of `strftime(3)`, for `DateTime`. While
3166 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
3167 takes a string and a pattern and returns the `DateTime` object associated.")
3168 (license artistic2.0)))
3169
3170 (define-public perl-datetime-locale
3171 (package
3172 (name "perl-datetime-locale")
3173 (version "1.23")
3174 (source
3175 (origin
3176 (method url-fetch)
3177 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3178 "DateTime-Locale-" version ".tar.gz"))
3179 (sha256
3180 (base32
3181 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
3182 (build-system perl-build-system)
3183 (native-inputs
3184 `(("perl-file-sharedir" ,perl-file-sharedir)
3185 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
3186 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
3187 ("perl-test-warnings" ,perl-test-warnings)
3188 ("perl-test-requires" ,perl-test-requires)
3189 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3190 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
3191 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
3192 ("perl-module-build" ,perl-module-build)))
3193 (propagated-inputs
3194 `(("perl-list-moreutils" ,perl-list-moreutils)
3195 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
3196 (home-page "https://metacpan.org/release/DateTime-Locale")
3197 (synopsis "Localization support for DateTime.pm")
3198 (description "The DateTime::Locale modules provide localization data for
3199 the DateTime.pm class.")
3200 (license (package-license perl))))
3201
3202 (define-public perl-datetime-timezone
3203 (package
3204 (name "perl-datetime-timezone")
3205 (version "2.23")
3206 (source
3207 (origin
3208 (method url-fetch)
3209 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3210 "DateTime-TimeZone-" version ".tar.gz"))
3211 (sha256
3212 (base32
3213 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
3214 (build-system perl-build-system)
3215 (arguments
3216 '(#:phases
3217 (modify-phases %standard-phases
3218 (add-after 'unpack 'patch-tzdata
3219 (lambda* (#:key inputs #:allow-other-keys)
3220 (substitute* "lib/DateTime/TimeZone/Local/Unix.pm"
3221 (("our \\$ZoneinfoDir = '\\/usr\\/share\\/zoneinfo';")
3222 (string-append "our $ZoneinfoDir = '"
3223 (assoc-ref inputs "tzdata") "/share/zoneinfo"
3224 "';")))
3225 #t)))))
3226 (native-inputs
3227 `(("perl-test-fatal" ,perl-test-fatal)
3228 ("perl-test-requires" ,perl-test-requires)))
3229 (inputs
3230 `(("tzdata" ,tzdata)))
3231 (propagated-inputs
3232 `(("perl-class-singleton" ,perl-class-singleton)
3233 ("perl-list-allutils" ,perl-list-allutils)
3234 ("perl-module-runtime" ,perl-module-runtime)
3235 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3236 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
3237 ("perl-try-tiny" ,perl-try-tiny)))
3238 (home-page "https://metacpan.org/release/DateTime-TimeZone")
3239 (synopsis "Time zone object for Perl")
3240 (description "This class is the base class for all time zone objects. A
3241 time zone is represented internally as a set of observances, each of which
3242 describes the offset from GMT for a given time period. Note that without the
3243 DateTime module, this module does not do much. It's primary interface is
3244 through a DateTime object, and most users will not need to directly use
3245 DateTime::TimeZone methods.")
3246 (license (package-license perl))))
3247
3248 (define-public perl-datetimex-easy
3249 (package
3250 (name "perl-datetimex-easy")
3251 (version "0.089")
3252 (source
3253 (origin
3254 (method url-fetch)
3255 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
3256 "DateTimeX-Easy-" version ".tar.gz"))
3257 (sha256
3258 (base32
3259 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
3260 (build-system perl-build-system)
3261 (native-inputs
3262 `(("perl-test-most" ,perl-test-most)))
3263 (propagated-inputs
3264 `(("perl-datetime" ,perl-datetime)
3265 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
3266 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
3267 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
3268 ("perl-timedate" ,perl-timedate)))
3269 (home-page "https://metacpan.org/release/DateTimeX-Easy")
3270 (synopsis "Parse date/time strings")
3271 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
3272 to create DateTime objects, with some custom tweaks to smooth out the rough
3273 edges (mainly concerning timezone detection and selection).")
3274 (license (package-license perl))))
3275
3276 (define-public perl-datetime-format-mail
3277 (package
3278 (name "perl-datetime-format-mail")
3279 (version "0.403")
3280 (source (origin
3281 (method url-fetch)
3282 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
3283 "DateTime-Format-Mail-" version ".tar.gz"))
3284 (sha256
3285 (base32
3286 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
3287 (build-system perl-build-system)
3288 (inputs
3289 `(("perl-datetime" ,perl-datetime)
3290 ("perl-params-validate" ,perl-params-validate)))
3291 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
3292 (synopsis "Convert between DateTime and RFC2822/822 formats")
3293 (description "RFCs 2822 and 822 specify date formats to be used by email.
3294 This module parses and emits such dates.")
3295 (license (package-license perl))))
3296
3297 (define-public perl-datetime-format-w3cdtf
3298 (package
3299 (name "perl-datetime-format-w3cdtf")
3300 (version "0.07")
3301 (source (origin
3302 (method url-fetch)
3303 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
3304 "DateTime-Format-W3CDTF-" version ".tar.gz"))
3305 (sha256
3306 (base32
3307 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
3308 (build-system perl-build-system)
3309 (inputs
3310 `(("perl-datetime" ,perl-datetime)))
3311 (native-inputs
3312 `(("perl-test-pod" ,perl-test-pod)
3313 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3314 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
3315 (synopsis "Parse and format W3CDTF datetime strings")
3316 (description
3317 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
3318 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
3319 format of RSS 1.0. It can be used to parse these formats in order to create
3320 the appropriate objects.")
3321 (license (package-license perl))))
3322
3323 (define-public perl-devel-callchecker
3324 (package
3325 (name "perl-devel-callchecker")
3326 (version "0.008")
3327 (source
3328 (origin
3329 (method url-fetch)
3330 (uri (string-append
3331 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Devel-CallChecker-"
3332 version ".tar.gz"))
3333 (sha256
3334 (base32
3335 "1p0ij2k2i81zhl7064h9ghld1w5xy2zsbghkpdzm2hjryl5lwn2x"))))
3336 (build-system perl-build-system)
3337 (native-inputs
3338 `(("perl-module-build" ,perl-module-build)
3339 ("perl-test-pod" ,perl-test-pod)
3340 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3341 (propagated-inputs
3342 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
3343 ("perl-dynaloader-functions" ,perl-dynaloader-functions)))
3344 (home-page "https://metacpan.org/release/Devel-CallChecker")
3345 (synopsis "Custom op checking attached to subroutines")
3346 (description "This module makes some new features of the Perl
3347 5.14.0 C API available to XS modules running on older versions of
3348 Perl. The features are centred around the function
3349 @code{cv_set_call_checker}, which allows XS code to attach a magical
3350 annotation to a Perl subroutine, resulting in resolvable calls to that
3351 subroutine being mutated at compile time by arbitrary C code. This
3352 module makes @code{cv_set_call_checker} and several supporting
3353 functions available.")
3354 (license perl-license)))
3355
3356 (define-public perl-devel-caller
3357 (package
3358 (name "perl-devel-caller")
3359 (version "2.06")
3360 (source
3361 (origin
3362 (method url-fetch)
3363 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3364 "Devel-Caller-" version ".tar.gz"))
3365 (sha256
3366 (base32
3367 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
3368 (build-system perl-build-system)
3369 (propagated-inputs
3370 `(("perl-padwalker" ,perl-padwalker)))
3371 (home-page "https://metacpan.org/release/Devel-Caller")
3372 (synopsis "Meatier version of caller")
3373 (description "Devel::Caller provides meatier version of caller.")
3374 (license (package-license perl))))
3375
3376 (define-public perl-devel-checkbin
3377 (package
3378 (name "perl-devel-checkbin")
3379 (version "0.04")
3380 (source
3381 (origin
3382 (method url-fetch)
3383 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
3384 "Devel-CheckBin-" version ".tar.gz"))
3385 (sha256
3386 (base32
3387 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
3388 (build-system perl-build-system)
3389 (native-inputs `(("perl-module-build" ,perl-module-build)))
3390 (home-page "https://metacpan.org/release/Devel-CheckBin")
3391 (synopsis "Check that a command is available")
3392 (description "Devel::CheckBin is a perl module that checks whether a
3393 particular command is available.")
3394 (license (package-license perl))))
3395
3396 (define-public perl-devel-checklib
3397 (package
3398 (name "perl-devel-checklib")
3399 (version "1.14")
3400 (source
3401 (origin
3402 (method url-fetch)
3403 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
3404 version ".tar.gz"))
3405 (sha256
3406 (base32 "15621qh5gaan1sgmk9y9svl70nm8viw17x5h1kf0zknkk8lmw77j"))))
3407 (build-system perl-build-system)
3408 (native-inputs
3409 `(("perl-capture-tiny" ,perl-capture-tiny)
3410 ("perl-mock-config" ,perl-mock-config)))
3411 (home-page "https://metacpan.org/release/Devel-CheckLib")
3412 (synopsis "Check that a library is available")
3413 (description
3414 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
3415 C library and its headers are available. You can also check for the presence of
3416 particular functions in a library, or even that those functions return
3417 particular results.")
3418 (license perl-license)))
3419
3420 (define-public perl-devel-checkcompiler
3421 (package
3422 (name "perl-devel-checkcompiler")
3423 (version "0.07")
3424 (source (origin
3425 (method url-fetch)
3426 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
3427 "Devel-CheckCompiler-" version ".tar.gz"))
3428 (sha256
3429 (base32
3430 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
3431 (build-system perl-build-system)
3432 (native-inputs
3433 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
3434 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
3435 (synopsis "Check compiler availability")
3436 (description "@code{Devel::CheckCompiler} is a tiny module to check
3437 whether a compiler is available. It can test for a C99 compiler, or
3438 you can tell it to compile a C source file with optional linker flags.")
3439 (license (package-license perl))))
3440
3441 (define-public perl-devel-cycle
3442 (package
3443 (name "perl-devel-cycle")
3444 (version "1.12")
3445 (source
3446 (origin
3447 (method url-fetch)
3448 (uri (string-append
3449 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
3450 version
3451 ".tar.gz"))
3452 (sha256
3453 (base32
3454 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
3455 (build-system perl-build-system)
3456 (home-page
3457 "https://metacpan.org/release/Devel-Cycle")
3458 (synopsis "Find memory cycles in objects")
3459 (description
3460 "@code{Devel::Cycle} This is a tool for finding circular references in
3461 objects and other types of references. Because of Perl's reference-count
3462 based memory management, circular references will cause memory leaks.")
3463 (license perl-license)))
3464
3465 (define-public perl-devel-globaldestruction
3466 (package
3467 (name "perl-devel-globaldestruction")
3468 (version "0.14")
3469 (source
3470 (origin
3471 (method url-fetch)
3472 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3473 "Devel-GlobalDestruction-" version ".tar.gz"))
3474 (sha256
3475 (base32
3476 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
3477 (build-system perl-build-system)
3478 (propagated-inputs
3479 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
3480 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
3481 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
3482 (description "Devel::GlobalDestruction provides a function returning the
3483 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
3484 (license (package-license perl))))
3485
3486 (define-public perl-devel-hide
3487 (package
3488 (name "perl-devel-hide")
3489 (version "0.0010")
3490 (source
3491 (origin
3492 (method url-fetch)
3493 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
3494 version ".tar.gz"))
3495 (sha256
3496 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
3497 (build-system perl-build-system)
3498 (propagated-inputs
3499 `(("perl-test-pod" ,perl-test-pod)
3500 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3501 (home-page "https://metacpan.org/release/Devel-Hide")
3502 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
3503 (description "Given a list of Perl modules/filenames, this module makes
3504 @code{require} and @code{use} statements fail (no matter whether the specified
3505 files/modules are installed or not).")
3506 (license (package-license perl))))
3507
3508 (define-public perl-devel-leak
3509 (package
3510 (name "perl-devel-leak")
3511 (version "0.03")
3512 (source
3513 (origin
3514 (method url-fetch)
3515 (uri (string-append "mirror://cpan/authors/id/N/NI/NI-S/"
3516 "Devel-Leak-" version ".tar.gz"))
3517 (sha256
3518 (base32
3519 "0lkj2xwc3lhxv7scl43r8kfmls4am0b98sqf5vmf7d72257w6hkg"))))
3520 (build-system perl-build-system)
3521 (home-page "https://metacpan.org/release/Devel-Leak")
3522 (synopsis "Utility for looking for perl objects that are not reclaimed")
3523 (description
3524 "This module provides a basic way to discover if a piece of perl code is
3525 allocating perl data and not releasing them again.")
3526 (license perl-license)))
3527
3528 (define-public perl-devel-lexalias
3529 (package
3530 (name "perl-devel-lexalias")
3531 (version "0.05")
3532 (source
3533 (origin
3534 (method url-fetch)
3535 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3536 "Devel-LexAlias-" version ".tar.gz"))
3537 (sha256
3538 (base32
3539 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
3540 (build-system perl-build-system)
3541 (propagated-inputs
3542 `(("perl-devel-caller" ,perl-devel-caller)))
3543 (home-page "https://metacpan.org/release/Devel-LexAlias")
3544 (synopsis "Alias lexical variables")
3545 (description "Devel::LexAlias provides the ability to alias a lexical
3546 variable in a subroutines scope to one of your choosing.")
3547 (license (package-license perl))))
3548
3549 (define-public perl-devel-overloadinfo
3550 (package
3551 (name "perl-devel-overloadinfo")
3552 (version "0.005")
3553 (source
3554 (origin
3555 (method url-fetch)
3556 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
3557 "Devel-OverloadInfo-" version ".tar.gz"))
3558 (sha256
3559 (base32
3560 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
3561 (build-system perl-build-system)
3562 (native-inputs
3563 `(("perl-test-fatal" ,perl-test-fatal)))
3564 (propagated-inputs
3565 `(("perl-package-stash" ,perl-package-stash)
3566 ("perl-sub-identify" ,perl-sub-identify)
3567 ("perl-mro-compat" ,perl-mro-compat)))
3568 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
3569 (synopsis "Introspect overloaded operators")
3570 (description "Devel::OverloadInfo returns information about overloaded
3571 operators for a given class (or object), including where in the inheritance
3572 hierarchy the overloads are declared and where the code implementing it is.")
3573 (license (package-license perl))))
3574
3575 (define-public perl-devel-partialdump
3576 (package
3577 (name "perl-devel-partialdump")
3578 (version "0.18")
3579 (source
3580 (origin
3581 (method url-fetch)
3582 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3583 "Devel-PartialDump-" version ".tar.gz"))
3584 (sha256
3585 (base32
3586 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
3587 (build-system perl-build-system)
3588 (native-inputs
3589 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3590 ("perl-test-warn" ,perl-test-warn)
3591 ("perl-test-simple" ,perl-test-simple)))
3592 (propagated-inputs
3593 `(("perl-class-tiny" ,perl-class-tiny)
3594 ("perl-sub-exporter" ,perl-sub-exporter)
3595 ("perl-namespace-clean" ,perl-namespace-clean)))
3596 (home-page "https://metacpan.org/release/Devel-PartialDump")
3597 (synopsis "Partial dumping of data structures")
3598 (description "This module is a data dumper optimized for logging of
3599 arbitrary parameters.")
3600 (license (package-license perl))))
3601
3602 (define-public perl-devel-stacktrace
3603 (package
3604 (name "perl-devel-stacktrace")
3605 (version "2.04")
3606 (source
3607 (origin
3608 (method url-fetch)
3609 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3610 "Devel-StackTrace-" version ".tar.gz"))
3611 (sha256
3612 (base32 "0mb8bngjq7s3kbh95h3ig4p3jfb156c4r0d53z344gbxaknh6g6d"))))
3613 (build-system perl-build-system)
3614 (home-page "https://metacpan.org/release/Devel-StackTrace")
3615 (synopsis "Object representing a stack trace")
3616 (description "The Devel::StackTrace module contains two classes,
3617 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
3618 information that can be retrieved via Perl's caller() function, as well as
3619 providing a simple interface to this data.")
3620 (license artistic2.0)))
3621
3622 (define-public perl-devel-stacktrace-ashtml
3623 (package
3624 (name "perl-devel-stacktrace-ashtml")
3625 (version "0.15")
3626 (source
3627 (origin
3628 (method url-fetch)
3629 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3630 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
3631 (sha256
3632 (base32
3633 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
3634 (build-system perl-build-system)
3635 (propagated-inputs
3636 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
3637 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
3638 (synopsis "Displays stack trace in HTML")
3639 (description "Devel::StackTrace::AsHTML adds as_html method to
3640 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
3641 snippet context and function parameters. If you call it on an instance of
3642 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
3643 each stack frame.")
3644 (license (package-license perl))))
3645
3646 (define-public perl-devel-symdump
3647 (package
3648 (name "perl-devel-symdump")
3649 (version "2.18")
3650 (source
3651 (origin
3652 (method url-fetch)
3653 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
3654 "Devel-Symdump-" version ".tar.gz"))
3655 (sha256
3656 (base32
3657 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
3658 (build-system perl-build-system)
3659 (home-page "https://metacpan.org/release/Devel-Symdump")
3660 (synopsis "Dump symbol names or the symbol table")
3661 (description "Devel::Symdump provides access to the perl symbol table.")
3662 (license (package-license perl))))
3663
3664 (define-public perl-digest-crc
3665 (package
3666 (name "perl-digest-crc")
3667 (version "0.22")
3668 (source
3669 (origin
3670 (method url-fetch)
3671 (uri (string-append
3672 "mirror://cpan/authors/id/O/OL/OLIMAUL/Digest-CRC-"
3673 version ".2.tar.gz"))
3674 (sha256
3675 (base32
3676 "1jvqcyrbi11cj3vlfc9sq2g6rv9caizyjkjqsksvmxn6zgvm0aqi"))))
3677 (build-system perl-build-system)
3678 (home-page "https://metacpan.org/release/Digest-CRC")
3679 (synopsis "Generic CRC functions")
3680 (description "The @code{Digest::CRC} module calculates CRC sums of
3681 all sorts. It contains wrapper functions with the correct parameters
3682 for CRC-CCITT, CRC-16 and CRC-32.")
3683 (license public-domain)))
3684
3685 (define-public perl-digest-hmac
3686 (package
3687 (name "perl-digest-hmac")
3688 (version "1.03")
3689 (source
3690 (origin
3691 (method url-fetch)
3692 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3693 "Digest-HMAC-" version ".tar.gz"))
3694 (sha256
3695 (base32
3696 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
3697 (build-system perl-build-system)
3698 (home-page "https://metacpan.org/release/Digest-HMAC")
3699 (synopsis "Keyed-Hashing for Message Authentication")
3700 (description "The Digest::HMAC module follows the common Digest::
3701 interface for the RFC 2104 HMAC mechanism.")
3702 (license (package-license perl))))
3703
3704 (define-public perl-digest-md4
3705 (package
3706 (name "perl-digest-md4")
3707 (version "1.9")
3708 (source
3709 (origin
3710 (method url-fetch)
3711 (uri (string-append
3712 "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-"
3713 version ".tar.gz"))
3714 (sha256
3715 (base32
3716 "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"))))
3717 (build-system perl-build-system)
3718 (home-page "https://metacpan.org/release/Digest-MD4")
3719 (synopsis "Interface to the MD4 Algorithm")
3720 (description "The @code{Digest::MD4} module allows you to use the
3721 RSA Data Security Inc.@: MD4 Message Digest algorithm from within Perl
3722 programs. The algorithm takes as input a message of arbitrary length
3723 and produces as output a 128-bit \"fingerprint\" or \"message digest\"
3724 of the input. MD4 is described in RFC 1320.")
3725 (license perl-license)))
3726
3727 (define-public perl-digest-md5
3728 (package
3729 (name "perl-digest-md5")
3730 (version "2.55")
3731 (source
3732 (origin
3733 (method url-fetch)
3734 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
3735 version ".tar.gz"))
3736 (sha256
3737 (base32
3738 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
3739 (build-system perl-build-system)
3740 (arguments
3741 `(#:phases
3742 (modify-phases %standard-phases
3743 (add-after 'build 'set-permissions
3744 (lambda _
3745 ;; Make MD5.so read-write so it can be stripped.
3746 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
3747 #t)))))
3748 (home-page "https://metacpan.org/release/Digest-MD5")
3749 (synopsis "Perl interface to the MD-5 algorithm")
3750 (description
3751 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
3752 algorithm from within Perl programs. The algorithm takes as
3753 input a message of arbitrary length and produces as output a
3754 128-bit \"fingerprint\" or \"message digest\" of the input.")
3755 (license (package-license perl))))
3756
3757 (define-public perl-digest-sha1
3758 (package
3759 (name "perl-digest-sha1")
3760 (version "2.13")
3761 (source (origin
3762 (method url-fetch)
3763 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3764 "Digest-SHA1-" version ".tar.gz"))
3765 (sha256
3766 (base32
3767 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
3768 (build-system perl-build-system)
3769 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
3770 (description
3771 "This package provides @code{Digest::SHA1}, an implementation of the NIST
3772 SHA-1 message digest algorithm for use by Perl programs.")
3773 (home-page "https://metacpan.org/release/Digest-SHA1")
3774 (license (package-license perl))))
3775
3776 (define-public perl-dist-checkconflicts
3777 (package
3778 (name "perl-dist-checkconflicts")
3779 (version "0.11")
3780 (source (origin
3781 (method url-fetch)
3782 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3783 "Dist-CheckConflicts-" version ".tar.gz"))
3784 (sha256
3785 (base32
3786 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
3787 (build-system perl-build-system)
3788 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
3789 (propagated-inputs
3790 `(("perl-module-runtime" ,perl-module-runtime)))
3791 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
3792 (synopsis "Declare version conflicts for your dist")
3793 (description "This module allows you to specify conflicting versions of
3794 modules separately and deal with them after the module is done installing.")
3795 (license (package-license perl))))
3796
3797 (define-public perl-dynaloader-functions
3798 (package
3799 (name "perl-dynaloader-functions")
3800 (version "0.003")
3801 (source
3802 (origin
3803 (method url-fetch)
3804 (uri (string-append
3805 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/DynaLoader-Functions-"
3806 version ".tar.gz"))
3807 (sha256
3808 (base32
3809 "10x13q920j9kid7vmbj6fiaz153042dy4mwdmpzrdrxw2ir39ciy"))))
3810 (build-system perl-build-system)
3811 (native-inputs
3812 `(("perl-module-build" ,perl-module-build)
3813 ("perl-test-pod" ,perl-test-pod)
3814 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3815 (home-page "https://metacpan.org/release/DynaLoader-Functions")
3816 (synopsis "Deconstructed dynamic C library loading")
3817 (description "This module provides a function-based interface to
3818 dynamic loading as used by Perl. Some details of dynamic loading are
3819 very platform-dependent, so correct use of these functions requires
3820 the programmer to be mindfulof the space of platform variations.")
3821 (license perl-license)))
3822
3823 (define-public perl-encode-detect
3824 (package
3825 (name "perl-encode-detect")
3826 (version "1.01")
3827 (source
3828 (origin
3829 (method url-fetch)
3830 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
3831 "Encode-Detect-" version ".tar.gz"))
3832 (sha256
3833 (base32
3834 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
3835 (build-system perl-build-system)
3836 (native-inputs
3837 `(("perl-module-build" ,perl-module-build)))
3838 (home-page "https://metacpan.org/release/Encode-Detect")
3839 (synopsis "Detect the encoding of data")
3840 (description "This package provides a class @code{Encode::Detect} to detect
3841 the encoding of data.")
3842 (license mpl1.1)))
3843
3844 (define-public perl-encode-eucjpascii
3845 (package
3846 (name "perl-encode-eucjpascii")
3847 (version "0.03")
3848 (source
3849 (origin
3850 (method url-fetch)
3851 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3852 "Encode-EUCJPASCII-" version ".tar.gz"))
3853 (sha256
3854 (base32
3855 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3856 (build-system perl-build-system)
3857 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3858 (synopsis "ASCII mapping for eucJP encoding")
3859 (description "This package provides an ASCII mapping for the eucJP
3860 encoding.")
3861 (license (package-license perl))))
3862
3863 (define-public perl-encode-jis2k
3864 (package
3865 (name "perl-encode-jis2k")
3866 (version "0.03")
3867 (source
3868 (origin
3869 (method url-fetch)
3870 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3871 "Encode-JIS2K-" version ".tar.gz"))
3872 (sha256
3873 (base32
3874 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3875 (build-system perl-build-system)
3876 (home-page "https://metacpan.org/release/Encode-JIS2K")
3877 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3878 (description "This package provides encodings for JIS X 0212, which is
3879 also known as JIS 2000.")
3880 (license (package-license perl))))
3881
3882 (define-public perl-encode-hanextra
3883 (package
3884 (name "perl-encode-hanextra")
3885 (version "0.23")
3886 (source
3887 (origin
3888 (method url-fetch)
3889 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3890 "Encode-HanExtra-" version ".tar.gz"))
3891 (sha256
3892 (base32
3893 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3894 (build-system perl-build-system)
3895 (arguments
3896 '(#:phases
3897 (modify-phases %standard-phases
3898 (add-after 'unpack 'set-env
3899 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3900 (home-page "https://metacpan.org/release/Encode-HanExtra")
3901 (synopsis "Additional Chinese encodings")
3902 (description "This Perl module provides Chinese encodings that are not
3903 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3904 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3905 \"UNISYS\".")
3906 (license expat)))
3907
3908 (define-public perl-env-path
3909 (package
3910 (name "perl-env-path")
3911 (version "0.19")
3912 (source
3913 (origin
3914 (method url-fetch)
3915 (uri (string-append
3916 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3917 version
3918 ".tar.gz"))
3919 (sha256
3920 (base32
3921 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3922 (build-system perl-build-system)
3923 (home-page "https://metacpan.org/release/Env-Path")
3924 (synopsis "Advanced operations on path variables")
3925 (description "@code{Env::Path} presents an object-oriented interface to
3926 path variables, defined as that subclass of environment variables which name
3927 an ordered list of file system elements separated by a platform-standard
3928 separator.")
3929 (license (package-license perl))))
3930
3931 (define-public perl-error
3932 (package
3933 (name "perl-error")
3934 (version "0.17028")
3935 (source (origin
3936 (method url-fetch)
3937 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3938 "Error-" version ".tar.gz"))
3939 (sha256
3940 (base32
3941 "0q796nwwiarfc6pga97380c9z8xva5545632001qj75kb1g5rn1s"))))
3942 (build-system perl-build-system)
3943 (native-inputs `(("perl-module-build" ,perl-module-build)))
3944 (home-page "https://metacpan.org/release/Error")
3945 (synopsis "OO-ish Error/Exception handling for Perl")
3946 (description "The Error package provides two interfaces. Firstly Error
3947 provides a procedural interface to exception handling. Secondly Error is a
3948 base class for errors/exceptions that can either be thrown, for subsequent
3949 catch, or can simply be recorded.")
3950 (license (package-license perl))))
3951
3952 (define-public perl-eval-closure
3953 (package
3954 (name "perl-eval-closure")
3955 (version "0.14")
3956 (source
3957 (origin
3958 (method url-fetch)
3959 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3960 "Eval-Closure-" version ".tar.gz"))
3961 (sha256
3962 (base32
3963 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3964 (build-system perl-build-system)
3965 (native-inputs
3966 `(("perl-test-fatal" ,perl-test-fatal)
3967 ("perl-test-requires" ,perl-test-requires)))
3968 (propagated-inputs
3969 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3970 (home-page "https://metacpan.org/release/Eval-Closure")
3971 (synopsis "Safely and cleanly create closures via string eval")
3972 (description "String eval is often used for dynamic code generation. For
3973 instance, Moose uses it heavily, to generate inlined versions of accessors and
3974 constructors, which speeds code up at runtime by a significant amount. String
3975 eval is not without its issues however - it's difficult to control the scope
3976 it's used in (which determines which variables are in scope inside the eval),
3977 and it's easy to miss compilation errors, since eval catches them and sticks
3978 them in $@@ instead. This module attempts to solve these problems. It
3979 provides an eval_closure function, which evals a string in a clean
3980 environment, other than a fixed list of specified variables. Compilation
3981 errors are rethrown automatically.")
3982 (license (package-license perl))))
3983
3984 (define-public perl-exception-class
3985 (package
3986 (name "perl-exception-class")
3987 (version "1.44")
3988 (source
3989 (origin
3990 (method url-fetch)
3991 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3992 "Exception-Class-" version ".tar.gz"))
3993 (sha256
3994 (base32
3995 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
3996 (build-system perl-build-system)
3997 (propagated-inputs
3998 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
3999 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
4000 (home-page "https://metacpan.org/release/Exception-Class")
4001 (synopsis "Allows you to declare real exception classes in Perl")
4002 (description "Exception::Class allows you to declare exception hierarchies
4003 in your modules in a \"Java-esque\" manner.")
4004 (license (package-license perl))))
4005
4006 (define-public perl-exporter-lite
4007 (package
4008 (name "perl-exporter-lite")
4009 (version "0.08")
4010 (source (origin
4011 (method url-fetch)
4012 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4013 "Exporter-Lite-" version ".tar.gz"))
4014 (sha256
4015 (base32
4016 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
4017 (build-system perl-build-system)
4018 (synopsis "Lightweight exporting of functions and variables")
4019 (description
4020 "Exporter::Lite is an alternative to Exporter, intended to provide a
4021 lightweight subset of the most commonly-used functionality. It supports
4022 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
4023 (home-page "https://metacpan.org/release/Exporter-Lite")
4024 (license (package-license perl))))
4025
4026 (define-public perl-exporter-tiny
4027 (package
4028 (name "perl-exporter-tiny")
4029 (version "1.002001")
4030 (source
4031 (origin
4032 (method url-fetch)
4033 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
4034 "Exporter-Tiny-" version ".tar.gz"))
4035 (sha256
4036 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
4037 (build-system perl-build-system)
4038 (home-page "https://metacpan.org/release/Exporter-Tiny")
4039 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
4040 (description "Exporter::Tiny supports many of Sub::Exporter's
4041 external-facing features including renaming imported functions with the `-as`,
4042 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
4043 and alternative installers with the `installler` option. But it's written in
4044 only about 40% as many lines of code and with zero non-core dependencies.")
4045 (license (package-license perl))))
4046
4047 (define-public perl-extutils-installpaths
4048 (package
4049 (name "perl-extutils-installpaths")
4050 (version "0.012")
4051 (source
4052 (origin
4053 (method url-fetch)
4054 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4055 "ExtUtils-InstallPaths-" version ".tar.gz"))
4056 (sha256
4057 (base32
4058 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
4059 (build-system perl-build-system)
4060 (propagated-inputs
4061 `(("perl-extutils-config" ,perl-extutils-config)))
4062 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
4063 (synopsis "Build.PL install path logic made easy")
4064 (description "This module tries to make install path resolution as easy as
4065 possible.")
4066 (license (package-license perl))))
4067
4068 (define-public perl-extutils-config
4069 (package
4070 (name "perl-extutils-config")
4071 (version "0.008")
4072 (source
4073 (origin
4074 (method url-fetch)
4075 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4076 "ExtUtils-Config-" version ".tar.gz"))
4077 (sha256
4078 (base32
4079 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
4080 (build-system perl-build-system)
4081 (home-page "https://metacpan.org/release/ExtUtils-Config")
4082 (synopsis "Wrapper for perl's configuration")
4083 (description "ExtUtils::Config is an abstraction around the %Config hash.
4084 By itself it is not a particularly interesting module by any measure, however
4085 it ties together a family of modern toolchain modules.")
4086 (license (package-license perl))))
4087
4088 (define-public perl-extutils-cppguess
4089 (package
4090 (name "perl-extutils-cppguess")
4091 (version "0.20")
4092 (source
4093 (origin
4094 (method url-fetch)
4095 (uri (string-append
4096 "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
4097 version
4098 ".tar.gz"))
4099 (sha256
4100 (base32
4101 "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
4102 (build-system perl-build-system)
4103 (native-inputs
4104 `(("perl-capture-tiny" ,perl-capture-tiny)
4105 ("perl-module-build" ,perl-module-build)))
4106 (propagated-inputs
4107 `(("perl-capture-tiny" ,perl-capture-tiny)))
4108 (home-page
4109 "https://metacpan.org/release/ExtUtils-CppGuess")
4110 (synopsis "Tool for guessing C++ compiler and flags")
4111 (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
4112 is compatible with the C compiler used to build perl.")
4113 (license (package-license perl))))
4114
4115 (define-public perl-extutils-depends
4116 (package
4117 (name "perl-extutils-depends")
4118 (version "0.405")
4119 (source (origin
4120 (method url-fetch)
4121 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4122 "ExtUtils-Depends-" version ".tar.gz"))
4123 (sha256
4124 (base32
4125 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
4126 (build-system perl-build-system)
4127 (native-inputs
4128 `(("perl-test-number-delta" ,perl-test-number-delta)))
4129 (home-page "https://metacpan.org/release/ExtUtils-Depends")
4130 (synopsis "Easily build XS extensions that depend on XS extensions")
4131 (description
4132 "This module tries to make it easy to build Perl extensions that use
4133 functions and typemaps provided by other perl extensions. This means that a
4134 perl extension is treated like a shared library that provides also a C and an
4135 XS interface besides the perl one.")
4136 (license (package-license perl))))
4137
4138 (define-public perl-extutils-helpers
4139 (package
4140 (name "perl-extutils-helpers")
4141 (version "0.026")
4142 (source
4143 (origin
4144 (method url-fetch)
4145 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4146 "ExtUtils-Helpers-" version ".tar.gz"))
4147 (sha256
4148 (base32
4149 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
4150 (build-system perl-build-system)
4151 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
4152 (synopsis "Various portability utilities for module builders")
4153 (description "This module provides various portable helper functions for
4154 module building modules.")
4155 (license (package-license perl))))
4156
4157 (define-public perl-extutils-libbuilder
4158 (package
4159 (name "perl-extutils-libbuilder")
4160 (version "0.08")
4161 (source
4162 (origin
4163 (method url-fetch)
4164 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
4165 "ExtUtils-LibBuilder-" version ".tar.gz"))
4166 (sha256
4167 (base32
4168 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
4169 (build-system perl-build-system)
4170 (native-inputs
4171 `(("perl-module-build" ,perl-module-build)))
4172 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
4173 (synopsis "Tool to build C libraries")
4174 (description "Some Perl modules need to ship C libraries together with
4175 their Perl code. Although there are mechanisms to compile and link (or glue)
4176 C code in your Perl programs, there isn't a clear method to compile standard,
4177 self-contained C libraries. This module main goal is to help in that task.")
4178 (license (package-license perl))))
4179
4180 (define-public perl-extutils-parsexs
4181 (package
4182 (name "perl-extutils-parsexs")
4183 (version "3.35")
4184 (source
4185 (origin
4186 (method url-fetch)
4187 (uri (string-append
4188 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-"
4189 version
4190 ".tar.gz"))
4191 (sha256
4192 (base32
4193 "077fqiyabydm8j34wxzxwxskyidh8nmwq9gskaxai8kq298z1pj1"))))
4194 (build-system perl-build-system)
4195 (home-page
4196 "https://metacpan.org/release/ExtUtils-ParseXS")
4197 (synopsis "Module to convert Perl XS code into C code")
4198 (description "The package contains the ExtUtils::ParseXS module to
4199 convert Perl XS code into C code, the ExtUtils::Typemaps module to
4200 handle Perl/XS typemap files, and their submodules.")
4201 (license (package-license perl))))
4202
4203 (define-public perl-extutils-pkgconfig
4204 (package
4205 (name "perl-extutils-pkgconfig")
4206 (version "1.16")
4207 (source (origin
4208 (method url-fetch)
4209 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4210 "ExtUtils-PkgConfig-" version ".tar.gz"))
4211 (sha256
4212 (base32
4213 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
4214 (build-system perl-build-system)
4215 (propagated-inputs
4216 `(("pkg-config" ,pkg-config)))
4217 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
4218 (synopsis "Simplistic interface to pkg-config")
4219 (description
4220 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
4221 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
4222 of perl extensions which bind libraries that @command{pkg-config} knows.
4223 It is really just boilerplate code that you would have written yourself.")
4224 (license lgpl2.1+)))
4225
4226 (define-public perl-extutils-typemaps-default
4227 (package
4228 (name "perl-extutils-typemaps-default")
4229 (version "1.05")
4230 (source
4231 (origin
4232 (method url-fetch)
4233 (uri (string-append
4234 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-Typemaps-Default-"
4235 version
4236 ".tar.gz"))
4237 (sha256
4238 (base32
4239 "1phmha0ks95kvzl00r1kgnd5hvg7qb1q9jmzjmw01p5zgs1zbyix"))))
4240 (build-system perl-build-system)
4241 (native-inputs
4242 `(("perl-module-build" ,perl-module-build)))
4243 (home-page
4244 "https://metacpan.org/release/ExtUtils-Typemaps-Default")
4245 (synopsis "Set of useful typemaps")
4246 (description "The package provides a number of useful typemaps as
4247 submodules of ExtUtils::Typemaps.")
4248 (license (package-license perl))))
4249
4250 (define-public perl-extutils-xspp
4251 (package
4252 (name "perl-extutils-xspp")
4253 (version "0.18")
4254 (source
4255 (origin
4256 (method url-fetch)
4257 (uri (string-append
4258 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-"
4259 version
4260 ".tar.gz"))
4261 (sha256
4262 (base32
4263 "1zx84f93lkymqz7qa4d63gzlnhnkxm5i3gvsrwkvvqr9cxjasxli"))))
4264 (build-system perl-build-system)
4265 (native-inputs
4266 `(("perl-module-build" ,perl-module-build)
4267 ("perl-test-base" ,perl-test-base)
4268 ("perl-test-differences" ,perl-test-differences)))
4269 (home-page
4270 "https://metacpan.org/release/ExtUtils-XSpp")
4271 (synopsis "XS for C++")
4272 (description "This module implements the Perl foreign function
4273 interface XS for C++; it is a thin layer over plain XS.")
4274 (license (package-license perl))))
4275
4276 (define-public perl-file-changenotify
4277 (package
4278 (name "perl-file-changenotify")
4279 (version "0.24")
4280 (source
4281 (origin
4282 (method url-fetch)
4283 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4284 "File-ChangeNotify-" version ".tar.gz"))
4285 (sha256
4286 (base32
4287 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
4288 (build-system perl-build-system)
4289 (native-inputs
4290 `(("perl-module-build" ,perl-module-build)
4291 ("perl-test-exception" ,perl-test-exception)))
4292 (propagated-inputs
4293 `(("perl-class-load" ,perl-class-load)
4294 ("perl-list-moreutils" ,perl-list-moreutils)
4295 ("perl-module-pluggable" ,perl-module-pluggable)
4296 ("perl-moose" ,perl-moose)
4297 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
4298 ("perl-moosex-semiaffordanceaccessor"
4299 ,perl-moosex-semiaffordanceaccessor)
4300 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4301 (home-page "https://metacpan.org/release/File-ChangeNotify")
4302 (synopsis "Watch for changes to files")
4303 (description "This module provides a class to monitor a directory for
4304 changes made to any file.")
4305 (license artistic2.0)))
4306
4307 (define-public perl-file-configdir
4308 (package
4309 (name "perl-file-configdir")
4310 (version "0.021")
4311 (source
4312 (origin
4313 (method url-fetch)
4314 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4315 "File-ConfigDir-" version ".tar.gz"))
4316 (sha256
4317 (base32
4318 "1ihlhdbwaybyj3xqfxpx4ii0ypa41907b6zdh94rvr4wyqa5lh3b"))))
4319 (build-system perl-build-system)
4320 (propagated-inputs
4321 `(("perl-file-homedir" ,perl-file-homedir)
4322 ("perl-list-moreutils" ,perl-list-moreutils)
4323 ("perl-test-without-module" ,perl-test-without-module)))
4324 (home-page "https://metacpan.org/release/File-ConfigDir")
4325 (synopsis "Get directories of configuration files")
4326 (description "This module is a helper for installing, reading and finding
4327 configuration file locations. @code{File::ConfigDir} is a module to help out
4328 when Perl modules (especially applications) need to read and store
4329 configuration files from more than one location.")
4330 (license (package-license perl))))
4331
4332 (define-public perl-file-copy-recursive
4333 (package
4334 (name "perl-file-copy-recursive")
4335 (version "0.38")
4336 (source
4337 (origin
4338 (method url-fetch)
4339 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
4340 "File-Copy-Recursive-" version ".tar.gz"))
4341 (sha256
4342 (base32
4343 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
4344 (build-system perl-build-system)
4345 (home-page "https://metacpan.org/release/File-Copy-Recursive")
4346 (synopsis "Recursively copy files and directories")
4347 (description "This module has 3 functions: one to copy files only, one to
4348 copy directories only, and one to do either depending on the argument's
4349 type.")
4350 (license (package-license perl))))
4351
4352 (define-public perl-file-find-rule
4353 (package
4354 (name "perl-file-find-rule")
4355 (version "0.34")
4356 (source
4357 (origin
4358 (method url-fetch)
4359 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4360 "File-Find-Rule-" version ".tar.gz"))
4361 (sha256
4362 (base32
4363 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
4364 (build-system perl-build-system)
4365 (propagated-inputs
4366 `(("perl-text-glob" ,perl-text-glob)
4367 ("perl-number-compare" ,perl-number-compare)))
4368 (home-page "https://metacpan.org/release/File-Find-Rule")
4369 (synopsis "Alternative interface to File::Find")
4370 (description "File::Find::Rule is a friendlier interface to File::Find.
4371 It allows you to build rules which specify the desired files and
4372 directories.")
4373 (license (package-license perl))))
4374
4375 (define-public perl-file-find-rule-perl
4376 (package
4377 (name "perl-file-find-rule-perl")
4378 (version "1.15")
4379 (source
4380 (origin
4381 (method url-fetch)
4382 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4383 "File-Find-Rule-Perl-" version ".tar.gz"))
4384 (sha256
4385 (base32
4386 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
4387 (build-system perl-build-system)
4388 (propagated-inputs
4389 `(("perl-file-find-rule" ,perl-file-find-rule)
4390 ("perl-params-util" ,perl-params-util)
4391 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
4392 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
4393 (synopsis "Common rules for searching for Perl things")
4394 (description "File::Find::Rule::Perl provides methods for finding various
4395 types Perl-related files, or replicating search queries run on a distribution
4396 in various parts of the CPAN ecosystem.")
4397 (license (package-license perl))))
4398
4399 (define-public perl-file-grep
4400 (package
4401 (name "perl-file-grep")
4402 (version "0.02")
4403 (source
4404 (origin
4405 (method url-fetch)
4406 (uri (string-append
4407 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
4408 version
4409 ".tar.gz"))
4410 (sha256
4411 (base32
4412 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
4413 (build-system perl-build-system)
4414 (home-page "https://metacpan.org/release/File-Grep")
4415 (synopsis "Matches patterns in a series of files")
4416 (description "@code{File::Grep} provides similar functionality as perl's
4417 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
4418 over a passed filelist instead of arrays. While trivial, this module can
4419 provide a quick dropin when such functionality is needed.")
4420 (license (package-license perl))))
4421
4422 (define-public perl-file-homedir
4423 (package
4424 (name "perl-file-homedir")
4425 (version "1.004")
4426 (source
4427 (origin
4428 (method url-fetch)
4429 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4430 "File-HomeDir-" version ".tar.gz"))
4431 (sha256
4432 (base32
4433 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
4434 (build-system perl-build-system)
4435 (propagated-inputs
4436 `(("perl-file-which" ,perl-file-which)))
4437 (arguments `(#:tests? #f)) ;Not appropriate for chroot
4438 (home-page "https://metacpan.org/release/File-HomeDir")
4439 (synopsis "Find your home and other directories on any platform")
4440 (description "File::HomeDir is a module for locating the directories that
4441 are @code{owned} by a user (typically your user) and to solve the various issues
4442 that arise trying to find them consistently across a wide variety of
4443 platforms.")
4444 (license (package-license perl))))
4445
4446 (define-public perl-file-path
4447 (package
4448 (name "perl-file-path")
4449 (version "2.16")
4450 (source
4451 (origin
4452 (method url-fetch)
4453 (uri (string-append
4454 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
4455 version
4456 ".tar.gz"))
4457 (sha256
4458 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
4459 (build-system perl-build-system)
4460 (home-page "https://metacpan.org/release/File-Path")
4461 (synopsis "Create or remove directory trees")
4462 (description "This module provide a convenient way to create directories
4463 of arbitrary depth and to delete an entire directory subtree from the
4464 file system.")
4465 (license (package-license perl))))
4466
4467 (define-public perl-file-pushd
4468 (package
4469 (name "perl-file-pushd")
4470 (version "1.016")
4471 (source
4472 (origin
4473 (method url-fetch)
4474 (uri (string-append
4475 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
4476 version
4477 ".tar.gz"))
4478 (sha256
4479 (base32
4480 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
4481 (build-system perl-build-system)
4482 (home-page
4483 "https://metacpan.org/release/File-pushd")
4484 (synopsis
4485 "Change directory temporarily for a limited scope")
4486 (description "@code{File::pushd} does a temporary @code{chdir} that is
4487 easily and automatically reverted, similar to @code{pushd} in some Unix
4488 command shells. It works by creating an object that caches the original
4489 working directory. When the object is destroyed, the destructor calls
4490 @code{chdir} to revert to the original working directory. By storing the
4491 object in a lexical variable with a limited scope, this happens automatically
4492 at the end of the scope.")
4493 (license asl2.0)))
4494
4495 (define-public perl-file-list
4496 (package
4497 (name "perl-file-list")
4498 (version "0.3.1")
4499 (source (origin
4500 (method url-fetch)
4501 (uri (string-append
4502 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
4503 version ".tar.gz"))
4504 (sha256
4505 (base32
4506 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
4507 (build-system perl-build-system)
4508 (arguments
4509 `(#:phases
4510 (modify-phases %standard-phases
4511 (add-after 'unpack 'cd
4512 (lambda _ (chdir "List") #t)))))
4513 (license (package-license perl))
4514 (synopsis "Perl extension for crawling directory trees and compiling
4515 lists of files")
4516 (description
4517 "The File::List module crawls the directory tree starting at the
4518 provided base directory and can return files (and/or directories if desired)
4519 matching a regular expression.")
4520 (home-page "https://metacpan.org/release/File-List")))
4521
4522 (define-public perl-file-readbackwards
4523 (package
4524 (name "perl-file-readbackwards")
4525 (version "1.05")
4526 (source
4527 (origin
4528 (method url-fetch)
4529 (uri (string-append
4530 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
4531 version
4532 ".tar.gz"))
4533 (sha256
4534 (base32
4535 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
4536 (build-system perl-build-system)
4537 (home-page "https://metacpan.org/release/File-ReadBackwards")
4538 (synopsis "Read a file backwards by lines")
4539 (description "This module reads a file backwards line by line. It is
4540 simple to use, memory efficient and fast. It supports both an object and a
4541 tied handle interface.
4542
4543 It is intended for processing log and other similar text files which typically
4544 have their newest entries appended to them. By default files are assumed to
4545 be plain text and have a line ending appropriate to the OS. But you can set
4546 the input record separator string on a per file basis.")
4547 (license perl-license)))
4548
4549 (define-public perl-file-remove
4550 (package
4551 (name "perl-file-remove")
4552 (version "1.58")
4553 (source
4554 (origin
4555 (method url-fetch)
4556 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4557 "File-Remove-" version ".tar.gz"))
4558 (sha256
4559 (base32
4560 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
4561 (build-system perl-build-system)
4562 (native-inputs
4563 `(("perl-module-build" ,perl-module-build)))
4564 (home-page "https://metacpan.org/release/File-Remove")
4565 (synopsis "Remove files and directories in Perl")
4566 (description "@code{File::Remove::remove} removes files and directories.
4567 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
4568 given a list of files, it will not remove directories; this module remedies
4569 that. It also accepts wildcards, * and ?, as arguments for file names.")
4570 (license (package-license perl))))
4571
4572 (define-public perl-file-sharedir
4573 (package
4574 (name "perl-file-sharedir")
4575 (version "1.116")
4576 (source
4577 (origin
4578 (method url-fetch)
4579 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4580 "File-ShareDir-" version ".tar.gz"))
4581 (sha256
4582 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
4583 (build-system perl-build-system)
4584 (native-inputs
4585 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
4586 (propagated-inputs
4587 `(("perl-class-inspector" ,perl-class-inspector)))
4588 (home-page "https://metacpan.org/release/File-ShareDir")
4589 (synopsis "Locate per-dist and per-module shared files")
4590 (description "The intent of File::ShareDir is to provide a companion to
4591 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
4592 module to have access to a large amount of read-only data that is stored on
4593 the file-system at run-time. Once the files have been installed to the
4594 correct directory, you can use File::ShareDir to find your files again after
4595 the installation.")
4596 (license (package-license perl))))
4597
4598 (define-public perl-file-sharedir-dist
4599 (package
4600 (name "perl-file-sharedir-dist")
4601 (version "0.07")
4602 (source
4603 (origin
4604 (method url-fetch)
4605 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4606 "File-ShareDir-Dist-" version ".tar.gz"))
4607 (sha256
4608 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
4609 (build-system perl-build-system)
4610 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
4611 (synopsis "Locate per-dist shared files")
4612 (description "File::ShareDir::Dist finds share directories for
4613 distributions. It is a companion module to File::ShareDir.")
4614 (license (package-license perl))))
4615
4616 (define-public perl-file-sharedir-install
4617 (package
4618 (name "perl-file-sharedir-install")
4619 (version "0.13")
4620 (source
4621 (origin
4622 (method url-fetch)
4623 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4624 "File-ShareDir-Install-" version ".tar.gz"))
4625 (sha256
4626 (base32
4627 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
4628 (build-system perl-build-system)
4629 (native-inputs
4630 `(("perl-module-build" ,perl-module-build)))
4631 (home-page "https://metacpan.org/release/File-ShareDir-Install")
4632 (synopsis "Install shared files")
4633 (description "File::ShareDir::Install allows you to install read-only data
4634 files from a distribution. It is a companion module to File::ShareDir, which
4635 allows you to locate these files after installation.")
4636 (license (package-license perl))))
4637
4638 (define-public perl-file-slurp
4639 (package
4640 (name "perl-file-slurp")
4641 (version "9999.28")
4642 (source
4643 (origin
4644 (method url-fetch)
4645 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
4646 "File-Slurp-" version ".tar.gz"))
4647 (sha256
4648 (base32 "1vkwh880lbyr2qcrfka7yb3z4yz9id4va52gfjgdnyfb1c0wx1q5"))))
4649 (build-system perl-build-system)
4650 (home-page "https://metacpan.org/release/File-Slurp")
4651 (synopsis "Reading/Writing/Modifying of complete files")
4652 (description "File::Slurp provides subroutines to read or write entire
4653 files with a simple call. It also has a subroutine for reading the list of
4654 file names in a directory.")
4655 (license (package-license perl))))
4656
4657 (define-public perl-file-slurper
4658 (package
4659 (name "perl-file-slurper")
4660 (version "0.012")
4661 (source
4662 (origin
4663 (method url-fetch)
4664 (uri (string-append
4665 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
4666 version
4667 ".tar.gz"))
4668 (sha256
4669 (base32
4670 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
4671 (build-system perl-build-system)
4672 (native-inputs
4673 `(("perl-test-warnings" ,perl-test-warnings)))
4674 (propagated-inputs
4675 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
4676 (home-page "https://metacpan.org/release/File-Slurper")
4677 (synopsis "Simple, sane and efficient module to slurp a file")
4678 (description "This module provides functions for fast and correct file
4679 slurping and spewing. All functions are optionally exported.")
4680 (license (package-license perl))))
4681
4682 (define-public perl-file-slurp-tiny
4683 (package
4684 (name "perl-file-slurp-tiny")
4685 (version "0.004")
4686 (source (origin
4687 (method url-fetch)
4688 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4689 "File-Slurp-Tiny-" version ".tar.gz"))
4690 (sha256
4691 (base32
4692 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
4693 (build-system perl-build-system)
4694 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
4695 (synopsis "Simple file reader and writer")
4696 (description
4697 "This module provides functions for fast reading and writing of files.")
4698 (license (package-license perl))))
4699
4700 (define-public perl-file-temp
4701 (package
4702 (name "perl-file-temp")
4703 (version "0.2309")
4704 (source
4705 (origin
4706 (method url-fetch)
4707 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4708 "File-Temp-" version ".tar.gz"))
4709 (sha256
4710 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
4711 (build-system perl-build-system)
4712 (home-page "https://metacpan.org/release/File-Temp")
4713 (synopsis "Return name and handle of a temporary file safely")
4714 (description "File::Temp can be used to create and open temporary files in
4715 a safe way.")
4716 (license (package-license perl))))
4717
4718 (define-public perl-file-which
4719 (package
4720 (name "perl-file-which")
4721 (version "1.23")
4722 (source (origin
4723 (method url-fetch)
4724 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4725 "File-Which-" version ".tar.gz"))
4726 (sha256
4727 (base32
4728 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
4729 (build-system perl-build-system)
4730 (native-inputs `(("test-script" ,perl-test-script)))
4731 (synopsis "Portable implementation of the `which' utility")
4732 (description
4733 "File::Which was created to be able to get the paths to executable
4734 programs on systems under which the `which' program wasn't implemented in the
4735 shell.")
4736 (home-page "https://metacpan.org/release/File-Which")
4737 (license (package-license perl))))
4738
4739 (define-public perl-file-zglob
4740 (package
4741 (name "perl-file-zglob")
4742 (version "0.11")
4743 (source (origin
4744 (method url-fetch)
4745 (uri (string-append
4746 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
4747 version ".tar.gz"))
4748 (sha256
4749 (base32
4750 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
4751 (build-system perl-build-system)
4752 (native-inputs
4753 `(("perl-module-install" ,perl-module-install)))
4754 (home-page "https://metacpan.org/release/File-Zglob")
4755 (synopsis "Extended Unix style glob functionality")
4756 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
4757 functionality; it returns a list of file names that match the given pattern.
4758 For instance, it supports the @code{**/*.pm} form.")
4759 (license (package-license perl))))
4760
4761 (define-public perl-filesys-notify-simple
4762 (package
4763 (name "perl-filesys-notify-simple")
4764 (version "0.13")
4765 (source
4766 (origin
4767 (method url-fetch)
4768 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
4769 "Filesys-Notify-Simple-" version ".tar.gz"))
4770 (sha256
4771 (base32
4772 "18jv96k1pf8wqf4vn2ahs7dv44lc9cyqj0bja9z17qici3dx7qxd"))))
4773 (build-system perl-build-system)
4774 (native-inputs
4775 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
4776 (home-page "https://metacpan.org/release/Filesys-Notify-Simple")
4777 (synopsis "Simple and dumb file system watcher")
4778 (description
4779 "@code{Filesys::Notify::Simple} is a simple but unified interface to get
4780 notifications of changes to a given file system path. It uses inotify2 on
4781 Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
4782 @code{FindFirstChangeNotification} on Windows if they're installed, and falls
4783 back to a full directory scan if none of these are available.")
4784 (license perl-license)))
4785
4786 (define-public perl-getopt-long
4787 (package
4788 (name "perl-getopt-long")
4789 (version "v2.49.1")
4790 (source
4791 (origin
4792 (method url-fetch)
4793 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
4794 "Getopt-Long-" (substring version 1) ".tar.gz"))
4795 (sha256
4796 (base32
4797 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
4798 (build-system perl-build-system)
4799 (home-page "https://metacpan.org/release/Getopt-Long")
4800 (synopsis "Module to handle parsing command line options")
4801 (description "The @code{Getopt::Long} module implements an extended getopt
4802 function called @code{GetOptions()}. It parses the command line from
4803 @code{ARGV}, recognizing and removing specified options and their possible
4804 values.
4805
4806 This function adheres to the POSIX syntax for command line options, with GNU
4807 extensions. In general, this means that options have long names instead of
4808 single letters, and are introduced with a double dash \"--\". Support for
4809 bundling of command line options, as was the case with the more traditional
4810 single-letter approach, is provided but not enabled by default.")
4811 ;; Can be used with either license.
4812 (license (list (package-license perl) gpl2+))))
4813
4814 (define-public perl-getopt-long-descriptive
4815 (package
4816 (name "perl-getopt-long-descriptive")
4817 (version "0.103")
4818 (source
4819 (origin
4820 (method url-fetch)
4821 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4822 "Getopt-Long-Descriptive-" version ".tar.gz"))
4823 (sha256
4824 (base32
4825 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
4826 (build-system perl-build-system)
4827 (native-inputs
4828 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4829 ("perl-test-fatal" ,perl-test-fatal)
4830 ("perl-test-warnings" ,perl-test-warnings)))
4831 (propagated-inputs
4832 `(("perl-params-validate" ,perl-params-validate)
4833 ("perl-sub-exporter" ,perl-sub-exporter)))
4834 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
4835 (synopsis "Getopt::Long, but simpler and more powerful")
4836 (description "Getopt::Long::Descriptive is yet another Getopt library.
4837 It's built atop Getopt::Long, and gets a lot of its features, but tries to
4838 avoid making you think about its huge array of options. It also provides
4839 usage (help) messages, data validation, and a few other useful features.")
4840 (license (package-license perl))))
4841
4842 (define-public perl-getopt-tabular
4843 (package
4844 (name "perl-getopt-tabular")
4845 (version "0.3")
4846 (source (origin
4847 (method url-fetch)
4848 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
4849 "Getopt-Tabular-" version ".tar.gz"))
4850 (sha256
4851 (base32
4852 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
4853 (build-system perl-build-system)
4854 (synopsis "Table-driven argument parsing for Perl")
4855 (description
4856 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
4857 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
4858 (home-page "https://metacpan.org/release/Getopt-Tabular")
4859 (license (package-license perl))))
4860
4861 (define-public perl-graph
4862 (package
4863 (name "perl-graph")
4864 (version "0.9704")
4865 (source
4866 (origin
4867 (method url-fetch)
4868 (uri (string-append
4869 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
4870 version
4871 ".tar.gz"))
4872 (sha256
4873 (base32
4874 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
4875 (build-system perl-build-system)
4876 (home-page "https://metacpan.org/release/Graph")
4877 (synopsis "Graph data structures and algorithms")
4878 (description "This is @code{Graph}, a Perl module for dealing with graphs,
4879 the abstract data structures.")
4880 (license (package-license perl))))
4881
4882 (define-public perl-guard
4883 (package
4884 (name "perl-guard")
4885 (version "1.023")
4886 (source (origin
4887 (method url-fetch)
4888 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
4889 version ".tar.gz"))
4890 (sha256
4891 (base32
4892 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
4893 (build-system perl-build-system)
4894 (home-page "https://metacpan.org/release/Guard")
4895 (synopsis "Safe cleanup blocks implemented as guards")
4896 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
4897 something (usually an object) that \"guards\" a resource, ensuring that it is
4898 cleaned up when expected.
4899
4900 Specifically, this module supports two different types of guards: guard
4901 objects, which execute a given code block when destroyed, and scoped guards,
4902 which are tied to the scope exit.")
4903 (license (package-license perl))))
4904
4905 (define-public perl-hash-fieldhash
4906 (package
4907 (name "perl-hash-fieldhash")
4908 (version "0.15")
4909 (source
4910 (origin
4911 (method url-fetch)
4912 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
4913 "Hash-FieldHash-" version ".tar.gz"))
4914 (sha256
4915 (base32
4916 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
4917 (build-system perl-build-system)
4918 (arguments
4919 `(#:phases
4920 (modify-phases %standard-phases
4921 (add-before 'configure 'set-perl-search-path
4922 (lambda _
4923 ;; Work around "dotless @INC" build failure.
4924 (setenv "PERL5LIB"
4925 (string-append (getcwd) ":"
4926 (getenv "PERL5LIB")))
4927 #t)))))
4928 (native-inputs
4929 `(("perl-module-build" ,perl-module-build)
4930 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4931 (home-page "https://metacpan.org/release/Hash-FieldHash")
4932 (synopsis "Lightweight field hash for inside-out objects")
4933 (description "@code{Hash::FieldHash} provides the field hash mechanism
4934 which supports the inside-out technique. It is an alternative to
4935 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
4936 relic support.")
4937 (license (package-license perl))))
4938
4939 (define-public perl-hash-merge
4940 (package
4941 (name "perl-hash-merge")
4942 (version "0.300")
4943 (source
4944 (origin
4945 (method url-fetch)
4946 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4947 "Hash-Merge-" version ".tar.gz"))
4948 (sha256
4949 (base32
4950 "0h3wfnpv5d4d3f9xzmwkchay6251nhzngdv3f6xia56mj4hxabs0"))))
4951 (build-system perl-build-system)
4952 (propagated-inputs
4953 `(("perl-clone-choose" ,perl-clone-choose)))
4954 (home-page "https://metacpan.org/release/Hash-Merge")
4955 (synopsis "Merge arbitrarily deep hashes into a single hash")
4956 (description "Hash::Merge merges two arbitrarily deep hashes into a single
4957 hash. That is, at any level, it will add non-conflicting key-value pairs from
4958 one hash to the other, and follows a set of specific rules when there are key
4959 value conflicts. The hash is followed recursively, so that deeply nested
4960 hashes that are at the same level will be merged when the parent hashes are
4961 merged.")
4962 (license (package-license perl))))
4963
4964 (define-public perl-hash-multivalue
4965 (package
4966 (name "perl-hash-multivalue")
4967 (version "0.16")
4968 (source
4969 (origin
4970 (method url-fetch)
4971 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
4972 "Hash-MultiValue-" version ".tar.gz"))
4973 (sha256
4974 (base32
4975 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
4976 (build-system perl-build-system)
4977 (home-page "https://metacpan.org/release/Hash-MultiValue")
4978 (synopsis "Store multiple values per key")
4979 (description "Hash::MultiValue is an object (and a plain hash reference)
4980 that may contain multiple values per key, inspired by MultiDict of WebOb.")
4981 (license (package-license perl))))
4982
4983 (define-public perl-importer
4984 (package
4985 (name "perl-importer")
4986 (version "0.025")
4987 (source
4988 (origin
4989 (method url-fetch)
4990 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
4991 version ".tar.gz"))
4992 (sha256
4993 (base32
4994 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
4995 (build-system perl-build-system)
4996 (home-page "https://metacpan.org/release/Importer")
4997 (synopsis "Alternative but compatible interface to modules that export symbols")
4998 (description "This module acts as a layer between Exporter and modules which
4999 consume exports. It is feature-compatible with Exporter, plus some much needed
5000 extras. You can use this to import symbols from any exporter that follows
5001 Exporters specification. The exporter modules themselves do not need to use or
5002 inherit from the Exporter module, they just need to set @@EXPORT and/or other
5003 variables.")
5004 (license (package-license perl))))
5005
5006 (define-public perl-import-into
5007 (package
5008 (name "perl-import-into")
5009 (version "1.002005")
5010 (source
5011 (origin
5012 (method url-fetch)
5013 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5014 "Import-Into-" version ".tar.gz"))
5015 (sha256
5016 (base32
5017 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
5018 (build-system perl-build-system)
5019 (propagated-inputs
5020 `(("perl-module-runtime" ,perl-module-runtime)))
5021 (home-page "https://metacpan.org/release/Import-Into")
5022 (synopsis "Import packages into other packages")
5023 (description "Writing exporters is a pain. Some use Exporter, some use
5024 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
5025 some things are pragmas. Exporting on someone else's behalf is harder. The
5026 exporters don't provide a consistent API for this, and pragmas need to have
5027 their import method called directly, since they effect the current unit of
5028 compilation. Import::Into provides global methods to make this painless.")
5029 (license (package-license perl))))
5030
5031 (define-public perl-inc-latest
5032 (package
5033 (name "perl-inc-latest")
5034 (version "0.500")
5035 (source
5036 (origin
5037 (method url-fetch)
5038 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5039 "inc-latest-" version ".tar.gz"))
5040 (sha256
5041 (base32
5042 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
5043 (build-system perl-build-system)
5044 (home-page "https://metacpan.org/release/inc-latest")
5045 (synopsis "Use modules in inc/ if newer than installed")
5046 (description "The inc::latest module helps bootstrap configure-time
5047 dependencies for CPAN distributions. These dependencies get bundled into the
5048 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
5049 (license asl2.0)))
5050
5051 (define-public perl-indirect
5052 (package
5053 (name "perl-indirect")
5054 (version "0.39")
5055 (source
5056 (origin
5057 (method url-fetch)
5058 (uri (string-append
5059 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
5060 version ".tar.gz"))
5061 (sha256
5062 (base32 "1r971mykvvsrzrp6a9ccl649ihr84h254jmlfpazv64f6i63qwvi"))))
5063 (build-system perl-build-system)
5064 (home-page "https://metacpan.org/release/indirect")
5065 (synopsis "Lexically warn about using the indirect method call syntax")
5066 (description
5067 "Indirect warns about using the indirect method call syntax.")
5068 (license (package-license perl))))
5069
5070 (define-public perl-inline
5071 (package
5072 (name "perl-inline")
5073 (version "0.81")
5074 (source
5075 (origin
5076 (method url-fetch)
5077 (uri (string-append
5078 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
5079 version ".tar.gz"))
5080 (sha256
5081 (base32
5082 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
5083 (build-system perl-build-system)
5084 (native-inputs
5085 `(("perl-test-warn" ,perl-test-warn)))
5086 (home-page "https://metacpan.org/release/Inline")
5087 (synopsis "Write Perl subroutines in other programming languages")
5088 (description "The @code{Inline} module allows you to put source code
5089 from other programming languages directly (inline) in a Perl script or
5090 module. The code is automatically compiled as needed, and then loaded
5091 for immediate access from Perl.")
5092 (license (package-license perl))))
5093
5094 (define-public perl-inline-c
5095 (package
5096 (name "perl-inline-c")
5097 (version "0.78")
5098 (source
5099 (origin
5100 (method url-fetch)
5101 (uri (string-append
5102 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
5103 version ".tar.gz"))
5104 (sha256
5105 (base32
5106 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
5107 (build-system perl-build-system)
5108 (native-inputs
5109 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
5110 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
5111 ("perl-test-warn" ,perl-test-warn)
5112 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
5113 (propagated-inputs
5114 `(("perl-inline" ,perl-inline)
5115 ("perl-parse-recdescent" ,perl-parse-recdescent)
5116 ("perl-pegex" ,perl-pegex)))
5117 (home-page "https://metacpan.org/release/Inline-C")
5118 (synopsis "C Language Support for Inline")
5119 (description "The @code{Inline::C} module allows you to write Perl
5120 subroutines in C. Since version 0.30 the @code{Inline} module supports
5121 multiple programming languages and each language has its own support module.
5122 This document describes how to use Inline with the C programming language.
5123 It also goes a bit into Perl C internals.")
5124 (license (package-license perl))))
5125
5126 (define-public perl-io-all
5127 (package
5128 (name "perl-io-all")
5129 (version "0.87")
5130 (source
5131 (origin
5132 (method url-fetch)
5133 (uri (string-append
5134 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
5135 version
5136 ".tar.gz"))
5137 (sha256
5138 (base32
5139 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
5140 (build-system perl-build-system)
5141 (propagated-inputs
5142 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
5143 ("perl-file-readbackwards" ,perl-file-readbackwards)))
5144 (home-page "https://metacpan.org/release/IO-All")
5145 (synopsis "@code{IO::All} to Larry Wall!")
5146 (description "@code{IO::All} combines all of the best Perl IO modules into
5147 a single nifty object oriented interface to greatly simplify your everyday
5148 Perl IO idioms. It exports a single function called io, which returns a new
5149 @code{IO::All} object. And that object can do it all!")
5150 (license perl-license)))
5151
5152 (define-public perl-io-captureoutput
5153 (package
5154 (name "perl-io-captureoutput")
5155 (version "1.1105")
5156 (source
5157 (origin
5158 (method url-fetch)
5159 (uri (string-append
5160 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
5161 version
5162 ".tar.gz"))
5163 (sha256
5164 (base32 "11zlfbahac09q3jvwmpijmkwgihwxps85jwy2q7q0wqjragh16df"))))
5165 (build-system perl-build-system)
5166 (home-page "https://metacpan.org/release/IO-CaptureOutput")
5167 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
5168 (description "@code{IO::CaptureOutput} provides routines for capturing
5169 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
5170 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
5171
5172 This module is no longer recommended by its maintainer. Users are advised to
5173 try @code{Capture::Tiny} instead.")
5174 (license (package-license perl))))
5175
5176 (define-public perl-io-interactive
5177 (package
5178 (name "perl-io-interactive")
5179 (version "1.022")
5180 (source
5181 (origin
5182 (method url-fetch)
5183 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5184 "IO-Interactive-" version ".tar.gz"))
5185 (sha256
5186 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
5187 (build-system perl-build-system)
5188 (home-page "https://metacpan.org/release/IO-Interactive")
5189 (synopsis "Utilities for interactive I/O")
5190 (description "This module provides three utility subroutines that make it
5191 easier to develop interactive applications: is_interactive(), interactive(),
5192 and busy().")
5193 (license (package-license perl))))
5194
5195 (define-public perl-io-pager
5196 (package
5197 (name "perl-io-pager")
5198 (version "0.44")
5199 (source
5200 (origin
5201 (method url-fetch)
5202 (uri (string-append
5203 "mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-"
5204 version
5205 ".tgz"))
5206 (sha256
5207 (base32 "0h52gplhc3rij18xc4ngpg5kqv6mylxfzig18xll1aqda8iwa8kl"))))
5208 (build-system perl-build-system)
5209 (arguments
5210 '(#:phases
5211 (modify-phases %standard-phases
5212 (add-after 'unpack 'patch-less
5213 (lambda _
5214 (substitute* "lib/IO/Pager.pm"
5215 (("/usr/local/bin/less', '/usr/bin/less")
5216 (which "less")))
5217 #t)))))
5218 (propagated-inputs
5219 `(("perl-file-which" ,perl-file-which)))
5220 (inputs
5221 `(("less" ,less)))
5222 (home-page "https://metacpan.org/release/IO-Pager")
5223 (synopsis "Select a pager and pipe text to it")
5224 (description
5225 "@code{IO::Pager} can be used to locate an available pager and use it to
5226 display output if a TTY is in use.")
5227 (license (package-license perl))))
5228
5229 (define-public perl-io-string
5230 (package
5231 (name "perl-io-string")
5232 (version "1.08")
5233 (source
5234 (origin
5235 (method url-fetch)
5236 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
5237 "IO-String-" version ".tar.gz"))
5238 (sha256
5239 (base32
5240 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
5241 (build-system perl-build-system)
5242 (home-page "https://metacpan.org/release/IO-String")
5243 (synopsis "Emulate file interface for in-core strings")
5244 (description "IO::String is an IO::File (and IO::Handle) compatible class
5245 that reads or writes data from in-core strings.")
5246 (license (package-license perl))))
5247
5248 (define-public perl-io-stringy
5249 (package
5250 (name "perl-io-stringy")
5251 (version "2.111")
5252 (source
5253 (origin
5254 (method url-fetch)
5255 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
5256 "IO-stringy-" version ".tar.gz"))
5257 (sha256
5258 (base32
5259 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
5260 (build-system perl-build-system)
5261 (home-page "https://metacpan.org/release/IO-stringy")
5262 (synopsis "IO:: interface for reading/writing an array of lines")
5263 (description "This toolkit primarily provides modules for performing both
5264 traditional and object-oriented i/o) on things *other* than normal
5265 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
5266 (license (package-license perl))))
5267
5268 (define-public perl-io-tty
5269 (package
5270 (name "perl-io-tty")
5271 (version "1.14")
5272 (source (origin
5273 (method url-fetch)
5274 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
5275 version ".tar.gz"))
5276 (sha256
5277 (base32
5278 "1dcmxdhrapxvvzlfp6yzz7655f3c6x8jrw0md8ndp2qj27iy9wsi"))))
5279 (build-system perl-build-system)
5280 (home-page "https://metacpan.org/release/IO-Tty")
5281 (synopsis "Perl interface to pseudo ttys")
5282 (description
5283 "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl
5284 interfaces to pseudo ttys.")
5285 (license (package-license perl))))
5286
5287 (define-public perl-ipc-cmd
5288 (package
5289 (name "perl-ipc-cmd")
5290 (version "1.02")
5291 (source
5292 (origin
5293 (method url-fetch)
5294 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
5295 version ".tar.gz"))
5296 (sha256
5297 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
5298 (build-system perl-build-system)
5299 (home-page "https://metacpan.org/release/IPC-Cmd")
5300 (synopsis "Run interactive command-line programs")
5301 (description "@code{IPC::Cmd} allows for the searching and execution of
5302 any binary on your system. It adheres to verbosity settings and is able to
5303 run interactively. It also has an option to capture output/error buffers.")
5304 (license (package-license perl))))
5305
5306 (define-public perl-ipc-run
5307 (package
5308 (name "perl-ipc-run")
5309 (version "20180523.0")
5310 (source
5311 (origin
5312 (method url-fetch)
5313 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
5314 "IPC-Run-" version ".tar.gz"))
5315 (sha256
5316 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
5317 (build-system perl-build-system)
5318 (propagated-inputs
5319 `(("perl-io-tty" ,perl-io-tty)))
5320 (arguments
5321 `(#:phases (modify-phases %standard-phases
5322 (add-before
5323 'check 'disable-w32-test
5324 (lambda _
5325 ;; This test fails, and we're not really interested in
5326 ;; it, so disable it.
5327 (delete-file "t/win32_compile.t")
5328 #t)))))
5329 (home-page "https://metacpan.org/release/IPC-Run")
5330 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
5331 (description "IPC::Run allows you run and interact with child processes
5332 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
5333 are supported and may be mixed. Likewise, functional and OO API styles are
5334 both supported and may be mixed.")
5335 (license (package-license perl))))
5336
5337 (define-public perl-ipc-run3
5338 (package
5339 (name "perl-ipc-run3")
5340 (version "0.048")
5341 (source (origin
5342 (method url-fetch)
5343 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5344 "IPC-Run3-" version ".tar.gz"))
5345 (sha256
5346 (base32
5347 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
5348 (build-system perl-build-system)
5349 (synopsis "Run a subprocess with input/output redirection")
5350 (description
5351 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
5352 stdout, and/or stderr to files and perl data structures. It aims to satisfy
5353 99% of the need for using system, qx, and open3 with a simple, extremely
5354 Perlish API and none of the bloat and rarely used features of IPC::Run.")
5355 (home-page "https://metacpan.org/release/IPC-Run3")
5356 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
5357 ;; licenses, any version."
5358 (license (list bsd-3 gpl3+))))
5359
5360 (define-public perl-ipc-sharelite
5361 (package
5362 (name "perl-ipc-sharelite")
5363 (version "0.17")
5364 (source
5365 (origin
5366 (method url-fetch)
5367 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
5368 "IPC-ShareLite-" version ".tar.gz"))
5369 (sha256
5370 (base32
5371 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
5372 (build-system perl-build-system)
5373 (home-page "https://metacpan.org/release/IPC-ShareLite")
5374 (synopsis "Lightweight interface to shared memory")
5375 (description "IPC::ShareLite provides a simple interface to shared memory,
5376 allowing data to be efficiently communicated between processes.")
5377 (license (package-license perl))))
5378
5379 (define-public perl-ipc-system-simple
5380 (package
5381 (name "perl-ipc-system-simple")
5382 (version "1.26")
5383 (source (origin
5384 (method url-fetch)
5385 (uri (string-append
5386 "mirror://cpan/authors/id/J/JK/JKEENAN/IPC-System-Simple-"
5387 version ".tar.gz"))
5388 (sha256
5389 (base32
5390 "1zb5ni8ikaq6s60amwdsq69nz8gxl484yiga6ax5nqp8v0hpy5sp"))))
5391 (build-system perl-build-system)
5392 (home-page "https://metacpan.org/release/IPC-System-Simple")
5393 (synopsis "Run commands simply, with detailed diagnostics")
5394 (description "Calling Perl's in-built @code{system} function is easy,
5395 determining if it was successful is hard. Let's face it, @code{$?} isn't the
5396 nicest variable in the world to play with, and even if you do check it,
5397 producing a well-formatted error string takes a lot of work.
5398
5399 @code{IPC::System::Simple} takes the hard work out of calling external
5400 commands.")
5401 (license (package-license perl))))
5402
5403 (define-public perl-json
5404 (package
5405 (name "perl-json")
5406 (version "4.02")
5407 (source
5408 (origin
5409 (method url-fetch)
5410 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
5411 "JSON-" version ".tar.gz"))
5412 (sha256
5413 (base32
5414 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
5415 (build-system perl-build-system)
5416 (propagated-inputs
5417 `(("perl-json-xs" ,perl-json-xs))) ;recommended
5418 (home-page "https://metacpan.org/release/JSON")
5419 (synopsis "JSON encoder/decoder for Perl")
5420 (description "This module converts Perl data structures to JSON and vice
5421 versa using either JSON::XS or JSON::PP.")
5422 (license (package-license perl))))
5423
5424 (define-public perl-json-any
5425 (package
5426 (name "perl-json-any")
5427 (version "1.39")
5428 (source
5429 (origin
5430 (method url-fetch)
5431 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5432 "JSON-Any-" version ".tar.gz"))
5433 (sha256
5434 (base32
5435 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
5436 (build-system perl-build-system)
5437 (native-inputs
5438 `(("perl-test-fatal" ,perl-test-fatal)
5439 ("perl-test-requires" ,perl-test-requires)
5440 ("perl-test-warnings" ,perl-test-warnings)
5441 ("perl-test-without-module" ,perl-test-without-module)))
5442 (propagated-inputs
5443 `(("perl-namespace-clean" ,perl-namespace-clean)))
5444 (home-page "https://metacpan.org/release/JSON-Any")
5445 (synopsis "Wrapper for Perl JSON classes")
5446 (description
5447 "This module tries to provide a coherent API to bring together the
5448 various JSON modules currently on CPAN. This module will allow you to code to
5449 any JSON API and have it work regardless of which JSON module is actually
5450 installed.")
5451 (license (package-license perl))))
5452
5453 (define-public perl-json-maybexs
5454 (package
5455 (name "perl-json-maybexs")
5456 (version "1.004000")
5457 (source
5458 (origin
5459 (method url-fetch)
5460 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5461 "JSON-MaybeXS-" version ".tar.gz"))
5462 (sha256
5463 (base32
5464 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
5465 (build-system perl-build-system)
5466 (native-inputs
5467 `(("perl-test-without-module" ,perl-test-without-module)))
5468 (inputs
5469 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
5470 (home-page "https://metacpan.org/release/JSON-MaybeXS")
5471 (synopsis "Cpanel::JSON::XS with fallback")
5472 (description "This module first checks to see if either Cpanel::JSON::XS
5473 or JSON::XS is already loaded, in which case it uses that module. Otherwise
5474 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
5475 either uses the first module it finds or throws an error.")
5476 (license (package-license perl))))
5477
5478 (define-public perl-json-xs
5479 (package
5480 (name "perl-json-xs")
5481 (version "4.0")
5482 (source
5483 (origin
5484 (method url-fetch)
5485 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
5486 "JSON-XS-" version ".tar.gz"))
5487 (sha256
5488 (base32
5489 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
5490 (build-system perl-build-system)
5491 (native-inputs
5492 `(("perl-canary-stability" ,perl-canary-stability)))
5493 (propagated-inputs
5494 `(("perl-common-sense" ,perl-common-sense)
5495 ("perl-types-serialiser" ,perl-types-serialiser)))
5496 (home-page "https://metacpan.org/release/JSON-XS")
5497 (synopsis "JSON serialising/deserialising for Perl")
5498 (description "This module converts Perl data structures to JSON and vice
5499 versa.")
5500 (license (package-license perl))))
5501
5502 (define-public perl-lexical-sealrequirehints
5503 (package
5504 (name "perl-lexical-sealrequirehints")
5505 (version "0.011")
5506 (source
5507 (origin
5508 (method url-fetch)
5509 (uri (string-append
5510 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
5511 version
5512 ".tar.gz"))
5513 (sha256
5514 (base32
5515 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
5516 (build-system perl-build-system)
5517 (native-inputs
5518 `(("perl-module-build" ,perl-module-build)))
5519 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
5520 (synopsis "Prevent leakage of lexical hints")
5521 (description
5522 "Lexical::SealRequireHints prevents leakage of lexical hints")
5523 (license (package-license perl))))
5524
5525 (define-public perl-log-any
5526 (package
5527 (name "perl-log-any")
5528 (version "1.707")
5529 (source
5530 (origin
5531 (method url-fetch)
5532 (uri (string-append "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-"
5533 version ".tar.gz"))
5534 (sha256
5535 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
5536 (build-system perl-build-system)
5537 (home-page "https://metacpan.org/release/Log-Any")
5538 (synopsis "Bringing loggers and listeners together")
5539 (description "@code{Log::Any} provides a standard log production API for
5540 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
5541 for log consumption, whether screen, file or another logging mechanism like
5542 @code{Log::Dispatch} or @code{Log::Log4perl}.
5543
5544 A CPAN module uses @code{Log::Any} to get a log producer object. An
5545 application, in turn, may choose one or more logging mechanisms via
5546 @code{Log::Any::Adapter}, or none at all.
5547
5548 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
5549 itself, which makes it appropriate for even small CPAN modules to use. It
5550 defaults to @code{null} logging activity, so a module can safely log without
5551 worrying about whether the application has chosen (or will ever choose) a
5552 logging mechanism.")
5553 (license (package-license perl))))
5554
5555 (define-public perl-log-any-adapter-log4perl
5556 (package
5557 (name "perl-log-any-adapter-log4perl")
5558 (version "0.09")
5559 (source
5560 (origin
5561 (method url-fetch)
5562 (uri (string-append
5563 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
5564 version
5565 ".tar.gz"))
5566 (sha256
5567 (base32
5568 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
5569 (build-system perl-build-system)
5570 (propagated-inputs
5571 `(("perl-log-any" ,perl-log-any)
5572 ("perl-log-log4perl" ,perl-log-log4perl)))
5573 (home-page
5574 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
5575 (synopsis "Log::Any adapter for Log::Log4perl")
5576 (description "@code{Log::Any::Adapter::Log4perl} provides a
5577 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
5578 (license (package-license perl))))
5579
5580 (define-public perl-log-log4perl
5581 (package
5582 (name "perl-log-log4perl")
5583 (version "1.49")
5584 (source
5585 (origin
5586 (method url-fetch)
5587 (uri (string-append
5588 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
5589 version
5590 ".tar.gz"))
5591 (sha256
5592 (base32
5593 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
5594 (build-system perl-build-system)
5595 (home-page
5596 "https://metacpan.org/release/Log-Log4perl")
5597 (synopsis "Log4j implementation for Perl")
5598 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
5599 the logging behaviour of your system from the outside. It implements the
5600 widely popular (Java-based) Log4j logging package in pure Perl.")
5601 (license (package-license perl))))
5602
5603 (define-public perl-log-report-optional
5604 (package
5605 (name "perl-log-report-optional")
5606 (version "1.06")
5607 (source (origin
5608 (method url-fetch)
5609 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5610 "Log-Report-Optional-" version ".tar.gz"))
5611 (sha256
5612 (base32
5613 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
5614 (build-system perl-build-system)
5615 (propagated-inputs
5616 `(("perl-string-print" ,perl-string-print)))
5617 (home-page "https://metacpan.org/release/Log-Report-Optional")
5618 (synopsis "Log::Report in the lightest form")
5619 (description
5620 "This module allows libraries to have a dependency to a small module
5621 instead of the full Log-Report distribution. The full power of
5622 @code{Log::Report} is only released when the main program uses that module.
5623 In that case, the module using the @code{Optional} will also use the full
5624 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
5625 version.")
5626 (license (package-license perl))))
5627
5628 (define-public perl-log-report
5629 (package
5630 (name "perl-log-report")
5631 (version "1.10")
5632 (source (origin
5633 (method url-fetch)
5634 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5635 "Log-Report-" version ".tar.gz"))
5636 (sha256
5637 (base32
5638 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
5639 (build-system perl-build-system)
5640 (propagated-inputs
5641 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5642 ("perl-log-report-optional" ,perl-log-report-optional)
5643 ("perl-string-print" ,perl-string-print)))
5644 (home-page "https://metacpan.org/release/Log-Report")
5645 (synopsis "Get messages to users and logs")
5646 (description
5647 "@code{Log::Report} combines three tasks which are closely related in
5648 one: logging, exceptions, and translations.")
5649 (license (package-license perl))))
5650
5651 (define-public perl-libintl-perl
5652 (package
5653 (name "perl-libintl-perl")
5654 (version "1.31")
5655 (source
5656 (origin
5657 (method url-fetch)
5658 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
5659 "libintl-perl-" version ".tar.gz"))
5660 (sha256
5661 (base32 "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"))))
5662 (build-system perl-build-system)
5663 (arguments
5664 `(#:phases
5665 (modify-phases %standard-phases
5666 (add-before 'configure 'set-perl-search-path
5667 (lambda _
5668 ;; Work around "dotless @INC" build failure.
5669 (setenv "PERL5LIB" (string-append (getcwd) ":"
5670 (getenv "PERL5LIB")))
5671 #t)))))
5672 (propagated-inputs
5673 `(("perl-file-sharedir" ,perl-file-sharedir)))
5674 (home-page "https://metacpan.org/release/libintl-perl")
5675 (synopsis "High-level interface to Uniforum message translation")
5676 (description "This package is an internationalization library for Perl
5677 that aims to be compatible with the Uniforum message translations system as
5678 implemented for example in GNU gettext.")
5679 (license gpl3+)))
5680
5681 (define-public perl-lingua-translit
5682 (package
5683 (name "perl-lingua-translit")
5684 (version "0.28")
5685 (source
5686 (origin
5687 (method url-fetch)
5688 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
5689 "Lingua-Translit-" version ".tar.gz"))
5690 (sha256
5691 (base32
5692 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
5693 (build-system perl-build-system)
5694 (home-page "https://metacpan.org/release/Lingua-Translit")
5695 (synopsis "Transliterate text between writing systems")
5696 (description "@code{Lingua::Translit} can be used to convert text from one
5697 writing system to another, based on national or international transliteration
5698 tables. Where possible a reverse transliteration is supported.")
5699 (license (package-license perl))))
5700
5701 (define-public perl-list-allutils
5702 (package
5703 (name "perl-list-allutils")
5704 (version "0.09")
5705 (source
5706 (origin
5707 (method url-fetch)
5708 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5709 "List-AllUtils-" version ".tar.gz"))
5710 (sha256
5711 (base32
5712 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
5713 (build-system perl-build-system)
5714 (native-inputs
5715 `(("perl-test-warnings" ,perl-test-warnings)))
5716 (propagated-inputs
5717 `(("perl-list-moreutils" ,perl-list-moreutils)
5718 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
5719 (home-page "https://metacpan.org/release/List-AllUtils")
5720 (synopsis "Combination of List::Util and List::MoreUtils")
5721 (description "This module exports all of the functions that either
5722 List::Util or List::MoreUtils defines, with preference to List::Util.")
5723 (license (package-license perl))))
5724
5725 (define-public perl-list-compare
5726 (package
5727 (name "perl-list-compare")
5728 (version "0.53")
5729 (source
5730 (origin
5731 (method url-fetch)
5732 (uri (string-append
5733 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
5734 version
5735 ".tar.gz"))
5736 (sha256
5737 (base32
5738 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
5739 (build-system perl-build-system)
5740 (native-inputs
5741 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
5742 (home-page "https://metacpan.org/release/List-Compare")
5743 (synopsis "Compare elements of two or more lists")
5744 (description "@code{List::Compare} provides a module to perform
5745 comparative operations on two or more lists. Provided operations include
5746 intersections, unions, unique elements, complements and many more.")
5747 (license (package-license perl))))
5748
5749 (define-public perl-list-moreutils
5750 (package
5751 (name "perl-list-moreutils")
5752 (version "0.428")
5753 (source
5754 (origin
5755 (method url-fetch)
5756 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5757 "List-MoreUtils-" version ".tar.gz"))
5758 (sha256
5759 (base32
5760 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
5761 (build-system perl-build-system)
5762 (arguments
5763 `(#:phases
5764 (modify-phases %standard-phases
5765 (add-before 'configure 'set-perl-search-path
5766 (lambda _
5767 ;; Work around "dotless @INC" build failure.
5768 (setenv "PERL5LIB"
5769 (string-append (getcwd) ":"
5770 (getenv "PERL5LIB")))
5771 #t)))))
5772 (native-inputs
5773 `(("perl-config-autoconf" ,perl-config-autoconf)
5774 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5775 (propagated-inputs
5776 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5777 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
5778 (home-page "https://metacpan.org/release/List-MoreUtils")
5779 (synopsis "Provide the stuff missing in List::Util")
5780 (description "List::MoreUtils provides some trivial but commonly needed
5781 functionality on lists which is not going to go into List::Util.")
5782 (license (package-license perl))))
5783
5784 (define-public perl-list-moreutils-xs
5785 (package
5786 (name "perl-list-moreutils-xs")
5787 (version "0.428")
5788 (source
5789 (origin
5790 (method url-fetch)
5791 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
5792 version ".tar.gz"))
5793 (sha256
5794 (base32
5795 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
5796 (build-system perl-build-system)
5797 (native-inputs
5798 `(("perl-config-autoconf" ,perl-config-autoconf)
5799 ("perl-inc-latest" ,perl-inc-latest)
5800 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5801 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
5802 (synopsis "Provide the stuff missing in List::Util in XS")
5803 (description "@code{List::MoreUtils::XS} provides some trivial but
5804 commonly needed functionality on lists which is not going to go into
5805 @code{List::Util}.")
5806 (license asl2.0)))
5807
5808 (define-public perl-list-someutils
5809 (package
5810 (name "perl-list-someutils")
5811 (version "0.56")
5812 (source
5813 (origin
5814 (method url-fetch)
5815 (uri (string-append
5816 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
5817 version
5818 ".tar.gz"))
5819 (sha256
5820 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
5821 (build-system perl-build-system)
5822 (native-inputs
5823 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
5824 (inputs
5825 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5826 ("perl-module-implementation"
5827 ,perl-module-implementation)))
5828 (home-page "https://metacpan.org/release/List-SomeUtils")
5829 (synopsis "Provide the stuff missing in List::Util")
5830 (description "@code{List::SomeUtils} provides some trivial but commonly
5831 needed functionality on lists which is not going to go into @code{List::Util}.
5832
5833 All of the below functions are implementable in only a couple of lines of Perl
5834 code. Using the functions from this module however should give slightly
5835 better performance as everything is implemented in C. The pure-Perl
5836 implementation of these functions only serves as a fallback in case the C
5837 portions of this module couldn't be compiled on this machine.")
5838 (license (package-license perl))))
5839
5840 (define-public perl-mailtools
5841 (package
5842 (name "perl-mailtools")
5843 (version "2.21")
5844 (source
5845 (origin
5846 (method url-fetch)
5847 (uri (string-append
5848 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
5849 version
5850 ".tar.gz"))
5851 (sha256
5852 (base32
5853 "1js43bp2dnd8n2rv8clsv749166jnyqnc91k4wkkmw5n4rlbvnaa"))))
5854 (build-system perl-build-system)
5855 (propagated-inputs
5856 `(("perl-timedate" ,perl-timedate)))
5857 (home-page
5858 "https://metacpan.org/release/MailTools")
5859 (synopsis "Bundle of ancient email modules")
5860 (description "MailTools contains the following modules:
5861 @table @asis
5862 @item Mail::Address
5863 Parse email address from a header line.
5864 @item Mail::Cap
5865 Interpret mailcap files: mappings of file-types to applications as used by
5866 many command-line email programs.
5867 @item Mail::Field
5868 Simplifies access to (some) email header fields. Used by Mail::Header.
5869 @item Mail::Filter
5870 Process Mail::Internet messages.
5871 @item Mail::Header
5872 Collection of Mail::Field objects, representing the header of a Mail::Internet
5873 object.
5874 @item Mail::Internet
5875 Represents a single email message, with header and body.
5876 @item Mail::Mailer
5877 Send Mail::Internet emails via direct smtp or local MTA's.
5878 @item Mail::Send
5879 Build a Mail::Internet object, and then send it out using Mail::Mailer.
5880 @item Mail::Util
5881 \"Smart functions\" you should not depend on.
5882 @end table")
5883 (license perl-license)))
5884
5885 (define-public perl-mail-sendmail
5886 (package
5887 (name "perl-mail-sendmail")
5888 (version "0.80")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (string-append
5893 "mirror://cpan/authors/id/N/NE/NEILB/Mail-Sendmail-"
5894 version
5895 ".tar.gz"))
5896 (sha256
5897 (base32
5898 "1r38qbkj7jwj8cqy1rnqzkk81psxi08b1aiq392817f3bk5ri2jv"))))
5899 (build-system perl-build-system)
5900 (arguments `(#:tests? #f)) ;socket not available during build
5901 (home-page "https://metacpan.org/release/Mail-Sendmail")
5902 (synopsis "Simple platform independent mailer")
5903 (description "Mail::Sendmail is a pure perl module that provides a
5904 simple means to send email from a perl script. The module only
5905 requires Perl5 and a network connection.")
5906 (license perl-license)))
5907
5908 (define-public perl-math-bezier
5909 (package
5910 (name "perl-math-bezier")
5911 (version "0.01")
5912 (source (origin
5913 (method url-fetch)
5914 (uri (string-append
5915 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
5916 version ".tar.gz"))
5917 (sha256
5918 (base32
5919 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
5920 (build-system perl-build-system)
5921 (home-page "https://metacpan.org/release/Math-Bezier")
5922 (synopsis "Solution of bezier curves")
5923 (description "This module implements the algorithm for the solution of Bezier
5924 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
5925 Bezier Curve Drawing\".")
5926 (license perl-license)))
5927
5928 (define-public perl-math-round
5929 (package
5930 (name "perl-math-round")
5931 (version "0.07")
5932 (source (origin
5933 (method url-fetch)
5934 (uri (string-append
5935 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
5936 version ".tar.gz"))
5937 (sha256
5938 (base32
5939 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
5940 (build-system perl-build-system)
5941 (home-page "https://metacpan.org/release/Math-Round")
5942 (synopsis "Perl extension for rounding numbers")
5943 (description "@code{Math::Round} provides functions to round numbers,
5944 both positive and negative, in various ways.")
5945 (license perl-license)))
5946
5947 (define-public perl-math-vecstat
5948 (package
5949 (name "perl-math-vecstat")
5950 (version "0.08")
5951 (source (origin
5952 (method url-fetch)
5953 (uri (string-append
5954 "mirror://cpan/authors/id/A/AS/ASPINELLI/Math-VecStat-"
5955 version ".tar.gz"))
5956 (sha256
5957 (base32
5958 "03bdcl9pn2bc9b50c50nhnr7m9wafylnb3v21zlch98h9c78x6j0"))))
5959 (build-system perl-build-system)
5960 (home-page "http://search.cpan.org/dist/Math-VecStat")
5961 (synopsis "Basic numeric stats on vectors")
5962 (description "This package provides some basic statistics on numerical
5963 vectors. All the subroutines can take a reference to the vector to be
5964 operated on.")
5965 (license (package-license perl))))
5966
5967 (define-public perl-memoize
5968 (package
5969 (name "perl-memoize")
5970 (version "1.03")
5971 (source (origin
5972 (method url-fetch)
5973 (uri (string-append
5974 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
5975 version".tgz"))
5976 (sha256
5977 (base32
5978 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
5979 (build-system perl-build-system)
5980 (home-page "https://metacpan.org/release/Memoize")
5981 (synopsis "Make functions faster by trading space for time")
5982 (description "This package transparently speeds up functions by caching
5983 return values, trading space for time.")
5984 (license perl-license)))
5985
5986 (define-public perl-memoize-expirelru
5987 (package
5988 (name "perl-memoize-expirelru")
5989 (version "0.56")
5990 (source
5991 (origin
5992 (method url-fetch)
5993 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
5994 "Memoize-ExpireLRU-" version ".tar.gz"))
5995 (sha256
5996 (base32
5997 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
5998 (build-system perl-build-system)
5999 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
6000 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
6001 (description "This module implements an expiry policy for Memoize that
6002 follows LRU semantics, that is, the last n results, where n is specified as
6003 the argument to the CACHESIZE parameter, will be cached.")
6004 (license (package-license perl))))
6005
6006 (define-public perl-mime-charset
6007 (package
6008 (name "perl-mime-charset")
6009 (version "1.012.2")
6010 (source (origin
6011 (method url-fetch)
6012 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
6013 "MIME-Charset-" version ".tar.gz"))
6014 (sha256
6015 (base32
6016 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
6017 (build-system perl-build-system)
6018 (home-page "https://metacpan.org/release/MIME-Charset")
6019 (synopsis "Charset information for MIME messages")
6020 (description
6021 "@code{MIME::Charset} provides information about character sets used for
6022 MIME messages on Internet.")
6023 (license (package-license perl))))
6024
6025 (define-public perl-mime-tools
6026 (package
6027 (name "perl-mime-tools")
6028 (version "5.509")
6029 (source
6030 (origin
6031 (method url-fetch)
6032 (uri (string-append
6033 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
6034 version
6035 ".tar.gz"))
6036 (sha256
6037 (base32
6038 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
6039 (build-system perl-build-system)
6040 (native-inputs
6041 `(("perl-test-deep" ,perl-test-deep)))
6042 (inputs
6043 `(("perl-convert-binhex" ,perl-convert-binhex)))
6044 (propagated-inputs
6045 `(("perl-mailtools" ,perl-mailtools)))
6046 (home-page
6047 "https://metacpan.org/release/MIME-tools")
6048 (synopsis "Tools to manipulate MIME messages")
6049 (description
6050 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
6051 decoding, and generating single- or multipart (even nested multipart) MIME
6052 messages.")
6053 (license perl-license)))
6054
6055 (define-public perl-mime-types
6056 (package
6057 (name "perl-mime-types")
6058 (version "2.17")
6059 (source
6060 (origin
6061 (method url-fetch)
6062 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
6063 "MIME-Types-" version ".tar.gz"))
6064 (sha256
6065 (base32
6066 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
6067 (build-system perl-build-system)
6068 (home-page "https://metacpan.org/release/MIME-Types")
6069 (synopsis "Definition of MIME types")
6070 (description "This module provides a list of known mime-types, combined
6071 from various sources. For instance, it contains all IANA types and the
6072 knowledge of Apache.")
6073 (license (package-license perl))))
6074
6075 (define-public perl-mixin-linewise
6076 (package
6077 (name "perl-mixin-linewise")
6078 (version "0.108")
6079 (source (origin
6080 (method url-fetch)
6081 (uri (string-append
6082 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
6083 version ".tar.gz"))
6084 (sha256
6085 (base32
6086 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
6087 (build-system perl-build-system)
6088 (inputs
6089 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
6090 ("perl-sub-exporter" ,perl-sub-exporter)))
6091 (home-page "https://metacpan.org/release/Mixin-Linewise")
6092 (synopsis "Write your linewise code for handles; this does the rest")
6093 (description "It's boring to deal with opening files for IO, converting
6094 strings to handle-like objects, and all that. With
6095 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
6096 just write a method to handle handles, and methods for handling strings and
6097 file names are added for you.")
6098 (license (package-license perl))))
6099
6100 (define-public perl-modern-perl
6101 (package
6102 (name "perl-modern-perl")
6103 (version "1.20181021")
6104 (source
6105 (origin
6106 (method url-fetch)
6107 (uri (string-append
6108 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
6109 version ".tar.gz"))
6110 (sha256
6111 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
6112 (build-system perl-build-system)
6113 (native-inputs
6114 `(("perl-module-build" ,perl-module-build)))
6115 (home-page
6116 "https://metacpan.org/release/Modern-Perl")
6117 (synopsis
6118 "Enable all of the features of Modern Perl with one import")
6119 (description "@code{Modern::Perl} provides a simple way to enable
6120 multiple, by now, standard libraries in a Perl program.")
6121 (license (package-license perl))))
6122
6123 (define-public perl-module-build-tiny
6124 (package
6125 (name "perl-module-build-tiny")
6126 (version "0.039")
6127 (source
6128 (origin
6129 (method url-fetch)
6130 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6131 "Module-Build-Tiny-" version ".tar.gz"))
6132 (sha256
6133 (base32
6134 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
6135 (build-system perl-build-system)
6136 (native-inputs
6137 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6138 ("perl-extutils-config" ,perl-extutils-config)
6139 ("perl-extutils-helpers" ,perl-extutils-helpers)
6140 ("perl-test-harness" ,perl-test-harness)))
6141 (propagated-inputs
6142 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6143 ("perl-extutils-config" ,perl-extutils-config)
6144 ("perl-extutils-helpers" ,perl-extutils-helpers)
6145 ("perl-test-harness" ,perl-test-harness)))
6146 (home-page "https://metacpan.org/release/Module-Build-Tiny")
6147 (synopsis "Tiny replacement for Module::Build")
6148 (description "Many Perl distributions use a Build.PL file instead of a
6149 Makefile.PL file to drive distribution configuration, build, test and
6150 installation. Traditionally, Build.PL uses Module::Build as the underlying
6151 build system. This module provides a simple, lightweight, drop-in
6152 replacement. Whereas Module::Build has over 6,700 lines of code; this module
6153 has less than 120, yet supports the features needed by most distributions.")
6154 (license (package-license perl))))
6155
6156 (define-public perl-module-build-withxspp
6157 (package
6158 (name "perl-module-build-withxspp")
6159 (version "0.14")
6160 (source
6161 (origin
6162 (method url-fetch)
6163 (uri (string-append
6164 "mirror://cpan/authors/id/S/SM/SMUELLER/Module-Build-WithXSpp-"
6165 version
6166 ".tar.gz"))
6167 (sha256
6168 (base32
6169 "0d39fjg9c0n820bk3fb50vvlwhdny4hdl69xmlyzql5xzp4cicsk"))))
6170 (build-system perl-build-system)
6171 (native-inputs
6172 `(("perl-module-build" ,perl-module-build)))
6173 (propagated-inputs
6174 `(("perl-extutils-cppguess" ,perl-extutils-cppguess)
6175 ("perl-extutils-xspp" ,perl-extutils-xspp)
6176 ("perl-module-build" ,perl-module-build)))
6177 (home-page
6178 "https://metacpan.org/release/Module-Build-WithXSpp")
6179 (synopsis
6180 "The module provides an XS++ enhanced flavour of Module::Build")
6181 (description "This subclass of Module::Build adds some tools and
6182 processes to make it easier to use for wrapping C++ using XS++
6183 (ExtUtils::XSpp).")
6184 (license (package-license perl))))
6185
6186 (define-public perl-module-build-xsutil
6187 (package
6188 (name "perl-module-build-xsutil")
6189 (version "0.16")
6190 (source (origin
6191 (method url-fetch)
6192 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
6193 "Module-Build-XSUtil-" version ".tar.gz"))
6194 (sha256
6195 (base32
6196 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
6197 (build-system perl-build-system)
6198 (native-inputs
6199 `(("perl-capture-tiny" ,perl-capture-tiny)
6200 ("perl-cwd-guard" ,perl-cwd-guard)
6201 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
6202 ("perl-module-build" ,perl-module-build)))
6203 (propagated-inputs
6204 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
6205 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
6206 (synopsis "Module::Build class for building XS modules")
6207 (description
6208 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
6209 for support building XS modules.
6210
6211 This is a list of a new parameters in the @code{Module::Build::new} method:
6212
6213 @enumerate
6214 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
6215 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
6216 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
6217 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
6218 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
6219 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
6220 @file{ppport.h}, and defines some portability stuff which are not supported by
6221 @file{ppport.h}.
6222
6223 It is ported from @code{Module::Install::XSUtil}.
6224 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
6225 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
6226 debug options.
6227 @end enumerate")
6228 (license (package-license perl))))
6229
6230 (define-public perl-module-find
6231 (package
6232 (name "perl-module-find")
6233 (version "0.13")
6234 (source
6235 (origin
6236 (method url-fetch)
6237 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
6238 "Module-Find-" version ".tar.gz"))
6239 (sha256
6240 (base32
6241 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
6242 (build-system perl-build-system)
6243 (home-page "https://metacpan.org/release/Module-Find")
6244 (synopsis "Find and use installed modules in a (sub)category")
6245 (description "Module::Find lets you find and use modules in categories.
6246 This can be useful for auto-detecting driver or plugin modules. You can
6247 differentiate between looking in the category itself or in all
6248 subcategories.")
6249 (license (package-license perl))))
6250
6251 (define-public perl-module-implementation
6252 (package
6253 (name "perl-module-implementation")
6254 (version "0.09")
6255 (source
6256 (origin
6257 (method url-fetch)
6258 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6259 "Module-Implementation-" version ".tar.gz"))
6260 (sha256
6261 (base32
6262 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
6263 (build-system perl-build-system)
6264 (native-inputs
6265 `(("perl-test-fatal" ,perl-test-fatal)
6266 ("perl-test-requires" ,perl-test-requires)))
6267 (propagated-inputs
6268 `(("perl-module-runtime" ,perl-module-runtime)
6269 ("perl-try-tiny" ,perl-try-tiny)))
6270 (home-page "https://metacpan.org/release/Module-Implementation")
6271 (synopsis "Loads alternate underlying implementations for a module")
6272 (description "This module abstracts out the process of choosing one of
6273 several underlying implementations for a module. This can be used to provide
6274 XS and pure Perl implementations of a module, or it could be used to load an
6275 implementation for a given OS or any other case of needing to provide multiple
6276 implementations.")
6277 (license artistic2.0)))
6278
6279 (define-public perl-module-install
6280 (package
6281 (name "perl-module-install")
6282 (version "1.19")
6283 (source
6284 (origin
6285 (method url-fetch)
6286 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6287 "Module-Install-" version ".tar.gz"))
6288 (sha256
6289 (base32
6290 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
6291 (build-system perl-build-system)
6292 (native-inputs
6293 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
6294 (propagated-inputs
6295 `(("perl-archive-zip" ,perl-archive-zip)
6296 ("perl-file-homedir" ,perl-file-homedir)
6297 ("perl-file-remove" ,perl-file-remove)
6298 ("perl-json" ,perl-json)
6299 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
6300 ;; would cause a circular dependency with (gnu packages web), so we
6301 ;; leave it out. It may be resolved at runtime, however.
6302 ;("perl-libwww-perl" ,perl-libwww-perl)
6303 ("perl-module-scandeps" ,perl-module-scandeps)
6304 ("perl-par-dist" ,perl-par-dist)
6305 ("perl-yaml-tiny" ,perl-yaml-tiny)))
6306 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
6307 ;; character handling.
6308 (arguments `(#:tests? #f))
6309 (home-page "https://metacpan.org/release/Module-Install")
6310 (synopsis "Standalone, extensible Perl module installer")
6311 (description "Module::Install is a package for writing installers for
6312 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
6313 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
6314 installation version 5.005 or newer.")
6315 (license (package-license perl))))
6316
6317 (define-public perl-module-manifest
6318 (package
6319 (name "perl-module-manifest")
6320 (version "1.09")
6321 (source
6322 (origin
6323 (method url-fetch)
6324 (uri (string-append
6325 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
6326 version ".tar.gz"))
6327 (sha256
6328 (base32
6329 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
6330 (build-system perl-build-system)
6331 (native-inputs
6332 `(("perl-test-exception" ,perl-test-exception)
6333 ("perl-test-warn" ,perl-test-warn)))
6334 (propagated-inputs
6335 `(("perl-params-util" ,perl-params-util)))
6336 (home-page "https://metacpan.org/release/Module-Manifest")
6337 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
6338 (description
6339 "@code{Module::Manifest} is a simple utility module created originally for
6340 use in @code{Module::Inspector}.
6341
6342 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
6343 examine the contents, and perform some simple tasks. It can also load the
6344 @file{MANIFEST.SKIP} file and check that.")
6345 (license perl-license)))
6346
6347 (define-public perl-module-pluggable
6348 (package
6349 (name "perl-module-pluggable")
6350 (version "5.2")
6351 (source
6352 (origin
6353 (method url-fetch)
6354 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
6355 "Module-Pluggable-" version ".tar.gz"))
6356 (sha256
6357 (base32
6358 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
6359 (patches (search-patches "perl-module-pluggable-search.patch"))))
6360 (build-system perl-build-system)
6361 (home-page "https://metacpan.org/release/Module-Pluggable")
6362 (synopsis "Give your Perl module the ability to have plugins")
6363 (description "This module provides a simple but extensible way of having
6364 @code{plugins} for your Perl module.")
6365 (license (package-license perl))))
6366
6367 (define-public perl-module-runtime
6368 (package
6369 (name "perl-module-runtime")
6370 (version "0.016")
6371 (source
6372 (origin
6373 (method url-fetch)
6374 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
6375 "Module-Runtime-" version ".tar.gz"))
6376 (sha256
6377 (base32
6378 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
6379 (build-system perl-build-system)
6380 (native-inputs `(("perl-module-build" ,perl-module-build)))
6381 (home-page "https://metacpan.org/release/Module-Runtime")
6382 (synopsis "Perl runtime module handling")
6383 (description "The functions exported by this module deal with runtime
6384 handling of Perl modules, which are normally handled at compile time.")
6385 (license (package-license perl))))
6386
6387 (define-public perl-module-runtime-conflicts
6388 (package
6389 (name "perl-module-runtime-conflicts")
6390 (version "0.003")
6391 (source
6392 (origin
6393 (method url-fetch)
6394 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6395 "Module-Runtime-Conflicts-" version ".tar.gz"))
6396 (sha256
6397 (base32
6398 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
6399 (build-system perl-build-system)
6400 (native-inputs
6401 `(("perl-module-build" ,perl-module-build)))
6402 (propagated-inputs
6403 `(("perl-module-runtime" ,perl-module-runtime)
6404 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
6405 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
6406 (synopsis "Provide information on conflicts for Module::Runtime")
6407 (description "This module provides conflicts checking for Module::Runtime,
6408 which had a recent release that broke some versions of Moose. It is called
6409 from Moose::Conflicts and moose-outdated.")
6410 (license (package-license perl))))
6411
6412 (define-public perl-module-scandeps
6413 (package
6414 (name "perl-module-scandeps")
6415 (version "1.27")
6416 (source
6417 (origin
6418 (method url-fetch)
6419 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6420 "Module-ScanDeps-" version ".tar.gz"))
6421 (sha256
6422 (base32
6423 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
6424 (build-system perl-build-system)
6425 (native-inputs
6426 `(("perl-test-requires" ,perl-test-requires)))
6427 (home-page "https://metacpan.org/release/Module-ScanDeps")
6428 (synopsis "Recursively scan Perl code for dependencies")
6429 (description "Module::ScanDeps is a module to recursively scan Perl
6430 programs for dependencies.")
6431 (license (package-license perl))))
6432
6433 (define-public perl-module-util
6434 (package
6435 (name "perl-module-util")
6436 (version "1.09")
6437 (source
6438 (origin
6439 (method url-fetch)
6440 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
6441 "Module-Util-" version ".tar.gz"))
6442 (sha256
6443 (base32
6444 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
6445 (build-system perl-build-system)
6446 (native-inputs
6447 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
6448 (home-page "https://metacpan.org/release/Module-Util")
6449 (synopsis "Module name tools and transformations")
6450 (description "This module provides a few useful functions for manipulating
6451 module names. Its main aim is to centralise some of the functions commonly
6452 used by modules that manipulate other modules in some way, like converting
6453 module names to relative paths.")
6454 (license (package-license perl))))
6455
6456 (define-public perl-moo
6457 (package
6458 (name "perl-moo")
6459 (version "1.007000")
6460 (source
6461 (origin
6462 (method url-fetch)
6463 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6464 "Moo-" version ".tar.gz"))
6465 (sha256
6466 (base32
6467 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
6468 (build-system perl-build-system)
6469 (native-inputs
6470 `(("perl-test-fatal" ,perl-test-fatal)))
6471 (propagated-inputs
6472 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
6473 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
6474 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6475 ("perl-import-into" ,perl-import-into)
6476 ("perl-module-runtime" ,perl-module-runtime)
6477 ("perl-role-tiny" ,perl-role-tiny)
6478 ("perl-strictures" ,perl-strictures)))
6479 (home-page "https://metacpan.org/release/Moo")
6480 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
6481 (description "Moo is an extremely light-weight Object Orientation system.
6482 It allows one to concisely define objects and roles with a convenient syntax
6483 that avoids the details of Perl's object system. Moo contains a subset of
6484 Moose and is optimised for rapid startup.")
6485 (license (package-license perl))))
6486
6487 ;; Some packages don't yet work with this newer version of ‘Moo’.
6488 (define-public perl-moo-2
6489 (package
6490 (inherit perl-moo)
6491 (name "perl-moo-2")
6492 (version "2.003006")
6493 (source
6494 (origin
6495 (method url-fetch)
6496 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6497 "Moo-" version ".tar.gz"))
6498 (sha256
6499 (base32 "0wi4gyp5kn4lbags0hrax3c9jj9spxg4d11fbrdh0ican4m0kcmw"))))
6500 (propagated-inputs
6501 `(("perl-role-tiny" ,perl-role-tiny-2)
6502 ("perl-sub-name" ,perl-sub-name)
6503 ("perl-sub-quote" ,perl-sub-quote)
6504 ("perl-strictures" ,perl-strictures-2)
6505 ,@(alist-delete "perl-strictures"
6506 (alist-delete "perl-role-tiny"
6507 (package-propagated-inputs perl-moo)))))
6508 (arguments
6509 `(#:phases
6510 (modify-phases %standard-phases
6511 (add-before 'configure 'set-perl-search-path
6512 (lambda _
6513 ;; Use perl-strictures for testing.
6514 (setenv "MOO_FATAL_WARNINGS" "=1")
6515 #t)))))))
6516
6517 (define-public perl-moose
6518 (package
6519 (name "perl-moose")
6520 (version "2.2012")
6521 (source (origin
6522 (method url-fetch)
6523 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6524 "Moose-" version ".tar.gz"))
6525 (sha256
6526 (base32
6527 "0s9m2pskc8h1k94pbvx0lvf0xgv9xca349isbcsrqdqnkmxf9fs6"))))
6528 (build-system perl-build-system)
6529 (native-inputs
6530 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6531 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6532 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
6533 ("perl-test-fatal" ,perl-test-fatal)
6534 ("perl-test-requires" ,perl-test-requires)
6535 ("perl-test-warnings" ,perl-test-warnings)))
6536 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
6537 ;; # === Other Modules ===
6538 ;; #
6539 ;; # Module Want Have
6540 ;; # ---------------------------- ---- -------
6541 ;; # Algorithm::C3 any missing
6542 ;; # DBM::Deep any missing
6543 ;; # DateTime any missing
6544 ;; # DateTime::Calendar::Mayan any missing
6545 ;; # DateTime::Format::MySQL any missing
6546 ;; # Declare::Constraints::Simple any missing
6547 ;; # Dist::CheckConflicts any 0.11
6548 ;; # HTTP::Headers any missing
6549 ;; # IO::File any 1.16
6550 ;; # IO::String any missing
6551 ;; # Locale::US any missing
6552 ;; # Module::Refresh any missing
6553 ;; # MooseX::NonMoose any missing
6554 ;; # Params::Coerce any missing
6555 ;; # Regexp::Common any missing
6556 ;; # SUPER any missing
6557 ;; # Test::Deep any missing
6558 ;; # Test::DependentModules any missing
6559 ;; # Test::LeakTrace any missing
6560 ;; # Test::Output any missing
6561 ;; # URI any missing
6562 (propagated-inputs
6563 `(("perl-class-load" ,perl-class-load)
6564 ("perl-class-load-xs" ,perl-class-load-xs)
6565 ("perl-data-optlist" ,perl-data-optlist)
6566 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6567 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
6568 ("perl-devel-partialdump" ,perl-devel-partialdump)
6569 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
6570 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6571 ("perl-eval-closure" ,perl-eval-closure)
6572 ("perl-list-moreutils" ,perl-list-moreutils)
6573 ("perl-module-runtime" ,perl-module-runtime)
6574 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
6575 ("perl-mro-compat" ,perl-mro-compat)
6576 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
6577 ("perl-package-stash" ,perl-package-stash)
6578 ("perl-package-stash-xs" ,perl-package-stash-xs)
6579 ("perl-params-util" ,perl-params-util)
6580 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
6581 ("perl-sub-exporter" ,perl-sub-exporter)
6582 ("perl-sub-name" ,perl-sub-name)
6583 ("perl-task-weaken" ,perl-task-weaken)
6584 ("perl-try-tiny" ,perl-try-tiny)))
6585 (home-page "https://metacpan.org/release/Moose")
6586 (synopsis "Postmodern object system for Perl 5")
6587 (description
6588 "Moose is a complete object system for Perl 5. It provides keywords for
6589 attribute declaration, object construction, inheritance, and maybe more. With
6590 Moose, you define your class declaratively, without needing to know about
6591 blessed hashrefs, accessor methods, and so on. You can concentrate on the
6592 logical structure of your classes, focusing on \"what\" rather than \"how\".
6593 A class definition with Moose reads like a list of very concise English
6594 sentences.")
6595 (license (package-license perl))))
6596
6597 (define-public perl-moosex-emulate-class-accessor-fast
6598 (package
6599 (name "perl-moosex-emulate-class-accessor-fast")
6600 (version "0.009032")
6601 (source
6602 (origin
6603 (method url-fetch)
6604 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6605 "MooseX-Emulate-Class-Accessor-Fast-"
6606 version ".tar.gz"))
6607 (sha256
6608 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
6609 (build-system perl-build-system)
6610 (native-inputs
6611 `(("perl-module-install" ,perl-module-install)
6612 ("perl-test-exception" ,perl-test-exception)))
6613 (propagated-inputs
6614 `(("perl-moose" ,perl-moose)))
6615 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
6616 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
6617 (description "This module attempts to emulate the behavior of
6618 Class::Accessor::Fast as accurately as possible using the Moose attribute
6619 system. The public API of Class::Accessor::Fast is wholly supported, but the
6620 private methods are not.")
6621 (license (package-license perl))))
6622
6623 (define-public perl-moosex-getopt
6624 (package
6625 (name "perl-moosex-getopt")
6626 (version "0.74")
6627 (source
6628 (origin
6629 (method url-fetch)
6630 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6631 "MooseX-Getopt-" version ".tar.gz"))
6632 (sha256
6633 (base32 "091crga5gjyhj2lz55w3ba37xq6pmjg5dx5xccsrzghy8cxxzq0x"))))
6634 (build-system perl-build-system)
6635 (native-inputs
6636 `(("perl-module-build" ,perl-module-build)
6637 ("perl-module-build-tiny" ,perl-module-build-tiny)
6638 ("perl-path-tiny" ,perl-path-tiny)
6639 ("perl-test-deep" ,perl-test-deep)
6640 ("perl-test-fatal" ,perl-test-fatal)
6641 ("perl-test-needs" ,perl-test-needs)
6642 ("perl-test-requires" ,perl-test-requires)
6643 ("perl-test-trap" ,perl-test-trap)
6644 ("perl-test-warnings" ,perl-test-warnings)))
6645 (propagated-inputs
6646 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6647 ("perl-moose" ,perl-moose)
6648 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
6649 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6650 (home-page "https://metacpan.org/release/MooseX-Getopt")
6651 (synopsis "Moose role for processing command line options")
6652 (description "This is a Moose role which provides an alternate constructor
6653 for creating objects using parameters passed in from the command line.")
6654 (license (package-license perl))))
6655
6656 (define-public perl-moosex-markasmethods
6657 (package
6658 (name "perl-moosex-markasmethods")
6659 (version "0.15")
6660 (source
6661 (origin
6662 (method url-fetch)
6663 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
6664 "MooseX-MarkAsMethods-" version ".tar.gz"))
6665 (sha256
6666 (base32
6667 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
6668 (build-system perl-build-system)
6669 (inputs
6670 `(("perl-moose" ,perl-moose)
6671 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6672 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
6673 (synopsis "Mark overload code symbols as methods")
6674 (description "MooseX::MarkAsMethods allows one to easily mark certain
6675 functions as Moose methods. This will allow other packages such as
6676 namespace::autoclean to operate without blowing away your overloads. After
6677 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
6678 being methods, and class extension as well as composition from roles with
6679 overloads will \"just work\".")
6680 (license lgpl2.1)))
6681
6682 (define-public perl-moosex-methodattributes
6683 (package
6684 (name "perl-moosex-methodattributes")
6685 (version "0.31")
6686 (source
6687 (origin
6688 (method url-fetch)
6689 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6690 "MooseX-MethodAttributes-" version ".tar.gz"))
6691 (sha256
6692 (base32
6693 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
6694 (build-system perl-build-system)
6695 (native-inputs
6696 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6697 ("perl-test-fatal" ,perl-test-fatal)
6698 ("perl-test-requires" ,perl-test-requires)))
6699 (propagated-inputs
6700 `(("perl-moose" ,perl-moose)
6701 ("perl-moosex-types" ,perl-moosex-types)
6702 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6703 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
6704 (synopsis "Code attribute introspection")
6705 (description "This module allows code attributes of methods to be
6706 introspected using Moose meta method objects.")
6707 (license (package-license perl))))
6708
6709 (define-public perl-moosex-nonmoose
6710 (package
6711 (name "perl-moosex-nonmoose")
6712 (version "0.26")
6713 (source
6714 (origin
6715 (method url-fetch)
6716 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6717 "MooseX-NonMoose-" version ".tar.gz"))
6718 (sha256
6719 (base32
6720 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
6721 (build-system perl-build-system)
6722 (native-inputs
6723 `(("perl-moose" ,perl-moose)
6724 ("perl-test-fatal" ,perl-test-fatal)))
6725 (propagated-inputs
6726 `(("perl-list-moreutils" ,perl-list-moreutils)
6727 ("perl-module-runtime" ,perl-module-runtime)
6728 ("perl-moose" ,perl-moose)
6729 ("perl-try-tiny" ,perl-try-tiny)))
6730 (home-page "https://metacpan.org/release/MooseX-NonMoose")
6731 (synopsis "Subclassing of non-Moose classes")
6732 (description "MooseX::NonMoose allows for easily subclassing non-Moose
6733 classes with Moose, taking care of the details connected with doing this, such
6734 as setting up proper inheritance from Moose::Object and installing (and
6735 inlining, at make_immutable time) a constructor that makes sure things like
6736 BUILD methods are called. It tries to be as non-intrusive as possible.")
6737 (license (package-license perl))))
6738
6739 (define-public perl-moosex-params-validate
6740 (package
6741 (name "perl-moosex-params-validate")
6742 (version "0.21")
6743 (source
6744 (origin
6745 (method url-fetch)
6746 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6747 "MooseX-Params-Validate-" version ".tar.gz"))
6748 (sha256
6749 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
6750 (build-system perl-build-system)
6751 (native-inputs
6752 `(("perl-moose" ,perl-moose)
6753 ("perl-test-fatal" ,perl-test-fatal)))
6754 (propagated-inputs
6755 `(("perl-devel-caller" ,perl-devel-caller)
6756 ("perl-moose" ,perl-moose)
6757 ("perl-params-validate" ,perl-params-validate)
6758 ("perl-sub-exporter" ,perl-sub-exporter)))
6759 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
6760 (synopsis "Extension of Params::Validate using Moose's types")
6761 (description "This module fills a gap in Moose by adding method parameter
6762 validation to Moose.")
6763 (license (package-license perl))))
6764
6765 (define-public perl-moosex-relatedclassroles
6766 (package
6767 (name "perl-moosex-relatedclassroles")
6768 (version "0.004")
6769 (source
6770 (origin
6771 (method url-fetch)
6772 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
6773 "MooseX-RelatedClassRoles-" version ".tar.gz"))
6774 (sha256
6775 (base32
6776 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
6777 (build-system perl-build-system)
6778 (propagated-inputs
6779 `(("perl-moose" ,perl-moose)
6780 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
6781 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
6782 (synopsis "Apply roles to a related Perl class")
6783 (description "This module applies roles to make a subclass instead of
6784 manually setting up a subclass.")
6785 (license (package-license perl))))
6786
6787 (define-public perl-moosex-role-parameterized
6788 (package
6789 (name "perl-moosex-role-parameterized")
6790 (version "1.10")
6791 (source
6792 (origin
6793 (method url-fetch)
6794 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6795 "MooseX-Role-Parameterized-" version ".tar.gz"))
6796 (sha256
6797 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
6798 (build-system perl-build-system)
6799 (native-inputs
6800 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6801 ("perl-module-build" ,perl-module-build)
6802 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
6803 ("perl-test-fatal" ,perl-test-fatal)
6804 ("perl-test-requires" ,perl-test-requires)))
6805 (propagated-inputs
6806 `(("perl-moose" ,perl-moose)
6807 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6808 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
6809 (synopsis "Moose roles with composition parameters")
6810 (description "Because Moose roles serve many different masters, they
6811 usually provide only the least common denominator of functionality. To
6812 empower roles further, more configurability than -alias and -excludes is
6813 required. Perhaps your role needs to know which method to call when it is
6814 done processing, or what default value to use for its url attribute.
6815 Parameterized roles offer a solution to these (and other) kinds of problems.")
6816 (license (package-license perl))))
6817
6818 (define-public perl-moosex-role-withoverloading
6819 (package
6820 (name "perl-moosex-role-withoverloading")
6821 (version "0.17")
6822 (source
6823 (origin
6824 (method url-fetch)
6825 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6826 "MooseX-Role-WithOverloading-" version ".tar.gz"))
6827 (sha256
6828 (base32
6829 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
6830 (build-system perl-build-system)
6831 (propagated-inputs
6832 `(("perl-aliased" ,perl-aliased)
6833 ("perl-moose" ,perl-moose)
6834 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6835 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
6836 (synopsis "Roles which support overloading")
6837 (description "MooseX::Role::WithOverloading allows you to write a
6838 Moose::Role which defines overloaded operators and allows those overload
6839 methods to be composed into the classes/roles/instances it's compiled to,
6840 where plain Moose::Roles would lose the overloading.")
6841 (license (package-license perl))))
6842
6843 (define-public perl-moosex-semiaffordanceaccessor
6844 (package
6845 (name "perl-moosex-semiaffordanceaccessor")
6846 (version "0.10")
6847 (source
6848 (origin
6849 (method url-fetch)
6850 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6851 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
6852 (sha256
6853 (base32
6854 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
6855 (build-system perl-build-system)
6856 (propagated-inputs
6857 `(("perl-moose" ,perl-moose)))
6858 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
6859 (synopsis "Name your accessors foo() and set_foo()")
6860 (description "This module does not provide any methods. Simply loading it
6861 changes the default naming policy for the loading class so that accessors are
6862 separated into get and set methods. The get methods have the same name as the
6863 accessor, while set methods are prefixed with \"_set_\".")
6864 (license artistic2.0)))
6865
6866 (define-public perl-moosex-strictconstructor
6867 (package
6868 (name "perl-moosex-strictconstructor")
6869 (version "0.19")
6870 (source
6871 (origin
6872 (method url-fetch)
6873 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6874 "MooseX-StrictConstructor-" version ".tar.gz"))
6875 (sha256
6876 (base32
6877 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
6878 (build-system perl-build-system)
6879 (native-inputs
6880 `(("perl-moose" ,perl-moose)
6881 ("perl-test-fatal" ,perl-test-fatal)))
6882 (propagated-inputs
6883 `(("perl-moose" ,perl-moose)
6884 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6885 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
6886 (synopsis "Strict object constructors for Moose")
6887 (description "Simply loading this module makes your constructors
6888 \"strict\". If your constructor is called with an attribute init argument
6889 that your class does not declare, then it calls Moose->throw_error().")
6890 (license artistic2.0)))
6891
6892 (define-public perl-moosex-traits-pluggable
6893 (package
6894 (name "perl-moosex-traits-pluggable")
6895 (version "0.12")
6896 (source
6897 (origin
6898 (method url-fetch)
6899 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
6900 "MooseX-Traits-Pluggable-" version ".tar.gz"))
6901 (sha256
6902 (base32
6903 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
6904 (build-system perl-build-system)
6905 (native-inputs
6906 `(("perl-moose" ,perl-moose)
6907 ("perl-test-exception" ,perl-test-exception)))
6908 (propagated-inputs
6909 `(("perl-class-load" ,perl-class-load)
6910 ("perl-list-moreutils" ,perl-list-moreutils)
6911 ("perl-moose" ,perl-moose)
6912 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6913 (home-page
6914 "https://metacpan.org/release/MooseX-Traits-Pluggable")
6915 (synopsis "Trait loading and resolution for Moose")
6916 (description "Adds support on top of MooseX::Traits for class precedence
6917 search for traits and some extra attributes.")
6918 (license (package-license perl))))
6919
6920 (define-public perl-moosex-types
6921 (package
6922 (name "perl-moosex-types")
6923 (version "0.45")
6924 (source
6925 (origin
6926 (method url-fetch)
6927 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6928 "MooseX-Types-" version ".tar.gz"))
6929 (sha256
6930 (base32
6931 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
6932 (build-system perl-build-system)
6933 (native-inputs
6934 `(("perl-module-build" ,perl-module-build)
6935 ("perl-test-fatal" ,perl-test-fatal)
6936 ("perl-test-requires" ,perl-test-requires)))
6937 (propagated-inputs
6938 `(("perl-carp-clan" ,perl-carp-clan)
6939 ("perl-moose" ,perl-moose)
6940 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6941 (home-page "https://metacpan.org/release/MooseX-Types")
6942 (synopsis "Organise your Moose types in libraries")
6943 (description "This package lets you declare types using short names, but
6944 behind the scenes it namespaces all your type declarations, effectively
6945 prevent name clashes between packages.")
6946 (license (package-license perl))))
6947
6948 (define-public perl-moosex-types-datetime
6949 (package
6950 (name "perl-moosex-types-datetime")
6951 (version "0.13")
6952 (source
6953 (origin
6954 (method url-fetch)
6955 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6956 "MooseX-Types-DateTime-" version ".tar.gz"))
6957 (sha256
6958 (base32
6959 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
6960 (build-system perl-build-system)
6961 (native-inputs
6962 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6963 ("perl-moose" ,perl-moose)
6964 ("perl-test-fatal" ,perl-test-fatal)
6965 ("perl-test-simple" ,perl-test-simple)))
6966 (propagated-inputs
6967 `(("perl-datetime" ,perl-datetime)
6968 ("perl-datetime-locale" ,perl-datetime-locale)
6969 ("perl-datetime-timezone" ,perl-datetime-timezone)
6970 ("perl-moose" ,perl-moose)
6971 ("perl-moosex-types" ,perl-moosex-types)
6972 ("perl-namespace-clean" ,perl-namespace-clean)))
6973 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
6974 (synopsis "DateTime related constraints and coercions for Moose")
6975 (description "This module packages several Moose::Util::TypeConstraints
6976 with coercions, designed to work with the DateTime suite of objects.")
6977 (license (package-license perl))))
6978
6979 (define-public perl-moosex-types-datetime-morecoercions
6980 (package
6981 (name "perl-moosex-types-datetime-morecoercions")
6982 (version "0.15")
6983 (source
6984 (origin
6985 (method url-fetch)
6986 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6987 "MooseX-Types-DateTime-MoreCoercions-"
6988 version ".tar.gz"))
6989 (sha256
6990 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
6991 (build-system perl-build-system)
6992 (native-inputs
6993 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6994 ("perl-test-fatal" ,perl-test-fatal)
6995 ("perl-test-simple" ,perl-test-simple)))
6996 (propagated-inputs
6997 `(("perl-datetime" ,perl-datetime)
6998 ("perl-datetimex-easy" ,perl-datetimex-easy)
6999 ("perl-moose" ,perl-moose)
7000 ("perl-moosex-types" ,perl-moosex-types)
7001 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
7002 ("perl-namespace-clean" ,perl-namespace-clean)
7003 ("perl-time-duration-parse" ,perl-time-duration-parse)))
7004 (home-page
7005 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
7006 (synopsis "Extensions to MooseX::Types::DateTime")
7007 (description "This module builds on MooseX::Types::DateTime to add
7008 additional custom types and coercions. Since it builds on an existing type,
7009 all coercions and constraints are inherited.")
7010 (license (package-license perl))))
7011
7012 (define-public perl-moosex-types-loadableclass
7013 (package
7014 (name "perl-moosex-types-loadableclass")
7015 (version "0.015")
7016 (source
7017 (origin
7018 (method url-fetch)
7019 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7020 "MooseX-Types-LoadableClass-" version ".tar.gz"))
7021 (sha256
7022 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
7023 (build-system perl-build-system)
7024 (native-inputs
7025 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7026 ("perl-namespace-clean" ,perl-namespace-clean)
7027 ("perl-moose" ,perl-moose)
7028 ("perl-test-fatal" ,perl-test-fatal)
7029 ("perl-class-load" ,perl-class-load)))
7030 (propagated-inputs
7031 `(("perl-module-runtime" ,perl-module-runtime)
7032 ("perl-moosex-types" ,perl-moosex-types)
7033 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7034 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
7035 (synopsis "ClassName type constraints for Moose")
7036 (description "MooseX::Types::LoadableClass provides a ClassName type
7037 constraint with coercion to load the class.")
7038 (license (package-license perl))))
7039
7040 (define-public perl-moox
7041 (package
7042 (name "perl-moox")
7043 (version "0.101")
7044 (source
7045 (origin
7046 (method url-fetch)
7047 (uri (string-append
7048 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
7049 version
7050 ".tar.gz"))
7051 (sha256
7052 (base32
7053 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
7054 (build-system perl-build-system)
7055 (inputs
7056 `(("perl-data-optlist" ,perl-data-optlist)
7057 ("perl-import-into" ,perl-import-into)
7058 ("perl-module-runtime" ,perl-module-runtime)
7059 ("perl-moo" ,perl-moo)))
7060 (home-page "https://metacpan.org/release/MooX")
7061 (synopsis
7062 "Using Moo and MooX:: packages the most lazy way")
7063 (description "Contains the MooX and MooX::Role packages.")
7064 (license perl-license)))
7065
7066 (define-public perl-moox-cmd
7067 (package
7068 (name "perl-moox-cmd")
7069 (version "0.017")
7070 (source
7071 (origin
7072 (method url-fetch)
7073 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
7074 version ".tar.gz"))
7075 (sha256
7076 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
7077 (build-system perl-build-system)
7078 (native-inputs
7079 `(("perl-capture-tiny" ,perl-capture-tiny)
7080 ("perl-list-moreutils" ,perl-list-moreutils)))
7081 (propagated-inputs
7082 `(("perl-module-pluggable" ,perl-module-pluggable)
7083 ("perl-module-runtime" ,perl-module-runtime)
7084 ("perl-moo" ,perl-moo)
7085 ("perl-package-stash" ,perl-package-stash)
7086 ("perl-params-util" ,perl-params-util)
7087 ("perl-regexp-common" ,perl-regexp-common)))
7088 (home-page "https://metacpan.org/release/MooX-Cmd")
7089 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
7090 (description "This package eases the writing of command line utilities,
7091 accepting commands and subcommands and so on. These commands can form a tree,
7092 which is mirrored in the package structure. On invocation, each command along
7093 the path through the tree (starting from the top-level command through to the
7094 most specific one) is instantiated.")
7095 (license (package-license perl))))
7096
7097 (define-public perl-moox-configfromfile
7098 (package
7099 (name "perl-moox-configfromfile")
7100 (version "0.008")
7101 (source
7102 (origin
7103 (method url-fetch)
7104 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7105 "MooX-ConfigFromFile-" version ".tar.gz"))
7106 (sha256
7107 (base32
7108 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
7109 (build-system perl-build-system)
7110 (native-inputs
7111 `(("perl-hash-merge" ,perl-hash-merge)
7112 ("perl-json" ,perl-json)
7113 ("perl-moox-cmd" ,perl-moox-cmd)))
7114 (propagated-inputs
7115 `(("perl-config-any" ,perl-config-any)
7116 ("perl-file-configdir" ,perl-file-configdir)
7117 ("perl-file-find-rule" ,perl-file-find-rule)
7118 ("perl-hash-merge" ,perl-hash-merge)
7119 ("perl-moo" ,perl-moo)
7120 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7121 ("perl-namespace-clean" ,perl-namespace-clean)))
7122 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
7123 (synopsis "Moo eXtension for initializing objects from config file")
7124 (description "This module is intended to easily load initialization values
7125 for attributes on object construction from an appropriate config file. The
7126 building is done in @code{MooX::ConfigFromFile::Role}---using
7127 @code{MooX::ConfigFromFile} ensures that the role is applied.")
7128 (license (package-license perl))))
7129
7130 (define-public perl-moox-file-configdir
7131 (package
7132 (name "perl-moox-file-configdir")
7133 (version "0.007")
7134 (source
7135 (origin
7136 (method url-fetch)
7137 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7138 "MooX-File-ConfigDir-" version ".tar.gz"))
7139 (sha256
7140 (base32
7141 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
7142 (build-system perl-build-system)
7143 (propagated-inputs
7144 `(("perl-file-configdir" ,perl-file-configdir)
7145 ("perl-moo" ,perl-moo)
7146 ("perl-namespace-clean" ,perl-namespace-clean)))
7147 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
7148 (synopsis "Moo eXtension for @code{File::ConfigDir}")
7149 (description "This module is a helper for easily finding configuration
7150 file locations. This information can be used to find a suitable place for
7151 installing configuration files or for finding any piece of settings.")
7152 (license (package-license perl))))
7153
7154 (define-public perl-moox-handlesvia
7155 (package
7156 (name "perl-moox-handlesvia")
7157 (version "0.001008")
7158 (source
7159 (origin
7160 (method url-fetch)
7161 (uri (string-append
7162 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
7163 version
7164 ".tar.gz"))
7165 (sha256
7166 (base32
7167 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
7168 (build-system perl-build-system)
7169 (native-inputs
7170 `(("perl-moox-types-mooselike"
7171 ,perl-moox-types-mooselike)
7172 ("perl-test-exception" ,perl-test-exception)
7173 ("perl-test-fatal" ,perl-test-fatal)))
7174 (inputs
7175 `(("perl-class-method-modifiers"
7176 ,perl-class-method-modifiers)
7177 ("perl-module-runtime" ,perl-module-runtime)
7178 ("perl-moo" ,perl-moo)
7179 ("perl-role-tiny" ,perl-role-tiny)))
7180 (propagated-inputs
7181 `(("perl-data-perl" ,perl-data-perl)))
7182 (home-page
7183 "https://metacpan.org/release/MooX-HandlesVia")
7184 (synopsis "NativeTrait-like behavior for Moo")
7185 (description
7186 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
7187 attribute functionality. It provides a means of proxying functionality from
7188 an external class to the given attribute.")
7189 (license perl-license)))
7190
7191 (define-public perl-moox-late
7192 (package
7193 (name "perl-moox-late")
7194 (version "0.016")
7195 (source
7196 (origin
7197 (method url-fetch)
7198 (uri (string-append
7199 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
7200 version ".tar.gz"))
7201 (sha256
7202 (base32 "0kjy86rrpzfy6w5r9ykjq7njwdnvp7swd6r2k4gfrh3picz3kdhz"))))
7203 (build-system perl-build-system)
7204 (native-inputs
7205 `(("perl-test-fatal" ,perl-test-fatal)
7206 ("perl-test-requires" ,perl-test-requires)))
7207 (inputs
7208 `(("perl-moo" ,perl-moo)
7209 ("perl-moox" ,perl-moox)
7210 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
7211 (propagated-inputs
7212 `(("perl-type-tiny" ,perl-type-tiny)))
7213 (home-page "https://metacpan.org/release/MooX-late")
7214 (synopsis "Easily translate Moose code to Moo")
7215 (description
7216 "MooX::late does the following:
7217 @enumerate
7218 @item Supports isa => $stringytype
7219 @item Supports does => $rolename
7220 @item Supports lazy_build => 1
7221 @item Exports blessed and confess functions to your namespace.
7222 @item Handles certain attribute traits
7223 Currently Hash, Array and Code are supported. This feature requires
7224 MooX::HandlesVia.
7225 @end enumerate")
7226 (license perl-license)))
7227
7228 (define-public perl-moox-options
7229 (package
7230 (name "perl-moox-options")
7231 (version "4.023")
7232 (source
7233 (origin
7234 (method url-fetch)
7235 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
7236 "MooX-Options-" version ".tar.gz"))
7237 (sha256
7238 (base32
7239 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
7240 (build-system perl-build-system)
7241 (native-inputs
7242 `(("perl-capture-tiny" ,perl-capture-tiny)
7243 ("perl-import-into" ,perl-import-into)
7244 ("perl-module-build" ,perl-module-build)
7245 ("perl-moo" ,perl-moo)
7246 ("perl-moose" ,perl-moose)
7247 ("perl-moox-cmd" ,perl-moox-cmd)
7248 ("perl-namespace-clean" ,perl-namespace-clean)
7249 ("perl-role-tiny" ,perl-role-tiny)
7250 ("perl-test-requires" ,perl-test-requires)
7251 ("perl-test-trap" ,perl-test-trap)
7252 ("perl-test-pod" ,perl-test-pod)
7253 ("perl-try-tiny" ,perl-try-tiny)))
7254 (propagated-inputs
7255 `(("perl-config-any" ,perl-config-any)
7256 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7257 ("perl-data-record" ,perl-data-record)
7258 ("perl-file-configdir" ,perl-file-configdir)
7259 ("perl-file-find-rule" ,perl-file-find-rule)
7260 ("perl-file-sharedir" ,perl-file-sharedir)
7261 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
7262 ("perl-json-maybexs" ,perl-json-maybexs)
7263 ("perl-libintl-perl" ,perl-libintl-perl)
7264 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7265 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7266 ("perl-path-class" ,perl-path-class)
7267 ("perl-regexp-common" ,perl-regexp-common)
7268 ("perl-term-size-any" ,perl-term-size-any)
7269 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7270 (home-page "https://metacpan.org/release/MooX-Options")
7271 (synopsis "Explicit Options eXtension for Object Class")
7272 (description "Create a command line tool with your Mo, Moo, Moose objects.
7273 You have an @code{option} keyword to replace the usual @code{has} to
7274 explicitly use your attribute on the command line. The @code{option} keyword
7275 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
7276 generate a command line tool.")
7277 (license (package-license perl))))
7278
7279 (define-public perl-moox-strictconstructor
7280 (package
7281 (name "perl-moox-strictconstructor")
7282 (version "0.010")
7283 (source
7284 (origin
7285 (method url-fetch)
7286 (uri (string-append
7287 "mirror://cpan/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-"
7288 version
7289 ".tar.gz"))
7290 (sha256
7291 (base32
7292 "0vvjgz7xbfmf69yav7sxsxmvklqv835xvh7h47w0apxmlkm9fjgr"))))
7293 (build-system perl-build-system)
7294 (native-inputs
7295 `(("perl-test-fatal" ,perl-test-fatal)))
7296 (propagated-inputs
7297 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
7298 ("perl-moo" ,perl-moo)
7299 ("perl-strictures" ,perl-strictures)))
7300 (home-page "https://metacpan.org/release/MooX-StrictConstructor")
7301 (synopsis "Make Moo-based object constructors blow up on unknown attributes")
7302 (description
7303 "Loading @code{MooX::StrictConstructor} makes your constructors \"strict\".
7304 If your constructor is called with an attribute init argument that your class
7305 does not declare, then it dies.")
7306 (license perl-license)))
7307
7308 (define-public perl-moox-types-mooselike
7309 (package
7310 (name "perl-moox-types-mooselike")
7311 (version "0.29")
7312 (source
7313 (origin
7314 (method url-fetch)
7315 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
7316 "MooX-Types-MooseLike-" version ".tar.gz"))
7317 (sha256
7318 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
7319 (build-system perl-build-system)
7320 (native-inputs
7321 `(("perl-moo" ,perl-moo)
7322 ("perl-test-fatal" ,perl-test-fatal)))
7323 (propagated-inputs
7324 `(("perl-module-runtime" ,perl-module-runtime)
7325 ("perl-strictures" ,perl-strictures)))
7326 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
7327 (synopsis "Moosish types and type builder")
7328 (description "MooX::Types::MooseLike provides a possibility to build your
7329 own set of Moose-like types. These custom types can then be used to describe
7330 fields in Moo-based classes.")
7331 (license (package-license perl))))
7332
7333 (define-public perl-mouse
7334 (package
7335 (name "perl-mouse")
7336 (version "2.5.6")
7337 (source (origin
7338 (method url-fetch)
7339 (uri (string-append
7340 "mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v"
7341 version
7342 ".tar.gz"))
7343 (sha256
7344 (base32
7345 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
7346 (build-system perl-build-system)
7347 (native-inputs
7348 `(("perl-module-build" ,perl-module-build)
7349 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
7350 ("perl-test-exception" ,perl-test-exception)
7351 ("perl-test-fatal" ,perl-test-fatal)
7352 ("perl-test-leaktrace" ,perl-test-leaktrace)
7353 ("perl-test-output" ,perl-test-output)
7354 ("perl-test-requires" ,perl-test-requires)
7355 ("perl-try-tiny" ,perl-try-tiny)))
7356 (home-page "https://github.com/gfx/p5-Mouse")
7357 (synopsis "Fast Moose-compatible object system for perl5")
7358 (description
7359 "Mouse is a @code{Moose} compatible object system that implements a
7360 subset of the functionality for reduced startup time.")
7361 (license (package-license perl))))
7362
7363 (define-public perl-mousex-nativetraits
7364 (package
7365 (name "perl-mousex-nativetraits")
7366 (version "1.09")
7367 (source (origin
7368 (method url-fetch)
7369 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
7370 "MouseX-NativeTraits-" version ".tar.gz"))
7371 (sha256
7372 (base32
7373 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
7374 (build-system perl-build-system)
7375 (native-inputs
7376 `(("perl-any-moose" ,perl-any-moose)
7377 ("perl-module-install" ,perl-module-install)
7378 ("perl-test-fatal" ,perl-test-fatal)))
7379 (propagated-inputs
7380 `(("perl-mouse" ,perl-mouse)))
7381 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
7382 (synopsis "Extend attribute interfaces for Mouse")
7383 (description
7384 "While @code{Mouse} attributes provide a way to name your accessors,
7385 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
7386 provides commonly used attribute helper methods for more specific types
7387 of data.")
7388 (license (package-license perl))))
7389
7390 (define-public perl-mozilla-ca
7391 (package
7392 (name "perl-mozilla-ca")
7393 (version "20180117")
7394 (source
7395 (origin
7396 (method url-fetch)
7397 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
7398 version ".tar.gz"))
7399 (sha256
7400 (base32
7401 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
7402 (build-system perl-build-system)
7403 (home-page "https://metacpan.org/release/Mozilla-CA")
7404 (synopsis "Mozilla's CA cert bundle in PEM format")
7405 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
7406 Certificate Authority certificates in a form that can be consumed by modules
7407 and libraries based on OpenSSL.")
7408 (license mpl2.0)))
7409
7410 (define-public perl-multidimensional
7411 (package
7412 (name "perl-multidimensional")
7413 (version "0.014")
7414 (source
7415 (origin
7416 (method url-fetch)
7417 (uri (string-append
7418 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
7419 version ".tar.gz"))
7420 (sha256
7421 (base32
7422 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
7423 (build-system perl-build-system)
7424 (native-inputs
7425 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7426 ("perl-extutils-depends" ,perl-extutils-depends)))
7427 (propagated-inputs
7428 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7429 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
7430 (home-page "https://metacpan.org/release/multidimensional")
7431 (synopsis "Disable multidimensional array emulation")
7432 (description
7433 "Multidimensional disables multidimensional array emulation.")
7434 (license (package-license perl))))
7435
7436 (define-public perl-mro-compat
7437 (package
7438 (name "perl-mro-compat")
7439 (version "0.13")
7440 (source
7441 (origin
7442 (method url-fetch)
7443 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7444 "MRO-Compat-" version ".tar.gz"))
7445 (sha256
7446 (base32
7447 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
7448 (build-system perl-build-system)
7449 (home-page "https://metacpan.org/release/MRO-Compat")
7450 (synopsis "MRO interface compatibility for Perls < 5.9.5")
7451 (description "The \"mro\" namespace provides several utilities for dealing
7452 with method resolution order and method caching in general in Perl 5.9.5 and
7453 higher. This module provides those interfaces for earlier versions of
7454 Perl (back to 5.6.0).")
7455 (license (package-license perl))))
7456
7457 (define-public perl-namespace-autoclean
7458 (package
7459 (name "perl-namespace-autoclean")
7460 (version "0.29")
7461 (source
7462 (origin
7463 (method url-fetch)
7464 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7465 "namespace-autoclean-" version ".tar.gz"))
7466 (sha256
7467 (base32 "012qqs561xyyhm082znmzsl8lz4n299fa6p0v246za2l9bkdiss5"))))
7468 (build-system perl-build-system)
7469 (native-inputs
7470 `(("perl-module-build" ,perl-module-build)
7471 ("perl-test-needs" ,perl-test-needs)))
7472 (propagated-inputs
7473 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
7474 ("perl-namespace-clean" ,perl-namespace-clean)
7475 ("perl-sub-identify" ,perl-sub-identify)))
7476 (home-page "https://metacpan.org/release/namespace-autoclean")
7477 (synopsis "Keep imports out of your namespace")
7478 (description "The namespace::autoclean pragma will remove all imported
7479 symbols at the end of the current package's compile cycle. Functions called
7480 in the package itself will still be bound by their name, but they won't show
7481 up as methods on your class or instances. It is very similar to
7482 namespace::clean, except it will clean all imported functions, no matter if
7483 you imported them before or after you used the pragma. It will also not touch
7484 anything that looks like a method.")
7485 (license (package-license perl))))
7486
7487 (define-public perl-namespace-clean
7488 (package
7489 (name "perl-namespace-clean")
7490 (version "0.27")
7491 (source
7492 (origin
7493 (method url-fetch)
7494 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
7495 "namespace-clean-" version ".tar.gz"))
7496 (sha256
7497 (base32
7498 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
7499 (build-system perl-build-system)
7500 (propagated-inputs
7501 `(("perl-package-stash" ,perl-package-stash)
7502 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
7503 (home-page "https://metacpan.org/release/namespace-clean")
7504 (synopsis "Keep imports and functions out of your namespace")
7505 (description "The namespace::clean pragma will remove all previously
7506 declared or imported symbols at the end of the current package's compile
7507 cycle. Functions called in the package itself will still be bound by their
7508 name, but they won't show up as methods on your class or instances.")
7509 (license (package-license perl))))
7510
7511 (define-public perl-net-bgp
7512 (package
7513 (name "perl-net-bgp")
7514 (version "0.17")
7515 (source
7516 (origin
7517 (method url-fetch)
7518 (uri (string-append
7519 "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
7520 (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y"))))
7521 (build-system perl-build-system)
7522 (home-page "https://metacpan.org/release/Net-BGP")
7523 (synopsis "Object-oriented API to the BGP protocol")
7524 (description
7525 "This module is an implementation of the BGP-4 inter-domain routing protocol.
7526 It encapsulates all of the functionality needed to establish and maintain a
7527 BGP peering session and exchange routing update information with the peer.
7528 It aims to provide a simple API to the BGP protocol for the purposes of
7529 automation, logging, monitoring, testing, and similar tasks using the
7530 power and flexibility of perl. The module does not implement the
7531 functionality of a RIB (Routing Information Base) nor does it modify the
7532 kernel routing table of the host system. However, such operations could be
7533 implemented using the API provided by the module.")
7534 (license perl-license)))
7535
7536 (define-public perl-net-dns-native
7537 (package
7538 (name "perl-net-dns-native")
7539 (version "0.22")
7540 (source
7541 (origin
7542 (method url-fetch)
7543 (uri (string-append
7544 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
7545 version ".tar.gz"))
7546 (sha256
7547 (base32 "1m9hbj83ikg52wvq7z8bjm78i50qvqk5alh11mmazzxrpbnrv38h"))))
7548 (build-system perl-build-system)
7549 (home-page "https://metacpan.org/release/Net-DNS-Native")
7550 (synopsis "Non-blocking system DNS resolver")
7551 (description
7552 "This class provides several methods for host name resolution. It is
7553 designed to be used with event loops. Names are resolved by your system's
7554 native @code{getaddrinfo(3)} implementation, called in a separate thread to
7555 avoid blocking the entire application. Threading overhead is limited by using
7556 system threads instead of Perl threads.")
7557 (license perl-license)))
7558
7559 (define-public perl-net-idn-encode
7560 (package
7561 (name "perl-net-idn-encode")
7562 (version "2.500")
7563 (source
7564 (origin
7565 (method url-fetch)
7566 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
7567 "Net-IDN-Encode-" version ".tar.gz"))
7568 (sha256
7569 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
7570 (build-system perl-build-system)
7571 (native-inputs
7572 `(("perl-module-build" ,perl-module-build)
7573 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7574 (home-page "https://metacpan.org/release/Net-IDN-Encode")
7575 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
7576 (description
7577 "Internationalized Domain Names (IDNs) use characters drawn from a large
7578 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
7579 represented using only the ASCII characters already allowed in so-called host
7580 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
7581
7582 Use this module if you just want to convert domain names (or email addresses),
7583 using whatever IDNA standard is the best choice at the moment.")
7584 (license perl-license)))
7585
7586 (define-public perl-net-statsd
7587 (package
7588 (name "perl-net-statsd")
7589 (version "0.12")
7590 (source
7591 (origin
7592 (method url-fetch)
7593 (uri (string-append
7594 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
7595 version
7596 ".tar.gz"))
7597 (sha256
7598 (base32
7599 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
7600 (build-system perl-build-system)
7601 (home-page
7602 "https://metacpan.org/release/Net-Statsd")
7603 (synopsis "Perl client for Etsy's statsd daemon")
7604 (description "This module implement a UDP client for the statsd statistics
7605 collector daemon in use at Etsy.com.")
7606 (license (package-license perl))))
7607
7608 (define-public perl-number-compare
7609 (package
7610 (name "perl-number-compare")
7611 (version "0.03")
7612 (source
7613 (origin
7614 (method url-fetch)
7615 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7616 "Number-Compare-" version ".tar.gz"))
7617 (sha256
7618 (base32
7619 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
7620 (build-system perl-build-system)
7621 (home-page "https://metacpan.org/release/Number-Compare")
7622 (synopsis "Numeric comparisons")
7623 (description "Number::Compare compiles a simple comparison to an anonymous
7624 subroutine, which you can call with a value to be tested against.")
7625 (license (package-license perl))))
7626
7627 (define-public perl-number-format
7628 (package
7629 (name "perl-number-format")
7630 (version "1.75")
7631 (source (origin
7632 (method url-fetch)
7633 (uri (string-append
7634 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
7635 version ".tar.gz"))
7636 (sha256
7637 (base32
7638 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
7639 (build-system perl-build-system)
7640 (home-page "https://metacpan.org/release/Number-Format")
7641 (synopsis "Convert numbers to strings with pretty formatting")
7642 (description "@code{Number::Format} is a library for formatting numbers.
7643 Functions are provided for converting numbers to strings in a variety of ways,
7644 and to convert strings that contain numbers back into numeric form. The
7645 output formats may include thousands separators - characters inserted between
7646 each group of three characters counting right to left from the decimal point.
7647 The characters used for the decimal point and the thousands separator come from
7648 the locale information or can be specified by the user.")
7649 (license perl-license)))
7650
7651 (define-public perl-number-range
7652 (package
7653 (name "perl-number-range")
7654 (version "0.12")
7655 (source
7656 (origin
7657 (method url-fetch)
7658 (uri (string-append
7659 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
7660 version ".tar.gz"))
7661 (sha256
7662 (base32
7663 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
7664 (build-system perl-build-system)
7665 (home-page "https://metacpan.org/release/Number-Range")
7666 (synopsis "Perl extension defining ranges of numbers")
7667 (description "Number::Range is an object-oriented interface to test if a
7668 number exists in a given range, and to be able to manipulate the range.")
7669 (license (package-license perl))))
7670
7671 (define-public perl-object-signature
7672 (package
7673 (name "perl-object-signature")
7674 (version "1.08")
7675 (source
7676 (origin
7677 (method url-fetch)
7678 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7679 "Object-Signature-" version ".tar.gz"))
7680 (sha256
7681 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
7682 (build-system perl-build-system)
7683 (native-inputs
7684 `(("perl-module-install" ,perl-module-install)))
7685 (home-page "https://metacpan.org/release/Object-Signature")
7686 (synopsis "Generate cryptographic signatures for objects")
7687 (description "Object::Signature is an abstract base class that you can
7688 inherit from in order to allow your objects to generate unique cryptographic
7689 signatures.")
7690 (license (package-license perl))))
7691
7692 (define-public perl-ole-storage-lite
7693 (package
7694 (name "perl-ole-storage-lite")
7695 (version "0.20")
7696 (source
7697 (origin
7698 (method url-fetch)
7699 (uri (string-append
7700 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
7701 version
7702 ".tar.gz"))
7703 (sha256
7704 (base32
7705 "1fpqhhgb8blj4hhs97fsbnbhk29s9yms057a9s9yl20f3hbsc65b"))))
7706 (build-system perl-build-system)
7707 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
7708 (synopsis "Read and write OLE storage files")
7709 (description "This module allows you to read and write
7710 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
7711 technology to store hierarchical information such as links to other
7712 documents within a single file.")
7713 (license (package-license perl))))
7714
7715 (define-public perl-package-anon
7716 (package
7717 (name "perl-package-anon")
7718 (version "0.05")
7719 (source
7720 (origin
7721 (method url-fetch)
7722 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
7723 "Package-Anon-" version ".tar.gz"))
7724 (sha256
7725 (base32
7726 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
7727 (build-system perl-build-system)
7728 (propagated-inputs
7729 `(("perl-sub-exporter" ,perl-sub-exporter)
7730 ("perl-params-util" ,perl-params-util)))
7731 (home-page "https://metacpan.org/release/Package-Anon")
7732 (synopsis "Anonymous packages")
7733 (description "This module allows for anonymous packages that are
7734 independent of the main namespace and only available through an object
7735 instance, not by name.")
7736 (license (package-license perl))))
7737
7738 (define-public perl-package-deprecationmanager
7739 (package
7740 (name "perl-package-deprecationmanager")
7741 (version "0.17")
7742 (source
7743 (origin
7744 (method url-fetch)
7745 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7746 "Package-DeprecationManager-" version ".tar.gz"))
7747 (sha256
7748 (base32
7749 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
7750 (build-system perl-build-system)
7751 (native-inputs
7752 `(("perl-test-fatal" ,perl-test-fatal)
7753 ("perl-test-requires" ,perl-test-requires)
7754 ("perl-test-output" ,perl-test-output)))
7755 (propagated-inputs
7756 `(("perl-list-moreutils" ,perl-list-moreutils)
7757 ("perl-params-util" ,perl-params-util)
7758 ("perl-sub-install" ,perl-sub-install)))
7759 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
7760 (home-page "https://metacpan.org/release/Package-DeprecationManager")
7761 (synopsis "Manage deprecation warnings for your distribution")
7762 (description "This module allows you to manage a set of deprecations for
7763 one or more modules.")
7764 (license artistic2.0)))
7765
7766 (define-public perl-package-stash
7767 (package
7768 (name "perl-package-stash")
7769 (version "0.38")
7770 (source
7771 (origin
7772 (method url-fetch)
7773 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7774 "Package-Stash-" version ".tar.gz"))
7775 (sha256
7776 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
7777 (build-system perl-build-system)
7778 (native-inputs
7779 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7780 ("perl-test-fatal" ,perl-test-fatal)
7781 ("perl-test-requires" ,perl-test-requires)
7782 ("perl-package-anon" ,perl-package-anon)))
7783 (propagated-inputs
7784 `(("perl-module-implementation" ,perl-module-implementation)
7785 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7786 ("perl-package-stash-xs" ,perl-package-stash-xs)))
7787 (home-page "https://metacpan.org/release/Package-Stash")
7788 (synopsis "Routines for manipulating stashes")
7789 (description "Manipulating stashes (Perl's symbol tables) is occasionally
7790 necessary, but incredibly messy, and easy to get wrong. This module hides all
7791 of that behind a simple API.")
7792 (license (package-license perl))))
7793
7794 (define-public perl-package-stash-xs
7795 (package
7796 (name "perl-package-stash-xs")
7797 (version "0.29")
7798 (source
7799 (origin
7800 (method url-fetch)
7801 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7802 "Package-Stash-XS-" version ".tar.gz"))
7803 (sha256
7804 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
7805 (build-system perl-build-system)
7806 (native-inputs
7807 `(("perl-test-fatal" ,perl-test-fatal)
7808 ("perl-test-requires" ,perl-test-requires)
7809 ("perl-package-anon" ,perl-package-anon)))
7810 (home-page "https://metacpan.org/release/Package-Stash-XS")
7811 (synopsis "Faster implementation of the Package::Stash API")
7812 (description "This is a backend for Package::Stash, which provides the
7813 functionality in a way that's less buggy and much faster. It will be used by
7814 default if it's installed, and should be preferred in all environments with a
7815 compiler.")
7816 (license (package-license perl))))
7817
7818 (define-public perl-padwalker
7819 (package
7820 (name "perl-padwalker")
7821 (version "2.3")
7822 (source
7823 (origin
7824 (method url-fetch)
7825 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
7826 "PadWalker-" version ".tar.gz"))
7827 (sha256
7828 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
7829 (build-system perl-build-system)
7830 (home-page "https://metacpan.org/release/PadWalker")
7831 (synopsis "Play with other peoples' lexical variables")
7832 (description "PadWalker is a module which allows you to inspect (and even
7833 change) lexical variables in any subroutine which called you. It will only
7834 show those variables which are in scope at the point of the call. PadWalker
7835 is particularly useful for debugging.")
7836 (license (package-license perl))))
7837
7838 (define-public perl-parallel-forkmanager
7839 (package
7840 (name "perl-parallel-forkmanager")
7841 (version "1.19")
7842 (source
7843 (origin
7844 (method url-fetch)
7845 (uri (string-append
7846 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
7847 version
7848 ".tar.gz"))
7849 (sha256
7850 (base32
7851 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
7852 (build-system perl-build-system)
7853 (native-inputs
7854 `(("perl-test-warn" ,perl-test-warn)))
7855 (home-page "https://metacpan.org/release/Parallel-ForkManager")
7856 (synopsis "Simple parallel processing fork manager")
7857 (description "@code{Parallel::ForkManager} is intended for use in
7858 operations that can be done in parallel where the number of
7859 processes to be forked off should be limited.")
7860 (license (package-license perl))))
7861
7862 (define-public perl-params-classify
7863 (package
7864 (name "perl-params-classify")
7865 (version "0.015")
7866 (source
7867 (origin
7868 (method url-fetch)
7869 (uri (string-append
7870 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Params-Classify-"
7871 version ".tar.gz"))
7872 (sha256
7873 (base32
7874 "052r198xyrsv8wz21gijdigz2cgnidsa37nvyfzdiz4rv1fc33ir"))))
7875 (build-system perl-build-system)
7876 (native-inputs
7877 `(("perl-module-build" ,perl-module-build)
7878 ("perl-test-pod" ,perl-test-pod)
7879 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7880 (propagated-inputs
7881 `(("perl-devel-callchecker" ,perl-devel-callchecker)))
7882 (home-page "https://metacpan.org/release/Params-Classify")
7883 (synopsis "Argument type classification")
7884 (description "This module provides various type-testing functions.
7885 These are intended for functions that care what type of data they are
7886 operating on. There are two flavours of function. Functions of the
7887 first flavour provide type classification only. Functions of the
7888 second flavour also check that an argument is of an expected type.
7889 The type enforcement functions handle only the simplest requirements
7890 for arguments of the types handled by the classification functions.
7891 Enforcement of more complex types may be built using the
7892 classification functions, or it may be more convenient to use a module
7893 designed for the more complex job, such as @code{Params::Validate}")
7894 (license perl-license)))
7895
7896 (define-public perl-params-util
7897 (package
7898 (name "perl-params-util")
7899 (version "1.07")
7900 (source
7901 (origin
7902 (method url-fetch)
7903 (uri (string-append
7904 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
7905 version ".tar.gz"))
7906 (sha256
7907 (base32
7908 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
7909 (build-system perl-build-system)
7910 (home-page "https://metacpan.org/release/Params-Util")
7911 (synopsis "Simple, compact and correct param-checking functions")
7912 (description
7913 "Params::Util provides a basic set of importable functions that makes
7914 checking parameters easier.")
7915 (license (package-license perl))))
7916
7917 (define-public perl-params-validate
7918 (package
7919 (name "perl-params-validate")
7920 (version "1.29")
7921 (source
7922 (origin
7923 (method url-fetch)
7924 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7925 "Params-Validate-" version ".tar.gz"))
7926 (sha256
7927 (base32
7928 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
7929 (build-system perl-build-system)
7930 (native-inputs
7931 `(("perl-module-build" ,perl-module-build)
7932 ("perl-test-fatal" ,perl-test-fatal)
7933 ("perl-test-requires" ,perl-test-requires)))
7934 (propagated-inputs
7935 `(("perl-module-implementation" ,perl-module-implementation)))
7936 (home-page "https://metacpan.org/release/Params-Validate")
7937 (synopsis "Validate method/function parameters")
7938 (description "The Params::Validate module allows you to validate method or
7939 function call parameters to an arbitrary level of specificity.")
7940 (license artistic2.0)))
7941
7942 (define-public perl-params-validationcompiler
7943 (package
7944 (name "perl-params-validationcompiler")
7945 (version "0.30")
7946 (source
7947 (origin
7948 (method url-fetch)
7949 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7950 "Params-ValidationCompiler-" version ".tar.gz"))
7951 (sha256
7952 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
7953 (build-system perl-build-system)
7954 (native-inputs
7955 ;; For tests.
7956 `(("perl-test-without-module" ,perl-test-without-module)
7957 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
7958 ("perl-test2-suite" ,perl-test2-suite)
7959 ("perl-type-tiny" ,perl-type-tiny)))
7960 (propagated-inputs
7961 `(("perl-eval-closure" ,perl-eval-closure)
7962 ("perl-exception-class" ,perl-exception-class)
7963 ("perl-specio" ,perl-specio)))
7964 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
7965 (synopsis "Build an optimized subroutine parameter validator")
7966 (description "This module creates a customized, highly efficient
7967 parameter checking subroutine. It can handle named or positional
7968 parameters, and can return the parameters as key/value pairs or a list
7969 of values. In addition to type checks, it also supports parameter
7970 defaults, optional parameters, and extra \"slurpy\" parameters.")
7971 (license artistic2.0)))
7972
7973 (define-public perl-par-dist
7974 (package
7975 (name "perl-par-dist")
7976 (version "0.49")
7977 (source
7978 (origin
7979 (method url-fetch)
7980 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
7981 "PAR-Dist-" version ".tar.gz"))
7982 (sha256
7983 (base32
7984 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
7985 (build-system perl-build-system)
7986 (home-page "https://metacpan.org/release/PAR-Dist")
7987 (synopsis "Create and manipulate PAR distributions")
7988 (description "PAR::Dist is a toolkit to create and manipulate PAR
7989 distributions.")
7990 (license (package-license perl))))
7991
7992 (define-public perl-parent
7993 (deprecated-package "perl-parent" perl))
7994
7995 (define-public perl-path-class
7996 (package
7997 (name "perl-path-class")
7998 (version "0.37")
7999 (source
8000 (origin
8001 (method url-fetch)
8002 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8003 "Path-Class-" version ".tar.gz"))
8004 (sha256
8005 (base32
8006 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
8007 (build-system perl-build-system)
8008 (native-inputs `(("perl-module-build" ,perl-module-build)))
8009 (home-page "https://metacpan.org/release/Path-Class")
8010 (synopsis "Path specification manipulation")
8011 (description "Path::Class is a module for manipulation of file and
8012 directory specifications in a cross-platform manner.")
8013 (license (package-license perl))))
8014
8015 (define-public perl-pathtools
8016 (package
8017 (name "perl-pathtools")
8018 (version "3.75")
8019 (source
8020 (origin
8021 (method url-fetch)
8022 (uri (string-append
8023 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
8024 version ".tar.gz"))
8025 (sha256
8026 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
8027 (build-system perl-build-system)
8028 (arguments
8029 `(#:phases
8030 (modify-phases %standard-phases
8031 (add-after 'unpack 'patch-pwd-path
8032 (lambda* (#:key inputs #:allow-other-keys)
8033 (substitute* "Cwd.pm"
8034 (("'/bin/pwd'")
8035 (string-append "'" (assoc-ref inputs "coreutils")
8036 "/bin/pwd'")))
8037 #t)))))
8038 (inputs
8039 `(("coreutils" ,coreutils)))
8040 (home-page "https://metacpan.org/release/PathTools")
8041 (synopsis "Tools for working with directory and file names")
8042 (description "This package provides functions to work with directory and
8043 file names.")
8044 (license perl-license)))
8045
8046 (define-public perl-path-tiny
8047 (package
8048 (name "perl-path-tiny")
8049 (version "0.108")
8050 (source (origin
8051 (method url-fetch)
8052 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8053 "Path-Tiny-" version ".tar.gz"))
8054 (sha256
8055 (base32
8056 "1x9zf8r3cynf4vqlycyyspsr70v4zw6bk9bkgvfpvsxkw8mlhj9w"))))
8057 (build-system perl-build-system)
8058 (arguments
8059 `(#:tests? #f)) ; Tests require additional test modules to be packaged
8060 ;; (native-inputs
8061 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
8062 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
8063 (inputs
8064 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
8065 (home-page "https://metacpan.org/release/Path-Tiny")
8066 (synopsis "File path utility")
8067 (description "This module provides a small, fast utility for working
8068 with file paths.")
8069 (license asl2.0)))
8070
8071 (define-public perl-pdf-api2
8072 (package
8073 (name "perl-pdf-api2")
8074 (version "2.036")
8075 (source (origin
8076 (method url-fetch)
8077 (uri (string-append
8078 "mirror://cpan/authors/id/S/SS/SSIMMS/PDF-API2-"
8079 version ".tar.gz"))
8080 (sha256
8081 (base32
8082 "0x0pa75wpb87pcshl92y5nh8pzikjp46ljlr2pqvdgpqzvll8107"))))
8083 (build-system perl-build-system)
8084 (native-inputs
8085 `(("perl-test-exception" ,perl-test-exception)
8086 ("perl-test-memory-cycle" ,perl-test-memory-cycle)))
8087 (propagated-inputs
8088 `(("perl-font-ttf" ,perl-font-ttf)))
8089 (home-page "https://metacpan.org/release/PDF-API2")
8090 (synopsis "Facilitates the creation and modification of PDF files")
8091 (description "This Perl module facilitates the creation and modification
8092 of PDF files.")
8093 (license lgpl2.1)))
8094
8095 (define-public perl-perlio-utf8_strict
8096 (package
8097 (name "perl-perlio-utf8-strict")
8098 (version "0.007")
8099 (source (origin
8100 (method url-fetch)
8101 (uri (string-append
8102 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
8103 version ".tar.gz"))
8104 (sha256
8105 (base32
8106 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
8107 (build-system perl-build-system)
8108 (native-inputs
8109 `(("perl-test-exception" ,perl-test-exception)))
8110 (home-page
8111 "https://metacpan.org/release/PerlIO-utf8_strict")
8112 (synopsis "Fast and correct UTF-8 IO")
8113 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
8114 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
8115 for correctness.")
8116 (license (package-license perl))))
8117
8118 (define-public perl-pegex
8119 (package
8120 (name "perl-pegex")
8121 (version "0.70")
8122 (source
8123 (origin
8124 (method url-fetch)
8125 (uri (string-append
8126 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
8127 version ".tar.gz"))
8128 (sha256
8129 (base32
8130 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
8131 (build-system perl-build-system)
8132 (native-inputs
8133 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
8134 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
8135 (home-page "https://metacpan.org/release/Pegex")
8136 (synopsis "Acmeist PEG Parser Framework")
8137 (description "Pegex is an Acmeist parser framework. It allows you to easily
8138 create parsers that will work equivalently in lots of programming languages.
8139 The inspiration for Pegex comes from the parsing engine upon which the
8140 postmodern programming language Perl 6 is based on. Pegex brings this beauty
8141 to the other justmodern languages that have a normal regular expression engine
8142 available.")
8143 (license (package-license perl))))
8144
8145 (define-public perl-pod-coverage
8146 (package
8147 (name "perl-pod-coverage")
8148 (version "0.23")
8149 (source
8150 (origin
8151 (method url-fetch)
8152 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8153 "Pod-Coverage-" version ".tar.gz"))
8154 (sha256
8155 (base32
8156 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
8157 (build-system perl-build-system)
8158 (propagated-inputs
8159 `(("perl-devel-symdump" ,perl-devel-symdump)))
8160 (home-page "https://metacpan.org/release/Pod-Coverage")
8161 (synopsis "Check for comprehensive documentation of a module")
8162 (description "This module provides a mechanism for determining if the pod
8163 for a given module is comprehensive.")
8164 (license (package-license perl))))
8165
8166 (define-public perl-pod-simple
8167 (package
8168 (name "perl-pod-simple")
8169 (version "3.35")
8170 (source (origin
8171 (method url-fetch)
8172 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8173 "Pod-Simple-" version ".tar.gz"))
8174 (sha256
8175 (base32
8176 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
8177 (build-system perl-build-system)
8178 (home-page "https://metacpan.org/release/Pod-Simple")
8179 (synopsis "Parsing library for text in Pod format")
8180 (description "@code{Pod::Simple} is a Perl library for parsing text in
8181 the @dfn{Pod} (plain old documentation) markup language that is typically
8182 used for writing documentation for Perl and for Perl modules.")
8183 (license (package-license perl))))
8184
8185 (define-public perl-posix-strftime-compiler
8186 (package
8187 (name "perl-posix-strftime-compiler")
8188 (version "0.42")
8189 (source
8190 (origin
8191 (method url-fetch)
8192 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
8193 "POSIX-strftime-Compiler-" version ".tar.gz"))
8194 (sha256
8195 (base32
8196 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
8197 (build-system perl-build-system)
8198 (native-inputs `(("perl-module-build" ,perl-module-build)))
8199 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
8200 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
8201 (synopsis "GNU C library compatible strftime for loggers and servers")
8202 (description "POSIX::strftime::Compiler provides GNU C library compatible
8203 strftime(3). But this module is not affected by the system locale. This
8204 feature is useful when you want to write loggers, servers, and portable
8205 applications.")
8206 (license (package-license perl))))
8207
8208 (define-public perl-probe-perl
8209 (package
8210 (name "perl-probe-perl")
8211 (version "0.03")
8212 (source (origin
8213 (method url-fetch)
8214 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8215 "Probe-Perl-" version ".tar.gz"))
8216 (sha256
8217 (base32
8218 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
8219 (build-system perl-build-system)
8220 (synopsis "Information about the currently running perl")
8221 (description
8222 "Probe::Perl provides methods for obtaining information about the
8223 currently running perl interpreter. It originally began life as code in the
8224 Module::Build project, but has been externalized here for general use.")
8225 (home-page "https://metacpan.org/release/Probe-Perl")
8226 (license (package-license perl))))
8227
8228 (define-public perl-proc-invokeeditor
8229 (package
8230 (name "perl-proc-invokeeditor")
8231 (version "1.13")
8232 (source
8233 (origin
8234 (method url-fetch)
8235 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
8236 version ".tar.gz"))
8237 (sha256
8238 (base32
8239 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
8240 (build-system perl-build-system)
8241 (arguments
8242 `(#:phases
8243 (modify-phases %standard-phases
8244 (add-after 'unpack 'set-EDITOR
8245 (lambda _ (setenv "EDITOR" "echo") #t)))))
8246 (propagated-inputs
8247 `(("perl-carp-assert" ,perl-carp-assert)))
8248 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
8249 (synopsis "Interface to external editor from Perl")
8250 (description "This module provides the ability to supply some text to an
8251 external text editor, have it edited by the user, and retrieve the results.")
8252 (license (package-license perl))))
8253
8254 (define-public perl-readonly
8255 (package
8256 (name "perl-readonly")
8257 (version "2.00")
8258 (source
8259 (origin
8260 (method url-fetch)
8261 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
8262 "Readonly-" version ".tar.gz"))
8263 (sha256
8264 (base32
8265 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
8266 (build-system perl-build-system)
8267 (native-inputs `(("perl-module-build" ,perl-module-build)))
8268 (home-page "https://metacpan.org/release/Readonly")
8269 (synopsis "Create read-only scalars, arrays, hashes")
8270 (description "This module provides a facility for creating non-modifiable
8271 variables in Perl. This is useful for configuration files, headers, etc. It
8272 can also be useful as a development and debugging tool for catching updates to
8273 variables that should not be changed.")
8274 (license (package-license perl))))
8275
8276 (define-public perl-ref-util-xs
8277 (package
8278 (name "perl-ref-util-xs")
8279 (version "0.117")
8280 (source
8281 (origin
8282 (method url-fetch)
8283 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
8284 "Ref-Util-XS-" version ".tar.gz"))
8285 (sha256
8286 (base32
8287 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
8288 (build-system perl-build-system)
8289 (home-page "https://metacpan.org/release/Ref-Util-XS")
8290 (synopsis "XS implementation for Ref::Util")
8291 (description "@code{Ref::Util::XS} is the XS implementation of
8292 @code{Ref::Util}, which provides several functions to help identify references
8293 in a more convenient way than the usual approach of examining the return value
8294 of @code{ref}.")
8295 (license x11)))
8296
8297 (define-public perl-regexp-common
8298 (package
8299 (name "perl-regexp-common")
8300 (version "2017060201")
8301 (source (origin
8302 (method url-fetch)
8303 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
8304 "Regexp-Common-" version ".tar.gz"))
8305 (sha256
8306 (base32
8307 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
8308 (build-system perl-build-system)
8309 (synopsis "Provide commonly requested regular expressions")
8310 (description
8311 "This module exports a single hash (@code{%RE}) that stores or generates
8312 commonly needed regular expressions. Patterns currently provided include:
8313 balanced parentheses and brackets, delimited text (with escapes), integers and
8314 floating-point numbers in any base (up to 36), comments in 44 languages,
8315 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
8316 codes.")
8317 (home-page "https://metacpan.org/release/Regexp-Common")
8318 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
8319 (license (list (package-license perl) x11 bsd-3))))
8320
8321 (define-public perl-regexp-util
8322 (package
8323 (name "perl-regexp-util")
8324 (version "0.003")
8325 (source
8326 (origin
8327 (method url-fetch)
8328 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8329 "Regexp-Util-" version ".tar.gz"))
8330 (sha256
8331 (base32
8332 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
8333 (build-system perl-build-system)
8334 (home-page "https://metacpan.org/release/Regexp-Util")
8335 (synopsis "Selection of general-utility regexp subroutines")
8336 (description "This package provides a selection of regular expression
8337 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
8338 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
8339 and @code{deserialize_regexp}.")
8340 (license (package-license perl))))
8341
8342 (define-public perl-role-tiny
8343 (package
8344 (name "perl-role-tiny")
8345 (version "1.003004")
8346 (source
8347 (origin
8348 (method url-fetch)
8349 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8350 "Role-Tiny-" version ".tar.gz"))
8351 (sha256
8352 (base32
8353 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
8354 (build-system perl-build-system)
8355 (native-inputs
8356 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
8357 ("perl-test-fatal" ,perl-test-fatal)))
8358 (propagated-inputs
8359 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
8360 (home-page "https://metacpan.org/release/Role-Tiny")
8361 (synopsis "Roles, as a slice of Moose")
8362 (description "Role::Tiny is a minimalist role composition tool.")
8363 (license (package-license perl))))
8364
8365 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
8366 (define-public perl-role-tiny-2
8367 (package
8368 (inherit perl-role-tiny)
8369 (version "2.001001")
8370 (source
8371 (origin
8372 (method url-fetch)
8373 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8374 "Role-Tiny-" version ".tar.gz"))
8375 (sha256
8376 (base32 "16yryg3cr14xw201gm8k8ci00hs60fy8lk2xhnaqa85n5m68flk8"))))))
8377
8378 (define-public perl-safe-isa
8379 (package
8380 (name "perl-safe-isa")
8381 (version "1.000010")
8382 (source
8383 (origin
8384 (method url-fetch)
8385 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8386 "Safe-Isa-" version ".tar.gz"))
8387 (sha256
8388 (base32
8389 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
8390 (build-system perl-build-system)
8391 (home-page "https://metacpan.org/release/Safe-Isa")
8392 (synopsis "Call isa, can, does, and DOES safely")
8393 (description "This module allows you to call isa, can, does, and DOES
8394 safely on things that may not be objects.")
8395 (license (package-license perl))))
8396
8397 (define-public perl-scalar-string
8398 (package
8399 (name "perl-scalar-string")
8400 (version "0.003")
8401 (source
8402 (origin
8403 (method url-fetch)
8404 (uri (string-append
8405 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Scalar-String-"
8406 version ".tar.gz"))
8407 (sha256
8408 (base32
8409 "0llbsqk7rsg9p7l1f4yk6iv7wij91gvavprsqhnb04w7nz4ifjpm"))))
8410 (build-system perl-build-system)
8411 (native-inputs
8412 `(("perl-module-build" ,perl-module-build)
8413 ("perl-test-pod" ,perl-test-pod)
8414 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8415 (home-page "https://metacpan.org/release/Scalar-String")
8416 (synopsis "String aspects of scalars")
8417 (description "@code{Scalar::String} is about the string part of
8418 plain Perl scalars. A scalar has a string value, which is notionally
8419 a sequence of Unicode codepoints but may be internally encoded in
8420 either ISO-8859-1 or UTF-8. In places, more so in older versions of
8421 Perl, the internal encoding shows through. To fully understand Perl
8422 strings it is necessary to understand these implementation details.
8423 This module provides functions to classify a string by encoding and to
8424 encode a string in a desired way. The module is implemented in XS,
8425 with a pure Perl backup version for systems that cannot handle XS.")
8426 (license perl-license)))
8427
8428 (define-public perl-scope-guard
8429 (package
8430 (name "perl-scope-guard")
8431 (version "0.21")
8432 (source
8433 (origin
8434 (method url-fetch)
8435 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
8436 "Scope-Guard-" version ".tar.gz"))
8437 (sha256
8438 (base32
8439 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
8440 (build-system perl-build-system)
8441 (home-page "https://metacpan.org/release/Scope-Guard")
8442 (synopsis "Lexically-scoped resource management")
8443 (description "This module provides a convenient way to perform cleanup or
8444 other forms of resource management at the end of a scope. It is particularly
8445 useful when dealing with exceptions: the Scope::Guard constructor takes a
8446 reference to a subroutine that is guaranteed to be called even if the thread
8447 of execution is aborted prematurely. This effectively allows lexically-scoped
8448 \"promises\" to be made that are automatically honoured by perl's garbage
8449 collector.")
8450 (license (package-license perl))))
8451
8452 (define-public perl-set-infinite
8453 (package
8454 (name "perl-set-infinite")
8455 (version "0.65")
8456 (source
8457 (origin
8458 (method url-fetch)
8459 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
8460 "Set-Infinite-" version ".tar.gz"))
8461 (sha256
8462 (base32
8463 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
8464 (build-system perl-build-system)
8465 (home-page "https://metacpan.org/release/Set-Infinite")
8466 (synopsis "Infinite sets")
8467 (description "Set::Infinite is a set theory module for infinite sets.")
8468 (license (package-license perl))))
8469
8470 (define-public perl-set-intspan
8471 (package
8472 (name "perl-set-intspan")
8473 (version "1.19")
8474 (source (origin
8475 (method url-fetch)
8476 (uri (string-append
8477 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
8478 version ".tar.gz"))
8479 (sha256
8480 (base32
8481 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
8482 (build-system perl-build-system)
8483 (home-page "https://metacpan.org/release/Set-IntSpan")
8484 (synopsis "Manage sets of integers")
8485 (description "@code{Set::IntSpan} manages sets of integers. It is
8486 optimized for sets that have long runs of consecutive integers.")
8487 (license perl-license)))
8488
8489 (define-public perl-set-object
8490 (package
8491 (name "perl-set-object")
8492 (version "1.39")
8493 (source
8494 (origin
8495 (method url-fetch)
8496 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
8497 "Set-Object-" version ".tar.gz"))
8498 (sha256
8499 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
8500 (build-system perl-build-system)
8501 (propagated-inputs
8502 `(("perl-moose" ,perl-moose)
8503 ("perl-test-leaktrace" ,perl-test-leaktrace)))
8504 (home-page "https://metacpan.org/release/Set-Object")
8505 (synopsis "Unordered collections of Perl Objects")
8506 (description "Set::Object provides efficient sets, unordered collections
8507 of Perl objects without duplicates for scalars and references.")
8508 (license artistic2.0)))
8509
8510 (define-public perl-set-scalar
8511 (package
8512 (name "perl-set-scalar")
8513 (version "1.29")
8514 (source
8515 (origin
8516 (method url-fetch)
8517 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
8518 "Set-Scalar-" version ".tar.gz"))
8519 (sha256
8520 (base32
8521 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
8522 (build-system perl-build-system)
8523 (home-page "https://metacpan.org/release/Set-Scalar")
8524 (synopsis "Set operations for Perl")
8525 (description "The first priority of Set::Scalar is to be a convenient
8526 interface to sets (as in: unordered collections of Perl scalars). While not
8527 designed to be slow or big, neither has it been designed to be fast or
8528 compact.")
8529 (license (package-license perl))))
8530
8531 (define-public perl-sort-key
8532 (package
8533 (name "perl-sort-key")
8534 (version "1.33")
8535 (source
8536 (origin
8537 (method url-fetch)
8538 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
8539 version ".tar.gz"))
8540 (sha256
8541 (base32
8542 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
8543 (build-system perl-build-system)
8544 (home-page "https://metacpan.org/release/Sort-Key")
8545 (synopsis "Sort arrays by one or multiple calculated keys")
8546 (description "This Perl module provides various functions to quickly sort
8547 arrays by one or multiple calculated keys.")
8548 (license (package-license perl))))
8549
8550 (define-public perl-sort-naturally
8551 (package
8552 (name "perl-sort-naturally")
8553 (version "1.03")
8554 (source
8555 (origin
8556 (method url-fetch)
8557 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
8558 version ".tar.gz"))
8559 (sha256
8560 (base32
8561 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
8562 (build-system perl-build-system)
8563 (home-page "https://metacpan.org/release/Sort-Naturally")
8564 (synopsis "Sort lexically, but sort numeral parts numerically")
8565 (description "This module exports two functions, @code{nsort} and
8566 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
8567 Under natural sorting, numeric substrings are compared numerically, and other
8568 word-characters are compared lexically.")
8569 (license (package-license perl))))
8570
8571 (define-public perl-specio
8572 (package
8573 (name "perl-specio")
8574 (version "0.38")
8575 (source
8576 (origin
8577 (method url-fetch)
8578 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8579 "Specio-" version ".tar.gz"))
8580 (sha256
8581 (base32
8582 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
8583 (build-system perl-build-system)
8584 (propagated-inputs
8585 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8586 ("perl-eval-closure" ,perl-eval-closure)
8587 ("perl-module-runtime" ,perl-module-runtime)
8588 ("perl-mro-compat" ,perl-mro-compat)
8589 ("perl-role-tiny" ,perl-role-tiny)
8590 ("perl-test-fatal" ,perl-test-fatal)
8591 ("perl-test-needs" ,perl-test-needs)))
8592 (home-page "https://metacpan.org/release/Specio")
8593 (synopsis "Classes for representing type constraints and coercion")
8594 (description "The Specio distribution provides classes for representing type
8595 constraints and coercion, along with syntax sugar for declaring them. Note that
8596 this is not a proper type system for Perl. Nothing in this distribution will
8597 magically make the Perl interpreter start checking a value's type on assignment
8598 to a variable. In fact, there's no built-in way to apply a type to a variable at
8599 all. Instead, you can explicitly check a value against a type, and optionally
8600 coerce values to that type.")
8601 (license artistic2.0)))
8602
8603 (define-public perl-spiffy
8604 (package
8605 (name "perl-spiffy")
8606 (version "0.46")
8607 (source
8608 (origin
8609 (method url-fetch)
8610 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8611 "Spiffy-" version ".tar.gz"))
8612 (sha256
8613 (base32
8614 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
8615 (build-system perl-build-system)
8616 (home-page "https://metacpan.org/release/Spiffy")
8617 (synopsis "Spiffy Perl Interface Framework For You")
8618 (description "Spiffy is a framework and methodology for doing object
8619 oriented (OO) programming in Perl. Spiffy combines the best parts of
8620 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
8621 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
8622 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
8623 other OO languages like Python, Ruby, Java and Perl 6.")
8624 (license (package-license perl))))
8625
8626 (define-public perl-statistics-basic
8627 (package
8628 (name "perl-statistics-basic")
8629 (version "1.6611")
8630 (source (origin
8631 (method url-fetch)
8632 (uri (string-append
8633 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
8634 version ".tar.gz"))
8635 (sha256
8636 (base32
8637 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
8638 (build-system perl-build-system)
8639 (inputs
8640 `(("perl-number-format" ,perl-number-format)))
8641 (home-page "https://metacpan.org/release/Statistics-Basic")
8642 (synopsis "Collection of very basic statistics modules")
8643 (description "This package provides basic statistics functions like
8644 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
8645 (license lgpl2.0)))
8646
8647 (define-public perl-stream-buffered
8648 (package
8649 (name "perl-stream-buffered")
8650 (version "0.03")
8651 (source
8652 (origin
8653 (method url-fetch)
8654 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8655 "Stream-Buffered-" version ".tar.gz"))
8656 (sha256
8657 (base32
8658 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
8659 (build-system perl-build-system)
8660 (home-page "https://metacpan.org/release/Stream-Buffered")
8661 (synopsis "Temporary buffer to save bytes")
8662 (description "Stream::Buffered is a buffer class to store arbitrary length
8663 of byte strings and then get a seekable filehandle once everything is
8664 buffered. It uses PerlIO and/or temporary file to save the buffer depending
8665 on the length of the size.")
8666 (license (package-license perl))))
8667
8668 (define-public perl-strictures
8669 (package
8670 (name "perl-strictures")
8671 (version "1.005005")
8672 (source
8673 (origin
8674 (method url-fetch)
8675 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8676 "strictures-" version ".tar.gz"))
8677 (sha256
8678 (base32
8679 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
8680 (build-system perl-build-system)
8681 (home-page "https://metacpan.org/release/strictures")
8682 (synopsis "Turn on strict and make all warnings fatal")
8683 (description "Strictures turns on strict and make all warnings fatal when
8684 run from within a source-controlled directory.")
8685 (license (package-license perl))))
8686
8687 ;; Some packages don't yet work with this newer version of ‘strictures’.
8688 (define-public perl-strictures-2
8689 (package
8690 (inherit perl-strictures)
8691 (version "2.000006")
8692 (source
8693 (origin
8694 (method url-fetch)
8695 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8696 "strictures-" version ".tar.gz"))
8697 (sha256
8698 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
8699
8700 (define-public perl-string-camelcase
8701 (package
8702 (name "perl-string-camelcase")
8703 (version "0.04")
8704 (source
8705 (origin
8706 (method url-fetch)
8707 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
8708 "String-CamelCase-" version ".tar.gz"))
8709 (sha256
8710 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
8711 (build-system perl-build-system)
8712 (arguments
8713 `(#:phases
8714 (modify-phases %standard-phases
8715 (add-before 'configure 'set-perl-search-path
8716 (lambda _
8717 ;; Work around "dotless @INC" build failure.
8718 (setenv "PERL5LIB"
8719 (string-append (getcwd) ":"
8720 (getenv "PERL5LIB")))
8721 #t)))))
8722 (home-page "https://metacpan.org/release/String-CamelCase")
8723 (synopsis "Camelcase and de-camelcase")
8724 (description "This module may be used to convert from under_score text to
8725 CamelCase and back again.")
8726 (license (package-license perl))))
8727
8728 (define-public perl-string-escape
8729 (package
8730 (name "perl-string-escape")
8731 (version "2010.002")
8732 (source
8733 (origin
8734 (method url-fetch)
8735 (uri (string-append
8736 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
8737 version ".tar.gz"))
8738 (sha256
8739 (base32
8740 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
8741 (build-system perl-build-system)
8742 (home-page "https://metacpan.org/release/String-Escape")
8743 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
8744 (description "This module provides a flexible calling interface to some
8745 frequently-performed string conversion functions, including applying and
8746 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
8747 removing double-quotes, and truncating to fit within a desired length.")
8748 (license (package-license perl))))
8749
8750 (define-public perl-string-formatter
8751 (package
8752 (name "perl-string-formatter")
8753 (version "0.102084")
8754 (source
8755 (origin
8756 (method url-fetch)
8757 (uri (string-append
8758 "mirror://cpan/authors/id/R/RJ/RJBS/String-Formatter-"
8759 version
8760 ".tar.gz"))
8761 (sha256
8762 (base32
8763 "0mlwm0rirv46gj4h072q8gdync5zxxsxy8p028gdyrhczl942dc3"))))
8764 (build-system perl-build-system)
8765 (propagated-inputs
8766 `(("perl-params-util" ,perl-params-util)
8767 ("perl-sub-exporter" ,perl-sub-exporter)))
8768 (home-page "https://metacpan.org/release/String-Formatter")
8769 (synopsis "Build your own sprintf-like functions")
8770 (description
8771 "@code{String::Formatter} is a tool for building sprintf-like formatting
8772 routines. It supports named or positional formatting, custom conversions,
8773 fixed string interpolation, and simple width-matching.")
8774 (license gpl2)))
8775
8776 (define-public perl-string-rewriteprefix
8777 (package
8778 (name "perl-string-rewriteprefix")
8779 (version "0.007")
8780 (source
8781 (origin
8782 (method url-fetch)
8783 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8784 "String-RewritePrefix-" version ".tar.gz"))
8785 (sha256
8786 (base32
8787 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
8788 (build-system perl-build-system)
8789 (propagated-inputs
8790 `(("perl-sub-exporter" ,perl-sub-exporter)))
8791 (home-page "https://metacpan.org/release/String-RewritePrefix")
8792 (synopsis "Rewrite strings based on a set of known prefixes")
8793 (description "This module allows you to rewrite strings based on a set of
8794 known prefixes.")
8795 (license (package-license perl))))
8796
8797 (define-public perl-string-shellquote
8798 (package
8799 (name "perl-string-shellquote")
8800 (version "1.04")
8801 (source
8802 (origin
8803 (method url-fetch)
8804 (uri (string-append
8805 "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
8806 version
8807 ".tar.gz"))
8808 (sha256
8809 (base32
8810 "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
8811 (build-system perl-build-system)
8812 (home-page "https://metacpan.org/release/String-ShellQuote")
8813 (synopsis "Quote strings for passing through a shell")
8814 (description
8815 "@code{shell-quote} lets you pass arbitrary strings through the shell so
8816 that they won't be changed.")
8817 (license (package-license perl))))
8818
8819 (define-public perl-string-print
8820 (package
8821 (name "perl-string-print")
8822 (version "0.15")
8823 (source (origin
8824 (method url-fetch)
8825 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
8826 "String-Print-" version ".tar.gz"))
8827 (sha256
8828 (base32
8829 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
8830 (build-system perl-build-system)
8831 (propagated-inputs
8832 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
8833 (home-page "https://metacpan.org/release/String-Print")
8834 (synopsis "String printing alternatives to printf")
8835 (description
8836 "This module inserts values into (translated) strings. It provides
8837 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
8838 a functional interface.")
8839 (license (package-license perl))))
8840
8841 (define-public perl-sub-exporter
8842 (package
8843 (name "perl-sub-exporter")
8844 (version "0.987")
8845 (source
8846 (origin
8847 (method url-fetch)
8848 (uri (string-append
8849 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
8850 version ".tar.gz"))
8851 (sha256
8852 (base32
8853 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
8854 (build-system perl-build-system)
8855 (propagated-inputs
8856 `(("perl-data-optlist" ,perl-data-optlist)
8857 ("perl-params-util" ,perl-params-util)))
8858 (home-page "https://metacpan.org/release/Sub-Exporter")
8859 (synopsis "Sophisticated exporter for custom-built routines")
8860 (description
8861 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
8862 custom-built routines.")
8863 (license (package-license perl))))
8864
8865 (define-public perl-sub-exporter-progressive
8866 (package
8867 (name "perl-sub-exporter-progressive")
8868 (version "0.001013")
8869 (source
8870 (origin
8871 (method url-fetch)
8872 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
8873 "Sub-Exporter-Progressive-" version ".tar.gz"))
8874 (sha256
8875 (base32
8876 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
8877 (build-system perl-build-system)
8878 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
8879 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
8880 (synopsis "Only use Sub::Exporter if you need it")
8881 (description "Sub::Exporter is an incredibly powerful module, but with
8882 that power comes great responsibility, as well as some runtime penalties.
8883 This module is a \"Sub::Exporter\" wrapper that will let your users just use
8884 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
8885 if your users try to use \"Sub::Exporter\"'s more advanced features, like
8886 renaming exports, if they try to use them.")
8887 (license (package-license perl))))
8888
8889 (define-public perl-sub-identify
8890 (package
8891 (name "perl-sub-identify")
8892 (version "0.14")
8893 (source
8894 (origin
8895 (method url-fetch)
8896 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
8897 "Sub-Identify-" version ".tar.gz"))
8898 (sha256
8899 (base32
8900 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
8901 (build-system perl-build-system)
8902 (home-page "https://metacpan.org/release/Sub-Identify")
8903 (synopsis "Retrieve names of code references")
8904 (description "Sub::Identify allows you to retrieve the real name of code
8905 references.")
8906 (license (package-license perl))))
8907
8908 (define-public perl-sub-info
8909 (package
8910 (name "perl-sub-info")
8911 (version "0.002")
8912 (source
8913 (origin
8914 (method url-fetch)
8915 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
8916 version ".tar.gz"))
8917 (sha256
8918 (base32
8919 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
8920 (build-system perl-build-system)
8921 (propagated-inputs
8922 `(("perl-importer" ,perl-importer)))
8923 (home-page "https://metacpan.org/release/Sub-Info")
8924 (synopsis "Tool to inspect subroutines")
8925 (description "This package provides tools for inspecting subroutines
8926 in Perl.")
8927 (license (package-license perl))))
8928
8929 (define-public perl-sub-install
8930 (package
8931 (name "perl-sub-install")
8932 (version "0.928")
8933 (source
8934 (origin
8935 (method url-fetch)
8936 (uri (string-append
8937 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
8938 version ".tar.gz"))
8939 (sha256
8940 (base32
8941 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
8942 (build-system perl-build-system)
8943 (home-page "https://metacpan.org/release/Sub-Install")
8944 (synopsis "Install subroutines into packages easily")
8945 (description
8946 "Sub::Install makes it easy to install subroutines into packages without
8947 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
8948 can see them.")
8949 (license (package-license perl))))
8950
8951 (define-public perl-sub-name
8952 (package
8953 (name "perl-sub-name")
8954 (version "0.21")
8955 (source
8956 (origin
8957 (method url-fetch)
8958 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8959 "Sub-Name-" version ".tar.gz"))
8960 (sha256
8961 (base32
8962 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
8963 (build-system perl-build-system)
8964 (native-inputs
8965 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
8966 (home-page "https://metacpan.org/release/Sub-Name")
8967 (synopsis "(Re)name a sub")
8968 (description "Assigns a new name to referenced sub. If package
8969 specification is omitted in the name, then the current package is used. The
8970 return value is the sub.")
8971 (license (package-license perl))))
8972
8973 (define-public perl-sub-quote
8974 (package
8975 (name "perl-sub-quote")
8976 (version "2.006006")
8977 (source
8978 (origin
8979 (method url-fetch)
8980 (uri (string-append
8981 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
8982 version ".tar.gz"))
8983 (sha256
8984 (base32 "17fq4iskrisnqs96amrz493vxikwvqbj9s7014k6vyl84gs2lkkf"))))
8985 (build-system perl-build-system)
8986 (native-inputs
8987 `(("perl-test-fatal" ,perl-test-fatal)))
8988 (propagated-inputs
8989 `(("perl-sub-name" ,perl-sub-name)))
8990 (home-page "https://metacpan.org/release/Sub-Quote")
8991 (synopsis "Efficient generation of subroutines via string eval")
8992 (description "Sub::Quote provides an efficient generation of subroutines
8993 via string eval.")
8994 (license (package-license perl))))
8995
8996 (define-public perl-sub-uplevel
8997 (package
8998 (name "perl-sub-uplevel")
8999 (version "0.24")
9000 (source
9001 (origin
9002 (method url-fetch)
9003 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9004 "Sub-Uplevel-" version ".tar.gz"))
9005 (sha256
9006 (base32
9007 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
9008 (build-system perl-build-system)
9009 (home-page "https://metacpan.org/release/Sub-Uplevel")
9010 (synopsis "Apparently run a function in a higher stack frame")
9011 (description "Like Tcl's uplevel() function, but not quite so dangerous.
9012 The idea is just to fool caller(). All the really naughty bits of Tcl's
9013 uplevel() are avoided.")
9014 (license (package-license perl))))
9015
9016 (define-public perl-super
9017 (package
9018 (name "perl-super")
9019 (version "1.20190531")
9020 (source
9021 (origin
9022 (method url-fetch)
9023 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9024 "SUPER-" version ".tar.gz"))
9025 (sha256
9026 (base32 "16nk2za9fwyg7mcifacr69qi075iz1yvy8r9jh3903kzdvkiwpb8"))))
9027 (build-system perl-build-system)
9028 (native-inputs
9029 `(("perl-module-build" ,perl-module-build)))
9030 (propagated-inputs
9031 `(("perl-sub-identify" ,perl-sub-identify)))
9032 (home-page "https://metacpan.org/release/SUPER")
9033 (synopsis "Control superclass method dispatching")
9034 (description
9035 "When subclassing a class, you may occasionally want to dispatch control to
9036 the superclass---at least conditionally and temporarily. This module provides
9037 nicer equivalents to the native Perl syntax for calling superclasses, along with
9038 a universal @code{super} method to determine a class' own superclass, and better
9039 support for run-time mix-ins and roles.")
9040 (license perl-license)))
9041
9042 (define-public perl-svg
9043 (package
9044 (name "perl-svg")
9045 (version "2.84")
9046 (source
9047 (origin
9048 (method url-fetch)
9049 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/SVG-"
9050 version ".tar.gz"))
9051 (sha256
9052 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
9053 (build-system perl-build-system)
9054 (home-page "https://metacpan.org/release/SVG")
9055 (synopsis "Perl extension for generating SVG documents")
9056 (description "SVG is a Perl module which generates a nested data structure
9057 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
9058 Using SVG, you can generate SVG objects, embed other SVG instances into it,
9059 access the DOM object, create and access Javascript, and generate SMIL
9060 animation content.")
9061 (license (package-license perl))))
9062
9063 (define-public perl-switch
9064 (package
9065 (name "perl-switch")
9066 (version "2.17")
9067 (source
9068 (origin
9069 (method url-fetch)
9070 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
9071 version ".tar.gz"))
9072 (sha256
9073 (base32
9074 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
9075 (build-system perl-build-system)
9076 (home-page "https://metacpan.org/release/Switch")
9077 (synopsis "Switch statement for Perl")
9078 (description "Switch is a Perl module which implements a generalized case
9079 mechanism. The module augments the standard Perl syntax with two new
9080 statements: @code{switch} and @code{case}.")
9081 (license (package-license perl))))
9082
9083 (define-public perl-sys-cpu
9084 (package
9085 (name "perl-sys-cpu")
9086 (version "0.61")
9087 (source (origin
9088 (method url-fetch)
9089 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
9090 "Sys-CPU-" version ".tar.gz"))
9091 (sha256
9092 (base32
9093 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
9094 (modules '((guix build utils)))
9095 (snippet
9096 '(begin
9097 ;; The contents of /proc/cpuinfo can differ and confuse the
9098 ;; cpu_clock and cpu_type methods, so we replace the test
9099 ;; with one that marks cpu_clock and cpu_type as TODO.
9100 ;; Borrowed from Debian.
9101 (call-with-output-file "t/Sys-CPU.t"
9102 (lambda (port)
9103 (format port "#!/usr/bin/perl
9104
9105 use Test::More tests => 4;
9106
9107 BEGIN { use_ok('Sys::CPU'); }
9108
9109 $number = &Sys::CPU::cpu_count();
9110 ok( defined($number), \"CPU Count: $number\" );
9111
9112 TODO: {
9113 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
9114 $speed = &Sys::CPU::cpu_clock();
9115 ok( defined($speed), \"CPU Speed: $speed\" );
9116 }
9117
9118 TODO: {
9119 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
9120 $type = &Sys::CPU::cpu_type();
9121 ok( defined($type), \"CPU Type: $type\" );
9122 }~%")))
9123 #t))))
9124 (build-system perl-build-system)
9125 (synopsis "Perl extension for getting CPU information")
9126 (description
9127 "Sys::CPU is a module for counting the number of CPUs on a system, and
9128 determining their type and clock speed.")
9129 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
9130 (license (package-license perl))))
9131
9132 (define-public perl-sys-hostname-long
9133 (package
9134 (name "perl-sys-hostname-long")
9135 (version "1.5")
9136 (source
9137 (origin
9138 (method url-fetch)
9139 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
9140 "Sys-Hostname-Long-" version ".tar.gz"))
9141 (sha256
9142 (base32
9143 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
9144 (build-system perl-build-system)
9145 (arguments `(#:tests? #f)) ;no `hostname' during build
9146 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
9147 (synopsis "Get full hostname in Perl")
9148 (description "Sys::Hostname::Long tries very hard to get the full hostname
9149 of a system.")
9150 (license (package-license perl))))
9151
9152 (define-public perl-sys-syscall
9153 (package
9154 (name "perl-sys-syscall")
9155 (version "0.25")
9156 (source
9157 (origin
9158 (method url-fetch)
9159 (uri (string-append "mirror://cpan/authors/id/B/BR/BRADFITZ/"
9160 "Sys-Syscall-" version ".tar.gz"))
9161 (sha256
9162 (base32
9163 "1r8k4q04dhs191zgdfgiagvbra770hx0bm6x24jsykxn0c6ghi8y"))))
9164 (build-system perl-build-system)
9165 (home-page "https://metacpan.org/release/Sys-Syscall")
9166 (synopsis
9167 "Access system calls that Perl doesn't normally provide access to")
9168 (description
9169 "Sys::Syscall allows one to use epoll and sendfile system calls from
9170 Perl. Support is mostly Linux-only for now, but other syscalls/OSes are
9171 planned for the future.")
9172 (license perl-license)))
9173
9174 (define-public perl-task-weaken
9175 (package
9176 (name "perl-task-weaken")
9177 (version "1.06")
9178 (source
9179 (origin
9180 (method url-fetch)
9181 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9182 "Task-Weaken-" version ".tar.gz"))
9183 (sha256
9184 (base32
9185 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
9186 (build-system perl-build-system)
9187 (arguments
9188 '(#:phases (modify-phases %standard-phases
9189 (add-before 'configure 'set-search-path
9190 (lambda _
9191 ;; Work around "dotless @INC" build failure.
9192 (setenv "PERL5LIB"
9193 (string-append (getcwd) ":"
9194 (getenv "PERL5LIB")))
9195 #t)))))
9196 (home-page "https://metacpan.org/release/Task-Weaken")
9197 (synopsis "Ensure that a platform has weaken support")
9198 (description "One recurring problem in modules that use Scalar::Util's
9199 weaken function is that it is not present in the pure-perl variant. If
9200 Scalar::Util is not available at all, it will issue a normal dependency on the
9201 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
9202 module does not have weaken, the install will bail out altogether with a long
9203 error encouraging the user to seek support.")
9204 (license (package-license perl))))
9205
9206 (define-public perl-template-toolkit
9207 (package
9208 (name "perl-template-toolkit")
9209 (version "2.28")
9210 (source
9211 (origin
9212 (method url-fetch)
9213 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9214 "Template-Toolkit-" version ".tar.gz"))
9215 (sha256
9216 (base32
9217 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
9218 (build-system perl-build-system)
9219 (propagated-inputs
9220 `(("perl-appconfig" ,perl-appconfig)
9221 ("perl-test-leaktrace" ,perl-test-leaktrace)))
9222 (home-page "https://metacpan.org/release/Template-Toolkit")
9223 (synopsis "Template processing system for Perl")
9224 (description "The Template Toolkit is a collection of modules which
9225 implement an extensible template processing system. It was originally
9226 designed and remains primarily useful for generating dynamic web content, but
9227 it can be used equally well for processing any other kind of text based
9228 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
9229 (license (package-license perl))))
9230
9231 (define-public perl-template-timer
9232 (package
9233 (name "perl-template-timer")
9234 (version "1.00")
9235 (source
9236 (origin
9237 (method url-fetch)
9238 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
9239 "Template-Timer-" version ".tar.gz"))
9240 (sha256
9241 (base32
9242 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
9243 (build-system perl-build-system)
9244 (propagated-inputs
9245 `(("perl-template-toolkit" ,perl-template-toolkit)))
9246 (home-page "https://metacpan.org/release/Template-Timer")
9247 (synopsis "Profiling for Template Toolkit")
9248 (description "Template::Timer provides inline profiling of the template
9249 processing in Perl code.")
9250 (license (list gpl3 artistic2.0))))
9251
9252 (define-public perl-template-tiny
9253 (package
9254 (name "perl-template-tiny")
9255 (version "1.12")
9256 (source
9257 (origin
9258 (method url-fetch)
9259 (uri (string-append
9260 "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-"
9261 version
9262 ".tar.gz"))
9263 (sha256
9264 (base32
9265 "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7"))))
9266 (build-system perl-build-system)
9267 (home-page "https://metacpan.org/release/Template-Tiny")
9268 (synopsis "Template Toolkit reimplemented in as little code as possible")
9269 (description
9270 "@code{Template::Tiny} is a reimplementation of a subset of the
9271 functionality from Template Toolkit in as few lines of code as possible.
9272
9273 It is intended for use in light-usage, low-memory, or low-cpu templating
9274 situations, where you may need to upgrade to the full feature set in the
9275 future, or if you want the retain the familiarity of TT-style templates.")
9276 (license perl-license)))
9277
9278 (define-public perl-term-encoding
9279 (package
9280 (name "perl-term-encoding")
9281 (version "0.02")
9282 (source
9283 (origin
9284 (method url-fetch)
9285 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
9286 "Term-Encoding-" version ".tar.gz"))
9287 (sha256
9288 (base32
9289 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
9290 (build-system perl-build-system)
9291 (native-inputs
9292 `(("perl-module-install" ,perl-module-install)))
9293 (home-page "https://metacpan.org/release/Term-Encoding")
9294 (synopsis "Detect encoding of the current terminal")
9295 (description "Term::Encoding is a simple module to detect the encoding of
9296 the current terminal expects in various ways.")
9297 (license (package-license perl))))
9298
9299 (define-public perl-term-progressbar
9300 (package
9301 (name "perl-term-progressbar")
9302 (version "2.17")
9303 (source
9304 (origin
9305 (method url-fetch)
9306 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
9307 "Term-ProgressBar-" version ".tar.gz"))
9308 (sha256
9309 (base32
9310 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
9311 (build-system perl-build-system)
9312 (native-inputs
9313 `(("perl-capture-tiny" ,perl-capture-tiny)
9314 ("perl-test-exception" ,perl-test-exception)))
9315 (propagated-inputs
9316 `(("perl-class-methodmaker" ,perl-class-methodmaker)
9317 ("perl-term-readkey" ,perl-term-readkey)))
9318 (home-page "https://metacpan.org/release/Term-ProgressBar")
9319 (synopsis "Progress meter on a standard terminal")
9320 (description "Term::ProgressBar provides a simple progress bar on the
9321 terminal, to let the user know that something is happening, roughly how much
9322 stuff has been done, and maybe an estimate at how long remains.")
9323 (license (package-license perl))))
9324
9325 (define-public perl-term-progressbar-quiet
9326 (package
9327 (name "perl-term-progressbar-quiet")
9328 (version "0.31")
9329 (source
9330 (origin
9331 (method url-fetch)
9332 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
9333 "Term-ProgressBar-Quiet-" version ".tar.gz"))
9334 (sha256
9335 (base32
9336 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
9337 (build-system perl-build-system)
9338 (propagated-inputs
9339 `(("perl-io-interactive" ,perl-io-interactive)
9340 ("perl-term-progressbar" ,perl-term-progressbar)
9341 ("perl-test-mockobject" ,perl-test-mockobject)))
9342 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
9343 (synopsis "Progress meter if run interactively")
9344 (description "Term::ProgressBar is a wonderful module for showing progress
9345 bars on the terminal. This module acts very much like that module when it is
9346 run interactively. However, when it is not run interactively (for example, as
9347 a cron job) then it does not show the progress bar.")
9348 (license (package-license perl))))
9349
9350 (define-public perl-term-progressbar-simple
9351 (package
9352 (name "perl-term-progressbar-simple")
9353 (version "0.03")
9354 (source
9355 (origin
9356 (method url-fetch)
9357 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
9358 "Term-ProgressBar-Simple-" version ".tar.gz"))
9359 (sha256
9360 (base32
9361 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
9362 (build-system perl-build-system)
9363 (propagated-inputs
9364 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
9365 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
9366 (synopsis "Simple progress bars")
9367 (description "Term::ProgressBar::Simple tells you how much work has been
9368 done, how much is left to do, and estimate how long it will take.")
9369 (license (package-license perl))))
9370
9371 (define-public perl-term-readkey
9372 (package
9373 (name "perl-term-readkey")
9374 (version "2.38")
9375 (source
9376 (origin
9377 (method url-fetch)
9378 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
9379 "TermReadKey-" version ".tar.gz"))
9380 (sha256
9381 (base32
9382 "143jlibah1g14bym7sj3gphvqkpj1w4vn7sqc4vc62jpviw5hr2s"))))
9383 (build-system perl-build-system)
9384 (home-page "https://metacpan.org/release/TermReadKey")
9385 (synopsis "Simple terminal control")
9386 (description "This module, ReadKey, provides ioctl control for terminals
9387 so the input modes can be changed (thus allowing reads of a single character
9388 at a time), and also provides non-blocking reads of stdin, as well as several
9389 other terminal related features, including retrieval/modification of the
9390 screen size, and retrieval/modification of the control characters.")
9391 (license (package-license perl))))
9392
9393 (define-public perl-term-readline-gnu
9394 (package
9395 (name "perl-term-readline-gnu")
9396 (version "1.36")
9397 (source
9398 (origin
9399 (method url-fetch)
9400 (uri (string-append "mirror://cpan/authors/id/H/HA/HAYASHI/"
9401 "Term-ReadLine-Gnu-" version ".tar.gz"))
9402 (sha256
9403 (base32
9404 "09b9mcmp09kdfh5jaqdr528yny8746hvn3f185aqd6rw06jgf24s"))))
9405 (build-system perl-build-system)
9406 (inputs
9407 `(("readline" ,readline)
9408 ("ncurses" ,ncurses)))
9409 (arguments
9410 `(#:tests? #f ; Tests fail without other Term::ReadLine interfaces present
9411 #:phases (modify-phases %standard-phases
9412 (add-before 'configure 'patch-search-lib
9413 (lambda* (#:key inputs #:allow-other-keys)
9414 (substitute* "Makefile.PL"
9415 ;; The configuration provides no way easy was to pass
9416 ;; additional directories to search for libraries, so
9417 ;; just patch in the flags.
9418 (("-lreadline" &)
9419 (format #f "-L~a/lib ~a" (assoc-ref inputs "readline") &))
9420 (("&search_lib\\('-lncurses'\\)")
9421 (string-append "'-L" (assoc-ref inputs "ncurses") "/lib"
9422 " -lncurses'"))))))))
9423 (home-page "https://metacpan.org/release/Term-ReadLine-Gnu")
9424 (synopsis "GNU Readline/History Library interface for Perl")
9425 (description "This module implements an interface to the GNU Readline
9426 library. It gives you input line editing facilities, input history management
9427 facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards
9428 compatible with Term::ReadLine.")
9429 (license (package-license perl))))
9430
9431 (define-public perl-term-size-any
9432 (package
9433 (name "perl-term-size-any")
9434 (version "0.002")
9435 (source
9436 (origin
9437 (method url-fetch)
9438 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9439 "Term-Size-Any-" version ".tar.gz"))
9440 (sha256
9441 (base32
9442 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
9443 (build-system perl-build-system)
9444 (native-inputs
9445 `(("perl-devel-hide" ,perl-devel-hide)))
9446 (propagated-inputs
9447 `(("perl-term-size-perl" ,perl-term-size-perl)))
9448 (home-page "https://metacpan.org/release/Term-Size-Any")
9449 (synopsis "Retrieve terminal size")
9450 (description "This is a unified interface to retrieve terminal size. It
9451 loads one module of a list of known alternatives, each implementing some way
9452 to get the desired terminal information. This loaded module will actually do
9453 the job on behalf of @code{Term::Size::Any}.")
9454 (license (package-license perl))))
9455
9456 (define-public perl-term-size-perl
9457 (package
9458 (name "perl-term-size-perl")
9459 (version "0.031")
9460 (source
9461 (origin
9462 (method url-fetch)
9463 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9464 "Term-Size-Perl-" version ".tar.gz"))
9465 (sha256
9466 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
9467 (build-system perl-build-system)
9468 (home-page "https://metacpan.org/release/Term-Size-Perl")
9469 (synopsis "Perl extension for retrieving terminal size (Perl version)")
9470 (description "This is yet another implementation of @code{Term::Size}.
9471 Now in pure Perl, with the exception of a C probe run at build time.")
9472 (license (package-license perl))))
9473
9474 (define-public perl-term-table
9475 (package
9476 (name "perl-term-table")
9477 (version "0.008")
9478 (source
9479 (origin
9480 (method url-fetch)
9481 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
9482 version ".tar.gz"))
9483 (sha256
9484 (base32
9485 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
9486 (build-system perl-build-system)
9487 (propagated-inputs
9488 `(("perl-importer" ,perl-importer)))
9489 (home-page "https://metacpan.org/release/Term-Table")
9490 (synopsis "Format a header and rows into a table")
9491 (description "This module is able to generically format rows of data
9492 into tables.")
9493 (license (package-license perl))))
9494
9495 (define-public perl-text-aligner
9496 (package
9497 (name "perl-text-aligner")
9498 (version "0.13")
9499 (source
9500 (origin
9501 (method url-fetch)
9502 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9503 "Text-Aligner-" version ".tar.gz"))
9504 (sha256
9505 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
9506 (build-system perl-build-system)
9507 (native-inputs `(("perl-module-build" ,perl-module-build)))
9508 (home-page "https://metacpan.org/release/Text-Aligner")
9509 (synopsis "Align text")
9510 (description "Text::Aligner exports a single function, align(), which is
9511 used to justify strings to various alignment styles.")
9512 (license x11)))
9513
9514 (define-public perl-text-balanced
9515 (package
9516 (name "perl-text-balanced")
9517 (version "2.03")
9518 (source
9519 (origin
9520 (method url-fetch)
9521 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
9522 "Text-Balanced-" version ".tar.gz"))
9523 (sha256
9524 (base32
9525 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
9526 (build-system perl-build-system)
9527 (home-page "https://metacpan.org/release/Text-Balanced")
9528 (synopsis "Extract delimited text sequences from strings")
9529 (description "The Text::Balanced module can be used to extract delimited
9530 text sequences from strings.")
9531 (license (package-license perl))))
9532
9533 (define-public perl-text-csv
9534 (package
9535 (name "perl-text-csv")
9536 (version "2.00")
9537 (source
9538 (origin
9539 (method url-fetch)
9540 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
9541 "Text-CSV-" version ".tar.gz"))
9542 (sha256
9543 (base32 "1hmjrc8h622nybdq8lpqi3hlrcjvb474s4a4b2cjs8h5b0cxkjwc"))))
9544 (build-system perl-build-system)
9545 (home-page "https://metacpan.org/release/Text-CSV")
9546 (synopsis "Manipulate comma-separated values")
9547 (description "Text::CSV provides facilities for the composition and
9548 decomposition of comma-separated values. An instance of the Text::CSV class
9549 can combine fields into a CSV string and parse a CSV string into fields.")
9550 (license (package-license perl))))
9551
9552 (define-public perl-text-csv-xs
9553 (package
9554 (name "perl-text-csv-xs")
9555 (version "1.39")
9556 (source
9557 (origin
9558 (method url-fetch)
9559 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
9560 "Text-CSV_XS-" version ".tgz"))
9561 (sha256
9562 (base32 "1gcy1bxym6f7qsxivkl3c5p94r1bjhf9csy1x38a1gk8mx744kma"))))
9563 (build-system perl-build-system)
9564 (home-page "https://metacpan.org/release/Text-CSV_XS")
9565 (synopsis "Routines for manipulating CSV files")
9566 (description "@code{Text::CSV_XS} provides facilities for the composition
9567 and decomposition of comma-separated values. An instance of the
9568 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
9569 CSV string into fields. The module accepts either strings or files as input
9570 and support the use of user-specified characters for delimiters, separators,
9571 and escapes.")
9572 (license (package-license perl))))
9573
9574 (define-public perl-text-diff
9575 (package
9576 (name "perl-text-diff")
9577 (version "1.45")
9578 (source
9579 (origin
9580 (method url-fetch)
9581 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9582 "Text-Diff-" version ".tar.gz"))
9583 (sha256
9584 (base32
9585 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
9586 (build-system perl-build-system)
9587 (propagated-inputs
9588 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
9589 (home-page "https://metacpan.org/release/Text-Diff")
9590 (synopsis "Perform diffs on files and record sets")
9591 (description "Text::Diff provides a basic set of services akin to the GNU
9592 diff utility. It is not anywhere near as feature complete as GNU diff, but it
9593 is better integrated with Perl and available on all platforms. It is often
9594 faster than shelling out to a system's diff executable for small files, and
9595 generally slower on larger files.")
9596 (license (package-license perl))))
9597
9598 (define-public perl-text-format
9599 (package
9600 (name "perl-text-format")
9601 (version "0.61")
9602 (source (origin
9603 (method url-fetch)
9604 (uri (string-append
9605 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
9606 version ".tar.gz"))
9607 (sha256
9608 (base32
9609 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
9610 (build-system perl-build-system)
9611 (native-inputs
9612 `(("perl-module-build" ,perl-module-build)
9613 ("perl-test-pod" ,perl-test-pod)
9614 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9615 (home-page "https://metacpan.org/release/Text-Format")
9616 (synopsis "Various subroutines to format text")
9617 (description "This package provides functions to format text in various
9618 ways like centering, paragraphing, and converting tabs to spaces and spaces
9619 to tabs.")
9620 (license perl-license)))
9621
9622 (define-public perl-text-glob
9623 (package
9624 (name "perl-text-glob")
9625 (version "0.11")
9626 (source
9627 (origin
9628 (method url-fetch)
9629 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
9630 "Text-Glob-" version ".tar.gz"))
9631 (sha256
9632 (base32
9633 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
9634 (build-system perl-build-system)
9635 (native-inputs `(("perl-module-build" ,perl-module-build)))
9636 (home-page "https://metacpan.org/release/Text-Glob")
9637 (synopsis "Match globbing patterns against text")
9638 (description "Text::Glob implements glob(3) style matching that can be
9639 used to match against text, rather than fetching names from a file system. If
9640 you want to do full file globbing use the File::Glob module instead.")
9641 (license (package-license perl))))
9642
9643 (define-public perl-text-neattemplate
9644 (package
9645 (name "perl-text-neattemplate")
9646 (version "0.1101")
9647 (source
9648 (origin
9649 (method url-fetch)
9650 (uri (string-append
9651 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
9652 "Text-NeatTemplate-" version ".tar.gz"))
9653 (sha256
9654 (base32
9655 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
9656 (build-system perl-build-system)
9657 (native-inputs
9658 `(("perl-module-build" ,perl-module-build)))
9659 (home-page
9660 "https://metacpan.org/release/Text-NeatTemplate")
9661 (synopsis "Fast, middleweight template engine")
9662 (description
9663 "Text::NeatTemplate provides a simple, middleweight but fast
9664 template engine, for when you need speed rather than complex features,
9665 yet need more features than simple variable substitution.")
9666 (license (package-license perl))))
9667
9668 (define-public perl-text-roman
9669 (package
9670 (name "perl-text-roman")
9671 (version "3.5")
9672 (source
9673 (origin
9674 (method url-fetch)
9675 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
9676 version ".tar.gz"))
9677 (sha256
9678 (base32
9679 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
9680 (build-system perl-build-system)
9681 (home-page "https://metacpan.org/release/Text-Roman")
9682 (synopsis "Convert between Roman and Arabic algorisms")
9683 (description "This package provides functions to convert between Roman and
9684 Arabic algorisms. It supports both conventional Roman algorisms (which range
9685 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
9686 algorism to indicate multiplication by 1000.")
9687 (license (package-license perl))))
9688
9689 (define-public perl-text-simpletable
9690 (package
9691 (name "perl-text-simpletable")
9692 (version "2.07")
9693 (source
9694 (origin
9695 (method url-fetch)
9696 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
9697 "Text-SimpleTable-" version ".tar.gz"))
9698 (sha256
9699 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
9700 (build-system perl-build-system)
9701 (home-page "https://metacpan.org/release/Text-SimpleTable")
9702 (synopsis "Simple ASCII tables")
9703 (description "Text::SimpleTable draws simple ASCII tables.")
9704 (license artistic2.0)))
9705
9706 (define-public perl-text-table
9707 (package
9708 (name "perl-text-table")
9709 (version "1.133")
9710 (source
9711 (origin
9712 (method url-fetch)
9713 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9714 "Text-Table-" version ".tar.gz"))
9715 (sha256
9716 (base32
9717 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
9718 (build-system perl-build-system)
9719 (native-inputs
9720 `(("perl-module-build" ,perl-module-build)))
9721 (propagated-inputs
9722 `(("perl-text-aligner" ,perl-text-aligner)))
9723 (home-page "https://metacpan.org/release/Text-Table")
9724 (synopsis "Organize Data in Tables")
9725 (description "Text::Table renders plaintext tables.")
9726 (license x11)))
9727
9728 (define-public perl-text-template
9729 (package
9730 (name "perl-text-template")
9731 (version "1.55")
9732 (source
9733 (origin
9734 (method url-fetch)
9735 (uri (string-append
9736 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
9737 version
9738 ".tar.gz"))
9739 (sha256
9740 (base32
9741 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
9742 (build-system perl-build-system)
9743 (native-inputs
9744 `(("perl-test-more-utf8" ,perl-test-more-utf8)
9745 ("perl-test-warnings" ,perl-test-warnings)))
9746 (home-page
9747 "https://metacpan.org/release/Text-Template")
9748 (synopsis
9749 "Expand template text with embedded Perl")
9750 (description
9751 "This is a library for generating letters, building HTML pages, or
9752 filling in templates generally. A template is a piece of text that has little
9753 Perl programs embedded in it here and there. When you fill in a template, you
9754 evaluate the little programs and replace them with their values.")
9755 (license perl-license)))
9756
9757 (define-public perl-text-unidecode
9758 (package
9759 (name "perl-text-unidecode")
9760 (version "1.30")
9761 (source
9762 (origin
9763 (method url-fetch)
9764 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
9765 "Text-Unidecode-" version ".tar.gz"))
9766 (sha256
9767 (base32 "1imii0p6wvhrxsr5z2zhazpx5vl4l4ybf1y2c5hy480xvi6z293c"))))
9768 (build-system perl-build-system)
9769 (home-page "https://metacpan.org/release/Text-Unidecode")
9770 (synopsis "Provide plain ASCII transliterations of Unicode text")
9771 (description "Text::Unidecode provides a function, unidecode(...) that
9772 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
9773 universally displayable characters between 0x00 and 0x7F). The representation
9774 is almost always an attempt at transliteration-- i.e., conveying, in Roman
9775 letters, the pronunciation expressed by the text in some other writing
9776 system.")
9777 (license (package-license perl))))
9778
9779 (define-public perl-threads
9780 (package
9781 (name "perl-threads")
9782 (version "2.21")
9783 (source
9784 (origin
9785 (method url-fetch)
9786 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
9787 version ".tar.gz"))
9788 (sha256
9789 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
9790 (build-system perl-build-system)
9791 (home-page "https://metacpan.org/release/threads")
9792 (synopsis "Perl interpreter-based threads")
9793 (description "This module exposes interpreter threads to the Perl level.")
9794 (license perl-license)))
9795
9796 (define-public perl-throwable
9797 (package
9798 (name "perl-throwable")
9799 (version "0.200013")
9800 (source
9801 (origin
9802 (method url-fetch)
9803 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
9804 "Throwable-" version ".tar.gz"))
9805 (sha256
9806 (base32
9807 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
9808 (build-system perl-build-system)
9809 (native-inputs
9810 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
9811 (propagated-inputs
9812 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
9813 ("perl-module-runtime" ,perl-module-runtime)
9814 ("perl-moo" ,perl-moo)))
9815 (home-page "https://metacpan.org/release/Throwable")
9816 (synopsis "Role for classes that can be thrown")
9817 (description "Throwable is a role for classes that are meant to be thrown
9818 as exceptions to standard program flow.")
9819 (license (package-license perl))))
9820
9821 (define-public perltidy
9822 (package
9823 (name "perltidy")
9824 (version "20180220")
9825 (source (origin
9826 (method url-fetch)
9827 (uri (string-append "mirror://sourceforge/perltidy/" version
9828 "/Perl-Tidy-" version ".tar.gz"))
9829 (sha256
9830 (base32
9831 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
9832 (build-system perl-build-system)
9833 (home-page "http://perltidy.sourceforge.net/")
9834 (synopsis "Perl script tidier")
9835 (description "This package contains a Perl script which indents and
9836 reformats Perl scripts to make them easier to read. The formatting can be
9837 controlled with command line parameters. The default parameter settings
9838 approximately follow the suggestions in the Perl Style Guide.")
9839 (license gpl2+)))
9840
9841 (define-public perl-tie-cycle
9842 (package
9843 (name "perl-tie-cycle")
9844 (version "1.225")
9845 (source
9846 (origin
9847 (method url-fetch)
9848 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
9849 version ".tar.gz"))
9850 (sha256
9851 (base32
9852 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
9853 (build-system perl-build-system)
9854 (home-page "https://metacpan.org/release/Tie-Cycle")
9855 (synopsis "Cycle through a list of values")
9856 (description "You use @code{Tie::Cycle} to go through a list over and over
9857 again. Once you get to the end of the list, you go back to the beginning.")
9858 (license (package-license perl))))
9859
9860 (define-public perl-tie-ixhash
9861 (package
9862 (name "perl-tie-ixhash")
9863 (version "1.23")
9864 (source
9865 (origin
9866 (method url-fetch)
9867 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
9868 "Tie-IxHash-" version ".tar.gz"))
9869 (sha256
9870 (base32
9871 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
9872 (build-system perl-build-system)
9873 (native-inputs `(("perl-module-build" ,perl-module-build)))
9874 (home-page "https://metacpan.org/release/Tie-IxHash")
9875 (synopsis "Ordered associative arrays for Perl")
9876 (description "This Perl module implements Perl hashes that preserve the
9877 order in which the hash elements were added. The order is not affected when
9878 values corresponding to existing keys in the IxHash are changed. The elements
9879 can also be set to any arbitrary supplied order. The familiar perl array
9880 operations can also be performed on the IxHash.")
9881 (license (package-license perl))))
9882
9883 (define-public perl-tie-handle-offset
9884 (package
9885 (name "perl-tie-handle-offset")
9886 (version "0.004")
9887 (source
9888 (origin
9889 (method url-fetch)
9890 (uri (string-append
9891 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
9892 version
9893 ".tar.gz"))
9894 (sha256
9895 (base32
9896 "17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
9897 (build-system perl-build-system)
9898 (home-page "https://metacpan.org/release/Tie-Handle-Offset")
9899 (synopsis "Special file handle that hides the beginning of a file")
9900 (description
9901 "This modules provides a file handle that hides the beginning of a file,
9902 by modifying the @code{seek()} and @code{tell()} calls.")
9903 (license asl2.0)))
9904
9905 (define-public perl-tie-toobject
9906 (package
9907 (name "perl-tie-toobject")
9908 (version "0.03")
9909 (source
9910 (origin
9911 (method url-fetch)
9912 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
9913 "Tie-ToObject-" version ".tar.gz"))
9914 (sha256
9915 (base32
9916 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
9917 (build-system perl-build-system)
9918 (propagated-inputs
9919 `(("perl-test-simple" ,perl-test-simple)))
9920 (home-page "https://metacpan.org/release/Tie-ToObject")
9921 (synopsis "Tie to an existing Perl object")
9922 (description "This class provides a tie constructor that returns the
9923 object it was given as it's first argument. This way side effects of calling
9924 $object->TIEHASH are avoided.")
9925 (license (package-license perl))))
9926
9927 (define-public perl-time-duration
9928 (package
9929 (name "perl-time-duration")
9930 (version "1.21")
9931 (source
9932 (origin
9933 (method url-fetch)
9934 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9935 "Time-Duration-" version ".tar.gz"))
9936 (sha256
9937 (base32 "1f59z2svfydxgd1gzrb5k3hl6d432kzmskk7jhv2dyb5hyx0wd7y"))))
9938 (build-system perl-build-system)
9939 (native-inputs
9940 `(("perl-module-install" ,perl-module-install)
9941 ("perl-test-pod" ,perl-test-pod)
9942 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9943 (home-page "https://metacpan.org/release/Time-Duration")
9944 (synopsis "English expression of durations")
9945 (description "This module provides functions for expressing durations in
9946 rounded or exact terms.")
9947 (license (package-license perl))))
9948
9949 (define-public perl-time-duration-parse
9950 (package
9951 (name "perl-time-duration-parse")
9952 (version "0.14")
9953 (source
9954 (origin
9955 (method url-fetch)
9956 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9957 "Time-Duration-Parse-" version ".tar.gz"))
9958 (sha256
9959 (base32 "17nh73r50mqqpgxdf3zpgdiqrizmjy0vdk0zd6xi9zcsdijrdhnc"))))
9960 (build-system perl-build-system)
9961 (native-inputs
9962 `(("perl-time-duration" ,perl-time-duration)))
9963 (propagated-inputs
9964 `(("perl-exporter-lite" ,perl-exporter-lite)))
9965 (home-page "https://metacpan.org/release/Time-Duration-Parse")
9966 (synopsis "Parse time duration strings")
9967 (description "Time::Duration::Parse is a module to parse human readable
9968 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
9969 (license (package-license perl))))
9970
9971 (define-public perl-time-hires
9972 (package
9973 (name "perl-time-hires")
9974 (version "1.9760")
9975 (source (origin
9976 (method url-fetch)
9977 (uri (string-append
9978 "mirror://cpan/authors/id/A/AT/ATOOMIC/Time-HiRes-"
9979 version ".tar.gz"))
9980 (sha256
9981 (base32
9982 "0avh25m5ffsqc2xnfczvlnlbfbisw5wjq9d3w0j01h9byjzrif1c"))))
9983 (build-system perl-build-system)
9984 (home-page "https://metacpan.org/release/Time-HiRes")
9985 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
9986 (description "This package implements @code{usleep}, @code{ualarm}, and
9987 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
9988 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
9989 (license perl-license)))
9990
9991 (define-public perl-time-local
9992 (package
9993 (name "perl-time-local")
9994 (version "1.28")
9995 (source
9996 (origin
9997 (method url-fetch)
9998 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
9999 "Time-Local-" version ".tar.gz"))
10000 (sha256
10001 (base32
10002 "03p1mxk75vmmi4l0ibpd05b6hncbh8afjhvss87vpp4rrkjvjy4j"))))
10003 (build-system perl-build-system)
10004 (home-page "https://metacpan.org/release/Time-Local")
10005 (synopsis "Efficiently compute time from local and GMT time")
10006 (description "This module provides functions that are the inverse of
10007 built-in perl functions localtime() and gmtime(). They accept a date as a
10008 six-element array, and return the corresponding time(2) value in seconds since
10009 the system epoch.")
10010 (license (package-license perl))))
10011
10012 (define-public perl-time-piece
10013 (package
10014 (name "perl-time-piece")
10015 (version "1.3203")
10016 (source
10017 (origin
10018 (method url-fetch)
10019 (uri (string-append
10020 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
10021 version ".tar.gz"))
10022 (sha256
10023 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
10024 (build-system perl-build-system)
10025 (home-page "https://metacpan.org/release/Time-Piece")
10026 (synopsis "Object-Oriented time objects")
10027 (description
10028 "This module replaces the standard @code{localtime} and @code{gmtime}
10029 functions with implementations that return objects. It does so in a
10030 backwards-compatible manner, so that using these functions as documented will
10031 still work as expected.")
10032 (license perl-license)))
10033
10034 (define-public perl-timedate
10035 (package
10036 (name "perl-timedate")
10037 (version "2.33")
10038 (source
10039 (origin
10040 (method url-fetch)
10041 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
10042 "TimeDate-" version ".tar.gz"))
10043 (sha256
10044 (base32 "1cjyc0yi873597r7xcp9yz0l1c46ik2kxwfrn00zbrlx0d5rrdn0"))))
10045 (build-system perl-build-system)
10046 (home-page "https://metacpan.org/release/TimeDate")
10047 (synopsis "Date parsing/formatting subroutines")
10048 (description "This module provides routines for parsing date string into
10049 time values and formatting dates into ASCII strings.")
10050 (license (package-license perl))))
10051
10052 (define-public perl-time-mock
10053 (package
10054 (name "perl-time-mock")
10055 (version "v0.0.2")
10056 (source
10057 (origin
10058 (method url-fetch)
10059 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
10060 "Time-Mock-" version ".tar.gz"))
10061 (sha256
10062 (base32
10063 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
10064 (build-system perl-build-system)
10065 (native-inputs
10066 `(("perl-module-build" ,perl-module-build)))
10067 (propagated-inputs
10068 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
10069 (home-page "https://metacpan.org/release/Time-Mock")
10070 (synopsis "Shift and scale time")
10071 (description "This module allows you to speed up your sleep(), alarm(),
10072 and time() calls.")
10073 (license (package-license perl))))
10074
10075 (define-public perl-tree-simple
10076 (package
10077 (name "perl-tree-simple")
10078 (version "1.33")
10079 (source
10080 (origin
10081 (method url-fetch)
10082 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10083 "Tree-Simple-" version ".tgz"))
10084 (sha256
10085 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
10086 (build-system perl-build-system)
10087 (native-inputs
10088 `(("perl-module-build" ,perl-module-build)
10089 ("perl-test-exception" ,perl-test-exception)))
10090 (propagated-inputs
10091 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
10092 (home-page "https://metacpan.org/release/Tree-Simple")
10093 (synopsis "Simple tree object")
10094 (description "This module in a fully object-oriented implementation of a
10095 simple n-ary tree.")
10096 (license (package-license perl))))
10097
10098 (define-public perl-tree-simple-visitorfactory
10099 (package
10100 (name "perl-tree-simple-visitorfactory")
10101 (version "0.15")
10102 (source
10103 (origin
10104 (method url-fetch)
10105 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10106 "Tree-Simple-VisitorFactory-" version ".tgz"))
10107 (sha256
10108 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
10109 (build-system perl-build-system)
10110 (native-inputs
10111 `(("perl-module-build" ,perl-module-build)
10112 ("perl-test-exception" ,perl-test-exception)))
10113 (propagated-inputs
10114 `(("perl-tree-simple" ,perl-tree-simple)))
10115 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
10116 (synopsis "Factory object for dispensing Visitor objects")
10117 (description "This module is a factory for dispensing
10118 Tree::Simple::Visitor::* objects.")
10119 (license (package-license perl))))
10120
10121 (define-public perl-try-tiny
10122 (package
10123 (name "perl-try-tiny")
10124 (version "0.30")
10125 (source
10126 (origin
10127 (method url-fetch)
10128 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10129 "Try-Tiny-" version ".tar.gz"))
10130 (sha256
10131 (base32
10132 "0szgvlz19yz3mq1lbzmwh8w5dh6agg5s16xv22zrnl83r7ax0nys"))))
10133 (build-system perl-build-system)
10134 (home-page "https://metacpan.org/release/Try-Tiny")
10135 (synopsis "Minimal try/catch with proper preservation of $@@")
10136 (description "This module provides bare bones try/catch/finally statements
10137 that are designed to minimize common mistakes with eval blocks, and nothing
10138 else.")
10139 (license x11)))
10140
10141 (define-public perl-type-tie
10142 (package
10143 (name "perl-type-tie")
10144 (version "0.014")
10145 (source
10146 (origin
10147 (method url-fetch)
10148 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10149 "Type-Tie-" version ".tar.gz"))
10150 (sha256
10151 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
10152 (build-system perl-build-system)
10153 (native-inputs
10154 `(("perl-test-fatal" ,perl-test-fatal)
10155 ("perl-test-requires" ,perl-test-requires)))
10156 (propagated-inputs
10157 `(("perl-exporter-tiny" ,perl-exporter-tiny)
10158 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
10159 (home-page "https://metacpan.org/release/Type-Tie")
10160 (synopsis "Tie a variable to a type constraint")
10161 (description "This module exports a single function: @code{ttie}. It ties
10162 a variable to a type constraint, ensuring that whatever values stored in the
10163 variable will conform to the type constraint. If the type constraint has
10164 coercions, these will be used if necessary to ensure values assigned to the
10165 variable conform.")
10166 (license (package-license perl))))
10167
10168 (define-public perl-type-tiny
10169 (package
10170 (name "perl-type-tiny")
10171 (version "1.008003")
10172 (source
10173 (origin
10174 (method url-fetch)
10175 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10176 "Type-Tiny-" version ".tar.gz"))
10177 (sha256
10178 (base32 "1x80rlnh7kl4xgm4qvyfbgahcyla4wbyh3b759nm21czn8x6wkm4"))))
10179 (build-system perl-build-system)
10180 (native-inputs
10181 `(("perl-test-warnings" ,perl-test-warnings)))
10182 (propagated-inputs
10183 `(("perl-devel-lexalias" ,perl-devel-lexalias)
10184 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
10185 ("perl-exporter-tiny" ,perl-exporter-tiny)
10186 ("perl-moo" ,perl-moo)
10187 ("perl-moose" ,perl-moose)
10188 ("perl-mouse" ,perl-mouse)
10189 ("perl-ref-util-xs" ,perl-ref-util-xs)
10190 ("perl-regexp-util" ,perl-regexp-util)
10191 ("perl-type-tie" ,perl-type-tie)))
10192 (home-page "https://metacpan.org/release/Type-Tiny")
10193 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
10194 (description "@code{Type::Tiny} is a small class for writing type
10195 constraints, inspired by Moose's type constraint API. It has only one
10196 non-core dependency (and even that is simply a module that was previously
10197 distributed as part of @code{Type::Tiny} but has since been spun off), and can
10198 be used with Moose, Mouse and Moo (or none of the above).")
10199 (license (package-license perl))))
10200
10201 (define-public perl-type-tiny-xs
10202 (package
10203 (name "perl-type-tiny-xs")
10204 (version "0.014")
10205 (source
10206 (origin
10207 (method url-fetch)
10208 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
10209 version ".tar.gz"))
10210 (sha256
10211 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
10212 (build-system perl-build-system)
10213 (home-page "https://metacpan.org/release/Type-Tiny-XS")
10214 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
10215 (description "This module is optionally used by @code{Type::Tiny} to
10216 provide faster, C-based implementations of some type constraints. This
10217 package has only core dependencies, and does not depend on @code{Type::Tiny},
10218 so other data validation frameworks might also consider using it.")
10219 (license perl-license)))
10220
10221 (define-public perl-types-path-tiny
10222 (package
10223 (name "perl-types-path-tiny")
10224 (version "0.006")
10225 (source
10226 (origin
10227 (method url-fetch)
10228 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10229 "Types-Path-Tiny-" version ".tar.gz"))
10230 (sha256
10231 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
10232 (build-system perl-build-system)
10233 (propagated-inputs
10234 `(("perl-file-pushd" ,perl-file-pushd)
10235 ("perl-path-tiny" ,perl-path-tiny)
10236 ("perl-type-tiny" ,perl-type-tiny)
10237 ("perl-exporter-tiny" ,perl-exporter-tiny)))
10238 (home-page "https://metacpan.org/release/Types-Path-Tiny")
10239 (synopsis "Types and coercions for Moose and Moo")
10240 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
10241 etc. It handles two important types of coercion: coercing objects with
10242 overloaded stringification, and coercing to absolute paths. It also can check
10243 to ensure that files or directories exist.")
10244 (license artistic2.0)))
10245
10246 (define-public perl-types-serialiser
10247 (package
10248 (name "perl-types-serialiser")
10249 (version "1.0")
10250 (source
10251 (origin
10252 (method url-fetch)
10253 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
10254 "Types-Serialiser-" version ".tar.gz"))
10255 (sha256
10256 (base32
10257 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
10258 (build-system perl-build-system)
10259 (propagated-inputs
10260 `(("perl-common-sense" ,perl-common-sense)))
10261 (home-page "https://metacpan.org/release/Types-Serialiser")
10262 (synopsis "Data types for common serialisation formats")
10263 (description "This module provides some extra datatypes that are used by
10264 common serialisation formats such as JSON or CBOR.")
10265 (license (package-license perl))))
10266
10267 (define-public perl-unicode-normalize
10268 (package
10269 (name "perl-unicode-normalize")
10270 (version "1.26")
10271 (source
10272 (origin
10273 (method url-fetch)
10274 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
10275 "Unicode-Normalize-" version ".tar.gz"))
10276 (sha256
10277 (base32
10278 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
10279 (build-system perl-build-system)
10280 (arguments
10281 '(#:phases (modify-phases %standard-phases
10282 (add-before 'configure 'set-search-path
10283 (lambda _
10284 ;; Work around "dotless @INC" build failure.
10285 (setenv "PERL5LIB"
10286 (string-append (getcwd) ":"
10287 (getenv "PERL5LIB")))
10288 #t)))))
10289 (home-page "https://metacpan.org/release/Unicode-Normalize")
10290 (synopsis "Unicode normalization forms")
10291 (description "This Perl module provides Unicode normalization forms.")
10292 (license (package-license perl))))
10293
10294 (define-public perl-unicode-collate
10295 (package
10296 (name "perl-unicode-collate")
10297 (version "1.27")
10298 (source
10299 (origin
10300 (method url-fetch)
10301 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
10302 "Unicode-Collate-" version ".tar.gz"))
10303 (sha256
10304 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
10305 (build-system perl-build-system)
10306 (arguments
10307 `(#:phases
10308 (modify-phases %standard-phases
10309 (add-before 'configure 'set-perl-search-path
10310 (lambda _
10311 ;; Work around "dotless @INC" build failure.
10312 (setenv "PERL5LIB"
10313 (string-append (getcwd) ":"
10314 (getenv "PERL5LIB")))
10315 #t)))))
10316 (propagated-inputs
10317 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
10318 (home-page "https://metacpan.org/release/Unicode-Collate")
10319 (synopsis "Unicode collation algorithm")
10320 (description "This package provides tools for sorting and comparing
10321 Unicode data.")
10322 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
10323 ;; license.
10324 (license (list (package-license perl) expat))))
10325
10326 (define-public perl-unicode-linebreak
10327 (package
10328 (name "perl-unicode-linebreak")
10329 (version "2019.001")
10330 (source (origin
10331 (method url-fetch)
10332 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
10333 "Unicode-LineBreak-" version ".tar.gz"))
10334 (sha256
10335 (base32
10336 "12iinva5gqc9g7qzxrvmh45n714z0ad9g7wq2dxwgp6drbj64rs8"))))
10337 (build-system perl-build-system)
10338 (propagated-inputs
10339 `(("perl-mime-charset" ,perl-mime-charset)))
10340 (home-page "https://metacpan.org/release/Unicode-LineBreak")
10341 (synopsis "Unicode line breaking algorithm")
10342 (description
10343 "@code{Unicode::LineBreak} implements the line breaking algorithm
10344 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
10345 defined by Annex #11 is used to determine breaking positions.")
10346 (license (package-license perl))))
10347
10348 (define-public perl-unicode-utf8
10349 (package
10350 (name "perl-unicode-utf8")
10351 (version "0.62")
10352 (source (origin
10353 (method url-fetch)
10354 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
10355 "Unicode-UTF8-" version ".tar.gz"))
10356 (sha256
10357 (base32
10358 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
10359 (build-system perl-build-system)
10360 ;; FIXME: Tests fail on 32-bit architectures:
10361 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
10362 (arguments `(#:tests? ,(target-64bit?)))
10363 (native-inputs
10364 `(("perl-test-fatal" ,perl-test-fatal)
10365 ("perl-test-leaktrace" ,perl-test-leaktrace)
10366 ("perl-variable-magic" ,perl-variable-magic)
10367 ("perl-test-pod" ,perl-test-pod)))
10368 (home-page "https://metacpan.org/release/Unicode-UTF8")
10369 (synopsis "Encoding and decoding of UTF-8 encoding form")
10370 (description
10371 "This module provides functions to encode and decode UTF-8 encoding form
10372 as specified by Unicode and ISO/IEC 10646:2011.")
10373 (license (package-license perl))))
10374
10375 (define-public perl-universal-can
10376 (package
10377 (name "perl-universal-can")
10378 (version "1.20140328")
10379 (source
10380 (origin
10381 (method url-fetch)
10382 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
10383 "UNIVERSAL-can-" version ".tar.gz"))
10384 (sha256
10385 (base32
10386 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
10387 (build-system perl-build-system)
10388 (home-page "https://metacpan.org/release/UNIVERSAL-can")
10389 (synopsis "UNIVERSAL::can() reimplementation")
10390 (description "This module attempts to work around people calling
10391 UNIVERSAL::can() as a function, which it is not.")
10392 (license (package-license perl))))
10393
10394 (define-public perl-universal-isa
10395 (package
10396 (name "perl-universal-isa")
10397 (version "1.20171012")
10398 (source
10399 (origin
10400 (method url-fetch)
10401 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10402 "UNIVERSAL-isa-" version ".tar.gz"))
10403 (sha256
10404 (base32
10405 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
10406 (build-system perl-build-system)
10407 (native-inputs
10408 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
10409 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
10410 (synopsis "UNIVERSAL::isa() reimplementation")
10411 (description "This module attempts to recover from people calling
10412 UNIVERSAL::isa as a function.")
10413 (license (package-license perl))))
10414
10415 (define-public perl-universal-require
10416 (package
10417 (name "perl-universal-require")
10418 (version "0.18")
10419 (source
10420 (origin
10421 (method url-fetch)
10422 (uri (string-append
10423 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
10424 version ".tar.gz"))
10425 (sha256
10426 (base32
10427 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
10428 (build-system perl-build-system)
10429 (home-page "https://metacpan.org/release/UNIVERSAL-require")
10430 (synopsis "Require modules from a variable")
10431 (description "This module lets you require other modules where the module
10432 name is in a variable, something you can't do with the @code{require}
10433 built-in.")
10434 (license (package-license perl))))
10435
10436 (define-public perl-variable-magic
10437 (package
10438 (name "perl-variable-magic")
10439 (version "0.62")
10440 (source
10441 (origin
10442 (method url-fetch)
10443 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
10444 "Variable-Magic-" version ".tar.gz"))
10445 (sha256
10446 (base32
10447 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
10448 (build-system perl-build-system)
10449 (home-page "https://metacpan.org/release/Variable-Magic")
10450 (synopsis "Associate user-defined magic to variables from Perl")
10451 (description "Magic is Perl's way of enhancing variables. This mechanism
10452 lets the user add extra data to any variable and hook syntactical
10453 operations (such as access, assignment or destruction) that can be applied to
10454 it. With this module, you can add your own magic to any variable without
10455 having to write a single line of XS.")
10456 (license (package-license perl))))
10457
10458 (define-public perl-xml-writer
10459 (package
10460 (name "perl-xml-writer")
10461 (version "0.625")
10462 (source
10463 (origin
10464 (method url-fetch)
10465 (uri (string-append
10466 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
10467 version
10468 ".tar.gz"))
10469 (sha256
10470 (base32
10471 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
10472 (build-system perl-build-system)
10473 (home-page "https://metacpan.org/release/XML-Writer")
10474 (synopsis "Easily generate well-formed, namespace-aware XML")
10475 (description "@code{XML::Writer} is a simple Perl module for writing XML
10476 documents: it takes care of constructing markup and escaping data correctly.
10477 By default, it also performs a significant amount of well-formedness checking
10478 on the output to make certain (for example) that start and end tags match,
10479 that there is exactly one document element, and that there are not duplicate
10480 attribute names.")
10481 ;; Redistribution and use in source and compiled forms, with or without
10482 ;; modification, are permitted under any circumstances. No warranty.
10483 (license public-domain)))
10484
10485 (define-public perl-xs-object-magic
10486 (package
10487 (name "perl-xs-object-magic")
10488 (version "0.05")
10489 (source (origin
10490 (method url-fetch)
10491 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10492 "XS-Object-Magic-" version ".tar.gz"))
10493 (sha256
10494 (base32
10495 "0njyy4y0zax4zz55y82dlm9cly1pld1lcxb281s12bp9rrhf9j9x"))))
10496 (build-system perl-build-system)
10497 (native-inputs
10498 `(("perl-extutils-depends" ,perl-extutils-depends)
10499 ("perl-module-install" ,perl-module-install)
10500 ("perl-test-fatal" ,perl-test-fatal)))
10501 (home-page "https://metacpan.org/release/XS-Object-Magic")
10502 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
10503 (description
10504 "This way of associating structs with Perl space objects is designed to
10505 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
10506 (structs can be associated with any data type) and opaque (the C pointer is
10507 neither visible nor modifiable from Perl space).")
10508 (license (package-license perl))))
10509
10510 (define-public perl-yaml
10511 (package
10512 (name "perl-yaml")
10513 (version "1.29")
10514 (source
10515 (origin
10516 (method url-fetch)
10517 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
10518 "YAML-" version ".tar.gz"))
10519 (sha256
10520 (base32 "0gl5ssvrdajlbc85cy6z873n9cwlssk5q8z97a31vyiikhw5fp4w"))))
10521 (build-system perl-build-system)
10522 (native-inputs
10523 `(("perl-test-yaml" ,perl-test-yaml)))
10524 (home-page "https://metacpan.org/release/YAML")
10525 (synopsis "YAML for Perl")
10526 (description "The YAML.pm module implements a YAML Loader and Dumper based
10527 on the YAML 1.0 specification.")
10528 (license (package-license perl))))
10529
10530 (define-public perl-yaml-libyaml
10531 (package
10532 (name "perl-yaml-libyaml")
10533 (version "0.80")
10534 (source
10535 (origin
10536 (method url-fetch)
10537 (uri (string-append
10538 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
10539 version ".tar.gz"))
10540 (sha256
10541 (base32 "1nhn4w52kpq757rxl052f61h36rdzsy416k740m3fy5ih7axhq4x"))))
10542 (build-system perl-build-system)
10543 (home-page "https://metacpan.org/release/YAML-LibYAML")
10544 (synopsis "Perl YAML Serialization using XS and libyaml")
10545 (description
10546 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
10547 best YAML support to date.")
10548 (license perl-license)))
10549
10550 (define-public perl-yaml-tiny
10551 (package
10552 (name "perl-yaml-tiny")
10553 (version "1.73")
10554 (source
10555 (origin
10556 (method url-fetch)
10557 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10558 "YAML-Tiny-" version ".tar.gz"))
10559 (sha256
10560 (base32
10561 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
10562 (build-system perl-build-system)
10563 (native-inputs
10564 `(("perl-json-maybexs" ,perl-json-maybexs)
10565 ("perl-module-build-tiny" ,perl-module-build-tiny)))
10566 (arguments
10567 `(#:tests? #f)) ;requires Test::More >= 0.99
10568 (home-page "https://metacpan.org/release/YAML-Tiny")
10569 (synopsis "Read/Write YAML files")
10570 (description "YAML::Tiny is a perl class for reading and writing
10571 YAML-style files, written with as little code as possible, reducing load time
10572 and memory overhead.")
10573 (license (package-license perl))))
10574
10575 (define-public perl-parse-recdescent
10576 (package
10577 (name "perl-parse-recdescent")
10578 (version "1.967015")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (string-append
10583 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
10584 version
10585 ".tar.gz"))
10586 (sha256
10587 (base32
10588 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
10589 (build-system perl-build-system)
10590 (native-inputs
10591 `(("perl-module-build" ,perl-module-build)))
10592 (home-page
10593 "https://metacpan.org/release/Parse-RecDescent")
10594 (synopsis "Generate recursive-descent parsers")
10595 (description
10596 "@code{Parse::RecDescent} can incrementally generate top-down
10597 recursive-descent text parsers from simple yacc-like grammar specifications.")
10598 (license perl-license)))
10599
10600 (define-public perl-parse-yapp
10601 (package
10602 (name "perl-parse-yapp")
10603 (version "1.21")
10604 (source
10605 (origin
10606 (method url-fetch)
10607 (uri (string-append
10608 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
10609 version
10610 ".tar.gz"))
10611 (sha256
10612 (base32
10613 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
10614 (build-system perl-build-system)
10615 (home-page "https://metacpan.org/release/Parse-Yapp")
10616 (synopsis "Generate and use LALR parsers")
10617 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
10618 grammars to generate Perl object oriented parser modules.")
10619 (license (package-license perl))))
10620
10621 \f
10622 ;;; Some packaged modules need versions of core modules that are newer than
10623 ;;; those in our perl 5.16.1.
10624
10625 (define-public perl-cpan-meta
10626 (package
10627 (name "perl-cpan-meta")
10628 (version "2.150010")
10629 (source
10630 (origin
10631 (method url-fetch)
10632 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10633 "CPAN-Meta-" version ".tar.gz"))
10634 (sha256
10635 (base32
10636 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10637 (build-system perl-build-system)
10638 (propagated-inputs
10639 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
10640 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
10641 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
10642 (home-page "https://metacpan.org/release/CPAN-Meta")
10643 (synopsis "Distribution metadata for a CPAN dist")
10644 (description "Software distributions released to the CPAN include a
10645 META.json or, for older distributions, META.yml, which describes the
10646 distribution, its contents, and the requirements for building and installing
10647 the distribution. The data structure stored in the META.json file is
10648 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
10649 represent this distribution metadata (or distmeta), along with some helpful
10650 methods for interrogating that data.")
10651 (license (package-license perl))))
10652
10653 (define-public perl-cpan-meta-requirements
10654 (package
10655 (name "perl-cpan-meta-requirements")
10656 (version "2.140")
10657 (source
10658 (origin
10659 (method url-fetch)
10660 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10661 "CPAN-Meta-Requirements-" version ".tar.gz"))
10662 (sha256
10663 (base32
10664 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
10665 (build-system perl-build-system)
10666 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
10667 (synopsis "Set of version requirements for a CPAN dist")
10668 (description "A CPAN::Meta::Requirements object models a set of version
10669 constraints like those specified in the META.yml or META.json files in CPAN
10670 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
10671 adding more and more constraints, and will reduce them to the simplest
10672 representation.")
10673 (license (package-license perl))))
10674
10675 (define-public perl-cpan-meta-yaml
10676 (package
10677 (name "perl-cpan-meta-yaml")
10678 (version "0.018")
10679 (source
10680 (origin
10681 (method url-fetch)
10682 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10683 "CPAN-Meta-YAML-" version ".tar.gz"))
10684 (sha256
10685 (base32
10686 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
10687 (build-system perl-build-system)
10688 (arguments
10689 `(#:tests? #f)) ;Tests require Test::More >= 0.99
10690 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
10691 (synopsis "Read and write a subset of YAML for CPAN Meta files")
10692 (description "This module implements a subset of the YAML specification
10693 for use in reading and writing CPAN metadata files like META.yml and
10694 MYMETA.yml.")
10695 (license (package-license perl))))
10696
10697 (define-public perl-module-build
10698 (package
10699 (name "perl-module-build")
10700 (version "0.4229")
10701 (source
10702 (origin
10703 (method url-fetch)
10704 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
10705 "Module-Build-" version ".tar.gz"))
10706 (sha256
10707 (base32
10708 "064c03wxia7jz0i578awj4srykj0nnigm4p5r0dv0559rnk93r0z"))))
10709 (build-system perl-build-system)
10710 (propagated-inputs
10711 `(("perl-cpan-meta" ,perl-cpan-meta)))
10712 (home-page "https://metacpan.org/release/Module-Build")
10713 (synopsis "Build and install Perl modules")
10714 (description "@code{Module::Build} is a system for building, testing, and
10715 installing Perl modules; it used to be part of Perl itself until version 5.22,
10716 which dropped it. It is meant to be an alternative to
10717 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
10718 through subclassing in a much more straightforward way than with
10719 @code{MakeMaker}. It also does not require a @command{make} on your
10720 system---most of the @code{Module::Build} code is pure-Perl.")
10721 (license (package-license perl))))
10722
10723 (define-public perl-parse-cpan-meta
10724 (package
10725 (name "perl-parse-cpan-meta")
10726 (version "2.150010")
10727 (source
10728 (origin
10729 (method url-fetch)
10730 ;; This module is now known as CPAN::Meta on CPAN.
10731 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10732 "CPAN-Meta-" version ".tar.gz"))
10733 (sha256
10734 (base32
10735 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10736 (build-system perl-build-system)
10737 (propagated-inputs
10738 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
10739 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
10740 (synopsis "Parse META.yml and META.json CPAN metadata files")
10741 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
10742 files, using JSON::PP and/or CPAN::Meta::YAML.")
10743 (license (package-license perl))))
10744
10745 (define-public perl-scalar-list-utils
10746 (package
10747 (name "perl-scalar-list-utils")
10748 (version "1.53")
10749 (source
10750 (origin
10751 (method url-fetch)
10752 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
10753 "Scalar-List-Utils-" version ".tar.gz"))
10754 (sha256
10755 (base32 "16dfpnrcf5846j998rdd6gra16m9030rnz9fpsh1hfzvcsq8ch5x"))))
10756 (build-system perl-build-system)
10757 (home-page "https://metacpan.org/release/Scalar-List-Utils")
10758 (synopsis "Common Scalar and List utility subroutines")
10759 (description "This package contains a selection of subroutines that people
10760 have expressed would be nice to have in the perl core, but the usage would not
10761 really be high enough to warrant the use of a keyword, and the size so small
10762 such that being individual extensions would be wasteful.")
10763 (license (package-license perl))))
10764
10765 (define-public perl-shell-command
10766 (package
10767 (name "perl-shell-command")
10768 (version "0.06")
10769 (source
10770 (origin
10771 (method url-fetch)
10772 (uri (string-append
10773 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
10774 version
10775 ".tar.gz"))
10776 (sha256
10777 (base32
10778 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
10779 (build-system perl-build-system)
10780 (home-page
10781 "https://metacpan.org/release/Shell-Command")
10782 (synopsis
10783 "Cross-platform functions emulating common shell commands")
10784 (description
10785 "Shell::Command is a thin wrapper around ExtUtils::Command.")
10786 (license (package-license perl))))
10787
10788 ;;; END: Core module overrides
10789
10790 (define-public perl-file-find-object
10791 (package
10792 (name "perl-file-find-object")
10793 (version "v0.2.13")
10794 (source
10795 (origin
10796 (method url-fetch)
10797 (uri (string-append
10798 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
10799 version
10800 ".tar.gz"))
10801 (sha256
10802 (base32
10803 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
10804 (build-system perl-build-system)
10805 (native-inputs
10806 `(("perl-module-build" ,perl-module-build)))
10807 (inputs
10808 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
10809 (home-page
10810 "https://metacpan.org/release/File-Find-Object")
10811 (synopsis
10812 "Object-oriented File::Find replacement in Perl")
10813 (description "File::Find::Object is an object-oriented
10814 File::Find replacement in Perl.")
10815 (license artistic2.0)))
10816
10817 (define-public perl-file-find-object-rule
10818 (package
10819 (name "perl-file-find-object-rule")
10820 (version "0.0311")
10821 (source
10822 (origin
10823 (method url-fetch)
10824 (uri (string-append
10825 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
10826 version
10827 ".tar.gz"))
10828 (sha256
10829 (base32 "0gjzfd5fz7mhr5abafxr7qic7nwhk7y9iv17as6l880973j952h3"))))
10830 (build-system perl-build-system)
10831 (native-inputs
10832 `(("perl-module-build" ,perl-module-build)))
10833 (inputs
10834 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
10835 ("perl-file-find-object" ,perl-file-find-object)
10836 ("perl-number-compare" ,perl-number-compare)
10837 ("perl-text-glob" ,perl-text-glob)))
10838 (home-page
10839 "https://metacpan.org/release/File-Find-Object-Rule")
10840 (synopsis
10841 "Alternative interface to File::Find::Object")
10842 (description "File::Find::Object::Rule is an alternative Perl
10843 interface to File::Find::Object.")
10844 (license (package-license perl))))
10845
10846 (define-public perl-file-finder
10847 (package
10848 (name "perl-file-finder")
10849 (version "0.53")
10850 (source
10851 (origin
10852 (method url-fetch)
10853 (uri (string-append
10854 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
10855 version ".tar.gz"))
10856 (sha256
10857 (base32
10858 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
10859 (build-system perl-build-system)
10860 (propagated-inputs
10861 `(("perl-text-glob" ,perl-text-glob)))
10862 (home-page "https://metacpan.org/release/File-Finder")
10863 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
10864 (description
10865 "@code{File::Find} is great, but constructing the wanted routine can
10866 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
10867 syntax that is directly mappable to the @code{find(1)} command's syntax.
10868
10869 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
10870 a series of steps that mimic find's predicates. Initially, a
10871 @code{File::Finder} object has no steps. Each step method clones the previous
10872 object's options and steps, and then adds the new step, returning the new
10873 object. In this manner, an object can be grown, step by step, by chaining
10874 method calls. Furthermore, a partial sequence can be created and held, and
10875 used as the head of many different sequences.")
10876 (license perl-license)))
10877
10878 (define-public perl-font-ttf
10879 (package
10880 (name "perl-font-ttf")
10881 (version "1.06")
10882 (source (origin
10883 (method url-fetch)
10884 (uri (string-append
10885 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
10886 version ".tar.gz"))
10887 (sha256
10888 (base32
10889 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
10890 (build-system perl-build-system)
10891 (propagated-inputs
10892 `(("perl-io-string" ,perl-io-string)))
10893 (home-page "https://metacpan.org/release/Font-TTF")
10894 (synopsis "TTF font support for Perl")
10895 (description "This package provides a Perl module for TrueType/OpenType
10896 font hacking. It supports reading, processing and writing of the following
10897 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
10898 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
10899 prop, vhea, vmtx and the reading and writing of all other table types.")
10900 (license artistic2.0)))
10901
10902 (define-public perl-libtime-parsedate
10903 (package
10904 (name "perl-libtime-parsedate")
10905 (version "2015.103")
10906 (source
10907 (origin
10908 (method url-fetch)
10909 (uri (string-append
10910 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
10911 version ".tar.gz"))
10912 (sha256
10913 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
10914 (build-system perl-build-system)
10915 (arguments
10916 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
10917 ;; doesn't support it yet.
10918 ;;
10919 ;; #:disallowed-references (,tzdata-for-tests)
10920
10921 #:phases
10922 (modify-phases %standard-phases
10923 ;; This is needed for tests
10924 (add-after 'unpack 'set-TZDIR
10925 (lambda* (#:key inputs #:allow-other-keys)
10926 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
10927 "/share/zoneinfo"))
10928 #t)))))
10929 (native-inputs
10930 `(("perl-module-build" ,perl-module-build)
10931 ("tzdata" ,tzdata-for-tests)))
10932 (home-page "https://metacpan.org/release/Time-ParseDate")
10933 (synopsis "Collection of Perl modules for time/date manipulation")
10934 (description "Provides several perl modules for date/time manipulation:
10935 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
10936 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
10937 ;; License text:
10938 ;; "License hereby granted for anyone to use, modify or redistribute this
10939 ;; module at their own risk. Please feed useful changes back to
10940 ;; cpan@dave.sharnoff.org."
10941 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
10942 changelogs/main/libt/libtime-parsedate-perl/\
10943 libtime-parsedate-perl_2015.103-2_copyright"))))
10944
10945 (define-public perl-libtime-period
10946 (package
10947 (name "perl-libtime-period")
10948 (version "1.20")
10949 (source
10950 (origin
10951 (method url-fetch)
10952 (uri (string-append
10953 "http://http.debian.net/debian/pool/main/libt/"
10954 "libtime-period-perl/libtime-period-perl_"
10955 version ".orig.tar.gz"))
10956 (sha256
10957 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
10958 (build-system perl-build-system)
10959 (native-inputs
10960 `(("perl-module-build" ,perl-module-build)))
10961 ;; Unless some other homepage is out there...
10962 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
10963 (synopsis "Perl library for testing if a time() is in a specific period")
10964 (description "This Perl library provides a function which tells whether a
10965 specific time falls within a specified time period. Its syntax for specifying
10966 time periods allows you to test for conditions like \"Monday to Friday, 9am
10967 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
10968 4:15pm\" and \"in the first half of each minute\" and \"in January of
10969 1998\".")
10970 (license perl-license)))
10971
10972 (define-public perl-path-iterator-rule
10973 (package
10974 (name "perl-path-iterator-rule")
10975 (version "1.014")
10976 (source
10977 (origin
10978 (method url-fetch)
10979 (uri (string-append
10980 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
10981 version ".tar.gz"))
10982 (sha256
10983 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
10984 (build-system perl-build-system)
10985 (native-inputs
10986 `(("perl-file-pushd" ,perl-file-pushd)
10987 ("perl-path-tiny" ,perl-path-tiny)
10988 ("perl-test-deep" ,perl-test-deep)
10989 ("perl-test-filename" ,perl-test-filename)))
10990 (propagated-inputs
10991 `(("perl-number-compare" ,perl-number-compare)
10992 ("perl-text-glob" ,perl-text-glob)
10993 ("perl-try-tiny" ,perl-try-tiny)))
10994 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
10995 (synopsis "Iterative, recursive file finder")
10996 (description "Path::Iterator::Rule iterates over files and directories to
10997 identify ones matching a user-defined set of rules. The API is based heavily
10998 on File::Find::Rule, but with more explicit distinction between matching rules
10999 and options that influence how directories are searched. A
11000 Path::Iterator::Rule object is a collection of rules (match criteria) with
11001 methods to add additional criteria. Options that control directory traversal
11002 are given as arguments to the method that generates an iterator.
11003
11004 A summary of features for comparison to other file finding modules:
11005
11006 @itemize
11007 @item provides many helper methods for specifying rules
11008 @item offers (lazy) iterator and flattened list interfaces
11009 @item custom rules implemented with callbacks
11010 @item breadth-first (default) or pre- or post-order depth-first searching
11011 @item follows symlinks (by default, but can be disabled)
11012 @item directories visited only once (no infinite loop; can be disabled)
11013 @item doesn't chdir during operation
11014 @item provides an API for extensions
11015 @end itemize
11016
11017 As a convenience, the PIR module is an empty subclass of this one that is less
11018 arduous to type for one-liners.")
11019 (license asl2.0)))
11020
11021 (define-public perl-pod-constants
11022 (package
11023 (name "perl-pod-constants")
11024 (version "0.19")
11025 (source
11026 (origin
11027 (method url-fetch)
11028 (uri (string-append
11029 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
11030 version ".tar.gz"))
11031 (sha256
11032 (base32
11033 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
11034 (build-system perl-build-system)
11035 (home-page "https://metacpan.org/release/Pod-Constants")
11036 (synopsis "Include constants from POD")
11037 (description "This module allows you to specify those constants that
11038 should be documented in your POD, and pull them out a run time in a fairly
11039 arbitrary fashion.
11040
11041 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
11042 to open the source file it is called from, and does so directly either by
11043 lookup in %INC or by assuming it is $0 if the caller is @code{main}
11044 (or it can't find %INC{caller()}).")
11045 (license artistic2.0)))
11046
11047 (define-public perl-regexp-pattern
11048 (package
11049 (name "perl-regexp-pattern")
11050 (version "0.2.8")
11051 (source
11052 (origin
11053 (method url-fetch)
11054 (uri (string-append
11055 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
11056 version ".tar.gz"))
11057 (sha256
11058 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
11059 (build-system perl-build-system)
11060 (native-inputs
11061 `(("perl-test-exception" ,perl-test-exception)))
11062 (home-page "https://metacpan.org/release/Regexp-Pattern")
11063 (synopsis "Collection of regexp patterns")
11064 (description "Regexp::Pattern is a convention for organizing reusable
11065 regexp patterns in modules.")
11066 (license (package-license perl))))
11067
11068 (define-public perl-data-sexpression
11069 (package
11070 (name "perl-data-sexpression")
11071 (version "0.41")
11072 (source
11073 (origin
11074 (method url-fetch)
11075 (uri (string-append
11076 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
11077 version ".tar.gz"))
11078 (sha256
11079 (base32
11080 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
11081 (build-system perl-build-system)
11082 (native-inputs
11083 `(("perl-module-install" ,perl-module-install)
11084 ("perl-test-deep" ,perl-test-deep)))
11085 (propagated-inputs
11086 `(("perl-class-accessor" ,perl-class-accessor)))
11087 (home-page "https://metacpan.org/release/Data-SExpression")
11088 (synopsis "Parse Lisp S-Expressions into Perl data structures")
11089 (description "Data::SExpression parses Lisp S-Expressions into Perl data
11090 structures.")
11091 (license perl-license)))