gnu: Add perl-tie-simple.
[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 ;;; Copyright © 2020 Nicolas Goaziou <mail@nicolasgoaziou.fr>
30 ;;;
31 ;;; This file is part of GNU Guix.
32 ;;;
33 ;;; GNU Guix is free software; you can redistribute it and/or modify it
34 ;;; under the terms of the GNU General Public License as published by
35 ;;; the Free Software Foundation; either version 3 of the License, or (at
36 ;;; your option) any later version.
37 ;;;
38 ;;; GNU Guix is distributed in the hope that it will be useful, but
39 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
40 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 ;;; GNU General Public License for more details.
42 ;;;
43 ;;; You should have received a copy of the GNU General Public License
44 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
45
46 (define-module (gnu packages perl)
47 #:use-module (srfi srfi-1)
48 #:use-module (guix licenses)
49 #:use-module (gnu packages)
50 #:use-module (guix packages)
51 #:use-module (guix download)
52 #:use-module (guix git-download)
53 #:use-module (guix utils)
54 #:use-module (guix build-system gnu)
55 #:use-module (guix build-system perl)
56 #:use-module (gnu packages base)
57 #:use-module (gnu packages bash)
58 #:use-module (gnu packages compression)
59 #:use-module (gnu packages databases)
60 #:use-module (gnu packages freedesktop)
61 #:use-module (gnu packages gd)
62 #:use-module (gnu packages hurd)
63 #:use-module (gnu packages less)
64 #:use-module (gnu packages ncurses)
65 #:use-module (gnu packages perl-check)
66 #:use-module (gnu packages perl-compression)
67 #:use-module (gnu packages perl-web)
68 #:use-module (gnu packages pkg-config)
69 #:use-module (gnu packages readline)
70 #:use-module (gnu packages textutils)
71 #:use-module (gnu packages web))
72
73 ;;;
74 ;;; Please: Try to add new module packages in alphabetic order.
75 ;;;
76
77 \f
78 (define-public perl
79 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
80 (package
81 (name "perl")
82 (version "5.30.2")
83 (source (origin
84 (method url-fetch)
85 (uri (string-append "mirror://cpan/src/5.0/perl-"
86 version ".tar.gz"))
87 (sha256
88 (base32
89 "128nfdxcvxfn5kq55qcfrx2851ys8hv794dcdxbyny8rm7w7vnv6"))
90 (patches (search-patches
91 "perl-no-sys-dirs.patch"
92 "perl-autosplit-default-time.patch"
93 "perl-deterministic-ordering.patch"
94 "perl-reproducible-build-date.patch"))))
95 (build-system gnu-build-system)
96 (arguments
97 `(#:tests? #f
98 #:configure-flags
99 (let ((out (assoc-ref %outputs "out"))
100 (libc (assoc-ref %build-inputs "libc")))
101 (list
102 (string-append "-Dprefix=" out)
103 (string-append "-Dman1dir=" out "/share/man/man1")
104 (string-append "-Dman3dir=" out "/share/man/man3")
105 "-de" "-Dcc=gcc"
106 "-Uinstallusrbinperl"
107 "-Dinstallstyle=lib/perl5"
108 "-Duseshrplib"
109 (string-append "-Dlocincpth=" libc "/include")
110 (string-append "-Dloclibpth=" libc "/lib")
111 "-Dusethreads"))
112 #:phases
113 (modify-phases %standard-phases
114 (add-before 'configure 'setup-configure
115 (lambda _
116 ;; Use the right path for `pwd'.
117 ;; TODO: use coreutils from INPUTS instead of 'which'
118 ;; in next rebuild cycle, see fixup below.
119 (substitute* "dist/PathTools/Cwd.pm"
120 (("/bin/pwd")
121 (which "pwd")))
122
123 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
124 ;; <bits/string3.h>.
125 (substitute* "cflags.SH"
126 (("-std=c89")
127 "-std=gnu89"))
128 #t))
129 ,@(if (%current-target-system)
130 `((add-after 'unpack 'unpack-cross
131 (lambda* (#:key native-inputs inputs #:allow-other-keys)
132 (let ((cross-checkout
133 (assoc-ref native-inputs "perl-cross"))
134 (cross-patch
135 (assoc-ref native-inputs "perl-cross-patch")))
136 (rename-file "Artistic" "Artistic.perl")
137 (rename-file "Copying" "Copying.perl")
138 (copy-recursively cross-checkout ".")
139 (format #t "Applying ~a\n" cross-patch)
140 (invoke "patch" "-p1" "-i" cross-patch))
141 (let ((bash (assoc-ref inputs "bash")))
142 (substitute* '("Makefile.config.SH"
143 "cnf/config.guess"
144 "cnf/config.sub"
145 "cnf/configure"
146 "cnf/configure_misc.sh"
147 "miniperl_top")
148 (("! */bin/sh") (string-append "! " bash "/bin/bash"))
149 ((" /bin/sh") (string-append bash "/bin/bash")))
150 (substitute* '("ext/Errno/Errno_pm.PL")
151 (("\\$cpp < errno.c") "$Config{cc} -E errno.c")))
152 #t))
153 (replace 'configure
154 (lambda* (#:key configure-flags outputs inputs #:allow-other-keys)
155 (let* ((out (assoc-ref outputs "out"))
156 (store-directory (%store-directory))
157 (configure-flags
158 (cons*
159 ;; `perl-cross' confuses target and host
160 (string-append "--target=" ,(%current-target-system))
161 (string-append "--prefix=" out)
162 (string-append "-Dcc=" ,(%current-target-system) "-gcc")
163 "-Dbyteorder=1234"
164 (filter (negate
165 (lambda (x) (or (string-prefix? "-d" x)
166 (string-prefix? "-Dcc=" x))))
167 configure-flags)))
168 (bash (assoc-ref inputs "bash"))
169 (coreutils (assoc-ref inputs "coreutils")))
170 (format (current-error-port)
171 "running ./configure ~a\n" (string-join configure-flags))
172 (apply invoke (cons "./configure" configure-flags))
173 (substitute* "config.sh"
174 (((string-append store-directory "/[^/]*-bash-[^/]*"))
175 bash))
176 (substitute* '("config.h")
177 (("^#define SH_PATH .*")
178 (string-append "#define SH_PATH \"" bash "/bin/bash\"\n")))
179 ;;TODO: fix this in setup-configure next rebuild cycle
180 (substitute* "dist/PathTools/Cwd.pm"
181 (((string-append store-directory "/[^/]*-coreutils-[^/]*"))
182 coreutils))
183 #t)))
184 (add-after 'build 'touch-non-built-files-for-install
185 (lambda _
186 ;; `make install' wants to install these although they do
187 ;; not get built...
188 (with-directory-excursion "cpan"
189 (mkdir-p "Pod-Usage/blib/script")
190 (mkdir-p "Pod-Parser/blib/script")
191 (for-each (lambda (file)
192 (call-with-output-file file
193 (lambda (port) (display "" port))))
194 '("Pod-Usage/blib/script/pod2text"
195 "Pod-Usage/blib/script/pod2usage"
196 "Pod-Checker/blib/script/podchecker"
197 "Pod-Parser/blib/script/podselect")))
198 #t)))
199 `((replace 'configure
200 (lambda* (#:key configure-flags #:allow-other-keys)
201 (format #t "Perl configure flags: ~s~%" configure-flags)
202 (apply invoke "./Configure" configure-flags)))))
203 (add-after 'install 'remove-extra-references
204 (lambda* (#:key inputs outputs #:allow-other-keys)
205 (let* ((out (assoc-ref outputs "out"))
206 (libc (assoc-ref inputs
207 ,(if (%current-target-system)
208 "cross-libc" "libc")))
209 (config1 (car (find-files (string-append out "/lib/perl5")
210 "^Config_heavy\\.pl$")))
211 (config2 (find-files (string-append out "/lib/perl5")
212 "^Config\\.pm$")))
213 ;; Force the library search path to contain only libc because
214 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
215 ;; want to keep a reference to everything that's in
216 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
217 ;; etc.)
218 (substitute* config1
219 (("^incpth=.*$")
220 (string-append "incpth='" libc "/include'\n"))
221 (("^(libpth|plibpth|libspath)=.*$" _ variable)
222 (string-append variable "='" libc "/lib'\n")))
223
224 (for-each (lambda (file)
225 (substitute* config2
226 (("libpth => .*$")
227 (string-append "libpth => '" libc
228 "/lib',\n"))))
229 config2)
230 #t))))))
231 (inputs
232 (if (%current-target-system)
233 `(("bash" ,bash-minimal)
234 ("coreutils" ,coreutils))
235 '()))
236 (native-inputs
237 (if (%current-target-system)
238 `(("perl-cross"
239 ,(origin
240 (method git-fetch)
241 (uri (git-reference
242 (url "https://github.com/arsv/perl-cross")
243 (commit "1.3.3")))
244 (file-name (git-file-name "perl-cross" "1.3.3"))
245 (sha256
246 (base32 "065qbl1x44maykaj8p8za0b6qxj74bz7fi2zsrlydir1mqb1js3d"))))
247 ("perl-cross-patch" ,@(search-patches "perl-cross.patch")))
248 '()))
249 (native-search-paths (list (search-path-specification
250 (variable "PERL5LIB")
251 (files '("lib/perl5/site_perl")))))
252 (synopsis "Implementation of the Perl programming language")
253 (description
254 "Perl is a general-purpose programming language originally developed for
255 text manipulation and now used for a wide range of tasks including system
256 administration, web development, network programming, GUI development, and
257 more.")
258 (home-page "https://www.perl.org/")
259 (license gpl1+))) ; or "Artistic"
260
261 (define-public perl-algorithm-c3
262 (package
263 (name "perl-algorithm-c3")
264 (version "0.10")
265 (source
266 (origin
267 (method url-fetch)
268 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
269 "Algorithm-C3-" version ".tar.gz"))
270 (sha256
271 (base32
272 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
273 (build-system perl-build-system)
274 (home-page "https://metacpan.org/release/Algorithm-C3")
275 (synopsis "Module for merging hierarchies using the C3 algorithm")
276 (description "This module implements the C3 algorithm, which aims to
277 provide a sane method resolution order under multiple inheritance.")
278 (license (package-license perl))))
279
280 (define-public perl-algorithm-diff
281 (package
282 (name "perl-algorithm-diff")
283 (version "1.1903")
284 (source
285 (origin
286 (method url-fetch)
287 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
288 "Algorithm-Diff-" version ".tar.gz"))
289 (sha256
290 (base32
291 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
292 (build-system perl-build-system)
293 (home-page "https://metacpan.org/release/Algorithm-Diff")
294 (synopsis "Compute differences between two files or lists")
295 (description "This is a module for computing the difference between two
296 files, two strings, or any other two lists of things. It uses an intelligent
297 algorithm similar to (or identical to) the one used by the Unix \"diff\"
298 program. It is guaranteed to find the *smallest possible* set of
299 differences.")
300 (license (package-license perl))))
301
302 (define-public perl-aliased
303 (package
304 (name "perl-aliased")
305 (version "0.34")
306 (source
307 (origin
308 (method url-fetch)
309 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
310 "aliased-" version ".tar.gz"))
311 (sha256
312 (base32
313 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
314 (build-system perl-build-system)
315 (native-inputs `(("perl-module-build" ,perl-module-build)))
316 (home-page "https://metacpan.org/release/aliased")
317 (synopsis "Use shorter versions of class names")
318 (description "The alias module loads the class you specify and exports
319 into your namespace a subroutine that returns the class name. You can
320 explicitly alias the class to another name or, if you prefer, you can do so
321 implicitly.")
322 (license (package-license perl))))
323
324 (define-public perl-any-moose
325 (package
326 (name "perl-any-moose")
327 (version "0.27")
328 (source (origin
329 (method url-fetch)
330 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
331 "Any-Moose-" version ".tar.gz"))
332 (sha256
333 (base32
334 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
335 (build-system perl-build-system)
336 (native-inputs
337 `(("perl-mouse" ,perl-mouse)
338 ("perl-moose" ,perl-moose)))
339 (home-page "https://metacpan.org/release/Any-Moose")
340 (synopsis "Transparently use Moose or Mouse modules")
341 (description
342 "This module facilitates using @code{Moose} or @code{Mouse} modules
343 without changing the code. By default, Mouse will be provided to libraries,
344 unless Moose is already loaded, or explicitly requested by the end-user. End
345 users can force the decision of which backend to use by setting the environment
346 variable ANY_MOOSE to be Moose or Mouse.")
347 (license (package-license perl))))
348
349 (define-public perl-appconfig
350 (package
351 (name "perl-appconfig")
352 (version "1.71")
353 (source
354 (origin
355 (method url-fetch)
356 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
357 "AppConfig-" version ".tar.gz"))
358 (sha256
359 (base32
360 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
361 (build-system perl-build-system)
362 (native-inputs
363 `(("perl-test-pod" ,perl-test-pod)))
364 (home-page "https://metacpan.org/release/AppConfig")
365 (synopsis "Configuration files and command line parsing")
366 (description "AppConfig is a bundle of Perl5 modules for reading
367 configuration files and parsing command line arguments.")
368 (license (package-license perl))))
369
370 (define-public perl-array-utils
371 (package
372 (name "perl-array-utils")
373 (version "0.5")
374 (source
375 (origin
376 (method url-fetch)
377 (uri (string-append
378 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
379 version
380 ".tar.gz"))
381 (sha256
382 (base32
383 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
384 (build-system perl-build-system)
385 (home-page "https://metacpan.org/release/Array-Utils")
386 (synopsis "Small utils for array manipulation")
387 (description "@code{Array::Utils} is a small pure-perl module containing
388 list manipulation routines.")
389 (license (package-license perl))))
390
391 (define-public perl-async-interrupt
392 (package
393 (name "perl-async-interrupt")
394 (version "1.25")
395 (source (origin
396 (method url-fetch)
397 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
398 "Async-Interrupt-" version ".tar.gz"))
399 (sha256
400 (base32
401 "0jh94wj1b6a0cnni8prsb59g5lak5rfj2fw5ng96291zmz2yqp1w"))))
402 (build-system perl-build-system)
403 (native-inputs
404 `(("perl-canary-stability" ,perl-canary-stability)))
405 (propagated-inputs
406 `(("perl-common-sense" ,perl-common-sense)))
407 (home-page "https://metacpan.org/release/Async-Interrupt")
408 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
409 (description
410 "@code{Async::Interrupt} implements a single feature only of interest
411 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
412 signals\", which are very similar).
413
414 Sometimes, modules wish to run code asynchronously (in another thread,
415 or from a signal handler), and then signal the perl interpreter on
416 certain events. One common way is to write some data to a pipe and use
417 an event handling toolkit to watch for I/O events. Another way is to
418 send a signal. Those methods are slow, and in the case of a pipe, also
419 not asynchronous - it won't interrupt a running perl interpreter.
420
421 This module implements asynchronous notifications that enable you to
422 signal running perl code from another thread, asynchronously, and
423 sometimes even without using a single syscall.")
424 (license (package-license perl))))
425
426 (define-public perl-attribute-util
427 (package
428 (name "perl-attribute-util")
429 (version "1.07")
430 (source (origin
431 (method url-fetch)
432 (uri (string-append
433 "https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/"
434 "Attribute-Util-" version ".tar.gz"))
435 (sha256
436 (base32
437 "1z79d845dy96lg0pxw0kr2za0gniwnpn963r7ccajfpj6k7jfw07"))))
438 (build-system perl-build-system)
439 (home-page "https://metacpan.org/pod/Attribute::Util")
440 (synopsis "Assorted general utility attributes")
441 (description "This package provides various utility functions. When used
442 without argument, this module provides four universally accessible attributes
443 of general interest as follows:
444 @itemize
445 @item Abstract
446 @item Alias
447 @item Memoize
448 @item Method
449 @item SigHandler
450 @end itemize")
451 (license (package-license perl))))
452
453 (define-public perl-authen-dechpwd
454 (package
455 (name "perl-authen-dechpwd")
456 (version "2.007")
457 (source
458 (origin
459 (method url-fetch)
460 (uri (string-append
461 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-DecHpwd-"
462 version ".tar.gz"))
463 (sha256
464 (base32
465 "0xzind7zr2prjq3zbs2j18snfpshd4xrd7igv4kp67xl0axr6fpl"))))
466 (build-system perl-build-system)
467 (native-inputs
468 `(("perl-module-build" ,perl-module-build)
469 ("perl-test-pod" ,perl-test-pod)
470 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
471 (propagated-inputs
472 `(("perl-data-integer" ,perl-data-integer)
473 ("perl-digest-crc" ,perl-digest-crc)
474 ("perl-scalar-string" ,perl-scalar-string)))
475 (home-page "https://metacpan.org/release/Authen-DecHpwd")
476 (synopsis "DEC VMS password hashing")
477 (description "@code{Authen::DecHpwd} implements the
478 SYS$HASH_PASSWORD password hashing function from VMS (also known as
479 LGI$HPWD) and some associated VMS username and password handling
480 functions. The password hashing function is implemented in XS with a
481 pure Perl backup version for systems that cannot handle XS.")
482 (license gpl2+)))
483
484 (define-public perl-authen-passphrase
485 (package
486 (name "perl-authen-passphrase")
487 (version "0.008")
488 (source
489 (origin
490 (method url-fetch)
491 (uri (string-append
492 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-Passphrase-"
493 version ".tar.gz"))
494 (sha256
495 (base32
496 "0qq4krap687rxf6xr31bg5nj5dqmm1frcm7fq249v1bxc4h4bnsm"))))
497 (build-system perl-build-system)
498 (native-inputs
499 `(("perl-module-build" ,perl-module-build)
500 ("perl-test-pod" ,perl-test-pod)
501 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
502 (propagated-inputs
503 `(("perl-authen-dechpwd" ,perl-authen-dechpwd)
504 ("perl-crypt-des" ,perl-crypt-des)
505 ("perl-crypt-eksblowfish" ,perl-crypt-eksblowfish)
506 ("perl-crypt-mysql" ,perl-crypt-mysql)
507 ("perl-crypt-passwdmd5" ,perl-crypt-passwdmd5)
508 ("perl-crypt-unixcrypt_xs" ,perl-crypt-unixcrypt_xs)
509 ("perl-data-entropy" ,perl-data-entropy)
510 ("perl-digest-md4" ,perl-digest-md4)
511 ("perl-module-runtime" ,perl-module-runtime)
512 ("perl-params-classify" ,perl-params-classify)))
513 (home-page "https://metacpan.org/release/Authen-Passphrase")
514 (synopsis "Hashed passwords/passphrases as objects")
515 (description "@code{Authen-Passphrase} is the base class for a
516 system of objects that encapsulate passphrases. An object of this
517 type is a passphrase recogniser; its job is to recognise whether an
518 offered passphrase is the right one. For security such passphrase
519 recognisers usually do not themselves know the passphrase they are
520 looking for; they can merely recognise it when they see it. There are
521 many schemes in use to achieve this effect and the intent of this
522 class is to provide a consistent interface to them all. In addition
523 to the base class, this module also contains implementations of
524 several specific passphrase schemes.")
525 (license perl-license)))
526
527 (define-public perl-autovivification
528 (package
529 (name "perl-autovivification")
530 (version "0.18")
531 (source
532 (origin
533 (method url-fetch)
534 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
535 "autovivification-" version ".tar.gz"))
536 (sha256
537 (base32
538 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
539 (build-system perl-build-system)
540 (home-page "https://metacpan.org/release/autovivification")
541 (synopsis "Lexically disable autovivification")
542 (description "When an undefined variable is dereferenced, it gets silently
543 upgraded to an array or hash reference (depending of the type of the
544 dereferencing). This behaviour is called autovivification and usually does
545 what you mean but it may be unnatural or surprising because your variables get
546 populated behind your back. This is especially true when several levels of
547 dereferencing are involved, in which case all levels are vivified up to the
548 last, or when it happens in intuitively read-only constructs like
549 @code{exists}. The pragma provided by this package lets you disable
550 autovivification for some constructs and optionally throws a warning or an
551 error when it would have happened.")
552 (license (package-license perl))))
553
554 (define-public perl-bareword-filehandles
555 (package
556 (name "perl-bareword-filehandles")
557 (version "0.006")
558 (source
559 (origin
560 (method url-fetch)
561 (uri (string-append
562 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
563 version ".tar.gz"))
564 (sha256
565 (base32
566 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
567 (build-system perl-build-system)
568 (native-inputs
569 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
570 ("perl-extutils-depends" ,perl-extutils-depends)))
571 (propagated-inputs
572 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
573 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
574 (home-page "https://metacpan.org/release/bareword-filehandles")
575 (synopsis "Disables bareword filehandles")
576 (description "This module disables bareword filehandles.")
577 (license (package-license perl))))
578
579 (define-public perl-base
580 (deprecated-package "perl-base" perl))
581
582 (define-public perl-browser-open
583 (package
584 (name "perl-browser-open")
585 (version "0.04")
586 (source
587 (origin
588 (method url-fetch)
589 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
590 version ".tar.gz"))
591 (sha256
592 (base32
593 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
594 (build-system perl-build-system)
595 (home-page "https://metacpan.org/release/Browser-Open")
596 (synopsis "Open a browser in a given URL")
597 (description "The functions exported by this module allow you to open URLs
598 in the user's browser. A set of known commands per OS-name is tested for
599 presence, and the first one found is executed. With an optional parameter,
600 all known commands are checked.")
601 (license (package-license perl))))
602
603 (define-public perl-b-hooks-endofscope
604 (package
605 (name "perl-b-hooks-endofscope")
606 (version "0.24")
607 (source
608 (origin
609 (method url-fetch)
610 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
611 "B-Hooks-EndOfScope-" version ".tar.gz"))
612 (sha256
613 (base32
614 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
615 (build-system perl-build-system)
616 (propagated-inputs
617 `(("perl-module-runtime" ,perl-module-runtime)
618 ("perl-module-implementation" ,perl-module-implementation)
619 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
620 ("perl-variable-magic" ,perl-variable-magic)))
621 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
622 (synopsis "Execute code after a scope finished compilation")
623 (description "This module allows you to execute code when perl finished
624 compiling the surrounding scope.")
625 (license (package-license perl))))
626
627 (define-public perl-b-hooks-op-check
628 (package
629 (name "perl-b-hooks-op-check")
630 (version "0.22")
631 (source
632 (origin
633 (method url-fetch)
634 (uri (string-append
635 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
636 version ".tar.gz"))
637 (sha256
638 (base32
639 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
640 (build-system perl-build-system)
641 (native-inputs
642 `(("perl-extutils-depends" ,perl-extutils-depends)))
643 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
644 (synopsis "Wrap OP check callbacks")
645 (description "This module allows you to wrap OP check callbacks.")
646 (license (package-license perl))))
647
648 (define-public perl-b-keywords
649 (package
650 (name "perl-b-keywords")
651 (version "1.20")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
656 version ".tar.gz"))
657 (sha256
658 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
659 (build-system perl-build-system)
660 (home-page "https://metacpan.org/release/B-Keywords")
661 (synopsis "Lists of reserved barewords and symbol names")
662 (description "@code{B::Keywords} supplies several arrays of exportable
663 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
664 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
665 @@ExporterSymbols}.")
666 ;; GPLv2 only
667 (license gpl2)))
668
669 (define-public perl-benchmark-timer
670 (package
671 (name "perl-benchmark-timer")
672 (version "0.7102")
673 (source (origin
674 (method url-fetch)
675 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
676 "Benchmark-Timer-" version ".tar.gz"))
677 (sha256
678 (base32
679 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
680 (build-system perl-build-system)
681 (native-inputs
682 `(("perl-module-install" ,perl-module-install)))
683 ;; The optional input module Statistics::PointEstimation (from
684 ;; Statistics-TTest) lists no license.
685 (synopsis "Benchmarking with statistical confidence")
686 (description
687 "The Benchmark::Timer class allows you to time portions of code
688 conveniently, as well as benchmark code by allowing timings of repeated
689 trials. It is perfect for when you need more precise information about the
690 running time of portions of your code than the Benchmark module will give you,
691 but don't want to go all out and profile your code.")
692 (home-page "https://metacpan.org/release/Benchmark-Timer")
693 (license gpl2)))
694
695 (define-public perl-bit-vector
696 (package
697 (name "perl-bit-vector")
698 (version "7.4")
699 (source
700 (origin
701 (method url-fetch)
702 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
703 "Bit-Vector-" version ".tar.gz"))
704 (sha256
705 (base32
706 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
707 (build-system perl-build-system)
708 (propagated-inputs
709 `(("perl-carp-clan" ,perl-carp-clan)))
710 (home-page "https://metacpan.org/release/Bit-Vector")
711 (synopsis "Bit vector library")
712 (description "Bit::Vector is an efficient C library which allows you to
713 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
714 matrices, all of arbitrary sizes. The package also includes an
715 object-oriented Perl module for accessing the C library from Perl, and
716 optionally features overloaded operators for maximum ease of use. The C
717 library can nevertheless be used stand-alone, without Perl.")
718 (license (list (package-license perl) lgpl2.0+))))
719
720 (define-public perl-boolean
721 (package
722 (name "perl-boolean")
723 (version "0.46")
724 (source
725 (origin
726 (method url-fetch)
727 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
728 "boolean-" version ".tar.gz"))
729 (sha256
730 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
731 (build-system perl-build-system)
732 (home-page "https://metacpan.org/release/boolean")
733 (synopsis "Boolean support for Perl")
734 (description "This module provides basic Boolean support, by defining two
735 special objects: true and false.")
736 (license (package-license perl))))
737
738 (define-public perl-business-isbn-data
739 (package
740 (name "perl-business-isbn-data")
741 (version "20140910.003")
742 (source
743 (origin
744 (method url-fetch)
745 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
746 "Business-ISBN-Data-" version ".tar.gz"))
747 (sha256
748 (base32
749 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
750 (build-system perl-build-system)
751 (home-page "https://metacpan.org/release/Business-ISBN-Data")
752 (synopsis "Data files for Business::ISBN")
753 (description "This package provides a data pack for @code{Business::ISBN}.
754 These data are generated from the RangeMessage.xml file provided by the ISBN
755 Agency.")
756 (license (package-license perl))))
757
758 (define-public perl-business-isbn
759 (package
760 (name "perl-business-isbn")
761 (version "3.004")
762 (source
763 (origin
764 (method url-fetch)
765 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
766 "Business-ISBN-" version ".tar.gz"))
767 (sha256
768 (base32
769 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
770 (build-system perl-build-system)
771 (propagated-inputs
772 `(("perl-business-isbn-data" ,perl-business-isbn-data)
773 ("perl-mojolicious" ,perl-mojolicious)))
774 (home-page "https://metacpan.org/release/Business-ISBN")
775 (synopsis "Work with International Standard Book Numbers")
776 (description "This modules provides tools to deal with International
777 Standard Book Numbers, including ISBN-10 and ISBN-13.")
778 (license artistic2.0)))
779
780 (define-public perl-business-issn
781 (package
782 (name "perl-business-issn")
783 (version "1.003")
784 (source
785 (origin
786 (method url-fetch)
787 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
788 "Business-ISSN-" version ".tar.gz"))
789 (sha256
790 (base32
791 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
792 (build-system perl-build-system)
793 (home-page "https://metacpan.org/release/Business-ISSN")
794 (synopsis "Work with International Standard Serial Numbers")
795 (description "This modules provides tools to deal with International
796 Standard Serial Numbers.")
797 (license (package-license perl))))
798
799 (define-public perl-business-ismn
800 (package
801 (name "perl-business-ismn")
802 (version "1.201")
803 (source
804 (origin
805 (method url-fetch)
806 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
807 "Business-ISMN-" version ".tar.gz"))
808 (sha256
809 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
810 (build-system perl-build-system)
811 (native-inputs
812 `(("perl-tie-cycle" ,perl-tie-cycle)))
813 (home-page "https://metacpan.org/release/Business-ISMN")
814 (synopsis "Work with International Standard Music Numbers")
815 (description "This modules provides tools to deal with International
816 Standard Music Numbers.")
817 (license (package-license perl))))
818
819 (define-public perl-cache-cache
820 (package
821 (name "perl-cache-cache")
822 (version "1.08")
823 (source (origin
824 (method url-fetch)
825 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
826 "Cache-Cache-" version ".tar.gz"))
827 (sha256
828 (base32
829 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
830 (build-system perl-build-system)
831 (propagated-inputs
832 `(("perl-digest-sha1" ,perl-digest-sha1)
833 ("perl-error" ,perl-error)
834 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
835 (home-page "https://metacpan.org/release/Cache-Cache")
836 (synopsis "Cache interface for Perl")
837 (description "The Cache modules are designed to assist a developer in
838 persisting data for a specified period of time. Often these modules are used
839 in web applications to store data locally to save repeated and redundant
840 expensive calls to remote machines or databases. People have also been known
841 to use Cache::Cache for its straightforward interface in sharing data between
842 runs of an application or invocations of a CGI-style script or simply as an
843 easy to use abstraction of the file system or shared memory.")
844 (license (package-license perl))))
845
846 (define-public perl-cache-fastmmap
847 (package
848 (name "perl-cache-fastmmap")
849 (version "1.48")
850 (source
851 (origin
852 (method url-fetch)
853 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
854 "Cache-FastMmap-" version ".tar.gz"))
855 (sha256
856 (base32 "118y5lxwa092zrii7mcwnqypff7424w1dpgfkg8zlnz7h2mmnd9c"))))
857 (build-system perl-build-system)
858 (home-page "https://metacpan.org/release/Cache-FastMmap")
859 (synopsis "Shared memory interprocess cache via mmap")
860 (description "A shared memory cache through an mmap'ed file. It's core is
861 written in C for performance. It uses fcntl locking to ensure multiple
862 processes can safely access the cache at the same time. It uses a basic LRU
863 algorithm to keep the most used entries in the cache.")
864 (license (package-license perl))))
865
866 (define-public perl-capture-tiny
867 (package
868 (name "perl-capture-tiny")
869 (version "0.48")
870 (source
871 (origin
872 (method url-fetch)
873 (uri (string-append
874 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
875 version ".tar.gz"))
876 (sha256
877 (base32
878 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
879 (build-system perl-build-system)
880 (home-page "https://metacpan.org/release/Capture-Tiny")
881 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
882 (description
883 "Capture::Tiny provides a simple, portable way to capture almost anything
884 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
885 code or from an external program. Optionally, output can be teed so that it
886 is captured while being passed through to the original file handles.")
887 (license asl2.0)))
888
889 (define-public perl-canary-stability
890 (package
891 (name "perl-canary-stability")
892 (version "2013")
893 (source (origin
894 (method url-fetch)
895 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
896 "Canary-Stability-" version ".tar.gz"))
897 (sha256
898 (base32
899 "1smnsx371x9zrqmylgq145991xh8561mraqfyrlbiz4mrxi1rjd5"))))
900 (build-system perl-build-system)
901 (home-page "https://metacpan.org/release/Canary-Stability")
902 (synopsis "Check compatibility with the installed perl version")
903 (description
904 "This module is used by Schmorp's modules during configuration stage
905 to test the installed perl for compatibility with his modules.")
906 (license (package-license perl))))
907
908 (define-public perl-carp
909 (package
910 (name "perl-carp")
911 (version "1.50")
912 (source (origin
913 (method url-fetch)
914 (uri (string-append
915 "mirror://cpan/authors/id/X/XS/XSAWYERX/Carp-"
916 version ".tar.gz"))
917 (sha256
918 (base32
919 "1ngbpjyd9qi7n4h5r3q3qibd8by7rfiv7364jqlv4lbd3973n9zm"))))
920 (build-system perl-build-system)
921 (home-page "https://metacpan.org/release/Carp")
922 (synopsis "Alternative warn and die for modules")
923 (description "The @code{Carp} routines are useful in your own modules
924 because they act like @code{die()} or @code{warn()}, but with a message
925 which is more likely to be useful to a user of your module. In the case
926 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
927 summary of every call in the call-stack. For a shorter message you can use
928 @code{carp} or @code{croak} which report the error as being from where your
929 module was called. There is no guarantee that that is where the error was,
930 but it is a good educated guess.")
931 (license (package-license perl))))
932
933 (define-public perl-carp-always
934 (package
935 (name "perl-carp-always")
936 (version "0.16")
937 (source
938 (origin
939 (method url-fetch)
940 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
941 version ".tar.gz"))
942 (sha256
943 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
944 (build-system perl-build-system)
945 (native-inputs
946 `(("perl-test-base" ,perl-test-base)))
947 (home-page "https://metacpan.org/release/Carp-Always")
948 (synopsis "Warns and dies noisily with stack backtraces/")
949 (description "This module is meant as a debugging aid. It can be used to
950 make a script complain loudly with stack backtraces when @code{warn()}-ing or
951 @code{die()}ing.")
952 (license (package-license perl))))
953
954 (define-public perl-carp-assert
955 (package
956 (name "perl-carp-assert")
957 (version "0.21")
958 (source
959 (origin
960 (method url-fetch)
961 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
962 "Carp-Assert-" version ".tar.gz"))
963 (sha256
964 (base32
965 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
966 (build-system perl-build-system)
967 (home-page "https://metacpan.org/release/Carp-Assert")
968 (synopsis "Executable comments for Perl")
969 (description "Carp::Assert is intended for a purpose like the ANSI C
970 library assert.h.")
971 (license (package-license perl))))
972
973 (define-public perl-carp-assert-more
974 (package
975 (name "perl-carp-assert-more")
976 (version "1.20")
977 (source
978 (origin
979 (method url-fetch)
980 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
981 "Carp-Assert-More-" version ".tar.gz"))
982 (sha256
983 (base32 "16jnhdjgfwymrc5fki4xlf1rlziszf9k6q0245g976124k708ac5"))))
984 (build-system perl-build-system)
985 (native-inputs
986 `(("perl-test-exception" ,perl-test-exception)))
987 (propagated-inputs
988 `(("perl-carp-assert" ,perl-carp-assert)))
989 (home-page "https://metacpan.org/release/Carp-Assert-More")
990 (synopsis "Convenience wrappers around Carp::Assert")
991 (description "Carp::Assert::More is a set of handy assertion functions for
992 Perl.")
993 (license artistic2.0)))
994
995 (define-public perl-carp-clan
996 (package
997 (name "perl-carp-clan")
998 (version "6.08")
999 (source
1000 (origin
1001 (method url-fetch)
1002 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1003 "Carp-Clan-" version ".tar.gz"))
1004 (sha256
1005 (base32 "0237xx3rqa72sr4vdvws9r1m453h5f25bl85mdjmmk128kir4py7"))))
1006 (build-system perl-build-system)
1007 (native-inputs
1008 `(("perl-test-exception" ,perl-test-exception)))
1009 (home-page "https://metacpan.org/release/Carp-Clan")
1010 (synopsis "Report errors from a \"clan\" of modules")
1011 (description "This module allows errors from a clan (or family) of modules
1012 to appear to originate from the caller of the clan. This is necessary in
1013 cases where the clan modules are not classes derived from each other, and thus
1014 the Carp.pm module doesn't help.")
1015 (license (package-license perl))))
1016
1017 (define-public perl-cddb-get
1018 (package
1019 (name "perl-cddb-get")
1020 (version "2.28")
1021 (source (origin
1022 (method url-fetch)
1023 (uri (string-append
1024 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
1025 version ".tar.gz"))
1026 (sha256
1027 (base32
1028 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
1029 (build-system perl-build-system)
1030 (home-page "https://metacpan.org/release/CDDB_get")
1031 (synopsis "Read the CDDB entry for an audio CD in your drive")
1032 (description "This module can retrieve information from the CDDB.")
1033 ;; Either GPLv2 or the "Artistic" license.
1034 (license (list gpl2 artistic2.0))))
1035
1036 (define-public circos
1037 (package
1038 (name "circos")
1039 (version "0.69-9")
1040 (source (origin
1041 (method url-fetch)
1042 (uri (string-append
1043 "http://circos.ca/distribution/circos-" version ".tgz"))
1044 (sha256
1045 (base32 "1ll9yxbk0v64813np0qz6h8bc53qlnhg9y1053b57xgkxgmxgn1l"))
1046 (patches (list (search-patch "circos-remove-findbin.patch")))))
1047 (build-system gnu-build-system)
1048 (arguments
1049 `(#:tests? #f ; There are no tests.
1050 #:phases
1051 (modify-phases %standard-phases
1052 (delete 'configure)
1053 (delete 'build)
1054 (replace 'install
1055 (lambda* (#:key outputs #:allow-other-keys)
1056 (let* ((out (assoc-ref outputs "out"))
1057 (bin (string-append out "/bin"))
1058 (datapath (string-append out "/share/Circos"))
1059 (error (string-append out "/share/Circos/error"))
1060 (fonts (string-append out "/share/Circos/fonts"))
1061 (data (string-append out "/share/Circos/data"))
1062 (tiles (string-append out "/share/Circos/tiles"))
1063 (etc (string-append out "/share/Circos/etc"))
1064 (lib (string-append out "/lib/perl5/site_perl/"
1065 ,(package-version perl)))
1066 (install-directory (lambda (source target)
1067 (mkdir-p target)
1068 (copy-recursively source target))))
1069 ;; Circos looks into a relative path for its configuration
1070 ;; files. We need to provide an absolute path towards the
1071 ;; corresponding paths in the store.
1072 (substitute* '("bin/circos" "etc/colors_fonts_patterns.conf"
1073 "etc/gddiag.conf" "etc/brewer.conf" "README")
1074 (("<<include etc") (string-append "<<include " etc)))
1075 (substitute* '("etc/colors.conf" "etc/image.black.conf"
1076 "etc/patterns.conf" "etc/image.conf")
1077 (("<<include ") (string-append "<<include " etc "/")))
1078 (substitute* '("etc/fonts.conf" "fonts/README.fonts")
1079 (("= fonts") (string-append "= " fonts)))
1080 (substitute* "etc/patterns.conf"
1081 (("= tiles") (string-append "= " tiles)))
1082 (substitute* "lib/Circos/Error.pm"
1083 (("error/configuration.missing.txt")
1084 (string-append error "/configuration.missing.txt")))
1085 (substitute* "etc/housekeeping.conf"
1086 (("# data_path = /home/martink/circos-tutorials ")
1087 (string-append "data_path = " datapath)))
1088 (substitute* "lib/Circos/Configuration.pm"
1089 (("my @possibilities = \\(")
1090 (string-append "my @possibilities = ("
1091 "catfile( \"" datapath "\", $arg ), "
1092 "catfile( \"" etc "\", $arg ), "
1093 "catfile( \"" etc "/tracks\", $arg ), ")))
1094 (for-each install-directory
1095 (list "error" "fonts" "data" "tiles" "etc" "lib")
1096 (list error fonts data tiles etc lib))
1097 (install-file "bin/circos" bin)
1098 #t))))))
1099 (propagated-inputs
1100 `(("perl" ,perl)
1101 ("perl-carp" ,perl-carp)
1102 ("perl-clone" ,perl-clone)
1103 ("perl-config-general" ,perl-config-general)
1104 ("perl-digest-md5" ,perl-digest-md5)
1105 ("perl-file-temp" ,perl-file-temp)
1106 ("perl-font-ttf" ,perl-font-ttf)
1107 ("perl-gd" ,perl-gd)
1108 ("perl-getopt-long" ,perl-getopt-long)
1109 ("perl-list-allutils" ,perl-list-allutils)
1110 ("perl-math-bezier" ,perl-math-bezier)
1111 ("perl-math-round" ,perl-math-round)
1112 ("perl-math-vecstat" ,perl-math-vecstat)
1113 ("perl-memoize" ,perl-memoize)
1114 ("perl-number-format" ,perl-number-format)
1115 ("perl-params-validate" ,perl-params-validate)
1116 ("perl-readonly" ,perl-readonly)
1117 ("perl-regexp-common" ,perl-regexp-common)
1118 ("perl-set-intspan" ,perl-set-intspan)
1119 ("perl-statistics-basic" ,perl-statistics-basic)
1120 ("perl-svg" ,perl-svg)
1121 ("perl-text-balanced" ,perl-text-balanced)
1122 ("perl-text-format" ,perl-text-format)
1123 ("perl-time-hires" ,perl-time-hires)))
1124 (home-page "http://circos.ca/")
1125 (synopsis "Generation of circularly composited renditions")
1126 (description
1127 "Circos is a program for the generation of publication-quality, circularly
1128 composited renditions of genomic data and related annotations.")
1129 (license gpl2+)))
1130
1131 (define-public perl-class-accessor
1132 (package
1133 (name "perl-class-accessor")
1134 (version "0.51")
1135 (source
1136 (origin
1137 (method url-fetch)
1138 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
1139 "Class-Accessor-" version ".tar.gz"))
1140 (sha256
1141 (base32
1142 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
1143 (build-system perl-build-system)
1144 (native-inputs
1145 `(("perl-sub-name" ,perl-sub-name)))
1146 (home-page "https://metacpan.org/release/Class-Accessor")
1147 (synopsis "Automated accessor generation")
1148 (description "This module automagically generates accessors/mutators for
1149 your class.")
1150 (license (package-license perl))))
1151
1152 (define-public perl-class-accessor-chained
1153 (package
1154 (name "perl-class-accessor-chained")
1155 (version "0.01")
1156 (source
1157 (origin
1158 (method url-fetch)
1159 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1160 "Class-Accessor-Chained-" version ".tar.gz"))
1161 (sha256
1162 (base32
1163 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
1164 (build-system perl-build-system)
1165 (native-inputs
1166 `(("perl-module-build" ,perl-module-build)))
1167 (propagated-inputs
1168 `(("perl-class-accessor" ,perl-class-accessor)))
1169 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
1170 (synopsis "Faster, but less expandable, chained accessors")
1171 (description "A chained accessor is one that always returns the object
1172 when called with parameters (to set), and the value of the field when called
1173 with no arguments. This module subclasses Class::Accessor in order to provide
1174 the same mk_accessors interface.")
1175 (license (package-license perl))))
1176
1177 (define-public perl-class-accessor-grouped
1178 (package
1179 (name "perl-class-accessor-grouped")
1180 (version "0.10014")
1181 (source
1182 (origin
1183 (method url-fetch)
1184 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1185 "Class-Accessor-Grouped-" version ".tar.gz"))
1186 (sha256
1187 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
1188 (build-system perl-build-system)
1189 (native-inputs
1190 `(("perl-module-install" ,perl-module-install)
1191 ("perl-test-exception" ,perl-test-exception)))
1192 (propagated-inputs
1193 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
1194 ("perl-module-runtime" ,perl-module-runtime)
1195 ("perl-sub-name" ,perl-sub-name)))
1196 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
1197 (synopsis "Build groups of accessors")
1198 (description "This class lets you build groups of accessors that will call
1199 different getters and setters.")
1200 (license (package-license perl))))
1201
1202 (define-public perl-class-c3
1203 (package
1204 (name "perl-class-c3")
1205 (version "0.34")
1206 (source
1207 (origin
1208 (method url-fetch)
1209 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1210 "Class-C3-" version ".tar.gz"))
1211 (sha256
1212 (base32 "1dcibc31v5jwmi6hsdzi7c5ag1sb4wp3kxkibc889qrdj7jm12sd"))))
1213 (build-system perl-build-system)
1214 (propagated-inputs
1215 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
1216 (home-page "https://metacpan.org/release//Class-C3")
1217 (synopsis "Pragma to use the C3 method resolution order algorithm")
1218 (description "This is pragma to change Perl 5's standard method resolution
1219 order from depth-first left-to-right (a.k.a - pre-order) to the more
1220 sophisticated C3 method resolution order.")
1221 (license (package-license perl))))
1222
1223 (define-public perl-class-c3-adopt-next
1224 (package
1225 (name "perl-class-c3-adopt-next")
1226 (version "0.14")
1227 (source
1228 (origin
1229 (method url-fetch)
1230 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1231 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1232 (sha256
1233 (base32 "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"))))
1234 (build-system perl-build-system)
1235 (native-inputs
1236 `(("perl-module-build" ,perl-module-build)
1237 ("perl-module-build-tiny" ,perl-module-build-tiny)
1238 ("perl-test-exception" ,perl-test-exception)))
1239 (propagated-inputs
1240 `(("perl-list-moreutils" ,perl-list-moreutils)
1241 ("perl-mro-compat" ,perl-mro-compat)))
1242 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
1243 (synopsis "Drop-in replacement for NEXT")
1244 (description "This module is intended as a drop-in replacement for NEXT,
1245 supporting the same interface, but using Class::C3 to do the hard work.")
1246 (license (package-license perl))))
1247
1248 (define-public perl-class-c3-componentised
1249 (package
1250 (name "perl-class-c3-componentised")
1251 (version "1.001002")
1252 (source
1253 (origin
1254 (method url-fetch)
1255 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1256 "Class-C3-Componentised-" version ".tar.gz"))
1257 (sha256
1258 (base32 "14wn1g45z3b5apqq7dcai5drk01hfyqydsd2m6hsxzhyvi3b2l9h"))))
1259 (build-system perl-build-system)
1260 (native-inputs
1261 `(("perl-module-install" ,perl-module-install)
1262 ("perl-test-exception" ,perl-test-exception)))
1263 (propagated-inputs
1264 `(("perl-class-c3" ,perl-class-c3)
1265 ("perl-class-inspector" ,perl-class-inspector)
1266 ("perl-mro-compat" ,perl-mro-compat)))
1267 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1268 (synopsis "Load mix-ins or components to your C3-based class")
1269 (description "This module will inject base classes to your module using
1270 the Class::C3 method resolution order.")
1271 (license (package-license perl))))
1272
1273 (define-public perl-class-data-inheritable
1274 (package
1275 (name "perl-class-data-inheritable")
1276 (version "0.08")
1277 (source
1278 (origin
1279 (method url-fetch)
1280 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1281 "Class-Data-Inheritable-" version ".tar.gz"))
1282 (sha256
1283 (base32
1284 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1285 (build-system perl-build-system)
1286 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1287 (synopsis "Inheritable, overridable class data")
1288 (description "Class::Data::Inheritable is for creating accessor/mutators
1289 to class data. That is, if you want to store something about your class as a
1290 whole (instead of about a single object). This data is then inherited by your
1291 subclasses and can be overridden.")
1292 (license (package-license perl))))
1293
1294 (define-public perl-class-date
1295 (package
1296 (name "perl-class-date")
1297 (version "1.1.17")
1298 (source
1299 (origin
1300 (method url-fetch)
1301 (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/"
1302 "Class-Date-" version ".tar.gz"))
1303 (sha256
1304 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1305 (build-system perl-build-system)
1306 (arguments `(#:tests? #f)) ;timezone tests in chroot
1307 (home-page "https://metacpan.org/release/Class-Date")
1308 (synopsis "Class for easy date and time manipulation")
1309 (description "This module provides a general-purpose date and datetime
1310 type for perl.")
1311 (license (package-license perl))))
1312
1313 (define-public perl-class-errorhandler
1314 (package
1315 (name "perl-class-errorhandler")
1316 (version "0.04")
1317 (source (origin
1318 (method url-fetch)
1319 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1320 "Class-ErrorHandler-" version ".tar.gz"))
1321 (sha256
1322 (base32
1323 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1324 (build-system perl-build-system)
1325 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1326 (synopsis "Base class for error handling")
1327 (description
1328 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1329 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1330 its two error-handling methods, error and errstr, to communicate error messages back
1331 to the calling program.")
1332 (license (package-license perl))))
1333
1334 (define-public perl-class-factory-util
1335 (package
1336 (name "perl-class-factory-util")
1337 (version "1.7")
1338 (source
1339 (origin
1340 (method url-fetch)
1341 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1342 "Class-Factory-Util-" version ".tar.gz"))
1343 (sha256
1344 (base32
1345 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1346 (build-system perl-build-system)
1347 (native-inputs `(("perl-module-build" ,perl-module-build)))
1348 (home-page "https://metacpan.org/release/Class-Factory-Util")
1349 (synopsis "Utility methods for factory classes")
1350 (description "This module exports methods useful for factory classes.")
1351 (license (package-license perl))))
1352
1353 (define-public perl-class-inspector
1354 (package
1355 (name "perl-class-inspector")
1356 (version "1.36")
1357 (source
1358 (origin
1359 (method url-fetch)
1360 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1361 "Class-Inspector-" version ".tar.gz"))
1362 (sha256
1363 (base32
1364 "0kk900bp8iq7bw5jyllfb31gvf93mmp24n4x90j7qs3jlhimsafc"))))
1365 (build-system perl-build-system)
1366 (home-page "https://metacpan.org/release/Class-Inspector")
1367 (synopsis "Get information about a class and its structure")
1368 (description "Class::Inspector allows you to get information about a
1369 loaded class.")
1370 (license (package-license perl))))
1371
1372 (define-public perl-class-load
1373 (package
1374 (name "perl-class-load")
1375 (version "0.25")
1376 (source
1377 (origin
1378 (method url-fetch)
1379 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1380 "Class-Load-" version ".tar.gz"))
1381 (sha256
1382 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1383 (build-system perl-build-system)
1384 (native-inputs
1385 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1386 ("perl-test-fatal" ,perl-test-fatal)
1387 ("perl-test-needs" ,perl-test-needs)
1388 ("perl-test-without-module" ,perl-test-without-module)))
1389 (propagated-inputs
1390 `(("perl-package-stash" ,perl-package-stash)
1391 ("perl-data-optlist" ,perl-data-optlist)
1392 ("perl-namespace-clean" ,perl-namespace-clean)
1393 ("perl-module-runtime" ,perl-module-runtime)
1394 ("perl-module-implementation" ,perl-module-implementation)))
1395 (home-page "https://metacpan.org/release/Class-Load")
1396 (synopsis "Working (require \"Class::Name\") and more")
1397 (description "\"require EXPR\" only accepts Class/Name.pm style module
1398 names, not Class::Name. For that, this module provides \"load_class
1399 'Class::Name'\".")
1400 (license (package-license perl))))
1401
1402 (define-public perl-class-load-xs
1403 (package
1404 (name "perl-class-load-xs")
1405 (version "0.10")
1406 (source
1407 (origin
1408 (method url-fetch)
1409 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1410 "Class-Load-XS-" version ".tar.gz"))
1411 (sha256
1412 (base32
1413 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1414 (build-system perl-build-system)
1415 (native-inputs
1416 `(("perl-test-fatal" ,perl-test-fatal)
1417 ("perl-test-needs" ,perl-test-needs)
1418 ("perl-test-without-module" ,perl-test-without-module)))
1419 (inputs `(("perl-class-load" ,perl-class-load)))
1420 (home-page "https://metacpan.org/release/Class-Load-XS")
1421 (synopsis "XS implementation of parts of Class::Load")
1422 (description "This module provides an XS implementation for portions of
1423 Class::Load.")
1424 (license artistic2.0)))
1425
1426 (define-public perl-class-methodmaker
1427 (package
1428 (name "perl-class-methodmaker")
1429 (version "2.24")
1430 (source
1431 (origin
1432 (method url-fetch)
1433 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1434 "class-methodmaker/Class-MethodMaker-"
1435 version ".tar.gz"))
1436 (sha256
1437 (base32
1438 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1439 (build-system perl-build-system)
1440 (home-page "https://metacpan.org/release/Class-MethodMaker")
1441 (synopsis "Create generic methods for OO Perl")
1442 (description "This module solves the problem of having to continually
1443 write accessor methods for your objects that perform standard tasks.")
1444 (license (package-license perl))))
1445
1446 (define-public perl-class-method-modifiers
1447 (package
1448 (name "perl-class-method-modifiers")
1449 (version "2.13")
1450 (source
1451 (origin
1452 (method url-fetch)
1453 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1454 "Class-Method-Modifiers-" version ".tar.gz"))
1455 (sha256
1456 (base32 "0qzx83mgd71hlc2m1kpw15dqsjzjq7b2cj3sdgg45a0q23vhfn5b"))))
1457 (build-system perl-build-system)
1458 (native-inputs
1459 `(("perl-test-fatal" ,perl-test-fatal)
1460 ("perl-test-needs" ,perl-test-needs)))
1461 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1462 (synopsis "Moose-like method modifiers")
1463 (description "Class::Method::Modifiers provides three modifiers:
1464 @code{before}, @code{around}, and @code{after}. @code{before} and @code{after}
1465 are run just before and after the method they modify, but can not really affect
1466 that original method. @code{around} is run in place of the original method,
1467 with a hook to easily call that original method.")
1468 (license (package-license perl))))
1469
1470 (define-public perl-class-mix
1471 (package
1472 (name "perl-class-mix")
1473 (version "0.006")
1474 (source
1475 (origin
1476 (method url-fetch)
1477 (uri (string-append
1478 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Class-Mix-"
1479 version ".tar.gz"))
1480 (sha256
1481 (base32
1482 "02vwzzqn1s24g525arbrjh9s9j0y1inp3wbr972gh51ri51zciw7"))))
1483 (build-system perl-build-system)
1484 (native-inputs
1485 `(("perl-module-build" ,perl-module-build)
1486 ("perl-test-pod" ,perl-test-pod)
1487 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1488 (propagated-inputs
1489 `(("perl-params-classify" ,perl-params-classify)))
1490 (home-page "https://metacpan.org/release/Class-Mix")
1491 (synopsis "Dynamic class mixing")
1492 (description "The @code{mix_class} function provided by this
1493 module dynamically generates anonymous classes with specified
1494 inheritance. This is useful where an incomplete class requires use of
1495 a mixin in order to become instantiable.")
1496 (license perl-license)))
1497
1498 (define-public perl-class-singleton
1499 (package
1500 (name "perl-class-singleton")
1501 (version "1.5")
1502 (source
1503 (origin
1504 (method url-fetch)
1505 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1506 "Class-Singleton-" version ".tar.gz"))
1507 (sha256
1508 (base32
1509 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1510 (build-system perl-build-system)
1511 (home-page "https://metacpan.org/release/Class-Singleton")
1512 (synopsis "Implementation of a singleton class for Perl")
1513 (description "This module implements a Singleton class from which other
1514 classes can be derived. By itself, the Class::Singleton module does very
1515 little other than manage the instantiation of a single object.")
1516 (license (package-license perl))))
1517
1518 (define-public perl-class-tiny
1519 (package
1520 (name "perl-class-tiny")
1521 (version "1.006")
1522 (source
1523 (origin
1524 (method url-fetch)
1525 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1526 "Class-Tiny-" version ".tar.gz"))
1527 (sha256
1528 (base32
1529 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1530 (build-system perl-build-system)
1531 (home-page "https://metacpan.org/release/Class-Tiny")
1532 (synopsis "Minimalist class construction")
1533 (description "This module offers a minimalist class construction kit. It
1534 uses no non-core modules for any recent Perl.")
1535 (license asl2.0)))
1536
1537 (define-public perl-class-unload
1538 (package
1539 (name "perl-class-unload")
1540 (version "0.11")
1541 (source
1542 (origin
1543 (method url-fetch)
1544 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1545 "Class-Unload-" version ".tar.gz"))
1546 (sha256
1547 (base32 "0pqa98z3ij6a3v9wkmvc8b410kv30y0xxqf0i6if3lp4lx3rgqjj"))))
1548 (build-system perl-build-system)
1549 (native-inputs
1550 `(("perl-test-requires" ,perl-test-requires)))
1551 (propagated-inputs
1552 `(("perl-class-inspector" ,perl-class-inspector)))
1553 (home-page "https://metacpan.org/release/Class-Unload")
1554 (synopsis "Unload a class")
1555 (description "Class:Unload unloads a given class by clearing out its
1556 symbol table and removing it from %INC.")
1557 (license (package-license perl))))
1558
1559 (define-public perl-class-xsaccessor
1560 (package
1561 (name "perl-class-xsaccessor")
1562 (version "1.19")
1563 (source
1564 (origin
1565 (method url-fetch)
1566 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1567 "Class-XSAccessor-" version ".tar.gz"))
1568 (sha256
1569 (base32
1570 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1571 (build-system perl-build-system)
1572 (home-page "https://metacpan.org/release/Class-XSAccessor")
1573 (synopsis "Generate fast XS accessors without runtime compilation")
1574 (description "Class::XSAccessor implements fast read, write, and
1575 read/write accessors in XS. Additionally, it can provide predicates such as
1576 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1577 object. It only works with objects that are implemented as ordinary hashes.
1578 Class::XSAccessor::Array implements the same interface for objects that use
1579 arrays for their internal representation.")
1580 (license (package-license perl))))
1581
1582 (define-public perl-clone
1583 (package
1584 (name "perl-clone")
1585 (version "0.43")
1586 (source (origin
1587 (method url-fetch)
1588 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
1589 "Clone-" version ".tar.gz"))
1590 (sha256
1591 (base32
1592 "1npf5s4b90ds6lv8gn76b2w4bdh0z5ni5zk4skgc2db5d12560lr"))))
1593 (build-system perl-build-system)
1594 (synopsis "Recursively copy Perl datatypes")
1595 (description
1596 "This module provides a clone() method which makes recursive copies of
1597 nested hash, array, scalar and reference types, including tied variables and
1598 objects.")
1599 (home-page "https://metacpan.org/release/Clone")
1600 (license (package-license perl))))
1601
1602 (define-public perl-clone-choose
1603 (package
1604 (name "perl-clone-choose")
1605 (version "0.010")
1606 (source
1607 (origin
1608 (method url-fetch)
1609 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
1610 "Clone-Choose-" version ".tar.gz"))
1611 (sha256
1612 (base32
1613 "0cin2bjn5z8xhm9v4j7pwlkx88jnvz8al0njdjwyvs6fb0glh8sn"))))
1614 (build-system perl-build-system)
1615 (native-inputs
1616 `(("perl-clone" ,perl-clone)
1617 ("perl-clone-pp" ,perl-clone-pp)
1618 ("perl-test-without-module" ,perl-test-without-module)))
1619 (propagated-inputs
1620 `(("perl-module-runtime" ,perl-module-runtime)))
1621 (home-page "https://metacpan.org/release/Clone-Choose")
1622 (synopsis "Choose appropriate Perl @code{clone} utility")
1623 (description "This @code{Clone::Choose} module checks several different
1624 modules which provide a @code{clone()} function and selects an appropriate
1625 one.")
1626 (license perl-license)))
1627
1628 (define-public perl-clone-pp
1629 (package
1630 (name "perl-clone-pp")
1631 (version "1.07")
1632 (source
1633 (origin
1634 (method url-fetch)
1635 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1636 version ".tar.gz"))
1637 (sha256
1638 (base32
1639 "15dkhqvih6rx9dnngfwwljcm9s8afb0nbyl2vdvhd8frnw4y31dz"))))
1640 (build-system perl-build-system)
1641 (home-page "https://metacpan.org/release/Clone-PP")
1642 (synopsis "Recursively copy Perl datatypes")
1643 (description "This module provides a general-purpose @code{clone} function
1644 to make deep copies of Perl data structures. It calls itself recursively to
1645 copy nested hash, array, scalar and reference types, including tied variables
1646 and objects.")
1647 (license (package-license perl))))
1648
1649 (define-public perl-common-sense
1650 (package
1651 (name "perl-common-sense")
1652 (version "3.74")
1653 (source
1654 (origin
1655 (method url-fetch)
1656 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1657 "common-sense-" version ".tar.gz"))
1658 (sha256
1659 (base32
1660 "1wxv2s0hbjkrnssvxvsds0k213awg5pgdlrpkr6xkpnimc17s7vp"))))
1661 (build-system perl-build-system)
1662 (home-page "https://metacpan.org/release/common-sense")
1663 (synopsis "Sane defaults for Perl programs")
1664 (description "This module implements some sane defaults for Perl programs,
1665 as defined by two typical specimens of Perl coders.")
1666 (license (package-license perl))))
1667
1668 (define-public perl-conf-libconfig
1669 (package
1670 (name "perl-conf-libconfig")
1671 (version "0.100")
1672 (source
1673 (origin
1674 (method url-fetch)
1675 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1676 "Conf-Libconfig-" version ".tar.gz"))
1677 (sha256
1678 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1679 (build-system perl-build-system)
1680 (native-inputs
1681 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1682 ("perl-test-deep" ,perl-test-deep)
1683 ("perl-test-exception" ,perl-test-exception)
1684 ("perl-test-warn" ,perl-test-warn)))
1685 (inputs
1686 `(("libconfig" ,libconfig)))
1687 (home-page "https://metacpan.org/release/Conf-Libconfig")
1688 (synopsis "Perl extension for libconfig")
1689 (description
1690 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1691 library. It support scalar, array, and hash data structures just like its C/C++
1692 counterpart. It reduces the effort required to implement a configuration file
1693 parser in your Perl programme and allows sharing configuration files between
1694 languages.")
1695 (license bsd-3)))
1696
1697 (define-public perl-config-grammar
1698 (package
1699 (name "perl-config-grammar")
1700 (version "1.13")
1701 (source
1702 (origin
1703 (method url-fetch)
1704 (uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
1705 "Config-Grammar-" version ".tar.gz"))
1706 (sha256
1707 (base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
1708 (build-system perl-build-system)
1709 (home-page "https://metacpan.org/release/Config-Grammar")
1710 (synopsis "Grammar-based config parser")
1711 (description
1712 "Config::Grammar is a module to parse configuration files. The
1713 configuration may consist of multiple-level sections with assignments and
1714 tabular data.")
1715 (license (package-license perl))))
1716
1717 (define-public perl-config-any
1718 (package
1719 (name "perl-config-any")
1720 (version "0.32")
1721 (source
1722 (origin
1723 (method url-fetch)
1724 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1725 "Config-Any-" version ".tar.gz"))
1726 (sha256
1727 (base32
1728 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1729 (build-system perl-build-system)
1730 (propagated-inputs
1731 `(("perl-module-pluggable" ,perl-module-pluggable)))
1732 (home-page "https://metacpan.org/release/Config-Any")
1733 (synopsis "Load configuration from different file formats")
1734 (description "Config::Any provides a facility for Perl applications and
1735 libraries to load configuration data from multiple different file formats. It
1736 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1737 (license (package-license perl))))
1738
1739 (define-public perl-config-inifiles
1740 (package
1741 (name "perl-config-inifiles")
1742 (version "3.000002")
1743 (source
1744 (origin
1745 (method url-fetch)
1746 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/"
1747 "Config-IniFiles-" version ".tar.gz"))
1748 (sha256
1749 (base32 "02dsz3inh5jwgaxmbcz8qxwgin8mkhm6vj9jyzfmm3dr5pnxcbnr"))))
1750 (build-system perl-build-system)
1751 (propagated-inputs
1752 `(("perl-module-build" ,perl-module-build)
1753 ("perl-io-stringy",perl-io-stringy)))
1754 (home-page "https://metacpan.org/pod/Config::IniFiles")
1755 (synopsis "Package for configuration files outside your Perl script")
1756 (description "This package provides a way to have readable configuration
1757 files outside your Perl script. Configurations can be imported, sections
1758 can be grouped, and settings can be accessed from a tied hash.")
1759 (license (package-license perl))))
1760
1761 (define-public perl-config-autoconf
1762 (package
1763 (name "perl-config-autoconf")
1764 (version "0.317")
1765 (source
1766 (origin
1767 (method url-fetch)
1768 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1769 "Config-AutoConf-" version ".tar.gz"))
1770 (sha256
1771 (base32
1772 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1773 (build-system perl-build-system)
1774 (propagated-inputs
1775 `(("perl-capture-tiny" ,perl-capture-tiny)))
1776 (home-page "https://metacpan.org/release/Config-AutoConf")
1777 (synopsis "Module to implement some AutoConf macros in Perl")
1778 (description "Config::AutoConf is intended to provide the same
1779 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1780 (license (package-license perl))))
1781
1782 (define-public perl-config-general
1783 (package
1784 (name "perl-config-general")
1785 (version "2.63")
1786 (source
1787 (origin
1788 (method url-fetch)
1789 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1790 "Config-General-" version ".tar.gz"))
1791 (sha256
1792 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1793 (build-system perl-build-system)
1794 (home-page "https://metacpan.org/release/Config-General")
1795 (synopsis "Generic Config Module")
1796 (description "This module opens a config file and parses its contents for
1797 you. The format of config files supported by Config::General is inspired by
1798 the well known Apache config format and is 100% compatible with Apache
1799 configs, but you can also just use simple name/value pairs in your config
1800 files. In addition to the capabilities of an Apache config file it supports
1801 some enhancements such as here-documents, C-style comments, and multiline
1802 options.")
1803 (license (package-license perl))))
1804
1805 (define-public perl-config-gitlike
1806 (package
1807 (name "perl-config-gitlike")
1808 (version "1.17")
1809 (source
1810 (origin
1811 (method url-fetch)
1812 (uri (string-append
1813 "mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
1814 version
1815 ".tar.gz"))
1816 (sha256
1817 (base32
1818 "0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
1819 (build-system perl-build-system)
1820 (native-inputs
1821 `(("perl-test-exception" ,perl-test-exception)))
1822 (propagated-inputs
1823 `(("perl-moo" ,perl-moo)
1824 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
1825 (home-page "https://metacpan.org/release/Config-GitLike")
1826 (synopsis "Parse Git style configuration files")
1827 (description
1828 "This module handles parsing, modifying and creating configuration files
1829 of the style used by the Git version control system.")
1830 (license perl-license)))
1831
1832 (define-public perl-config-ini
1833 (package
1834 (name "perl-config-ini")
1835 (version "0.025")
1836 (source (origin
1837 (method url-fetch)
1838 (uri (string-append
1839 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1840 version ".tar.gz"))
1841 (sha256
1842 (base32
1843 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1844 (build-system perl-build-system)
1845 (inputs
1846 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1847 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1848 ("perl-sub-exporter" ,perl-sub-exporter)))
1849 (home-page "https://metacpan.org/release/Config-INI")
1850 (synopsis "Simple .ini-file format reader and writer")
1851 (description "@code{Config::INI} is a module that facilates the reading
1852 and writing of @code{.ini}-style configuration files.")
1853 (license (package-license perl))))
1854
1855 (define-public perl-context-preserve
1856 (package
1857 (name "perl-context-preserve")
1858 (version "0.03")
1859 (source
1860 (origin
1861 (method url-fetch)
1862 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1863 "Context-Preserve-" version ".tar.gz"))
1864 (sha256
1865 (base32
1866 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1867 (build-system perl-build-system)
1868 (native-inputs
1869 `(("perl-test-exception" ,perl-test-exception)
1870 ("perl-test-simple" ,perl-test-simple)))
1871 (home-page "https://metacpan.org/release/Context-Preserve")
1872 (synopsis "Preserve context during subroutine call")
1873 (description "This module runs code after a subroutine call, preserving
1874 the context the subroutine would have seen if it were the last statement in
1875 the caller.")
1876 (license (package-license perl))))
1877
1878 (define-public perl-convert-binhex
1879 (package
1880 (name "perl-convert-binhex")
1881 (version "1.125")
1882 (source
1883 (origin
1884 (method url-fetch)
1885 (uri (string-append
1886 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1887 version
1888 ".tar.gz"))
1889 (sha256
1890 (base32
1891 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1892 (build-system perl-build-system)
1893 (native-inputs
1894 `(("perl-file-slurp" ,perl-file-slurp)
1895 ("perl-test-most" ,perl-test-most)))
1896 (home-page
1897 "https://metacpan.org/release/Convert-BinHex")
1898 (synopsis "Extract data from Macintosh BinHex files")
1899 (description
1900 "BinHex is a format for transporting files safely through electronic
1901 mail, as short-lined, 7-bit, semi-compressed data streams. Ths module
1902 provides a means of converting those data streams back into into binary
1903 data.")
1904 (license perl-license)))
1905
1906 (define-public perl-cpan-changes
1907 (package
1908 (name "perl-cpan-changes")
1909 (version "0.400002")
1910 (source
1911 (origin
1912 (method url-fetch)
1913 (uri (string-append
1914 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1915 version ".tar.gz"))
1916 (sha256
1917 (base32
1918 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1919 (build-system perl-build-system)
1920 (home-page "https://metacpan.org/release/CPAN-Changes")
1921 (synopsis "Read and write @file{Changes} files")
1922 (description
1923 "@code{CPAN::Changes} helps users programmatically read and write
1924 @file{Changes} files that conform to a common specification.")
1925 (license perl-license)))
1926
1927 (define-public perl-cpan-distnameinfo
1928 (package
1929 (name "perl-cpan-distnameinfo")
1930 (version "0.12")
1931 (source
1932 (origin
1933 (method url-fetch)
1934 (uri (string-append
1935 "mirror://cpan/authors/id/G/GB/GBARR/CPAN-DistnameInfo-"
1936 version
1937 ".tar.gz"))
1938 (sha256
1939 (base32
1940 "0d94kx596w7k328cvq4y96z1gz12hdhn3z1mklkbrb7fyzlzn91g"))))
1941 (build-system perl-build-system)
1942 (home-page "https://metacpan.org/release/CPAN-DistnameInfo")
1943 (synopsis "Extract the name and version from a distribution filename")
1944 (description
1945 "@code{CPAN::DistnameInfo} uses heuristics to extract the distribution
1946 name and version from filenames.")
1947 (license perl-license)))
1948
1949 (define-public perl-cpan-meta-check
1950 (package
1951 (name "perl-cpan-meta-check")
1952 (version "0.014")
1953 (source
1954 (origin
1955 (method url-fetch)
1956 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1957 "CPAN-Meta-Check-" version ".tar.gz"))
1958 (sha256
1959 (base32
1960 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
1961 (build-system perl-build-system)
1962 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1963 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1964 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
1965 (synopsis "Verify requirements in a CPAN::Meta object")
1966 (description "This module verifies if requirements described in a
1967 CPAN::Meta object are present.")
1968 (license (package-license perl))))
1969
1970 (define-public perl-cpanel-json-xs
1971 (package
1972 (name "perl-cpanel-json-xs")
1973 (version "4.18")
1974 (source
1975 (origin
1976 (method url-fetch)
1977 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1978 "Cpanel-JSON-XS-" version ".tar.gz"))
1979 (sha256
1980 (base32 "1dnnf6bjz0fi9hk8gzmsklmh5y0z137vk62k3d7s88q30maf3rk3"))))
1981 (build-system perl-build-system)
1982 (propagated-inputs
1983 `(("perl-common-sense" ,perl-common-sense)))
1984 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
1985 (synopsis "JSON::XS for Cpanel")
1986 (description "This module converts Perl data structures to JSON and vice
1987 versa.")
1988 (license (package-license perl))))
1989
1990 (define-public perl-crypt-cbc
1991 (package
1992 (name "perl-crypt-cbc")
1993 (version "2.33")
1994 (source
1995 (origin
1996 (method url-fetch)
1997 (uri (string-append
1998 "mirror://cpan/authors/id/L/LD/LDS/Crypt-CBC-"
1999 version ".tar.gz"))
2000 (sha256
2001 (base32
2002 "0ig698lmpjz7fslnznxm0609lvlnvf4f3s370082nzycnqhxww3a"))))
2003 (build-system perl-build-system)
2004 (native-inputs
2005 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)))
2006 (home-page "https://metacpan.org/release/Crypt-CBC")
2007 (synopsis "Encrypt Data with Cipher Block Chaining Mode")
2008 (description "@code{Crypt::CBC} is a Perl-only implementation of
2009 the cryptographic Cipher Block Chaining (CBC) mode. In combination
2010 with a block cipher such as @code{Crypt::Rijndael} you can encrypt and
2011 decrypt messages of arbitrarily long length. The encrypted messages
2012 are compatible with the encryption format used by SSLeay.")
2013 (license perl-license)))
2014
2015 (define-public perl-crypt-des
2016 (package
2017 (name "perl-crypt-des")
2018 (version "2.07")
2019 (source
2020 (origin
2021 (method url-fetch)
2022 (uri (string-append
2023 "mirror://cpan/authors/id/D/DP/DPARIS/Crypt-DES-"
2024 version ".tar.gz"))
2025 (sha256
2026 (base32
2027 "1rypxlhpd1jc0c327aghgl9y6ls47drmpvn0a40b4k3vhfsypc9d"))))
2028 (build-system perl-build-system)
2029 (native-inputs
2030 `(("perl-crypt-cbc" ,perl-crypt-cbc)))
2031 (home-page "https://metacpan.org/release/Crypt-DES")
2032 (synopsis "DES encryption module")
2033 (description "@code{Crypt::DES} is an XS-based implementation of
2034 the DES cryptography algorithm. The module implements the
2035 @code{Crypt::CBC} interface which has blocksize, keysize, encrypt and
2036 decrypt functions.")
2037 (license bsd-3)))
2038
2039 (define-public perl-crypt-eksblowfish
2040 (package
2041 (name "perl-crypt-eksblowfish")
2042 (version "0.009")
2043 (source
2044 (origin
2045 (method url-fetch)
2046 (uri (string-append
2047 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Crypt-Eksblowfish-"
2048 version ".tar.gz"))
2049 (sha256
2050 (base32
2051 "0k01aw3qb2s4m1w4dqsc9cycyry1zg3wabdym4vp4421b1ni5irw"))))
2052 (build-system perl-build-system)
2053 (native-inputs
2054 `(("perl-module-build" ,perl-module-build)
2055 ("perl-test-pod" ,perl-test-pod)
2056 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2057 (propagated-inputs
2058 `(("perl-class-mix" ,perl-class-mix)))
2059 (home-page "https://metacpan.org/release/Crypt-Eksblowfish")
2060 (synopsis "The Eksblowfish block cipher")
2061 (description "Eksblowfish is a variant of the Blowfish cipher,
2062 modified to make the key setup very expensive. This doesn't make it
2063 significantly cryptographically stronger but is intended to hinder
2064 brute-force attacks. Eksblowfish is a parameterised (family-keyed)
2065 cipher. It takes a cost parameter that controls how expensive the key
2066 scheduling is. It also takes a family key, known as the \"salt\".
2067 Cost and salt parameters together define a cipher family. Within each
2068 family, the key determines the encryption function. This distribution
2069 also includes an implementation of @code{bcrypt}, the Unix crypt()
2070 password hashing algorithm based on Eksblowfish.")
2071 (license perl-license)))
2072
2073 (define-public perl-crypt-mysql
2074 (package
2075 (name "perl-crypt-mysql")
2076 (version "0.04")
2077 (source
2078 (origin
2079 (method url-fetch)
2080 (uri (string-append
2081 "mirror://cpan/authors/id/I/IK/IKEBE/Crypt-MySQL-"
2082 version ".tar.gz"))
2083 (sha256
2084 (base32
2085 "1qyx6ha13r0rh80ldv5wy2bq2pa74igwh8817xlapsfgxymdzswk"))))
2086 (build-system perl-build-system)
2087 (native-inputs
2088 `(("perl-module-build" ,perl-module-build)
2089 ("perl-dbd-mysql" ,perl-dbd-mysql)))
2090 (propagated-inputs
2091 `(("perl-digest-sha1" ,perl-digest-sha1)))
2092 (home-page "https://metacpan.org/release/Crypt-MySQL")
2093 (synopsis "Emulate the MySQL PASSWORD() function")
2094 (description "@code{Crypt::MySQL} emulates the MySQL PASSWORD()
2095 function. The module does not depend on an interface to the MySQL
2096 database server. This enables the comparison of encrypted passwords
2097 without the need for a real MySQL environment.")
2098 (license perl-license)))
2099
2100 (define-public perl-crypt-passwdmd5
2101 (package
2102 (name "perl-crypt-passwdmd5")
2103 (version "1.40")
2104 (source
2105 (origin
2106 (method url-fetch)
2107 (uri (string-append
2108 "mirror://cpan/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-"
2109 version ".tgz"))
2110 (sha256
2111 (base32
2112 "0j0r74f18nk63phddzqbf7wqma2ci4p4bxvrwrxsy0aklbp6lzdp"))))
2113 (build-system perl-build-system)
2114 (native-inputs
2115 `(("perl-module-build" ,perl-module-build)))
2116 (home-page "https://metacpan.org/release/Crypt-PasswdMD5")
2117 (synopsis "Interoperable MD5-based crypt() functions")
2118 (description "@code{Crypt::PasswdMD5} provides various
2119 crypt()-compatible interfaces to the MD5-based crypt() function found
2120 in various *nixes. It is based on the implementation found on FreeBSD
2121 2.2.[56]-RELEASE.")
2122 (license perl-license)))
2123
2124 (define-public perl-crypt-randpasswd
2125 (package
2126 (name "perl-crypt-randpasswd")
2127 (version "0.06")
2128 (source
2129 (origin
2130 (method url-fetch)
2131 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2132 "Crypt-RandPasswd-" version ".tar.gz"))
2133 (sha256
2134 (base32
2135 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
2136 (build-system perl-build-system)
2137 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
2138 (synopsis "Random password generator")
2139 (description "Crypt::RandPasswd provides three functions that can be used
2140 to generate random passwords, constructed from words, letters, or characters.
2141 This code is a Perl implementation of the Automated Password Generator
2142 standard, like the program described in \"A Random Word Generator For
2143 Pronounceable Passwords\". This code is a re-engineering of the program
2144 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
2145 Password Generator\".")
2146 (license (package-license perl))))
2147
2148 (define-public perl-crypt-rijndael
2149 (package
2150 (name "perl-crypt-rijndael")
2151 (version "1.14")
2152 (source
2153 (origin
2154 (method url-fetch)
2155 (uri (string-append
2156 "mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-"
2157 version ".tar.gz"))
2158 (sha256
2159 (base32
2160 "03l5nwq97a8q9na4dpd4m3r7vrwpranx225vw8xm40w7zvgw6lb4"))))
2161 (build-system perl-build-system)
2162 (home-page "https://metacpan.org/release/Crypt-Rijndael")
2163 (synopsis "Crypt::CBC compliant Rijndael encryption module")
2164 (description "This module implements the Rijndael cipher which has
2165 been selected as the Advanced Encryption Standard. The keysize for
2166 Rijndael is 32 bytes. The blocksize is 16 bytes (128 bits). The
2167 supported encryption modes are:
2168
2169 @itemize
2170 @item @code{MODE_CBC}---Cipher Block Chaining
2171 @item @code{MODE_CFB}---Cipher feedback
2172 @item @code{MODE_CTR}---Counter mode
2173 @item @code{MODE_ECB}---Electronic cookbook mode
2174 @item @code{MODE_OFB}---Output feedback
2175 @end itemize")
2176 (license gpl3)))
2177
2178 (define-public perl-crypt-rc4
2179 (package
2180 (name "perl-crypt-rc4")
2181 (version "2.02")
2182 (source
2183 (origin
2184 (method url-fetch)
2185 (uri (string-append
2186 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
2187 version
2188 ".tar.gz"))
2189 (sha256
2190 (base32
2191 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
2192 (build-system perl-build-system)
2193 (home-page "https://metacpan.org/release//Crypt-RC4")
2194 (synopsis "Perl implementation of the RC4 encryption algorithm")
2195 (description "A pure Perl implementation of the RC4 algorithm.")
2196 (license (package-license perl))))
2197
2198 (define-public perl-crypt-unixcrypt_xs
2199 (package
2200 (name "perl-crypt-unixcrypt_xs")
2201 (version "0.11")
2202 (source
2203 (origin
2204 (method url-fetch)
2205 (uri (string-append
2206 "mirror://cpan/authors/id/B/BO/BORISZ/Crypt-UnixCrypt_XS-"
2207 version ".tar.gz"))
2208 (sha256
2209 (base32
2210 "1ajg3x6kwxy4x9p3nw1j36qjxpjvdpi9wkca5gfd86y9q8939sv2"))))
2211 (build-system perl-build-system)
2212 (home-page "https://metacpan.org/release/Crypt-UnixCrypt_XS")
2213 (synopsis "XS interface for a portable traditional crypt function")
2214 (description "@code{Crypt::UnixCrypt_XS} implements the DES-based
2215 Unix @code{crypt} function. For those who need to construct
2216 non-standard variants of @code{crypt}, the various building blocks
2217 used in @code{crypt} are also supplied separately.")
2218 ;; Files in the 'fcrypt' directory are covered by a BSD licence.
2219 (license (list perl-license bsd-3))))
2220
2221 (define-public perl-cwd-guard
2222 (package
2223 (name "perl-cwd-guard")
2224 (version "0.05")
2225 (source (origin
2226 (method url-fetch)
2227 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
2228 "Cwd-Guard-" version ".tar.gz"))
2229 (sha256
2230 (base32
2231 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
2232 (build-system perl-build-system)
2233 (native-inputs
2234 `(("perl-module-build" ,perl-module-build)
2235 ("perl-test-requires" ,perl-test-requires)))
2236 (home-page "https://metacpan.org/release/Cwd-Guard")
2237 (synopsis "Temporarily change working directory")
2238 (description
2239 "@code{Cwd::Guard} changes the current directory using a limited scope.
2240 It returns to the previous working directory when the object is destroyed.")
2241 (license (package-license perl))))
2242
2243 (define-public perl-czplib
2244 (package
2245 (name "perl-czplib")
2246 (version "1.0.5")
2247 (source
2248 (origin
2249 (method url-fetch)
2250 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
2251 version ".tgz"))
2252 (sha256
2253 (base32
2254 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
2255 (modules '((guix build utils)))
2256 (snippet
2257 '(begin
2258 ;; Remove .git directory
2259 (delete-file-recursively ".git")
2260 #t))))
2261 (build-system perl-build-system)
2262 (arguments
2263 `(#:phases
2264 (modify-phases %standard-phases
2265 (delete 'configure)
2266 (delete 'build)
2267 (replace
2268 'install
2269 (lambda* (#:key outputs #:allow-other-keys)
2270 (copy-recursively "."
2271 (string-append (assoc-ref outputs "out")
2272 "/lib/perl5/site_perl/"
2273 ,(package-version perl)))
2274 #t)))))
2275 (home-page "https://sourceforge.net/projects/czplib/")
2276 (synopsis "Library for genomic analysis")
2277 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
2278 functions and data structures for processing and analysing genomic and
2279 bioinformatics data.")
2280 (license gpl3+)))
2281
2282 (define-public perl-data
2283 (package
2284 (name "perl-data")
2285 (version "0.002009")
2286 (source
2287 (origin
2288 (method url-fetch)
2289 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
2290 "Data-Perl-" version ".tar.gz"))
2291 (sha256
2292 (base32
2293 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2294 (build-system perl-build-system)
2295 (native-inputs
2296 `(("perl-test-deep" ,perl-test-deep)
2297 ("perl-test-output" ,perl-test-output)
2298 ("perl-test-fatal" ,perl-test-fatal)))
2299 (inputs
2300 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
2301 ("perl-list-moreutils" ,perl-list-moreutils)
2302 ("perl-module-runtime" ,perl-module-runtime)
2303 ("perl-role-tiny" ,perl-role-tiny)
2304 ("perl-strictures" ,perl-strictures)))
2305 (home-page "https://metacpan.org/release/Data-Perl")
2306 (synopsis "Base classes wrapping fundamental Perl data types")
2307 (description "Collection of classes that wrap fundamental data types that
2308 exist in Perl. These classes and methods as they exist today are an attempt
2309 to mirror functionality provided by Moose's Native Traits. One important
2310 thing to note is all classes currently do no validation on constructor
2311 input.")
2312 (license (package-license perl))))
2313
2314 (define-public perl-data-compare
2315 (package
2316 (name "perl-data-compare")
2317 (version "1.27")
2318 (source
2319 (origin
2320 (method url-fetch)
2321 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
2322 "Data-Compare-" version ".tar.gz"))
2323 (sha256
2324 (base32 "1gg8rqbv3x6a1lrpabv6vnlab53zxmpwz2ygad9fcx4gygqj12l1"))))
2325 (build-system perl-build-system)
2326 (propagated-inputs
2327 `(("perl-clone" ,perl-clone)
2328 ("perl-file-find-rule" ,perl-file-find-rule)))
2329 (home-page "https://metacpan.org/release/Data-Compare")
2330 (synopsis "Compare Perl data structures")
2331 (description "This module compares arbitrary data structures to see if
2332 they are copies of each other.")
2333 (license (package-license perl))))
2334
2335 (define-public perl-data-entropy
2336 (package
2337 (name "perl-data-entropy")
2338 (version "0.007")
2339 (source
2340 (origin
2341 (method url-fetch)
2342 (uri (string-append
2343 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Entropy-"
2344 version ".tar.gz"))
2345 (sha256
2346 (base32
2347 "1r176jjzir2zg5kidx85f7vzi6jsw7ci9vd4kvbr9183lfhw8496"))))
2348 (build-system perl-build-system)
2349 (native-inputs
2350 `(("perl-module-build" ,perl-module-build)
2351 ("perl-test-pod" ,perl-test-pod)
2352 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2353 (propagated-inputs
2354 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)
2355 ("perl-data-float" ,perl-data-float)
2356 ("perl-http-lite" ,perl-http-lite)
2357 ("perl-params-classify" ,perl-params-classify)))
2358 (home-page "https://metacpan.org/release/Data-Entropy")
2359 (synopsis "Entropy (randomness) management")
2360 (description "@code{Data::Entropy} provides modules relating to
2361 the generation and use of entropy. The Data::Entropy::Source class
2362 manages the entropy coming from a particular source. This class acts
2363 as a layer over a raw entropy source, which may be a normal I/O handle
2364 or a special-purpose class. The Data::Entropy::RawSource::* classes
2365 provide fundamental sources of entropy. The sources specially
2366 supported are an OS-supplied entropy collector, downloads from servers
2367 on the Internet, and cryptographic fake entropy. The
2368 Data::Entropy::Algorithms module contains a collection of fundamental
2369 algorithms that use entropy. There are random number generators and
2370 functions to shuffle arrays.")
2371 (license perl-license)))
2372
2373 (define-public perl-data-integer
2374 (package
2375 (name "perl-data-integer")
2376 (version "0.006")
2377 (source
2378 (origin
2379 (method url-fetch)
2380 (uri (string-append
2381 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Integer-"
2382 version ".tar.gz"))
2383 (sha256
2384 (base32
2385 "0m53zxhx9sn49yqh7azlpyy9m65g54v8cd2ha98y77337gg7xdv3"))))
2386 (build-system perl-build-system)
2387 (native-inputs
2388 `(("perl-module-build" ,perl-module-build)
2389 ("perl-test-pod" ,perl-test-pod)
2390 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2391 (home-page "https://metacpan.org/release/Data-Integer")
2392 (synopsis "Details of the native integer data type")
2393 (description "This module is about the native integer numerical
2394 data type. A native integer is one of the types of datum that can
2395 appear in the numeric part of a Perl scalar. This module supplies
2396 constants describing the native integer type. Both signed and
2397 unsigned representations are handled.")
2398 (license perl-license)))
2399
2400 (define-public perl-data-uniqid
2401 (package
2402 (name "perl-data-uniqid")
2403 (version "0.12")
2404 (source
2405 (origin
2406 (method url-fetch)
2407 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
2408 version ".tar.gz"))
2409 (sha256
2410 (base32
2411 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
2412 (build-system perl-build-system)
2413 (home-page "https://metacpan.org/release/Data-Uniqid")
2414 (synopsis "Perl extension for generating unique identifiers")
2415 (description "@code{Data::Uniqid} provides three simple routines for
2416 generating unique ids. These ids are coded with a Base62 system to make them
2417 short and handy (e.g. to use it as part of a URL).")
2418 (license (package-license perl))))
2419
2420 (define-public perl-data-dump
2421 (package
2422 (name "perl-data-dump")
2423 (version "1.23")
2424 (source
2425 (origin
2426 (method url-fetch)
2427 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2428 "Data-Dump-" version ".tar.gz"))
2429 (sha256
2430 (base32
2431 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
2432 (build-system perl-build-system)
2433 (home-page "https://metacpan.org/release/Data-Dump")
2434 (synopsis "Pretty printing of data structures")
2435 (description "This module provide functions that takes a list of values as
2436 their argument and produces a string as its result. The string contains Perl
2437 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
2438 (license (package-license perl))))
2439
2440 (define-public perl-data-dumper
2441 (package
2442 (name "perl-data-dumper")
2443 (version "2.173")
2444 (source
2445 (origin
2446 (method url-fetch)
2447 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
2448 "Data-Dumper-" version ".tar.gz"))
2449 (sha256
2450 (base32
2451 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
2452 (build-system perl-build-system)
2453 (home-page "https://metacpan.org/release/Data-Dumper")
2454 (synopsis "Convert data structures to strings")
2455 (description "Given a list of scalars or reference variables,
2456 @code{Data::Dumper} writes out their contents in Perl syntax. The references
2457 can also be objects. The content of each variable is output in a single Perl
2458 statement. It handles self-referential structures correctly.")
2459 (license perl-license)))
2460
2461 (define-public perl-data-dumper-concise
2462 (package
2463 (name "perl-data-dumper-concise")
2464 (version "2.023")
2465 (source
2466 (origin
2467 (method url-fetch)
2468 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2469 "Data-Dumper-Concise-" version ".tar.gz"))
2470 (sha256
2471 (base32
2472 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
2473 (build-system perl-build-system)
2474 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
2475 (synopsis "Concise data dumper")
2476 (description "Data::Dumper::Concise provides a dumper with Less
2477 indentation and newlines plus sub deparsing.")
2478 (license (package-license perl))))
2479
2480 (define-public perl-data-float
2481 (package
2482 (name "perl-data-float")
2483 (version "0.013")
2484 (source
2485 (origin
2486 (method url-fetch)
2487 (uri (string-append
2488 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Float-"
2489 version ".tar.gz"))
2490 (sha256
2491 (base32
2492 "12ji4yf3nc965rqqgfhr96w7irpm6n1g15nivfxvhc49hlym5cg2"))))
2493 (build-system perl-build-system)
2494 (native-inputs
2495 `(("perl-module-build" ,perl-module-build)
2496 ("perl-test-pod" ,perl-test-pod)
2497 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2498 (home-page "https://metacpan.org/release/Data-Float")
2499 (synopsis "Details of the floating point data type")
2500 (description "@code{Data::Float} is about the native floating
2501 point numerical data type. A floating point number is one of the
2502 types of datum that can appear in the numeric part of a Perl scalar.
2503 This module supplies constants describing the native floating point
2504 type, classification functions and functions to manipulate floating
2505 point values at a low level.")
2506 (license perl-license)))
2507
2508 (define-public perl-data-optlist
2509 (package
2510 (name "perl-data-optlist")
2511 (version "0.110")
2512 (source
2513 (origin
2514 (method url-fetch)
2515 (uri (string-append
2516 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
2517 version ".tar.gz"))
2518 (sha256
2519 (base32
2520 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
2521 (build-system perl-build-system)
2522 (propagated-inputs
2523 `(("perl-sub-install" ,perl-sub-install)
2524 ("perl-params-util" ,perl-params-util)))
2525 (home-page "https://metacpan.org/release/Data-OptList")
2526 (synopsis "Parse and validate simple name/value option pairs")
2527 (description
2528 "Data::OptList provides a simple syntax for name/value option pairs.")
2529 (license (package-license perl))))
2530
2531 (define-public perl-data-page
2532 (package
2533 (name "perl-data-page")
2534 (version "2.03")
2535 (source
2536 (origin
2537 (method url-fetch)
2538 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2539 "Data-Page-" version ".tar.gz"))
2540 (sha256
2541 (base32 "12rxrr2b11qjk0c437cisw2kfqkafw1awcng09cv6yhzglb55yif"))))
2542 (build-system perl-build-system)
2543 (native-inputs
2544 `(("perl-module-build" ,perl-module-build)
2545 ("perl-test-exception" ,perl-test-exception)))
2546 (propagated-inputs
2547 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
2548 (home-page "https://metacpan.org/release/Data-Page")
2549 (synopsis "Help when paging through sets of results")
2550 (description "When searching through large amounts of data, it is often
2551 the case that a result set is returned that is larger than we want to display
2552 on one page. This results in wanting to page through various pages of data.
2553 The maths behind this is unfortunately fiddly, hence this module.")
2554 (license (package-license perl))))
2555
2556 (define-public perl-data-perl
2557 (package
2558 (name "perl-data-perl")
2559 (version "0.002009")
2560 (source
2561 (origin
2562 (method url-fetch)
2563 (uri (string-append
2564 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
2565 version
2566 ".tar.gz"))
2567 (sha256
2568 (base32
2569 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2570 (build-system perl-build-system)
2571 (native-inputs
2572 `(("perl-test-deep" ,perl-test-deep)
2573 ("perl-test-fatal" ,perl-test-fatal)
2574 ("perl-test-output" ,perl-test-output)))
2575 (inputs
2576 `(("perl-class-method-modifiers"
2577 ,perl-class-method-modifiers)
2578 ("perl-module-runtime" ,perl-module-runtime)
2579 ("perl-role-tiny" ,perl-role-tiny)
2580 ("perl-strictures" ,perl-strictures)))
2581 (propagated-inputs
2582 `(("perl-list-moreutils" ,perl-list-moreutils)))
2583 (home-page
2584 "https://metacpan.org/release/Data-Perl")
2585 (synopsis "Base classes wrapping fundamental Perl data types")
2586 (description
2587 "@code{Data::Perl} is a container class for the following classes:
2588 @itemize
2589 @item @code{Data::Perl::Collection::Hash}
2590 @item @code{Data::Perl::Collection::Array}
2591 @item @code{Data::Perl::String}
2592 @item @code{Data::Perl::Number}
2593 @item @code{Data::Perl::Counter}
2594 @item @code{Data::Perl::Bool}
2595 @item @code{Data::Perl::Code}
2596 @end itemize")
2597 (license perl-license)))
2598
2599 (define-public perl-data-printer
2600 (package
2601 (name "perl-data-printer")
2602 (version "0.40")
2603 (source
2604 (origin
2605 (method url-fetch)
2606 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
2607 version ".tar.gz"))
2608 (sha256
2609 (base32
2610 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
2611 (build-system perl-build-system)
2612 (propagated-inputs
2613 `(("perl-clone-pp" ,perl-clone-pp)
2614 ("perl-file-homedir" ,perl-file-homedir)
2615 ("perl-package-stash" ,perl-package-stash)
2616 ("perl-sort-naturally" ,perl-sort-naturally)))
2617 (home-page "https://metacpan.org/release/Data-Printer")
2618 (synopsis "Colored pretty-print of Perl data structures and objects")
2619 (description "Display Perl variables and objects on screen, properly
2620 formatted (to be inspected by a human).")
2621 (license (package-license perl))))
2622
2623 (define-public perl-data-record
2624 (package
2625 (name "perl-data-record")
2626 (version "0.02")
2627 (source
2628 (origin
2629 (method url-fetch)
2630 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
2631 "Data-Record-" version ".tar.gz"))
2632 (sha256
2633 (base32
2634 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
2635 (build-system perl-build-system)
2636 (native-inputs
2637 `(("perl-test-exception" ,perl-test-exception)
2638 ("perl-module-build" ,perl-module-build)))
2639 (propagated-inputs
2640 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
2641 (home-page "https://metacpan.org/release/Data-Record")
2642 (synopsis "Conditionally split data into records")
2643 (description "This Perl module allows you to split data into records by
2644 not only specifying what you wish to split the data on, but also by specifying
2645 an \"unless\" regular expression. If the text in question matches the
2646 \"unless\" regex, it will not be split there. This allows us to do things
2647 like split on newlines unless newlines are embedded in quotes.")
2648 (license (package-license perl))))
2649
2650 (define-public perl-data-section
2651 (package
2652 (name "perl-data-section")
2653 (version "0.200007")
2654 (source
2655 (origin
2656 (method url-fetch)
2657 (uri (string-append
2658 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
2659 version
2660 ".tar.gz"))
2661 (sha256
2662 (base32
2663 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
2664 (build-system perl-build-system)
2665 (native-inputs
2666 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
2667 (propagated-inputs
2668 `(("perl-mro-compat" ,perl-mro-compat)
2669 ("perl-sub-exporter" ,perl-sub-exporter)))
2670 (home-page "https://metacpan.org/release/Data-Section")
2671 (synopsis "Read multiple hunks of data out of your DATA section")
2672 (description "This package provides a Perl library to read multiple hunks
2673 of data out of your DATA section.")
2674 (license (package-license perl))))
2675
2676 (define-public perl-data-section-simple
2677 (package
2678 (name "perl-data-section-simple")
2679 (version "0.07")
2680 (source
2681 (origin
2682 (method url-fetch)
2683 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2684 "Data-Section-Simple-" version ".tar.gz"))
2685 (sha256
2686 (base32 "1jx9g5sxcw0i2zkm2z895k422i49kpx0idnnvvvs36lhvgzkac0b"))))
2687 (build-system perl-build-system)
2688 (native-inputs
2689 `(("perl-test-requires" ,perl-test-requires)))
2690 (home-page "https://metacpan.org/release/Data-Section-Simple")
2691 (synopsis "Read data from __DATA__")
2692 (description
2693 "Data::Section::Simple is a simple module to extract data from __DATA__
2694 section of the file.")
2695 (license perl-license)))
2696
2697 (define-public perl-data-stag
2698 (package
2699 (name "perl-data-stag")
2700 (version "0.14")
2701 (source
2702 (origin
2703 (method url-fetch)
2704 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
2705 "Data-Stag-" version ".tar.gz"))
2706 (sha256
2707 (base32
2708 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
2709 (build-system perl-build-system)
2710 (propagated-inputs
2711 `(("perl-io-string" ,perl-io-string)))
2712 (home-page "https://metacpan.org/release/Data-Stag")
2713 (synopsis "Structured tags datastructures")
2714 (description
2715 "This module is for manipulating data as hierarchical tag/value
2716 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2717 be represented as nested arrays, which have the advantage of being native to
2718 Perl.")
2719 (license (package-license perl))))
2720
2721 (define-public perl-data-stream-bulk
2722 (package
2723 (name "perl-data-stream-bulk")
2724 (version "0.11")
2725 (source
2726 (origin
2727 (method url-fetch)
2728 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2729 "Data-Stream-Bulk-" version ".tar.gz"))
2730 (sha256
2731 (base32
2732 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2733 (build-system perl-build-system)
2734 (native-inputs
2735 `(("perl-test-requires" ,perl-test-requires)))
2736 (propagated-inputs
2737 `(("perl-moose" ,perl-moose)
2738 ("perl-namespace-clean" ,perl-namespace-clean)
2739 ("perl-path-class" ,perl-path-class)
2740 ("perl-sub-exporter" ,perl-sub-exporter)))
2741 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2742 (synopsis "N at a time iteration API")
2743 (description "This module tries to find middle ground between one at a
2744 time and all at once processing of data sets. The purpose of this module is
2745 to avoid the overhead of implementing an iterative api when this isn't
2746 necessary, without breaking forward compatibility in case that becomes
2747 necessary later on.")
2748 (license (package-license perl))))
2749
2750 (define-public perl-data-tumbler
2751 (package
2752 (name "perl-data-tumbler")
2753 (version "0.010")
2754 (source
2755 (origin
2756 (method url-fetch)
2757 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2758 "Data-Tumbler-" version ".tar.gz"))
2759 (sha256
2760 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2761 (build-system perl-build-system)
2762 (native-inputs
2763 `(("perl-test-most" ,perl-test-most)))
2764 (propagated-inputs
2765 `(("perl-file-homedir" ,perl-file-homedir)))
2766 (home-page "https://metacpan.org/release/Data-Tumbler")
2767 (synopsis "Dynamic generation of nested combinations of variants")
2768 (description "Data::Tumbler - Dynamic generation of nested combinations of
2769 variants.")
2770 (license (package-license perl))))
2771
2772 (define-public perl-data-visitor
2773 (package
2774 (name "perl-data-visitor")
2775 (version "0.30")
2776 (source
2777 (origin
2778 (method url-fetch)
2779 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2780 "Data-Visitor-" version ".tar.gz"))
2781 (sha256
2782 (base32
2783 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2784 (build-system perl-build-system)
2785 (native-inputs
2786 `(("perl-test-requires" ,perl-test-requires)))
2787 (propagated-inputs
2788 `(("perl-class-load" ,perl-class-load)
2789 ("perl-moose" ,perl-moose)
2790 ("perl-namespace-clean" ,perl-namespace-clean)
2791 ("perl-task-weaken" ,perl-task-weaken)
2792 ("perl-tie-toobject" ,perl-tie-toobject)))
2793 (home-page "https://metacpan.org/release/Data-Visitor")
2794 (synopsis "Visitor style traversal of Perl data structures")
2795 (description "This module is a simple visitor implementation for Perl
2796 values. It has a main dispatcher method, visit, which takes a single perl
2797 value and then calls the methods appropriate for that value. It can
2798 recursively map (cloning as necessary) or just traverse most structures, with
2799 support for per-object behavior, circular structures, visiting tied
2800 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2801 (license (package-license perl))))
2802
2803 (define-public perl-date-calc
2804 (package
2805 (name "perl-date-calc")
2806 (version "6.4")
2807 (source
2808 (origin
2809 (method url-fetch)
2810 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2811 "Date-Calc-" version ".tar.gz"))
2812 (sha256
2813 (base32
2814 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2815 (build-system perl-build-system)
2816 (propagated-inputs
2817 `(("perl-bit-vector" ,perl-bit-vector)
2818 ("perl-carp-clan" ,perl-carp-clan)))
2819 (home-page "https://metacpan.org/release/Date-Calc")
2820 (synopsis "Gregorian calendar date calculations")
2821 (description "This package consists of a Perl module for date calculations
2822 based on the Gregorian calendar, thereby complying with all relevant norms and
2823 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2824 applicable).")
2825 (license (package-license perl))))
2826
2827 (define-public perl-date-calc-xs
2828 (package
2829 (name "perl-date-calc-xs")
2830 (version "6.4")
2831 (source
2832 (origin
2833 (method url-fetch)
2834 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2835 "Date-Calc-XS-" version ".tar.gz"))
2836 (sha256
2837 (base32
2838 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2839 (build-system perl-build-system)
2840 (propagated-inputs
2841 `(("perl-bit-vector" ,perl-bit-vector)
2842 ("perl-carp-clan" ,perl-carp-clan)
2843 ("perl-date-calc" ,perl-date-calc)))
2844 (home-page "https://metacpan.org/release/Date-Calc-XS")
2845 (synopsis "XS wrapper for Date::Calc")
2846 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2847 Date::Calc.")
2848 (license (list (package-license perl) lgpl2.0+))))
2849
2850 (define-public perl-date-manip
2851 (package
2852 (name "perl-date-manip")
2853 (version "6.78")
2854 (source
2855 (origin
2856 (method url-fetch)
2857 (uri (string-append "mirror://cpan/authors/id/S/SB/SBECK/"
2858 "Date-Manip-" version ".tar.gz"))
2859 (sha256
2860 (base32 "1faxj6gafrqir9hvy9r8q57s93n57b412s04qycrks7r0520hdnb"))))
2861 (build-system perl-build-system)
2862 (arguments
2863 ;; Tests would require tzdata for timezone information, but tzdata is in
2864 ;; (gnu packages base) which would create a circular dependency. TODO:
2865 ;; Maybe put this package elsewhere so we can turn on tests.
2866 '(#:tests? #f))
2867 (home-page "https://metacpan.org/release/Date-Manip")
2868 (synopsis "Date manipulation routines")
2869 (description "Date::Manip is a series of modules for common date/time
2870 operations, such as comparing two times, determining a date a given amount of
2871 time from another, or parsing international times.")
2872 (license (package-license perl))))
2873
2874 (define-public perl-date-simple
2875 (package
2876 (name "perl-date-simple")
2877 (version "3.03")
2878 (source
2879 (origin
2880 (method url-fetch)
2881 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2882 "Date-Simple-" version ".tar.gz"))
2883 (sha256
2884 (base32
2885 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2886 (build-system perl-build-system)
2887 (home-page "https://metacpan.org/release/Date-Simple")
2888 (synopsis "Simple date handling")
2889 (description "Dates are complex enough without times and timezones. This
2890 module may be used to create simple date objects. It handles validation,
2891 interval arithmetic, and day-of-week calculation. It does not deal with
2892 hours, minutes, seconds, and time zones.")
2893 ;; Can be used with either license.
2894 (license (list (package-license perl) gpl2+))))
2895
2896 (define-public perl-datetime
2897 (package
2898 (name "perl-datetime")
2899 (version "1.52")
2900 (source
2901 (origin
2902 (method url-fetch)
2903 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2904 "DateTime-" version ".tar.gz"))
2905 (sha256
2906 (base32 "1z1xpifh2kpyw7rlc8ivg9rl0qmabjq979gjp0s9agdjf9hqp0k7"))))
2907 (build-system perl-build-system)
2908 (native-inputs
2909 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2910 ("perl-module-build" ,perl-module-build)
2911 ("perl-test-fatal" ,perl-test-fatal)
2912 ("perl-test-warnings" ,perl-test-warnings)))
2913 (propagated-inputs
2914 `(("perl-datetime-locale" ,perl-datetime-locale)
2915 ("perl-datetime-timezone" ,perl-datetime-timezone)
2916 ("perl-file-sharedir" ,perl-file-sharedir)
2917 ("perl-params-validate" ,perl-params-validate)
2918 ("perl-try-tiny" ,perl-try-tiny)))
2919 (home-page "https://metacpan.org/release/DateTime")
2920 (synopsis "Date and time object for Perl")
2921 (description "DateTime is a class for the representation of date/time
2922 combinations. It represents the Gregorian calendar, extended backwards in
2923 time before its creation (in 1582).")
2924 (license artistic2.0)))
2925
2926 (define-public perl-datetime-calendar-julian
2927 (package
2928 (name "perl-datetime-calendar-julian")
2929 (version "0.102")
2930 (source
2931 (origin
2932 (method url-fetch)
2933 (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/"
2934 "DateTime-Calendar-Julian-" version ".tar.gz"))
2935 (sha256
2936 (base32 "0j95dhma66spjyb04zi6rwy7l33hibnrx02mn0znd9m89aiq52s6"))))
2937 (build-system perl-build-system)
2938 ;; Only needed for tests
2939 (native-inputs
2940 `(("perl-datetime" ,perl-datetime)))
2941 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
2942 (synopsis "Dates in the Julian calendar")
2943 (description "This package is a companion module to @code{DateTime.pm}.
2944 It implements the Julian calendar. It supports everything that
2945 @code{DateTime.pm} supports and more: about one day per century more, to be
2946 precise.")
2947 (license (package-license perl))))
2948
2949 (define-public perl-datetime-set
2950 (package
2951 (name "perl-datetime-set")
2952 (version "0.3900")
2953 (source
2954 (origin
2955 (method url-fetch)
2956 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2957 "DateTime-Set-" version ".tar.gz"))
2958 (sha256
2959 (base32
2960 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
2961 (build-system perl-build-system)
2962 (native-inputs
2963 `(("perl-module-build" ,perl-module-build)))
2964 (propagated-inputs
2965 `(("perl-datetime" ,perl-datetime)
2966 ("perl-params-validate" ,perl-params-validate)
2967 ("perl-set-infinite" ,perl-set-infinite)))
2968 (home-page "https://metacpan.org/release/DateTime-Set")
2969 (synopsis "DateTime set objects")
2970 (description "The DateTime::Set module provides a date/time sets
2971 implementation. It allows, for example, the generation of groups of dates,
2972 like \"every wednesday\", and then find all the dates matching that pattern,
2973 within a time range.")
2974 (license (package-license perl))))
2975
2976 (define-public perl-datetime-event-ical
2977 (package
2978 (name "perl-datetime-event-ical")
2979 (version "0.13")
2980 (source
2981 (origin
2982 (method url-fetch)
2983 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
2984 "DateTime-Event-ICal-" version ".tar.gz"))
2985 (sha256
2986 (base32
2987 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
2988 (build-system perl-build-system)
2989 (propagated-inputs
2990 `(("perl-datetime" ,perl-datetime)
2991 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
2992 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
2993 (synopsis "DateTime rfc2445 recurrences")
2994 (description "This module provides convenience methods that let you easily
2995 create DateTime::Set objects for RFC 2445 style recurrences.")
2996 (license (package-license perl))))
2997
2998 (define-public perl-datetime-event-recurrence
2999 (package
3000 (name "perl-datetime-event-recurrence")
3001 (version "0.19")
3002 (source
3003 (origin
3004 (method url-fetch)
3005 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
3006 "DateTime-Event-Recurrence-" version ".tar.gz"))
3007 (sha256
3008 (base32
3009 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
3010 (build-system perl-build-system)
3011 (propagated-inputs
3012 `(("perl-datetime" ,perl-datetime)
3013 ("perl-datetime-set" ,perl-datetime-set)))
3014 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
3015 (synopsis "DateTime::Set extension for basic recurrences")
3016 (description "This module provides convenience methods that let you easily
3017 create DateTime::Set objects for various recurrences, such as \"once a month\"
3018 or \"every day\". You can also create more complicated recurrences, such as
3019 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
3020 (license (package-license perl))))
3021
3022 (define-public perl-datetime-format-builder
3023 (package
3024 (name "perl-datetime-format-builder")
3025 (version "0.82")
3026 (source
3027 (origin
3028 (method url-fetch)
3029 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3030 "DateTime-Format-Builder-" version ".tar.gz"))
3031 (sha256
3032 (base32
3033 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
3034 (build-system perl-build-system)
3035 (propagated-inputs
3036 `(("perl-class-factory-util" ,perl-class-factory-util)
3037 ("perl-datetime" ,perl-datetime)
3038 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
3039 ("perl-params-validate" ,perl-params-validate)))
3040 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
3041 (synopsis "Create DateTime parser classes and objects")
3042 (description "DateTime::Format::Builder creates DateTime parsers. Many
3043 string formats of dates and times are simple and just require a basic regular
3044 expression to extract the relevant information. Builder provides a simple way
3045 to do this without writing reams of structural code.")
3046 (license artistic2.0)))
3047
3048 (define-public perl-datetime-format-flexible
3049 (package
3050 (name "perl-datetime-format-flexible")
3051 (version "0.32")
3052 (source
3053 (origin
3054 (method url-fetch)
3055 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
3056 "DateTime-Format-Flexible-" version ".tar.gz"))
3057 (sha256
3058 (base32 "1vnq3a8bwhidcv3z9cvcmfiq2qa84hikr993ffr19fw7nbzbk9sh"))))
3059 (build-system perl-build-system)
3060 (native-inputs
3061 `(("perl-test-exception" ,perl-test-exception)
3062 ("perl-test-nowarnings" ,perl-test-nowarnings)
3063 ("perl-test-mocktime" ,perl-test-mocktime)))
3064 (propagated-inputs
3065 `(("perl-datetime" ,perl-datetime)
3066 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3067 ("perl-datetime-timezone" ,perl-datetime-timezone)
3068 ("perl-list-moreutils" ,perl-list-moreutils)
3069 ("perl-module-pluggable" ,perl-module-pluggable)))
3070 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
3071 (synopsis "Parse date and time strings")
3072 (description "DateTime::Format::Flexible attempts to take any string you
3073 give it and parse it into a DateTime object.")
3074 (license (package-license perl))))
3075
3076 (define-public perl-datetime-format-ical
3077 (package
3078 (name "perl-datetime-format-ical")
3079 (version "0.09")
3080 (source
3081 (origin
3082 (method url-fetch)
3083 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3084 "DateTime-Format-ICal-" version ".tar.gz"))
3085 (sha256
3086 (base32
3087 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
3088 (build-system perl-build-system)
3089 (native-inputs
3090 `(("perl-module-build" ,perl-module-build)))
3091 (propagated-inputs
3092 `(("perl-datetime" ,perl-datetime)
3093 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
3094 ("perl-datetime-set" ,perl-datetime-set)
3095 ("perl-datetime-timezone" ,perl-datetime-timezone)
3096 ("perl-params-validate" ,perl-params-validate)))
3097 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
3098 (synopsis "Parse and format iCal datetime and duration strings")
3099 (description "This module understands the ICal date/time and duration
3100 formats, as defined in RFC 2445. It can be used to parse these formats in
3101 order to create the appropriate objects.")
3102 (license (package-license perl))))
3103
3104 (define-public perl-datetime-format-iso8601
3105 (package
3106 (name "perl-datetime-format-iso8601")
3107 (version "0.08")
3108 (source
3109 (origin
3110 (method url-fetch)
3111 (uri (string-append
3112 "mirror://cpan/authors/id/J/JH/JHOBLITT/DateTime-Format-ISO8601-"
3113 version ".tar.gz"))
3114 (sha256
3115 (base32
3116 "1syccqd5jlwms8v78ksnf68xijzl97jky5vbwhnyhxi5gvgfx8xk"))))
3117 (build-system perl-build-system)
3118 (native-inputs
3119 `(("perl-module-build" ,perl-module-build)))
3120 (propagated-inputs
3121 `(("perl-datetime" ,perl-datetime)
3122 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3123 ("perl-file-find-rule" ,perl-file-find-rule)
3124 ("perl-test-distribution" ,perl-test-distribution)
3125 ("perl-test-pod" ,perl-test-pod)))
3126 (home-page "https://metacpan.org/release/DateTime-Format-ISO8601")
3127 (synopsis "Parse ISO8601 date and time formats")
3128 (description "@code{DateTime::Format::ISO8601} is a DateTime
3129 extension that parses almost all ISO8601 date and time formats.")
3130 (license perl-license)))
3131
3132 (define-public perl-datetime-format-natural
3133 (package
3134 (name "perl-datetime-format-natural")
3135 (version "1.06")
3136 (source
3137 (origin
3138 (method url-fetch)
3139 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
3140 "DateTime-Format-Natural-" version ".tar.gz"))
3141 (sha256
3142 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
3143 (build-system perl-build-system)
3144 (native-inputs
3145 `(("perl-module-build" ,perl-module-build)
3146 ("perl-module-util" ,perl-module-util)
3147 ("perl-test-mocktime" ,perl-test-mocktime)))
3148 (propagated-inputs
3149 `(("perl-boolean" ,perl-boolean)
3150 ("perl-clone" ,perl-clone)
3151 ("perl-date-calc" ,perl-date-calc)
3152 ("perl-date-calc-xs" ,perl-date-calc-xs)
3153 ("perl-datetime" ,perl-datetime)
3154 ("perl-datetime-timezone" ,perl-datetime-timezone)
3155 ("perl-list-moreutils" ,perl-list-moreutils)
3156 ("perl-params-validate" ,perl-params-validate)))
3157 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
3158 (synopsis "Machine-readable date/time with natural parsing")
3159 (description "DateTime::Format::Natural takes a string with a human
3160 readable date/time and creates a machine readable one by applying natural
3161 parsing logic.")
3162 (license (package-license perl))))
3163
3164 (define-public perl-datetime-format-strptime
3165 (package
3166 (name "perl-datetime-format-strptime")
3167 (version "1.77")
3168 (source
3169 (origin
3170 (method url-fetch)
3171 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3172 "DateTime-Format-Strptime-" version ".tar.gz"))
3173 (sha256
3174 (base32 "0jiy2yc9h9932ykb8x2l1j3ff8ms3p4426m947r5clygis1kr91g"))))
3175 (build-system perl-build-system)
3176 (propagated-inputs
3177 `(("perl-datetime" ,perl-datetime)
3178 ("perl-datetime-locale" ,perl-datetime-locale)
3179 ("perl-datetime-timezone" ,perl-datetime-timezone)
3180 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3181 ("perl-params-validate" ,perl-params-validate)
3182 ("perl-sub-name" ,perl-sub-name)
3183 ("perl-test-warnings" ,perl-test-warnings)))
3184 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
3185 (synopsis "Parse and format strp and strf time patterns")
3186 (description "This module implements most of `strptime(3)`, the POSIX
3187 function that is the reverse of `strftime(3)`, for `DateTime`. While
3188 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
3189 takes a string and a pattern and returns the `DateTime` object associated.")
3190 (license artistic2.0)))
3191
3192 (define-public perl-datetime-locale
3193 (package
3194 (name "perl-datetime-locale")
3195 (version "1.23")
3196 (source
3197 (origin
3198 (method url-fetch)
3199 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3200 "DateTime-Locale-" version ".tar.gz"))
3201 (sha256
3202 (base32
3203 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
3204 (build-system perl-build-system)
3205 (native-inputs
3206 `(("perl-file-sharedir" ,perl-file-sharedir)
3207 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
3208 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
3209 ("perl-test-warnings" ,perl-test-warnings)
3210 ("perl-test-requires" ,perl-test-requires)
3211 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3212 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
3213 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
3214 ("perl-module-build" ,perl-module-build)))
3215 (propagated-inputs
3216 `(("perl-list-moreutils" ,perl-list-moreutils)
3217 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
3218 (home-page "https://metacpan.org/release/DateTime-Locale")
3219 (synopsis "Localization support for DateTime.pm")
3220 (description "The DateTime::Locale modules provide localization data for
3221 the DateTime.pm class.")
3222 (license (package-license perl))))
3223
3224 (define-public perl-datetime-timezone
3225 (package
3226 (name "perl-datetime-timezone")
3227 (version "2.23")
3228 (source
3229 (origin
3230 (method url-fetch)
3231 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3232 "DateTime-TimeZone-" version ".tar.gz"))
3233 (sha256
3234 (base32
3235 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
3236 (build-system perl-build-system)
3237 (arguments
3238 '(#:phases
3239 (modify-phases %standard-phases
3240 (add-after 'unpack 'patch-tzdata
3241 (lambda* (#:key inputs #:allow-other-keys)
3242 (substitute* "lib/DateTime/TimeZone/Local/Unix.pm"
3243 (("our \\$ZoneinfoDir = '\\/usr\\/share\\/zoneinfo';")
3244 (string-append "our $ZoneinfoDir = '"
3245 (assoc-ref inputs "tzdata") "/share/zoneinfo"
3246 "';")))
3247 #t)))))
3248 (native-inputs
3249 `(("perl-test-fatal" ,perl-test-fatal)
3250 ("perl-test-requires" ,perl-test-requires)))
3251 (inputs
3252 `(("tzdata" ,tzdata)))
3253 (propagated-inputs
3254 `(("perl-class-singleton" ,perl-class-singleton)
3255 ("perl-list-allutils" ,perl-list-allutils)
3256 ("perl-module-runtime" ,perl-module-runtime)
3257 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3258 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
3259 ("perl-try-tiny" ,perl-try-tiny)))
3260 (home-page "https://metacpan.org/release/DateTime-TimeZone")
3261 (synopsis "Time zone object for Perl")
3262 (description "This class is the base class for all time zone objects. A
3263 time zone is represented internally as a set of observances, each of which
3264 describes the offset from GMT for a given time period. Note that without the
3265 DateTime module, this module does not do much. It's primary interface is
3266 through a DateTime object, and most users will not need to directly use
3267 DateTime::TimeZone methods.")
3268 (license (package-license perl))))
3269
3270 (define-public perl-datetimex-easy
3271 (package
3272 (name "perl-datetimex-easy")
3273 (version "0.089")
3274 (source
3275 (origin
3276 (method url-fetch)
3277 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
3278 "DateTimeX-Easy-" version ".tar.gz"))
3279 (sha256
3280 (base32
3281 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
3282 (build-system perl-build-system)
3283 (native-inputs
3284 `(("perl-test-most" ,perl-test-most)))
3285 (propagated-inputs
3286 `(("perl-datetime" ,perl-datetime)
3287 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
3288 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
3289 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
3290 ("perl-timedate" ,perl-timedate)))
3291 (home-page "https://metacpan.org/release/DateTimeX-Easy")
3292 (synopsis "Parse date/time strings")
3293 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
3294 to create DateTime objects, with some custom tweaks to smooth out the rough
3295 edges (mainly concerning timezone detection and selection).")
3296 (license (package-license perl))))
3297
3298 (define-public perl-datetime-format-mail
3299 (package
3300 (name "perl-datetime-format-mail")
3301 (version "0.403")
3302 (source (origin
3303 (method url-fetch)
3304 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
3305 "DateTime-Format-Mail-" version ".tar.gz"))
3306 (sha256
3307 (base32
3308 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
3309 (build-system perl-build-system)
3310 (inputs
3311 `(("perl-datetime" ,perl-datetime)
3312 ("perl-params-validate" ,perl-params-validate)))
3313 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
3314 (synopsis "Convert between DateTime and RFC2822/822 formats")
3315 (description "RFCs 2822 and 822 specify date formats to be used by email.
3316 This module parses and emits such dates.")
3317 (license (package-license perl))))
3318
3319 (define-public perl-datetime-format-w3cdtf
3320 (package
3321 (name "perl-datetime-format-w3cdtf")
3322 (version "0.07")
3323 (source (origin
3324 (method url-fetch)
3325 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
3326 "DateTime-Format-W3CDTF-" version ".tar.gz"))
3327 (sha256
3328 (base32
3329 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
3330 (build-system perl-build-system)
3331 (inputs
3332 `(("perl-datetime" ,perl-datetime)))
3333 (native-inputs
3334 `(("perl-test-pod" ,perl-test-pod)
3335 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3336 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
3337 (synopsis "Parse and format W3CDTF datetime strings")
3338 (description
3339 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
3340 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
3341 format of RSS 1.0. It can be used to parse these formats in order to create
3342 the appropriate objects.")
3343 (license (package-license perl))))
3344
3345 (define-public perl-devel-callchecker
3346 (package
3347 (name "perl-devel-callchecker")
3348 (version "0.008")
3349 (source
3350 (origin
3351 (method url-fetch)
3352 (uri (string-append
3353 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Devel-CallChecker-"
3354 version ".tar.gz"))
3355 (sha256
3356 (base32
3357 "1p0ij2k2i81zhl7064h9ghld1w5xy2zsbghkpdzm2hjryl5lwn2x"))))
3358 (build-system perl-build-system)
3359 (native-inputs
3360 `(("perl-module-build" ,perl-module-build)
3361 ("perl-test-pod" ,perl-test-pod)
3362 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3363 (propagated-inputs
3364 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
3365 ("perl-dynaloader-functions" ,perl-dynaloader-functions)))
3366 (home-page "https://metacpan.org/release/Devel-CallChecker")
3367 (synopsis "Custom op checking attached to subroutines")
3368 (description "This module makes some new features of the Perl
3369 5.14.0 C API available to XS modules running on older versions of
3370 Perl. The features are centred around the function
3371 @code{cv_set_call_checker}, which allows XS code to attach a magical
3372 annotation to a Perl subroutine, resulting in resolvable calls to that
3373 subroutine being mutated at compile time by arbitrary C code. This
3374 module makes @code{cv_set_call_checker} and several supporting
3375 functions available.")
3376 (license perl-license)))
3377
3378 (define-public perl-devel-caller
3379 (package
3380 (name "perl-devel-caller")
3381 (version "2.06")
3382 (source
3383 (origin
3384 (method url-fetch)
3385 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3386 "Devel-Caller-" version ".tar.gz"))
3387 (sha256
3388 (base32
3389 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
3390 (build-system perl-build-system)
3391 (propagated-inputs
3392 `(("perl-padwalker" ,perl-padwalker)))
3393 (home-page "https://metacpan.org/release/Devel-Caller")
3394 (synopsis "Meatier version of caller")
3395 (description "Devel::Caller provides meatier version of caller.")
3396 (license (package-license perl))))
3397
3398 (define-public perl-devel-checkbin
3399 (package
3400 (name "perl-devel-checkbin")
3401 (version "0.04")
3402 (source
3403 (origin
3404 (method url-fetch)
3405 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
3406 "Devel-CheckBin-" version ".tar.gz"))
3407 (sha256
3408 (base32
3409 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
3410 (build-system perl-build-system)
3411 (native-inputs `(("perl-module-build" ,perl-module-build)))
3412 (home-page "https://metacpan.org/release/Devel-CheckBin")
3413 (synopsis "Check that a command is available")
3414 (description "Devel::CheckBin is a perl module that checks whether a
3415 particular command is available.")
3416 (license (package-license perl))))
3417
3418 (define-public perl-devel-checklib
3419 (package
3420 (name "perl-devel-checklib")
3421 (version "1.14")
3422 (source
3423 (origin
3424 (method url-fetch)
3425 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
3426 version ".tar.gz"))
3427 (sha256
3428 (base32 "15621qh5gaan1sgmk9y9svl70nm8viw17x5h1kf0zknkk8lmw77j"))))
3429 (build-system perl-build-system)
3430 (native-inputs
3431 `(("perl-capture-tiny" ,perl-capture-tiny)
3432 ("perl-mock-config" ,perl-mock-config)))
3433 (home-page "https://metacpan.org/release/Devel-CheckLib")
3434 (synopsis "Check that a library is available")
3435 (description
3436 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
3437 C library and its headers are available. You can also check for the presence of
3438 particular functions in a library, or even that those functions return
3439 particular results.")
3440 (license perl-license)))
3441
3442 (define-public perl-devel-checkcompiler
3443 (package
3444 (name "perl-devel-checkcompiler")
3445 (version "0.07")
3446 (source (origin
3447 (method url-fetch)
3448 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
3449 "Devel-CheckCompiler-" version ".tar.gz"))
3450 (sha256
3451 (base32
3452 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
3453 (build-system perl-build-system)
3454 (native-inputs
3455 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
3456 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
3457 (synopsis "Check compiler availability")
3458 (description "@code{Devel::CheckCompiler} is a tiny module to check
3459 whether a compiler is available. It can test for a C99 compiler, or
3460 you can tell it to compile a C source file with optional linker flags.")
3461 (license (package-license perl))))
3462
3463 (define-public perl-devel-cycle
3464 (package
3465 (name "perl-devel-cycle")
3466 (version "1.12")
3467 (source
3468 (origin
3469 (method url-fetch)
3470 (uri (string-append
3471 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
3472 version
3473 ".tar.gz"))
3474 (sha256
3475 (base32
3476 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
3477 (build-system perl-build-system)
3478 (home-page
3479 "https://metacpan.org/release/Devel-Cycle")
3480 (synopsis "Find memory cycles in objects")
3481 (description
3482 "@code{Devel::Cycle} This is a tool for finding circular references in
3483 objects and other types of references. Because of Perl's reference-count
3484 based memory management, circular references will cause memory leaks.")
3485 (license perl-license)))
3486
3487 (define-public perl-devel-globaldestruction
3488 (package
3489 (name "perl-devel-globaldestruction")
3490 (version "0.14")
3491 (source
3492 (origin
3493 (method url-fetch)
3494 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3495 "Devel-GlobalDestruction-" version ".tar.gz"))
3496 (sha256
3497 (base32
3498 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
3499 (build-system perl-build-system)
3500 (propagated-inputs
3501 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
3502 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
3503 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
3504 (description "Devel::GlobalDestruction provides a function returning the
3505 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
3506 (license (package-license perl))))
3507
3508 (define-public perl-devel-hide
3509 (package
3510 (name "perl-devel-hide")
3511 (version "0.0010")
3512 (source
3513 (origin
3514 (method url-fetch)
3515 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
3516 version ".tar.gz"))
3517 (sha256
3518 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
3519 (build-system perl-build-system)
3520 (propagated-inputs
3521 `(("perl-test-pod" ,perl-test-pod)
3522 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3523 (home-page "https://metacpan.org/release/Devel-Hide")
3524 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
3525 (description "Given a list of Perl modules/filenames, this module makes
3526 @code{require} and @code{use} statements fail (no matter whether the specified
3527 files/modules are installed or not).")
3528 (license (package-license perl))))
3529
3530 (define-public perl-devel-leak
3531 (package
3532 (name "perl-devel-leak")
3533 (version "0.03")
3534 (source
3535 (origin
3536 (method url-fetch)
3537 (uri (string-append "mirror://cpan/authors/id/N/NI/NI-S/"
3538 "Devel-Leak-" version ".tar.gz"))
3539 (sha256
3540 (base32
3541 "0lkj2xwc3lhxv7scl43r8kfmls4am0b98sqf5vmf7d72257w6hkg"))))
3542 (build-system perl-build-system)
3543 (home-page "https://metacpan.org/release/Devel-Leak")
3544 (synopsis "Utility for looking for perl objects that are not reclaimed")
3545 (description
3546 "This module provides a basic way to discover if a piece of perl code is
3547 allocating perl data and not releasing them again.")
3548 (license perl-license)))
3549
3550 (define-public perl-devel-lexalias
3551 (package
3552 (name "perl-devel-lexalias")
3553 (version "0.05")
3554 (source
3555 (origin
3556 (method url-fetch)
3557 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3558 "Devel-LexAlias-" version ".tar.gz"))
3559 (sha256
3560 (base32
3561 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
3562 (build-system perl-build-system)
3563 (propagated-inputs
3564 `(("perl-devel-caller" ,perl-devel-caller)))
3565 (home-page "https://metacpan.org/release/Devel-LexAlias")
3566 (synopsis "Alias lexical variables")
3567 (description "Devel::LexAlias provides the ability to alias a lexical
3568 variable in a subroutines scope to one of your choosing.")
3569 (license (package-license perl))))
3570
3571 (define-public perl-devel-overloadinfo
3572 (package
3573 (name "perl-devel-overloadinfo")
3574 (version "0.005")
3575 (source
3576 (origin
3577 (method url-fetch)
3578 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
3579 "Devel-OverloadInfo-" version ".tar.gz"))
3580 (sha256
3581 (base32
3582 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
3583 (build-system perl-build-system)
3584 (native-inputs
3585 `(("perl-test-fatal" ,perl-test-fatal)))
3586 (propagated-inputs
3587 `(("perl-package-stash" ,perl-package-stash)
3588 ("perl-sub-identify" ,perl-sub-identify)
3589 ("perl-mro-compat" ,perl-mro-compat)))
3590 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
3591 (synopsis "Introspect overloaded operators")
3592 (description "Devel::OverloadInfo returns information about overloaded
3593 operators for a given class (or object), including where in the inheritance
3594 hierarchy the overloads are declared and where the code implementing it is.")
3595 (license (package-license perl))))
3596
3597 (define-public perl-devel-partialdump
3598 (package
3599 (name "perl-devel-partialdump")
3600 (version "0.18")
3601 (source
3602 (origin
3603 (method url-fetch)
3604 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3605 "Devel-PartialDump-" version ".tar.gz"))
3606 (sha256
3607 (base32
3608 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
3609 (build-system perl-build-system)
3610 (native-inputs
3611 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3612 ("perl-test-warn" ,perl-test-warn)
3613 ("perl-test-simple" ,perl-test-simple)))
3614 (propagated-inputs
3615 `(("perl-class-tiny" ,perl-class-tiny)
3616 ("perl-sub-exporter" ,perl-sub-exporter)
3617 ("perl-namespace-clean" ,perl-namespace-clean)))
3618 (home-page "https://metacpan.org/release/Devel-PartialDump")
3619 (synopsis "Partial dumping of data structures")
3620 (description "This module is a data dumper optimized for logging of
3621 arbitrary parameters.")
3622 (license (package-license perl))))
3623
3624 (define-public perl-devel-stacktrace
3625 (package
3626 (name "perl-devel-stacktrace")
3627 (version "2.04")
3628 (source
3629 (origin
3630 (method url-fetch)
3631 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3632 "Devel-StackTrace-" version ".tar.gz"))
3633 (sha256
3634 (base32 "0mb8bngjq7s3kbh95h3ig4p3jfb156c4r0d53z344gbxaknh6g6d"))))
3635 (build-system perl-build-system)
3636 (home-page "https://metacpan.org/release/Devel-StackTrace")
3637 (synopsis "Object representing a stack trace")
3638 (description "The Devel::StackTrace module contains two classes,
3639 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
3640 information that can be retrieved via Perl's caller() function, as well as
3641 providing a simple interface to this data.")
3642 (license artistic2.0)))
3643
3644 (define-public perl-devel-stacktrace-ashtml
3645 (package
3646 (name "perl-devel-stacktrace-ashtml")
3647 (version "0.15")
3648 (source
3649 (origin
3650 (method url-fetch)
3651 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3652 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
3653 (sha256
3654 (base32
3655 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
3656 (build-system perl-build-system)
3657 (propagated-inputs
3658 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
3659 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
3660 (synopsis "Displays stack trace in HTML")
3661 (description "Devel::StackTrace::AsHTML adds as_html method to
3662 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
3663 snippet context and function parameters. If you call it on an instance of
3664 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
3665 each stack frame.")
3666 (license (package-license perl))))
3667
3668 (define-public perl-devel-symdump
3669 (package
3670 (name "perl-devel-symdump")
3671 (version "2.18")
3672 (source
3673 (origin
3674 (method url-fetch)
3675 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
3676 "Devel-Symdump-" version ".tar.gz"))
3677 (sha256
3678 (base32
3679 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
3680 (build-system perl-build-system)
3681 (home-page "https://metacpan.org/release/Devel-Symdump")
3682 (synopsis "Dump symbol names or the symbol table")
3683 (description "Devel::Symdump provides access to the perl symbol table.")
3684 (license (package-license perl))))
3685
3686 (define-public perl-digest-crc
3687 (package
3688 (name "perl-digest-crc")
3689 (version "0.22")
3690 (source
3691 (origin
3692 (method url-fetch)
3693 (uri (string-append
3694 "mirror://cpan/authors/id/O/OL/OLIMAUL/Digest-CRC-"
3695 version ".2.tar.gz"))
3696 (sha256
3697 (base32
3698 "1jvqcyrbi11cj3vlfc9sq2g6rv9caizyjkjqsksvmxn6zgvm0aqi"))))
3699 (build-system perl-build-system)
3700 (home-page "https://metacpan.org/release/Digest-CRC")
3701 (synopsis "Generic CRC functions")
3702 (description "The @code{Digest::CRC} module calculates CRC sums of
3703 all sorts. It contains wrapper functions with the correct parameters
3704 for CRC-CCITT, CRC-16 and CRC-32.")
3705 (license public-domain)))
3706
3707 (define-public perl-digest-hmac
3708 (package
3709 (name "perl-digest-hmac")
3710 (version "1.03")
3711 (source
3712 (origin
3713 (method url-fetch)
3714 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3715 "Digest-HMAC-" version ".tar.gz"))
3716 (sha256
3717 (base32
3718 "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
3719 (build-system perl-build-system)
3720 (home-page "https://metacpan.org/release/Digest-HMAC")
3721 (synopsis "Keyed-Hashing for Message Authentication")
3722 (description "The Digest::HMAC module follows the common Digest::
3723 interface for the RFC 2104 HMAC mechanism.")
3724 (license (package-license perl))))
3725
3726 (define-public perl-digest-md4
3727 (package
3728 (name "perl-digest-md4")
3729 (version "1.9")
3730 (source
3731 (origin
3732 (method url-fetch)
3733 (uri (string-append
3734 "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-"
3735 version ".tar.gz"))
3736 (sha256
3737 (base32
3738 "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"))))
3739 (build-system perl-build-system)
3740 (home-page "https://metacpan.org/release/Digest-MD4")
3741 (synopsis "Interface to the MD4 Algorithm")
3742 (description "The @code{Digest::MD4} module allows you to use the
3743 RSA Data Security Inc.@: MD4 Message Digest algorithm from within Perl
3744 programs. The algorithm takes as input a message of arbitrary length
3745 and produces as output a 128-bit \"fingerprint\" or \"message digest\"
3746 of the input. MD4 is described in RFC 1320.")
3747 (license perl-license)))
3748
3749 (define-public perl-digest-md5
3750 (package
3751 (name "perl-digest-md5")
3752 (version "2.55")
3753 (source
3754 (origin
3755 (method url-fetch)
3756 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/Digest-MD5-"
3757 version ".tar.gz"))
3758 (sha256
3759 (base32
3760 "0g0fklbrm2krswc1xhp4iwn1dhqq71fqh2p5wm8xj9a4s6i9ic83"))))
3761 (build-system perl-build-system)
3762 (arguments
3763 `(#:phases
3764 (modify-phases %standard-phases
3765 (add-after 'build 'set-permissions
3766 (lambda _
3767 ;; Make MD5.so read-write so it can be stripped.
3768 (chmod "blib/arch/auto/Digest/MD5/MD5.so" #o755)
3769 #t)))))
3770 (home-page "https://metacpan.org/release/Digest-MD5")
3771 (synopsis "Perl interface to the MD-5 algorithm")
3772 (description
3773 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
3774 algorithm from within Perl programs. The algorithm takes as
3775 input a message of arbitrary length and produces as output a
3776 128-bit \"fingerprint\" or \"message digest\" of the input.")
3777 (license (package-license perl))))
3778
3779 (define-public perl-digest-sha1
3780 (package
3781 (name "perl-digest-sha1")
3782 (version "2.13")
3783 (source (origin
3784 (method url-fetch)
3785 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3786 "Digest-SHA1-" version ".tar.gz"))
3787 (sha256
3788 (base32
3789 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
3790 (build-system perl-build-system)
3791 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
3792 (description
3793 "This package provides @code{Digest::SHA1}, an implementation of the NIST
3794 SHA-1 message digest algorithm for use by Perl programs.")
3795 (home-page "https://metacpan.org/release/Digest-SHA1")
3796 (license (package-license perl))))
3797
3798 (define-public perl-dist-checkconflicts
3799 (package
3800 (name "perl-dist-checkconflicts")
3801 (version "0.11")
3802 (source (origin
3803 (method url-fetch)
3804 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3805 "Dist-CheckConflicts-" version ".tar.gz"))
3806 (sha256
3807 (base32
3808 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
3809 (build-system perl-build-system)
3810 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
3811 (propagated-inputs
3812 `(("perl-module-runtime" ,perl-module-runtime)))
3813 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
3814 (synopsis "Declare version conflicts for your dist")
3815 (description "This module allows you to specify conflicting versions of
3816 modules separately and deal with them after the module is done installing.")
3817 (license (package-license perl))))
3818
3819 (define-public perl-dynaloader-functions
3820 (package
3821 (name "perl-dynaloader-functions")
3822 (version "0.003")
3823 (source
3824 (origin
3825 (method url-fetch)
3826 (uri (string-append
3827 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/DynaLoader-Functions-"
3828 version ".tar.gz"))
3829 (sha256
3830 (base32
3831 "10x13q920j9kid7vmbj6fiaz153042dy4mwdmpzrdrxw2ir39ciy"))))
3832 (build-system perl-build-system)
3833 (native-inputs
3834 `(("perl-module-build" ,perl-module-build)
3835 ("perl-test-pod" ,perl-test-pod)
3836 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3837 (home-page "https://metacpan.org/release/DynaLoader-Functions")
3838 (synopsis "Deconstructed dynamic C library loading")
3839 (description "This module provides a function-based interface to
3840 dynamic loading as used by Perl. Some details of dynamic loading are
3841 very platform-dependent, so correct use of these functions requires
3842 the programmer to be mindfulof the space of platform variations.")
3843 (license perl-license)))
3844
3845 (define-public perl-encode-detect
3846 (package
3847 (name "perl-encode-detect")
3848 (version "1.01")
3849 (source
3850 (origin
3851 (method url-fetch)
3852 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
3853 "Encode-Detect-" version ".tar.gz"))
3854 (sha256
3855 (base32
3856 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
3857 (build-system perl-build-system)
3858 (native-inputs
3859 `(("perl-module-build" ,perl-module-build)))
3860 (home-page "https://metacpan.org/release/Encode-Detect")
3861 (synopsis "Detect the encoding of data")
3862 (description "This package provides a class @code{Encode::Detect} to detect
3863 the encoding of data.")
3864 (license mpl1.1)))
3865
3866 (define-public perl-encode-eucjpascii
3867 (package
3868 (name "perl-encode-eucjpascii")
3869 (version "0.03")
3870 (source
3871 (origin
3872 (method url-fetch)
3873 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3874 "Encode-EUCJPASCII-" version ".tar.gz"))
3875 (sha256
3876 (base32
3877 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3878 (build-system perl-build-system)
3879 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3880 (synopsis "ASCII mapping for eucJP encoding")
3881 (description "This package provides an ASCII mapping for the eucJP
3882 encoding.")
3883 (license (package-license perl))))
3884
3885 (define-public perl-encode-jis2k
3886 (package
3887 (name "perl-encode-jis2k")
3888 (version "0.03")
3889 (source
3890 (origin
3891 (method url-fetch)
3892 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3893 "Encode-JIS2K-" version ".tar.gz"))
3894 (sha256
3895 (base32
3896 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3897 (build-system perl-build-system)
3898 (home-page "https://metacpan.org/release/Encode-JIS2K")
3899 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3900 (description "This package provides encodings for JIS X 0212, which is
3901 also known as JIS 2000.")
3902 (license (package-license perl))))
3903
3904 (define-public perl-encode-hanextra
3905 (package
3906 (name "perl-encode-hanextra")
3907 (version "0.23")
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3912 "Encode-HanExtra-" version ".tar.gz"))
3913 (sha256
3914 (base32
3915 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3916 (build-system perl-build-system)
3917 (arguments
3918 '(#:phases
3919 (modify-phases %standard-phases
3920 (add-after 'unpack 'set-env
3921 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3922 (home-page "https://metacpan.org/release/Encode-HanExtra")
3923 (synopsis "Additional Chinese encodings")
3924 (description "This Perl module provides Chinese encodings that are not
3925 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3926 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3927 \"UNISYS\".")
3928 (license expat)))
3929
3930 (define-public perl-env-path
3931 (package
3932 (name "perl-env-path")
3933 (version "0.19")
3934 (source
3935 (origin
3936 (method url-fetch)
3937 (uri (string-append
3938 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3939 version
3940 ".tar.gz"))
3941 (sha256
3942 (base32
3943 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3944 (build-system perl-build-system)
3945 (home-page "https://metacpan.org/release/Env-Path")
3946 (synopsis "Advanced operations on path variables")
3947 (description "@code{Env::Path} presents an object-oriented interface to
3948 path variables, defined as that subclass of environment variables which name
3949 an ordered list of file system elements separated by a platform-standard
3950 separator.")
3951 (license (package-license perl))))
3952
3953 (define-public perl-error
3954 (package
3955 (name "perl-error")
3956 (version "0.17028")
3957 (source (origin
3958 (method url-fetch)
3959 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
3960 "Error-" version ".tar.gz"))
3961 (sha256
3962 (base32
3963 "0q796nwwiarfc6pga97380c9z8xva5545632001qj75kb1g5rn1s"))))
3964 (build-system perl-build-system)
3965 (native-inputs `(("perl-module-build" ,perl-module-build)))
3966 (home-page "https://metacpan.org/release/Error")
3967 (synopsis "OO-ish Error/Exception handling for Perl")
3968 (description "The Error package provides two interfaces. Firstly Error
3969 provides a procedural interface to exception handling. Secondly Error is a
3970 base class for errors/exceptions that can either be thrown, for subsequent
3971 catch, or can simply be recorded.")
3972 (license (package-license perl))))
3973
3974 (define-public perl-eval-closure
3975 (package
3976 (name "perl-eval-closure")
3977 (version "0.14")
3978 (source
3979 (origin
3980 (method url-fetch)
3981 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3982 "Eval-Closure-" version ".tar.gz"))
3983 (sha256
3984 (base32
3985 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
3986 (build-system perl-build-system)
3987 (native-inputs
3988 `(("perl-test-fatal" ,perl-test-fatal)
3989 ("perl-test-requires" ,perl-test-requires)))
3990 (propagated-inputs
3991 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
3992 (home-page "https://metacpan.org/release/Eval-Closure")
3993 (synopsis "Safely and cleanly create closures via string eval")
3994 (description "String eval is often used for dynamic code generation. For
3995 instance, Moose uses it heavily, to generate inlined versions of accessors and
3996 constructors, which speeds code up at runtime by a significant amount. String
3997 eval is not without its issues however - it's difficult to control the scope
3998 it's used in (which determines which variables are in scope inside the eval),
3999 and it's easy to miss compilation errors, since eval catches them and sticks
4000 them in $@@ instead. This module attempts to solve these problems. It
4001 provides an eval_closure function, which evals a string in a clean
4002 environment, other than a fixed list of specified variables. Compilation
4003 errors are rethrown automatically.")
4004 (license (package-license perl))))
4005
4006 (define-public perl-exception-class
4007 (package
4008 (name "perl-exception-class")
4009 (version "1.44")
4010 (source
4011 (origin
4012 (method url-fetch)
4013 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4014 "Exception-Class-" version ".tar.gz"))
4015 (sha256
4016 (base32
4017 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
4018 (build-system perl-build-system)
4019 (propagated-inputs
4020 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
4021 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
4022 (home-page "https://metacpan.org/release/Exception-Class")
4023 (synopsis "Allows you to declare real exception classes in Perl")
4024 (description "Exception::Class allows you to declare exception hierarchies
4025 in your modules in a \"Java-esque\" manner.")
4026 (license (package-license perl))))
4027
4028 (define-public perl-exporter-lite
4029 (package
4030 (name "perl-exporter-lite")
4031 (version "0.08")
4032 (source (origin
4033 (method url-fetch)
4034 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4035 "Exporter-Lite-" version ".tar.gz"))
4036 (sha256
4037 (base32
4038 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
4039 (build-system perl-build-system)
4040 (synopsis "Lightweight exporting of functions and variables")
4041 (description
4042 "Exporter::Lite is an alternative to Exporter, intended to provide a
4043 lightweight subset of the most commonly-used functionality. It supports
4044 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
4045 (home-page "https://metacpan.org/release/Exporter-Lite")
4046 (license (package-license perl))))
4047
4048 (define-public perl-exporter-tiny
4049 (package
4050 (name "perl-exporter-tiny")
4051 (version "1.002001")
4052 (source
4053 (origin
4054 (method url-fetch)
4055 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
4056 "Exporter-Tiny-" version ".tar.gz"))
4057 (sha256
4058 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
4059 (build-system perl-build-system)
4060 (home-page "https://metacpan.org/release/Exporter-Tiny")
4061 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
4062 (description "Exporter::Tiny supports many of Sub::Exporter's
4063 external-facing features including renaming imported functions with the `-as`,
4064 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
4065 and alternative installers with the `installler` option. But it's written in
4066 only about 40% as many lines of code and with zero non-core dependencies.")
4067 (license (package-license perl))))
4068
4069 (define-public perl-extutils-installpaths
4070 (package
4071 (name "perl-extutils-installpaths")
4072 (version "0.012")
4073 (source
4074 (origin
4075 (method url-fetch)
4076 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4077 "ExtUtils-InstallPaths-" version ".tar.gz"))
4078 (sha256
4079 (base32
4080 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
4081 (build-system perl-build-system)
4082 (propagated-inputs
4083 `(("perl-extutils-config" ,perl-extutils-config)))
4084 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
4085 (synopsis "Build.PL install path logic made easy")
4086 (description "This module tries to make install path resolution as easy as
4087 possible.")
4088 (license (package-license perl))))
4089
4090 (define-public perl-extutils-config
4091 (package
4092 (name "perl-extutils-config")
4093 (version "0.008")
4094 (source
4095 (origin
4096 (method url-fetch)
4097 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4098 "ExtUtils-Config-" version ".tar.gz"))
4099 (sha256
4100 (base32
4101 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
4102 (build-system perl-build-system)
4103 (home-page "https://metacpan.org/release/ExtUtils-Config")
4104 (synopsis "Wrapper for perl's configuration")
4105 (description "ExtUtils::Config is an abstraction around the %Config hash.
4106 By itself it is not a particularly interesting module by any measure, however
4107 it ties together a family of modern toolchain modules.")
4108 (license (package-license perl))))
4109
4110 (define-public perl-extutils-cppguess
4111 (package
4112 (name "perl-extutils-cppguess")
4113 (version "0.20")
4114 (source
4115 (origin
4116 (method url-fetch)
4117 (uri (string-append
4118 "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
4119 version
4120 ".tar.gz"))
4121 (sha256
4122 (base32
4123 "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
4124 (build-system perl-build-system)
4125 (native-inputs
4126 `(("perl-capture-tiny" ,perl-capture-tiny)
4127 ("perl-module-build" ,perl-module-build)))
4128 (propagated-inputs
4129 `(("perl-capture-tiny" ,perl-capture-tiny)))
4130 (home-page
4131 "https://metacpan.org/release/ExtUtils-CppGuess")
4132 (synopsis "Tool for guessing C++ compiler and flags")
4133 (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
4134 is compatible with the C compiler used to build perl.")
4135 (license (package-license perl))))
4136
4137 (define-public perl-extutils-depends
4138 (package
4139 (name "perl-extutils-depends")
4140 (version "0.405")
4141 (source (origin
4142 (method url-fetch)
4143 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4144 "ExtUtils-Depends-" version ".tar.gz"))
4145 (sha256
4146 (base32
4147 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
4148 (build-system perl-build-system)
4149 (native-inputs
4150 `(("perl-test-number-delta" ,perl-test-number-delta)))
4151 (home-page "https://metacpan.org/release/ExtUtils-Depends")
4152 (synopsis "Easily build XS extensions that depend on XS extensions")
4153 (description
4154 "This module tries to make it easy to build Perl extensions that use
4155 functions and typemaps provided by other perl extensions. This means that a
4156 perl extension is treated like a shared library that provides also a C and an
4157 XS interface besides the perl one.")
4158 (license (package-license perl))))
4159
4160 (define-public perl-extutils-helpers
4161 (package
4162 (name "perl-extutils-helpers")
4163 (version "0.026")
4164 (source
4165 (origin
4166 (method url-fetch)
4167 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4168 "ExtUtils-Helpers-" version ".tar.gz"))
4169 (sha256
4170 (base32
4171 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
4172 (build-system perl-build-system)
4173 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
4174 (synopsis "Various portability utilities for module builders")
4175 (description "This module provides various portable helper functions for
4176 module building modules.")
4177 (license (package-license perl))))
4178
4179 (define-public perl-extutils-libbuilder
4180 (package
4181 (name "perl-extutils-libbuilder")
4182 (version "0.08")
4183 (source
4184 (origin
4185 (method url-fetch)
4186 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
4187 "ExtUtils-LibBuilder-" version ".tar.gz"))
4188 (sha256
4189 (base32
4190 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
4191 (build-system perl-build-system)
4192 (native-inputs
4193 `(("perl-module-build" ,perl-module-build)))
4194 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
4195 (synopsis "Tool to build C libraries")
4196 (description "Some Perl modules need to ship C libraries together with
4197 their Perl code. Although there are mechanisms to compile and link (or glue)
4198 C code in your Perl programs, there isn't a clear method to compile standard,
4199 self-contained C libraries. This module main goal is to help in that task.")
4200 (license (package-license perl))))
4201
4202 (define-public perl-extutils-parsexs
4203 (package
4204 (name "perl-extutils-parsexs")
4205 (version "3.35")
4206 (source
4207 (origin
4208 (method url-fetch)
4209 (uri (string-append
4210 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-"
4211 version
4212 ".tar.gz"))
4213 (sha256
4214 (base32
4215 "077fqiyabydm8j34wxzxwxskyidh8nmwq9gskaxai8kq298z1pj1"))))
4216 (build-system perl-build-system)
4217 (home-page
4218 "https://metacpan.org/release/ExtUtils-ParseXS")
4219 (synopsis "Module to convert Perl XS code into C code")
4220 (description "The package contains the ExtUtils::ParseXS module to
4221 convert Perl XS code into C code, the ExtUtils::Typemaps module to
4222 handle Perl/XS typemap files, and their submodules.")
4223 (license (package-license perl))))
4224
4225 (define-public perl-extutils-pkgconfig
4226 (package
4227 (name "perl-extutils-pkgconfig")
4228 (version "1.16")
4229 (source (origin
4230 (method url-fetch)
4231 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4232 "ExtUtils-PkgConfig-" version ".tar.gz"))
4233 (sha256
4234 (base32
4235 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
4236 (build-system perl-build-system)
4237 (propagated-inputs
4238 `(("pkg-config" ,pkg-config)))
4239 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
4240 (synopsis "Simplistic interface to pkg-config")
4241 (description
4242 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
4243 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
4244 of perl extensions which bind libraries that @command{pkg-config} knows.
4245 It is really just boilerplate code that you would have written yourself.")
4246 (license lgpl2.1+)))
4247
4248 (define-public perl-extutils-typemaps-default
4249 (package
4250 (name "perl-extutils-typemaps-default")
4251 (version "1.05")
4252 (source
4253 (origin
4254 (method url-fetch)
4255 (uri (string-append
4256 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-Typemaps-Default-"
4257 version
4258 ".tar.gz"))
4259 (sha256
4260 (base32
4261 "1phmha0ks95kvzl00r1kgnd5hvg7qb1q9jmzjmw01p5zgs1zbyix"))))
4262 (build-system perl-build-system)
4263 (native-inputs
4264 `(("perl-module-build" ,perl-module-build)))
4265 (home-page
4266 "https://metacpan.org/release/ExtUtils-Typemaps-Default")
4267 (synopsis "Set of useful typemaps")
4268 (description "The package provides a number of useful typemaps as
4269 submodules of ExtUtils::Typemaps.")
4270 (license (package-license perl))))
4271
4272 (define-public perl-extutils-xspp
4273 (package
4274 (name "perl-extutils-xspp")
4275 (version "0.18")
4276 (source
4277 (origin
4278 (method url-fetch)
4279 (uri (string-append
4280 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-"
4281 version
4282 ".tar.gz"))
4283 (sha256
4284 (base32
4285 "1zx84f93lkymqz7qa4d63gzlnhnkxm5i3gvsrwkvvqr9cxjasxli"))))
4286 (build-system perl-build-system)
4287 (native-inputs
4288 `(("perl-module-build" ,perl-module-build)
4289 ("perl-test-base" ,perl-test-base)
4290 ("perl-test-differences" ,perl-test-differences)))
4291 (home-page
4292 "https://metacpan.org/release/ExtUtils-XSpp")
4293 (synopsis "XS for C++")
4294 (description "This module implements the Perl foreign function
4295 interface XS for C++; it is a thin layer over plain XS.")
4296 (license (package-license perl))))
4297
4298 (define-public perl-file-changenotify
4299 (package
4300 (name "perl-file-changenotify")
4301 (version "0.24")
4302 (source
4303 (origin
4304 (method url-fetch)
4305 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4306 "File-ChangeNotify-" version ".tar.gz"))
4307 (sha256
4308 (base32
4309 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
4310 (build-system perl-build-system)
4311 (native-inputs
4312 `(("perl-module-build" ,perl-module-build)
4313 ("perl-test-exception" ,perl-test-exception)))
4314 (propagated-inputs
4315 `(("perl-class-load" ,perl-class-load)
4316 ("perl-list-moreutils" ,perl-list-moreutils)
4317 ("perl-module-pluggable" ,perl-module-pluggable)
4318 ("perl-moose" ,perl-moose)
4319 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
4320 ("perl-moosex-semiaffordanceaccessor"
4321 ,perl-moosex-semiaffordanceaccessor)
4322 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4323 (home-page "https://metacpan.org/release/File-ChangeNotify")
4324 (synopsis "Watch for changes to files")
4325 (description "This module provides a class to monitor a directory for
4326 changes made to any file.")
4327 (license artistic2.0)))
4328
4329 (define-public perl-file-configdir
4330 (package
4331 (name "perl-file-configdir")
4332 (version "0.021")
4333 (source
4334 (origin
4335 (method url-fetch)
4336 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4337 "File-ConfigDir-" version ".tar.gz"))
4338 (sha256
4339 (base32
4340 "1ihlhdbwaybyj3xqfxpx4ii0ypa41907b6zdh94rvr4wyqa5lh3b"))))
4341 (build-system perl-build-system)
4342 (propagated-inputs
4343 `(("perl-file-homedir" ,perl-file-homedir)
4344 ("perl-list-moreutils" ,perl-list-moreutils)
4345 ("perl-test-without-module" ,perl-test-without-module)))
4346 (home-page "https://metacpan.org/release/File-ConfigDir")
4347 (synopsis "Get directories of configuration files")
4348 (description "This module is a helper for installing, reading and finding
4349 configuration file locations. @code{File::ConfigDir} is a module to help out
4350 when Perl modules (especially applications) need to read and store
4351 configuration files from more than one location.")
4352 (license (package-license perl))))
4353
4354 (define-public perl-file-copy-recursive
4355 (package
4356 (name "perl-file-copy-recursive")
4357 (version "0.38")
4358 (source
4359 (origin
4360 (method url-fetch)
4361 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
4362 "File-Copy-Recursive-" version ".tar.gz"))
4363 (sha256
4364 (base32
4365 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
4366 (build-system perl-build-system)
4367 (home-page "https://metacpan.org/release/File-Copy-Recursive")
4368 (synopsis "Recursively copy files and directories")
4369 (description "This module has 3 functions: one to copy files only, one to
4370 copy directories only, and one to do either depending on the argument's
4371 type.")
4372 (license (package-license perl))))
4373
4374 (define-public perl-file-find-rule
4375 (package
4376 (name "perl-file-find-rule")
4377 (version "0.34")
4378 (source
4379 (origin
4380 (method url-fetch)
4381 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4382 "File-Find-Rule-" version ".tar.gz"))
4383 (sha256
4384 (base32
4385 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
4386 (build-system perl-build-system)
4387 (propagated-inputs
4388 `(("perl-text-glob" ,perl-text-glob)
4389 ("perl-number-compare" ,perl-number-compare)))
4390 (home-page "https://metacpan.org/release/File-Find-Rule")
4391 (synopsis "Alternative interface to File::Find")
4392 (description "File::Find::Rule is a friendlier interface to File::Find.
4393 It allows you to build rules which specify the desired files and
4394 directories.")
4395 (license (package-license perl))))
4396
4397 (define-public perl-file-find-rule-perl
4398 (package
4399 (name "perl-file-find-rule-perl")
4400 (version "1.15")
4401 (source
4402 (origin
4403 (method url-fetch)
4404 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4405 "File-Find-Rule-Perl-" version ".tar.gz"))
4406 (sha256
4407 (base32
4408 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
4409 (build-system perl-build-system)
4410 (propagated-inputs
4411 `(("perl-file-find-rule" ,perl-file-find-rule)
4412 ("perl-params-util" ,perl-params-util)
4413 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
4414 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
4415 (synopsis "Common rules for searching for Perl things")
4416 (description "File::Find::Rule::Perl provides methods for finding various
4417 types Perl-related files, or replicating search queries run on a distribution
4418 in various parts of the CPAN ecosystem.")
4419 (license (package-license perl))))
4420
4421 (define-public perl-file-grep
4422 (package
4423 (name "perl-file-grep")
4424 (version "0.02")
4425 (source
4426 (origin
4427 (method url-fetch)
4428 (uri (string-append
4429 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
4430 version
4431 ".tar.gz"))
4432 (sha256
4433 (base32
4434 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
4435 (build-system perl-build-system)
4436 (home-page "https://metacpan.org/release/File-Grep")
4437 (synopsis "Matches patterns in a series of files")
4438 (description "@code{File::Grep} provides similar functionality as perl's
4439 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
4440 over a passed filelist instead of arrays. While trivial, this module can
4441 provide a quick dropin when such functionality is needed.")
4442 (license (package-license perl))))
4443
4444 (define-public perl-file-homedir
4445 (package
4446 (name "perl-file-homedir")
4447 (version "1.004")
4448 (source
4449 (origin
4450 (method url-fetch)
4451 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4452 "File-HomeDir-" version ".tar.gz"))
4453 (sha256
4454 (base32
4455 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
4456 (build-system perl-build-system)
4457 (propagated-inputs
4458 `(("perl-file-which" ,perl-file-which)))
4459 (arguments `(#:tests? #f)) ;Not appropriate for chroot
4460 (home-page "https://metacpan.org/release/File-HomeDir")
4461 (synopsis "Find your home and other directories on any platform")
4462 (description "File::HomeDir is a module for locating the directories that
4463 are @code{owned} by a user (typically your user) and to solve the various issues
4464 that arise trying to find them consistently across a wide variety of
4465 platforms.")
4466 (license (package-license perl))))
4467
4468 (define-public perl-file-path
4469 (package
4470 (name "perl-file-path")
4471 (version "2.16")
4472 (source
4473 (origin
4474 (method url-fetch)
4475 (uri (string-append
4476 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
4477 version
4478 ".tar.gz"))
4479 (sha256
4480 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
4481 (build-system perl-build-system)
4482 (home-page "https://metacpan.org/release/File-Path")
4483 (synopsis "Create or remove directory trees")
4484 (description "This module provide a convenient way to create directories
4485 of arbitrary depth and to delete an entire directory subtree from the
4486 file system.")
4487 (license (package-license perl))))
4488
4489 (define-public perl-file-pushd
4490 (package
4491 (name "perl-file-pushd")
4492 (version "1.016")
4493 (source
4494 (origin
4495 (method url-fetch)
4496 (uri (string-append
4497 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
4498 version
4499 ".tar.gz"))
4500 (sha256
4501 (base32
4502 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
4503 (build-system perl-build-system)
4504 (home-page
4505 "https://metacpan.org/release/File-pushd")
4506 (synopsis
4507 "Change directory temporarily for a limited scope")
4508 (description "@code{File::pushd} does a temporary @code{chdir} that is
4509 easily and automatically reverted, similar to @code{pushd} in some Unix
4510 command shells. It works by creating an object that caches the original
4511 working directory. When the object is destroyed, the destructor calls
4512 @code{chdir} to revert to the original working directory. By storing the
4513 object in a lexical variable with a limited scope, this happens automatically
4514 at the end of the scope.")
4515 (license asl2.0)))
4516
4517 (define-public perl-file-list
4518 (package
4519 (name "perl-file-list")
4520 (version "0.3.1")
4521 (source (origin
4522 (method url-fetch)
4523 (uri (string-append
4524 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
4525 version ".tar.gz"))
4526 (sha256
4527 (base32
4528 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
4529 (build-system perl-build-system)
4530 (arguments
4531 `(#:phases
4532 (modify-phases %standard-phases
4533 (add-after 'unpack 'cd
4534 (lambda _ (chdir "List") #t)))))
4535 (license (package-license perl))
4536 (synopsis "Perl extension for crawling directory trees and compiling
4537 lists of files")
4538 (description
4539 "The File::List module crawls the directory tree starting at the
4540 provided base directory and can return files (and/or directories if desired)
4541 matching a regular expression.")
4542 (home-page "https://metacpan.org/release/File-List")))
4543
4544 (define-public perl-file-readbackwards
4545 (package
4546 (name "perl-file-readbackwards")
4547 (version "1.05")
4548 (source
4549 (origin
4550 (method url-fetch)
4551 (uri (string-append
4552 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
4553 version
4554 ".tar.gz"))
4555 (sha256
4556 (base32
4557 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
4558 (build-system perl-build-system)
4559 (home-page "https://metacpan.org/release/File-ReadBackwards")
4560 (synopsis "Read a file backwards by lines")
4561 (description "This module reads a file backwards line by line. It is
4562 simple to use, memory efficient and fast. It supports both an object and a
4563 tied handle interface.
4564
4565 It is intended for processing log and other similar text files which typically
4566 have their newest entries appended to them. By default files are assumed to
4567 be plain text and have a line ending appropriate to the OS. But you can set
4568 the input record separator string on a per file basis.")
4569 (license perl-license)))
4570
4571 (define-public perl-file-remove
4572 (package
4573 (name "perl-file-remove")
4574 (version "1.58")
4575 (source
4576 (origin
4577 (method url-fetch)
4578 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4579 "File-Remove-" version ".tar.gz"))
4580 (sha256
4581 (base32
4582 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
4583 (build-system perl-build-system)
4584 (native-inputs
4585 `(("perl-module-build" ,perl-module-build)))
4586 (home-page "https://metacpan.org/release/File-Remove")
4587 (synopsis "Remove files and directories in Perl")
4588 (description "@code{File::Remove::remove} removes files and directories.
4589 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
4590 given a list of files, it will not remove directories; this module remedies
4591 that. It also accepts wildcards, * and ?, as arguments for file names.")
4592 (license (package-license perl))))
4593
4594 (define-public perl-file-sharedir
4595 (package
4596 (name "perl-file-sharedir")
4597 (version "1.116")
4598 (source
4599 (origin
4600 (method url-fetch)
4601 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4602 "File-ShareDir-" version ".tar.gz"))
4603 (sha256
4604 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
4605 (build-system perl-build-system)
4606 (native-inputs
4607 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
4608 (propagated-inputs
4609 `(("perl-class-inspector" ,perl-class-inspector)))
4610 (home-page "https://metacpan.org/release/File-ShareDir")
4611 (synopsis "Locate per-dist and per-module shared files")
4612 (description "The intent of File::ShareDir is to provide a companion to
4613 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
4614 module to have access to a large amount of read-only data that is stored on
4615 the file-system at run-time. Once the files have been installed to the
4616 correct directory, you can use File::ShareDir to find your files again after
4617 the installation.")
4618 (license (package-license perl))))
4619
4620 (define-public perl-file-sharedir-dist
4621 (package
4622 (name "perl-file-sharedir-dist")
4623 (version "0.07")
4624 (source
4625 (origin
4626 (method url-fetch)
4627 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4628 "File-ShareDir-Dist-" version ".tar.gz"))
4629 (sha256
4630 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
4631 (build-system perl-build-system)
4632 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
4633 (synopsis "Locate per-dist shared files")
4634 (description "File::ShareDir::Dist finds share directories for
4635 distributions. It is a companion module to File::ShareDir.")
4636 (license (package-license perl))))
4637
4638 (define-public perl-file-sharedir-install
4639 (package
4640 (name "perl-file-sharedir-install")
4641 (version "0.13")
4642 (source
4643 (origin
4644 (method url-fetch)
4645 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4646 "File-ShareDir-Install-" version ".tar.gz"))
4647 (sha256
4648 (base32
4649 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
4650 (build-system perl-build-system)
4651 (native-inputs
4652 `(("perl-module-build" ,perl-module-build)))
4653 (home-page "https://metacpan.org/release/File-ShareDir-Install")
4654 (synopsis "Install shared files")
4655 (description "File::ShareDir::Install allows you to install read-only data
4656 files from a distribution. It is a companion module to File::ShareDir, which
4657 allows you to locate these files after installation.")
4658 (license (package-license perl))))
4659
4660 (define-public perl-file-slurp
4661 (package
4662 (name "perl-file-slurp")
4663 (version "9999.28")
4664 (source
4665 (origin
4666 (method url-fetch)
4667 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
4668 "File-Slurp-" version ".tar.gz"))
4669 (sha256
4670 (base32 "1vkwh880lbyr2qcrfka7yb3z4yz9id4va52gfjgdnyfb1c0wx1q5"))))
4671 (build-system perl-build-system)
4672 (home-page "https://metacpan.org/release/File-Slurp")
4673 (synopsis "Reading/Writing/Modifying of complete files")
4674 (description "File::Slurp provides subroutines to read or write entire
4675 files with a simple call. It also has a subroutine for reading the list of
4676 file names in a directory.")
4677 (license (package-license perl))))
4678
4679 (define-public perl-file-slurper
4680 (package
4681 (name "perl-file-slurper")
4682 (version "0.012")
4683 (source
4684 (origin
4685 (method url-fetch)
4686 (uri (string-append
4687 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
4688 version
4689 ".tar.gz"))
4690 (sha256
4691 (base32
4692 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
4693 (build-system perl-build-system)
4694 (native-inputs
4695 `(("perl-test-warnings" ,perl-test-warnings)))
4696 (propagated-inputs
4697 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
4698 (home-page "https://metacpan.org/release/File-Slurper")
4699 (synopsis "Simple, sane and efficient module to slurp a file")
4700 (description "This module provides functions for fast and correct file
4701 slurping and spewing. All functions are optionally exported.")
4702 (license (package-license perl))))
4703
4704 (define-public perl-file-slurp-tiny
4705 (package
4706 (name "perl-file-slurp-tiny")
4707 (version "0.004")
4708 (source (origin
4709 (method url-fetch)
4710 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4711 "File-Slurp-Tiny-" version ".tar.gz"))
4712 (sha256
4713 (base32
4714 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
4715 (build-system perl-build-system)
4716 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
4717 (synopsis "Simple file reader and writer")
4718 (description
4719 "This module provides functions for fast reading and writing of files.")
4720 (license (package-license perl))))
4721
4722 (define-public perl-file-temp
4723 (package
4724 (name "perl-file-temp")
4725 (version "0.2309")
4726 (source
4727 (origin
4728 (method url-fetch)
4729 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4730 "File-Temp-" version ".tar.gz"))
4731 (sha256
4732 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
4733 (build-system perl-build-system)
4734 (home-page "https://metacpan.org/release/File-Temp")
4735 (synopsis "Return name and handle of a temporary file safely")
4736 (description "File::Temp can be used to create and open temporary files in
4737 a safe way.")
4738 (license (package-license perl))))
4739
4740 (define-public perl-file-which
4741 (package
4742 (name "perl-file-which")
4743 (version "1.23")
4744 (source (origin
4745 (method url-fetch)
4746 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4747 "File-Which-" version ".tar.gz"))
4748 (sha256
4749 (base32
4750 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
4751 (build-system perl-build-system)
4752 (native-inputs `(("test-script" ,perl-test-script)))
4753 (synopsis "Portable implementation of the `which' utility")
4754 (description
4755 "File::Which was created to be able to get the paths to executable
4756 programs on systems under which the `which' program wasn't implemented in the
4757 shell.")
4758 (home-page "https://metacpan.org/release/File-Which")
4759 (license (package-license perl))))
4760
4761 (define-public perl-file-zglob
4762 (package
4763 (name "perl-file-zglob")
4764 (version "0.11")
4765 (source (origin
4766 (method url-fetch)
4767 (uri (string-append
4768 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
4769 version ".tar.gz"))
4770 (sha256
4771 (base32
4772 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
4773 (build-system perl-build-system)
4774 (native-inputs
4775 `(("perl-module-install" ,perl-module-install)))
4776 (home-page "https://metacpan.org/release/File-Zglob")
4777 (synopsis "Extended Unix style glob functionality")
4778 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
4779 functionality; it returns a list of file names that match the given pattern.
4780 For instance, it supports the @code{**/*.pm} form.")
4781 (license (package-license perl))))
4782
4783 (define-public perl-filesys-notify-simple
4784 (package
4785 (name "perl-filesys-notify-simple")
4786 (version "0.13")
4787 (source
4788 (origin
4789 (method url-fetch)
4790 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
4791 "Filesys-Notify-Simple-" version ".tar.gz"))
4792 (sha256
4793 (base32
4794 "18jv96k1pf8wqf4vn2ahs7dv44lc9cyqj0bja9z17qici3dx7qxd"))))
4795 (build-system perl-build-system)
4796 (native-inputs
4797 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
4798 (home-page "https://metacpan.org/release/Filesys-Notify-Simple")
4799 (synopsis "Simple and dumb file system watcher")
4800 (description
4801 "@code{Filesys::Notify::Simple} is a simple but unified interface to get
4802 notifications of changes to a given file system path. It uses inotify2 on
4803 Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
4804 @code{FindFirstChangeNotification} on Windows if they're installed, and falls
4805 back to a full directory scan if none of these are available.")
4806 (license perl-license)))
4807
4808 (define-public perl-getopt-long
4809 (package
4810 (name "perl-getopt-long")
4811 (version "2.49.1")
4812 (source
4813 (origin
4814 (method url-fetch)
4815 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
4816 "Getopt-Long-v" (substring version 1) ".tar.gz"))
4817 (sha256
4818 (base32
4819 "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
4820 (build-system perl-build-system)
4821 (home-page "https://metacpan.org/release/Getopt-Long")
4822 (synopsis "Module to handle parsing command line options")
4823 (description "The @code{Getopt::Long} module implements an extended getopt
4824 function called @code{GetOptions()}. It parses the command line from
4825 @code{ARGV}, recognizing and removing specified options and their possible
4826 values.
4827
4828 This function adheres to the POSIX syntax for command line options, with GNU
4829 extensions. In general, this means that options have long names instead of
4830 single letters, and are introduced with a double dash \"--\". Support for
4831 bundling of command line options, as was the case with the more traditional
4832 single-letter approach, is provided but not enabled by default.")
4833 ;; Can be used with either license.
4834 (license (list (package-license perl) gpl2+))))
4835
4836 (define-public perl-getopt-long-descriptive
4837 (package
4838 (name "perl-getopt-long-descriptive")
4839 (version "0.103")
4840 (source
4841 (origin
4842 (method url-fetch)
4843 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4844 "Getopt-Long-Descriptive-" version ".tar.gz"))
4845 (sha256
4846 (base32
4847 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
4848 (build-system perl-build-system)
4849 (native-inputs
4850 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4851 ("perl-test-fatal" ,perl-test-fatal)
4852 ("perl-test-warnings" ,perl-test-warnings)))
4853 (propagated-inputs
4854 `(("perl-params-validate" ,perl-params-validate)
4855 ("perl-sub-exporter" ,perl-sub-exporter)))
4856 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
4857 (synopsis "Getopt::Long, but simpler and more powerful")
4858 (description "Getopt::Long::Descriptive is yet another Getopt library.
4859 It's built atop Getopt::Long, and gets a lot of its features, but tries to
4860 avoid making you think about its huge array of options. It also provides
4861 usage (help) messages, data validation, and a few other useful features.")
4862 (license (package-license perl))))
4863
4864 (define-public perl-getopt-tabular
4865 (package
4866 (name "perl-getopt-tabular")
4867 (version "0.3")
4868 (source (origin
4869 (method url-fetch)
4870 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
4871 "Getopt-Tabular-" version ".tar.gz"))
4872 (sha256
4873 (base32
4874 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
4875 (build-system perl-build-system)
4876 (synopsis "Table-driven argument parsing for Perl")
4877 (description
4878 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
4879 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
4880 (home-page "https://metacpan.org/release/Getopt-Tabular")
4881 (license (package-license perl))))
4882
4883 (define-public perl-graph
4884 (package
4885 (name "perl-graph")
4886 (version "0.9704")
4887 (source
4888 (origin
4889 (method url-fetch)
4890 (uri (string-append
4891 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
4892 version
4893 ".tar.gz"))
4894 (sha256
4895 (base32
4896 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
4897 (build-system perl-build-system)
4898 (home-page "https://metacpan.org/release/Graph")
4899 (synopsis "Graph data structures and algorithms")
4900 (description "This is @code{Graph}, a Perl module for dealing with graphs,
4901 the abstract data structures.")
4902 (license (package-license perl))))
4903
4904 (define-public perl-guard
4905 (package
4906 (name "perl-guard")
4907 (version "1.023")
4908 (source (origin
4909 (method url-fetch)
4910 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
4911 version ".tar.gz"))
4912 (sha256
4913 (base32
4914 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
4915 (build-system perl-build-system)
4916 (home-page "https://metacpan.org/release/Guard")
4917 (synopsis "Safe cleanup blocks implemented as guards")
4918 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
4919 something (usually an object) that \"guards\" a resource, ensuring that it is
4920 cleaned up when expected.
4921
4922 Specifically, this module supports two different types of guards: guard
4923 objects, which execute a given code block when destroyed, and scoped guards,
4924 which are tied to the scope exit.")
4925 (license (package-license perl))))
4926
4927 (define-public perl-hash-fieldhash
4928 (package
4929 (name "perl-hash-fieldhash")
4930 (version "0.15")
4931 (source
4932 (origin
4933 (method url-fetch)
4934 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
4935 "Hash-FieldHash-" version ".tar.gz"))
4936 (sha256
4937 (base32
4938 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
4939 (build-system perl-build-system)
4940 (arguments
4941 `(#:phases
4942 (modify-phases %standard-phases
4943 (add-before 'configure 'set-perl-search-path
4944 (lambda _
4945 ;; Work around "dotless @INC" build failure.
4946 (setenv "PERL5LIB"
4947 (string-append (getcwd) ":"
4948 (getenv "PERL5LIB")))
4949 #t)))))
4950 (native-inputs
4951 `(("perl-module-build" ,perl-module-build)
4952 ("perl-test-leaktrace" ,perl-test-leaktrace)))
4953 (home-page "https://metacpan.org/release/Hash-FieldHash")
4954 (synopsis "Lightweight field hash for inside-out objects")
4955 (description "@code{Hash::FieldHash} provides the field hash mechanism
4956 which supports the inside-out technique. It is an alternative to
4957 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
4958 relic support.")
4959 (license (package-license perl))))
4960
4961 (define-public perl-hash-merge
4962 (package
4963 (name "perl-hash-merge")
4964 (version "0.300")
4965 (source
4966 (origin
4967 (method url-fetch)
4968 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4969 "Hash-Merge-" version ".tar.gz"))
4970 (sha256
4971 (base32
4972 "0h3wfnpv5d4d3f9xzmwkchay6251nhzngdv3f6xia56mj4hxabs0"))))
4973 (build-system perl-build-system)
4974 (propagated-inputs
4975 `(("perl-clone-choose" ,perl-clone-choose)))
4976 (home-page "https://metacpan.org/release/Hash-Merge")
4977 (synopsis "Merge arbitrarily deep hashes into a single hash")
4978 (description "Hash::Merge merges two arbitrarily deep hashes into a single
4979 hash. That is, at any level, it will add non-conflicting key-value pairs from
4980 one hash to the other, and follows a set of specific rules when there are key
4981 value conflicts. The hash is followed recursively, so that deeply nested
4982 hashes that are at the same level will be merged when the parent hashes are
4983 merged.")
4984 (license (package-license perl))))
4985
4986 (define-public perl-hash-multivalue
4987 (package
4988 (name "perl-hash-multivalue")
4989 (version "0.16")
4990 (source
4991 (origin
4992 (method url-fetch)
4993 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
4994 "Hash-MultiValue-" version ".tar.gz"))
4995 (sha256
4996 (base32
4997 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
4998 (build-system perl-build-system)
4999 (home-page "https://metacpan.org/release/Hash-MultiValue")
5000 (synopsis "Store multiple values per key")
5001 (description "Hash::MultiValue is an object (and a plain hash reference)
5002 that may contain multiple values per key, inspired by MultiDict of WebOb.")
5003 (license (package-license perl))))
5004
5005 (define-public perl-hook-lexwrap
5006 (package
5007 (name "perl-hook-lexwrap")
5008 (version "0.26")
5009 (source
5010 (origin
5011 (method url-fetch)
5012 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5013 "Hook-LexWrap-" version ".tar.gz"))
5014 (sha256
5015 (base32 "0bgc6w8zs45n6ksgk0zisn9a2vcr3lmzipkan2a94kzrk1gxq2xn"))))
5016 (build-system perl-build-system)
5017 (home-page
5018 "https://metacpan.org/release/Hook-LexWrap")
5019 (synopsis "Lexically scoped subroutine wrappers")
5020 (description
5021 "Hook::LexWrap allows you to install a pre- or post-wrapper (or
5022 both) around an existing subroutine. Unlike other modules that
5023 provide this capacity (e.g., Hook::PreAndPost and Hook::WrapSub),
5024 Hook::LexWrap implements wrappers in such a way that the standard
5025 caller function works correctly within the wrapped subroutine.")
5026 (license perl-license)))
5027
5028 (define-public perl-importer
5029 (package
5030 (name "perl-importer")
5031 (version "0.025")
5032 (source
5033 (origin
5034 (method url-fetch)
5035 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
5036 version ".tar.gz"))
5037 (sha256
5038 (base32
5039 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
5040 (build-system perl-build-system)
5041 (home-page "https://metacpan.org/release/Importer")
5042 (synopsis "Alternative but compatible interface to modules that export symbols")
5043 (description "This module acts as a layer between Exporter and modules which
5044 consume exports. It is feature-compatible with Exporter, plus some much needed
5045 extras. You can use this to import symbols from any exporter that follows
5046 Exporters specification. The exporter modules themselves do not need to use or
5047 inherit from the Exporter module, they just need to set @@EXPORT and/or other
5048 variables.")
5049 (license (package-license perl))))
5050
5051 (define-public perl-import-into
5052 (package
5053 (name "perl-import-into")
5054 (version "1.002005")
5055 (source
5056 (origin
5057 (method url-fetch)
5058 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5059 "Import-Into-" version ".tar.gz"))
5060 (sha256
5061 (base32
5062 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
5063 (build-system perl-build-system)
5064 (propagated-inputs
5065 `(("perl-module-runtime" ,perl-module-runtime)))
5066 (home-page "https://metacpan.org/release/Import-Into")
5067 (synopsis "Import packages into other packages")
5068 (description "Writing exporters is a pain. Some use Exporter, some use
5069 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
5070 some things are pragmas. Exporting on someone else's behalf is harder. The
5071 exporters don't provide a consistent API for this, and pragmas need to have
5072 their import method called directly, since they effect the current unit of
5073 compilation. Import::Into provides global methods to make this painless.")
5074 (license (package-license perl))))
5075
5076 (define-public perl-inc-latest
5077 (package
5078 (name "perl-inc-latest")
5079 (version "0.500")
5080 (source
5081 (origin
5082 (method url-fetch)
5083 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5084 "inc-latest-" version ".tar.gz"))
5085 (sha256
5086 (base32
5087 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
5088 (build-system perl-build-system)
5089 (home-page "https://metacpan.org/release/inc-latest")
5090 (synopsis "Use modules in inc/ if newer than installed")
5091 (description "The inc::latest module helps bootstrap configure-time
5092 dependencies for CPAN distributions. These dependencies get bundled into the
5093 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
5094 (license asl2.0)))
5095
5096 (define-public perl-indirect
5097 (package
5098 (name "perl-indirect")
5099 (version "0.39")
5100 (source
5101 (origin
5102 (method url-fetch)
5103 (uri (string-append
5104 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
5105 version ".tar.gz"))
5106 (sha256
5107 (base32 "1r971mykvvsrzrp6a9ccl649ihr84h254jmlfpazv64f6i63qwvi"))))
5108 (build-system perl-build-system)
5109 (home-page "https://metacpan.org/release/indirect")
5110 (synopsis "Lexically warn about using the indirect method call syntax")
5111 (description
5112 "Indirect warns about using the indirect method call syntax.")
5113 (license (package-license perl))))
5114
5115 (define-public perl-inline
5116 (package
5117 (name "perl-inline")
5118 (version "0.81")
5119 (source
5120 (origin
5121 (method url-fetch)
5122 (uri (string-append
5123 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
5124 version ".tar.gz"))
5125 (sha256
5126 (base32
5127 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
5128 (build-system perl-build-system)
5129 (native-inputs
5130 `(("perl-test-warn" ,perl-test-warn)))
5131 (home-page "https://metacpan.org/release/Inline")
5132 (synopsis "Write Perl subroutines in other programming languages")
5133 (description "The @code{Inline} module allows you to put source code
5134 from other programming languages directly (inline) in a Perl script or
5135 module. The code is automatically compiled as needed, and then loaded
5136 for immediate access from Perl.")
5137 (license (package-license perl))))
5138
5139 (define-public perl-inline-c
5140 (package
5141 (name "perl-inline-c")
5142 (version "0.78")
5143 (source
5144 (origin
5145 (method url-fetch)
5146 (uri (string-append
5147 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
5148 version ".tar.gz"))
5149 (sha256
5150 (base32
5151 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
5152 (build-system perl-build-system)
5153 (native-inputs
5154 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
5155 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
5156 ("perl-test-warn" ,perl-test-warn)
5157 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
5158 (propagated-inputs
5159 `(("perl-inline" ,perl-inline)
5160 ("perl-parse-recdescent" ,perl-parse-recdescent)
5161 ("perl-pegex" ,perl-pegex)))
5162 (home-page "https://metacpan.org/release/Inline-C")
5163 (synopsis "C Language Support for Inline")
5164 (description "The @code{Inline::C} module allows you to write Perl
5165 subroutines in C. Since version 0.30 the @code{Inline} module supports
5166 multiple programming languages and each language has its own support module.
5167 This document describes how to use Inline with the C programming language.
5168 It also goes a bit into Perl C internals.")
5169 (license (package-license perl))))
5170
5171 (define-public perl-io-all
5172 (package
5173 (name "perl-io-all")
5174 (version "0.87")
5175 (source
5176 (origin
5177 (method url-fetch)
5178 (uri (string-append
5179 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
5180 version
5181 ".tar.gz"))
5182 (sha256
5183 (base32
5184 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
5185 (build-system perl-build-system)
5186 (propagated-inputs
5187 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
5188 ("perl-file-readbackwards" ,perl-file-readbackwards)))
5189 (home-page "https://metacpan.org/release/IO-All")
5190 (synopsis "@code{IO::All} to Larry Wall!")
5191 (description "@code{IO::All} combines all of the best Perl IO modules into
5192 a single nifty object oriented interface to greatly simplify your everyday
5193 Perl IO idioms. It exports a single function called io, which returns a new
5194 @code{IO::All} object. And that object can do it all!")
5195 (license perl-license)))
5196
5197 (define-public perl-io-captureoutput
5198 (package
5199 (name "perl-io-captureoutput")
5200 (version "1.1105")
5201 (source
5202 (origin
5203 (method url-fetch)
5204 (uri (string-append
5205 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
5206 version
5207 ".tar.gz"))
5208 (sha256
5209 (base32 "11zlfbahac09q3jvwmpijmkwgihwxps85jwy2q7q0wqjragh16df"))))
5210 (build-system perl-build-system)
5211 (home-page "https://metacpan.org/release/IO-CaptureOutput")
5212 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
5213 (description "@code{IO::CaptureOutput} provides routines for capturing
5214 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
5215 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
5216
5217 This module is no longer recommended by its maintainer. Users are advised to
5218 try @code{Capture::Tiny} instead.")
5219 (license (package-license perl))))
5220
5221 (define-public perl-io-interactive
5222 (package
5223 (name "perl-io-interactive")
5224 (version "1.022")
5225 (source
5226 (origin
5227 (method url-fetch)
5228 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5229 "IO-Interactive-" version ".tar.gz"))
5230 (sha256
5231 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
5232 (build-system perl-build-system)
5233 (home-page "https://metacpan.org/release/IO-Interactive")
5234 (synopsis "Utilities for interactive I/O")
5235 (description "This module provides three utility subroutines that make it
5236 easier to develop interactive applications: is_interactive(), interactive(),
5237 and busy().")
5238 (license (package-license perl))))
5239
5240 (define-public perl-io-pager
5241 (package
5242 (name "perl-io-pager")
5243 (version "0.44")
5244 (source
5245 (origin
5246 (method url-fetch)
5247 (uri (string-append
5248 "mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-"
5249 version
5250 ".tgz"))
5251 (sha256
5252 (base32 "0h52gplhc3rij18xc4ngpg5kqv6mylxfzig18xll1aqda8iwa8kl"))))
5253 (build-system perl-build-system)
5254 (arguments
5255 '(#:phases
5256 (modify-phases %standard-phases
5257 (add-after 'unpack 'patch-less
5258 (lambda _
5259 (substitute* "lib/IO/Pager.pm"
5260 (("/usr/local/bin/less', '/usr/bin/less")
5261 (which "less")))
5262 #t)))))
5263 (propagated-inputs
5264 `(("perl-file-which" ,perl-file-which)))
5265 (inputs
5266 `(("less" ,less)))
5267 (home-page "https://metacpan.org/release/IO-Pager")
5268 (synopsis "Select a pager and pipe text to it")
5269 (description
5270 "@code{IO::Pager} can be used to locate an available pager and use it to
5271 display output if a TTY is in use.")
5272 (license (package-license perl))))
5273
5274 (define-public perl-io-string
5275 (package
5276 (name "perl-io-string")
5277 (version "1.08")
5278 (source
5279 (origin
5280 (method url-fetch)
5281 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
5282 "IO-String-" version ".tar.gz"))
5283 (sha256
5284 (base32
5285 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
5286 (build-system perl-build-system)
5287 (home-page "https://metacpan.org/release/IO-String")
5288 (synopsis "Emulate file interface for in-core strings")
5289 (description "IO::String is an IO::File (and IO::Handle) compatible class
5290 that reads or writes data from in-core strings.")
5291 (license (package-license perl))))
5292
5293 (define-public perl-io-stringy
5294 (package
5295 (name "perl-io-stringy")
5296 (version "2.111")
5297 (source
5298 (origin
5299 (method url-fetch)
5300 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
5301 "IO-stringy-" version ".tar.gz"))
5302 (sha256
5303 (base32
5304 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
5305 (build-system perl-build-system)
5306 (home-page "https://metacpan.org/release/IO-stringy")
5307 (synopsis "IO:: interface for reading/writing an array of lines")
5308 (description "This toolkit primarily provides modules for performing both
5309 traditional and object-oriented i/o) on things *other* than normal
5310 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
5311 (license (package-license perl))))
5312
5313 (define-public perl-io-tty
5314 (package
5315 (name "perl-io-tty")
5316 (version "1.14")
5317 (source (origin
5318 (method url-fetch)
5319 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
5320 version ".tar.gz"))
5321 (sha256
5322 (base32
5323 "1dcmxdhrapxvvzlfp6yzz7655f3c6x8jrw0md8ndp2qj27iy9wsi"))))
5324 (build-system perl-build-system)
5325 (home-page "https://metacpan.org/release/IO-Tty")
5326 (synopsis "Perl interface to pseudo ttys")
5327 (description
5328 "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl
5329 interfaces to pseudo ttys.")
5330 (license (package-license perl))))
5331
5332 (define-public perl-ipc-cmd
5333 (package
5334 (name "perl-ipc-cmd")
5335 (version "1.02")
5336 (source
5337 (origin
5338 (method url-fetch)
5339 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
5340 version ".tar.gz"))
5341 (sha256
5342 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
5343 (build-system perl-build-system)
5344 (home-page "https://metacpan.org/release/IPC-Cmd")
5345 (synopsis "Run interactive command-line programs")
5346 (description "@code{IPC::Cmd} allows for the searching and execution of
5347 any binary on your system. It adheres to verbosity settings and is able to
5348 run interactively. It also has an option to capture output/error buffers.")
5349 (license (package-license perl))))
5350
5351 (define-public perl-ipc-run
5352 (package
5353 (name "perl-ipc-run")
5354 (version "20180523.0")
5355 (source
5356 (origin
5357 (method url-fetch)
5358 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
5359 "IPC-Run-" version ".tar.gz"))
5360 (sha256
5361 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
5362 (build-system perl-build-system)
5363 (propagated-inputs
5364 `(("perl-io-tty" ,perl-io-tty)))
5365 (arguments
5366 `(#:phases (modify-phases %standard-phases
5367 (add-before
5368 'check 'disable-w32-test
5369 (lambda _
5370 ;; This test fails, and we're not really interested in
5371 ;; it, so disable it.
5372 (delete-file "t/win32_compile.t")
5373 #t)))))
5374 (home-page "https://metacpan.org/release/IPC-Run")
5375 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
5376 (description "IPC::Run allows you run and interact with child processes
5377 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
5378 are supported and may be mixed. Likewise, functional and OO API styles are
5379 both supported and may be mixed.")
5380 (license (package-license perl))))
5381
5382 (define-public perl-ipc-run3
5383 (package
5384 (name "perl-ipc-run3")
5385 (version "0.048")
5386 (source (origin
5387 (method url-fetch)
5388 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5389 "IPC-Run3-" version ".tar.gz"))
5390 (sha256
5391 (base32
5392 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
5393 (build-system perl-build-system)
5394 (synopsis "Run a subprocess with input/output redirection")
5395 (description
5396 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
5397 stdout, and/or stderr to files and perl data structures. It aims to satisfy
5398 99% of the need for using system, qx, and open3 with a simple, extremely
5399 Perlish API and none of the bloat and rarely used features of IPC::Run.")
5400 (home-page "https://metacpan.org/release/IPC-Run3")
5401 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
5402 ;; licenses, any version."
5403 (license (list bsd-3 gpl3+))))
5404
5405 (define-public perl-ipc-sharelite
5406 (package
5407 (name "perl-ipc-sharelite")
5408 (version "0.17")
5409 (source
5410 (origin
5411 (method url-fetch)
5412 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
5413 "IPC-ShareLite-" version ".tar.gz"))
5414 (sha256
5415 (base32
5416 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
5417 (build-system perl-build-system)
5418 (home-page "https://metacpan.org/release/IPC-ShareLite")
5419 (synopsis "Lightweight interface to shared memory")
5420 (description "IPC::ShareLite provides a simple interface to shared memory,
5421 allowing data to be efficiently communicated between processes.")
5422 (license (package-license perl))))
5423
5424 (define-public perl-ipc-system-simple
5425 (package
5426 (name "perl-ipc-system-simple")
5427 (version "1.26")
5428 (source (origin
5429 (method url-fetch)
5430 (uri (string-append
5431 "mirror://cpan/authors/id/J/JK/JKEENAN/IPC-System-Simple-"
5432 version ".tar.gz"))
5433 (sha256
5434 (base32
5435 "1zb5ni8ikaq6s60amwdsq69nz8gxl484yiga6ax5nqp8v0hpy5sp"))))
5436 (build-system perl-build-system)
5437 (home-page "https://metacpan.org/release/IPC-System-Simple")
5438 (synopsis "Run commands simply, with detailed diagnostics")
5439 (description "Calling Perl's in-built @code{system} function is easy,
5440 determining if it was successful is hard. Let's face it, @code{$?} isn't the
5441 nicest variable in the world to play with, and even if you do check it,
5442 producing a well-formatted error string takes a lot of work.
5443
5444 @code{IPC::System::Simple} takes the hard work out of calling external
5445 commands.")
5446 (license (package-license perl))))
5447
5448 (define-public perl-json
5449 (package
5450 (name "perl-json")
5451 (version "4.02")
5452 (source
5453 (origin
5454 (method url-fetch)
5455 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
5456 "JSON-" version ".tar.gz"))
5457 (sha256
5458 (base32
5459 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
5460 (build-system perl-build-system)
5461 (propagated-inputs
5462 `(("perl-json-xs" ,perl-json-xs))) ;recommended
5463 (home-page "https://metacpan.org/release/JSON")
5464 (synopsis "JSON encoder/decoder for Perl")
5465 (description "This module converts Perl data structures to JSON and vice
5466 versa using either JSON::XS or JSON::PP.")
5467 (license (package-license perl))))
5468
5469 (define-public perl-json-any
5470 (package
5471 (name "perl-json-any")
5472 (version "1.39")
5473 (source
5474 (origin
5475 (method url-fetch)
5476 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5477 "JSON-Any-" version ".tar.gz"))
5478 (sha256
5479 (base32
5480 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
5481 (build-system perl-build-system)
5482 (native-inputs
5483 `(("perl-test-fatal" ,perl-test-fatal)
5484 ("perl-test-requires" ,perl-test-requires)
5485 ("perl-test-warnings" ,perl-test-warnings)
5486 ("perl-test-without-module" ,perl-test-without-module)))
5487 (propagated-inputs
5488 `(("perl-namespace-clean" ,perl-namespace-clean)))
5489 (home-page "https://metacpan.org/release/JSON-Any")
5490 (synopsis "Wrapper for Perl JSON classes")
5491 (description
5492 "This module tries to provide a coherent API to bring together the
5493 various JSON modules currently on CPAN. This module will allow you to code to
5494 any JSON API and have it work regardless of which JSON module is actually
5495 installed.")
5496 (license (package-license perl))))
5497
5498 (define-public perl-json-maybexs
5499 (package
5500 (name "perl-json-maybexs")
5501 (version "1.004000")
5502 (source
5503 (origin
5504 (method url-fetch)
5505 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5506 "JSON-MaybeXS-" version ".tar.gz"))
5507 (sha256
5508 (base32
5509 "09m1w03as6n0a00pzvaldkhm494yaf5n0g3j2cwwfx24iwpa1gar"))))
5510 (build-system perl-build-system)
5511 (native-inputs
5512 `(("perl-test-without-module" ,perl-test-without-module)))
5513 (inputs
5514 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
5515 (home-page "https://metacpan.org/release/JSON-MaybeXS")
5516 (synopsis "Cpanel::JSON::XS with fallback")
5517 (description "This module first checks to see if either Cpanel::JSON::XS
5518 or JSON::XS is already loaded, in which case it uses that module. Otherwise
5519 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
5520 either uses the first module it finds or throws an error.")
5521 (license (package-license perl))))
5522
5523 (define-public perl-json-xs
5524 (package
5525 (name "perl-json-xs")
5526 (version "4.0")
5527 (source
5528 (origin
5529 (method url-fetch)
5530 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
5531 "JSON-XS-" version ".tar.gz"))
5532 (sha256
5533 (base32
5534 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
5535 (build-system perl-build-system)
5536 (native-inputs
5537 `(("perl-canary-stability" ,perl-canary-stability)))
5538 (propagated-inputs
5539 `(("perl-common-sense" ,perl-common-sense)
5540 ("perl-types-serialiser" ,perl-types-serialiser)))
5541 (home-page "https://metacpan.org/release/JSON-XS")
5542 (synopsis "JSON serialising/deserialising for Perl")
5543 (description "This module converts Perl data structures to JSON and vice
5544 versa.")
5545 (license (package-license perl))))
5546
5547 (define-public perl-lexical-sealrequirehints
5548 (package
5549 (name "perl-lexical-sealrequirehints")
5550 (version "0.011")
5551 (source
5552 (origin
5553 (method url-fetch)
5554 (uri (string-append
5555 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
5556 version
5557 ".tar.gz"))
5558 (sha256
5559 (base32
5560 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
5561 (build-system perl-build-system)
5562 (native-inputs
5563 `(("perl-module-build" ,perl-module-build)))
5564 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
5565 (synopsis "Prevent leakage of lexical hints")
5566 (description
5567 "Lexical::SealRequireHints prevents leakage of lexical hints")
5568 (license (package-license perl))))
5569
5570 (define-public perl-log-any
5571 (package
5572 (name "perl-log-any")
5573 (version "1.707")
5574 (source
5575 (origin
5576 (method url-fetch)
5577 (uri (string-append "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-"
5578 version ".tar.gz"))
5579 (sha256
5580 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
5581 (build-system perl-build-system)
5582 (home-page "https://metacpan.org/release/Log-Any")
5583 (synopsis "Bringing loggers and listeners together")
5584 (description "@code{Log::Any} provides a standard log production API for
5585 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
5586 for log consumption, whether screen, file or another logging mechanism like
5587 @code{Log::Dispatch} or @code{Log::Log4perl}.
5588
5589 A CPAN module uses @code{Log::Any} to get a log producer object. An
5590 application, in turn, may choose one or more logging mechanisms via
5591 @code{Log::Any::Adapter}, or none at all.
5592
5593 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
5594 itself, which makes it appropriate for even small CPAN modules to use. It
5595 defaults to @code{null} logging activity, so a module can safely log without
5596 worrying about whether the application has chosen (or will ever choose) a
5597 logging mechanism.")
5598 (license (package-license perl))))
5599
5600 (define-public perl-log-any-adapter-log4perl
5601 (package
5602 (name "perl-log-any-adapter-log4perl")
5603 (version "0.09")
5604 (source
5605 (origin
5606 (method url-fetch)
5607 (uri (string-append
5608 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
5609 version
5610 ".tar.gz"))
5611 (sha256
5612 (base32
5613 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
5614 (build-system perl-build-system)
5615 (propagated-inputs
5616 `(("perl-log-any" ,perl-log-any)
5617 ("perl-log-log4perl" ,perl-log-log4perl)))
5618 (home-page
5619 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
5620 (synopsis "Log::Any adapter for Log::Log4perl")
5621 (description "@code{Log::Any::Adapter::Log4perl} provides a
5622 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
5623 (license (package-license perl))))
5624
5625 (define-public perl-log-log4perl
5626 (package
5627 (name "perl-log-log4perl")
5628 (version "1.49")
5629 (source
5630 (origin
5631 (method url-fetch)
5632 (uri (string-append
5633 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
5634 version
5635 ".tar.gz"))
5636 (sha256
5637 (base32
5638 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
5639 (build-system perl-build-system)
5640 (home-page
5641 "https://metacpan.org/release/Log-Log4perl")
5642 (synopsis "Log4j implementation for Perl")
5643 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
5644 the logging behaviour of your system from the outside. It implements the
5645 widely popular (Java-based) Log4j logging package in pure Perl.")
5646 (license (package-license perl))))
5647
5648 (define-public perl-log-report-optional
5649 (package
5650 (name "perl-log-report-optional")
5651 (version "1.06")
5652 (source (origin
5653 (method url-fetch)
5654 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5655 "Log-Report-Optional-" version ".tar.gz"))
5656 (sha256
5657 (base32
5658 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
5659 (build-system perl-build-system)
5660 (propagated-inputs
5661 `(("perl-string-print" ,perl-string-print)))
5662 (home-page "https://metacpan.org/release/Log-Report-Optional")
5663 (synopsis "Log::Report in the lightest form")
5664 (description
5665 "This module allows libraries to have a dependency to a small module
5666 instead of the full Log-Report distribution. The full power of
5667 @code{Log::Report} is only released when the main program uses that module.
5668 In that case, the module using the @code{Optional} will also use the full
5669 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
5670 version.")
5671 (license (package-license perl))))
5672
5673 (define-public perl-log-report
5674 (package
5675 (name "perl-log-report")
5676 (version "1.10")
5677 (source (origin
5678 (method url-fetch)
5679 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5680 "Log-Report-" version ".tar.gz"))
5681 (sha256
5682 (base32
5683 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
5684 (build-system perl-build-system)
5685 (propagated-inputs
5686 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5687 ("perl-log-report-optional" ,perl-log-report-optional)
5688 ("perl-string-print" ,perl-string-print)))
5689 (home-page "https://metacpan.org/release/Log-Report")
5690 (synopsis "Get messages to users and logs")
5691 (description
5692 "@code{Log::Report} combines three tasks which are closely related in
5693 one: logging, exceptions, and translations.")
5694 (license (package-license perl))))
5695
5696 (define-public perl-libintl-perl
5697 (package
5698 (name "perl-libintl-perl")
5699 (version "1.31")
5700 (source
5701 (origin
5702 (method url-fetch)
5703 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
5704 "libintl-perl-" version ".tar.gz"))
5705 (sha256
5706 (base32 "1afandrl44mq9c32r57xr489gkfswdgc97h8x86k98dz1byv3l6a"))))
5707 (build-system perl-build-system)
5708 (arguments
5709 `(#:phases
5710 (modify-phases %standard-phases
5711 (add-before 'configure 'set-perl-search-path
5712 (lambda _
5713 ;; Work around "dotless @INC" build failure.
5714 (setenv "PERL5LIB" (string-append (getcwd) ":"
5715 (getenv "PERL5LIB")))
5716 #t)))))
5717 (propagated-inputs
5718 `(("perl-file-sharedir" ,perl-file-sharedir)))
5719 (home-page "https://metacpan.org/release/libintl-perl")
5720 (synopsis "High-level interface to Uniforum message translation")
5721 (description "This package is an internationalization library for Perl
5722 that aims to be compatible with the Uniforum message translations system as
5723 implemented for example in GNU gettext.")
5724 (license gpl3+)))
5725
5726 (define-public perl-lingua-translit
5727 (package
5728 (name "perl-lingua-translit")
5729 (version "0.28")
5730 (source
5731 (origin
5732 (method url-fetch)
5733 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
5734 "Lingua-Translit-" version ".tar.gz"))
5735 (sha256
5736 (base32
5737 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
5738 (build-system perl-build-system)
5739 (home-page "https://metacpan.org/release/Lingua-Translit")
5740 (synopsis "Transliterate text between writing systems")
5741 (description "@code{Lingua::Translit} can be used to convert text from one
5742 writing system to another, based on national or international transliteration
5743 tables. Where possible a reverse transliteration is supported.")
5744 (license (package-license perl))))
5745
5746 (define-public perl-list-allutils
5747 (package
5748 (name "perl-list-allutils")
5749 (version "0.09")
5750 (source
5751 (origin
5752 (method url-fetch)
5753 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5754 "List-AllUtils-" version ".tar.gz"))
5755 (sha256
5756 (base32
5757 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
5758 (build-system perl-build-system)
5759 (native-inputs
5760 `(("perl-test-warnings" ,perl-test-warnings)))
5761 (propagated-inputs
5762 `(("perl-list-moreutils" ,perl-list-moreutils)
5763 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
5764 (home-page "https://metacpan.org/release/List-AllUtils")
5765 (synopsis "Combination of List::Util and List::MoreUtils")
5766 (description "This module exports all of the functions that either
5767 List::Util or List::MoreUtils defines, with preference to List::Util.")
5768 (license (package-license perl))))
5769
5770 (define-public perl-list-compare
5771 (package
5772 (name "perl-list-compare")
5773 (version "0.53")
5774 (source
5775 (origin
5776 (method url-fetch)
5777 (uri (string-append
5778 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
5779 version
5780 ".tar.gz"))
5781 (sha256
5782 (base32
5783 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
5784 (build-system perl-build-system)
5785 (native-inputs
5786 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
5787 (home-page "https://metacpan.org/release/List-Compare")
5788 (synopsis "Compare elements of two or more lists")
5789 (description "@code{List::Compare} provides a module to perform
5790 comparative operations on two or more lists. Provided operations include
5791 intersections, unions, unique elements, complements and many more.")
5792 (license (package-license perl))))
5793
5794 (define-public perl-list-moreutils
5795 (package
5796 (name "perl-list-moreutils")
5797 (version "0.428")
5798 (source
5799 (origin
5800 (method url-fetch)
5801 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5802 "List-MoreUtils-" version ".tar.gz"))
5803 (sha256
5804 (base32
5805 "1hkc8xkd27yzfkgaglzn77j4qjmilyva4gaz3pc64vpism2hjgki"))))
5806 (build-system perl-build-system)
5807 (arguments
5808 `(#:phases
5809 (modify-phases %standard-phases
5810 (add-before 'configure 'set-perl-search-path
5811 (lambda _
5812 ;; Work around "dotless @INC" build failure.
5813 (setenv "PERL5LIB"
5814 (string-append (getcwd) ":"
5815 (getenv "PERL5LIB")))
5816 #t)))))
5817 (native-inputs
5818 `(("perl-config-autoconf" ,perl-config-autoconf)
5819 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5820 (propagated-inputs
5821 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5822 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
5823 (home-page "https://metacpan.org/release/List-MoreUtils")
5824 (synopsis "Provide the stuff missing in List::Util")
5825 (description "List::MoreUtils provides some trivial but commonly needed
5826 functionality on lists which is not going to go into List::Util.")
5827 (license (package-license perl))))
5828
5829 (define-public perl-list-moreutils-xs
5830 (package
5831 (name "perl-list-moreutils-xs")
5832 (version "0.428")
5833 (source
5834 (origin
5835 (method url-fetch)
5836 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
5837 version ".tar.gz"))
5838 (sha256
5839 (base32
5840 "0bfndmnkqaaf3gffprak143bzplxd69c368jxgr7rzlx88hyd7wx"))))
5841 (build-system perl-build-system)
5842 (native-inputs
5843 `(("perl-config-autoconf" ,perl-config-autoconf)
5844 ("perl-inc-latest" ,perl-inc-latest)
5845 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5846 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
5847 (synopsis "Provide the stuff missing in List::Util in XS")
5848 (description "@code{List::MoreUtils::XS} provides some trivial but
5849 commonly needed functionality on lists which is not going to go into
5850 @code{List::Util}.")
5851 (license asl2.0)))
5852
5853 (define-public perl-list-someutils
5854 (package
5855 (name "perl-list-someutils")
5856 (version "0.56")
5857 (source
5858 (origin
5859 (method url-fetch)
5860 (uri (string-append
5861 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
5862 version
5863 ".tar.gz"))
5864 (sha256
5865 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
5866 (build-system perl-build-system)
5867 (native-inputs
5868 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
5869 (inputs
5870 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5871 ("perl-module-implementation"
5872 ,perl-module-implementation)))
5873 (home-page "https://metacpan.org/release/List-SomeUtils")
5874 (synopsis "Provide the stuff missing in List::Util")
5875 (description "@code{List::SomeUtils} provides some trivial but commonly
5876 needed functionality on lists which is not going to go into @code{List::Util}.
5877
5878 All of the below functions are implementable in only a couple of lines of Perl
5879 code. Using the functions from this module however should give slightly
5880 better performance as everything is implemented in C. The pure-Perl
5881 implementation of these functions only serves as a fallback in case the C
5882 portions of this module couldn't be compiled on this machine.")
5883 (license (package-license perl))))
5884
5885 (define-public perl-mailtools
5886 (package
5887 (name "perl-mailtools")
5888 (version "2.21")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (string-append
5893 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
5894 version
5895 ".tar.gz"))
5896 (sha256
5897 (base32
5898 "1js43bp2dnd8n2rv8clsv749166jnyqnc91k4wkkmw5n4rlbvnaa"))))
5899 (build-system perl-build-system)
5900 (propagated-inputs
5901 `(("perl-timedate" ,perl-timedate)))
5902 (home-page
5903 "https://metacpan.org/release/MailTools")
5904 (synopsis "Bundle of ancient email modules")
5905 (description "MailTools contains the following modules:
5906 @table @asis
5907 @item Mail::Address
5908 Parse email address from a header line.
5909 @item Mail::Cap
5910 Interpret mailcap files: mappings of file-types to applications as used by
5911 many command-line email programs.
5912 @item Mail::Field
5913 Simplifies access to (some) email header fields. Used by Mail::Header.
5914 @item Mail::Filter
5915 Process Mail::Internet messages.
5916 @item Mail::Header
5917 Collection of Mail::Field objects, representing the header of a Mail::Internet
5918 object.
5919 @item Mail::Internet
5920 Represents a single email message, with header and body.
5921 @item Mail::Mailer
5922 Send Mail::Internet emails via direct smtp or local MTA's.
5923 @item Mail::Send
5924 Build a Mail::Internet object, and then send it out using Mail::Mailer.
5925 @item Mail::Util
5926 \"Smart functions\" you should not depend on.
5927 @end table")
5928 (license perl-license)))
5929
5930 (define-public perl-mail-sendmail
5931 (package
5932 (name "perl-mail-sendmail")
5933 (version "0.80")
5934 (source
5935 (origin
5936 (method url-fetch)
5937 (uri (string-append
5938 "mirror://cpan/authors/id/N/NE/NEILB/Mail-Sendmail-"
5939 version
5940 ".tar.gz"))
5941 (sha256
5942 (base32
5943 "1r38qbkj7jwj8cqy1rnqzkk81psxi08b1aiq392817f3bk5ri2jv"))))
5944 (build-system perl-build-system)
5945 (arguments `(#:tests? #f)) ;socket not available during build
5946 (home-page "https://metacpan.org/release/Mail-Sendmail")
5947 (synopsis "Simple platform independent mailer")
5948 (description "Mail::Sendmail is a pure perl module that provides a
5949 simple means to send email from a perl script. The module only
5950 requires Perl5 and a network connection.")
5951 (license perl-license)))
5952
5953 (define-public perl-math-bezier
5954 (package
5955 (name "perl-math-bezier")
5956 (version "0.01")
5957 (source (origin
5958 (method url-fetch)
5959 (uri (string-append
5960 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
5961 version ".tar.gz"))
5962 (sha256
5963 (base32
5964 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
5965 (build-system perl-build-system)
5966 (home-page "https://metacpan.org/release/Math-Bezier")
5967 (synopsis "Solution of bezier curves")
5968 (description "This module implements the algorithm for the solution of Bezier
5969 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
5970 Bezier Curve Drawing\".")
5971 (license perl-license)))
5972
5973 (define-public perl-math-round
5974 (package
5975 (name "perl-math-round")
5976 (version "0.07")
5977 (source (origin
5978 (method url-fetch)
5979 (uri (string-append
5980 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
5981 version ".tar.gz"))
5982 (sha256
5983 (base32
5984 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
5985 (build-system perl-build-system)
5986 (home-page "https://metacpan.org/release/Math-Round")
5987 (synopsis "Perl extension for rounding numbers")
5988 (description "@code{Math::Round} provides functions to round numbers,
5989 both positive and negative, in various ways.")
5990 (license perl-license)))
5991
5992 (define-public perl-math-vecstat
5993 (package
5994 (name "perl-math-vecstat")
5995 (version "0.08")
5996 (source (origin
5997 (method url-fetch)
5998 (uri (string-append
5999 "mirror://cpan/authors/id/A/AS/ASPINELLI/Math-VecStat-"
6000 version ".tar.gz"))
6001 (sha256
6002 (base32
6003 "03bdcl9pn2bc9b50c50nhnr7m9wafylnb3v21zlch98h9c78x6j0"))))
6004 (build-system perl-build-system)
6005 (home-page "http://search.cpan.org/dist/Math-VecStat")
6006 (synopsis "Basic numeric stats on vectors")
6007 (description "This package provides some basic statistics on numerical
6008 vectors. All the subroutines can take a reference to the vector to be
6009 operated on.")
6010 (license (package-license perl))))
6011
6012 (define-public perl-memoize
6013 (package
6014 (name "perl-memoize")
6015 (version "1.03")
6016 (source (origin
6017 (method url-fetch)
6018 (uri (string-append
6019 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
6020 version".tgz"))
6021 (sha256
6022 (base32
6023 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
6024 (build-system perl-build-system)
6025 (home-page "https://metacpan.org/release/Memoize")
6026 (synopsis "Make functions faster by trading space for time")
6027 (description "This package transparently speeds up functions by caching
6028 return values, trading space for time.")
6029 (license perl-license)))
6030
6031 (define-public perl-memoize-expirelru
6032 (package
6033 (name "perl-memoize-expirelru")
6034 (version "0.56")
6035 (source
6036 (origin
6037 (method url-fetch)
6038 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6039 "Memoize-ExpireLRU-" version ".tar.gz"))
6040 (sha256
6041 (base32
6042 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
6043 (build-system perl-build-system)
6044 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
6045 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
6046 (description "This module implements an expiry policy for Memoize that
6047 follows LRU semantics, that is, the last n results, where n is specified as
6048 the argument to the CACHESIZE parameter, will be cached.")
6049 (license (package-license perl))))
6050
6051 (define-public perl-mime-charset
6052 (package
6053 (name "perl-mime-charset")
6054 (version "1.012.2")
6055 (source (origin
6056 (method url-fetch)
6057 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
6058 "MIME-Charset-" version ".tar.gz"))
6059 (sha256
6060 (base32
6061 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
6062 (build-system perl-build-system)
6063 (home-page "https://metacpan.org/release/MIME-Charset")
6064 (synopsis "Charset information for MIME messages")
6065 (description
6066 "@code{MIME::Charset} provides information about character sets used for
6067 MIME messages on Internet.")
6068 (license (package-license perl))))
6069
6070 (define-public perl-mime-tools
6071 (package
6072 (name "perl-mime-tools")
6073 (version "5.509")
6074 (source
6075 (origin
6076 (method url-fetch)
6077 (uri (string-append
6078 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
6079 version
6080 ".tar.gz"))
6081 (sha256
6082 (base32
6083 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
6084 (build-system perl-build-system)
6085 (native-inputs
6086 `(("perl-test-deep" ,perl-test-deep)))
6087 (inputs
6088 `(("perl-convert-binhex" ,perl-convert-binhex)))
6089 (propagated-inputs
6090 `(("perl-mailtools" ,perl-mailtools)))
6091 (home-page
6092 "https://metacpan.org/release/MIME-tools")
6093 (synopsis "Tools to manipulate MIME messages")
6094 (description
6095 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
6096 decoding, and generating single- or multipart (even nested multipart) MIME
6097 messages.")
6098 (license perl-license)))
6099
6100 (define-public perl-mime-types
6101 (package
6102 (name "perl-mime-types")
6103 (version "2.17")
6104 (source
6105 (origin
6106 (method url-fetch)
6107 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
6108 "MIME-Types-" version ".tar.gz"))
6109 (sha256
6110 (base32
6111 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
6112 (build-system perl-build-system)
6113 (home-page "https://metacpan.org/release/MIME-Types")
6114 (synopsis "Definition of MIME types")
6115 (description "This module provides a list of known mime-types, combined
6116 from various sources. For instance, it contains all IANA types and the
6117 knowledge of Apache.")
6118 (license (package-license perl))))
6119
6120 (define-public perl-mixin-linewise
6121 (package
6122 (name "perl-mixin-linewise")
6123 (version "0.108")
6124 (source (origin
6125 (method url-fetch)
6126 (uri (string-append
6127 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
6128 version ".tar.gz"))
6129 (sha256
6130 (base32
6131 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
6132 (build-system perl-build-system)
6133 (inputs
6134 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
6135 ("perl-sub-exporter" ,perl-sub-exporter)))
6136 (home-page "https://metacpan.org/release/Mixin-Linewise")
6137 (synopsis "Write your linewise code for handles; this does the rest")
6138 (description "It's boring to deal with opening files for IO, converting
6139 strings to handle-like objects, and all that. With
6140 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
6141 just write a method to handle handles, and methods for handling strings and
6142 file names are added for you.")
6143 (license (package-license perl))))
6144
6145 (define-public perl-modern-perl
6146 (package
6147 (name "perl-modern-perl")
6148 (version "1.20181021")
6149 (source
6150 (origin
6151 (method url-fetch)
6152 (uri (string-append
6153 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
6154 version ".tar.gz"))
6155 (sha256
6156 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
6157 (build-system perl-build-system)
6158 (native-inputs
6159 `(("perl-module-build" ,perl-module-build)))
6160 (home-page
6161 "https://metacpan.org/release/Modern-Perl")
6162 (synopsis
6163 "Enable all of the features of Modern Perl with one import")
6164 (description "@code{Modern::Perl} provides a simple way to enable
6165 multiple, by now, standard libraries in a Perl program.")
6166 (license (package-license perl))))
6167
6168 (define-public perl-module-build-tiny
6169 (package
6170 (name "perl-module-build-tiny")
6171 (version "0.039")
6172 (source
6173 (origin
6174 (method url-fetch)
6175 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6176 "Module-Build-Tiny-" version ".tar.gz"))
6177 (sha256
6178 (base32
6179 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
6180 (build-system perl-build-system)
6181 (native-inputs
6182 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6183 ("perl-extutils-config" ,perl-extutils-config)
6184 ("perl-extutils-helpers" ,perl-extutils-helpers)
6185 ("perl-test-harness" ,perl-test-harness)))
6186 (propagated-inputs
6187 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6188 ("perl-extutils-config" ,perl-extutils-config)
6189 ("perl-extutils-helpers" ,perl-extutils-helpers)
6190 ("perl-test-harness" ,perl-test-harness)))
6191 (home-page "https://metacpan.org/release/Module-Build-Tiny")
6192 (synopsis "Tiny replacement for Module::Build")
6193 (description "Many Perl distributions use a Build.PL file instead of a
6194 Makefile.PL file to drive distribution configuration, build, test and
6195 installation. Traditionally, Build.PL uses Module::Build as the underlying
6196 build system. This module provides a simple, lightweight, drop-in
6197 replacement. Whereas Module::Build has over 6,700 lines of code; this module
6198 has less than 120, yet supports the features needed by most distributions.")
6199 (license (package-license perl))))
6200
6201 (define-public perl-module-build-withxspp
6202 (package
6203 (name "perl-module-build-withxspp")
6204 (version "0.14")
6205 (source
6206 (origin
6207 (method url-fetch)
6208 (uri (string-append
6209 "mirror://cpan/authors/id/S/SM/SMUELLER/Module-Build-WithXSpp-"
6210 version
6211 ".tar.gz"))
6212 (sha256
6213 (base32
6214 "0d39fjg9c0n820bk3fb50vvlwhdny4hdl69xmlyzql5xzp4cicsk"))))
6215 (build-system perl-build-system)
6216 (native-inputs
6217 `(("perl-module-build" ,perl-module-build)))
6218 (propagated-inputs
6219 `(("perl-extutils-cppguess" ,perl-extutils-cppguess)
6220 ("perl-extutils-xspp" ,perl-extutils-xspp)
6221 ("perl-module-build" ,perl-module-build)))
6222 (home-page
6223 "https://metacpan.org/release/Module-Build-WithXSpp")
6224 (synopsis
6225 "The module provides an XS++ enhanced flavour of Module::Build")
6226 (description "This subclass of Module::Build adds some tools and
6227 processes to make it easier to use for wrapping C++ using XS++
6228 (ExtUtils::XSpp).")
6229 (license (package-license perl))))
6230
6231 (define-public perl-module-build-xsutil
6232 (package
6233 (name "perl-module-build-xsutil")
6234 (version "0.16")
6235 (source (origin
6236 (method url-fetch)
6237 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
6238 "Module-Build-XSUtil-" version ".tar.gz"))
6239 (sha256
6240 (base32
6241 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
6242 (build-system perl-build-system)
6243 (native-inputs
6244 `(("perl-capture-tiny" ,perl-capture-tiny)
6245 ("perl-cwd-guard" ,perl-cwd-guard)
6246 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
6247 ("perl-module-build" ,perl-module-build)))
6248 (propagated-inputs
6249 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
6250 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
6251 (synopsis "Module::Build class for building XS modules")
6252 (description
6253 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
6254 for support building XS modules.
6255
6256 This is a list of a new parameters in the @code{Module::Build::new} method:
6257
6258 @enumerate
6259 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
6260 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
6261 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
6262 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
6263 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
6264 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
6265 @file{ppport.h}, and defines some portability stuff which are not supported by
6266 @file{ppport.h}.
6267
6268 It is ported from @code{Module::Install::XSUtil}.
6269 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
6270 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
6271 debug options.
6272 @end enumerate")
6273 (license (package-license perl))))
6274
6275 (define-public perl-module-find
6276 (package
6277 (name "perl-module-find")
6278 (version "0.13")
6279 (source
6280 (origin
6281 (method url-fetch)
6282 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
6283 "Module-Find-" version ".tar.gz"))
6284 (sha256
6285 (base32
6286 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
6287 (build-system perl-build-system)
6288 (home-page "https://metacpan.org/release/Module-Find")
6289 (synopsis "Find and use installed modules in a (sub)category")
6290 (description "Module::Find lets you find and use modules in categories.
6291 This can be useful for auto-detecting driver or plugin modules. You can
6292 differentiate between looking in the category itself or in all
6293 subcategories.")
6294 (license (package-license perl))))
6295
6296 (define-public perl-module-implementation
6297 (package
6298 (name "perl-module-implementation")
6299 (version "0.09")
6300 (source
6301 (origin
6302 (method url-fetch)
6303 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6304 "Module-Implementation-" version ".tar.gz"))
6305 (sha256
6306 (base32
6307 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
6308 (build-system perl-build-system)
6309 (native-inputs
6310 `(("perl-test-fatal" ,perl-test-fatal)
6311 ("perl-test-requires" ,perl-test-requires)))
6312 (propagated-inputs
6313 `(("perl-module-runtime" ,perl-module-runtime)
6314 ("perl-try-tiny" ,perl-try-tiny)))
6315 (home-page "https://metacpan.org/release/Module-Implementation")
6316 (synopsis "Loads alternate underlying implementations for a module")
6317 (description "This module abstracts out the process of choosing one of
6318 several underlying implementations for a module. This can be used to provide
6319 XS and pure Perl implementations of a module, or it could be used to load an
6320 implementation for a given OS or any other case of needing to provide multiple
6321 implementations.")
6322 (license artistic2.0)))
6323
6324 (define-public perl-module-install
6325 (package
6326 (name "perl-module-install")
6327 (version "1.19")
6328 (source
6329 (origin
6330 (method url-fetch)
6331 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6332 "Module-Install-" version ".tar.gz"))
6333 (sha256
6334 (base32
6335 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
6336 (build-system perl-build-system)
6337 (native-inputs
6338 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
6339 (propagated-inputs
6340 `(("perl-archive-zip" ,perl-archive-zip)
6341 ("perl-file-homedir" ,perl-file-homedir)
6342 ("perl-file-remove" ,perl-file-remove)
6343 ("perl-json" ,perl-json)
6344 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
6345 ;; would cause a circular dependency with (gnu packages web), so we
6346 ;; leave it out. It may be resolved at runtime, however.
6347 ;("perl-libwww-perl" ,perl-libwww-perl)
6348 ("perl-module-scandeps" ,perl-module-scandeps)
6349 ("perl-par-dist" ,perl-par-dist)
6350 ("perl-yaml-tiny" ,perl-yaml-tiny)))
6351 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
6352 ;; character handling.
6353 (arguments `(#:tests? #f))
6354 (home-page "https://metacpan.org/release/Module-Install")
6355 (synopsis "Standalone, extensible Perl module installer")
6356 (description "Module::Install is a package for writing installers for
6357 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
6358 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
6359 installation version 5.005 or newer.")
6360 (license (package-license perl))))
6361
6362 (define-public perl-module-manifest
6363 (package
6364 (name "perl-module-manifest")
6365 (version "1.09")
6366 (source
6367 (origin
6368 (method url-fetch)
6369 (uri (string-append
6370 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
6371 version ".tar.gz"))
6372 (sha256
6373 (base32
6374 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
6375 (build-system perl-build-system)
6376 (native-inputs
6377 `(("perl-test-exception" ,perl-test-exception)
6378 ("perl-test-warn" ,perl-test-warn)))
6379 (propagated-inputs
6380 `(("perl-params-util" ,perl-params-util)))
6381 (home-page "https://metacpan.org/release/Module-Manifest")
6382 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
6383 (description
6384 "@code{Module::Manifest} is a simple utility module created originally for
6385 use in @code{Module::Inspector}.
6386
6387 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
6388 examine the contents, and perform some simple tasks. It can also load the
6389 @file{MANIFEST.SKIP} file and check that.")
6390 (license perl-license)))
6391
6392 (define-public perl-module-pluggable
6393 (package
6394 (name "perl-module-pluggable")
6395 (version "5.2")
6396 (source
6397 (origin
6398 (method url-fetch)
6399 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
6400 "Module-Pluggable-" version ".tar.gz"))
6401 (sha256
6402 (base32
6403 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
6404 (patches (search-patches "perl-module-pluggable-search.patch"))))
6405 (build-system perl-build-system)
6406 (home-page "https://metacpan.org/release/Module-Pluggable")
6407 (synopsis "Give your Perl module the ability to have plugins")
6408 (description "This module provides a simple but extensible way of having
6409 @code{plugins} for your Perl module.")
6410 (license (package-license perl))))
6411
6412 (define-public perl-module-runtime
6413 (package
6414 (name "perl-module-runtime")
6415 (version "0.016")
6416 (source
6417 (origin
6418 (method url-fetch)
6419 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
6420 "Module-Runtime-" version ".tar.gz"))
6421 (sha256
6422 (base32
6423 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
6424 (build-system perl-build-system)
6425 (native-inputs `(("perl-module-build" ,perl-module-build)))
6426 (home-page "https://metacpan.org/release/Module-Runtime")
6427 (synopsis "Perl runtime module handling")
6428 (description "The functions exported by this module deal with runtime
6429 handling of Perl modules, which are normally handled at compile time.")
6430 (license (package-license perl))))
6431
6432 (define-public perl-module-runtime-conflicts
6433 (package
6434 (name "perl-module-runtime-conflicts")
6435 (version "0.003")
6436 (source
6437 (origin
6438 (method url-fetch)
6439 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6440 "Module-Runtime-Conflicts-" version ".tar.gz"))
6441 (sha256
6442 (base32
6443 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
6444 (build-system perl-build-system)
6445 (native-inputs
6446 `(("perl-module-build" ,perl-module-build)))
6447 (propagated-inputs
6448 `(("perl-module-runtime" ,perl-module-runtime)
6449 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
6450 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
6451 (synopsis "Provide information on conflicts for Module::Runtime")
6452 (description "This module provides conflicts checking for Module::Runtime,
6453 which had a recent release that broke some versions of Moose. It is called
6454 from Moose::Conflicts and moose-outdated.")
6455 (license (package-license perl))))
6456
6457 (define-public perl-module-scandeps
6458 (package
6459 (name "perl-module-scandeps")
6460 (version "1.27")
6461 (source
6462 (origin
6463 (method url-fetch)
6464 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6465 "Module-ScanDeps-" version ".tar.gz"))
6466 (sha256
6467 (base32
6468 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
6469 (build-system perl-build-system)
6470 (native-inputs
6471 `(("perl-test-requires" ,perl-test-requires)))
6472 (home-page "https://metacpan.org/release/Module-ScanDeps")
6473 (synopsis "Recursively scan Perl code for dependencies")
6474 (description "Module::ScanDeps is a module to recursively scan Perl
6475 programs for dependencies.")
6476 (license (package-license perl))))
6477
6478 (define-public perl-module-util
6479 (package
6480 (name "perl-module-util")
6481 (version "1.09")
6482 (source
6483 (origin
6484 (method url-fetch)
6485 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
6486 "Module-Util-" version ".tar.gz"))
6487 (sha256
6488 (base32
6489 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
6490 (build-system perl-build-system)
6491 (native-inputs
6492 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
6493 (home-page "https://metacpan.org/release/Module-Util")
6494 (synopsis "Module name tools and transformations")
6495 (description "This module provides a few useful functions for manipulating
6496 module names. Its main aim is to centralise some of the functions commonly
6497 used by modules that manipulate other modules in some way, like converting
6498 module names to relative paths.")
6499 (license (package-license perl))))
6500
6501 (define-public perl-moo
6502 (package
6503 (name "perl-moo")
6504 (version "1.007000")
6505 (source
6506 (origin
6507 (method url-fetch)
6508 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6509 "Moo-" version ".tar.gz"))
6510 (sha256
6511 (base32
6512 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
6513 (build-system perl-build-system)
6514 (native-inputs
6515 `(("perl-test-fatal" ,perl-test-fatal)))
6516 (propagated-inputs
6517 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
6518 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
6519 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6520 ("perl-import-into" ,perl-import-into)
6521 ("perl-module-runtime" ,perl-module-runtime)
6522 ("perl-role-tiny" ,perl-role-tiny)
6523 ("perl-strictures" ,perl-strictures)))
6524 (home-page "https://metacpan.org/release/Moo")
6525 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
6526 (description "Moo is an extremely light-weight Object Orientation system.
6527 It allows one to concisely define objects and roles with a convenient syntax
6528 that avoids the details of Perl's object system. Moo contains a subset of
6529 Moose and is optimised for rapid startup.")
6530 (license (package-license perl))))
6531
6532 ;; Some packages don't yet work with this newer version of ‘Moo’.
6533 (define-public perl-moo-2
6534 (package
6535 (inherit perl-moo)
6536 (name "perl-moo-2")
6537 (version "2.003006")
6538 (source
6539 (origin
6540 (method url-fetch)
6541 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6542 "Moo-" version ".tar.gz"))
6543 (sha256
6544 (base32 "0wi4gyp5kn4lbags0hrax3c9jj9spxg4d11fbrdh0ican4m0kcmw"))))
6545 (propagated-inputs
6546 `(("perl-role-tiny" ,perl-role-tiny-2)
6547 ("perl-sub-name" ,perl-sub-name)
6548 ("perl-sub-quote" ,perl-sub-quote)
6549 ("perl-strictures" ,perl-strictures-2)
6550 ,@(alist-delete "perl-strictures"
6551 (alist-delete "perl-role-tiny"
6552 (package-propagated-inputs perl-moo)))))
6553 (arguments
6554 `(#:phases
6555 (modify-phases %standard-phases
6556 (add-before 'configure 'set-perl-search-path
6557 (lambda _
6558 ;; Use perl-strictures for testing.
6559 (setenv "MOO_FATAL_WARNINGS" "=1")
6560 #t)))))))
6561
6562 (define-public perl-moose
6563 (package
6564 (name "perl-moose")
6565 (version "2.2012")
6566 (source (origin
6567 (method url-fetch)
6568 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6569 "Moose-" version ".tar.gz"))
6570 (sha256
6571 (base32
6572 "0s9m2pskc8h1k94pbvx0lvf0xgv9xca349isbcsrqdqnkmxf9fs6"))))
6573 (build-system perl-build-system)
6574 (native-inputs
6575 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6576 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6577 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
6578 ("perl-test-fatal" ,perl-test-fatal)
6579 ("perl-test-requires" ,perl-test-requires)
6580 ("perl-test-warnings" ,perl-test-warnings)))
6581 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
6582 ;; # === Other Modules ===
6583 ;; #
6584 ;; # Module Want Have
6585 ;; # ---------------------------- ---- -------
6586 ;; # Algorithm::C3 any missing
6587 ;; # DBM::Deep any missing
6588 ;; # DateTime any missing
6589 ;; # DateTime::Calendar::Mayan any missing
6590 ;; # DateTime::Format::MySQL any missing
6591 ;; # Declare::Constraints::Simple any missing
6592 ;; # Dist::CheckConflicts any 0.11
6593 ;; # HTTP::Headers any missing
6594 ;; # IO::File any 1.16
6595 ;; # IO::String any missing
6596 ;; # Locale::US any missing
6597 ;; # Module::Refresh any missing
6598 ;; # MooseX::NonMoose any missing
6599 ;; # Params::Coerce any missing
6600 ;; # Regexp::Common any missing
6601 ;; # SUPER any missing
6602 ;; # Test::Deep any missing
6603 ;; # Test::DependentModules any missing
6604 ;; # Test::LeakTrace any missing
6605 ;; # Test::Output any missing
6606 ;; # URI any missing
6607 (propagated-inputs
6608 `(("perl-class-load" ,perl-class-load)
6609 ("perl-class-load-xs" ,perl-class-load-xs)
6610 ("perl-data-optlist" ,perl-data-optlist)
6611 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6612 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
6613 ("perl-devel-partialdump" ,perl-devel-partialdump)
6614 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
6615 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6616 ("perl-eval-closure" ,perl-eval-closure)
6617 ("perl-list-moreutils" ,perl-list-moreutils)
6618 ("perl-module-runtime" ,perl-module-runtime)
6619 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
6620 ("perl-mro-compat" ,perl-mro-compat)
6621 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
6622 ("perl-package-stash" ,perl-package-stash)
6623 ("perl-package-stash-xs" ,perl-package-stash-xs)
6624 ("perl-params-util" ,perl-params-util)
6625 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
6626 ("perl-sub-exporter" ,perl-sub-exporter)
6627 ("perl-sub-name" ,perl-sub-name)
6628 ("perl-task-weaken" ,perl-task-weaken)
6629 ("perl-try-tiny" ,perl-try-tiny)))
6630 (home-page "https://metacpan.org/release/Moose")
6631 (synopsis "Postmodern object system for Perl 5")
6632 (description
6633 "Moose is a complete object system for Perl 5. It provides keywords for
6634 attribute declaration, object construction, inheritance, and maybe more. With
6635 Moose, you define your class declaratively, without needing to know about
6636 blessed hashrefs, accessor methods, and so on. You can concentrate on the
6637 logical structure of your classes, focusing on \"what\" rather than \"how\".
6638 A class definition with Moose reads like a list of very concise English
6639 sentences.")
6640 (license (package-license perl))))
6641
6642 (define-public perl-moosex-emulate-class-accessor-fast
6643 (package
6644 (name "perl-moosex-emulate-class-accessor-fast")
6645 (version "0.009032")
6646 (source
6647 (origin
6648 (method url-fetch)
6649 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6650 "MooseX-Emulate-Class-Accessor-Fast-"
6651 version ".tar.gz"))
6652 (sha256
6653 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
6654 (build-system perl-build-system)
6655 (native-inputs
6656 `(("perl-module-install" ,perl-module-install)
6657 ("perl-test-exception" ,perl-test-exception)))
6658 (propagated-inputs
6659 `(("perl-moose" ,perl-moose)))
6660 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
6661 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
6662 (description "This module attempts to emulate the behavior of
6663 Class::Accessor::Fast as accurately as possible using the Moose attribute
6664 system. The public API of Class::Accessor::Fast is wholly supported, but the
6665 private methods are not.")
6666 (license (package-license perl))))
6667
6668 (define-public perl-moosex-getopt
6669 (package
6670 (name "perl-moosex-getopt")
6671 (version "0.74")
6672 (source
6673 (origin
6674 (method url-fetch)
6675 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6676 "MooseX-Getopt-" version ".tar.gz"))
6677 (sha256
6678 (base32 "091crga5gjyhj2lz55w3ba37xq6pmjg5dx5xccsrzghy8cxxzq0x"))))
6679 (build-system perl-build-system)
6680 (native-inputs
6681 `(("perl-module-build" ,perl-module-build)
6682 ("perl-module-build-tiny" ,perl-module-build-tiny)
6683 ("perl-path-tiny" ,perl-path-tiny)
6684 ("perl-test-deep" ,perl-test-deep)
6685 ("perl-test-fatal" ,perl-test-fatal)
6686 ("perl-test-needs" ,perl-test-needs)
6687 ("perl-test-requires" ,perl-test-requires)
6688 ("perl-test-trap" ,perl-test-trap)
6689 ("perl-test-warnings" ,perl-test-warnings)))
6690 (propagated-inputs
6691 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6692 ("perl-moose" ,perl-moose)
6693 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
6694 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6695 (home-page "https://metacpan.org/release/MooseX-Getopt")
6696 (synopsis "Moose role for processing command line options")
6697 (description "This is a Moose role which provides an alternate constructor
6698 for creating objects using parameters passed in from the command line.")
6699 (license (package-license perl))))
6700
6701 (define-public perl-moosex-markasmethods
6702 (package
6703 (name "perl-moosex-markasmethods")
6704 (version "0.15")
6705 (source
6706 (origin
6707 (method url-fetch)
6708 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
6709 "MooseX-MarkAsMethods-" version ".tar.gz"))
6710 (sha256
6711 (base32
6712 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
6713 (build-system perl-build-system)
6714 (inputs
6715 `(("perl-moose" ,perl-moose)
6716 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6717 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
6718 (synopsis "Mark overload code symbols as methods")
6719 (description "MooseX::MarkAsMethods allows one to easily mark certain
6720 functions as Moose methods. This will allow other packages such as
6721 namespace::autoclean to operate without blowing away your overloads. After
6722 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
6723 being methods, and class extension as well as composition from roles with
6724 overloads will \"just work\".")
6725 (license lgpl2.1)))
6726
6727 (define-public perl-moosex-methodattributes
6728 (package
6729 (name "perl-moosex-methodattributes")
6730 (version "0.31")
6731 (source
6732 (origin
6733 (method url-fetch)
6734 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6735 "MooseX-MethodAttributes-" version ".tar.gz"))
6736 (sha256
6737 (base32
6738 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
6739 (build-system perl-build-system)
6740 (native-inputs
6741 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6742 ("perl-test-fatal" ,perl-test-fatal)
6743 ("perl-test-requires" ,perl-test-requires)))
6744 (propagated-inputs
6745 `(("perl-moose" ,perl-moose)
6746 ("perl-moosex-types" ,perl-moosex-types)
6747 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6748 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
6749 (synopsis "Code attribute introspection")
6750 (description "This module allows code attributes of methods to be
6751 introspected using Moose meta method objects.")
6752 (license (package-license perl))))
6753
6754 (define-public perl-moosex-nonmoose
6755 (package
6756 (name "perl-moosex-nonmoose")
6757 (version "0.26")
6758 (source
6759 (origin
6760 (method url-fetch)
6761 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6762 "MooseX-NonMoose-" version ".tar.gz"))
6763 (sha256
6764 (base32
6765 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
6766 (build-system perl-build-system)
6767 (native-inputs
6768 `(("perl-moose" ,perl-moose)
6769 ("perl-test-fatal" ,perl-test-fatal)))
6770 (propagated-inputs
6771 `(("perl-list-moreutils" ,perl-list-moreutils)
6772 ("perl-module-runtime" ,perl-module-runtime)
6773 ("perl-moose" ,perl-moose)
6774 ("perl-try-tiny" ,perl-try-tiny)))
6775 (home-page "https://metacpan.org/release/MooseX-NonMoose")
6776 (synopsis "Subclassing of non-Moose classes")
6777 (description "MooseX::NonMoose allows for easily subclassing non-Moose
6778 classes with Moose, taking care of the details connected with doing this, such
6779 as setting up proper inheritance from Moose::Object and installing (and
6780 inlining, at make_immutable time) a constructor that makes sure things like
6781 BUILD methods are called. It tries to be as non-intrusive as possible.")
6782 (license (package-license perl))))
6783
6784 (define-public perl-moosex-params-validate
6785 (package
6786 (name "perl-moosex-params-validate")
6787 (version "0.21")
6788 (source
6789 (origin
6790 (method url-fetch)
6791 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6792 "MooseX-Params-Validate-" version ".tar.gz"))
6793 (sha256
6794 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
6795 (build-system perl-build-system)
6796 (native-inputs
6797 `(("perl-moose" ,perl-moose)
6798 ("perl-test-fatal" ,perl-test-fatal)))
6799 (propagated-inputs
6800 `(("perl-devel-caller" ,perl-devel-caller)
6801 ("perl-moose" ,perl-moose)
6802 ("perl-params-validate" ,perl-params-validate)
6803 ("perl-sub-exporter" ,perl-sub-exporter)))
6804 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
6805 (synopsis "Extension of Params::Validate using Moose's types")
6806 (description "This module fills a gap in Moose by adding method parameter
6807 validation to Moose.")
6808 (license (package-license perl))))
6809
6810 (define-public perl-moosex-relatedclassroles
6811 (package
6812 (name "perl-moosex-relatedclassroles")
6813 (version "0.004")
6814 (source
6815 (origin
6816 (method url-fetch)
6817 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
6818 "MooseX-RelatedClassRoles-" version ".tar.gz"))
6819 (sha256
6820 (base32
6821 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
6822 (build-system perl-build-system)
6823 (propagated-inputs
6824 `(("perl-moose" ,perl-moose)
6825 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
6826 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
6827 (synopsis "Apply roles to a related Perl class")
6828 (description "This module applies roles to make a subclass instead of
6829 manually setting up a subclass.")
6830 (license (package-license perl))))
6831
6832 (define-public perl-moosex-role-parameterized
6833 (package
6834 (name "perl-moosex-role-parameterized")
6835 (version "1.10")
6836 (source
6837 (origin
6838 (method url-fetch)
6839 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6840 "MooseX-Role-Parameterized-" version ".tar.gz"))
6841 (sha256
6842 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
6843 (build-system perl-build-system)
6844 (native-inputs
6845 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6846 ("perl-module-build" ,perl-module-build)
6847 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
6848 ("perl-test-fatal" ,perl-test-fatal)
6849 ("perl-test-requires" ,perl-test-requires)))
6850 (propagated-inputs
6851 `(("perl-moose" ,perl-moose)
6852 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6853 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
6854 (synopsis "Moose roles with composition parameters")
6855 (description "Because Moose roles serve many different masters, they
6856 usually provide only the least common denominator of functionality. To
6857 empower roles further, more configurability than -alias and -excludes is
6858 required. Perhaps your role needs to know which method to call when it is
6859 done processing, or what default value to use for its url attribute.
6860 Parameterized roles offer a solution to these (and other) kinds of problems.")
6861 (license (package-license perl))))
6862
6863 (define-public perl-moosex-role-withoverloading
6864 (package
6865 (name "perl-moosex-role-withoverloading")
6866 (version "0.17")
6867 (source
6868 (origin
6869 (method url-fetch)
6870 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6871 "MooseX-Role-WithOverloading-" version ".tar.gz"))
6872 (sha256
6873 (base32
6874 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
6875 (build-system perl-build-system)
6876 (propagated-inputs
6877 `(("perl-aliased" ,perl-aliased)
6878 ("perl-moose" ,perl-moose)
6879 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6880 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
6881 (synopsis "Roles which support overloading")
6882 (description "MooseX::Role::WithOverloading allows you to write a
6883 Moose::Role which defines overloaded operators and allows those overload
6884 methods to be composed into the classes/roles/instances it's compiled to,
6885 where plain Moose::Roles would lose the overloading.")
6886 (license (package-license perl))))
6887
6888 (define-public perl-moosex-semiaffordanceaccessor
6889 (package
6890 (name "perl-moosex-semiaffordanceaccessor")
6891 (version "0.10")
6892 (source
6893 (origin
6894 (method url-fetch)
6895 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6896 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
6897 (sha256
6898 (base32
6899 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
6900 (build-system perl-build-system)
6901 (propagated-inputs
6902 `(("perl-moose" ,perl-moose)))
6903 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
6904 (synopsis "Name your accessors foo() and set_foo()")
6905 (description "This module does not provide any methods. Simply loading it
6906 changes the default naming policy for the loading class so that accessors are
6907 separated into get and set methods. The get methods have the same name as the
6908 accessor, while set methods are prefixed with \"_set_\".")
6909 (license artistic2.0)))
6910
6911 (define-public perl-moosex-strictconstructor
6912 (package
6913 (name "perl-moosex-strictconstructor")
6914 (version "0.19")
6915 (source
6916 (origin
6917 (method url-fetch)
6918 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6919 "MooseX-StrictConstructor-" version ".tar.gz"))
6920 (sha256
6921 (base32
6922 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
6923 (build-system perl-build-system)
6924 (native-inputs
6925 `(("perl-moose" ,perl-moose)
6926 ("perl-test-fatal" ,perl-test-fatal)))
6927 (propagated-inputs
6928 `(("perl-moose" ,perl-moose)
6929 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6930 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
6931 (synopsis "Strict object constructors for Moose")
6932 (description "Simply loading this module makes your constructors
6933 \"strict\". If your constructor is called with an attribute init argument
6934 that your class does not declare, then it calls Moose->throw_error().")
6935 (license artistic2.0)))
6936
6937 (define-public perl-moosex-traits-pluggable
6938 (package
6939 (name "perl-moosex-traits-pluggable")
6940 (version "0.12")
6941 (source
6942 (origin
6943 (method url-fetch)
6944 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
6945 "MooseX-Traits-Pluggable-" version ".tar.gz"))
6946 (sha256
6947 (base32
6948 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
6949 (build-system perl-build-system)
6950 (native-inputs
6951 `(("perl-moose" ,perl-moose)
6952 ("perl-test-exception" ,perl-test-exception)))
6953 (propagated-inputs
6954 `(("perl-class-load" ,perl-class-load)
6955 ("perl-list-moreutils" ,perl-list-moreutils)
6956 ("perl-moose" ,perl-moose)
6957 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6958 (home-page
6959 "https://metacpan.org/release/MooseX-Traits-Pluggable")
6960 (synopsis "Trait loading and resolution for Moose")
6961 (description "Adds support on top of MooseX::Traits for class precedence
6962 search for traits and some extra attributes.")
6963 (license (package-license perl))))
6964
6965 (define-public perl-moosex-types
6966 (package
6967 (name "perl-moosex-types")
6968 (version "0.45")
6969 (source
6970 (origin
6971 (method url-fetch)
6972 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6973 "MooseX-Types-" version ".tar.gz"))
6974 (sha256
6975 (base32
6976 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
6977 (build-system perl-build-system)
6978 (native-inputs
6979 `(("perl-module-build" ,perl-module-build)
6980 ("perl-test-fatal" ,perl-test-fatal)
6981 ("perl-test-requires" ,perl-test-requires)))
6982 (propagated-inputs
6983 `(("perl-carp-clan" ,perl-carp-clan)
6984 ("perl-moose" ,perl-moose)
6985 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6986 (home-page "https://metacpan.org/release/MooseX-Types")
6987 (synopsis "Organise your Moose types in libraries")
6988 (description "This package lets you declare types using short names, but
6989 behind the scenes it namespaces all your type declarations, effectively
6990 prevent name clashes between packages.")
6991 (license (package-license perl))))
6992
6993 (define-public perl-moosex-types-datetime
6994 (package
6995 (name "perl-moosex-types-datetime")
6996 (version "0.13")
6997 (source
6998 (origin
6999 (method url-fetch)
7000 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7001 "MooseX-Types-DateTime-" version ".tar.gz"))
7002 (sha256
7003 (base32
7004 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
7005 (build-system perl-build-system)
7006 (native-inputs
7007 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7008 ("perl-moose" ,perl-moose)
7009 ("perl-test-fatal" ,perl-test-fatal)
7010 ("perl-test-simple" ,perl-test-simple)))
7011 (propagated-inputs
7012 `(("perl-datetime" ,perl-datetime)
7013 ("perl-datetime-locale" ,perl-datetime-locale)
7014 ("perl-datetime-timezone" ,perl-datetime-timezone)
7015 ("perl-moose" ,perl-moose)
7016 ("perl-moosex-types" ,perl-moosex-types)
7017 ("perl-namespace-clean" ,perl-namespace-clean)))
7018 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
7019 (synopsis "DateTime related constraints and coercions for Moose")
7020 (description "This module packages several Moose::Util::TypeConstraints
7021 with coercions, designed to work with the DateTime suite of objects.")
7022 (license (package-license perl))))
7023
7024 (define-public perl-moosex-types-datetime-morecoercions
7025 (package
7026 (name "perl-moosex-types-datetime-morecoercions")
7027 (version "0.15")
7028 (source
7029 (origin
7030 (method url-fetch)
7031 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7032 "MooseX-Types-DateTime-MoreCoercions-"
7033 version ".tar.gz"))
7034 (sha256
7035 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
7036 (build-system perl-build-system)
7037 (native-inputs
7038 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7039 ("perl-test-fatal" ,perl-test-fatal)
7040 ("perl-test-simple" ,perl-test-simple)))
7041 (propagated-inputs
7042 `(("perl-datetime" ,perl-datetime)
7043 ("perl-datetimex-easy" ,perl-datetimex-easy)
7044 ("perl-moose" ,perl-moose)
7045 ("perl-moosex-types" ,perl-moosex-types)
7046 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
7047 ("perl-namespace-clean" ,perl-namespace-clean)
7048 ("perl-time-duration-parse" ,perl-time-duration-parse)))
7049 (home-page
7050 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
7051 (synopsis "Extensions to MooseX::Types::DateTime")
7052 (description "This module builds on MooseX::Types::DateTime to add
7053 additional custom types and coercions. Since it builds on an existing type,
7054 all coercions and constraints are inherited.")
7055 (license (package-license perl))))
7056
7057 (define-public perl-moosex-types-loadableclass
7058 (package
7059 (name "perl-moosex-types-loadableclass")
7060 (version "0.015")
7061 (source
7062 (origin
7063 (method url-fetch)
7064 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7065 "MooseX-Types-LoadableClass-" version ".tar.gz"))
7066 (sha256
7067 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
7068 (build-system perl-build-system)
7069 (native-inputs
7070 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7071 ("perl-namespace-clean" ,perl-namespace-clean)
7072 ("perl-moose" ,perl-moose)
7073 ("perl-test-fatal" ,perl-test-fatal)
7074 ("perl-class-load" ,perl-class-load)))
7075 (propagated-inputs
7076 `(("perl-module-runtime" ,perl-module-runtime)
7077 ("perl-moosex-types" ,perl-moosex-types)
7078 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7079 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
7080 (synopsis "ClassName type constraints for Moose")
7081 (description "MooseX::Types::LoadableClass provides a ClassName type
7082 constraint with coercion to load the class.")
7083 (license (package-license perl))))
7084
7085 (define-public perl-moox
7086 (package
7087 (name "perl-moox")
7088 (version "0.101")
7089 (source
7090 (origin
7091 (method url-fetch)
7092 (uri (string-append
7093 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
7094 version
7095 ".tar.gz"))
7096 (sha256
7097 (base32
7098 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
7099 (build-system perl-build-system)
7100 (inputs
7101 `(("perl-data-optlist" ,perl-data-optlist)
7102 ("perl-import-into" ,perl-import-into)
7103 ("perl-module-runtime" ,perl-module-runtime)
7104 ("perl-moo" ,perl-moo)))
7105 (home-page "https://metacpan.org/release/MooX")
7106 (synopsis
7107 "Using Moo and MooX:: packages the most lazy way")
7108 (description "Contains the MooX and MooX::Role packages.")
7109 (license perl-license)))
7110
7111 (define-public perl-moox-cmd
7112 (package
7113 (name "perl-moox-cmd")
7114 (version "0.017")
7115 (source
7116 (origin
7117 (method url-fetch)
7118 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
7119 version ".tar.gz"))
7120 (sha256
7121 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
7122 (build-system perl-build-system)
7123 (native-inputs
7124 `(("perl-capture-tiny" ,perl-capture-tiny)
7125 ("perl-list-moreutils" ,perl-list-moreutils)))
7126 (propagated-inputs
7127 `(("perl-module-pluggable" ,perl-module-pluggable)
7128 ("perl-module-runtime" ,perl-module-runtime)
7129 ("perl-moo" ,perl-moo)
7130 ("perl-package-stash" ,perl-package-stash)
7131 ("perl-params-util" ,perl-params-util)
7132 ("perl-regexp-common" ,perl-regexp-common)))
7133 (home-page "https://metacpan.org/release/MooX-Cmd")
7134 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
7135 (description "This package eases the writing of command line utilities,
7136 accepting commands and subcommands and so on. These commands can form a tree,
7137 which is mirrored in the package structure. On invocation, each command along
7138 the path through the tree (starting from the top-level command through to the
7139 most specific one) is instantiated.")
7140 (license (package-license perl))))
7141
7142 (define-public perl-moox-configfromfile
7143 (package
7144 (name "perl-moox-configfromfile")
7145 (version "0.008")
7146 (source
7147 (origin
7148 (method url-fetch)
7149 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7150 "MooX-ConfigFromFile-" version ".tar.gz"))
7151 (sha256
7152 (base32
7153 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
7154 (build-system perl-build-system)
7155 (native-inputs
7156 `(("perl-hash-merge" ,perl-hash-merge)
7157 ("perl-json" ,perl-json)
7158 ("perl-moox-cmd" ,perl-moox-cmd)))
7159 (propagated-inputs
7160 `(("perl-config-any" ,perl-config-any)
7161 ("perl-file-configdir" ,perl-file-configdir)
7162 ("perl-file-find-rule" ,perl-file-find-rule)
7163 ("perl-hash-merge" ,perl-hash-merge)
7164 ("perl-moo" ,perl-moo)
7165 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7166 ("perl-namespace-clean" ,perl-namespace-clean)))
7167 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
7168 (synopsis "Moo eXtension for initializing objects from config file")
7169 (description "This module is intended to easily load initialization values
7170 for attributes on object construction from an appropriate config file. The
7171 building is done in @code{MooX::ConfigFromFile::Role}---using
7172 @code{MooX::ConfigFromFile} ensures that the role is applied.")
7173 (license (package-license perl))))
7174
7175 (define-public perl-moox-file-configdir
7176 (package
7177 (name "perl-moox-file-configdir")
7178 (version "0.007")
7179 (source
7180 (origin
7181 (method url-fetch)
7182 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7183 "MooX-File-ConfigDir-" version ".tar.gz"))
7184 (sha256
7185 (base32
7186 "074v150wrbddhy1n0qc8s80zrb71l3c4is968cnr06ac5l9kmshz"))))
7187 (build-system perl-build-system)
7188 (propagated-inputs
7189 `(("perl-file-configdir" ,perl-file-configdir)
7190 ("perl-moo" ,perl-moo)
7191 ("perl-namespace-clean" ,perl-namespace-clean)))
7192 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
7193 (synopsis "Moo eXtension for @code{File::ConfigDir}")
7194 (description "This module is a helper for easily finding configuration
7195 file locations. This information can be used to find a suitable place for
7196 installing configuration files or for finding any piece of settings.")
7197 (license (package-license perl))))
7198
7199 (define-public perl-moox-handlesvia
7200 (package
7201 (name "perl-moox-handlesvia")
7202 (version "0.001008")
7203 (source
7204 (origin
7205 (method url-fetch)
7206 (uri (string-append
7207 "mirror://cpan/authors/id/M/MA/MATTP/MooX-HandlesVia-"
7208 version
7209 ".tar.gz"))
7210 (sha256
7211 (base32
7212 "137yrjn2jmw4cj0fjdajnkjgqr5arnpq72kbm6w66xskncinz55h"))))
7213 (build-system perl-build-system)
7214 (native-inputs
7215 `(("perl-moox-types-mooselike"
7216 ,perl-moox-types-mooselike)
7217 ("perl-test-exception" ,perl-test-exception)
7218 ("perl-test-fatal" ,perl-test-fatal)))
7219 (inputs
7220 `(("perl-class-method-modifiers"
7221 ,perl-class-method-modifiers)
7222 ("perl-module-runtime" ,perl-module-runtime)
7223 ("perl-moo" ,perl-moo)
7224 ("perl-role-tiny" ,perl-role-tiny)))
7225 (propagated-inputs
7226 `(("perl-data-perl" ,perl-data-perl)))
7227 (home-page
7228 "https://metacpan.org/release/MooX-HandlesVia")
7229 (synopsis "NativeTrait-like behavior for Moo")
7230 (description
7231 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
7232 attribute functionality. It provides a means of proxying functionality from
7233 an external class to the given attribute.")
7234 (license perl-license)))
7235
7236 (define-public perl-moox-late
7237 (package
7238 (name "perl-moox-late")
7239 (version "0.016")
7240 (source
7241 (origin
7242 (method url-fetch)
7243 (uri (string-append
7244 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
7245 version ".tar.gz"))
7246 (sha256
7247 (base32 "0kjy86rrpzfy6w5r9ykjq7njwdnvp7swd6r2k4gfrh3picz3kdhz"))))
7248 (build-system perl-build-system)
7249 (native-inputs
7250 `(("perl-test-fatal" ,perl-test-fatal)
7251 ("perl-test-requires" ,perl-test-requires)))
7252 (inputs
7253 `(("perl-moo" ,perl-moo)
7254 ("perl-moox" ,perl-moox)
7255 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
7256 (propagated-inputs
7257 `(("perl-type-tiny" ,perl-type-tiny)))
7258 (home-page "https://metacpan.org/release/MooX-late")
7259 (synopsis "Easily translate Moose code to Moo")
7260 (description
7261 "MooX::late does the following:
7262 @enumerate
7263 @item Supports isa => $stringytype
7264 @item Supports does => $rolename
7265 @item Supports lazy_build => 1
7266 @item Exports blessed and confess functions to your namespace.
7267 @item Handles certain attribute traits
7268 Currently Hash, Array and Code are supported. This feature requires
7269 MooX::HandlesVia.
7270 @end enumerate")
7271 (license perl-license)))
7272
7273 (define-public perl-moox-options
7274 (package
7275 (name "perl-moox-options")
7276 (version "4.023")
7277 (source
7278 (origin
7279 (method url-fetch)
7280 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
7281 "MooX-Options-" version ".tar.gz"))
7282 (sha256
7283 (base32
7284 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
7285 (build-system perl-build-system)
7286 (native-inputs
7287 `(("perl-capture-tiny" ,perl-capture-tiny)
7288 ("perl-import-into" ,perl-import-into)
7289 ("perl-module-build" ,perl-module-build)
7290 ("perl-moo" ,perl-moo)
7291 ("perl-moose" ,perl-moose)
7292 ("perl-moox-cmd" ,perl-moox-cmd)
7293 ("perl-namespace-clean" ,perl-namespace-clean)
7294 ("perl-role-tiny" ,perl-role-tiny)
7295 ("perl-test-requires" ,perl-test-requires)
7296 ("perl-test-trap" ,perl-test-trap)
7297 ("perl-test-pod" ,perl-test-pod)
7298 ("perl-try-tiny" ,perl-try-tiny)))
7299 (propagated-inputs
7300 `(("perl-config-any" ,perl-config-any)
7301 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7302 ("perl-data-record" ,perl-data-record)
7303 ("perl-file-configdir" ,perl-file-configdir)
7304 ("perl-file-find-rule" ,perl-file-find-rule)
7305 ("perl-file-sharedir" ,perl-file-sharedir)
7306 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
7307 ("perl-json-maybexs" ,perl-json-maybexs)
7308 ("perl-libintl-perl" ,perl-libintl-perl)
7309 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7310 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7311 ("perl-path-class" ,perl-path-class)
7312 ("perl-regexp-common" ,perl-regexp-common)
7313 ("perl-term-size-any" ,perl-term-size-any)
7314 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7315 (home-page "https://metacpan.org/release/MooX-Options")
7316 (synopsis "Explicit Options eXtension for Object Class")
7317 (description "Create a command line tool with your Mo, Moo, Moose objects.
7318 You have an @code{option} keyword to replace the usual @code{has} to
7319 explicitly use your attribute on the command line. The @code{option} keyword
7320 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
7321 generate a command line tool.")
7322 (license (package-license perl))))
7323
7324 (define-public perl-moox-strictconstructor
7325 (package
7326 (name "perl-moox-strictconstructor")
7327 (version "0.010")
7328 (source
7329 (origin
7330 (method url-fetch)
7331 (uri (string-append
7332 "mirror://cpan/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-"
7333 version
7334 ".tar.gz"))
7335 (sha256
7336 (base32
7337 "0vvjgz7xbfmf69yav7sxsxmvklqv835xvh7h47w0apxmlkm9fjgr"))))
7338 (build-system perl-build-system)
7339 (native-inputs
7340 `(("perl-test-fatal" ,perl-test-fatal)))
7341 (propagated-inputs
7342 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
7343 ("perl-moo" ,perl-moo)
7344 ("perl-strictures" ,perl-strictures)))
7345 (home-page "https://metacpan.org/release/MooX-StrictConstructor")
7346 (synopsis "Make Moo-based object constructors blow up on unknown attributes")
7347 (description
7348 "Loading @code{MooX::StrictConstructor} makes your constructors \"strict\".
7349 If your constructor is called with an attribute init argument that your class
7350 does not declare, then it dies.")
7351 (license perl-license)))
7352
7353 (define-public perl-moox-types-mooselike
7354 (package
7355 (name "perl-moox-types-mooselike")
7356 (version "0.29")
7357 (source
7358 (origin
7359 (method url-fetch)
7360 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
7361 "MooX-Types-MooseLike-" version ".tar.gz"))
7362 (sha256
7363 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
7364 (build-system perl-build-system)
7365 (native-inputs
7366 `(("perl-moo" ,perl-moo)
7367 ("perl-test-fatal" ,perl-test-fatal)))
7368 (propagated-inputs
7369 `(("perl-module-runtime" ,perl-module-runtime)
7370 ("perl-strictures" ,perl-strictures)))
7371 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
7372 (synopsis "Moosish types and type builder")
7373 (description "MooX::Types::MooseLike provides a possibility to build your
7374 own set of Moose-like types. These custom types can then be used to describe
7375 fields in Moo-based classes.")
7376 (license (package-license perl))))
7377
7378 (define-public perl-mouse
7379 (package
7380 (name "perl-mouse")
7381 (version "2.5.6")
7382 (source (origin
7383 (method url-fetch)
7384 (uri (string-append
7385 "mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v"
7386 version
7387 ".tar.gz"))
7388 (sha256
7389 (base32
7390 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
7391 (build-system perl-build-system)
7392 (native-inputs
7393 `(("perl-module-build" ,perl-module-build)
7394 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
7395 ("perl-test-exception" ,perl-test-exception)
7396 ("perl-test-fatal" ,perl-test-fatal)
7397 ("perl-test-leaktrace" ,perl-test-leaktrace)
7398 ("perl-test-output" ,perl-test-output)
7399 ("perl-test-requires" ,perl-test-requires)
7400 ("perl-try-tiny" ,perl-try-tiny)))
7401 (home-page "https://github.com/gfx/p5-Mouse")
7402 (synopsis "Fast Moose-compatible object system for perl5")
7403 (description
7404 "Mouse is a @code{Moose} compatible object system that implements a
7405 subset of the functionality for reduced startup time.")
7406 (license (package-license perl))))
7407
7408 (define-public perl-mousex-nativetraits
7409 (package
7410 (name "perl-mousex-nativetraits")
7411 (version "1.09")
7412 (source (origin
7413 (method url-fetch)
7414 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
7415 "MouseX-NativeTraits-" version ".tar.gz"))
7416 (sha256
7417 (base32
7418 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
7419 (build-system perl-build-system)
7420 (native-inputs
7421 `(("perl-any-moose" ,perl-any-moose)
7422 ("perl-module-install" ,perl-module-install)
7423 ("perl-test-fatal" ,perl-test-fatal)))
7424 (propagated-inputs
7425 `(("perl-mouse" ,perl-mouse)))
7426 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
7427 (synopsis "Extend attribute interfaces for Mouse")
7428 (description
7429 "While @code{Mouse} attributes provide a way to name your accessors,
7430 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
7431 provides commonly used attribute helper methods for more specific types
7432 of data.")
7433 (license (package-license perl))))
7434
7435 (define-public perl-mozilla-ca
7436 (package
7437 (name "perl-mozilla-ca")
7438 (version "20180117")
7439 (source
7440 (origin
7441 (method url-fetch)
7442 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
7443 version ".tar.gz"))
7444 (sha256
7445 (base32
7446 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
7447 (build-system perl-build-system)
7448 (home-page "https://metacpan.org/release/Mozilla-CA")
7449 (synopsis "Mozilla's CA cert bundle in PEM format")
7450 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
7451 Certificate Authority certificates in a form that can be consumed by modules
7452 and libraries based on OpenSSL.")
7453 (license mpl2.0)))
7454
7455 (define-public perl-multidimensional
7456 (package
7457 (name "perl-multidimensional")
7458 (version "0.014")
7459 (source
7460 (origin
7461 (method url-fetch)
7462 (uri (string-append
7463 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
7464 version ".tar.gz"))
7465 (sha256
7466 (base32
7467 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
7468 (build-system perl-build-system)
7469 (native-inputs
7470 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7471 ("perl-extutils-depends" ,perl-extutils-depends)))
7472 (propagated-inputs
7473 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7474 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
7475 (home-page "https://metacpan.org/release/multidimensional")
7476 (synopsis "Disable multidimensional array emulation")
7477 (description
7478 "Multidimensional disables multidimensional array emulation.")
7479 (license (package-license perl))))
7480
7481 (define-public perl-mro-compat
7482 (package
7483 (name "perl-mro-compat")
7484 (version "0.13")
7485 (source
7486 (origin
7487 (method url-fetch)
7488 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7489 "MRO-Compat-" version ".tar.gz"))
7490 (sha256
7491 (base32
7492 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
7493 (build-system perl-build-system)
7494 (home-page "https://metacpan.org/release/MRO-Compat")
7495 (synopsis "MRO interface compatibility for Perls < 5.9.5")
7496 (description "The \"mro\" namespace provides several utilities for dealing
7497 with method resolution order and method caching in general in Perl 5.9.5 and
7498 higher. This module provides those interfaces for earlier versions of
7499 Perl (back to 5.6.0).")
7500 (license (package-license perl))))
7501
7502 (define-public perl-namespace-autoclean
7503 (package
7504 (name "perl-namespace-autoclean")
7505 (version "0.29")
7506 (source
7507 (origin
7508 (method url-fetch)
7509 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7510 "namespace-autoclean-" version ".tar.gz"))
7511 (sha256
7512 (base32 "012qqs561xyyhm082znmzsl8lz4n299fa6p0v246za2l9bkdiss5"))))
7513 (build-system perl-build-system)
7514 (native-inputs
7515 `(("perl-module-build" ,perl-module-build)
7516 ("perl-test-needs" ,perl-test-needs)))
7517 (propagated-inputs
7518 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
7519 ("perl-namespace-clean" ,perl-namespace-clean)
7520 ("perl-sub-identify" ,perl-sub-identify)))
7521 (home-page "https://metacpan.org/release/namespace-autoclean")
7522 (synopsis "Keep imports out of your namespace")
7523 (description "The namespace::autoclean pragma will remove all imported
7524 symbols at the end of the current package's compile cycle. Functions called
7525 in the package itself will still be bound by their name, but they won't show
7526 up as methods on your class or instances. It is very similar to
7527 namespace::clean, except it will clean all imported functions, no matter if
7528 you imported them before or after you used the pragma. It will also not touch
7529 anything that looks like a method.")
7530 (license (package-license perl))))
7531
7532 (define-public perl-namespace-clean
7533 (package
7534 (name "perl-namespace-clean")
7535 (version "0.27")
7536 (source
7537 (origin
7538 (method url-fetch)
7539 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
7540 "namespace-clean-" version ".tar.gz"))
7541 (sha256
7542 (base32
7543 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
7544 (build-system perl-build-system)
7545 (propagated-inputs
7546 `(("perl-package-stash" ,perl-package-stash)
7547 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
7548 (home-page "https://metacpan.org/release/namespace-clean")
7549 (synopsis "Keep imports and functions out of your namespace")
7550 (description "The namespace::clean pragma will remove all previously
7551 declared or imported symbols at the end of the current package's compile
7552 cycle. Functions called in the package itself will still be bound by their
7553 name, but they won't show up as methods on your class or instances.")
7554 (license (package-license perl))))
7555
7556 (define-public perl-net-bgp
7557 (package
7558 (name "perl-net-bgp")
7559 (version "0.17")
7560 (source
7561 (origin
7562 (method url-fetch)
7563 (uri (string-append
7564 "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
7565 (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y"))))
7566 (build-system perl-build-system)
7567 (home-page "https://metacpan.org/release/Net-BGP")
7568 (synopsis "Object-oriented API to the BGP protocol")
7569 (description
7570 "This module is an implementation of the BGP-4 inter-domain routing protocol.
7571 It encapsulates all of the functionality needed to establish and maintain a
7572 BGP peering session and exchange routing update information with the peer.
7573 It aims to provide a simple API to the BGP protocol for the purposes of
7574 automation, logging, monitoring, testing, and similar tasks using the
7575 power and flexibility of perl. The module does not implement the
7576 functionality of a RIB (Routing Information Base) nor does it modify the
7577 kernel routing table of the host system. However, such operations could be
7578 implemented using the API provided by the module.")
7579 (license perl-license)))
7580
7581 (define-public perl-net-dns-native
7582 (package
7583 (name "perl-net-dns-native")
7584 (version "0.22")
7585 (source
7586 (origin
7587 (method url-fetch)
7588 (uri (string-append
7589 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
7590 version ".tar.gz"))
7591 (sha256
7592 (base32 "1m9hbj83ikg52wvq7z8bjm78i50qvqk5alh11mmazzxrpbnrv38h"))))
7593 (build-system perl-build-system)
7594 (home-page "https://metacpan.org/release/Net-DNS-Native")
7595 (synopsis "Non-blocking system DNS resolver")
7596 (description
7597 "This class provides several methods for host name resolution. It is
7598 designed to be used with event loops. Names are resolved by your system's
7599 native @code{getaddrinfo(3)} implementation, called in a separate thread to
7600 avoid blocking the entire application. Threading overhead is limited by using
7601 system threads instead of Perl threads.")
7602 (license perl-license)))
7603
7604 (define-public perl-net-idn-encode
7605 (package
7606 (name "perl-net-idn-encode")
7607 (version "2.500")
7608 (source
7609 (origin
7610 (method url-fetch)
7611 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
7612 "Net-IDN-Encode-" version ".tar.gz"))
7613 (sha256
7614 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
7615 (build-system perl-build-system)
7616 (native-inputs
7617 `(("perl-module-build" ,perl-module-build)
7618 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7619 (home-page "https://metacpan.org/release/Net-IDN-Encode")
7620 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
7621 (description
7622 "Internationalized Domain Names (IDNs) use characters drawn from a large
7623 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
7624 represented using only the ASCII characters already allowed in so-called host
7625 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
7626
7627 Use this module if you just want to convert domain names (or email addresses),
7628 using whatever IDNA standard is the best choice at the moment.")
7629 (license perl-license)))
7630
7631 (define-public perl-net-statsd
7632 (package
7633 (name "perl-net-statsd")
7634 (version "0.12")
7635 (source
7636 (origin
7637 (method url-fetch)
7638 (uri (string-append
7639 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
7640 version
7641 ".tar.gz"))
7642 (sha256
7643 (base32
7644 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
7645 (build-system perl-build-system)
7646 (home-page
7647 "https://metacpan.org/release/Net-Statsd")
7648 (synopsis "Perl client for Etsy's statsd daemon")
7649 (description "This module implement a UDP client for the statsd statistics
7650 collector daemon in use at Etsy.com.")
7651 (license (package-license perl))))
7652
7653 (define-public perl-number-compare
7654 (package
7655 (name "perl-number-compare")
7656 (version "0.03")
7657 (source
7658 (origin
7659 (method url-fetch)
7660 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7661 "Number-Compare-" version ".tar.gz"))
7662 (sha256
7663 (base32
7664 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
7665 (build-system perl-build-system)
7666 (home-page "https://metacpan.org/release/Number-Compare")
7667 (synopsis "Numeric comparisons")
7668 (description "Number::Compare compiles a simple comparison to an anonymous
7669 subroutine, which you can call with a value to be tested against.")
7670 (license (package-license perl))))
7671
7672 (define-public perl-number-format
7673 (package
7674 (name "perl-number-format")
7675 (version "1.75")
7676 (source (origin
7677 (method url-fetch)
7678 (uri (string-append
7679 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
7680 version ".tar.gz"))
7681 (sha256
7682 (base32
7683 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
7684 (build-system perl-build-system)
7685 (home-page "https://metacpan.org/release/Number-Format")
7686 (synopsis "Convert numbers to strings with pretty formatting")
7687 (description "@code{Number::Format} is a library for formatting numbers.
7688 Functions are provided for converting numbers to strings in a variety of ways,
7689 and to convert strings that contain numbers back into numeric form. The
7690 output formats may include thousands separators - characters inserted between
7691 each group of three characters counting right to left from the decimal point.
7692 The characters used for the decimal point and the thousands separator come from
7693 the locale information or can be specified by the user.")
7694 (license perl-license)))
7695
7696 (define-public perl-number-range
7697 (package
7698 (name "perl-number-range")
7699 (version "0.12")
7700 (source
7701 (origin
7702 (method url-fetch)
7703 (uri (string-append
7704 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
7705 version ".tar.gz"))
7706 (sha256
7707 (base32
7708 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
7709 (build-system perl-build-system)
7710 (home-page "https://metacpan.org/release/Number-Range")
7711 (synopsis "Perl extension defining ranges of numbers")
7712 (description "Number::Range is an object-oriented interface to test if a
7713 number exists in a given range, and to be able to manipulate the range.")
7714 (license (package-license perl))))
7715
7716 (define-public perl-object-signature
7717 (package
7718 (name "perl-object-signature")
7719 (version "1.08")
7720 (source
7721 (origin
7722 (method url-fetch)
7723 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7724 "Object-Signature-" version ".tar.gz"))
7725 (sha256
7726 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
7727 (build-system perl-build-system)
7728 (native-inputs
7729 `(("perl-module-install" ,perl-module-install)))
7730 (home-page "https://metacpan.org/release/Object-Signature")
7731 (synopsis "Generate cryptographic signatures for objects")
7732 (description "Object::Signature is an abstract base class that you can
7733 inherit from in order to allow your objects to generate unique cryptographic
7734 signatures.")
7735 (license (package-license perl))))
7736
7737 (define-public perl-ole-storage-lite
7738 (package
7739 (name "perl-ole-storage-lite")
7740 (version "0.20")
7741 (source
7742 (origin
7743 (method url-fetch)
7744 (uri (string-append
7745 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
7746 version
7747 ".tar.gz"))
7748 (sha256
7749 (base32
7750 "1fpqhhgb8blj4hhs97fsbnbhk29s9yms057a9s9yl20f3hbsc65b"))))
7751 (build-system perl-build-system)
7752 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
7753 (synopsis "Read and write OLE storage files")
7754 (description "This module allows you to read and write
7755 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
7756 technology to store hierarchical information such as links to other
7757 documents within a single file.")
7758 (license (package-license perl))))
7759
7760 (define-public perl-package-anon
7761 (package
7762 (name "perl-package-anon")
7763 (version "0.05")
7764 (source
7765 (origin
7766 (method url-fetch)
7767 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
7768 "Package-Anon-" version ".tar.gz"))
7769 (sha256
7770 (base32
7771 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
7772 (build-system perl-build-system)
7773 (propagated-inputs
7774 `(("perl-sub-exporter" ,perl-sub-exporter)
7775 ("perl-params-util" ,perl-params-util)))
7776 (home-page "https://metacpan.org/release/Package-Anon")
7777 (synopsis "Anonymous packages")
7778 (description "This module allows for anonymous packages that are
7779 independent of the main namespace and only available through an object
7780 instance, not by name.")
7781 (license (package-license perl))))
7782
7783 (define-public perl-package-deprecationmanager
7784 (package
7785 (name "perl-package-deprecationmanager")
7786 (version "0.17")
7787 (source
7788 (origin
7789 (method url-fetch)
7790 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7791 "Package-DeprecationManager-" version ".tar.gz"))
7792 (sha256
7793 (base32
7794 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
7795 (build-system perl-build-system)
7796 (native-inputs
7797 `(("perl-test-fatal" ,perl-test-fatal)
7798 ("perl-test-requires" ,perl-test-requires)
7799 ("perl-test-output" ,perl-test-output)))
7800 (propagated-inputs
7801 `(("perl-list-moreutils" ,perl-list-moreutils)
7802 ("perl-params-util" ,perl-params-util)
7803 ("perl-sub-install" ,perl-sub-install)))
7804 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
7805 (home-page "https://metacpan.org/release/Package-DeprecationManager")
7806 (synopsis "Manage deprecation warnings for your distribution")
7807 (description "This module allows you to manage a set of deprecations for
7808 one or more modules.")
7809 (license artistic2.0)))
7810
7811 (define-public perl-package-stash
7812 (package
7813 (name "perl-package-stash")
7814 (version "0.38")
7815 (source
7816 (origin
7817 (method url-fetch)
7818 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7819 "Package-Stash-" version ".tar.gz"))
7820 (sha256
7821 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
7822 (build-system perl-build-system)
7823 (native-inputs
7824 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7825 ("perl-test-fatal" ,perl-test-fatal)
7826 ("perl-test-requires" ,perl-test-requires)
7827 ("perl-package-anon" ,perl-package-anon)))
7828 (propagated-inputs
7829 `(("perl-module-implementation" ,perl-module-implementation)
7830 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
7831 ("perl-package-stash-xs" ,perl-package-stash-xs)))
7832 (home-page "https://metacpan.org/release/Package-Stash")
7833 (synopsis "Routines for manipulating stashes")
7834 (description "Manipulating stashes (Perl's symbol tables) is occasionally
7835 necessary, but incredibly messy, and easy to get wrong. This module hides all
7836 of that behind a simple API.")
7837 (license (package-license perl))))
7838
7839 (define-public perl-package-stash-xs
7840 (package
7841 (name "perl-package-stash-xs")
7842 (version "0.29")
7843 (source
7844 (origin
7845 (method url-fetch)
7846 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7847 "Package-Stash-XS-" version ".tar.gz"))
7848 (sha256
7849 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
7850 (build-system perl-build-system)
7851 (native-inputs
7852 `(("perl-test-fatal" ,perl-test-fatal)
7853 ("perl-test-requires" ,perl-test-requires)
7854 ("perl-package-anon" ,perl-package-anon)))
7855 (home-page "https://metacpan.org/release/Package-Stash-XS")
7856 (synopsis "Faster implementation of the Package::Stash API")
7857 (description "This is a backend for Package::Stash, which provides the
7858 functionality in a way that's less buggy and much faster. It will be used by
7859 default if it's installed, and should be preferred in all environments with a
7860 compiler.")
7861 (license (package-license perl))))
7862
7863 (define-public perl-padwalker
7864 (package
7865 (name "perl-padwalker")
7866 (version "2.3")
7867 (source
7868 (origin
7869 (method url-fetch)
7870 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
7871 "PadWalker-" version ".tar.gz"))
7872 (sha256
7873 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
7874 (build-system perl-build-system)
7875 (home-page "https://metacpan.org/release/PadWalker")
7876 (synopsis "Play with other peoples' lexical variables")
7877 (description "PadWalker is a module which allows you to inspect (and even
7878 change) lexical variables in any subroutine which called you. It will only
7879 show those variables which are in scope at the point of the call. PadWalker
7880 is particularly useful for debugging.")
7881 (license (package-license perl))))
7882
7883 (define-public perl-parallel-forkmanager
7884 (package
7885 (name "perl-parallel-forkmanager")
7886 (version "1.19")
7887 (source
7888 (origin
7889 (method url-fetch)
7890 (uri (string-append
7891 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
7892 version
7893 ".tar.gz"))
7894 (sha256
7895 (base32
7896 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
7897 (build-system perl-build-system)
7898 (native-inputs
7899 `(("perl-test-warn" ,perl-test-warn)))
7900 (home-page "https://metacpan.org/release/Parallel-ForkManager")
7901 (synopsis "Simple parallel processing fork manager")
7902 (description "@code{Parallel::ForkManager} is intended for use in
7903 operations that can be done in parallel where the number of
7904 processes to be forked off should be limited.")
7905 (license (package-license perl))))
7906
7907 (define-public perl-params-classify
7908 (package
7909 (name "perl-params-classify")
7910 (version "0.015")
7911 (source
7912 (origin
7913 (method url-fetch)
7914 (uri (string-append
7915 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Params-Classify-"
7916 version ".tar.gz"))
7917 (sha256
7918 (base32
7919 "052r198xyrsv8wz21gijdigz2cgnidsa37nvyfzdiz4rv1fc33ir"))))
7920 (build-system perl-build-system)
7921 (native-inputs
7922 `(("perl-module-build" ,perl-module-build)
7923 ("perl-test-pod" ,perl-test-pod)
7924 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
7925 (propagated-inputs
7926 `(("perl-devel-callchecker" ,perl-devel-callchecker)))
7927 (home-page "https://metacpan.org/release/Params-Classify")
7928 (synopsis "Argument type classification")
7929 (description "This module provides various type-testing functions.
7930 These are intended for functions that care what type of data they are
7931 operating on. There are two flavours of function. Functions of the
7932 first flavour provide type classification only. Functions of the
7933 second flavour also check that an argument is of an expected type.
7934 The type enforcement functions handle only the simplest requirements
7935 for arguments of the types handled by the classification functions.
7936 Enforcement of more complex types may be built using the
7937 classification functions, or it may be more convenient to use a module
7938 designed for the more complex job, such as @code{Params::Validate}")
7939 (license perl-license)))
7940
7941 (define-public perl-params-util
7942 (package
7943 (name "perl-params-util")
7944 (version "1.07")
7945 (source
7946 (origin
7947 (method url-fetch)
7948 (uri (string-append
7949 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
7950 version ".tar.gz"))
7951 (sha256
7952 (base32
7953 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
7954 (build-system perl-build-system)
7955 (home-page "https://metacpan.org/release/Params-Util")
7956 (synopsis "Simple, compact and correct param-checking functions")
7957 (description
7958 "Params::Util provides a basic set of importable functions that makes
7959 checking parameters easier.")
7960 (license (package-license perl))))
7961
7962 (define-public perl-params-validate
7963 (package
7964 (name "perl-params-validate")
7965 (version "1.29")
7966 (source
7967 (origin
7968 (method url-fetch)
7969 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7970 "Params-Validate-" version ".tar.gz"))
7971 (sha256
7972 (base32
7973 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
7974 (build-system perl-build-system)
7975 (native-inputs
7976 `(("perl-module-build" ,perl-module-build)
7977 ("perl-test-fatal" ,perl-test-fatal)
7978 ("perl-test-requires" ,perl-test-requires)))
7979 (propagated-inputs
7980 `(("perl-module-implementation" ,perl-module-implementation)))
7981 (home-page "https://metacpan.org/release/Params-Validate")
7982 (synopsis "Validate method/function parameters")
7983 (description "The Params::Validate module allows you to validate method or
7984 function call parameters to an arbitrary level of specificity.")
7985 (license artistic2.0)))
7986
7987 (define-public perl-params-validationcompiler
7988 (package
7989 (name "perl-params-validationcompiler")
7990 (version "0.30")
7991 (source
7992 (origin
7993 (method url-fetch)
7994 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7995 "Params-ValidationCompiler-" version ".tar.gz"))
7996 (sha256
7997 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
7998 (build-system perl-build-system)
7999 (native-inputs
8000 ;; For tests.
8001 `(("perl-test-without-module" ,perl-test-without-module)
8002 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
8003 ("perl-test2-suite" ,perl-test2-suite)
8004 ("perl-type-tiny" ,perl-type-tiny)))
8005 (propagated-inputs
8006 `(("perl-eval-closure" ,perl-eval-closure)
8007 ("perl-exception-class" ,perl-exception-class)
8008 ("perl-specio" ,perl-specio)))
8009 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
8010 (synopsis "Build an optimized subroutine parameter validator")
8011 (description "This module creates a customized, highly efficient
8012 parameter checking subroutine. It can handle named or positional
8013 parameters, and can return the parameters as key/value pairs or a list
8014 of values. In addition to type checks, it also supports parameter
8015 defaults, optional parameters, and extra \"slurpy\" parameters.")
8016 (license artistic2.0)))
8017
8018 (define-public perl-par-dist
8019 (package
8020 (name "perl-par-dist")
8021 (version "0.49")
8022 (source
8023 (origin
8024 (method url-fetch)
8025 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
8026 "PAR-Dist-" version ".tar.gz"))
8027 (sha256
8028 (base32
8029 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
8030 (build-system perl-build-system)
8031 (home-page "https://metacpan.org/release/PAR-Dist")
8032 (synopsis "Create and manipulate PAR distributions")
8033 (description "PAR::Dist is a toolkit to create and manipulate PAR
8034 distributions.")
8035 (license (package-license perl))))
8036
8037 (define-public perl-parent
8038 (deprecated-package "perl-parent" perl))
8039
8040 (define-public perl-path-class
8041 (package
8042 (name "perl-path-class")
8043 (version "0.37")
8044 (source
8045 (origin
8046 (method url-fetch)
8047 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8048 "Path-Class-" version ".tar.gz"))
8049 (sha256
8050 (base32
8051 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
8052 (build-system perl-build-system)
8053 (native-inputs `(("perl-module-build" ,perl-module-build)))
8054 (home-page "https://metacpan.org/release/Path-Class")
8055 (synopsis "Path specification manipulation")
8056 (description "Path::Class is a module for manipulation of file and
8057 directory specifications in a cross-platform manner.")
8058 (license (package-license perl))))
8059
8060 (define-public perl-pathtools
8061 (package
8062 (name "perl-pathtools")
8063 (version "3.75")
8064 (source
8065 (origin
8066 (method url-fetch)
8067 (uri (string-append
8068 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
8069 version ".tar.gz"))
8070 (sha256
8071 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
8072 (build-system perl-build-system)
8073 (arguments
8074 `(#:phases
8075 (modify-phases %standard-phases
8076 (add-after 'unpack 'patch-pwd-path
8077 (lambda* (#:key inputs #:allow-other-keys)
8078 (substitute* "Cwd.pm"
8079 (("'/bin/pwd'")
8080 (string-append "'" (assoc-ref inputs "coreutils")
8081 "/bin/pwd'")))
8082 #t)))))
8083 (inputs
8084 `(("coreutils" ,coreutils)))
8085 (home-page "https://metacpan.org/release/PathTools")
8086 (synopsis "Tools for working with directory and file names")
8087 (description "This package provides functions to work with directory and
8088 file names.")
8089 (license perl-license)))
8090
8091 (define-public perl-path-tiny
8092 (package
8093 (name "perl-path-tiny")
8094 (version "0.108")
8095 (source (origin
8096 (method url-fetch)
8097 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8098 "Path-Tiny-" version ".tar.gz"))
8099 (sha256
8100 (base32
8101 "1x9zf8r3cynf4vqlycyyspsr70v4zw6bk9bkgvfpvsxkw8mlhj9w"))))
8102 (build-system perl-build-system)
8103 (arguments
8104 `(#:tests? #f)) ; Tests require additional test modules to be packaged
8105 ;; (native-inputs
8106 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
8107 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
8108 (inputs
8109 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
8110 (home-page "https://metacpan.org/release/Path-Tiny")
8111 (synopsis "File path utility")
8112 (description "This module provides a small, fast utility for working
8113 with file paths.")
8114 (license asl2.0)))
8115
8116 (define-public perl-pdf-api2
8117 (package
8118 (name "perl-pdf-api2")
8119 (version "2.036")
8120 (source (origin
8121 (method url-fetch)
8122 (uri (string-append
8123 "mirror://cpan/authors/id/S/SS/SSIMMS/PDF-API2-"
8124 version ".tar.gz"))
8125 (sha256
8126 (base32
8127 "0x0pa75wpb87pcshl92y5nh8pzikjp46ljlr2pqvdgpqzvll8107"))))
8128 (build-system perl-build-system)
8129 (native-inputs
8130 `(("perl-test-exception" ,perl-test-exception)
8131 ("perl-test-memory-cycle" ,perl-test-memory-cycle)))
8132 (propagated-inputs
8133 `(("perl-font-ttf" ,perl-font-ttf)))
8134 (home-page "https://metacpan.org/release/PDF-API2")
8135 (synopsis "Facilitates the creation and modification of PDF files")
8136 (description "This Perl module facilitates the creation and modification
8137 of PDF files.")
8138 (license lgpl2.1)))
8139
8140 (define-public perl-perlio-utf8_strict
8141 (package
8142 (name "perl-perlio-utf8-strict")
8143 (version "0.007")
8144 (source (origin
8145 (method url-fetch)
8146 (uri (string-append
8147 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
8148 version ".tar.gz"))
8149 (sha256
8150 (base32
8151 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
8152 (build-system perl-build-system)
8153 (native-inputs
8154 `(("perl-test-exception" ,perl-test-exception)))
8155 (home-page
8156 "https://metacpan.org/release/PerlIO-utf8_strict")
8157 (synopsis "Fast and correct UTF-8 IO")
8158 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
8159 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
8160 for correctness.")
8161 (license (package-license perl))))
8162
8163 (define-public perl-pegex
8164 (package
8165 (name "perl-pegex")
8166 (version "0.70")
8167 (source
8168 (origin
8169 (method url-fetch)
8170 (uri (string-append
8171 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
8172 version ".tar.gz"))
8173 (sha256
8174 (base32
8175 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
8176 (build-system perl-build-system)
8177 (native-inputs
8178 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
8179 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
8180 (home-page "https://metacpan.org/release/Pegex")
8181 (synopsis "Acmeist PEG Parser Framework")
8182 (description "Pegex is an Acmeist parser framework. It allows you to easily
8183 create parsers that will work equivalently in lots of programming languages.
8184 The inspiration for Pegex comes from the parsing engine upon which the
8185 postmodern programming language Perl 6 is based on. Pegex brings this beauty
8186 to the other justmodern languages that have a normal regular expression engine
8187 available.")
8188 (license (package-license perl))))
8189
8190 (define-public perl-pod-coverage
8191 (package
8192 (name "perl-pod-coverage")
8193 (version "0.23")
8194 (source
8195 (origin
8196 (method url-fetch)
8197 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8198 "Pod-Coverage-" version ".tar.gz"))
8199 (sha256
8200 (base32
8201 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
8202 (build-system perl-build-system)
8203 (propagated-inputs
8204 `(("perl-devel-symdump" ,perl-devel-symdump)))
8205 (home-page "https://metacpan.org/release/Pod-Coverage")
8206 (synopsis "Check for comprehensive documentation of a module")
8207 (description "This module provides a mechanism for determining if the pod
8208 for a given module is comprehensive.")
8209 (license (package-license perl))))
8210
8211 (define-public perl-pod-simple
8212 (package
8213 (name "perl-pod-simple")
8214 (version "3.35")
8215 (source (origin
8216 (method url-fetch)
8217 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8218 "Pod-Simple-" version ".tar.gz"))
8219 (sha256
8220 (base32
8221 "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr"))))
8222 (build-system perl-build-system)
8223 (home-page "https://metacpan.org/release/Pod-Simple")
8224 (synopsis "Parsing library for text in Pod format")
8225 (description "@code{Pod::Simple} is a Perl library for parsing text in
8226 the @dfn{Pod} (plain old documentation) markup language that is typically
8227 used for writing documentation for Perl and for Perl modules.")
8228 (license (package-license perl))))
8229
8230 (define-public perl-posix-strftime-compiler
8231 (package
8232 (name "perl-posix-strftime-compiler")
8233 (version "0.42")
8234 (source
8235 (origin
8236 (method url-fetch)
8237 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
8238 "POSIX-strftime-Compiler-" version ".tar.gz"))
8239 (sha256
8240 (base32
8241 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
8242 (build-system perl-build-system)
8243 (native-inputs `(("perl-module-build" ,perl-module-build)))
8244 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
8245 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
8246 (synopsis "GNU C library compatible strftime for loggers and servers")
8247 (description "POSIX::strftime::Compiler provides GNU C library compatible
8248 strftime(3). But this module is not affected by the system locale. This
8249 feature is useful when you want to write loggers, servers, and portable
8250 applications.")
8251 (license (package-license perl))))
8252
8253 (define-public perl-probe-perl
8254 (package
8255 (name "perl-probe-perl")
8256 (version "0.03")
8257 (source (origin
8258 (method url-fetch)
8259 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8260 "Probe-Perl-" version ".tar.gz"))
8261 (sha256
8262 (base32
8263 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
8264 (build-system perl-build-system)
8265 (synopsis "Information about the currently running perl")
8266 (description
8267 "Probe::Perl provides methods for obtaining information about the
8268 currently running perl interpreter. It originally began life as code in the
8269 Module::Build project, but has been externalized here for general use.")
8270 (home-page "https://metacpan.org/release/Probe-Perl")
8271 (license (package-license perl))))
8272
8273 (define-public perl-proc-invokeeditor
8274 (package
8275 (name "perl-proc-invokeeditor")
8276 (version "1.13")
8277 (source
8278 (origin
8279 (method url-fetch)
8280 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
8281 version ".tar.gz"))
8282 (sha256
8283 (base32
8284 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
8285 (build-system perl-build-system)
8286 (arguments
8287 `(#:phases
8288 (modify-phases %standard-phases
8289 (add-after 'unpack 'set-EDITOR
8290 (lambda _ (setenv "EDITOR" "echo") #t)))))
8291 (propagated-inputs
8292 `(("perl-carp-assert" ,perl-carp-assert)))
8293 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
8294 (synopsis "Interface to external editor from Perl")
8295 (description "This module provides the ability to supply some text to an
8296 external text editor, have it edited by the user, and retrieve the results.")
8297 (license (package-license perl))))
8298
8299 (define-public perl-readonly
8300 (package
8301 (name "perl-readonly")
8302 (version "2.00")
8303 (source
8304 (origin
8305 (method url-fetch)
8306 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
8307 "Readonly-" version ".tar.gz"))
8308 (sha256
8309 (base32
8310 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
8311 (build-system perl-build-system)
8312 (native-inputs `(("perl-module-build" ,perl-module-build)))
8313 (home-page "https://metacpan.org/release/Readonly")
8314 (synopsis "Create read-only scalars, arrays, hashes")
8315 (description "This module provides a facility for creating non-modifiable
8316 variables in Perl. This is useful for configuration files, headers, etc. It
8317 can also be useful as a development and debugging tool for catching updates to
8318 variables that should not be changed.")
8319 (license (package-license perl))))
8320
8321 (define-public perl-ref-util-xs
8322 (package
8323 (name "perl-ref-util-xs")
8324 (version "0.117")
8325 (source
8326 (origin
8327 (method url-fetch)
8328 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
8329 "Ref-Util-XS-" version ".tar.gz"))
8330 (sha256
8331 (base32
8332 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
8333 (build-system perl-build-system)
8334 (home-page "https://metacpan.org/release/Ref-Util-XS")
8335 (synopsis "XS implementation for Ref::Util")
8336 (description "@code{Ref::Util::XS} is the XS implementation of
8337 @code{Ref::Util}, which provides several functions to help identify references
8338 in a more convenient way than the usual approach of examining the return value
8339 of @code{ref}.")
8340 (license x11)))
8341
8342 (define-public perl-regexp-common
8343 (package
8344 (name "perl-regexp-common")
8345 (version "2017060201")
8346 (source (origin
8347 (method url-fetch)
8348 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
8349 "Regexp-Common-" version ".tar.gz"))
8350 (sha256
8351 (base32
8352 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
8353 (build-system perl-build-system)
8354 (synopsis "Provide commonly requested regular expressions")
8355 (description
8356 "This module exports a single hash (@code{%RE}) that stores or generates
8357 commonly needed regular expressions. Patterns currently provided include:
8358 balanced parentheses and brackets, delimited text (with escapes), integers and
8359 floating-point numbers in any base (up to 36), comments in 44 languages,
8360 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
8361 codes.")
8362 (home-page "https://metacpan.org/release/Regexp-Common")
8363 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
8364 (license (list (package-license perl) x11 bsd-3))))
8365
8366 (define-public perl-regexp-util
8367 (package
8368 (name "perl-regexp-util")
8369 (version "0.003")
8370 (source
8371 (origin
8372 (method url-fetch)
8373 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8374 "Regexp-Util-" version ".tar.gz"))
8375 (sha256
8376 (base32
8377 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
8378 (build-system perl-build-system)
8379 (home-page "https://metacpan.org/release/Regexp-Util")
8380 (synopsis "Selection of general-utility regexp subroutines")
8381 (description "This package provides a selection of regular expression
8382 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
8383 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
8384 and @code{deserialize_regexp}.")
8385 (license (package-license perl))))
8386
8387 (define-public perl-role-tiny
8388 (package
8389 (name "perl-role-tiny")
8390 (version "1.003004")
8391 (source
8392 (origin
8393 (method url-fetch)
8394 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8395 "Role-Tiny-" version ".tar.gz"))
8396 (sha256
8397 (base32
8398 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
8399 (build-system perl-build-system)
8400 (native-inputs
8401 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
8402 ("perl-test-fatal" ,perl-test-fatal)))
8403 (propagated-inputs
8404 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
8405 (home-page "https://metacpan.org/release/Role-Tiny")
8406 (synopsis "Roles, as a slice of Moose")
8407 (description "Role::Tiny is a minimalist role composition tool.")
8408 (license (package-license perl))))
8409
8410 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
8411 (define-public perl-role-tiny-2
8412 (package
8413 (inherit perl-role-tiny)
8414 (version "2.001001")
8415 (source
8416 (origin
8417 (method url-fetch)
8418 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8419 "Role-Tiny-" version ".tar.gz"))
8420 (sha256
8421 (base32 "16yryg3cr14xw201gm8k8ci00hs60fy8lk2xhnaqa85n5m68flk8"))))))
8422
8423 (define-public perl-safe-isa
8424 (package
8425 (name "perl-safe-isa")
8426 (version "1.000010")
8427 (source
8428 (origin
8429 (method url-fetch)
8430 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8431 "Safe-Isa-" version ".tar.gz"))
8432 (sha256
8433 (base32
8434 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
8435 (build-system perl-build-system)
8436 (home-page "https://metacpan.org/release/Safe-Isa")
8437 (synopsis "Call isa, can, does, and DOES safely")
8438 (description "This module allows you to call isa, can, does, and DOES
8439 safely on things that may not be objects.")
8440 (license (package-license perl))))
8441
8442 (define-public perl-scalar-string
8443 (package
8444 (name "perl-scalar-string")
8445 (version "0.003")
8446 (source
8447 (origin
8448 (method url-fetch)
8449 (uri (string-append
8450 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Scalar-String-"
8451 version ".tar.gz"))
8452 (sha256
8453 (base32
8454 "0llbsqk7rsg9p7l1f4yk6iv7wij91gvavprsqhnb04w7nz4ifjpm"))))
8455 (build-system perl-build-system)
8456 (native-inputs
8457 `(("perl-module-build" ,perl-module-build)
8458 ("perl-test-pod" ,perl-test-pod)
8459 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8460 (home-page "https://metacpan.org/release/Scalar-String")
8461 (synopsis "String aspects of scalars")
8462 (description "@code{Scalar::String} is about the string part of
8463 plain Perl scalars. A scalar has a string value, which is notionally
8464 a sequence of Unicode codepoints but may be internally encoded in
8465 either ISO-8859-1 or UTF-8. In places, more so in older versions of
8466 Perl, the internal encoding shows through. To fully understand Perl
8467 strings it is necessary to understand these implementation details.
8468 This module provides functions to classify a string by encoding and to
8469 encode a string in a desired way. The module is implemented in XS,
8470 with a pure Perl backup version for systems that cannot handle XS.")
8471 (license perl-license)))
8472
8473 (define-public perl-scope-guard
8474 (package
8475 (name "perl-scope-guard")
8476 (version "0.21")
8477 (source
8478 (origin
8479 (method url-fetch)
8480 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
8481 "Scope-Guard-" version ".tar.gz"))
8482 (sha256
8483 (base32
8484 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
8485 (build-system perl-build-system)
8486 (home-page "https://metacpan.org/release/Scope-Guard")
8487 (synopsis "Lexically-scoped resource management")
8488 (description "This module provides a convenient way to perform cleanup or
8489 other forms of resource management at the end of a scope. It is particularly
8490 useful when dealing with exceptions: the Scope::Guard constructor takes a
8491 reference to a subroutine that is guaranteed to be called even if the thread
8492 of execution is aborted prematurely. This effectively allows lexically-scoped
8493 \"promises\" to be made that are automatically honoured by perl's garbage
8494 collector.")
8495 (license (package-license perl))))
8496
8497 (define-public perl-set-infinite
8498 (package
8499 (name "perl-set-infinite")
8500 (version "0.65")
8501 (source
8502 (origin
8503 (method url-fetch)
8504 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
8505 "Set-Infinite-" version ".tar.gz"))
8506 (sha256
8507 (base32
8508 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
8509 (build-system perl-build-system)
8510 (home-page "https://metacpan.org/release/Set-Infinite")
8511 (synopsis "Infinite sets")
8512 (description "Set::Infinite is a set theory module for infinite sets.")
8513 (license (package-license perl))))
8514
8515 (define-public perl-set-intspan
8516 (package
8517 (name "perl-set-intspan")
8518 (version "1.19")
8519 (source (origin
8520 (method url-fetch)
8521 (uri (string-append
8522 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
8523 version ".tar.gz"))
8524 (sha256
8525 (base32
8526 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
8527 (build-system perl-build-system)
8528 (home-page "https://metacpan.org/release/Set-IntSpan")
8529 (synopsis "Manage sets of integers")
8530 (description "@code{Set::IntSpan} manages sets of integers. It is
8531 optimized for sets that have long runs of consecutive integers.")
8532 (license perl-license)))
8533
8534 (define-public perl-set-object
8535 (package
8536 (name "perl-set-object")
8537 (version "1.39")
8538 (source
8539 (origin
8540 (method url-fetch)
8541 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
8542 "Set-Object-" version ".tar.gz"))
8543 (sha256
8544 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
8545 (build-system perl-build-system)
8546 (propagated-inputs
8547 `(("perl-moose" ,perl-moose)
8548 ("perl-test-leaktrace" ,perl-test-leaktrace)))
8549 (home-page "https://metacpan.org/release/Set-Object")
8550 (synopsis "Unordered collections of Perl Objects")
8551 (description "Set::Object provides efficient sets, unordered collections
8552 of Perl objects without duplicates for scalars and references.")
8553 (license artistic2.0)))
8554
8555 (define-public perl-set-scalar
8556 (package
8557 (name "perl-set-scalar")
8558 (version "1.29")
8559 (source
8560 (origin
8561 (method url-fetch)
8562 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
8563 "Set-Scalar-" version ".tar.gz"))
8564 (sha256
8565 (base32
8566 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
8567 (build-system perl-build-system)
8568 (home-page "https://metacpan.org/release/Set-Scalar")
8569 (synopsis "Set operations for Perl")
8570 (description "The first priority of Set::Scalar is to be a convenient
8571 interface to sets (as in: unordered collections of Perl scalars). While not
8572 designed to be slow or big, neither has it been designed to be fast or
8573 compact.")
8574 (license (package-license perl))))
8575
8576 (define-public perl-sort-key
8577 (package
8578 (name "perl-sort-key")
8579 (version "1.33")
8580 (source
8581 (origin
8582 (method url-fetch)
8583 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
8584 version ".tar.gz"))
8585 (sha256
8586 (base32
8587 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
8588 (build-system perl-build-system)
8589 (home-page "https://metacpan.org/release/Sort-Key")
8590 (synopsis "Sort arrays by one or multiple calculated keys")
8591 (description "This Perl module provides various functions to quickly sort
8592 arrays by one or multiple calculated keys.")
8593 (license (package-license perl))))
8594
8595 (define-public perl-sort-naturally
8596 (package
8597 (name "perl-sort-naturally")
8598 (version "1.03")
8599 (source
8600 (origin
8601 (method url-fetch)
8602 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
8603 version ".tar.gz"))
8604 (sha256
8605 (base32
8606 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
8607 (build-system perl-build-system)
8608 (home-page "https://metacpan.org/release/Sort-Naturally")
8609 (synopsis "Sort lexically, but sort numeral parts numerically")
8610 (description "This module exports two functions, @code{nsort} and
8611 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
8612 Under natural sorting, numeric substrings are compared numerically, and other
8613 word-characters are compared lexically.")
8614 (license (package-license perl))))
8615
8616 (define-public perl-specio
8617 (package
8618 (name "perl-specio")
8619 (version "0.38")
8620 (source
8621 (origin
8622 (method url-fetch)
8623 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8624 "Specio-" version ".tar.gz"))
8625 (sha256
8626 (base32
8627 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
8628 (build-system perl-build-system)
8629 (propagated-inputs
8630 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8631 ("perl-eval-closure" ,perl-eval-closure)
8632 ("perl-module-runtime" ,perl-module-runtime)
8633 ("perl-mro-compat" ,perl-mro-compat)
8634 ("perl-role-tiny" ,perl-role-tiny)
8635 ("perl-test-fatal" ,perl-test-fatal)
8636 ("perl-test-needs" ,perl-test-needs)))
8637 (home-page "https://metacpan.org/release/Specio")
8638 (synopsis "Classes for representing type constraints and coercion")
8639 (description "The Specio distribution provides classes for representing type
8640 constraints and coercion, along with syntax sugar for declaring them. Note that
8641 this is not a proper type system for Perl. Nothing in this distribution will
8642 magically make the Perl interpreter start checking a value's type on assignment
8643 to a variable. In fact, there's no built-in way to apply a type to a variable at
8644 all. Instead, you can explicitly check a value against a type, and optionally
8645 coerce values to that type.")
8646 (license artistic2.0)))
8647
8648 (define-public perl-spiffy
8649 (package
8650 (name "perl-spiffy")
8651 (version "0.46")
8652 (source
8653 (origin
8654 (method url-fetch)
8655 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8656 "Spiffy-" version ".tar.gz"))
8657 (sha256
8658 (base32
8659 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
8660 (build-system perl-build-system)
8661 (home-page "https://metacpan.org/release/Spiffy")
8662 (synopsis "Spiffy Perl Interface Framework For You")
8663 (description "Spiffy is a framework and methodology for doing object
8664 oriented (OO) programming in Perl. Spiffy combines the best parts of
8665 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
8666 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
8667 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
8668 other OO languages like Python, Ruby, Java and Perl 6.")
8669 (license (package-license perl))))
8670
8671 (define-public perl-statistics-basic
8672 (package
8673 (name "perl-statistics-basic")
8674 (version "1.6611")
8675 (source (origin
8676 (method url-fetch)
8677 (uri (string-append
8678 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
8679 version ".tar.gz"))
8680 (sha256
8681 (base32
8682 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
8683 (build-system perl-build-system)
8684 (inputs
8685 `(("perl-number-format" ,perl-number-format)))
8686 (home-page "https://metacpan.org/release/Statistics-Basic")
8687 (synopsis "Collection of very basic statistics modules")
8688 (description "This package provides basic statistics functions like
8689 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
8690 (license lgpl2.0)))
8691
8692 (define-public perl-stream-buffered
8693 (package
8694 (name "perl-stream-buffered")
8695 (version "0.03")
8696 (source
8697 (origin
8698 (method url-fetch)
8699 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8700 "Stream-Buffered-" version ".tar.gz"))
8701 (sha256
8702 (base32
8703 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
8704 (build-system perl-build-system)
8705 (home-page "https://metacpan.org/release/Stream-Buffered")
8706 (synopsis "Temporary buffer to save bytes")
8707 (description "Stream::Buffered is a buffer class to store arbitrary length
8708 of byte strings and then get a seekable filehandle once everything is
8709 buffered. It uses PerlIO and/or temporary file to save the buffer depending
8710 on the length of the size.")
8711 (license (package-license perl))))
8712
8713 (define-public perl-strictures
8714 (package
8715 (name "perl-strictures")
8716 (version "1.005005")
8717 (source
8718 (origin
8719 (method url-fetch)
8720 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8721 "strictures-" version ".tar.gz"))
8722 (sha256
8723 (base32
8724 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
8725 (build-system perl-build-system)
8726 (home-page "https://metacpan.org/release/strictures")
8727 (synopsis "Turn on strict and make all warnings fatal")
8728 (description "Strictures turns on strict and make all warnings fatal when
8729 run from within a source-controlled directory.")
8730 (license (package-license perl))))
8731
8732 ;; Some packages don't yet work with this newer version of ‘strictures’.
8733 (define-public perl-strictures-2
8734 (package
8735 (inherit perl-strictures)
8736 (version "2.000006")
8737 (source
8738 (origin
8739 (method url-fetch)
8740 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8741 "strictures-" version ".tar.gz"))
8742 (sha256
8743 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
8744
8745 (define-public perl-string-camelcase
8746 (package
8747 (name "perl-string-camelcase")
8748 (version "0.04")
8749 (source
8750 (origin
8751 (method url-fetch)
8752 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
8753 "String-CamelCase-" version ".tar.gz"))
8754 (sha256
8755 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
8756 (build-system perl-build-system)
8757 (arguments
8758 `(#:phases
8759 (modify-phases %standard-phases
8760 (add-before 'configure 'set-perl-search-path
8761 (lambda _
8762 ;; Work around "dotless @INC" build failure.
8763 (setenv "PERL5LIB"
8764 (string-append (getcwd) ":"
8765 (getenv "PERL5LIB")))
8766 #t)))))
8767 (home-page "https://metacpan.org/release/String-CamelCase")
8768 (synopsis "Camelcase and de-camelcase")
8769 (description "This module may be used to convert from under_score text to
8770 CamelCase and back again.")
8771 (license (package-license perl))))
8772
8773 (define-public perl-string-escape
8774 (package
8775 (name "perl-string-escape")
8776 (version "2010.002")
8777 (source
8778 (origin
8779 (method url-fetch)
8780 (uri (string-append
8781 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
8782 version ".tar.gz"))
8783 (sha256
8784 (base32
8785 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
8786 (build-system perl-build-system)
8787 (home-page "https://metacpan.org/release/String-Escape")
8788 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
8789 (description "This module provides a flexible calling interface to some
8790 frequently-performed string conversion functions, including applying and
8791 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
8792 removing double-quotes, and truncating to fit within a desired length.")
8793 (license (package-license perl))))
8794
8795 (define-public perl-string-formatter
8796 (package
8797 (name "perl-string-formatter")
8798 (version "0.102084")
8799 (source
8800 (origin
8801 (method url-fetch)
8802 (uri (string-append
8803 "mirror://cpan/authors/id/R/RJ/RJBS/String-Formatter-"
8804 version
8805 ".tar.gz"))
8806 (sha256
8807 (base32
8808 "0mlwm0rirv46gj4h072q8gdync5zxxsxy8p028gdyrhczl942dc3"))))
8809 (build-system perl-build-system)
8810 (propagated-inputs
8811 `(("perl-params-util" ,perl-params-util)
8812 ("perl-sub-exporter" ,perl-sub-exporter)))
8813 (home-page "https://metacpan.org/release/String-Formatter")
8814 (synopsis "Build your own sprintf-like functions")
8815 (description
8816 "@code{String::Formatter} is a tool for building sprintf-like formatting
8817 routines. It supports named or positional formatting, custom conversions,
8818 fixed string interpolation, and simple width-matching.")
8819 (license gpl2)))
8820
8821 (define-public perl-string-rewriteprefix
8822 (package
8823 (name "perl-string-rewriteprefix")
8824 (version "0.007")
8825 (source
8826 (origin
8827 (method url-fetch)
8828 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
8829 "String-RewritePrefix-" version ".tar.gz"))
8830 (sha256
8831 (base32
8832 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
8833 (build-system perl-build-system)
8834 (propagated-inputs
8835 `(("perl-sub-exporter" ,perl-sub-exporter)))
8836 (home-page "https://metacpan.org/release/String-RewritePrefix")
8837 (synopsis "Rewrite strings based on a set of known prefixes")
8838 (description "This module allows you to rewrite strings based on a set of
8839 known prefixes.")
8840 (license (package-license perl))))
8841
8842 (define-public perl-string-shellquote
8843 (package
8844 (name "perl-string-shellquote")
8845 (version "1.04")
8846 (source
8847 (origin
8848 (method url-fetch)
8849 (uri (string-append
8850 "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
8851 version
8852 ".tar.gz"))
8853 (sha256
8854 (base32
8855 "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
8856 (build-system perl-build-system)
8857 (home-page "https://metacpan.org/release/String-ShellQuote")
8858 (synopsis "Quote strings for passing through a shell")
8859 (description
8860 "@code{shell-quote} lets you pass arbitrary strings through the shell so
8861 that they won't be changed.")
8862 (license (package-license perl))))
8863
8864 (define-public perl-string-print
8865 (package
8866 (name "perl-string-print")
8867 (version "0.15")
8868 (source (origin
8869 (method url-fetch)
8870 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
8871 "String-Print-" version ".tar.gz"))
8872 (sha256
8873 (base32
8874 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
8875 (build-system perl-build-system)
8876 (propagated-inputs
8877 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
8878 (home-page "https://metacpan.org/release/String-Print")
8879 (synopsis "String printing alternatives to printf")
8880 (description
8881 "This module inserts values into (translated) strings. It provides
8882 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
8883 a functional interface.")
8884 (license (package-license perl))))
8885
8886 (define-public perl-sub-exporter
8887 (package
8888 (name "perl-sub-exporter")
8889 (version "0.987")
8890 (source
8891 (origin
8892 (method url-fetch)
8893 (uri (string-append
8894 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
8895 version ".tar.gz"))
8896 (sha256
8897 (base32
8898 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
8899 (build-system perl-build-system)
8900 (propagated-inputs
8901 `(("perl-data-optlist" ,perl-data-optlist)
8902 ("perl-params-util" ,perl-params-util)))
8903 (home-page "https://metacpan.org/release/Sub-Exporter")
8904 (synopsis "Sophisticated exporter for custom-built routines")
8905 (description
8906 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
8907 custom-built routines.")
8908 (license (package-license perl))))
8909
8910 (define-public perl-sub-exporter-progressive
8911 (package
8912 (name "perl-sub-exporter-progressive")
8913 (version "0.001013")
8914 (source
8915 (origin
8916 (method url-fetch)
8917 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
8918 "Sub-Exporter-Progressive-" version ".tar.gz"))
8919 (sha256
8920 (base32
8921 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
8922 (build-system perl-build-system)
8923 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
8924 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
8925 (synopsis "Only use Sub::Exporter if you need it")
8926 (description "Sub::Exporter is an incredibly powerful module, but with
8927 that power comes great responsibility, as well as some runtime penalties.
8928 This module is a \"Sub::Exporter\" wrapper that will let your users just use
8929 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
8930 if your users try to use \"Sub::Exporter\"'s more advanced features, like
8931 renaming exports, if they try to use them.")
8932 (license (package-license perl))))
8933
8934 (define-public perl-sub-identify
8935 (package
8936 (name "perl-sub-identify")
8937 (version "0.14")
8938 (source
8939 (origin
8940 (method url-fetch)
8941 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
8942 "Sub-Identify-" version ".tar.gz"))
8943 (sha256
8944 (base32
8945 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
8946 (build-system perl-build-system)
8947 (home-page "https://metacpan.org/release/Sub-Identify")
8948 (synopsis "Retrieve names of code references")
8949 (description "Sub::Identify allows you to retrieve the real name of code
8950 references.")
8951 (license (package-license perl))))
8952
8953 (define-public perl-sub-info
8954 (package
8955 (name "perl-sub-info")
8956 (version "0.002")
8957 (source
8958 (origin
8959 (method url-fetch)
8960 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
8961 version ".tar.gz"))
8962 (sha256
8963 (base32
8964 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
8965 (build-system perl-build-system)
8966 (propagated-inputs
8967 `(("perl-importer" ,perl-importer)))
8968 (home-page "https://metacpan.org/release/Sub-Info")
8969 (synopsis "Tool to inspect subroutines")
8970 (description "This package provides tools for inspecting subroutines
8971 in Perl.")
8972 (license (package-license perl))))
8973
8974 (define-public perl-sub-install
8975 (package
8976 (name "perl-sub-install")
8977 (version "0.928")
8978 (source
8979 (origin
8980 (method url-fetch)
8981 (uri (string-append
8982 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
8983 version ".tar.gz"))
8984 (sha256
8985 (base32
8986 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
8987 (build-system perl-build-system)
8988 (home-page "https://metacpan.org/release/Sub-Install")
8989 (synopsis "Install subroutines into packages easily")
8990 (description
8991 "Sub::Install makes it easy to install subroutines into packages without
8992 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
8993 can see them.")
8994 (license (package-license perl))))
8995
8996 (define-public perl-sub-name
8997 (package
8998 (name "perl-sub-name")
8999 (version "0.21")
9000 (source
9001 (origin
9002 (method url-fetch)
9003 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9004 "Sub-Name-" version ".tar.gz"))
9005 (sha256
9006 (base32
9007 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
9008 (build-system perl-build-system)
9009 (native-inputs
9010 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
9011 (home-page "https://metacpan.org/release/Sub-Name")
9012 (synopsis "(Re)name a sub")
9013 (description "Assigns a new name to referenced sub. If package
9014 specification is omitted in the name, then the current package is used. The
9015 return value is the sub.")
9016 (license (package-license perl))))
9017
9018 (define-public perl-sub-quote
9019 (package
9020 (name "perl-sub-quote")
9021 (version "2.006006")
9022 (source
9023 (origin
9024 (method url-fetch)
9025 (uri (string-append
9026 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
9027 version ".tar.gz"))
9028 (sha256
9029 (base32 "17fq4iskrisnqs96amrz493vxikwvqbj9s7014k6vyl84gs2lkkf"))))
9030 (build-system perl-build-system)
9031 (native-inputs
9032 `(("perl-test-fatal" ,perl-test-fatal)))
9033 (propagated-inputs
9034 `(("perl-sub-name" ,perl-sub-name)))
9035 (home-page "https://metacpan.org/release/Sub-Quote")
9036 (synopsis "Efficient generation of subroutines via string eval")
9037 (description "Sub::Quote provides an efficient generation of subroutines
9038 via string eval.")
9039 (license (package-license perl))))
9040
9041 (define-public perl-sub-uplevel
9042 (package
9043 (name "perl-sub-uplevel")
9044 (version "0.24")
9045 (source
9046 (origin
9047 (method url-fetch)
9048 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9049 "Sub-Uplevel-" version ".tar.gz"))
9050 (sha256
9051 (base32
9052 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
9053 (build-system perl-build-system)
9054 (home-page "https://metacpan.org/release/Sub-Uplevel")
9055 (synopsis "Apparently run a function in a higher stack frame")
9056 (description "Like Tcl's uplevel() function, but not quite so dangerous.
9057 The idea is just to fool caller(). All the really naughty bits of Tcl's
9058 uplevel() are avoided.")
9059 (license (package-license perl))))
9060
9061 (define-public perl-super
9062 (package
9063 (name "perl-super")
9064 (version "1.20190531")
9065 (source
9066 (origin
9067 (method url-fetch)
9068 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9069 "SUPER-" version ".tar.gz"))
9070 (sha256
9071 (base32 "16nk2za9fwyg7mcifacr69qi075iz1yvy8r9jh3903kzdvkiwpb8"))))
9072 (build-system perl-build-system)
9073 (native-inputs
9074 `(("perl-module-build" ,perl-module-build)))
9075 (propagated-inputs
9076 `(("perl-sub-identify" ,perl-sub-identify)))
9077 (home-page "https://metacpan.org/release/SUPER")
9078 (synopsis "Control superclass method dispatching")
9079 (description
9080 "When subclassing a class, you may occasionally want to dispatch control to
9081 the superclass---at least conditionally and temporarily. This module provides
9082 nicer equivalents to the native Perl syntax for calling superclasses, along with
9083 a universal @code{super} method to determine a class' own superclass, and better
9084 support for run-time mix-ins and roles.")
9085 (license perl-license)))
9086
9087 (define-public perl-svg
9088 (package
9089 (name "perl-svg")
9090 (version "2.84")
9091 (source
9092 (origin
9093 (method url-fetch)
9094 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/SVG-"
9095 version ".tar.gz"))
9096 (sha256
9097 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
9098 (build-system perl-build-system)
9099 (home-page "https://metacpan.org/release/SVG")
9100 (synopsis "Perl extension for generating SVG documents")
9101 (description "SVG is a Perl module which generates a nested data structure
9102 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
9103 Using SVG, you can generate SVG objects, embed other SVG instances into it,
9104 access the DOM object, create and access Javascript, and generate SMIL
9105 animation content.")
9106 (license (package-license perl))))
9107
9108 (define-public perl-switch
9109 (package
9110 (name "perl-switch")
9111 (version "2.17")
9112 (source
9113 (origin
9114 (method url-fetch)
9115 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
9116 version ".tar.gz"))
9117 (sha256
9118 (base32
9119 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
9120 (build-system perl-build-system)
9121 (home-page "https://metacpan.org/release/Switch")
9122 (synopsis "Switch statement for Perl")
9123 (description "Switch is a Perl module which implements a generalized case
9124 mechanism. The module augments the standard Perl syntax with two new
9125 statements: @code{switch} and @code{case}.")
9126 (license (package-license perl))))
9127
9128 (define-public perl-sys-cpu
9129 (package
9130 (name "perl-sys-cpu")
9131 (version "0.61")
9132 (source (origin
9133 (method url-fetch)
9134 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
9135 "Sys-CPU-" version ".tar.gz"))
9136 (sha256
9137 (base32
9138 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
9139 (modules '((guix build utils)))
9140 (snippet
9141 '(begin
9142 ;; The contents of /proc/cpuinfo can differ and confuse the
9143 ;; cpu_clock and cpu_type methods, so we replace the test
9144 ;; with one that marks cpu_clock and cpu_type as TODO.
9145 ;; Borrowed from Debian.
9146 (call-with-output-file "t/Sys-CPU.t"
9147 (lambda (port)
9148 (format port "#!/usr/bin/perl
9149
9150 use Test::More tests => 4;
9151
9152 BEGIN { use_ok('Sys::CPU'); }
9153
9154 $number = &Sys::CPU::cpu_count();
9155 ok( defined($number), \"CPU Count: $number\" );
9156
9157 TODO: {
9158 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
9159 $speed = &Sys::CPU::cpu_clock();
9160 ok( defined($speed), \"CPU Speed: $speed\" );
9161 }
9162
9163 TODO: {
9164 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
9165 $type = &Sys::CPU::cpu_type();
9166 ok( defined($type), \"CPU Type: $type\" );
9167 }~%")))
9168 #t))))
9169 (build-system perl-build-system)
9170 (synopsis "Perl extension for getting CPU information")
9171 (description
9172 "Sys::CPU is a module for counting the number of CPUs on a system, and
9173 determining their type and clock speed.")
9174 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
9175 (license (package-license perl))))
9176
9177 (define-public perl-sys-hostname-long
9178 (package
9179 (name "perl-sys-hostname-long")
9180 (version "1.5")
9181 (source
9182 (origin
9183 (method url-fetch)
9184 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
9185 "Sys-Hostname-Long-" version ".tar.gz"))
9186 (sha256
9187 (base32
9188 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
9189 (build-system perl-build-system)
9190 (arguments `(#:tests? #f)) ;no `hostname' during build
9191 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
9192 (synopsis "Get full hostname in Perl")
9193 (description "Sys::Hostname::Long tries very hard to get the full hostname
9194 of a system.")
9195 (license (package-license perl))))
9196
9197 (define-public perl-sys-syscall
9198 (package
9199 (name "perl-sys-syscall")
9200 (version "0.25")
9201 (source
9202 (origin
9203 (method url-fetch)
9204 (uri (string-append "mirror://cpan/authors/id/B/BR/BRADFITZ/"
9205 "Sys-Syscall-" version ".tar.gz"))
9206 (sha256
9207 (base32
9208 "1r8k4q04dhs191zgdfgiagvbra770hx0bm6x24jsykxn0c6ghi8y"))))
9209 (build-system perl-build-system)
9210 (home-page "https://metacpan.org/release/Sys-Syscall")
9211 (synopsis
9212 "Access system calls that Perl doesn't normally provide access to")
9213 (description
9214 "Sys::Syscall allows one to use epoll and sendfile system calls from
9215 Perl. Support is mostly Linux-only for now, but other syscalls/OSes are
9216 planned for the future.")
9217 (license perl-license)))
9218
9219 (define-public perl-task-weaken
9220 (package
9221 (name "perl-task-weaken")
9222 (version "1.06")
9223 (source
9224 (origin
9225 (method url-fetch)
9226 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9227 "Task-Weaken-" version ".tar.gz"))
9228 (sha256
9229 (base32
9230 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
9231 (build-system perl-build-system)
9232 (arguments
9233 '(#:phases (modify-phases %standard-phases
9234 (add-before 'configure 'set-search-path
9235 (lambda _
9236 ;; Work around "dotless @INC" build failure.
9237 (setenv "PERL5LIB"
9238 (string-append (getcwd) ":"
9239 (getenv "PERL5LIB")))
9240 #t)))))
9241 (home-page "https://metacpan.org/release/Task-Weaken")
9242 (synopsis "Ensure that a platform has weaken support")
9243 (description "One recurring problem in modules that use Scalar::Util's
9244 weaken function is that it is not present in the pure-perl variant. If
9245 Scalar::Util is not available at all, it will issue a normal dependency on the
9246 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
9247 module does not have weaken, the install will bail out altogether with a long
9248 error encouraging the user to seek support.")
9249 (license (package-license perl))))
9250
9251 (define-public perl-template-toolkit
9252 (package
9253 (name "perl-template-toolkit")
9254 (version "2.28")
9255 (source
9256 (origin
9257 (method url-fetch)
9258 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9259 "Template-Toolkit-" version ".tar.gz"))
9260 (sha256
9261 (base32
9262 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
9263 (build-system perl-build-system)
9264 (propagated-inputs
9265 `(("perl-appconfig" ,perl-appconfig)
9266 ("perl-test-leaktrace" ,perl-test-leaktrace)))
9267 (home-page "https://metacpan.org/release/Template-Toolkit")
9268 (synopsis "Template processing system for Perl")
9269 (description "The Template Toolkit is a collection of modules which
9270 implement an extensible template processing system. It was originally
9271 designed and remains primarily useful for generating dynamic web content, but
9272 it can be used equally well for processing any other kind of text based
9273 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
9274 (license (package-license perl))))
9275
9276 (define-public perl-template-timer
9277 (package
9278 (name "perl-template-timer")
9279 (version "1.00")
9280 (source
9281 (origin
9282 (method url-fetch)
9283 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
9284 "Template-Timer-" version ".tar.gz"))
9285 (sha256
9286 (base32
9287 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
9288 (build-system perl-build-system)
9289 (propagated-inputs
9290 `(("perl-template-toolkit" ,perl-template-toolkit)))
9291 (home-page "https://metacpan.org/release/Template-Timer")
9292 (synopsis "Profiling for Template Toolkit")
9293 (description "Template::Timer provides inline profiling of the template
9294 processing in Perl code.")
9295 (license (list gpl3 artistic2.0))))
9296
9297 (define-public perl-template-tiny
9298 (package
9299 (name "perl-template-tiny")
9300 (version "1.12")
9301 (source
9302 (origin
9303 (method url-fetch)
9304 (uri (string-append
9305 "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-"
9306 version
9307 ".tar.gz"))
9308 (sha256
9309 (base32
9310 "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7"))))
9311 (build-system perl-build-system)
9312 (home-page "https://metacpan.org/release/Template-Tiny")
9313 (synopsis "Template Toolkit reimplemented in as little code as possible")
9314 (description
9315 "@code{Template::Tiny} is a reimplementation of a subset of the
9316 functionality from Template Toolkit in as few lines of code as possible.
9317
9318 It is intended for use in light-usage, low-memory, or low-cpu templating
9319 situations, where you may need to upgrade to the full feature set in the
9320 future, or if you want the retain the familiarity of TT-style templates.")
9321 (license perl-license)))
9322
9323 (define-public perl-term-encoding
9324 (package
9325 (name "perl-term-encoding")
9326 (version "0.02")
9327 (source
9328 (origin
9329 (method url-fetch)
9330 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
9331 "Term-Encoding-" version ".tar.gz"))
9332 (sha256
9333 (base32
9334 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
9335 (build-system perl-build-system)
9336 (native-inputs
9337 `(("perl-module-install" ,perl-module-install)))
9338 (home-page "https://metacpan.org/release/Term-Encoding")
9339 (synopsis "Detect encoding of the current terminal")
9340 (description "Term::Encoding is a simple module to detect the encoding of
9341 the current terminal expects in various ways.")
9342 (license (package-license perl))))
9343
9344 (define-public perl-term-progressbar
9345 (package
9346 (name "perl-term-progressbar")
9347 (version "2.17")
9348 (source
9349 (origin
9350 (method url-fetch)
9351 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
9352 "Term-ProgressBar-" version ".tar.gz"))
9353 (sha256
9354 (base32
9355 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
9356 (build-system perl-build-system)
9357 (native-inputs
9358 `(("perl-capture-tiny" ,perl-capture-tiny)
9359 ("perl-test-exception" ,perl-test-exception)))
9360 (propagated-inputs
9361 `(("perl-class-methodmaker" ,perl-class-methodmaker)
9362 ("perl-term-readkey" ,perl-term-readkey)))
9363 (home-page "https://metacpan.org/release/Term-ProgressBar")
9364 (synopsis "Progress meter on a standard terminal")
9365 (description "Term::ProgressBar provides a simple progress bar on the
9366 terminal, to let the user know that something is happening, roughly how much
9367 stuff has been done, and maybe an estimate at how long remains.")
9368 (license (package-license perl))))
9369
9370 (define-public perl-term-progressbar-quiet
9371 (package
9372 (name "perl-term-progressbar-quiet")
9373 (version "0.31")
9374 (source
9375 (origin
9376 (method url-fetch)
9377 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
9378 "Term-ProgressBar-Quiet-" version ".tar.gz"))
9379 (sha256
9380 (base32
9381 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
9382 (build-system perl-build-system)
9383 (propagated-inputs
9384 `(("perl-io-interactive" ,perl-io-interactive)
9385 ("perl-term-progressbar" ,perl-term-progressbar)
9386 ("perl-test-mockobject" ,perl-test-mockobject)))
9387 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
9388 (synopsis "Progress meter if run interactively")
9389 (description "Term::ProgressBar is a wonderful module for showing progress
9390 bars on the terminal. This module acts very much like that module when it is
9391 run interactively. However, when it is not run interactively (for example, as
9392 a cron job) then it does not show the progress bar.")
9393 (license (package-license perl))))
9394
9395 (define-public perl-term-progressbar-simple
9396 (package
9397 (name "perl-term-progressbar-simple")
9398 (version "0.03")
9399 (source
9400 (origin
9401 (method url-fetch)
9402 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
9403 "Term-ProgressBar-Simple-" version ".tar.gz"))
9404 (sha256
9405 (base32
9406 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
9407 (build-system perl-build-system)
9408 (propagated-inputs
9409 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
9410 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
9411 (synopsis "Simple progress bars")
9412 (description "Term::ProgressBar::Simple tells you how much work has been
9413 done, how much is left to do, and estimate how long it will take.")
9414 (license (package-license perl))))
9415
9416 (define-public perl-term-readkey
9417 (package
9418 (name "perl-term-readkey")
9419 (version "2.38")
9420 (source
9421 (origin
9422 (method url-fetch)
9423 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
9424 "TermReadKey-" version ".tar.gz"))
9425 (sha256
9426 (base32
9427 "143jlibah1g14bym7sj3gphvqkpj1w4vn7sqc4vc62jpviw5hr2s"))))
9428 (build-system perl-build-system)
9429 (home-page "https://metacpan.org/release/TermReadKey")
9430 (synopsis "Simple terminal control")
9431 (description "This module, ReadKey, provides ioctl control for terminals
9432 so the input modes can be changed (thus allowing reads of a single character
9433 at a time), and also provides non-blocking reads of stdin, as well as several
9434 other terminal related features, including retrieval/modification of the
9435 screen size, and retrieval/modification of the control characters.")
9436 (license (package-license perl))))
9437
9438 (define-public perl-term-readline-gnu
9439 (package
9440 (name "perl-term-readline-gnu")
9441 (version "1.36")
9442 (source
9443 (origin
9444 (method url-fetch)
9445 (uri (string-append "mirror://cpan/authors/id/H/HA/HAYASHI/"
9446 "Term-ReadLine-Gnu-" version ".tar.gz"))
9447 (sha256
9448 (base32
9449 "09b9mcmp09kdfh5jaqdr528yny8746hvn3f185aqd6rw06jgf24s"))))
9450 (build-system perl-build-system)
9451 (inputs
9452 `(("readline" ,readline)
9453 ("ncurses" ,ncurses)))
9454 (arguments
9455 `(#:tests? #f ; Tests fail without other Term::ReadLine interfaces present
9456 #:phases (modify-phases %standard-phases
9457 (add-before 'configure 'patch-search-lib
9458 (lambda* (#:key inputs #:allow-other-keys)
9459 (substitute* "Makefile.PL"
9460 ;; The configuration provides no way easy was to pass
9461 ;; additional directories to search for libraries, so
9462 ;; just patch in the flags.
9463 (("-lreadline" &)
9464 (format #f "-L~a/lib ~a" (assoc-ref inputs "readline") &))
9465 (("&search_lib\\('-lncurses'\\)")
9466 (string-append "'-L" (assoc-ref inputs "ncurses") "/lib"
9467 " -lncurses'"))))))))
9468 (home-page "https://metacpan.org/release/Term-ReadLine-Gnu")
9469 (synopsis "GNU Readline/History Library interface for Perl")
9470 (description "This module implements an interface to the GNU Readline
9471 library. It gives you input line editing facilities, input history management
9472 facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards
9473 compatible with Term::ReadLine.")
9474 (license (package-license perl))))
9475
9476 (define-public perl-term-size-any
9477 (package
9478 (name "perl-term-size-any")
9479 (version "0.002")
9480 (source
9481 (origin
9482 (method url-fetch)
9483 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9484 "Term-Size-Any-" version ".tar.gz"))
9485 (sha256
9486 (base32
9487 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
9488 (build-system perl-build-system)
9489 (native-inputs
9490 `(("perl-devel-hide" ,perl-devel-hide)))
9491 (propagated-inputs
9492 `(("perl-term-size-perl" ,perl-term-size-perl)))
9493 (home-page "https://metacpan.org/release/Term-Size-Any")
9494 (synopsis "Retrieve terminal size")
9495 (description "This is a unified interface to retrieve terminal size. It
9496 loads one module of a list of known alternatives, each implementing some way
9497 to get the desired terminal information. This loaded module will actually do
9498 the job on behalf of @code{Term::Size::Any}.")
9499 (license (package-license perl))))
9500
9501 (define-public perl-term-size-perl
9502 (package
9503 (name "perl-term-size-perl")
9504 (version "0.031")
9505 (source
9506 (origin
9507 (method url-fetch)
9508 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9509 "Term-Size-Perl-" version ".tar.gz"))
9510 (sha256
9511 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
9512 (build-system perl-build-system)
9513 (home-page "https://metacpan.org/release/Term-Size-Perl")
9514 (synopsis "Perl extension for retrieving terminal size (Perl version)")
9515 (description "This is yet another implementation of @code{Term::Size}.
9516 Now in pure Perl, with the exception of a C probe run at build time.")
9517 (license (package-license perl))))
9518
9519 (define-public perl-term-table
9520 (package
9521 (name "perl-term-table")
9522 (version "0.008")
9523 (source
9524 (origin
9525 (method url-fetch)
9526 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
9527 version ".tar.gz"))
9528 (sha256
9529 (base32
9530 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
9531 (build-system perl-build-system)
9532 (propagated-inputs
9533 `(("perl-importer" ,perl-importer)))
9534 (home-page "https://metacpan.org/release/Term-Table")
9535 (synopsis "Format a header and rows into a table")
9536 (description "This module is able to generically format rows of data
9537 into tables.")
9538 (license (package-license perl))))
9539
9540 (define-public perl-text-aligner
9541 (package
9542 (name "perl-text-aligner")
9543 (version "0.13")
9544 (source
9545 (origin
9546 (method url-fetch)
9547 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9548 "Text-Aligner-" version ".tar.gz"))
9549 (sha256
9550 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
9551 (build-system perl-build-system)
9552 (native-inputs `(("perl-module-build" ,perl-module-build)))
9553 (home-page "https://metacpan.org/release/Text-Aligner")
9554 (synopsis "Align text")
9555 (description "Text::Aligner exports a single function, align(), which is
9556 used to justify strings to various alignment styles.")
9557 (license x11)))
9558
9559 (define-public perl-text-balanced
9560 (package
9561 (name "perl-text-balanced")
9562 (version "2.03")
9563 (source
9564 (origin
9565 (method url-fetch)
9566 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
9567 "Text-Balanced-" version ".tar.gz"))
9568 (sha256
9569 (base32
9570 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
9571 (build-system perl-build-system)
9572 (home-page "https://metacpan.org/release/Text-Balanced")
9573 (synopsis "Extract delimited text sequences from strings")
9574 (description "The Text::Balanced module can be used to extract delimited
9575 text sequences from strings.")
9576 (license (package-license perl))))
9577
9578 (define-public perl-text-csv
9579 (package
9580 (name "perl-text-csv")
9581 (version "2.00")
9582 (source
9583 (origin
9584 (method url-fetch)
9585 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
9586 "Text-CSV-" version ".tar.gz"))
9587 (sha256
9588 (base32 "1hmjrc8h622nybdq8lpqi3hlrcjvb474s4a4b2cjs8h5b0cxkjwc"))))
9589 (build-system perl-build-system)
9590 (home-page "https://metacpan.org/release/Text-CSV")
9591 (synopsis "Manipulate comma-separated values")
9592 (description "Text::CSV provides facilities for the composition and
9593 decomposition of comma-separated values. An instance of the Text::CSV class
9594 can combine fields into a CSV string and parse a CSV string into fields.")
9595 (license (package-license perl))))
9596
9597 (define-public perl-text-csv-xs
9598 (package
9599 (name "perl-text-csv-xs")
9600 (version "1.39")
9601 (source
9602 (origin
9603 (method url-fetch)
9604 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
9605 "Text-CSV_XS-" version ".tgz"))
9606 (sha256
9607 (base32 "1gcy1bxym6f7qsxivkl3c5p94r1bjhf9csy1x38a1gk8mx744kma"))))
9608 (build-system perl-build-system)
9609 (home-page "https://metacpan.org/release/Text-CSV_XS")
9610 (synopsis "Routines for manipulating CSV files")
9611 (description "@code{Text::CSV_XS} provides facilities for the composition
9612 and decomposition of comma-separated values. An instance of the
9613 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
9614 CSV string into fields. The module accepts either strings or files as input
9615 and support the use of user-specified characters for delimiters, separators,
9616 and escapes.")
9617 (license (package-license perl))))
9618
9619 (define-public perl-text-diff
9620 (package
9621 (name "perl-text-diff")
9622 (version "1.45")
9623 (source
9624 (origin
9625 (method url-fetch)
9626 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9627 "Text-Diff-" version ".tar.gz"))
9628 (sha256
9629 (base32
9630 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
9631 (build-system perl-build-system)
9632 (propagated-inputs
9633 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
9634 (home-page "https://metacpan.org/release/Text-Diff")
9635 (synopsis "Perform diffs on files and record sets")
9636 (description "Text::Diff provides a basic set of services akin to the GNU
9637 diff utility. It is not anywhere near as feature complete as GNU diff, but it
9638 is better integrated with Perl and available on all platforms. It is often
9639 faster than shelling out to a system's diff executable for small files, and
9640 generally slower on larger files.")
9641 (license (package-license perl))))
9642
9643 (define-public perl-text-format
9644 (package
9645 (name "perl-text-format")
9646 (version "0.61")
9647 (source (origin
9648 (method url-fetch)
9649 (uri (string-append
9650 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
9651 version ".tar.gz"))
9652 (sha256
9653 (base32
9654 "0axfyiml3zwawwd127z8rl2lm53z6dlsflzmp80m3j0myn7kp2mv"))))
9655 (build-system perl-build-system)
9656 (native-inputs
9657 `(("perl-module-build" ,perl-module-build)
9658 ("perl-test-pod" ,perl-test-pod)
9659 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9660 (home-page "https://metacpan.org/release/Text-Format")
9661 (synopsis "Various subroutines to format text")
9662 (description "This package provides functions to format text in various
9663 ways like centering, paragraphing, and converting tabs to spaces and spaces
9664 to tabs.")
9665 (license perl-license)))
9666
9667 (define-public perl-text-glob
9668 (package
9669 (name "perl-text-glob")
9670 (version "0.11")
9671 (source
9672 (origin
9673 (method url-fetch)
9674 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
9675 "Text-Glob-" version ".tar.gz"))
9676 (sha256
9677 (base32
9678 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
9679 (build-system perl-build-system)
9680 (native-inputs `(("perl-module-build" ,perl-module-build)))
9681 (home-page "https://metacpan.org/release/Text-Glob")
9682 (synopsis "Match globbing patterns against text")
9683 (description "Text::Glob implements glob(3) style matching that can be
9684 used to match against text, rather than fetching names from a file system. If
9685 you want to do full file globbing use the File::Glob module instead.")
9686 (license (package-license perl))))
9687
9688 (define-public perl-text-neattemplate
9689 (package
9690 (name "perl-text-neattemplate")
9691 (version "0.1101")
9692 (source
9693 (origin
9694 (method url-fetch)
9695 (uri (string-append
9696 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
9697 "Text-NeatTemplate-" version ".tar.gz"))
9698 (sha256
9699 (base32
9700 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
9701 (build-system perl-build-system)
9702 (native-inputs
9703 `(("perl-module-build" ,perl-module-build)))
9704 (home-page
9705 "https://metacpan.org/release/Text-NeatTemplate")
9706 (synopsis "Fast, middleweight template engine")
9707 (description
9708 "Text::NeatTemplate provides a simple, middleweight but fast
9709 template engine, for when you need speed rather than complex features,
9710 yet need more features than simple variable substitution.")
9711 (license (package-license perl))))
9712
9713 (define-public perl-text-roman
9714 (package
9715 (name "perl-text-roman")
9716 (version "3.5")
9717 (source
9718 (origin
9719 (method url-fetch)
9720 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
9721 version ".tar.gz"))
9722 (sha256
9723 (base32
9724 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
9725 (build-system perl-build-system)
9726 (home-page "https://metacpan.org/release/Text-Roman")
9727 (synopsis "Convert between Roman and Arabic algorisms")
9728 (description "This package provides functions to convert between Roman and
9729 Arabic algorisms. It supports both conventional Roman algorisms (which range
9730 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
9731 algorism to indicate multiplication by 1000.")
9732 (license (package-license perl))))
9733
9734 (define-public perl-text-simpletable
9735 (package
9736 (name "perl-text-simpletable")
9737 (version "2.07")
9738 (source
9739 (origin
9740 (method url-fetch)
9741 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
9742 "Text-SimpleTable-" version ".tar.gz"))
9743 (sha256
9744 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
9745 (build-system perl-build-system)
9746 (home-page "https://metacpan.org/release/Text-SimpleTable")
9747 (synopsis "Simple ASCII tables")
9748 (description "Text::SimpleTable draws simple ASCII tables.")
9749 (license artistic2.0)))
9750
9751 (define-public perl-text-table
9752 (package
9753 (name "perl-text-table")
9754 (version "1.133")
9755 (source
9756 (origin
9757 (method url-fetch)
9758 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9759 "Text-Table-" version ".tar.gz"))
9760 (sha256
9761 (base32
9762 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
9763 (build-system perl-build-system)
9764 (native-inputs
9765 `(("perl-module-build" ,perl-module-build)))
9766 (propagated-inputs
9767 `(("perl-text-aligner" ,perl-text-aligner)))
9768 (home-page "https://metacpan.org/release/Text-Table")
9769 (synopsis "Organize Data in Tables")
9770 (description "Text::Table renders plaintext tables.")
9771 (license x11)))
9772
9773 (define-public perl-text-template
9774 (package
9775 (name "perl-text-template")
9776 (version "1.55")
9777 (source
9778 (origin
9779 (method url-fetch)
9780 (uri (string-append
9781 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
9782 version
9783 ".tar.gz"))
9784 (sha256
9785 (base32
9786 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
9787 (build-system perl-build-system)
9788 (native-inputs
9789 `(("perl-test-more-utf8" ,perl-test-more-utf8)
9790 ("perl-test-warnings" ,perl-test-warnings)))
9791 (home-page
9792 "https://metacpan.org/release/Text-Template")
9793 (synopsis
9794 "Expand template text with embedded Perl")
9795 (description
9796 "This is a library for generating letters, building HTML pages, or
9797 filling in templates generally. A template is a piece of text that has little
9798 Perl programs embedded in it here and there. When you fill in a template, you
9799 evaluate the little programs and replace them with their values.")
9800 (license perl-license)))
9801
9802 (define-public perl-text-unidecode
9803 (package
9804 (name "perl-text-unidecode")
9805 (version "1.30")
9806 (source
9807 (origin
9808 (method url-fetch)
9809 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
9810 "Text-Unidecode-" version ".tar.gz"))
9811 (sha256
9812 (base32 "1imii0p6wvhrxsr5z2zhazpx5vl4l4ybf1y2c5hy480xvi6z293c"))))
9813 (build-system perl-build-system)
9814 (home-page "https://metacpan.org/release/Text-Unidecode")
9815 (synopsis "Provide plain ASCII transliterations of Unicode text")
9816 (description "Text::Unidecode provides a function, unidecode(...) that
9817 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
9818 universally displayable characters between 0x00 and 0x7F). The representation
9819 is almost always an attempt at transliteration-- i.e., conveying, in Roman
9820 letters, the pronunciation expressed by the text in some other writing
9821 system.")
9822 (license (package-license perl))))
9823
9824 (define-public perl-threads
9825 (package
9826 (name "perl-threads")
9827 (version "2.21")
9828 (source
9829 (origin
9830 (method url-fetch)
9831 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
9832 version ".tar.gz"))
9833 (sha256
9834 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
9835 (build-system perl-build-system)
9836 (home-page "https://metacpan.org/release/threads")
9837 (synopsis "Perl interpreter-based threads")
9838 (description "This module exposes interpreter threads to the Perl level.")
9839 (license perl-license)))
9840
9841 (define-public perl-throwable
9842 (package
9843 (name "perl-throwable")
9844 (version "0.200013")
9845 (source
9846 (origin
9847 (method url-fetch)
9848 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
9849 "Throwable-" version ".tar.gz"))
9850 (sha256
9851 (base32
9852 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
9853 (build-system perl-build-system)
9854 (native-inputs
9855 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
9856 (propagated-inputs
9857 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
9858 ("perl-module-runtime" ,perl-module-runtime)
9859 ("perl-moo" ,perl-moo)))
9860 (home-page "https://metacpan.org/release/Throwable")
9861 (synopsis "Role for classes that can be thrown")
9862 (description "Throwable is a role for classes that are meant to be thrown
9863 as exceptions to standard program flow.")
9864 (license (package-license perl))))
9865
9866 (define-public perltidy
9867 (package
9868 (name "perltidy")
9869 (version "20180220")
9870 (source (origin
9871 (method url-fetch)
9872 (uri (string-append "mirror://sourceforge/perltidy/" version
9873 "/Perl-Tidy-" version ".tar.gz"))
9874 (sha256
9875 (base32
9876 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
9877 (build-system perl-build-system)
9878 (home-page "http://perltidy.sourceforge.net/")
9879 (synopsis "Perl script tidier")
9880 (description "This package contains a Perl script which indents and
9881 reformats Perl scripts to make them easier to read. The formatting can be
9882 controlled with command line parameters. The default parameter settings
9883 approximately follow the suggestions in the Perl Style Guide.")
9884 (license gpl2+)))
9885
9886 (define-public perl-tie-cycle
9887 (package
9888 (name "perl-tie-cycle")
9889 (version "1.225")
9890 (source
9891 (origin
9892 (method url-fetch)
9893 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
9894 version ".tar.gz"))
9895 (sha256
9896 (base32
9897 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
9898 (build-system perl-build-system)
9899 (home-page "https://metacpan.org/release/Tie-Cycle")
9900 (synopsis "Cycle through a list of values")
9901 (description "You use @code{Tie::Cycle} to go through a list over and over
9902 again. Once you get to the end of the list, you go back to the beginning.")
9903 (license (package-license perl))))
9904
9905 (define-public perl-tie-ixhash
9906 (package
9907 (name "perl-tie-ixhash")
9908 (version "1.23")
9909 (source
9910 (origin
9911 (method url-fetch)
9912 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
9913 "Tie-IxHash-" version ".tar.gz"))
9914 (sha256
9915 (base32
9916 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
9917 (build-system perl-build-system)
9918 (native-inputs `(("perl-module-build" ,perl-module-build)))
9919 (home-page "https://metacpan.org/release/Tie-IxHash")
9920 (synopsis "Ordered associative arrays for Perl")
9921 (description "This Perl module implements Perl hashes that preserve the
9922 order in which the hash elements were added. The order is not affected when
9923 values corresponding to existing keys in the IxHash are changed. The elements
9924 can also be set to any arbitrary supplied order. The familiar perl array
9925 operations can also be performed on the IxHash.")
9926 (license (package-license perl))))
9927
9928 (define-public perl-tie-handle-offset
9929 (package
9930 (name "perl-tie-handle-offset")
9931 (version "0.004")
9932 (source
9933 (origin
9934 (method url-fetch)
9935 (uri (string-append
9936 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
9937 version
9938 ".tar.gz"))
9939 (sha256
9940 (base32
9941 "17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
9942 (build-system perl-build-system)
9943 (home-page "https://metacpan.org/release/Tie-Handle-Offset")
9944 (synopsis "Special file handle that hides the beginning of a file")
9945 (description
9946 "This modules provides a file handle that hides the beginning of a file,
9947 by modifying the @code{seek()} and @code{tell()} calls.")
9948 (license asl2.0)))
9949
9950 (define-public perl-tie-simple
9951 (package
9952 (name "perl-tie-simple")
9953 (version "1.04")
9954 (source
9955 (origin
9956 (method url-fetch)
9957 (uri (string-append "mirror://cpan/authors/id/H/HA/HANENKAMP/"
9958 "Tie-Simple-" version ".tar.gz"))
9959 (sha256
9960 (base32 "04lbh07nlxhpp03gl20f9w8hxjb2vzlb7w85y9w6q12i749y5s99"))))
9961 (build-system perl-build-system)
9962 (home-page "https://metacpan.org/release/Tie-Simple")
9963 (synopsis "Variable ties made much easier")
9964 (description
9965 "This module adds the ability to quickly create new types of tie objects
9966 without creating a complete class. It does so in such a way as to try and
9967 make the programmers life easier when it comes to single-use ties that I find
9968 myself wanting to use from time-to-time.
9969
9970 The Tie::Simple package is actually a front-end to other classes which really
9971 do all the work once tied, but this package does the dwimming to automatically
9972 figure out what you're trying to do.")
9973 (license perl-license)))
9974
9975 (define-public perl-tie-toobject
9976 (package
9977 (name "perl-tie-toobject")
9978 (version "0.03")
9979 (source
9980 (origin
9981 (method url-fetch)
9982 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
9983 "Tie-ToObject-" version ".tar.gz"))
9984 (sha256
9985 (base32
9986 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
9987 (build-system perl-build-system)
9988 (propagated-inputs
9989 `(("perl-test-simple" ,perl-test-simple)))
9990 (home-page "https://metacpan.org/release/Tie-ToObject")
9991 (synopsis "Tie to an existing Perl object")
9992 (description "This class provides a tie constructor that returns the
9993 object it was given as it's first argument. This way side effects of calling
9994 $object->TIEHASH are avoided.")
9995 (license (package-license perl))))
9996
9997 (define-public perl-time-duration
9998 (package
9999 (name "perl-time-duration")
10000 (version "1.21")
10001 (source
10002 (origin
10003 (method url-fetch)
10004 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
10005 "Time-Duration-" version ".tar.gz"))
10006 (sha256
10007 (base32 "1f59z2svfydxgd1gzrb5k3hl6d432kzmskk7jhv2dyb5hyx0wd7y"))))
10008 (build-system perl-build-system)
10009 (native-inputs
10010 `(("perl-module-install" ,perl-module-install)
10011 ("perl-test-pod" ,perl-test-pod)
10012 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
10013 (home-page "https://metacpan.org/release/Time-Duration")
10014 (synopsis "English expression of durations")
10015 (description "This module provides functions for expressing durations in
10016 rounded or exact terms.")
10017 (license (package-license perl))))
10018
10019 (define-public perl-time-duration-parse
10020 (package
10021 (name "perl-time-duration-parse")
10022 (version "0.14")
10023 (source
10024 (origin
10025 (method url-fetch)
10026 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
10027 "Time-Duration-Parse-" version ".tar.gz"))
10028 (sha256
10029 (base32 "17nh73r50mqqpgxdf3zpgdiqrizmjy0vdk0zd6xi9zcsdijrdhnc"))))
10030 (build-system perl-build-system)
10031 (native-inputs
10032 `(("perl-time-duration" ,perl-time-duration)))
10033 (propagated-inputs
10034 `(("perl-exporter-lite" ,perl-exporter-lite)))
10035 (home-page "https://metacpan.org/release/Time-Duration-Parse")
10036 (synopsis "Parse time duration strings")
10037 (description "Time::Duration::Parse is a module to parse human readable
10038 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
10039 (license (package-license perl))))
10040
10041 (define-public perl-time-hires
10042 (package
10043 (name "perl-time-hires")
10044 (version "1.9760")
10045 (source (origin
10046 (method url-fetch)
10047 (uri (string-append
10048 "mirror://cpan/authors/id/A/AT/ATOOMIC/Time-HiRes-"
10049 version ".tar.gz"))
10050 (sha256
10051 (base32
10052 "0avh25m5ffsqc2xnfczvlnlbfbisw5wjq9d3w0j01h9byjzrif1c"))))
10053 (build-system perl-build-system)
10054 (home-page "https://metacpan.org/release/Time-HiRes")
10055 (synopsis "High resolution alarm, sleep, gettimeofday, interval timers")
10056 (description "This package implements @code{usleep}, @code{ualarm}, and
10057 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
10058 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
10059 (license perl-license)))
10060
10061 (define-public perl-time-local
10062 (package
10063 (name "perl-time-local")
10064 (version "1.28")
10065 (source
10066 (origin
10067 (method url-fetch)
10068 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
10069 "Time-Local-" version ".tar.gz"))
10070 (sha256
10071 (base32
10072 "03p1mxk75vmmi4l0ibpd05b6hncbh8afjhvss87vpp4rrkjvjy4j"))))
10073 (build-system perl-build-system)
10074 (home-page "https://metacpan.org/release/Time-Local")
10075 (synopsis "Efficiently compute time from local and GMT time")
10076 (description "This module provides functions that are the inverse of
10077 built-in perl functions localtime() and gmtime(). They accept a date as a
10078 six-element array, and return the corresponding time(2) value in seconds since
10079 the system epoch.")
10080 (license (package-license perl))))
10081
10082 (define-public perl-time-piece
10083 (package
10084 (name "perl-time-piece")
10085 (version "1.3203")
10086 (source
10087 (origin
10088 (method url-fetch)
10089 (uri (string-append
10090 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
10091 version ".tar.gz"))
10092 (sha256
10093 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
10094 (build-system perl-build-system)
10095 (home-page "https://metacpan.org/release/Time-Piece")
10096 (synopsis "Object-Oriented time objects")
10097 (description
10098 "This module replaces the standard @code{localtime} and @code{gmtime}
10099 functions with implementations that return objects. It does so in a
10100 backwards-compatible manner, so that using these functions as documented will
10101 still work as expected.")
10102 (license perl-license)))
10103
10104 (define-public perl-timedate
10105 (package
10106 (name "perl-timedate")
10107 (version "2.33")
10108 (source
10109 (origin
10110 (method url-fetch)
10111 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
10112 "TimeDate-" version ".tar.gz"))
10113 (sha256
10114 (base32 "1cjyc0yi873597r7xcp9yz0l1c46ik2kxwfrn00zbrlx0d5rrdn0"))))
10115 (build-system perl-build-system)
10116 (home-page "https://metacpan.org/release/TimeDate")
10117 (synopsis "Date parsing/formatting subroutines")
10118 (description "This module provides routines for parsing date string into
10119 time values and formatting dates into ASCII strings.")
10120 (license (package-license perl))))
10121
10122 (define-public perl-time-mock
10123 (package
10124 (name "perl-time-mock")
10125 (version "0.0.2")
10126 (source
10127 (origin
10128 (method url-fetch)
10129 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
10130 "Time-Mock-v" version ".tar.gz"))
10131 (sha256
10132 (base32
10133 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
10134 (build-system perl-build-system)
10135 (native-inputs
10136 `(("perl-module-build" ,perl-module-build)))
10137 (propagated-inputs
10138 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
10139 (home-page "https://metacpan.org/release/Time-Mock")
10140 (synopsis "Shift and scale time")
10141 (description "This module allows you to speed up your sleep(), alarm(),
10142 and time() calls.")
10143 (license (package-license perl))))
10144
10145 (define-public perl-tree-simple
10146 (package
10147 (name "perl-tree-simple")
10148 (version "1.33")
10149 (source
10150 (origin
10151 (method url-fetch)
10152 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10153 "Tree-Simple-" version ".tgz"))
10154 (sha256
10155 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
10156 (build-system perl-build-system)
10157 (native-inputs
10158 `(("perl-module-build" ,perl-module-build)
10159 ("perl-test-exception" ,perl-test-exception)))
10160 (propagated-inputs
10161 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
10162 (home-page "https://metacpan.org/release/Tree-Simple")
10163 (synopsis "Simple tree object")
10164 (description "This module in a fully object-oriented implementation of a
10165 simple n-ary tree.")
10166 (license (package-license perl))))
10167
10168 (define-public perl-tree-simple-visitorfactory
10169 (package
10170 (name "perl-tree-simple-visitorfactory")
10171 (version "0.15")
10172 (source
10173 (origin
10174 (method url-fetch)
10175 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10176 "Tree-Simple-VisitorFactory-" version ".tgz"))
10177 (sha256
10178 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
10179 (build-system perl-build-system)
10180 (native-inputs
10181 `(("perl-module-build" ,perl-module-build)
10182 ("perl-test-exception" ,perl-test-exception)))
10183 (propagated-inputs
10184 `(("perl-tree-simple" ,perl-tree-simple)))
10185 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
10186 (synopsis "Factory object for dispensing Visitor objects")
10187 (description "This module is a factory for dispensing
10188 Tree::Simple::Visitor::* objects.")
10189 (license (package-license perl))))
10190
10191 (define-public perl-try-tiny
10192 (package
10193 (name "perl-try-tiny")
10194 (version "0.30")
10195 (source
10196 (origin
10197 (method url-fetch)
10198 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10199 "Try-Tiny-" version ".tar.gz"))
10200 (sha256
10201 (base32
10202 "0szgvlz19yz3mq1lbzmwh8w5dh6agg5s16xv22zrnl83r7ax0nys"))))
10203 (build-system perl-build-system)
10204 (home-page "https://metacpan.org/release/Try-Tiny")
10205 (synopsis "Minimal try/catch with proper preservation of $@@")
10206 (description "This module provides bare bones try/catch/finally statements
10207 that are designed to minimize common mistakes with eval blocks, and nothing
10208 else.")
10209 (license x11)))
10210
10211 (define-public perl-type-tie
10212 (package
10213 (name "perl-type-tie")
10214 (version "0.014")
10215 (source
10216 (origin
10217 (method url-fetch)
10218 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10219 "Type-Tie-" version ".tar.gz"))
10220 (sha256
10221 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
10222 (build-system perl-build-system)
10223 (native-inputs
10224 `(("perl-test-fatal" ,perl-test-fatal)
10225 ("perl-test-requires" ,perl-test-requires)))
10226 (propagated-inputs
10227 `(("perl-exporter-tiny" ,perl-exporter-tiny)
10228 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
10229 (home-page "https://metacpan.org/release/Type-Tie")
10230 (synopsis "Tie a variable to a type constraint")
10231 (description "This module exports a single function: @code{ttie}. It ties
10232 a variable to a type constraint, ensuring that whatever values stored in the
10233 variable will conform to the type constraint. If the type constraint has
10234 coercions, these will be used if necessary to ensure values assigned to the
10235 variable conform.")
10236 (license (package-license perl))))
10237
10238 (define-public perl-type-tiny
10239 (package
10240 (name "perl-type-tiny")
10241 (version "1.008003")
10242 (source
10243 (origin
10244 (method url-fetch)
10245 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10246 "Type-Tiny-" version ".tar.gz"))
10247 (sha256
10248 (base32 "1x80rlnh7kl4xgm4qvyfbgahcyla4wbyh3b759nm21czn8x6wkm4"))))
10249 (build-system perl-build-system)
10250 (native-inputs
10251 `(("perl-test-warnings" ,perl-test-warnings)))
10252 (propagated-inputs
10253 `(("perl-devel-lexalias" ,perl-devel-lexalias)
10254 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
10255 ("perl-exporter-tiny" ,perl-exporter-tiny)
10256 ("perl-moo" ,perl-moo)
10257 ("perl-moose" ,perl-moose)
10258 ("perl-mouse" ,perl-mouse)
10259 ("perl-ref-util-xs" ,perl-ref-util-xs)
10260 ("perl-regexp-util" ,perl-regexp-util)
10261 ("perl-type-tie" ,perl-type-tie)))
10262 (home-page "https://metacpan.org/release/Type-Tiny")
10263 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
10264 (description "@code{Type::Tiny} is a small class for writing type
10265 constraints, inspired by Moose's type constraint API. It has only one
10266 non-core dependency (and even that is simply a module that was previously
10267 distributed as part of @code{Type::Tiny} but has since been spun off), and can
10268 be used with Moose, Mouse and Moo (or none of the above).")
10269 (license (package-license perl))))
10270
10271 (define-public perl-type-tiny-xs
10272 (package
10273 (name "perl-type-tiny-xs")
10274 (version "0.014")
10275 (source
10276 (origin
10277 (method url-fetch)
10278 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
10279 version ".tar.gz"))
10280 (sha256
10281 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
10282 (build-system perl-build-system)
10283 (home-page "https://metacpan.org/release/Type-Tiny-XS")
10284 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
10285 (description "This module is optionally used by @code{Type::Tiny} to
10286 provide faster, C-based implementations of some type constraints. This
10287 package has only core dependencies, and does not depend on @code{Type::Tiny},
10288 so other data validation frameworks might also consider using it.")
10289 (license perl-license)))
10290
10291 (define-public perl-types-path-tiny
10292 (package
10293 (name "perl-types-path-tiny")
10294 (version "0.006")
10295 (source
10296 (origin
10297 (method url-fetch)
10298 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10299 "Types-Path-Tiny-" version ".tar.gz"))
10300 (sha256
10301 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
10302 (build-system perl-build-system)
10303 (propagated-inputs
10304 `(("perl-file-pushd" ,perl-file-pushd)
10305 ("perl-path-tiny" ,perl-path-tiny)
10306 ("perl-type-tiny" ,perl-type-tiny)
10307 ("perl-exporter-tiny" ,perl-exporter-tiny)))
10308 (home-page "https://metacpan.org/release/Types-Path-Tiny")
10309 (synopsis "Types and coercions for Moose and Moo")
10310 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
10311 etc. It handles two important types of coercion: coercing objects with
10312 overloaded stringification, and coercing to absolute paths. It also can check
10313 to ensure that files or directories exist.")
10314 (license artistic2.0)))
10315
10316 (define-public perl-types-serialiser
10317 (package
10318 (name "perl-types-serialiser")
10319 (version "1.0")
10320 (source
10321 (origin
10322 (method url-fetch)
10323 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
10324 "Types-Serialiser-" version ".tar.gz"))
10325 (sha256
10326 (base32
10327 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
10328 (build-system perl-build-system)
10329 (propagated-inputs
10330 `(("perl-common-sense" ,perl-common-sense)))
10331 (home-page "https://metacpan.org/release/Types-Serialiser")
10332 (synopsis "Data types for common serialisation formats")
10333 (description "This module provides some extra datatypes that are used by
10334 common serialisation formats such as JSON or CBOR.")
10335 (license (package-license perl))))
10336
10337 (define-public perl-unicode-normalize
10338 (package
10339 (name "perl-unicode-normalize")
10340 (version "1.26")
10341 (source
10342 (origin
10343 (method url-fetch)
10344 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
10345 "Unicode-Normalize-" version ".tar.gz"))
10346 (sha256
10347 (base32
10348 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
10349 (build-system perl-build-system)
10350 (arguments
10351 '(#:phases (modify-phases %standard-phases
10352 (add-before 'configure 'set-search-path
10353 (lambda _
10354 ;; Work around "dotless @INC" build failure.
10355 (setenv "PERL5LIB"
10356 (string-append (getcwd) ":"
10357 (getenv "PERL5LIB")))
10358 #t)))))
10359 (home-page "https://metacpan.org/release/Unicode-Normalize")
10360 (synopsis "Unicode normalization forms")
10361 (description "This Perl module provides Unicode normalization forms.")
10362 (license (package-license perl))))
10363
10364 (define-public perl-unicode-collate
10365 (package
10366 (name "perl-unicode-collate")
10367 (version "1.27")
10368 (source
10369 (origin
10370 (method url-fetch)
10371 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
10372 "Unicode-Collate-" version ".tar.gz"))
10373 (sha256
10374 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
10375 (build-system perl-build-system)
10376 (arguments
10377 `(#:phases
10378 (modify-phases %standard-phases
10379 (add-before 'configure 'set-perl-search-path
10380 (lambda _
10381 ;; Work around "dotless @INC" build failure.
10382 (setenv "PERL5LIB"
10383 (string-append (getcwd) ":"
10384 (getenv "PERL5LIB")))
10385 #t)))))
10386 (propagated-inputs
10387 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
10388 (home-page "https://metacpan.org/release/Unicode-Collate")
10389 (synopsis "Unicode collation algorithm")
10390 (description "This package provides tools for sorting and comparing
10391 Unicode data.")
10392 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
10393 ;; license.
10394 (license (list (package-license perl) expat))))
10395
10396 (define-public perl-unicode-linebreak
10397 (package
10398 (name "perl-unicode-linebreak")
10399 (version "2019.001")
10400 (source (origin
10401 (method url-fetch)
10402 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
10403 "Unicode-LineBreak-" version ".tar.gz"))
10404 (sha256
10405 (base32
10406 "12iinva5gqc9g7qzxrvmh45n714z0ad9g7wq2dxwgp6drbj64rs8"))))
10407 (build-system perl-build-system)
10408 (propagated-inputs
10409 `(("perl-mime-charset" ,perl-mime-charset)))
10410 (home-page "https://metacpan.org/release/Unicode-LineBreak")
10411 (synopsis "Unicode line breaking algorithm")
10412 (description
10413 "@code{Unicode::LineBreak} implements the line breaking algorithm
10414 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
10415 defined by Annex #11 is used to determine breaking positions.")
10416 (license (package-license perl))))
10417
10418 (define-public perl-unicode-utf8
10419 (package
10420 (name "perl-unicode-utf8")
10421 (version "0.62")
10422 (source (origin
10423 (method url-fetch)
10424 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
10425 "Unicode-UTF8-" version ".tar.gz"))
10426 (sha256
10427 (base32
10428 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
10429 (build-system perl-build-system)
10430 ;; FIXME: Tests fail on 32-bit architectures:
10431 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
10432 (arguments `(#:tests? ,(target-64bit?)))
10433 (native-inputs
10434 `(("perl-test-fatal" ,perl-test-fatal)
10435 ("perl-test-leaktrace" ,perl-test-leaktrace)
10436 ("perl-variable-magic" ,perl-variable-magic)
10437 ("perl-test-pod" ,perl-test-pod)))
10438 (home-page "https://metacpan.org/release/Unicode-UTF8")
10439 (synopsis "Encoding and decoding of UTF-8 encoding form")
10440 (description
10441 "This module provides functions to encode and decode UTF-8 encoding form
10442 as specified by Unicode and ISO/IEC 10646:2011.")
10443 (license (package-license perl))))
10444
10445 (define-public perl-universal-can
10446 (package
10447 (name "perl-universal-can")
10448 (version "1.20140328")
10449 (source
10450 (origin
10451 (method url-fetch)
10452 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
10453 "UNIVERSAL-can-" version ".tar.gz"))
10454 (sha256
10455 (base32
10456 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
10457 (build-system perl-build-system)
10458 (home-page "https://metacpan.org/release/UNIVERSAL-can")
10459 (synopsis "UNIVERSAL::can() reimplementation")
10460 (description "This module attempts to work around people calling
10461 UNIVERSAL::can() as a function, which it is not.")
10462 (license (package-license perl))))
10463
10464 (define-public perl-universal-isa
10465 (package
10466 (name "perl-universal-isa")
10467 (version "1.20171012")
10468 (source
10469 (origin
10470 (method url-fetch)
10471 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10472 "UNIVERSAL-isa-" version ".tar.gz"))
10473 (sha256
10474 (base32
10475 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
10476 (build-system perl-build-system)
10477 (native-inputs
10478 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
10479 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
10480 (synopsis "UNIVERSAL::isa() reimplementation")
10481 (description "This module attempts to recover from people calling
10482 UNIVERSAL::isa as a function.")
10483 (license (package-license perl))))
10484
10485 (define-public perl-universal-require
10486 (package
10487 (name "perl-universal-require")
10488 (version "0.18")
10489 (source
10490 (origin
10491 (method url-fetch)
10492 (uri (string-append
10493 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
10494 version ".tar.gz"))
10495 (sha256
10496 (base32
10497 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
10498 (build-system perl-build-system)
10499 (home-page "https://metacpan.org/release/UNIVERSAL-require")
10500 (synopsis "Require modules from a variable")
10501 (description "This module lets you require other modules where the module
10502 name is in a variable, something you can't do with the @code{require}
10503 built-in.")
10504 (license (package-license perl))))
10505
10506 (define-public perl-variable-magic
10507 (package
10508 (name "perl-variable-magic")
10509 (version "0.62")
10510 (source
10511 (origin
10512 (method url-fetch)
10513 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
10514 "Variable-Magic-" version ".tar.gz"))
10515 (sha256
10516 (base32
10517 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
10518 (build-system perl-build-system)
10519 (home-page "https://metacpan.org/release/Variable-Magic")
10520 (synopsis "Associate user-defined magic to variables from Perl")
10521 (description "Magic is Perl's way of enhancing variables. This mechanism
10522 lets the user add extra data to any variable and hook syntactical
10523 operations (such as access, assignment or destruction) that can be applied to
10524 it. With this module, you can add your own magic to any variable without
10525 having to write a single line of XS.")
10526 (license (package-license perl))))
10527
10528 (define-public perl-xml-writer
10529 (package
10530 (name "perl-xml-writer")
10531 (version "0.625")
10532 (source
10533 (origin
10534 (method url-fetch)
10535 (uri (string-append
10536 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
10537 version
10538 ".tar.gz"))
10539 (sha256
10540 (base32
10541 "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
10542 (build-system perl-build-system)
10543 (home-page "https://metacpan.org/release/XML-Writer")
10544 (synopsis "Easily generate well-formed, namespace-aware XML")
10545 (description "@code{XML::Writer} is a simple Perl module for writing XML
10546 documents: it takes care of constructing markup and escaping data correctly.
10547 By default, it also performs a significant amount of well-formedness checking
10548 on the output to make certain (for example) that start and end tags match,
10549 that there is exactly one document element, and that there are not duplicate
10550 attribute names.")
10551 ;; Redistribution and use in source and compiled forms, with or without
10552 ;; modification, are permitted under any circumstances. No warranty.
10553 (license public-domain)))
10554
10555 (define-public perl-xs-object-magic
10556 (package
10557 (name "perl-xs-object-magic")
10558 (version "0.05")
10559 (source (origin
10560 (method url-fetch)
10561 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10562 "XS-Object-Magic-" version ".tar.gz"))
10563 (sha256
10564 (base32
10565 "0njyy4y0zax4zz55y82dlm9cly1pld1lcxb281s12bp9rrhf9j9x"))))
10566 (build-system perl-build-system)
10567 (native-inputs
10568 `(("perl-extutils-depends" ,perl-extutils-depends)
10569 ("perl-module-install" ,perl-module-install)
10570 ("perl-test-fatal" ,perl-test-fatal)))
10571 (home-page "https://metacpan.org/release/XS-Object-Magic")
10572 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
10573 (description
10574 "This way of associating structs with Perl space objects is designed to
10575 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
10576 (structs can be associated with any data type) and opaque (the C pointer is
10577 neither visible nor modifiable from Perl space).")
10578 (license (package-license perl))))
10579
10580 (define-public perl-yaml
10581 (package
10582 (name "perl-yaml")
10583 (version "1.29")
10584 (source
10585 (origin
10586 (method url-fetch)
10587 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
10588 "YAML-" version ".tar.gz"))
10589 (sha256
10590 (base32 "0gl5ssvrdajlbc85cy6z873n9cwlssk5q8z97a31vyiikhw5fp4w"))))
10591 (build-system perl-build-system)
10592 (native-inputs
10593 `(("perl-test-yaml" ,perl-test-yaml)))
10594 (home-page "https://metacpan.org/release/YAML")
10595 (synopsis "YAML for Perl")
10596 (description "The YAML.pm module implements a YAML Loader and Dumper based
10597 on the YAML 1.0 specification.")
10598 (license (package-license perl))))
10599
10600 (define-public perl-yaml-libyaml
10601 (package
10602 (name "perl-yaml-libyaml")
10603 (version "0.80")
10604 (source
10605 (origin
10606 (method url-fetch)
10607 (uri (string-append
10608 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
10609 version ".tar.gz"))
10610 (sha256
10611 (base32 "1nhn4w52kpq757rxl052f61h36rdzsy416k740m3fy5ih7axhq4x"))))
10612 (build-system perl-build-system)
10613 (home-page "https://metacpan.org/release/YAML-LibYAML")
10614 (synopsis "Perl YAML Serialization using XS and libyaml")
10615 (description
10616 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
10617 best YAML support to date.")
10618 (license perl-license)))
10619
10620 (define-public perl-yaml-tiny
10621 (package
10622 (name "perl-yaml-tiny")
10623 (version "1.73")
10624 (source
10625 (origin
10626 (method url-fetch)
10627 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10628 "YAML-Tiny-" version ".tar.gz"))
10629 (sha256
10630 (base32
10631 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
10632 (build-system perl-build-system)
10633 (native-inputs
10634 `(("perl-json-maybexs" ,perl-json-maybexs)
10635 ("perl-module-build-tiny" ,perl-module-build-tiny)))
10636 (arguments
10637 `(#:tests? #f)) ;requires Test::More >= 0.99
10638 (home-page "https://metacpan.org/release/YAML-Tiny")
10639 (synopsis "Read/Write YAML files")
10640 (description "YAML::Tiny is a perl class for reading and writing
10641 YAML-style files, written with as little code as possible, reducing load time
10642 and memory overhead.")
10643 (license (package-license perl))))
10644
10645 (define-public perl-parse-recdescent
10646 (package
10647 (name "perl-parse-recdescent")
10648 (version "1.967015")
10649 (source
10650 (origin
10651 (method url-fetch)
10652 (uri (string-append
10653 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
10654 version
10655 ".tar.gz"))
10656 (sha256
10657 (base32
10658 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
10659 (build-system perl-build-system)
10660 (native-inputs
10661 `(("perl-module-build" ,perl-module-build)))
10662 (home-page
10663 "https://metacpan.org/release/Parse-RecDescent")
10664 (synopsis "Generate recursive-descent parsers")
10665 (description
10666 "@code{Parse::RecDescent} can incrementally generate top-down
10667 recursive-descent text parsers from simple yacc-like grammar specifications.")
10668 (license perl-license)))
10669
10670 (define-public perl-parse-yapp
10671 (package
10672 (name "perl-parse-yapp")
10673 (version "1.21")
10674 (source
10675 (origin
10676 (method url-fetch)
10677 (uri (string-append
10678 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
10679 version
10680 ".tar.gz"))
10681 (sha256
10682 (base32
10683 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
10684 (build-system perl-build-system)
10685 (home-page "https://metacpan.org/release/Parse-Yapp")
10686 (synopsis "Generate and use LALR parsers")
10687 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
10688 grammars to generate Perl object oriented parser modules.")
10689 (license (package-license perl))))
10690
10691 \f
10692 ;;; Some packaged modules need versions of core modules that are newer than
10693 ;;; those in our perl 5.16.1.
10694
10695 (define-public perl-cpan-meta
10696 (package
10697 (name "perl-cpan-meta")
10698 (version "2.150010")
10699 (source
10700 (origin
10701 (method url-fetch)
10702 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10703 "CPAN-Meta-" version ".tar.gz"))
10704 (sha256
10705 (base32
10706 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10707 (build-system perl-build-system)
10708 (propagated-inputs
10709 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
10710 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
10711 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
10712 (home-page "https://metacpan.org/release/CPAN-Meta")
10713 (synopsis "Distribution metadata for a CPAN dist")
10714 (description "Software distributions released to the CPAN include a
10715 META.json or, for older distributions, META.yml, which describes the
10716 distribution, its contents, and the requirements for building and installing
10717 the distribution. The data structure stored in the META.json file is
10718 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
10719 represent this distribution metadata (or distmeta), along with some helpful
10720 methods for interrogating that data.")
10721 (license (package-license perl))))
10722
10723 (define-public perl-cpan-meta-requirements
10724 (package
10725 (name "perl-cpan-meta-requirements")
10726 (version "2.140")
10727 (source
10728 (origin
10729 (method url-fetch)
10730 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10731 "CPAN-Meta-Requirements-" version ".tar.gz"))
10732 (sha256
10733 (base32
10734 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
10735 (build-system perl-build-system)
10736 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
10737 (synopsis "Set of version requirements for a CPAN dist")
10738 (description "A CPAN::Meta::Requirements object models a set of version
10739 constraints like those specified in the META.yml or META.json files in CPAN
10740 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
10741 adding more and more constraints, and will reduce them to the simplest
10742 representation.")
10743 (license (package-license perl))))
10744
10745 (define-public perl-cpan-meta-yaml
10746 (package
10747 (name "perl-cpan-meta-yaml")
10748 (version "0.018")
10749 (source
10750 (origin
10751 (method url-fetch)
10752 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10753 "CPAN-Meta-YAML-" version ".tar.gz"))
10754 (sha256
10755 (base32
10756 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
10757 (build-system perl-build-system)
10758 (arguments
10759 `(#:tests? #f)) ;Tests require Test::More >= 0.99
10760 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
10761 (synopsis "Read and write a subset of YAML for CPAN Meta files")
10762 (description "This module implements a subset of the YAML specification
10763 for use in reading and writing CPAN metadata files like META.yml and
10764 MYMETA.yml.")
10765 (license (package-license perl))))
10766
10767 (define-public perl-module-build
10768 (package
10769 (name "perl-module-build")
10770 (version "0.4229")
10771 (source
10772 (origin
10773 (method url-fetch)
10774 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
10775 "Module-Build-" version ".tar.gz"))
10776 (sha256
10777 (base32
10778 "064c03wxia7jz0i578awj4srykj0nnigm4p5r0dv0559rnk93r0z"))))
10779 (build-system perl-build-system)
10780 (propagated-inputs
10781 `(("perl-cpan-meta" ,perl-cpan-meta)))
10782 (home-page "https://metacpan.org/release/Module-Build")
10783 (synopsis "Build and install Perl modules")
10784 (description "@code{Module::Build} is a system for building, testing, and
10785 installing Perl modules; it used to be part of Perl itself until version 5.22,
10786 which dropped it. It is meant to be an alternative to
10787 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
10788 through subclassing in a much more straightforward way than with
10789 @code{MakeMaker}. It also does not require a @command{make} on your
10790 system---most of the @code{Module::Build} code is pure-Perl.")
10791 (license (package-license perl))))
10792
10793 (define-public perl-parse-cpan-meta
10794 (package
10795 (name "perl-parse-cpan-meta")
10796 (version "2.150010")
10797 (source
10798 (origin
10799 (method url-fetch)
10800 ;; This module is now known as CPAN::Meta on CPAN.
10801 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10802 "CPAN-Meta-" version ".tar.gz"))
10803 (sha256
10804 (base32
10805 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
10806 (build-system perl-build-system)
10807 (propagated-inputs
10808 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
10809 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
10810 (synopsis "Parse META.yml and META.json CPAN metadata files")
10811 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
10812 files, using JSON::PP and/or CPAN::Meta::YAML.")
10813 (license (package-license perl))))
10814
10815 (define-public perl-scalar-list-utils
10816 (package
10817 (name "perl-scalar-list-utils")
10818 (version "1.53")
10819 (source
10820 (origin
10821 (method url-fetch)
10822 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
10823 "Scalar-List-Utils-" version ".tar.gz"))
10824 (sha256
10825 (base32 "16dfpnrcf5846j998rdd6gra16m9030rnz9fpsh1hfzvcsq8ch5x"))))
10826 (build-system perl-build-system)
10827 (home-page "https://metacpan.org/release/Scalar-List-Utils")
10828 (synopsis "Common Scalar and List utility subroutines")
10829 (description "This package contains a selection of subroutines that people
10830 have expressed would be nice to have in the perl core, but the usage would not
10831 really be high enough to warrant the use of a keyword, and the size so small
10832 such that being individual extensions would be wasteful.")
10833 (license (package-license perl))))
10834
10835 (define-public perl-shell-command
10836 (package
10837 (name "perl-shell-command")
10838 (version "0.06")
10839 (source
10840 (origin
10841 (method url-fetch)
10842 (uri (string-append
10843 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
10844 version
10845 ".tar.gz"))
10846 (sha256
10847 (base32
10848 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
10849 (build-system perl-build-system)
10850 (home-page
10851 "https://metacpan.org/release/Shell-Command")
10852 (synopsis
10853 "Cross-platform functions emulating common shell commands")
10854 (description
10855 "Shell::Command is a thin wrapper around ExtUtils::Command.")
10856 (license (package-license perl))))
10857
10858 ;;; END: Core module overrides
10859
10860 (define-public perl-file-find-object
10861 (package
10862 (name "perl-file-find-object")
10863 (version "0.2.13")
10864 (source
10865 (origin
10866 (method url-fetch)
10867 (uri (string-append
10868 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-v"
10869 version ".tar.gz"))
10870 (sha256
10871 (base32
10872 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
10873 (build-system perl-build-system)
10874 (native-inputs
10875 `(("perl-module-build" ,perl-module-build)))
10876 (inputs
10877 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
10878 (home-page
10879 "https://metacpan.org/release/File-Find-Object")
10880 (synopsis
10881 "Object-oriented File::Find replacement in Perl")
10882 (description "File::Find::Object is an object-oriented
10883 File::Find replacement in Perl.")
10884 (license artistic2.0)))
10885
10886 (define-public perl-file-find-object-rule
10887 (package
10888 (name "perl-file-find-object-rule")
10889 (version "0.0311")
10890 (source
10891 (origin
10892 (method url-fetch)
10893 (uri (string-append
10894 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
10895 version
10896 ".tar.gz"))
10897 (sha256
10898 (base32 "0gjzfd5fz7mhr5abafxr7qic7nwhk7y9iv17as6l880973j952h3"))))
10899 (build-system perl-build-system)
10900 (native-inputs
10901 `(("perl-module-build" ,perl-module-build)))
10902 (inputs
10903 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
10904 ("perl-file-find-object" ,perl-file-find-object)
10905 ("perl-number-compare" ,perl-number-compare)
10906 ("perl-text-glob" ,perl-text-glob)))
10907 (home-page
10908 "https://metacpan.org/release/File-Find-Object-Rule")
10909 (synopsis
10910 "Alternative interface to File::Find::Object")
10911 (description "File::Find::Object::Rule is an alternative Perl
10912 interface to File::Find::Object.")
10913 (license (package-license perl))))
10914
10915 (define-public perl-file-finder
10916 (package
10917 (name "perl-file-finder")
10918 (version "0.53")
10919 (source
10920 (origin
10921 (method url-fetch)
10922 (uri (string-append
10923 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
10924 version ".tar.gz"))
10925 (sha256
10926 (base32
10927 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
10928 (build-system perl-build-system)
10929 (propagated-inputs
10930 `(("perl-text-glob" ,perl-text-glob)))
10931 (home-page "https://metacpan.org/release/File-Finder")
10932 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
10933 (description
10934 "@code{File::Find} is great, but constructing the wanted routine can
10935 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
10936 syntax that is directly mappable to the @code{find(1)} command's syntax.
10937
10938 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
10939 a series of steps that mimic find's predicates. Initially, a
10940 @code{File::Finder} object has no steps. Each step method clones the previous
10941 object's options and steps, and then adds the new step, returning the new
10942 object. In this manner, an object can be grown, step by step, by chaining
10943 method calls. Furthermore, a partial sequence can be created and held, and
10944 used as the head of many different sequences.")
10945 (license perl-license)))
10946
10947 (define-public perl-font-ttf
10948 (package
10949 (name "perl-font-ttf")
10950 (version "1.06")
10951 (source (origin
10952 (method url-fetch)
10953 (uri (string-append
10954 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
10955 version ".tar.gz"))
10956 (sha256
10957 (base32
10958 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
10959 (build-system perl-build-system)
10960 (propagated-inputs
10961 `(("perl-io-string" ,perl-io-string)))
10962 (home-page "https://metacpan.org/release/Font-TTF")
10963 (synopsis "TTF font support for Perl")
10964 (description "This package provides a Perl module for TrueType/OpenType
10965 font hacking. It supports reading, processing and writing of the following
10966 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
10967 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
10968 prop, vhea, vmtx and the reading and writing of all other table types.")
10969 (license artistic2.0)))
10970
10971 (define-public perl-libtime-parsedate
10972 (package
10973 (name "perl-libtime-parsedate")
10974 (version "2015.103")
10975 (source
10976 (origin
10977 (method url-fetch)
10978 (uri (string-append
10979 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
10980 version ".tar.gz"))
10981 (sha256
10982 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
10983 (build-system perl-build-system)
10984 (arguments
10985 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
10986 ;; doesn't support it yet.
10987 ;;
10988 ;; #:disallowed-references (,tzdata-for-tests)
10989
10990 #:phases
10991 (modify-phases %standard-phases
10992 ;; This is needed for tests
10993 (add-after 'unpack 'set-TZDIR
10994 (lambda* (#:key inputs #:allow-other-keys)
10995 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
10996 "/share/zoneinfo"))
10997 #t)))))
10998 (native-inputs
10999 `(("perl-module-build" ,perl-module-build)
11000 ("tzdata" ,tzdata-for-tests)))
11001 (home-page "https://metacpan.org/release/Time-ParseDate")
11002 (synopsis "Collection of Perl modules for time/date manipulation")
11003 (description "Provides several perl modules for date/time manipulation:
11004 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
11005 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
11006 ;; License text:
11007 ;; "License hereby granted for anyone to use, modify or redistribute this
11008 ;; module at their own risk. Please feed useful changes back to
11009 ;; cpan@dave.sharnoff.org."
11010 (license (non-copyleft "http://metadata.ftp-master.debian.org/\
11011 changelogs/main/libt/libtime-parsedate-perl/\
11012 libtime-parsedate-perl_2015.103-2_copyright"))))
11013
11014 (define-public perl-libtime-period
11015 (package
11016 (name "perl-libtime-period")
11017 (version "1.20")
11018 (source
11019 (origin
11020 (method url-fetch)
11021 (uri (string-append
11022 "http://http.debian.net/debian/pool/main/libt/"
11023 "libtime-period-perl/libtime-period-perl_"
11024 version ".orig.tar.gz"))
11025 (sha256
11026 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
11027 (build-system perl-build-system)
11028 (native-inputs
11029 `(("perl-module-build" ,perl-module-build)))
11030 ;; Unless some other homepage is out there...
11031 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
11032 (synopsis "Perl library for testing if a time() is in a specific period")
11033 (description "This Perl library provides a function which tells whether a
11034 specific time falls within a specified time period. Its syntax for specifying
11035 time periods allows you to test for conditions like \"Monday to Friday, 9am
11036 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
11037 4:15pm\" and \"in the first half of each minute\" and \"in January of
11038 1998\".")
11039 (license perl-license)))
11040
11041 (define-public perl-path-iterator-rule
11042 (package
11043 (name "perl-path-iterator-rule")
11044 (version "1.014")
11045 (source
11046 (origin
11047 (method url-fetch)
11048 (uri (string-append
11049 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
11050 version ".tar.gz"))
11051 (sha256
11052 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
11053 (build-system perl-build-system)
11054 (native-inputs
11055 `(("perl-file-pushd" ,perl-file-pushd)
11056 ("perl-path-tiny" ,perl-path-tiny)
11057 ("perl-test-deep" ,perl-test-deep)
11058 ("perl-test-filename" ,perl-test-filename)))
11059 (propagated-inputs
11060 `(("perl-number-compare" ,perl-number-compare)
11061 ("perl-text-glob" ,perl-text-glob)
11062 ("perl-try-tiny" ,perl-try-tiny)))
11063 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
11064 (synopsis "Iterative, recursive file finder")
11065 (description "Path::Iterator::Rule iterates over files and directories to
11066 identify ones matching a user-defined set of rules. The API is based heavily
11067 on File::Find::Rule, but with more explicit distinction between matching rules
11068 and options that influence how directories are searched. A
11069 Path::Iterator::Rule object is a collection of rules (match criteria) with
11070 methods to add additional criteria. Options that control directory traversal
11071 are given as arguments to the method that generates an iterator.
11072
11073 A summary of features for comparison to other file finding modules:
11074
11075 @itemize
11076 @item provides many helper methods for specifying rules
11077 @item offers (lazy) iterator and flattened list interfaces
11078 @item custom rules implemented with callbacks
11079 @item breadth-first (default) or pre- or post-order depth-first searching
11080 @item follows symlinks (by default, but can be disabled)
11081 @item directories visited only once (no infinite loop; can be disabled)
11082 @item doesn't chdir during operation
11083 @item provides an API for extensions
11084 @end itemize
11085
11086 As a convenience, the PIR module is an empty subclass of this one that is less
11087 arduous to type for one-liners.")
11088 (license asl2.0)))
11089
11090 (define-public perl-pod-constants
11091 (package
11092 (name "perl-pod-constants")
11093 (version "0.19")
11094 (source
11095 (origin
11096 (method url-fetch)
11097 (uri (string-append
11098 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
11099 version ".tar.gz"))
11100 (sha256
11101 (base32
11102 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
11103 (build-system perl-build-system)
11104 (home-page "https://metacpan.org/release/Pod-Constants")
11105 (synopsis "Include constants from POD")
11106 (description "This module allows you to specify those constants that
11107 should be documented in your POD, and pull them out a run time in a fairly
11108 arbitrary fashion.
11109
11110 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
11111 to open the source file it is called from, and does so directly either by
11112 lookup in %INC or by assuming it is $0 if the caller is @code{main}
11113 (or it can't find %INC{caller()}).")
11114 (license artistic2.0)))
11115
11116 (define-public perl-regexp-pattern
11117 (package
11118 (name "perl-regexp-pattern")
11119 (version "0.2.8")
11120 (source
11121 (origin
11122 (method url-fetch)
11123 (uri (string-append
11124 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
11125 version ".tar.gz"))
11126 (sha256
11127 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
11128 (build-system perl-build-system)
11129 (native-inputs
11130 `(("perl-test-exception" ,perl-test-exception)))
11131 (home-page "https://metacpan.org/release/Regexp-Pattern")
11132 (synopsis "Collection of regexp patterns")
11133 (description "Regexp::Pattern is a convention for organizing reusable
11134 regexp patterns in modules.")
11135 (license (package-license perl))))
11136
11137 (define-public perl-data-sexpression
11138 (package
11139 (name "perl-data-sexpression")
11140 (version "0.41")
11141 (source
11142 (origin
11143 (method url-fetch)
11144 (uri (string-append
11145 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
11146 version ".tar.gz"))
11147 (sha256
11148 (base32
11149 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
11150 (build-system perl-build-system)
11151 (native-inputs
11152 `(("perl-module-install" ,perl-module-install)
11153 ("perl-test-deep" ,perl-test-deep)))
11154 (propagated-inputs
11155 `(("perl-class-accessor" ,perl-class-accessor)))
11156 (home-page "https://metacpan.org/release/Data-SExpression")
11157 (synopsis "Parse Lisp S-Expressions into Perl data structures")
11158 (description "Data::SExpression parses Lisp S-Expressions into Perl data
11159 structures.")
11160 (license perl-license)))