gnu: perl-path-tiny: Update to 0.118.
[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, 2020 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016, 2017, 2019, 2021 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, 2021 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–2021 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 ;;; Copyright © 2020 Malte Frank Gerdes <malte.f.gerdes@gmail.com>
31 ;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
32 ;;;
33 ;;; This file is part of GNU Guix.
34 ;;;
35 ;;; GNU Guix is free software; you can redistribute it and/or modify it
36 ;;; under the terms of the GNU General Public License as published by
37 ;;; the Free Software Foundation; either version 3 of the License, or (at
38 ;;; your option) any later version.
39 ;;;
40 ;;; GNU Guix is distributed in the hope that it will be useful, but
41 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
42 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
43 ;;; GNU General Public License for more details.
44 ;;;
45 ;;; You should have received a copy of the GNU General Public License
46 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
47
48 (define-module (gnu packages perl)
49 #:use-module (srfi srfi-1)
50 #:use-module ((guix licenses) #:prefix license:)
51 #:use-module (gnu packages)
52 #:use-module (guix packages)
53 #:use-module (guix download)
54 #:use-module (guix git-download)
55 #:use-module (guix utils)
56 #:use-module (guix build-system gnu)
57 #:use-module (guix build-system perl)
58 #:use-module (gnu packages base)
59 #:use-module (gnu packages bash)
60 #:use-module (gnu packages compression)
61 #:use-module (gnu packages databases)
62 #:use-module (gnu packages fontutils)
63 #:use-module (gnu packages freedesktop)
64 #:use-module (gnu packages gd)
65 #:use-module (gnu packages gl)
66 #:use-module (gnu packages gtk)
67 #:use-module (gnu packages hurd)
68 #:use-module (gnu packages image)
69 #:use-module (gnu packages less)
70 #:use-module (gnu packages ncurses)
71 #:use-module (gnu packages perl-check)
72 #:use-module (gnu packages perl-compression)
73 #:use-module (gnu packages perl-maths)
74 #:use-module (gnu packages perl-web)
75 #:use-module (gnu packages pkg-config)
76 #:use-module (gnu packages readline)
77 #:use-module (gnu packages sdl)
78 #:use-module (gnu packages textutils)
79 #:use-module (gnu packages video)
80 #:use-module (gnu packages web)
81 #:use-module (gnu packages xorg))
82
83 ;;;
84 ;;; Please: Try to add new module packages in alphabetic order.
85 ;;;
86
87 \f
88 (define-public perl
89 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
90 (package
91 (name "perl")
92 (version "5.30.2")
93 (source (origin
94 (method url-fetch)
95 (uri (string-append "mirror://cpan/src/5.0/perl-"
96 version ".tar.gz"))
97 (sha256
98 (base32
99 "128nfdxcvxfn5kq55qcfrx2851ys8hv794dcdxbyny8rm7w7vnv6"))
100 (patches (search-patches
101 "perl-no-sys-dirs.patch"
102 "perl-autosplit-default-time.patch"
103 "perl-deterministic-ordering.patch"
104 "perl-reproducible-build-date.patch"))))
105 (build-system gnu-build-system)
106 (arguments
107 `(#:tests? #f
108 #:configure-flags
109 (let ((out (assoc-ref %outputs "out"))
110 (libc (assoc-ref %build-inputs "libc")))
111 (list
112 (string-append "-Dprefix=" out)
113 (string-append "-Dman1dir=" out "/share/man/man1")
114 (string-append "-Dman3dir=" out "/share/man/man3")
115 "-de" "-Dcc=gcc"
116 "-Uinstallusrbinperl"
117 "-Dinstallstyle=lib/perl5"
118 "-Duseshrplib"
119 (string-append "-Dlocincpth=" libc "/include")
120 (string-append "-Dloclibpth=" libc "/lib")
121 "-Dusethreads"))
122 #:phases
123 (modify-phases %standard-phases
124 (add-before 'configure 'setup-configure
125 (lambda _
126 ;; Use the right path for `pwd'.
127 ;; TODO: use coreutils from INPUTS instead of 'which'
128 ;; in next rebuild cycle, see fixup below.
129 (substitute* "dist/PathTools/Cwd.pm"
130 (("/bin/pwd")
131 (which "pwd")))
132
133 ;; Build in GNU89 mode to tolerate C++-style comment in libc's
134 ;; <bits/string3.h>.
135 (substitute* "cflags.SH"
136 (("-std=c89")
137 "-std=gnu89"))
138 #t))
139 ,@(if (%current-target-system)
140 `((add-after 'unpack 'unpack-cross
141 (lambda* (#:key native-inputs inputs #:allow-other-keys)
142 (let ((cross-checkout
143 (assoc-ref native-inputs "perl-cross"))
144 (cross-patch
145 (assoc-ref native-inputs "perl-cross-patch")))
146 (rename-file "Artistic" "Artistic.perl")
147 (rename-file "Copying" "Copying.perl")
148 (copy-recursively cross-checkout ".")
149 (format #t "Applying ~a\n" cross-patch)
150 (invoke "patch" "-p1" "-i" cross-patch))
151 (let ((bash (assoc-ref inputs "bash")))
152 (substitute* '("Makefile.config.SH"
153 "cnf/config.guess"
154 "cnf/config.sub"
155 "cnf/configure"
156 "cnf/configure_misc.sh"
157 "miniperl_top")
158 (("! */bin/sh") (string-append "! " bash "/bin/bash"))
159 ((" /bin/sh") (string-append bash "/bin/bash")))
160 (substitute* '("ext/Errno/Errno_pm.PL")
161 (("\\$cpp < errno.c") "$Config{cc} -E errno.c")))
162 #t))
163 (replace 'configure
164 (lambda* (#:key configure-flags outputs inputs #:allow-other-keys)
165 (let* ((out (assoc-ref outputs "out"))
166 (store-directory (%store-directory))
167 (configure-flags
168 (cons*
169 ;; `perl-cross' confuses target and host
170 (string-append "--target=" ,(%current-target-system))
171 (string-append "--prefix=" out)
172 (string-append "-Dcc=" ,(%current-target-system) "-gcc")
173 "-Dbyteorder=1234"
174 (filter (negate
175 (lambda (x) (or (string-prefix? "-d" x)
176 (string-prefix? "-Dcc=" x))))
177 configure-flags)))
178 (bash (assoc-ref inputs "bash"))
179 (coreutils (assoc-ref inputs "coreutils")))
180 (format (current-error-port)
181 "running ./configure ~a\n" (string-join configure-flags))
182 (apply invoke (cons "./configure" configure-flags))
183 (substitute* "config.sh"
184 (((string-append store-directory "/[^/]*-bash-[^/]*"))
185 bash))
186 (substitute* '("config.h")
187 (("^#define SH_PATH .*")
188 (string-append "#define SH_PATH \"" bash "/bin/bash\"\n")))
189 ;;TODO: fix this in setup-configure next rebuild cycle
190 (substitute* "dist/PathTools/Cwd.pm"
191 (((string-append store-directory "/[^/]*-coreutils-[^/]*"))
192 coreutils))
193 #t)))
194 (add-after 'build 'touch-non-built-files-for-install
195 (lambda _
196 ;; `make install' wants to install these although they do
197 ;; not get built...
198 (with-directory-excursion "cpan"
199 (mkdir-p "Pod-Usage/blib/script")
200 (mkdir-p "Pod-Parser/blib/script")
201 (for-each (lambda (file)
202 (call-with-output-file file
203 (lambda (port) (display "" port))))
204 '("Pod-Usage/blib/script/pod2text"
205 "Pod-Usage/blib/script/pod2usage"
206 "Pod-Checker/blib/script/podchecker"
207 "Pod-Parser/blib/script/podselect")))
208 #t)))
209 `((replace 'configure
210 (lambda* (#:key configure-flags #:allow-other-keys)
211 (format #t "Perl configure flags: ~s~%" configure-flags)
212 (apply invoke "./Configure" configure-flags)))))
213 (add-after 'install 'remove-extra-references
214 (lambda* (#:key inputs outputs #:allow-other-keys)
215 (let* ((out (assoc-ref outputs "out"))
216 (libc (assoc-ref inputs
217 ,(if (%current-target-system)
218 "cross-libc" "libc")))
219 (config1 (car (find-files (string-append out "/lib/perl5")
220 "^Config_heavy\\.pl$")))
221 (config2 (find-files (string-append out "/lib/perl5")
222 "^Config\\.pm$")))
223 ;; Force the library search path to contain only libc because
224 ;; it is recorded in Config.pm and Config_heavy.pl; we don't
225 ;; want to keep a reference to everything that's in
226 ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
227 ;; etc.)
228 (substitute* config1
229 (("^incpth=.*$")
230 (string-append "incpth='" libc "/include'\n"))
231 (("^(libpth|plibpth|libspath)=.*$" _ variable)
232 (string-append variable "='" libc "/lib'\n")))
233
234 (for-each (lambda (file)
235 (substitute* config2
236 (("libpth => .*$")
237 (string-append "libpth => '" libc
238 "/lib',\n"))))
239 config2)
240 #t))))))
241 (inputs
242 (if (%current-target-system)
243 `(("bash" ,bash-minimal)
244 ("coreutils" ,coreutils))
245 '()))
246 (native-inputs
247 (if (%current-target-system)
248 `(("perl-cross"
249 ,(origin
250 (method git-fetch)
251 (uri (git-reference
252 (url "https://github.com/arsv/perl-cross")
253 (commit "1.3.3")))
254 (file-name (git-file-name "perl-cross" "1.3.3"))
255 (sha256
256 (base32 "065qbl1x44maykaj8p8za0b6qxj74bz7fi2zsrlydir1mqb1js3d"))))
257 ("perl-cross-patch" ,@(search-patches "perl-cross.patch")))
258 '()))
259 (native-search-paths (list (search-path-specification
260 (variable "PERL5LIB")
261 (files '("lib/perl5/site_perl")))))
262 (synopsis "Implementation of the Perl programming language")
263 (description
264 "Perl is a general-purpose programming language originally developed for
265 text manipulation and now used for a wide range of tasks including system
266 administration, web development, network programming, GUI development, and
267 more.")
268 (home-page "https://www.perl.org/")
269 (license license:gpl1+))) ; or "Artistic"
270
271 (define-public perl-algorithm-c3
272 (package
273 (name "perl-algorithm-c3")
274 (version "0.11")
275 (source
276 (origin
277 (method url-fetch)
278 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
279 "Algorithm-C3-" version ".tar.gz"))
280 (sha256
281 (base32 "02ck52cf0yyk57354rd1rp5l0kbfwi1pvg2lh3jadvjxfrkq9x5a"))))
282 (build-system perl-build-system)
283 (home-page "https://metacpan.org/release/Algorithm-C3")
284 (synopsis "Module for merging hierarchies using the C3 algorithm")
285 (description "This module implements the C3 algorithm, which aims to
286 provide a sane method resolution order under multiple inheritance.")
287 (license (package-license perl))))
288
289 (define-public perl-algorithm-diff
290 (package
291 (name "perl-algorithm-diff")
292 (version "1.1903")
293 (source
294 (origin
295 (method url-fetch)
296 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
297 "Algorithm-Diff-" version ".tar.gz"))
298 (sha256
299 (base32
300 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
301 (build-system perl-build-system)
302 (home-page "https://metacpan.org/release/Algorithm-Diff")
303 (synopsis "Compute differences between two files or lists")
304 (description "This is a module for computing the difference between two
305 files, two strings, or any other two lists of things. It uses an intelligent
306 algorithm similar to (or identical to) the one used by the Unix \"diff\"
307 program. It is guaranteed to find the *smallest possible* set of
308 differences.")
309 (license (package-license perl))))
310
311 (define-public perl-aliased
312 (package
313 (name "perl-aliased")
314 (version "0.34")
315 (source
316 (origin
317 (method url-fetch)
318 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
319 "aliased-" version ".tar.gz"))
320 (sha256
321 (base32
322 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
323 (build-system perl-build-system)
324 (native-inputs `(("perl-module-build" ,perl-module-build)))
325 (home-page "https://metacpan.org/release/aliased")
326 (synopsis "Use shorter versions of class names")
327 (description "The alias module loads the class you specify and exports
328 into your namespace a subroutine that returns the class name. You can
329 explicitly alias the class to another name or, if you prefer, you can do so
330 implicitly.")
331 (license (package-license perl))))
332
333 (define-public perl-alien-sdl
334 (package
335 (name "perl-alien-sdl")
336 (version "1.446")
337 (source
338 (origin
339 (method url-fetch)
340 (uri (string-append "mirror://cpan/authors/id/F/FR/FROGGS/"
341 "Alien-SDL-" version ".tar.gz"))
342 (sha256
343 (base32 "0ajipk43syhlmw0zinbj1i6r46vdlkr06wkx7ivqjgf6qffjran9"))))
344 (build-system perl-build-system)
345 (arguments
346 `(#:module-build-flags
347 ;; XXX: For some reason, `sdl-config' reports stand-alone SDL
348 ;; directory, not SDL-union provided as an input to the
349 ;; package. We force the latter with "--prefix=" option.
350 (list (let ((sdl (assoc-ref %build-inputs "sdl")))
351 (string-append "--with-sdl-config=" sdl "/bin/sdl-config"
352 " --prefix=" sdl)))
353 #:phases
354 (modify-phases %standard-phases
355 ;; Fix "unrecognized option: --with-sdl-config" during build.
356 ;; Reported upstream as
357 ;; <https://github.com/PerlGameDev/SDL/issues/261>. See also
358 ;; <https://github.com/PerlGameDev/SDL/issues/272>.
359 (add-after 'unpack 'fix-build.pl
360 (lambda _
361 (substitute* "Build.PL"
362 (("use Getopt::Long;") "")
363 (("GetOptions\\( \"travis\" => \\\\\\$travis \\);") ""))
364 #t)))))
365 (native-inputs
366 `(("perl-archive-extract" ,perl-archive-extract)
367 ("perl-archive-zip" ,perl-archive-zip)
368 ("perl-capture-tiny" ,perl-capture-tiny)
369 ("perl-file-sharedir" ,perl-file-sharedir)
370 ("perl-file-which" ,perl-file-which)
371 ("perl-module-build" ,perl-module-build)
372 ("perl-text-patch" ,perl-text-patch)))
373 (inputs
374 `(("freetype" ,freetype)
375 ("fontconfig" ,fontconfig)
376 ("pango" ,pango)
377 ("sdl" ,(sdl-union
378 (list sdl sdl-gfx sdl-image sdl-mixer sdl-net sdl-ttf
379 sdl-pango)))
380 ("zlib" ,zlib)))
381 (home-page "https://metacpan.org/release/Alien-SDL")
382 (synopsis "Get, build and use SDL libraries")
383 (description
384 "Alien::SDL can be used to detect and get configuration settings from an
385 installed SDL and related libraries. Based on your platform it offers the
386 possibility to download and install prebuilt binaries or to build SDL & co.@:
387 from source codes.")
388 (license license:perl-license)))
389
390 (define-public perl-any-moose
391 (package
392 (name "perl-any-moose")
393 (version "0.27")
394 (source (origin
395 (method url-fetch)
396 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
397 "Any-Moose-" version ".tar.gz"))
398 (sha256
399 (base32
400 "0dc55mpayrixwx8dwql0vj0jalg4rlb3k64rprc84bl0z8vkx9m8"))))
401 (build-system perl-build-system)
402 (native-inputs
403 `(("perl-mouse" ,perl-mouse)
404 ("perl-moose" ,perl-moose)))
405 (home-page "https://metacpan.org/release/Any-Moose")
406 (synopsis "Transparently use Moose or Mouse modules")
407 (description
408 "This module facilitates using @code{Moose} or @code{Mouse} modules
409 without changing the code. By default, Mouse will be provided to libraries,
410 unless Moose is already loaded, or explicitly requested by the end-user. End
411 users can force the decision of which backend to use by setting the environment
412 variable ANY_MOOSE to be Moose or Mouse.")
413 (license (package-license perl))))
414
415 (define-public perl-appconfig
416 (package
417 (name "perl-appconfig")
418 (version "1.71")
419 (source
420 (origin
421 (method url-fetch)
422 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
423 "AppConfig-" version ".tar.gz"))
424 (sha256
425 (base32
426 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
427 (build-system perl-build-system)
428 (native-inputs
429 `(("perl-test-pod" ,perl-test-pod)))
430 (home-page "https://metacpan.org/release/AppConfig")
431 (synopsis "Configuration files and command line parsing")
432 (description "AppConfig is a bundle of Perl5 modules for reading
433 configuration files and parsing command line arguments.")
434 (license (package-license perl))))
435
436 (define-public perl-array-utils
437 (package
438 (name "perl-array-utils")
439 (version "0.5")
440 (source
441 (origin
442 (method url-fetch)
443 (uri (string-append
444 "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
445 version
446 ".tar.gz"))
447 (sha256
448 (base32
449 "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
450 (build-system perl-build-system)
451 (home-page "https://metacpan.org/release/Array-Utils")
452 (synopsis "Small utils for array manipulation")
453 (description "@code{Array::Utils} is a small pure-perl module containing
454 list manipulation routines.")
455 (license (package-license perl))))
456
457 (define-public perl-async-interrupt
458 (package
459 (name "perl-async-interrupt")
460 (version "1.26")
461 (source (origin
462 (method url-fetch)
463 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
464 "Async-Interrupt-" version ".tar.gz"))
465 (sha256
466 (base32
467 "0nq8wqy0gsnwhiw23wsp1dmgzzbf2q1asi85yd0d7cmg4haxsmib"))))
468 (build-system perl-build-system)
469 (native-inputs
470 `(("perl-canary-stability" ,perl-canary-stability)))
471 (propagated-inputs
472 `(("perl-common-sense" ,perl-common-sense)))
473 (home-page "https://metacpan.org/release/Async-Interrupt")
474 (synopsis "Allow C/XS libraries to interrupt perl asynchronously")
475 (description
476 "@code{Async::Interrupt} implements a single feature only of interest
477 to advanced perl modules, namely asynchronous interruptions (think \"UNIX
478 signals\", which are very similar).
479
480 Sometimes, modules wish to run code asynchronously (in another thread,
481 or from a signal handler), and then signal the perl interpreter on
482 certain events. One common way is to write some data to a pipe and use
483 an event handling toolkit to watch for I/O events. Another way is to
484 send a signal. Those methods are slow, and in the case of a pipe, also
485 not asynchronous - it won't interrupt a running perl interpreter.
486
487 This module implements asynchronous notifications that enable you to
488 signal running perl code from another thread, asynchronously, and
489 sometimes even without using a single syscall.")
490 (license (package-license perl))))
491
492 (define-public perl-attribute-util
493 (package
494 (name "perl-attribute-util")
495 (version "1.07")
496 (source (origin
497 (method url-fetch)
498 (uri (string-append
499 "https://cpan.metacpan.org/authors/id/D/DA/DANKOGAI/"
500 "Attribute-Util-" version ".tar.gz"))
501 (sha256
502 (base32
503 "1z79d845dy96lg0pxw0kr2za0gniwnpn963r7ccajfpj6k7jfw07"))))
504 (build-system perl-build-system)
505 (home-page "https://metacpan.org/pod/Attribute::Util")
506 (synopsis "Assorted general utility attributes")
507 (description "This package provides various utility functions. When used
508 without argument, this module provides four universally accessible attributes
509 of general interest as follows:
510 @itemize
511 @item Abstract
512 @item Alias
513 @item Memoize
514 @item Method
515 @item SigHandler
516 @end itemize")
517 (license (package-license perl))))
518
519 (define-public perl-authen-dechpwd
520 (package
521 (name "perl-authen-dechpwd")
522 (version "2.007")
523 (source
524 (origin
525 (method url-fetch)
526 (uri (string-append
527 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-DecHpwd-"
528 version ".tar.gz"))
529 (sha256
530 (base32
531 "0xzind7zr2prjq3zbs2j18snfpshd4xrd7igv4kp67xl0axr6fpl"))))
532 (build-system perl-build-system)
533 (native-inputs
534 `(("perl-module-build" ,perl-module-build)
535 ("perl-test-pod" ,perl-test-pod)
536 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
537 (propagated-inputs
538 `(("perl-data-integer" ,perl-data-integer)
539 ("perl-digest-crc" ,perl-digest-crc)
540 ("perl-scalar-string" ,perl-scalar-string)))
541 (home-page "https://metacpan.org/release/Authen-DecHpwd")
542 (synopsis "DEC VMS password hashing")
543 (description "@code{Authen::DecHpwd} implements the
544 SYS$HASH_PASSWORD password hashing function from VMS (also known as
545 LGI$HPWD) and some associated VMS username and password handling
546 functions. The password hashing function is implemented in XS with a
547 pure Perl backup version for systems that cannot handle XS.")
548 (license license:gpl2+)))
549
550 (define-public perl-authen-passphrase
551 (package
552 (name "perl-authen-passphrase")
553 (version "0.008")
554 (source
555 (origin
556 (method url-fetch)
557 (uri (string-append
558 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Authen-Passphrase-"
559 version ".tar.gz"))
560 (sha256
561 (base32
562 "0qq4krap687rxf6xr31bg5nj5dqmm1frcm7fq249v1bxc4h4bnsm"))))
563 (build-system perl-build-system)
564 (native-inputs
565 `(("perl-module-build" ,perl-module-build)
566 ("perl-test-pod" ,perl-test-pod)
567 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
568 (propagated-inputs
569 `(("perl-authen-dechpwd" ,perl-authen-dechpwd)
570 ("perl-crypt-des" ,perl-crypt-des)
571 ("perl-crypt-eksblowfish" ,perl-crypt-eksblowfish)
572 ("perl-crypt-mysql" ,perl-crypt-mysql)
573 ("perl-crypt-passwdmd5" ,perl-crypt-passwdmd5)
574 ("perl-crypt-unixcrypt_xs" ,perl-crypt-unixcrypt_xs)
575 ("perl-data-entropy" ,perl-data-entropy)
576 ("perl-digest-md4" ,perl-digest-md4)
577 ("perl-module-runtime" ,perl-module-runtime)
578 ("perl-params-classify" ,perl-params-classify)))
579 (home-page "https://metacpan.org/release/Authen-Passphrase")
580 (synopsis "Hashed passwords/passphrases as objects")
581 (description "@code{Authen-Passphrase} is the base class for a
582 system of objects that encapsulate passphrases. An object of this
583 type is a passphrase recogniser; its job is to recognise whether an
584 offered passphrase is the right one. For security such passphrase
585 recognisers usually do not themselves know the passphrase they are
586 looking for; they can merely recognise it when they see it. There are
587 many schemes in use to achieve this effect and the intent of this
588 class is to provide a consistent interface to them all. In addition
589 to the base class, this module also contains implementations of
590 several specific passphrase schemes.")
591 (license license:perl-license)))
592
593 (define-public perl-autovivification
594 (package
595 (name "perl-autovivification")
596 (version "0.18")
597 (source
598 (origin
599 (method url-fetch)
600 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
601 "autovivification-" version ".tar.gz"))
602 (sha256
603 (base32
604 "01giacr2sx6b9bgfz6aqw7ndcnf08j8n6kwhm7880a94hmb9g69d"))))
605 (build-system perl-build-system)
606 (home-page "https://metacpan.org/release/autovivification")
607 (synopsis "Lexically disable autovivification")
608 (description "When an undefined variable is dereferenced, it gets silently
609 upgraded to an array or hash reference (depending of the type of the
610 dereferencing). This behaviour is called autovivification and usually does
611 what you mean but it may be unnatural or surprising because your variables get
612 populated behind your back. This is especially true when several levels of
613 dereferencing are involved, in which case all levels are vivified up to the
614 last, or when it happens in intuitively read-only constructs like
615 @code{exists}. The pragma provided by this package lets you disable
616 autovivification for some constructs and optionally throws a warning or an
617 error when it would have happened.")
618 (license (package-license perl))))
619
620 (define-public perl-bareword-filehandles
621 (package
622 (name "perl-bareword-filehandles")
623 (version "0.006")
624 (source
625 (origin
626 (method url-fetch)
627 (uri (string-append
628 "mirror://cpan/authors/id/I/IL/ILMARI/bareword-filehandles-"
629 version ".tar.gz"))
630 (sha256
631 (base32
632 "1yxz6likpfshpyfrgwyi7dw6ig1wjhh0vnvbcs6ypr62pv00fv5d"))))
633 (build-system perl-build-system)
634 (native-inputs
635 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
636 ("perl-extutils-depends" ,perl-extutils-depends)))
637 (propagated-inputs
638 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
639 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
640 (home-page "https://metacpan.org/release/bareword-filehandles")
641 (synopsis "Disables bareword filehandles")
642 (description "This module disables bareword filehandles.")
643 (license (package-license perl))))
644
645 (define-public perl-base
646 (deprecated-package "perl-base" perl))
647
648 (define-public perl-browser-open
649 (package
650 (name "perl-browser-open")
651 (version "0.04")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (string-append "mirror://cpan/authors/id/C/CF/CFRANKS/Browser-Open-"
656 version ".tar.gz"))
657 (sha256
658 (base32
659 "0rv80n5ihy9vnrzsc3l7wlk8880cwabiljrydrdnxq1gg0lk3sxc"))))
660 (build-system perl-build-system)
661 (home-page "https://metacpan.org/release/Browser-Open")
662 (synopsis "Open a browser in a given URL")
663 (description "The functions exported by this module allow you to open URLs
664 in the user's browser. A set of known commands per OS-name is tested for
665 presence, and the first one found is executed. With an optional parameter,
666 all known commands are checked.")
667 (license (package-license perl))))
668
669 (define-public perl-b-hooks-endofscope
670 (package
671 (name "perl-b-hooks-endofscope")
672 (version "0.24")
673 (source
674 (origin
675 (method url-fetch)
676 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
677 "B-Hooks-EndOfScope-" version ".tar.gz"))
678 (sha256
679 (base32
680 "1imcqxp23yc80a7p0h56sja9glbrh4qyhgzljqd4g9habpz3vah3"))))
681 (build-system perl-build-system)
682 (propagated-inputs
683 `(("perl-module-runtime" ,perl-module-runtime)
684 ("perl-module-implementation" ,perl-module-implementation)
685 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
686 ("perl-variable-magic" ,perl-variable-magic)))
687 (home-page "https://metacpan.org/release/B-Hooks-EndOfScope")
688 (synopsis "Execute code after a scope finished compilation")
689 (description "This module allows you to execute code when perl finished
690 compiling the surrounding scope.")
691 (license (package-license perl))))
692
693 (define-public perl-b-hooks-op-check
694 (package
695 (name "perl-b-hooks-op-check")
696 (version "0.22")
697 (source
698 (origin
699 (method url-fetch)
700 (uri (string-append
701 "mirror://cpan/authors/id/E/ET/ETHER/B-Hooks-OP-Check-"
702 version ".tar.gz"))
703 (sha256
704 (base32
705 "1kfdv25gn6yik8jrwik4ajp99gi44s6idcvyyrzhiycyynzd3df7"))))
706 (build-system perl-build-system)
707 (native-inputs
708 `(("perl-extutils-depends" ,perl-extutils-depends)))
709 (home-page "https://metacpan.org/release/B-Hooks-OP-Check")
710 (synopsis "Wrap OP check callbacks")
711 (description "This module allows you to wrap OP check callbacks.")
712 (license (package-license perl))))
713
714 (define-public perl-b-keywords
715 (package
716 (name "perl-b-keywords")
717 (version "1.20")
718 (source
719 (origin
720 (method url-fetch)
721 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/B-Keywords-"
722 version ".tar.gz"))
723 (sha256
724 (base32 "12jvx5gnypqxal4valkf9lidba9nz7kjk2wvm07q3hkmdqxw1zk0"))))
725 (build-system perl-build-system)
726 (home-page "https://metacpan.org/release/B-Keywords")
727 (synopsis "Lists of reserved barewords and symbol names")
728 (description "@code{B::Keywords} supplies several arrays of exportable
729 keywords: @code{@@Scalars, @@Arrays, @@Hashes, @@Filehandles, @@Symbols,
730 @@Functions, @@Barewords, @@TieIOMethods, @@UNIVERSALMethods and
731 @@ExporterSymbols}.")
732 ;; GPLv2 only
733 (license license:gpl2)))
734
735 (define-public perl-benchmark-timer
736 (package
737 (name "perl-benchmark-timer")
738 (version "0.7102")
739 (source (origin
740 (method url-fetch)
741 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
742 "Benchmark-Timer-" version ".tar.gz"))
743 (sha256
744 (base32
745 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
746 (build-system perl-build-system)
747 (native-inputs
748 `(("perl-module-install" ,perl-module-install)))
749 ;; The optional input module Statistics::PointEstimation (from
750 ;; Statistics-TTest) lists no license.
751 (synopsis "Benchmarking with statistical confidence")
752 (description
753 "The Benchmark::Timer class allows you to time portions of code
754 conveniently, as well as benchmark code by allowing timings of repeated
755 trials. It is perfect for when you need more precise information about the
756 running time of portions of your code than the Benchmark module will give you,
757 but don't want to go all out and profile your code.")
758 (home-page "https://metacpan.org/release/Benchmark-Timer")
759 (license license:gpl2)))
760
761 (define-public perl-bit-vector
762 (package
763 (name "perl-bit-vector")
764 (version "7.4")
765 (source
766 (origin
767 (method url-fetch)
768 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
769 "Bit-Vector-" version ".tar.gz"))
770 (sha256
771 (base32
772 "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
773 (build-system perl-build-system)
774 (propagated-inputs
775 `(("perl-carp-clan" ,perl-carp-clan)))
776 (home-page "https://metacpan.org/release/Bit-Vector")
777 (synopsis "Bit vector library")
778 (description "Bit::Vector is an efficient C library which allows you to
779 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
780 matrices, all of arbitrary sizes. The package also includes an
781 object-oriented Perl module for accessing the C library from Perl, and
782 optionally features overloaded operators for maximum ease of use. The C
783 library can nevertheless be used stand-alone, without Perl.")
784 (license (list (package-license perl) license:lgpl2.0+))))
785
786 (define-public perl-boolean
787 (package
788 (name "perl-boolean")
789 (version "0.46")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
794 "boolean-" version ".tar.gz"))
795 (sha256
796 (base32 "0shmiw8pmshnwj01cz8g94867hjf4vc1dkp61xlbz0rybh48ih4m"))))
797 (build-system perl-build-system)
798 (home-page "https://metacpan.org/release/boolean")
799 (synopsis "Boolean support for Perl")
800 (description "This module provides basic Boolean support, by defining two
801 special objects: true and false.")
802 (license (package-license perl))))
803
804 (define-public perl-business-isbn-data
805 (package
806 (name "perl-business-isbn-data")
807 (version "20140910.003")
808 (source
809 (origin
810 (method url-fetch)
811 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
812 "Business-ISBN-Data-" version ".tar.gz"))
813 (sha256
814 (base32
815 "1jc5jrjwkr6pqga7998zkgw0yrxgb5n1y7lzgddawxibkf608mn7"))))
816 (build-system perl-build-system)
817 (home-page "https://metacpan.org/release/Business-ISBN-Data")
818 (synopsis "Data files for Business::ISBN")
819 (description "This package provides a data pack for @code{Business::ISBN}.
820 These data are generated from the RangeMessage.xml file provided by the ISBN
821 Agency.")
822 (license (package-license perl))))
823
824 (define-public perl-business-isbn
825 (package
826 (name "perl-business-isbn")
827 (version "3.004")
828 (source
829 (origin
830 (method url-fetch)
831 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
832 "Business-ISBN-" version ".tar.gz"))
833 (sha256
834 (base32
835 "07l3zfv8hagv37i3clvj5a1zc2jarr5phg80c93ks35zaz6llx9i"))))
836 (build-system perl-build-system)
837 (propagated-inputs
838 `(("perl-business-isbn-data" ,perl-business-isbn-data)
839 ("perl-mojolicious" ,perl-mojolicious)))
840 (home-page "https://metacpan.org/release/Business-ISBN")
841 (synopsis "Work with International Standard Book Numbers")
842 (description "This modules provides tools to deal with International
843 Standard Book Numbers, including ISBN-10 and ISBN-13.")
844 (license license:artistic2.0)))
845
846 (define-public perl-business-issn
847 (package
848 (name "perl-business-issn")
849 (version "1.003")
850 (source
851 (origin
852 (method url-fetch)
853 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
854 "Business-ISSN-" version ".tar.gz"))
855 (sha256
856 (base32
857 "1lcr9dabwqssjpff97ki6w8mjhvh8kfbj3csbyy28ylk35n4awhj"))))
858 (build-system perl-build-system)
859 (home-page "https://metacpan.org/release/Business-ISSN")
860 (synopsis "Work with International Standard Serial Numbers")
861 (description "This modules provides tools to deal with International
862 Standard Serial Numbers.")
863 (license (package-license perl))))
864
865 (define-public perl-business-ismn
866 (package
867 (name "perl-business-ismn")
868 (version "1.201")
869 (source
870 (origin
871 (method url-fetch)
872 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
873 "Business-ISMN-" version ".tar.gz"))
874 (sha256
875 (base32 "1cpcfyaz1fl6fnm076jx2jsphw147wj6aszj2yzqrgsncjhk2cja"))))
876 (build-system perl-build-system)
877 (native-inputs
878 `(("perl-tie-cycle" ,perl-tie-cycle)))
879 (home-page "https://metacpan.org/release/Business-ISMN")
880 (synopsis "Work with International Standard Music Numbers")
881 (description "This modules provides tools to deal with International
882 Standard Music Numbers.")
883 (license (package-license perl))))
884
885 (define-public perl-cache-cache
886 (package
887 (name "perl-cache-cache")
888 (version "1.08")
889 (source (origin
890 (method url-fetch)
891 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
892 "Cache-Cache-" version ".tar.gz"))
893 (sha256
894 (base32
895 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
896 (build-system perl-build-system)
897 (propagated-inputs
898 `(("perl-digest-sha1" ,perl-digest-sha1)
899 ("perl-error" ,perl-error)
900 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
901 (home-page "https://metacpan.org/release/Cache-Cache")
902 (synopsis "Cache interface for Perl")
903 (description "The Cache modules are designed to assist a developer in
904 persisting data for a specified period of time. Often these modules are used
905 in web applications to store data locally to save repeated and redundant
906 expensive calls to remote machines or databases. People have also been known
907 to use Cache::Cache for its straightforward interface in sharing data between
908 runs of an application or invocations of a CGI-style script or simply as an
909 easy to use abstraction of the file system or shared memory.")
910 (license (package-license perl))))
911
912 (define-public perl-cache-fastmmap
913 (package
914 (name "perl-cache-fastmmap")
915 (version "1.48")
916 (source
917 (origin
918 (method url-fetch)
919 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
920 "Cache-FastMmap-" version ".tar.gz"))
921 (sha256
922 (base32 "118y5lxwa092zrii7mcwnqypff7424w1dpgfkg8zlnz7h2mmnd9c"))))
923 (build-system perl-build-system)
924 (home-page "https://metacpan.org/release/Cache-FastMmap")
925 (synopsis "Shared memory interprocess cache via mmap")
926 (description "A shared memory cache through an mmap'ed file. It's core is
927 written in C for performance. It uses fcntl locking to ensure multiple
928 processes can safely access the cache at the same time. It uses a basic LRU
929 algorithm to keep the most used entries in the cache.")
930 (license (package-license perl))))
931
932 (define-public perl-capture-tiny
933 (package
934 (name "perl-capture-tiny")
935 (version "0.48")
936 (source
937 (origin
938 (method url-fetch)
939 (uri (string-append
940 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
941 version ".tar.gz"))
942 (sha256
943 (base32
944 "069yrikrrb4vqzc3hrkkfj96apsh7q0hg8lhihq97lxshwz128vc"))))
945 (build-system perl-build-system)
946 (home-page "https://metacpan.org/release/Capture-Tiny")
947 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
948 (description
949 "Capture::Tiny provides a simple, portable way to capture almost anything
950 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
951 code or from an external program. Optionally, output can be teed so that it
952 is captured while being passed through to the original file handles.")
953 (license license:asl2.0)))
954
955 (define-public perl-canary-stability
956 (package
957 (name "perl-canary-stability")
958 (version "2013")
959 (source (origin
960 (method url-fetch)
961 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
962 "Canary-Stability-" version ".tar.gz"))
963 (sha256
964 (base32
965 "1smnsx371x9zrqmylgq145991xh8561mraqfyrlbiz4mrxi1rjd5"))))
966 (build-system perl-build-system)
967 (home-page "https://metacpan.org/release/Canary-Stability")
968 (synopsis "Check compatibility with the installed perl version")
969 (description
970 "This module is used by Schmorp's modules during configuration stage
971 to test the installed perl for compatibility with his modules.")
972 (license (package-license perl))))
973
974 (define-public perl-carp
975 (package
976 (name "perl-carp")
977 (version "1.50")
978 (source (origin
979 (method url-fetch)
980 (uri (string-append
981 "mirror://cpan/authors/id/X/XS/XSAWYERX/Carp-"
982 version ".tar.gz"))
983 (sha256
984 (base32
985 "1ngbpjyd9qi7n4h5r3q3qibd8by7rfiv7364jqlv4lbd3973n9zm"))))
986 (build-system perl-build-system)
987 (home-page "https://metacpan.org/release/Carp")
988 (synopsis "Alternative warn and die for modules")
989 (description "The @code{Carp} routines are useful in your own modules
990 because they act like @code{die()} or @code{warn()}, but with a message
991 which is more likely to be useful to a user of your module. In the case
992 of @code{cluck}, @code{confess}, and @code{longmess} that context is a
993 summary of every call in the call-stack. For a shorter message you can use
994 @code{carp} or @code{croak} which report the error as being from where your
995 module was called. There is no guarantee that that is where the error was,
996 but it is a good educated guess.")
997 (license (package-license perl))))
998
999 (define-public perl-carp-always
1000 (package
1001 (name "perl-carp-always")
1002 (version "0.16")
1003 (source
1004 (origin
1005 (method url-fetch)
1006 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Carp-Always-"
1007 version ".tar.gz"))
1008 (sha256
1009 (base32 "1wb6b0qjga7kvn4p8df6k4g1pl2yzaqiln1713xidh3i454i3alq"))))
1010 (build-system perl-build-system)
1011 (native-inputs
1012 `(("perl-test-base" ,perl-test-base)))
1013 (home-page "https://metacpan.org/release/Carp-Always")
1014 (synopsis "Warns and dies noisily with stack backtraces/")
1015 (description "This module is meant as a debugging aid. It can be used to
1016 make a script complain loudly with stack backtraces when @code{warn()}-ing or
1017 @code{die()}ing.")
1018 (license (package-license perl))))
1019
1020 (define-public perl-carp-assert
1021 (package
1022 (name "perl-carp-assert")
1023 (version "0.21")
1024 (source
1025 (origin
1026 (method url-fetch)
1027 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1028 "Carp-Assert-" version ".tar.gz"))
1029 (sha256
1030 (base32
1031 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
1032 (build-system perl-build-system)
1033 (home-page "https://metacpan.org/release/Carp-Assert")
1034 (synopsis "Executable comments for Perl")
1035 (description "Carp::Assert is intended for a purpose like the ANSI C
1036 library assert.h.")
1037 (license (package-license perl))))
1038
1039 (define-public perl-carp-assert-more
1040 (package
1041 (name "perl-carp-assert-more")
1042 (version "1.20")
1043 (source
1044 (origin
1045 (method url-fetch)
1046 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
1047 "Carp-Assert-More-" version ".tar.gz"))
1048 (sha256
1049 (base32 "16jnhdjgfwymrc5fki4xlf1rlziszf9k6q0245g976124k708ac5"))))
1050 (build-system perl-build-system)
1051 (native-inputs
1052 `(("perl-test-exception" ,perl-test-exception)))
1053 (propagated-inputs
1054 `(("perl-carp-assert" ,perl-carp-assert)))
1055 (home-page "https://metacpan.org/release/Carp-Assert-More")
1056 (synopsis "Convenience wrappers around Carp::Assert")
1057 (description "Carp::Assert::More is a set of handy assertion functions for
1058 Perl.")
1059 (license license:artistic2.0)))
1060
1061 (define-public perl-carp-clan
1062 (package
1063 (name "perl-carp-clan")
1064 (version "6.08")
1065 (source
1066 (origin
1067 (method url-fetch)
1068 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1069 "Carp-Clan-" version ".tar.gz"))
1070 (sha256
1071 (base32 "0237xx3rqa72sr4vdvws9r1m453h5f25bl85mdjmmk128kir4py7"))))
1072 (build-system perl-build-system)
1073 (native-inputs
1074 `(("perl-test-exception" ,perl-test-exception)))
1075 (home-page "https://metacpan.org/release/Carp-Clan")
1076 (synopsis "Report errors from a \"clan\" of modules")
1077 (description "This module allows errors from a clan (or family) of modules
1078 to appear to originate from the caller of the clan. This is necessary in
1079 cases where the clan modules are not classes derived from each other, and thus
1080 the Carp.pm module doesn't help.")
1081 (license (package-license perl))))
1082
1083 (define-public perl-cddb-get
1084 (package
1085 (name "perl-cddb-get")
1086 (version "2.28")
1087 (source (origin
1088 (method url-fetch)
1089 (uri (string-append
1090 "mirror://cpan/authors/id/F/FO/FONKIE/CDDB_get-"
1091 version ".tar.gz"))
1092 (sha256
1093 (base32
1094 "1jfrwvfasylcafbvb0jjm94ad4v6k99a7rf5i4qwzhg4m0gvmk5x"))))
1095 (build-system perl-build-system)
1096 (home-page "https://metacpan.org/release/CDDB_get")
1097 (synopsis "Read the CDDB entry for an audio CD in your drive")
1098 (description "This module can retrieve information from the CDDB.")
1099 ;; Either GPLv2 or the "Artistic" license.
1100 (license (list license:gpl2 license:artistic2.0))))
1101
1102 (define-public circos
1103 (package
1104 (name "circos")
1105 (version "0.69-9")
1106 (source (origin
1107 (method url-fetch)
1108 (uri (string-append
1109 "http://circos.ca/distribution/circos-" version ".tgz"))
1110 (sha256
1111 (base32 "1ll9yxbk0v64813np0qz6h8bc53qlnhg9y1053b57xgkxgmxgn1l"))
1112 (patches (list (search-patch "circos-remove-findbin.patch")))))
1113 (build-system gnu-build-system)
1114 (arguments
1115 `(#:tests? #f ; There are no tests.
1116 #:phases
1117 (modify-phases %standard-phases
1118 (delete 'configure)
1119 (delete 'build)
1120 (replace 'install
1121 (lambda* (#:key outputs #:allow-other-keys)
1122 (let* ((out (assoc-ref outputs "out"))
1123 (bin (string-append out "/bin"))
1124 (datapath (string-append out "/share/Circos"))
1125 (error (string-append out "/share/Circos/error"))
1126 (fonts (string-append out "/share/Circos/fonts"))
1127 (data (string-append out "/share/Circos/data"))
1128 (tiles (string-append out "/share/Circos/tiles"))
1129 (etc (string-append out "/share/Circos/etc"))
1130 (lib (string-append out "/lib/perl5/site_perl/"
1131 ,(package-version perl)))
1132 (install-directory (lambda (source target)
1133 (mkdir-p target)
1134 (copy-recursively source target))))
1135 ;; Circos looks into a relative path for its configuration
1136 ;; files. We need to provide an absolute path towards the
1137 ;; corresponding paths in the store.
1138 (substitute* '("bin/circos" "etc/colors_fonts_patterns.conf"
1139 "etc/gddiag.conf" "etc/brewer.conf" "README")
1140 (("<<include etc") (string-append "<<include " etc)))
1141 (substitute* '("etc/colors.conf" "etc/image.black.conf"
1142 "etc/patterns.conf" "etc/image.conf")
1143 (("<<include ") (string-append "<<include " etc "/")))
1144 (substitute* '("etc/fonts.conf" "fonts/README.fonts")
1145 (("= fonts") (string-append "= " fonts)))
1146 (substitute* "etc/patterns.conf"
1147 (("= tiles") (string-append "= " tiles)))
1148 (substitute* "lib/Circos/Error.pm"
1149 (("error/configuration.missing.txt")
1150 (string-append error "/configuration.missing.txt")))
1151 (substitute* "etc/housekeeping.conf"
1152 (("# data_path = /home/martink/circos-tutorials ")
1153 (string-append "data_path = " datapath)))
1154 (substitute* "lib/Circos/Configuration.pm"
1155 (("my @possibilities = \\(")
1156 (string-append "my @possibilities = ("
1157 "catfile( \"" datapath "\", $arg ), "
1158 "catfile( \"" etc "\", $arg ), "
1159 "catfile( \"" etc "/tracks\", $arg ), ")))
1160 (for-each install-directory
1161 (list "error" "fonts" "data" "tiles" "etc" "lib")
1162 (list error fonts data tiles etc lib))
1163 (install-file "bin/circos" bin)
1164 #t))))))
1165 (propagated-inputs
1166 `(("perl" ,perl)
1167 ("perl-carp" ,perl-carp)
1168 ("perl-clone" ,perl-clone)
1169 ("perl-config-general" ,perl-config-general)
1170 ("perl-digest-md5" ,perl-digest-md5)
1171 ("perl-file-temp" ,perl-file-temp)
1172 ("perl-font-ttf" ,perl-font-ttf)
1173 ("perl-gd" ,perl-gd)
1174 ("perl-getopt-long" ,perl-getopt-long)
1175 ("perl-list-allutils" ,perl-list-allutils)
1176 ("perl-math-bezier" ,perl-math-bezier)
1177 ("perl-math-round" ,perl-math-round)
1178 ("perl-math-vecstat" ,perl-math-vecstat)
1179 ("perl-memoize" ,perl-memoize)
1180 ("perl-number-format" ,perl-number-format)
1181 ("perl-params-validate" ,perl-params-validate)
1182 ("perl-readonly" ,perl-readonly)
1183 ("perl-regexp-common" ,perl-regexp-common)
1184 ("perl-set-intspan" ,perl-set-intspan)
1185 ("perl-statistics-basic" ,perl-statistics-basic)
1186 ("perl-svg" ,perl-svg)
1187 ("perl-text-balanced" ,perl-text-balanced)
1188 ("perl-text-format" ,perl-text-format)
1189 ("perl-time-hires" ,perl-time-hires)))
1190 (home-page "http://circos.ca/")
1191 (synopsis "Generation of circularly composited renditions")
1192 (description
1193 "Circos is a program for the generation of publication-quality, circularly
1194 composited renditions of genomic data and related annotations.")
1195 (license license:gpl2+)))
1196
1197 (define-public perl-class-accessor
1198 (package
1199 (name "perl-class-accessor")
1200 (version "0.51")
1201 (source
1202 (origin
1203 (method url-fetch)
1204 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
1205 "Class-Accessor-" version ".tar.gz"))
1206 (sha256
1207 (base32
1208 "07215zzr4ydf49832vn54i3gf2q5b97lydkv8j56wb2svvjs64mz"))))
1209 (build-system perl-build-system)
1210 (native-inputs
1211 `(("perl-sub-name" ,perl-sub-name)))
1212 (home-page "https://metacpan.org/release/Class-Accessor")
1213 (synopsis "Automated accessor generation")
1214 (description "This module automagically generates accessors/mutators for
1215 your class.")
1216 (license (package-license perl))))
1217
1218 (define-public perl-class-accessor-chained
1219 (package
1220 (name "perl-class-accessor-chained")
1221 (version "0.01")
1222 (source
1223 (origin
1224 (method url-fetch)
1225 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1226 "Class-Accessor-Chained-" version ".tar.gz"))
1227 (sha256
1228 (base32
1229 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
1230 (build-system perl-build-system)
1231 (native-inputs
1232 `(("perl-module-build" ,perl-module-build)))
1233 (propagated-inputs
1234 `(("perl-class-accessor" ,perl-class-accessor)))
1235 (home-page "https://metacpan.org/release/Class-Accessor-Chained")
1236 (synopsis "Faster, but less expandable, chained accessors")
1237 (description "A chained accessor is one that always returns the object
1238 when called with parameters (to set), and the value of the field when called
1239 with no arguments. This module subclasses Class::Accessor in order to provide
1240 the same mk_accessors interface.")
1241 (license (package-license perl))))
1242
1243 (define-public perl-class-accessor-grouped
1244 (package
1245 (name "perl-class-accessor-grouped")
1246 (version "0.10014")
1247 (source
1248 (origin
1249 (method url-fetch)
1250 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1251 "Class-Accessor-Grouped-" version ".tar.gz"))
1252 (sha256
1253 (base32 "1fy48hx56n5kdn1gz66awg465qf34r0n5jam64x7zxh9zhzb1m9m"))))
1254 (build-system perl-build-system)
1255 (native-inputs
1256 `(("perl-module-install" ,perl-module-install)
1257 ("perl-test-exception" ,perl-test-exception)))
1258 (propagated-inputs
1259 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
1260 ("perl-module-runtime" ,perl-module-runtime)
1261 ("perl-sub-name" ,perl-sub-name)))
1262 (home-page "https://metacpan.org/release/Class-Accessor-Grouped")
1263 (synopsis "Build groups of accessors")
1264 (description "This class lets you build groups of accessors that will call
1265 different getters and setters.")
1266 (license (package-license perl))))
1267
1268 (define-public perl-class-c3
1269 (package
1270 (name "perl-class-c3")
1271 (version "0.35")
1272 (source
1273 (origin
1274 (method url-fetch)
1275 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1276 "Class-C3-" version ".tar.gz"))
1277 (sha256
1278 (base32 "0gp3czp6y0jxx4448kz37f7gdxq4vw514bvc0l98rk4glvqkq1c4"))))
1279 (build-system perl-build-system)
1280 (propagated-inputs
1281 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
1282 (home-page "https://metacpan.org/release//Class-C3")
1283 (synopsis "Pragma to use the C3 method resolution order algorithm")
1284 (description "This is pragma to change Perl 5's standard method resolution
1285 order from depth-first left-to-right (a.k.a - pre-order) to the more
1286 sophisticated C3 method resolution order.")
1287 (license (package-license perl))))
1288
1289 (define-public perl-class-c3-adopt-next
1290 (package
1291 (name "perl-class-c3-adopt-next")
1292 (version "0.14")
1293 (source
1294 (origin
1295 (method url-fetch)
1296 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1297 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
1298 (sha256
1299 (base32 "1xsbydmiskpa1qbmnf6n39cb83nlb432xgkad9kfhxnvm8jn4rw5"))))
1300 (build-system perl-build-system)
1301 (native-inputs
1302 `(("perl-module-build" ,perl-module-build)
1303 ("perl-module-build-tiny" ,perl-module-build-tiny)
1304 ("perl-test-exception" ,perl-test-exception)))
1305 (propagated-inputs
1306 `(("perl-list-moreutils" ,perl-list-moreutils)
1307 ("perl-mro-compat" ,perl-mro-compat)))
1308 (home-page "https://metacpan.org/release/Class-C3-Adopt-NEXT")
1309 (synopsis "Drop-in replacement for NEXT")
1310 (description "This module is intended as a drop-in replacement for NEXT,
1311 supporting the same interface, but using Class::C3 to do the hard work.")
1312 (license (package-license perl))))
1313
1314 (define-public perl-class-c3-componentised
1315 (package
1316 (name "perl-class-c3-componentised")
1317 (version "1.001002")
1318 (source
1319 (origin
1320 (method url-fetch)
1321 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1322 "Class-C3-Componentised-" version ".tar.gz"))
1323 (sha256
1324 (base32 "14wn1g45z3b5apqq7dcai5drk01hfyqydsd2m6hsxzhyvi3b2l9h"))))
1325 (build-system perl-build-system)
1326 (native-inputs
1327 `(("perl-module-install" ,perl-module-install)
1328 ("perl-test-exception" ,perl-test-exception)))
1329 (propagated-inputs
1330 `(("perl-class-c3" ,perl-class-c3)
1331 ("perl-class-inspector" ,perl-class-inspector)
1332 ("perl-mro-compat" ,perl-mro-compat)))
1333 (home-page "https://metacpan.org/release/Class-C3-Componentised")
1334 (synopsis "Load mix-ins or components to your C3-based class")
1335 (description "This module will inject base classes to your module using
1336 the Class::C3 method resolution order.")
1337 (license (package-license perl))))
1338
1339 (define-public perl-class-data-inheritable
1340 (package
1341 (name "perl-class-data-inheritable")
1342 (version "0.08")
1343 (source
1344 (origin
1345 (method url-fetch)
1346 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
1347 "Class-Data-Inheritable-" version ".tar.gz"))
1348 (sha256
1349 (base32
1350 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
1351 (build-system perl-build-system)
1352 (home-page "https://metacpan.org/release/Class-Data-Inheritable")
1353 (synopsis "Inheritable, overridable class data")
1354 (description "Class::Data::Inheritable is for creating accessor/mutators
1355 to class data. That is, if you want to store something about your class as a
1356 whole (instead of about a single object). This data is then inherited by your
1357 subclasses and can be overridden.")
1358 (license (package-license perl))))
1359
1360 (define-public perl-class-date
1361 (package
1362 (name "perl-class-date")
1363 (version "1.1.17")
1364 (source
1365 (origin
1366 (method url-fetch)
1367 (uri (string-append "mirror://cpan/authors/id/Y/YA/YANICK/"
1368 "Class-Date-" version ".tar.gz"))
1369 (sha256
1370 (base32 "1h7dfjxkpqbfymrf1bn7699i4fx6pbv5wvvi5zszfr8sqqkax1yf"))))
1371 (build-system perl-build-system)
1372 (arguments `(#:tests? #f)) ;timezone tests in chroot
1373 (home-page "https://metacpan.org/release/Class-Date")
1374 (synopsis "Class for easy date and time manipulation")
1375 (description "This module provides a general-purpose date and datetime
1376 type for perl.")
1377 (license (package-license perl))))
1378
1379 (define-public perl-class-errorhandler
1380 (package
1381 (name "perl-class-errorhandler")
1382 (version "0.04")
1383 (source (origin
1384 (method url-fetch)
1385 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1386 "Class-ErrorHandler-" version ".tar.gz"))
1387 (sha256
1388 (base32
1389 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
1390 (build-system perl-build-system)
1391 (home-page "https://metacpan.org/release/Class-ErrorHandler")
1392 (synopsis "Base class for error handling")
1393 (description
1394 "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
1395 enough to be used as the base class for a variety of OO classes. Subclasses inherit
1396 its two error-handling methods, error and errstr, to communicate error messages back
1397 to the calling program.")
1398 (license (package-license perl))))
1399
1400 (define-public perl-class-factory-util
1401 (package
1402 (name "perl-class-factory-util")
1403 (version "1.7")
1404 (source
1405 (origin
1406 (method url-fetch)
1407 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1408 "Class-Factory-Util-" version ".tar.gz"))
1409 (sha256
1410 (base32
1411 "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
1412 (build-system perl-build-system)
1413 (native-inputs `(("perl-module-build" ,perl-module-build)))
1414 (home-page "https://metacpan.org/release/Class-Factory-Util")
1415 (synopsis "Utility methods for factory classes")
1416 (description "This module exports methods useful for factory classes.")
1417 (license (package-license perl))))
1418
1419 (define-public perl-class-inspector
1420 (package
1421 (name "perl-class-inspector")
1422 (version "1.36")
1423 (source
1424 (origin
1425 (method url-fetch)
1426 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
1427 "Class-Inspector-" version ".tar.gz"))
1428 (sha256
1429 (base32
1430 "0kk900bp8iq7bw5jyllfb31gvf93mmp24n4x90j7qs3jlhimsafc"))))
1431 (build-system perl-build-system)
1432 (home-page "https://metacpan.org/release/Class-Inspector")
1433 (synopsis "Get information about a class and its structure")
1434 (description "Class::Inspector allows you to get information about a
1435 loaded class.")
1436 (license (package-license perl))))
1437
1438 (define-public perl-class-load
1439 (package
1440 (name "perl-class-load")
1441 (version "0.25")
1442 (source
1443 (origin
1444 (method url-fetch)
1445 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1446 "Class-Load-" version ".tar.gz"))
1447 (sha256
1448 (base32 "13sz4w8kwljhfcy7yjjgrgg5hv3wccr8n3iqarhyb5sjkdvzlj1a"))))
1449 (build-system perl-build-system)
1450 (native-inputs
1451 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1452 ("perl-test-fatal" ,perl-test-fatal)
1453 ("perl-test-needs" ,perl-test-needs)
1454 ("perl-test-without-module" ,perl-test-without-module)))
1455 (propagated-inputs
1456 `(("perl-package-stash" ,perl-package-stash)
1457 ("perl-data-optlist" ,perl-data-optlist)
1458 ("perl-namespace-clean" ,perl-namespace-clean)
1459 ("perl-module-runtime" ,perl-module-runtime)
1460 ("perl-module-implementation" ,perl-module-implementation)))
1461 (home-page "https://metacpan.org/release/Class-Load")
1462 (synopsis "Working (require \"Class::Name\") and more")
1463 (description "\"require EXPR\" only accepts Class/Name.pm style module
1464 names, not Class::Name. For that, this module provides \"load_class
1465 'Class::Name'\".")
1466 (license (package-license perl))))
1467
1468 (define-public perl-class-load-xs
1469 (package
1470 (name "perl-class-load-xs")
1471 (version "0.10")
1472 (source
1473 (origin
1474 (method url-fetch)
1475 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1476 "Class-Load-XS-" version ".tar.gz"))
1477 (sha256
1478 (base32
1479 "1ldd4a306hjagm5v9j0gjg8y7km4v3q45bxxqmj2bzgb6vsjrhjv"))))
1480 (build-system perl-build-system)
1481 (native-inputs
1482 `(("perl-test-fatal" ,perl-test-fatal)
1483 ("perl-test-needs" ,perl-test-needs)
1484 ("perl-test-without-module" ,perl-test-without-module)))
1485 (inputs `(("perl-class-load" ,perl-class-load)))
1486 (home-page "https://metacpan.org/release/Class-Load-XS")
1487 (synopsis "XS implementation of parts of Class::Load")
1488 (description "This module provides an XS implementation for portions of
1489 Class::Load.")
1490 (license license:artistic2.0)))
1491
1492 (define-public perl-class-methodmaker
1493 (package
1494 (name "perl-class-methodmaker")
1495 (version "2.24")
1496 (source
1497 (origin
1498 (method url-fetch)
1499 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
1500 "class-methodmaker/Class-MethodMaker-"
1501 version ".tar.gz"))
1502 (sha256
1503 (base32
1504 "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
1505 (build-system perl-build-system)
1506 (home-page "https://metacpan.org/release/Class-MethodMaker")
1507 (synopsis "Create generic methods for OO Perl")
1508 (description "This module solves the problem of having to continually
1509 write accessor methods for your objects that perform standard tasks.")
1510 (license (package-license perl))))
1511
1512 (define-public perl-class-method-modifiers
1513 (package
1514 (name "perl-class-method-modifiers")
1515 (version "2.13")
1516 (source
1517 (origin
1518 (method url-fetch)
1519 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1520 "Class-Method-Modifiers-" version ".tar.gz"))
1521 (sha256
1522 (base32 "0qzx83mgd71hlc2m1kpw15dqsjzjq7b2cj3sdgg45a0q23vhfn5b"))))
1523 (build-system perl-build-system)
1524 (native-inputs
1525 `(("perl-test-fatal" ,perl-test-fatal)
1526 ("perl-test-needs" ,perl-test-needs)))
1527 (home-page "https://metacpan.org/release/Class-Method-Modifiers")
1528 (synopsis "Moose-like method modifiers")
1529 (description "Class::Method::Modifiers provides three modifiers:
1530 @code{before}, @code{around}, and @code{after}. @code{before} and @code{after}
1531 are run just before and after the method they modify, but can not really affect
1532 that original method. @code{around} is run in place of the original method,
1533 with a hook to easily call that original method.")
1534 (license (package-license perl))))
1535
1536 (define-public perl-class-mix
1537 (package
1538 (name "perl-class-mix")
1539 (version "0.006")
1540 (source
1541 (origin
1542 (method url-fetch)
1543 (uri (string-append
1544 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Class-Mix-"
1545 version ".tar.gz"))
1546 (sha256
1547 (base32
1548 "02vwzzqn1s24g525arbrjh9s9j0y1inp3wbr972gh51ri51zciw7"))))
1549 (build-system perl-build-system)
1550 (native-inputs
1551 `(("perl-module-build" ,perl-module-build)
1552 ("perl-test-pod" ,perl-test-pod)
1553 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1554 (propagated-inputs
1555 `(("perl-params-classify" ,perl-params-classify)))
1556 (home-page "https://metacpan.org/release/Class-Mix")
1557 (synopsis "Dynamic class mixing")
1558 (description "The @code{mix_class} function provided by this
1559 module dynamically generates anonymous classes with specified
1560 inheritance. This is useful where an incomplete class requires use of
1561 a mixin in order to become instantiable.")
1562 (license license:perl-license)))
1563
1564 (define-public perl-class-singleton
1565 (package
1566 (name "perl-class-singleton")
1567 (version "1.5")
1568 (source
1569 (origin
1570 (method url-fetch)
1571 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
1572 "Class-Singleton-" version ".tar.gz"))
1573 (sha256
1574 (base32
1575 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
1576 (build-system perl-build-system)
1577 (home-page "https://metacpan.org/release/Class-Singleton")
1578 (synopsis "Implementation of a singleton class for Perl")
1579 (description "This module implements a Singleton class from which other
1580 classes can be derived. By itself, the Class::Singleton module does very
1581 little other than manage the instantiation of a single object.")
1582 (license (package-license perl))))
1583
1584 (define-public perl-class-tiny
1585 (package
1586 (name "perl-class-tiny")
1587 (version "1.006")
1588 (source
1589 (origin
1590 (method url-fetch)
1591 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1592 "Class-Tiny-" version ".tar.gz"))
1593 (sha256
1594 (base32
1595 "0knbi1agcfc9d7fca0szvxr6335pb22pc5n648q1vrcba8qvvz1f"))))
1596 (build-system perl-build-system)
1597 (home-page "https://metacpan.org/release/Class-Tiny")
1598 (synopsis "Minimalist class construction")
1599 (description "This module offers a minimalist class construction kit. It
1600 uses no non-core modules for any recent Perl.")
1601 (license license:asl2.0)))
1602
1603 (define-public perl-class-unload
1604 (package
1605 (name "perl-class-unload")
1606 (version "0.11")
1607 (source
1608 (origin
1609 (method url-fetch)
1610 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1611 "Class-Unload-" version ".tar.gz"))
1612 (sha256
1613 (base32 "0pqa98z3ij6a3v9wkmvc8b410kv30y0xxqf0i6if3lp4lx3rgqjj"))))
1614 (build-system perl-build-system)
1615 (native-inputs
1616 `(("perl-test-requires" ,perl-test-requires)))
1617 (propagated-inputs
1618 `(("perl-class-inspector" ,perl-class-inspector)))
1619 (home-page "https://metacpan.org/release/Class-Unload")
1620 (synopsis "Unload a class")
1621 (description "Class:Unload unloads a given class by clearing out its
1622 symbol table and removing it from %INC.")
1623 (license (package-license perl))))
1624
1625 (define-public perl-class-xsaccessor
1626 (package
1627 (name "perl-class-xsaccessor")
1628 (version "1.19")
1629 (source
1630 (origin
1631 (method url-fetch)
1632 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
1633 "Class-XSAccessor-" version ".tar.gz"))
1634 (sha256
1635 (base32
1636 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
1637 (build-system perl-build-system)
1638 (home-page "https://metacpan.org/release/Class-XSAccessor")
1639 (synopsis "Generate fast XS accessors without runtime compilation")
1640 (description "Class::XSAccessor implements fast read, write, and
1641 read/write accessors in XS. Additionally, it can provide predicates such as
1642 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
1643 object. It only works with objects that are implemented as ordinary hashes.
1644 Class::XSAccessor::Array implements the same interface for objects that use
1645 arrays for their internal representation.")
1646 (license (package-license perl))))
1647
1648 (define-public perl-clone
1649 (package
1650 (name "perl-clone")
1651 (version "0.43")
1652 (source (origin
1653 (method url-fetch)
1654 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
1655 "Clone-" version ".tar.gz"))
1656 (sha256
1657 (base32
1658 "1npf5s4b90ds6lv8gn76b2w4bdh0z5ni5zk4skgc2db5d12560lr"))))
1659 (build-system perl-build-system)
1660 (synopsis "Recursively copy Perl datatypes")
1661 (description
1662 "This module provides a clone() method which makes recursive copies of
1663 nested hash, array, scalar and reference types, including tied variables and
1664 objects.")
1665 (home-page "https://metacpan.org/release/Clone")
1666 (license (package-license perl))))
1667
1668 (define-public perl-clone-choose
1669 (package
1670 (name "perl-clone-choose")
1671 (version "0.010")
1672 (source
1673 (origin
1674 (method url-fetch)
1675 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
1676 "Clone-Choose-" version ".tar.gz"))
1677 (sha256
1678 (base32
1679 "0cin2bjn5z8xhm9v4j7pwlkx88jnvz8al0njdjwyvs6fb0glh8sn"))))
1680 (build-system perl-build-system)
1681 (native-inputs
1682 `(("perl-clone" ,perl-clone)
1683 ("perl-clone-pp" ,perl-clone-pp)
1684 ("perl-test-without-module" ,perl-test-without-module)))
1685 (propagated-inputs
1686 `(("perl-module-runtime" ,perl-module-runtime)))
1687 (home-page "https://metacpan.org/release/Clone-Choose")
1688 (synopsis "Choose appropriate Perl @code{clone} utility")
1689 (description "This @code{Clone::Choose} module checks several different
1690 modules which provide a @code{clone()} function and selects an appropriate
1691 one.")
1692 (license license:perl-license)))
1693
1694 (define-public perl-clone-pp
1695 (package
1696 (name "perl-clone-pp")
1697 (version "1.08")
1698 (source
1699 (origin
1700 (method url-fetch)
1701 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/Clone-PP-"
1702 version ".tar.gz"))
1703 (sha256
1704 (base32 "0y7m25fksiavzg4xj4cm9zkz8rmnk4iqy7lm01m4nmyqlna3082p"))))
1705 (build-system perl-build-system)
1706 (home-page "https://metacpan.org/release/Clone-PP")
1707 (synopsis "Recursively copy Perl datatypes")
1708 (description "This module provides a general-purpose @code{clone} function
1709 to make deep copies of Perl data structures. It calls itself recursively to
1710 copy nested hash, array, scalar and reference types, including tied variables
1711 and objects.")
1712 (license (package-license perl))))
1713
1714 (define-public perl-common-sense
1715 (package
1716 (name "perl-common-sense")
1717 (version "3.75")
1718 (source
1719 (origin
1720 (method url-fetch)
1721 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
1722 "common-sense-" version ".tar.gz"))
1723 (sha256
1724 (base32
1725 "0zhfp8f0czg69ycwn7r6ayg6idm5kyh2ai06g5s6s07kli61qsm8"))))
1726 (build-system perl-build-system)
1727 (home-page "https://metacpan.org/release/common-sense")
1728 (synopsis "Sane defaults for Perl programs")
1729 (description "This module implements some sane defaults for Perl programs,
1730 as defined by two typical specimens of Perl coders.")
1731 (license (package-license perl))))
1732
1733 (define-public perl-conf-libconfig
1734 (package
1735 (name "perl-conf-libconfig")
1736 (version "0.100")
1737 (source
1738 (origin
1739 (method url-fetch)
1740 (uri (string-append "mirror://cpan/authors/id/C/CN/CNANGEL/"
1741 "Conf-Libconfig-" version ".tar.gz"))
1742 (sha256
1743 (base32 "0qdypqd7mx96bwdjlv13fn6p96bs4w0yv94yv94xa7z5lqkdj4rg"))))
1744 (build-system perl-build-system)
1745 (native-inputs
1746 `(("perl-extutils-pkgconfig" ,perl-extutils-pkgconfig)
1747 ("perl-test-deep" ,perl-test-deep)
1748 ("perl-test-exception" ,perl-test-exception)
1749 ("perl-test-warn" ,perl-test-warn)))
1750 (inputs
1751 `(("libconfig" ,libconfig)))
1752 (home-page "https://metacpan.org/release/Conf-Libconfig")
1753 (synopsis "Perl extension for libconfig")
1754 (description
1755 "Conf::Libconfig is a Perl interface to the libconfig configuration file
1756 library. It support scalar, array, and hash data structures just like its C/C++
1757 counterpart. It reduces the effort required to implement a configuration file
1758 parser in your Perl programme and allows sharing configuration files between
1759 languages.")
1760 (license license:bsd-3)))
1761
1762 (define-public perl-config-grammar
1763 (package
1764 (name "perl-config-grammar")
1765 (version "1.13")
1766 (source
1767 (origin
1768 (method url-fetch)
1769 (uri (string-append "mirror://cpan/authors/id/D/DS/DSCHWEI/"
1770 "Config-Grammar-" version ".tar.gz"))
1771 (sha256
1772 (base32 "1qynf5bk6mnk90nggm3z8rdz2535kmqg46s0vj93pi68r6ia7cx8"))))
1773 (build-system perl-build-system)
1774 (home-page "https://metacpan.org/release/Config-Grammar")
1775 (synopsis "Grammar-based config parser")
1776 (description
1777 "Config::Grammar is a module to parse configuration files. The
1778 configuration may consist of multiple-level sections with assignments and
1779 tabular data.")
1780 (license (package-license perl))))
1781
1782 (define-public perl-config-any
1783 (package
1784 (name "perl-config-any")
1785 (version "0.32")
1786 (source
1787 (origin
1788 (method url-fetch)
1789 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1790 "Config-Any-" version ".tar.gz"))
1791 (sha256
1792 (base32
1793 "0l31sg7dwh4dwwnql42hp7arkhcm15bhsgfg4i6xvbjzy9f2mnk8"))))
1794 (build-system perl-build-system)
1795 (propagated-inputs
1796 `(("perl-module-pluggable" ,perl-module-pluggable)))
1797 (home-page "https://metacpan.org/release/Config-Any")
1798 (synopsis "Load configuration from different file formats")
1799 (description "Config::Any provides a facility for Perl applications and
1800 libraries to load configuration data from multiple different file formats. It
1801 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1802 (license (package-license perl))))
1803
1804 (define-public perl-config-inifiles
1805 (package
1806 (name "perl-config-inifiles")
1807 (version "3.000002")
1808 (source
1809 (origin
1810 (method url-fetch)
1811 (uri (string-append "https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/"
1812 "Config-IniFiles-" version ".tar.gz"))
1813 (sha256
1814 (base32 "02dsz3inh5jwgaxmbcz8qxwgin8mkhm6vj9jyzfmm3dr5pnxcbnr"))))
1815 (build-system perl-build-system)
1816 (propagated-inputs
1817 `(("perl-module-build" ,perl-module-build)
1818 ("perl-io-stringy",perl-io-stringy)))
1819 (home-page "https://metacpan.org/pod/Config::IniFiles")
1820 (synopsis "Package for configuration files outside your Perl script")
1821 (description "This package provides a way to have readable configuration
1822 files outside your Perl script. Configurations can be imported, sections
1823 can be grouped, and settings can be accessed from a tied hash.")
1824 (license (package-license perl))))
1825
1826 (define-public perl-config-autoconf
1827 (package
1828 (name "perl-config-autoconf")
1829 (version "0.317")
1830 (source
1831 (origin
1832 (method url-fetch)
1833 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1834 "Config-AutoConf-" version ".tar.gz"))
1835 (sha256
1836 (base32
1837 "1qcwib4yaml5z2283qy5khjcydyibklsnk8zrk9wzdzc5wnv5r01"))))
1838 (build-system perl-build-system)
1839 (propagated-inputs
1840 `(("perl-capture-tiny" ,perl-capture-tiny)))
1841 (home-page "https://metacpan.org/release/Config-AutoConf")
1842 (synopsis "Module to implement some AutoConf macros in Perl")
1843 (description "Config::AutoConf is intended to provide the same
1844 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1845 (license (package-license perl))))
1846
1847 (define-public perl-config-general
1848 (package
1849 (name "perl-config-general")
1850 (version "2.63")
1851 (source
1852 (origin
1853 (method url-fetch)
1854 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1855 "Config-General-" version ".tar.gz"))
1856 (sha256
1857 (base32 "1bbg3wp0xcpj04cmm86j1x0j5968jqi5s2c87qs7dgmap1vzk6qa"))))
1858 (build-system perl-build-system)
1859 (home-page "https://metacpan.org/release/Config-General")
1860 (synopsis "Generic Config Module")
1861 (description "This module opens a config file and parses its contents for
1862 you. The format of config files supported by Config::General is inspired by
1863 the well known Apache config format and is 100% compatible with Apache
1864 configs, but you can also just use simple name/value pairs in your config
1865 files. In addition to the capabilities of an Apache config file it supports
1866 some enhancements such as here-documents, C-style comments, and multiline
1867 options.")
1868 (license (package-license perl))))
1869
1870 (define-public perl-config-gitlike
1871 (package
1872 (name "perl-config-gitlike")
1873 (version "1.17")
1874 (source
1875 (origin
1876 (method url-fetch)
1877 (uri (string-append
1878 "mirror://cpan/authors/id/A/AL/ALEXMV/Config-GitLike-"
1879 version
1880 ".tar.gz"))
1881 (sha256
1882 (base32
1883 "0kp57na9mk6yni693h2fwap6l1ndbcj97l4860r9vkzx2jw0fjk7"))))
1884 (build-system perl-build-system)
1885 (native-inputs
1886 `(("perl-test-exception" ,perl-test-exception)))
1887 (propagated-inputs
1888 `(("perl-moo" ,perl-moo)
1889 ("perl-moox-types-mooselike" ,perl-moox-types-mooselike)))
1890 (home-page "https://metacpan.org/release/Config-GitLike")
1891 (synopsis "Parse Git style configuration files")
1892 (description
1893 "This module handles parsing, modifying and creating configuration files
1894 of the style used by the Git version control system.")
1895 (license license:perl-license)))
1896
1897 (define-public perl-config-ini
1898 (package
1899 (name "perl-config-ini")
1900 (version "0.025")
1901 (source (origin
1902 (method url-fetch)
1903 (uri (string-append
1904 "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1905 version ".tar.gz"))
1906 (sha256
1907 (base32
1908 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1909 (build-system perl-build-system)
1910 (inputs
1911 `(("perl-mixin-linewise" ,perl-mixin-linewise)
1912 ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1913 ("perl-sub-exporter" ,perl-sub-exporter)))
1914 (home-page "https://metacpan.org/release/Config-INI")
1915 (synopsis "Simple .ini-file format reader and writer")
1916 (description "@code{Config::INI} is a module that facilates the reading
1917 and writing of @code{.ini}-style configuration files.")
1918 (license (package-license perl))))
1919
1920 (define-public perl-context-preserve
1921 (package
1922 (name "perl-context-preserve")
1923 (version "0.03")
1924 (source
1925 (origin
1926 (method url-fetch)
1927 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1928 "Context-Preserve-" version ".tar.gz"))
1929 (sha256
1930 (base32
1931 "07zxgmb11bn4zj3w9g1zwbb9iv4jyk5q7hc0nv59knvv5i64m489"))))
1932 (build-system perl-build-system)
1933 (native-inputs
1934 `(("perl-test-exception" ,perl-test-exception)
1935 ("perl-test-simple" ,perl-test-simple)))
1936 (home-page "https://metacpan.org/release/Context-Preserve")
1937 (synopsis "Preserve context during subroutine call")
1938 (description "This module runs code after a subroutine call, preserving
1939 the context the subroutine would have seen if it were the last statement in
1940 the caller.")
1941 (license (package-license perl))))
1942
1943 (define-public perl-convert-binhex
1944 (package
1945 (name "perl-convert-binhex")
1946 (version "1.125")
1947 (source
1948 (origin
1949 (method url-fetch)
1950 (uri (string-append
1951 "mirror://cpan/authors/id/S/ST/STEPHEN/Convert-BinHex-"
1952 version
1953 ".tar.gz"))
1954 (sha256
1955 (base32
1956 "15v3489k179cx0fz3lix79ssjid0nhhpf6c33swpxga6pss92dai"))))
1957 (build-system perl-build-system)
1958 (native-inputs
1959 `(("perl-file-slurp" ,perl-file-slurp)
1960 ("perl-test-most" ,perl-test-most)))
1961 (home-page
1962 "https://metacpan.org/release/Convert-BinHex")
1963 (synopsis "Extract data from Macintosh BinHex files")
1964 (description
1965 "BinHex is a format for transporting files safely through electronic
1966 mail, as short-lined, 7-bit, semi-compressed data streams. This module
1967 provides a means of converting those data streams back into into binary
1968 data.")
1969 (license license:perl-license)))
1970
1971 (define-public perl-cpan-changes
1972 (package
1973 (name "perl-cpan-changes")
1974 (version "0.400002")
1975 (source
1976 (origin
1977 (method url-fetch)
1978 (uri (string-append
1979 "mirror://cpan/authors/id/H/HA/HAARG/CPAN-Changes-"
1980 version ".tar.gz"))
1981 (sha256
1982 (base32
1983 "13dy78amkhwg278sv5im0ylyskhxpfivyl2aissqqih71nlxxvh1"))))
1984 (build-system perl-build-system)
1985 (home-page "https://metacpan.org/release/CPAN-Changes")
1986 (synopsis "Read and write @file{Changes} files")
1987 (description
1988 "@code{CPAN::Changes} helps users programmatically read and write
1989 @file{Changes} files that conform to a common specification.")
1990 (license license:perl-license)))
1991
1992 (define-public perl-cpan-distnameinfo
1993 (package
1994 (name "perl-cpan-distnameinfo")
1995 (version "0.12")
1996 (source
1997 (origin
1998 (method url-fetch)
1999 (uri (string-append
2000 "mirror://cpan/authors/id/G/GB/GBARR/CPAN-DistnameInfo-"
2001 version
2002 ".tar.gz"))
2003 (sha256
2004 (base32
2005 "0d94kx596w7k328cvq4y96z1gz12hdhn3z1mklkbrb7fyzlzn91g"))))
2006 (build-system perl-build-system)
2007 (home-page "https://metacpan.org/release/CPAN-DistnameInfo")
2008 (synopsis "Extract the name and version from a distribution filename")
2009 (description
2010 "@code{CPAN::DistnameInfo} uses heuristics to extract the distribution
2011 name and version from filenames.")
2012 (license license:perl-license)))
2013
2014 (define-public perl-cpan-meta-check
2015 (package
2016 (name "perl-cpan-meta-check")
2017 (version "0.014")
2018 (source
2019 (origin
2020 (method url-fetch)
2021 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2022 "CPAN-Meta-Check-" version ".tar.gz"))
2023 (sha256
2024 (base32
2025 "07rmdbz1rbnb7w33vswn1wixlyh947sqr93xrvcph1hwzhmmg818"))))
2026 (build-system perl-build-system)
2027 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
2028 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
2029 (home-page "https://metacpan.org/release/CPAN-Meta-Check")
2030 (synopsis "Verify requirements in a CPAN::Meta object")
2031 (description "This module verifies if requirements described in a
2032 CPAN::Meta object are present.")
2033 (license (package-license perl))))
2034
2035 (define-public perl-cpanel-json-xs
2036 (package
2037 (name "perl-cpanel-json-xs")
2038 (version "4.25")
2039 (source
2040 (origin
2041 (method url-fetch)
2042 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
2043 "Cpanel-JSON-XS-" version ".tar.gz"))
2044 (sha256
2045 (base32 "061940vyj9y3rzwq47z2a3f5i5rfpa90ccz7fgz228zr7njkvfpr"))))
2046 (build-system perl-build-system)
2047 (propagated-inputs
2048 `(("perl-common-sense" ,perl-common-sense)))
2049 (home-page "https://metacpan.org/release/Cpanel-JSON-XS")
2050 (synopsis "JSON::XS for Cpanel")
2051 (description "This module converts Perl data structures to JSON and vice
2052 versa.")
2053 (license (package-license perl))))
2054
2055 (define-public perl-crypt-cbc
2056 (package
2057 (name "perl-crypt-cbc")
2058 (version "2.33")
2059 (source
2060 (origin
2061 (method url-fetch)
2062 (uri (string-append
2063 "mirror://cpan/authors/id/L/LD/LDS/Crypt-CBC-"
2064 version ".tar.gz"))
2065 (sha256
2066 (base32
2067 "0ig698lmpjz7fslnznxm0609lvlnvf4f3s370082nzycnqhxww3a"))))
2068 (build-system perl-build-system)
2069 (native-inputs
2070 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)))
2071 (home-page "https://metacpan.org/release/Crypt-CBC")
2072 (synopsis "Encrypt Data with Cipher Block Chaining Mode")
2073 (description "@code{Crypt::CBC} is a Perl-only implementation of
2074 the cryptographic Cipher Block Chaining (CBC) mode. In combination
2075 with a block cipher such as @code{Crypt::Rijndael} you can encrypt and
2076 decrypt messages of arbitrarily long length. The encrypted messages
2077 are compatible with the encryption format used by SSLeay.")
2078 (license license:perl-license)))
2079
2080 (define-public perl-crypt-des
2081 (package
2082 (name "perl-crypt-des")
2083 (version "2.07")
2084 (source
2085 (origin
2086 (method url-fetch)
2087 (uri (string-append
2088 "mirror://cpan/authors/id/D/DP/DPARIS/Crypt-DES-"
2089 version ".tar.gz"))
2090 (sha256
2091 (base32
2092 "1rypxlhpd1jc0c327aghgl9y6ls47drmpvn0a40b4k3vhfsypc9d"))))
2093 (build-system perl-build-system)
2094 (native-inputs
2095 `(("perl-crypt-cbc" ,perl-crypt-cbc)))
2096 (home-page "https://metacpan.org/release/Crypt-DES")
2097 (synopsis "DES encryption module")
2098 (description "@code{Crypt::DES} is an XS-based implementation of
2099 the DES cryptography algorithm. The module implements the
2100 @code{Crypt::CBC} interface which has blocksize, keysize, encrypt and
2101 decrypt functions.")
2102 (license license:bsd-3)))
2103
2104 (define-public perl-crypt-eksblowfish
2105 (package
2106 (name "perl-crypt-eksblowfish")
2107 (version "0.009")
2108 (source
2109 (origin
2110 (method url-fetch)
2111 (uri (string-append
2112 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Crypt-Eksblowfish-"
2113 version ".tar.gz"))
2114 (sha256
2115 (base32
2116 "0k01aw3qb2s4m1w4dqsc9cycyry1zg3wabdym4vp4421b1ni5irw"))))
2117 (build-system perl-build-system)
2118 (native-inputs
2119 `(("perl-module-build" ,perl-module-build)
2120 ("perl-test-pod" ,perl-test-pod)
2121 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2122 (propagated-inputs
2123 `(("perl-class-mix" ,perl-class-mix)))
2124 (home-page "https://metacpan.org/release/Crypt-Eksblowfish")
2125 (synopsis "The Eksblowfish block cipher")
2126 (description "Eksblowfish is a variant of the Blowfish cipher,
2127 modified to make the key setup very expensive. This doesn't make it
2128 significantly cryptographically stronger but is intended to hinder
2129 brute-force attacks. Eksblowfish is a parameterised (family-keyed)
2130 cipher. It takes a cost parameter that controls how expensive the key
2131 scheduling is. It also takes a family key, known as the \"salt\".
2132 Cost and salt parameters together define a cipher family. Within each
2133 family, the key determines the encryption function. This distribution
2134 also includes an implementation of @code{bcrypt}, the Unix crypt()
2135 password hashing algorithm based on Eksblowfish.")
2136 (license license:perl-license)))
2137
2138 (define-public perl-crypt-mysql
2139 (package
2140 (name "perl-crypt-mysql")
2141 (version "0.04")
2142 (source
2143 (origin
2144 (method url-fetch)
2145 (uri (string-append
2146 "mirror://cpan/authors/id/I/IK/IKEBE/Crypt-MySQL-"
2147 version ".tar.gz"))
2148 (sha256
2149 (base32
2150 "1qyx6ha13r0rh80ldv5wy2bq2pa74igwh8817xlapsfgxymdzswk"))))
2151 (build-system perl-build-system)
2152 (native-inputs
2153 `(("perl-module-build" ,perl-module-build)
2154 ("perl-dbd-mysql" ,perl-dbd-mysql)))
2155 (propagated-inputs
2156 `(("perl-digest-sha1" ,perl-digest-sha1)))
2157 (home-page "https://metacpan.org/release/Crypt-MySQL")
2158 (synopsis "Emulate the MySQL PASSWORD() function")
2159 (description "@code{Crypt::MySQL} emulates the MySQL PASSWORD()
2160 function. The module does not depend on an interface to the MySQL
2161 database server. This enables the comparison of encrypted passwords
2162 without the need for a real MySQL environment.")
2163 (license license:perl-license)))
2164
2165 (define-public perl-crypt-passwdmd5
2166 (package
2167 (name "perl-crypt-passwdmd5")
2168 (version "1.40")
2169 (source
2170 (origin
2171 (method url-fetch)
2172 (uri (string-append
2173 "mirror://cpan/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-"
2174 version ".tgz"))
2175 (sha256
2176 (base32
2177 "0j0r74f18nk63phddzqbf7wqma2ci4p4bxvrwrxsy0aklbp6lzdp"))))
2178 (build-system perl-build-system)
2179 (native-inputs
2180 `(("perl-module-build" ,perl-module-build)))
2181 (home-page "https://metacpan.org/release/Crypt-PasswdMD5")
2182 (synopsis "Interoperable MD5-based crypt() functions")
2183 (description "@code{Crypt::PasswdMD5} provides various
2184 crypt()-compatible interfaces to the MD5-based crypt() function found
2185 in various *nixes. It is based on the implementation found on FreeBSD
2186 2.2.[56]-RELEASE.")
2187 (license license:perl-license)))
2188
2189 (define-public perl-crypt-randpasswd
2190 (package
2191 (name "perl-crypt-randpasswd")
2192 (version "0.06")
2193 (source
2194 (origin
2195 (method url-fetch)
2196 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2197 "Crypt-RandPasswd-" version ".tar.gz"))
2198 (sha256
2199 (base32
2200 "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
2201 (build-system perl-build-system)
2202 (home-page "https://metacpan.org/release/Crypt-RandPasswd")
2203 (synopsis "Random password generator")
2204 (description "Crypt::RandPasswd provides three functions that can be used
2205 to generate random passwords, constructed from words, letters, or characters.
2206 This code is a Perl implementation of the Automated Password Generator
2207 standard, like the program described in \"A Random Word Generator For
2208 Pronounceable Passwords\". This code is a re-engineering of the program
2209 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
2210 Password Generator\".")
2211 (license (package-license perl))))
2212
2213 (define-public perl-crypt-rijndael
2214 (package
2215 (name "perl-crypt-rijndael")
2216 (version "1.16")
2217 (source
2218 (origin
2219 (method url-fetch)
2220 (uri (string-append
2221 "mirror://cpan/authors/id/L/LE/LEONT/Crypt-Rijndael-"
2222 version ".tar.gz"))
2223 (sha256
2224 (base32 "0h2dr1bd15y0sipxsdh1k4hx5bccywn15haj0xpjmf0471g0hh35"))))
2225 (build-system perl-build-system)
2226 (home-page "https://metacpan.org/release/Crypt-Rijndael")
2227 (synopsis "Crypt::CBC compliant Rijndael encryption module")
2228 (description "This module implements the Rijndael cipher which has
2229 been selected as the Advanced Encryption Standard. The keysize for
2230 Rijndael is 32 bytes. The blocksize is 16 bytes (128 bits). The
2231 supported encryption modes are:
2232
2233 @itemize
2234 @item @code{MODE_CBC}---Cipher Block Chaining
2235 @item @code{MODE_CFB}---Cipher feedback
2236 @item @code{MODE_CTR}---Counter mode
2237 @item @code{MODE_ECB}---Electronic cookbook mode
2238 @item @code{MODE_OFB}---Output feedback
2239 @end itemize")
2240 (license license:gpl3)))
2241
2242 (define-public perl-crypt-rc4
2243 (package
2244 (name "perl-crypt-rc4")
2245 (version "2.02")
2246 (source
2247 (origin
2248 (method url-fetch)
2249 (uri (string-append
2250 "mirror://cpan/authors/id/S/SI/SIFUKURT/Crypt-RC4-"
2251 version
2252 ".tar.gz"))
2253 (sha256
2254 (base32
2255 "1sp099cws0q225h6j4y68hmfd1lnv5877gihjs40f8n2ddf45i2y"))))
2256 (build-system perl-build-system)
2257 (home-page "https://metacpan.org/release//Crypt-RC4")
2258 (synopsis "Perl implementation of the RC4 encryption algorithm")
2259 (description "A pure Perl implementation of the RC4 algorithm.")
2260 (license (package-license perl))))
2261
2262 (define-public perl-crypt-unixcrypt_xs
2263 (package
2264 (name "perl-crypt-unixcrypt_xs")
2265 (version "0.11")
2266 (source
2267 (origin
2268 (method url-fetch)
2269 (uri (string-append
2270 "mirror://cpan/authors/id/B/BO/BORISZ/Crypt-UnixCrypt_XS-"
2271 version ".tar.gz"))
2272 (sha256
2273 (base32
2274 "1ajg3x6kwxy4x9p3nw1j36qjxpjvdpi9wkca5gfd86y9q8939sv2"))))
2275 (build-system perl-build-system)
2276 (home-page "https://metacpan.org/release/Crypt-UnixCrypt_XS")
2277 (synopsis "XS interface for a portable traditional crypt function")
2278 (description "@code{Crypt::UnixCrypt_XS} implements the DES-based
2279 Unix @code{crypt} function. For those who need to construct
2280 non-standard variants of @code{crypt}, the various building blocks
2281 used in @code{crypt} are also supplied separately.")
2282 ;; Files in the 'fcrypt' directory are covered by a BSD licence.
2283 (license (list license:perl-license license:bsd-3))))
2284
2285 (define-public perl-cwd-guard
2286 (package
2287 (name "perl-cwd-guard")
2288 (version "0.05")
2289 (source (origin
2290 (method url-fetch)
2291 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
2292 "Cwd-Guard-" version ".tar.gz"))
2293 (sha256
2294 (base32
2295 "0xwf4rmii55k3lp19mpbh00mbgby7rxdk2lk84148bjhp6i7rz3s"))))
2296 (build-system perl-build-system)
2297 (native-inputs
2298 `(("perl-module-build" ,perl-module-build)
2299 ("perl-test-requires" ,perl-test-requires)))
2300 (home-page "https://metacpan.org/release/Cwd-Guard")
2301 (synopsis "Temporarily change working directory")
2302 (description
2303 "@code{Cwd::Guard} changes the current directory using a limited scope.
2304 It returns to the previous working directory when the object is destroyed.")
2305 (license (package-license perl))))
2306
2307 (define-public perl-czplib
2308 (package
2309 (name "perl-czplib")
2310 (version "1.0.5")
2311 (source
2312 (origin
2313 (method url-fetch)
2314 (uri (string-append "mirror://sourceforge/czplib/czplib.v"
2315 version ".tgz"))
2316 (sha256
2317 (base32
2318 "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
2319 (modules '((guix build utils)))
2320 (snippet
2321 '(begin
2322 ;; Remove .git directory
2323 (delete-file-recursively ".git")
2324 #t))))
2325 (build-system perl-build-system)
2326 (arguments
2327 `(#:phases
2328 (modify-phases %standard-phases
2329 (delete 'configure)
2330 (delete 'build)
2331 (replace
2332 'install
2333 (lambda* (#:key outputs #:allow-other-keys)
2334 (copy-recursively "."
2335 (string-append (assoc-ref outputs "out")
2336 "/lib/perl5/site_perl/"
2337 ,(package-version perl)))
2338 #t)))))
2339 (home-page "https://sourceforge.net/projects/czplib/")
2340 (synopsis "Library for genomic analysis")
2341 (description "Chaolin Zhang's Perl Library (czplib) contains assorted
2342 functions and data structures for processing and analysing genomic and
2343 bioinformatics data.")
2344 (license license:gpl3+)))
2345
2346 (define-public perl-data
2347 (package
2348 (name "perl-data")
2349 (version "0.002009")
2350 (source
2351 (origin
2352 (method url-fetch)
2353 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTP/"
2354 "Data-Perl-" version ".tar.gz"))
2355 (sha256
2356 (base32
2357 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2358 (build-system perl-build-system)
2359 (native-inputs
2360 `(("perl-test-deep" ,perl-test-deep)
2361 ("perl-test-output" ,perl-test-output)
2362 ("perl-test-fatal" ,perl-test-fatal)))
2363 (inputs
2364 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
2365 ("perl-list-moreutils" ,perl-list-moreutils)
2366 ("perl-module-runtime" ,perl-module-runtime)
2367 ("perl-role-tiny" ,perl-role-tiny)
2368 ("perl-strictures" ,perl-strictures)))
2369 (home-page "https://metacpan.org/release/Data-Perl")
2370 (synopsis "Base classes wrapping fundamental Perl data types")
2371 (description "Collection of classes that wrap fundamental data types that
2372 exist in Perl. These classes and methods as they exist today are an attempt
2373 to mirror functionality provided by Moose's Native Traits. One important
2374 thing to note is all classes currently do no validation on constructor
2375 input.")
2376 (license (package-license perl))))
2377
2378 (define-public perl-data-compare
2379 (package
2380 (name "perl-data-compare")
2381 (version "1.27")
2382 (source
2383 (origin
2384 (method url-fetch)
2385 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
2386 "Data-Compare-" version ".tar.gz"))
2387 (sha256
2388 (base32 "1gg8rqbv3x6a1lrpabv6vnlab53zxmpwz2ygad9fcx4gygqj12l1"))))
2389 (build-system perl-build-system)
2390 (propagated-inputs
2391 `(("perl-clone" ,perl-clone)
2392 ("perl-file-find-rule" ,perl-file-find-rule)))
2393 (home-page "https://metacpan.org/release/Data-Compare")
2394 (synopsis "Compare Perl data structures")
2395 (description "This module compares arbitrary data structures to see if
2396 they are copies of each other.")
2397 (license (package-license perl))))
2398
2399 (define-public perl-data-entropy
2400 (package
2401 (name "perl-data-entropy")
2402 (version "0.007")
2403 (source
2404 (origin
2405 (method url-fetch)
2406 (uri (string-append
2407 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Entropy-"
2408 version ".tar.gz"))
2409 (sha256
2410 (base32
2411 "1r176jjzir2zg5kidx85f7vzi6jsw7ci9vd4kvbr9183lfhw8496"))))
2412 (build-system perl-build-system)
2413 (native-inputs
2414 `(("perl-module-build" ,perl-module-build)
2415 ("perl-test-pod" ,perl-test-pod)
2416 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2417 (propagated-inputs
2418 `(("perl-crypt-rijndael" ,perl-crypt-rijndael)
2419 ("perl-data-float" ,perl-data-float)
2420 ("perl-http-lite" ,perl-http-lite)
2421 ("perl-params-classify" ,perl-params-classify)))
2422 (home-page "https://metacpan.org/release/Data-Entropy")
2423 (synopsis "Entropy (randomness) management")
2424 (description "@code{Data::Entropy} provides modules relating to
2425 the generation and use of entropy. The Data::Entropy::Source class
2426 manages the entropy coming from a particular source. This class acts
2427 as a layer over a raw entropy source, which may be a normal I/O handle
2428 or a special-purpose class. The Data::Entropy::RawSource::* classes
2429 provide fundamental sources of entropy. The sources specially
2430 supported are an OS-supplied entropy collector, downloads from servers
2431 on the Internet, and cryptographic fake entropy. The
2432 Data::Entropy::Algorithms module contains a collection of fundamental
2433 algorithms that use entropy. There are random number generators and
2434 functions to shuffle arrays.")
2435 (license license:perl-license)))
2436
2437 (define-public perl-data-integer
2438 (package
2439 (name "perl-data-integer")
2440 (version "0.006")
2441 (source
2442 (origin
2443 (method url-fetch)
2444 (uri (string-append
2445 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Integer-"
2446 version ".tar.gz"))
2447 (sha256
2448 (base32
2449 "0m53zxhx9sn49yqh7azlpyy9m65g54v8cd2ha98y77337gg7xdv3"))))
2450 (build-system perl-build-system)
2451 (native-inputs
2452 `(("perl-module-build" ,perl-module-build)
2453 ("perl-test-pod" ,perl-test-pod)
2454 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2455 (home-page "https://metacpan.org/release/Data-Integer")
2456 (synopsis "Details of the native integer data type")
2457 (description "This module is about the native integer numerical
2458 data type. A native integer is one of the types of datum that can
2459 appear in the numeric part of a Perl scalar. This module supplies
2460 constants describing the native integer type. Both signed and
2461 unsigned representations are handled.")
2462 (license license:perl-license)))
2463
2464 (define-public perl-data-uniqid
2465 (package
2466 (name "perl-data-uniqid")
2467 (version "0.12")
2468 (source
2469 (origin
2470 (method url-fetch)
2471 (uri (string-append "mirror://cpan/authors/id/M/MW/MWX/Data-Uniqid-"
2472 version ".tar.gz"))
2473 (sha256
2474 (base32
2475 "1jsc6acmv97pzsvx1fqywz4qvxxpp7kwmb78ygyqpsczkfj9p4dn"))))
2476 (build-system perl-build-system)
2477 (home-page "https://metacpan.org/release/Data-Uniqid")
2478 (synopsis "Perl extension for generating unique identifiers")
2479 (description "@code{Data::Uniqid} provides three simple routines for
2480 generating unique ids. These ids are coded with a Base62 system to make them
2481 short and handy (e.g. to use it as part of a URL).")
2482 (license (package-license perl))))
2483
2484 (define-public perl-data-dump
2485 (package
2486 (name "perl-data-dump")
2487 (version "1.23")
2488 (source
2489 (origin
2490 (method url-fetch)
2491 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2492 "Data-Dump-" version ".tar.gz"))
2493 (sha256
2494 (base32
2495 "0r9ba52b7p8nnn6nw0ygm06lygi8g68piri78jmlqyrqy5gb0lxg"))))
2496 (build-system perl-build-system)
2497 (home-page "https://metacpan.org/release/Data-Dump")
2498 (synopsis "Pretty printing of data structures")
2499 (description "This module provide functions that takes a list of values as
2500 their argument and produces a string as its result. The string contains Perl
2501 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
2502 (license (package-license perl))))
2503
2504 (define-public perl-data-dumper
2505 (package
2506 (name "perl-data-dumper")
2507 (version "2.173")
2508 (source
2509 (origin
2510 (method url-fetch)
2511 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
2512 "Data-Dumper-" version ".tar.gz"))
2513 (sha256
2514 (base32
2515 "1yknbp86md6mjlhbs1lzz6mals3iyizndgiij58qx61hjfrhhxk9"))))
2516 (build-system perl-build-system)
2517 (home-page "https://metacpan.org/release/Data-Dumper")
2518 (synopsis "Convert data structures to strings")
2519 (description "Given a list of scalars or reference variables,
2520 @code{Data::Dumper} writes out their contents in Perl syntax. The references
2521 can also be objects. The content of each variable is output in a single Perl
2522 statement. It handles self-referential structures correctly.")
2523 (license license:perl-license)))
2524
2525 (define-public perl-data-dumper-concise
2526 (package
2527 (name "perl-data-dumper-concise")
2528 (version "2.023")
2529 (source
2530 (origin
2531 (method url-fetch)
2532 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2533 "Data-Dumper-Concise-" version ".tar.gz"))
2534 (sha256
2535 (base32
2536 "0lsqbl1mxhkj0qnjfa1jrvx8wwbyi81bgwfyj1si6cdg7h8jzhm6"))))
2537 (build-system perl-build-system)
2538 (home-page "https://metacpan.org/release/Data-Dumper-Concise")
2539 (synopsis "Concise data dumper")
2540 (description "Data::Dumper::Concise provides a dumper with Less
2541 indentation and newlines plus sub deparsing.")
2542 (license (package-license perl))))
2543
2544 (define-public perl-data-float
2545 (package
2546 (name "perl-data-float")
2547 (version "0.013")
2548 (source
2549 (origin
2550 (method url-fetch)
2551 (uri (string-append
2552 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Data-Float-"
2553 version ".tar.gz"))
2554 (sha256
2555 (base32
2556 "12ji4yf3nc965rqqgfhr96w7irpm6n1g15nivfxvhc49hlym5cg2"))))
2557 (build-system perl-build-system)
2558 (native-inputs
2559 `(("perl-module-build" ,perl-module-build)
2560 ("perl-test-pod" ,perl-test-pod)
2561 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
2562 (home-page "https://metacpan.org/release/Data-Float")
2563 (synopsis "Details of the floating point data type")
2564 (description "@code{Data::Float} is about the native floating
2565 point numerical data type. A floating point number is one of the
2566 types of datum that can appear in the numeric part of a Perl scalar.
2567 This module supplies constants describing the native floating point
2568 type, classification functions and functions to manipulate floating
2569 point values at a low level.")
2570 (license license:perl-license)))
2571
2572 (define-public perl-data-optlist
2573 (package
2574 (name "perl-data-optlist")
2575 (version "0.110")
2576 (source
2577 (origin
2578 (method url-fetch)
2579 (uri (string-append
2580 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
2581 version ".tar.gz"))
2582 (sha256
2583 (base32
2584 "1hzmgr2imdg1fc3hmwx0d56fhsdfyrgmgx7jb4jkyiv6575ifq9n"))))
2585 (build-system perl-build-system)
2586 (propagated-inputs
2587 `(("perl-sub-install" ,perl-sub-install)
2588 ("perl-params-util" ,perl-params-util)))
2589 (home-page "https://metacpan.org/release/Data-OptList")
2590 (synopsis "Parse and validate simple name/value option pairs")
2591 (description
2592 "Data::OptList provides a simple syntax for name/value option pairs.")
2593 (license (package-license perl))))
2594
2595 (define-public perl-data-page
2596 (package
2597 (name "perl-data-page")
2598 (version "2.03")
2599 (source
2600 (origin
2601 (method url-fetch)
2602 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2603 "Data-Page-" version ".tar.gz"))
2604 (sha256
2605 (base32 "12rxrr2b11qjk0c437cisw2kfqkafw1awcng09cv6yhzglb55yif"))))
2606 (build-system perl-build-system)
2607 (native-inputs
2608 `(("perl-module-build" ,perl-module-build)
2609 ("perl-test-exception" ,perl-test-exception)))
2610 (propagated-inputs
2611 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
2612 (home-page "https://metacpan.org/release/Data-Page")
2613 (synopsis "Help when paging through sets of results")
2614 (description "When searching through large amounts of data, it is often
2615 the case that a result set is returned that is larger than we want to display
2616 on one page. This results in wanting to page through various pages of data.
2617 The maths behind this is unfortunately fiddly, hence this module.")
2618 (license (package-license perl))))
2619
2620 (define-public perl-data-perl
2621 (package
2622 (name "perl-data-perl")
2623 (version "0.002009")
2624 (source
2625 (origin
2626 (method url-fetch)
2627 (uri (string-append
2628 "mirror://cpan/authors/id/M/MA/MATTP/Data-Perl-"
2629 version
2630 ".tar.gz"))
2631 (sha256
2632 (base32
2633 "12vgqdjbfqf2qfg21x22wg88xnwxfbw2ki3qzcb3nb0chwjj4axn"))))
2634 (build-system perl-build-system)
2635 (native-inputs
2636 `(("perl-test-deep" ,perl-test-deep)
2637 ("perl-test-fatal" ,perl-test-fatal)
2638 ("perl-test-output" ,perl-test-output)))
2639 (inputs
2640 `(("perl-class-method-modifiers"
2641 ,perl-class-method-modifiers)
2642 ("perl-module-runtime" ,perl-module-runtime)
2643 ("perl-role-tiny" ,perl-role-tiny)
2644 ("perl-strictures" ,perl-strictures)))
2645 (propagated-inputs
2646 `(("perl-list-moreutils" ,perl-list-moreutils)))
2647 (home-page
2648 "https://metacpan.org/release/Data-Perl")
2649 (synopsis "Base classes wrapping fundamental Perl data types")
2650 (description
2651 "@code{Data::Perl} is a container class for the following classes:
2652 @itemize
2653 @item @code{Data::Perl::Collection::Hash}
2654 @item @code{Data::Perl::Collection::Array}
2655 @item @code{Data::Perl::String}
2656 @item @code{Data::Perl::Number}
2657 @item @code{Data::Perl::Counter}
2658 @item @code{Data::Perl::Bool}
2659 @item @code{Data::Perl::Code}
2660 @end itemize")
2661 (license license:perl-license)))
2662
2663 (define-public perl-data-printer
2664 (package
2665 (name "perl-data-printer")
2666 (version "0.40")
2667 (source
2668 (origin
2669 (method url-fetch)
2670 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/Data-Printer-"
2671 version ".tar.gz"))
2672 (sha256
2673 (base32
2674 "0njjh8zp5afc4602jrnmg89icj7gfsil6i955ypcqxc2gl830sb0"))))
2675 (build-system perl-build-system)
2676 (propagated-inputs
2677 `(("perl-clone-pp" ,perl-clone-pp)
2678 ("perl-file-homedir" ,perl-file-homedir)
2679 ("perl-package-stash" ,perl-package-stash)
2680 ("perl-sort-naturally" ,perl-sort-naturally)))
2681 (home-page "https://metacpan.org/release/Data-Printer")
2682 (synopsis "Colored pretty-print of Perl data structures and objects")
2683 (description "Display Perl variables and objects on screen, properly
2684 formatted (to be inspected by a human).")
2685 (license (package-license perl))))
2686
2687 (define-public perl-data-record
2688 (package
2689 (name "perl-data-record")
2690 (version "0.02")
2691 (source
2692 (origin
2693 (method url-fetch)
2694 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
2695 "Data-Record-" version ".tar.gz"))
2696 (sha256
2697 (base32
2698 "1gwyhjwg4lrnfsn8wb6r8msb4yh0y4wca4mz3z120xbnl9nycshx"))))
2699 (build-system perl-build-system)
2700 (native-inputs
2701 `(("perl-test-exception" ,perl-test-exception)
2702 ("perl-module-build" ,perl-module-build)))
2703 (propagated-inputs
2704 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
2705 (home-page "https://metacpan.org/release/Data-Record")
2706 (synopsis "Conditionally split data into records")
2707 (description "This Perl module allows you to split data into records by
2708 not only specifying what you wish to split the data on, but also by specifying
2709 an \"unless\" regular expression. If the text in question matches the
2710 \"unless\" regex, it will not be split there. This allows us to do things
2711 like split on newlines unless newlines are embedded in quotes.")
2712 (license (package-license perl))))
2713
2714 (define-public perl-data-section
2715 (package
2716 (name "perl-data-section")
2717 (version "0.200007")
2718 (source
2719 (origin
2720 (method url-fetch)
2721 (uri (string-append
2722 "mirror://cpan/authors/id/R/RJ/RJBS/Data-Section-"
2723 version
2724 ".tar.gz"))
2725 (sha256
2726 (base32
2727 "1pmlxca0a8sv2jjwvhwgqavq6iwys6kf457lby4anjp3f1dpx4yd"))))
2728 (build-system perl-build-system)
2729 (native-inputs
2730 `(("perl-test-failwarnings" ,perl-test-failwarnings)))
2731 (propagated-inputs
2732 `(("perl-mro-compat" ,perl-mro-compat)
2733 ("perl-sub-exporter" ,perl-sub-exporter)))
2734 (home-page "https://metacpan.org/release/Data-Section")
2735 (synopsis "Read multiple hunks of data out of your DATA section")
2736 (description "This package provides a Perl library to read multiple hunks
2737 of data out of your DATA section.")
2738 (license (package-license perl))))
2739
2740 (define-public perl-data-section-simple
2741 (package
2742 (name "perl-data-section-simple")
2743 (version "0.07")
2744 (source
2745 (origin
2746 (method url-fetch)
2747 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2748 "Data-Section-Simple-" version ".tar.gz"))
2749 (sha256
2750 (base32 "1jx9g5sxcw0i2zkm2z895k422i49kpx0idnnvvvs36lhvgzkac0b"))))
2751 (build-system perl-build-system)
2752 (native-inputs
2753 `(("perl-test-requires" ,perl-test-requires)))
2754 (home-page "https://metacpan.org/release/Data-Section-Simple")
2755 (synopsis "Read data from __DATA__")
2756 (description
2757 "Data::Section::Simple is a simple module to extract data from __DATA__
2758 section of the file.")
2759 (license license:perl-license)))
2760
2761 (define-public perl-data-stag
2762 (package
2763 (name "perl-data-stag")
2764 (version "0.14")
2765 (source
2766 (origin
2767 (method url-fetch)
2768 (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
2769 "Data-Stag-" version ".tar.gz"))
2770 (sha256
2771 (base32
2772 "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
2773 (build-system perl-build-system)
2774 (propagated-inputs
2775 `(("perl-io-string" ,perl-io-string)))
2776 (home-page "https://metacpan.org/release/Data-Stag")
2777 (synopsis "Structured tags datastructures")
2778 (description
2779 "This module is for manipulating data as hierarchical tag/value
2780 pairs (Structured TAGs or Simple Tree AGgregates). These datastructures can
2781 be represented as nested arrays, which have the advantage of being native to
2782 Perl.")
2783 (license (package-license perl))))
2784
2785 (define-public perl-data-stream-bulk
2786 (package
2787 (name "perl-data-stream-bulk")
2788 (version "0.11")
2789 (source
2790 (origin
2791 (method url-fetch)
2792 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2793 "Data-Stream-Bulk-" version ".tar.gz"))
2794 (sha256
2795 (base32
2796 "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
2797 (build-system perl-build-system)
2798 (native-inputs
2799 `(("perl-test-requires" ,perl-test-requires)))
2800 (propagated-inputs
2801 `(("perl-moose" ,perl-moose)
2802 ("perl-namespace-clean" ,perl-namespace-clean)
2803 ("perl-path-class" ,perl-path-class)
2804 ("perl-sub-exporter" ,perl-sub-exporter)))
2805 (home-page "https://metacpan.org/release/Data-Stream-Bulk")
2806 (synopsis "N at a time iteration API")
2807 (description "This module tries to find middle ground between one at a
2808 time and all at once processing of data sets. The purpose of this module is
2809 to avoid the overhead of implementing an iterative api when this isn't
2810 necessary, without breaking forward compatibility in case that becomes
2811 necessary later on.")
2812 (license (package-license perl))))
2813
2814 (define-public perl-data-tumbler
2815 (package
2816 (name "perl-data-tumbler")
2817 (version "0.010")
2818 (source
2819 (origin
2820 (method url-fetch)
2821 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2822 "Data-Tumbler-" version ".tar.gz"))
2823 (sha256
2824 (base32 "15pgvmf7mf9fxsg2l4l88xwvs41218d0bvawhlk15sx06qqp0kwb"))))
2825 (build-system perl-build-system)
2826 (native-inputs
2827 `(("perl-test-most" ,perl-test-most)))
2828 (propagated-inputs
2829 `(("perl-file-homedir" ,perl-file-homedir)))
2830 (home-page "https://metacpan.org/release/Data-Tumbler")
2831 (synopsis "Dynamic generation of nested combinations of variants")
2832 (description "Data::Tumbler - Dynamic generation of nested combinations of
2833 variants.")
2834 (license (package-license perl))))
2835
2836 (define-public perl-data-visitor
2837 (package
2838 (name "perl-data-visitor")
2839 (version "0.30")
2840 (source
2841 (origin
2842 (method url-fetch)
2843 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2844 "Data-Visitor-" version ".tar.gz"))
2845 (sha256
2846 (base32
2847 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
2848 (build-system perl-build-system)
2849 (native-inputs
2850 `(("perl-test-requires" ,perl-test-requires)))
2851 (propagated-inputs
2852 `(("perl-class-load" ,perl-class-load)
2853 ("perl-moose" ,perl-moose)
2854 ("perl-namespace-clean" ,perl-namespace-clean)
2855 ("perl-task-weaken" ,perl-task-weaken)
2856 ("perl-tie-toobject" ,perl-tie-toobject)))
2857 (home-page "https://metacpan.org/release/Data-Visitor")
2858 (synopsis "Visitor style traversal of Perl data structures")
2859 (description "This module is a simple visitor implementation for Perl
2860 values. It has a main dispatcher method, visit, which takes a single perl
2861 value and then calls the methods appropriate for that value. It can
2862 recursively map (cloning as necessary) or just traverse most structures, with
2863 support for per-object behavior, circular structures, visiting tied
2864 structures, and all ref types (hashes, arrays, scalars, code, globs).")
2865 (license (package-license perl))))
2866
2867 (define-public perl-date-calc
2868 (package
2869 (name "perl-date-calc")
2870 (version "6.4")
2871 (source
2872 (origin
2873 (method url-fetch)
2874 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2875 "Date-Calc-" version ".tar.gz"))
2876 (sha256
2877 (base32
2878 "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
2879 (build-system perl-build-system)
2880 (propagated-inputs
2881 `(("perl-bit-vector" ,perl-bit-vector)
2882 ("perl-carp-clan" ,perl-carp-clan)))
2883 (home-page "https://metacpan.org/release/Date-Calc")
2884 (synopsis "Gregorian calendar date calculations")
2885 (description "This package consists of a Perl module for date calculations
2886 based on the Gregorian calendar, thereby complying with all relevant norms and
2887 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
2888 applicable).")
2889 (license (package-license perl))))
2890
2891 (define-public perl-date-calc-xs
2892 (package
2893 (name "perl-date-calc-xs")
2894 (version "6.4")
2895 (source
2896 (origin
2897 (method url-fetch)
2898 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
2899 "Date-Calc-XS-" version ".tar.gz"))
2900 (sha256
2901 (base32
2902 "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
2903 (build-system perl-build-system)
2904 (propagated-inputs
2905 `(("perl-bit-vector" ,perl-bit-vector)
2906 ("perl-carp-clan" ,perl-carp-clan)
2907 ("perl-date-calc" ,perl-date-calc)))
2908 (home-page "https://metacpan.org/release/Date-Calc-XS")
2909 (synopsis "XS wrapper for Date::Calc")
2910 (description "Date::Calc::XS is an XS wrapper and C library plug-in for
2911 Date::Calc.")
2912 (license (list (package-license perl) license:lgpl2.0+))))
2913
2914 (define-public perl-date-manip
2915 (package
2916 (name "perl-date-manip")
2917 (version "6.82")
2918 (source
2919 (origin
2920 (method url-fetch)
2921 (uri (string-append "mirror://cpan/authors/id/S/SB/SBECK/"
2922 "Date-Manip-" version ".tar.gz"))
2923 (sha256
2924 (base32 "0ak72kpydwhq2z03mhdfwm3ganddzb8gawzh6crpsjvb9kwvr5ps"))))
2925 (build-system perl-build-system)
2926 (arguments
2927 ;; Tests would require tzdata for timezone information, but tzdata is in
2928 ;; (gnu packages base) which would create a circular dependency. TODO:
2929 ;; Maybe put this package elsewhere so we can turn on tests.
2930 '(#:tests? #f))
2931 (home-page "https://metacpan.org/release/Date-Manip")
2932 (synopsis "Date manipulation routines")
2933 (description "Date::Manip is a series of modules for common date/time
2934 operations, such as comparing two times, determining a date a given amount of
2935 time from another, or parsing international times.")
2936 (license (package-license perl))))
2937
2938 (define-public perl-date-simple
2939 (package
2940 (name "perl-date-simple")
2941 (version "3.03")
2942 (source
2943 (origin
2944 (method url-fetch)
2945 (uri (string-append "mirror://cpan/authors/id/I/IZ/IZUT/"
2946 "Date-Simple-" version ".tar.gz"))
2947 (sha256
2948 (base32
2949 "016x17r9wi6ffdc4idwirzd1sxqcb4lmq5fn2aiq25nf2iir5899"))))
2950 (build-system perl-build-system)
2951 (home-page "https://metacpan.org/release/Date-Simple")
2952 (synopsis "Simple date handling")
2953 (description "Dates are complex enough without times and timezones. This
2954 module may be used to create simple date objects. It handles validation,
2955 interval arithmetic, and day-of-week calculation. It does not deal with
2956 hours, minutes, seconds, and time zones.")
2957 ;; Can be used with either license.
2958 (license (list (package-license perl) license:gpl2+))))
2959
2960 (define-public perl-datetime
2961 (package
2962 (name "perl-datetime")
2963 (version "1.52")
2964 (source
2965 (origin
2966 (method url-fetch)
2967 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2968 "DateTime-" version ".tar.gz"))
2969 (sha256
2970 (base32 "1z1xpifh2kpyw7rlc8ivg9rl0qmabjq979gjp0s9agdjf9hqp0k7"))))
2971 (build-system perl-build-system)
2972 (native-inputs
2973 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2974 ("perl-module-build" ,perl-module-build)
2975 ("perl-test-fatal" ,perl-test-fatal)
2976 ("perl-test-warnings" ,perl-test-warnings)))
2977 (propagated-inputs
2978 `(("perl-datetime-locale" ,perl-datetime-locale)
2979 ("perl-datetime-timezone" ,perl-datetime-timezone)
2980 ("perl-file-sharedir" ,perl-file-sharedir)
2981 ("perl-params-validate" ,perl-params-validate)
2982 ("perl-try-tiny" ,perl-try-tiny)))
2983 (home-page "https://metacpan.org/release/DateTime")
2984 (synopsis "Date and time object for Perl")
2985 (description "DateTime is a class for the representation of date/time
2986 combinations. It represents the Gregorian calendar, extended backwards in
2987 time before its creation (in 1582).")
2988 (license license:artistic2.0)))
2989
2990 (define-public perl-datetime-calendar-julian
2991 (package
2992 (name "perl-datetime-calendar-julian")
2993 (version "0.102")
2994 (source
2995 (origin
2996 (method url-fetch)
2997 (uri (string-append "mirror://cpan/authors/id/W/WY/WYANT/"
2998 "DateTime-Calendar-Julian-" version ".tar.gz"))
2999 (sha256
3000 (base32 "0j95dhma66spjyb04zi6rwy7l33hibnrx02mn0znd9m89aiq52s6"))))
3001 (build-system perl-build-system)
3002 ;; Only needed for tests
3003 (native-inputs
3004 `(("perl-datetime" ,perl-datetime)))
3005 (home-page "https://metacpan.org/release/DateTime-Calendar-Julian")
3006 (synopsis "Dates in the Julian calendar")
3007 (description "This package is a companion module to @code{DateTime.pm}.
3008 It implements the Julian calendar. It supports everything that
3009 @code{DateTime.pm} supports and more: about one day per century more, to be
3010 precise.")
3011 (license (package-license perl))))
3012
3013 (define-public perl-datetime-set
3014 (package
3015 (name "perl-datetime-set")
3016 (version "0.3900")
3017 (source
3018 (origin
3019 (method url-fetch)
3020 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
3021 "DateTime-Set-" version ".tar.gz"))
3022 (sha256
3023 (base32
3024 "0ih9pi6myg5i26hjpmpzqn58s0yljl2qxdd6gzpy9zda4hwirx4l"))))
3025 (build-system perl-build-system)
3026 (native-inputs
3027 `(("perl-module-build" ,perl-module-build)))
3028 (propagated-inputs
3029 `(("perl-datetime" ,perl-datetime)
3030 ("perl-params-validate" ,perl-params-validate)
3031 ("perl-set-infinite" ,perl-set-infinite)))
3032 (home-page "https://metacpan.org/release/DateTime-Set")
3033 (synopsis "DateTime set objects")
3034 (description "The DateTime::Set module provides a date/time sets
3035 implementation. It allows, for example, the generation of groups of dates,
3036 like \"every wednesday\", and then find all the dates matching that pattern,
3037 within a time range.")
3038 (license (package-license perl))))
3039
3040 (define-public perl-datetime-event-ical
3041 (package
3042 (name "perl-datetime-event-ical")
3043 (version "0.13")
3044 (source
3045 (origin
3046 (method url-fetch)
3047 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
3048 "DateTime-Event-ICal-" version ".tar.gz"))
3049 (sha256
3050 (base32
3051 "1skmykxbrf98ldi72d5s1v6228gfdr5iy4y0gpl0xwswxy247njk"))))
3052 (build-system perl-build-system)
3053 (propagated-inputs
3054 `(("perl-datetime" ,perl-datetime)
3055 ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
3056 (home-page "https://metacpan.org/release/DateTime-Event-ICal")
3057 (synopsis "DateTime rfc2445 recurrences")
3058 (description "This module provides convenience methods that let you easily
3059 create DateTime::Set objects for RFC 2445 style recurrences.")
3060 (license (package-license perl))))
3061
3062 (define-public perl-datetime-event-recurrence
3063 (package
3064 (name "perl-datetime-event-recurrence")
3065 (version "0.19")
3066 (source
3067 (origin
3068 (method url-fetch)
3069 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
3070 "DateTime-Event-Recurrence-" version ".tar.gz"))
3071 (sha256
3072 (base32
3073 "19dms2vg9hvfx80p85m8gkn2ww0yxjrjn8qsr9k7f431lj4qfh7r"))))
3074 (build-system perl-build-system)
3075 (propagated-inputs
3076 `(("perl-datetime" ,perl-datetime)
3077 ("perl-datetime-set" ,perl-datetime-set)))
3078 (home-page "https://metacpan.org/release/DateTime-Event-Recurrence")
3079 (synopsis "DateTime::Set extension for basic recurrences")
3080 (description "This module provides convenience methods that let you easily
3081 create DateTime::Set objects for various recurrences, such as \"once a month\"
3082 or \"every day\". You can also create more complicated recurrences, such as
3083 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
3084 (license (package-license perl))))
3085
3086 (define-public perl-datetime-format-builder
3087 (package
3088 (name "perl-datetime-format-builder")
3089 (version "0.82")
3090 (source
3091 (origin
3092 (method url-fetch)
3093 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3094 "DateTime-Format-Builder-" version ".tar.gz"))
3095 (sha256
3096 (base32
3097 "18qw5rn1qbji3iha8gmpgldbjv9gvn97j9d5cp57fb4r5frawgrq"))))
3098 (build-system perl-build-system)
3099 (propagated-inputs
3100 `(("perl-class-factory-util" ,perl-class-factory-util)
3101 ("perl-datetime" ,perl-datetime)
3102 ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
3103 ("perl-params-validate" ,perl-params-validate)))
3104 (home-page "https://metacpan.org/release/DateTime-Format-Builder")
3105 (synopsis "Create DateTime parser classes and objects")
3106 (description "DateTime::Format::Builder creates DateTime parsers. Many
3107 string formats of dates and times are simple and just require a basic regular
3108 expression to extract the relevant information. Builder provides a simple way
3109 to do this without writing reams of structural code.")
3110 (license license:artistic2.0)))
3111
3112 (define-public perl-datetime-format-flexible
3113 (package
3114 (name "perl-datetime-format-flexible")
3115 (version "0.32")
3116 (source
3117 (origin
3118 (method url-fetch)
3119 (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
3120 "DateTime-Format-Flexible-" version ".tar.gz"))
3121 (sha256
3122 (base32 "1vnq3a8bwhidcv3z9cvcmfiq2qa84hikr993ffr19fw7nbzbk9sh"))))
3123 (build-system perl-build-system)
3124 (native-inputs
3125 `(("perl-test-exception" ,perl-test-exception)
3126 ("perl-test-nowarnings" ,perl-test-nowarnings)
3127 ("perl-test-mocktime" ,perl-test-mocktime)))
3128 (propagated-inputs
3129 `(("perl-datetime" ,perl-datetime)
3130 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3131 ("perl-datetime-timezone" ,perl-datetime-timezone)
3132 ("perl-list-moreutils" ,perl-list-moreutils)
3133 ("perl-module-pluggable" ,perl-module-pluggable)))
3134 (home-page "https://metacpan.org/release/DateTime-Format-Flexible")
3135 (synopsis "Parse date and time strings")
3136 (description "DateTime::Format::Flexible attempts to take any string you
3137 give it and parse it into a DateTime object.")
3138 (license (package-license perl))))
3139
3140 (define-public perl-datetime-format-ical
3141 (package
3142 (name "perl-datetime-format-ical")
3143 (version "0.09")
3144 (source
3145 (origin
3146 (method url-fetch)
3147 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3148 "DateTime-Format-ICal-" version ".tar.gz"))
3149 (sha256
3150 (base32
3151 "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
3152 (build-system perl-build-system)
3153 (native-inputs
3154 `(("perl-module-build" ,perl-module-build)))
3155 (propagated-inputs
3156 `(("perl-datetime" ,perl-datetime)
3157 ("perl-datetime-event-ical" ,perl-datetime-event-ical)
3158 ("perl-datetime-set" ,perl-datetime-set)
3159 ("perl-datetime-timezone" ,perl-datetime-timezone)
3160 ("perl-params-validate" ,perl-params-validate)))
3161 (home-page "https://metacpan.org/release/DateTime-Format-ICal")
3162 (synopsis "Parse and format iCal datetime and duration strings")
3163 (description "This module understands the ICal date/time and duration
3164 formats, as defined in RFC 2445. It can be used to parse these formats in
3165 order to create the appropriate objects.")
3166 (license (package-license perl))))
3167
3168 (define-public perl-datetime-format-iso8601
3169 (package
3170 (name "perl-datetime-format-iso8601")
3171 (version "0.08")
3172 (source
3173 (origin
3174 (method url-fetch)
3175 (uri (string-append
3176 "mirror://cpan/authors/id/J/JH/JHOBLITT/DateTime-Format-ISO8601-"
3177 version ".tar.gz"))
3178 (sha256
3179 (base32
3180 "1syccqd5jlwms8v78ksnf68xijzl97jky5vbwhnyhxi5gvgfx8xk"))))
3181 (build-system perl-build-system)
3182 (native-inputs
3183 `(("perl-module-build" ,perl-module-build)))
3184 (propagated-inputs
3185 `(("perl-datetime" ,perl-datetime)
3186 ("perl-datetime-format-builder" ,perl-datetime-format-builder)
3187 ("perl-file-find-rule" ,perl-file-find-rule)
3188 ("perl-test-distribution" ,perl-test-distribution)
3189 ("perl-test-pod" ,perl-test-pod)))
3190 (home-page "https://metacpan.org/release/DateTime-Format-ISO8601")
3191 (synopsis "Parse ISO8601 date and time formats")
3192 (description "@code{DateTime::Format::ISO8601} is a DateTime
3193 extension that parses almost all ISO8601 date and time formats.")
3194 (license license:perl-license)))
3195
3196 (define-public perl-datetime-format-natural
3197 (package
3198 (name "perl-datetime-format-natural")
3199 (version "1.06")
3200 (source
3201 (origin
3202 (method url-fetch)
3203 (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
3204 "DateTime-Format-Natural-" version ".tar.gz"))
3205 (sha256
3206 (base32 "1n68b5hnw4n55q554v7y4ffwiypz6rk40mh0r550fxwv69bvyky0"))))
3207 (build-system perl-build-system)
3208 (native-inputs
3209 `(("perl-module-build" ,perl-module-build)
3210 ("perl-module-util" ,perl-module-util)
3211 ("perl-test-mocktime" ,perl-test-mocktime)))
3212 (propagated-inputs
3213 `(("perl-boolean" ,perl-boolean)
3214 ("perl-clone" ,perl-clone)
3215 ("perl-date-calc" ,perl-date-calc)
3216 ("perl-date-calc-xs" ,perl-date-calc-xs)
3217 ("perl-datetime" ,perl-datetime)
3218 ("perl-datetime-timezone" ,perl-datetime-timezone)
3219 ("perl-list-moreutils" ,perl-list-moreutils)
3220 ("perl-params-validate" ,perl-params-validate)))
3221 (home-page "https://metacpan.org/release/DateTime-Format-Natural")
3222 (synopsis "Machine-readable date/time with natural parsing")
3223 (description "DateTime::Format::Natural takes a string with a human
3224 readable date/time and creates a machine readable one by applying natural
3225 parsing logic.")
3226 (license (package-license perl))))
3227
3228 (define-public perl-datetime-format-strptime
3229 (package
3230 (name "perl-datetime-format-strptime")
3231 (version "1.77")
3232 (source
3233 (origin
3234 (method url-fetch)
3235 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3236 "DateTime-Format-Strptime-" version ".tar.gz"))
3237 (sha256
3238 (base32 "0jiy2yc9h9932ykb8x2l1j3ff8ms3p4426m947r5clygis1kr91g"))))
3239 (build-system perl-build-system)
3240 (propagated-inputs
3241 `(("perl-datetime" ,perl-datetime)
3242 ("perl-datetime-locale" ,perl-datetime-locale)
3243 ("perl-datetime-timezone" ,perl-datetime-timezone)
3244 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3245 ("perl-params-validate" ,perl-params-validate)
3246 ("perl-sub-name" ,perl-sub-name)
3247 ("perl-test-warnings" ,perl-test-warnings)))
3248 (home-page "https://metacpan.org/release/DateTime-Format-Strptime")
3249 (synopsis "Parse and format strp and strf time patterns")
3250 (description "This module implements most of `strptime(3)`, the POSIX
3251 function that is the reverse of `strftime(3)`, for `DateTime`. While
3252 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
3253 takes a string and a pattern and returns the `DateTime` object associated.")
3254 (license license:artistic2.0)))
3255
3256 (define-public perl-datetime-locale
3257 (package
3258 (name "perl-datetime-locale")
3259 (version "1.23")
3260 (source
3261 (origin
3262 (method url-fetch)
3263 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3264 "DateTime-Locale-" version ".tar.gz"))
3265 (sha256
3266 (base32
3267 "05f0jchminv5g2nrvsx5v1ihc5919fzzhh4f82dxi5ns8bkq2nis"))))
3268 (build-system perl-build-system)
3269 (native-inputs
3270 `(("perl-file-sharedir" ,perl-file-sharedir)
3271 ("perl-ipc-system-simple" ,perl-ipc-system-simple)
3272 ("perl-test-file-sharedir-dist" ,perl-test-file-sharedir-dist)
3273 ("perl-test-warnings" ,perl-test-warnings)
3274 ("perl-test-requires" ,perl-test-requires)
3275 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3276 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
3277 ("perl-cpan-meta-check" ,perl-cpan-meta-check)
3278 ("perl-module-build" ,perl-module-build)))
3279 (propagated-inputs
3280 `(("perl-list-moreutils" ,perl-list-moreutils)
3281 ("perl-params-validationcompiler" ,perl-params-validationcompiler)))
3282 (home-page "https://metacpan.org/release/DateTime-Locale")
3283 (synopsis "Localization support for DateTime.pm")
3284 (description "The DateTime::Locale modules provide localization data for
3285 the DateTime.pm class.")
3286 (license (package-license perl))))
3287
3288 (define-public perl-datetime-timezone
3289 (package
3290 (name "perl-datetime-timezone")
3291 (version "2.23")
3292 (source
3293 (origin
3294 (method url-fetch)
3295 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3296 "DateTime-TimeZone-" version ".tar.gz"))
3297 (sha256
3298 (base32
3299 "0kz5kz47awf2bhb85xx5rbajkr093ipm2d2vkhqs8lqq0f305r3a"))))
3300 (build-system perl-build-system)
3301 (arguments
3302 '(#:phases
3303 (modify-phases %standard-phases
3304 (add-after 'unpack 'patch-tzdata
3305 (lambda* (#:key inputs #:allow-other-keys)
3306 (substitute* "lib/DateTime/TimeZone/Local/Unix.pm"
3307 (("our \\$ZoneinfoDir = '\\/usr\\/share\\/zoneinfo';")
3308 (string-append "our $ZoneinfoDir = '"
3309 (assoc-ref inputs "tzdata") "/share/zoneinfo"
3310 "';")))
3311 #t)))))
3312 (native-inputs
3313 `(("perl-test-fatal" ,perl-test-fatal)
3314 ("perl-test-requires" ,perl-test-requires)))
3315 (inputs
3316 `(("tzdata" ,tzdata)))
3317 (propagated-inputs
3318 `(("perl-class-singleton" ,perl-class-singleton)
3319 ("perl-list-allutils" ,perl-list-allutils)
3320 ("perl-module-runtime" ,perl-module-runtime)
3321 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
3322 ("perl-params-validationcompiler" ,perl-params-validationcompiler)
3323 ("perl-try-tiny" ,perl-try-tiny)))
3324 (home-page "https://metacpan.org/release/DateTime-TimeZone")
3325 (synopsis "Time zone object for Perl")
3326 (description "This class is the base class for all time zone objects. A
3327 time zone is represented internally as a set of observances, each of which
3328 describes the offset from GMT for a given time period. Note that without the
3329 DateTime module, this module does not do much. It's primary interface is
3330 through a DateTime object, and most users will not need to directly use
3331 DateTime::TimeZone methods.")
3332 (license (package-license perl))))
3333
3334 (define-public perl-datetimex-easy
3335 (package
3336 (name "perl-datetimex-easy")
3337 (version "0.089")
3338 (source
3339 (origin
3340 (method url-fetch)
3341 (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
3342 "DateTimeX-Easy-" version ".tar.gz"))
3343 (sha256
3344 (base32
3345 "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
3346 (build-system perl-build-system)
3347 (native-inputs
3348 `(("perl-test-most" ,perl-test-most)))
3349 (propagated-inputs
3350 `(("perl-datetime" ,perl-datetime)
3351 ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
3352 ("perl-datetime-format-ical" ,perl-datetime-format-ical)
3353 ("perl-datetime-format-natural" ,perl-datetime-format-natural)
3354 ("perl-timedate" ,perl-timedate)))
3355 (home-page "https://metacpan.org/release/DateTimeX-Easy")
3356 (synopsis "Parse date/time strings")
3357 (description "DateTimeX::Easy uses a variety of DateTime::Format packages
3358 to create DateTime objects, with some custom tweaks to smooth out the rough
3359 edges (mainly concerning timezone detection and selection).")
3360 (license (package-license perl))))
3361
3362 (define-public perl-datetime-format-mail
3363 (package
3364 (name "perl-datetime-format-mail")
3365 (version "0.403")
3366 (source (origin
3367 (method url-fetch)
3368 (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
3369 "DateTime-Format-Mail-" version ".tar.gz"))
3370 (sha256
3371 (base32
3372 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
3373 (build-system perl-build-system)
3374 (inputs
3375 `(("perl-datetime" ,perl-datetime)
3376 ("perl-params-validate" ,perl-params-validate)))
3377 (home-page "https://metacpan.org/release/DateTime-Format-Mail")
3378 (synopsis "Convert between DateTime and RFC2822/822 formats")
3379 (description "RFCs 2822 and 822 specify date formats to be used by email.
3380 This module parses and emits such dates.")
3381 (license (package-license perl))))
3382
3383 (define-public perl-datetime-format-w3cdtf
3384 (package
3385 (name "perl-datetime-format-w3cdtf")
3386 (version "0.07")
3387 (source (origin
3388 (method url-fetch)
3389 (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
3390 "DateTime-Format-W3CDTF-" version ".tar.gz"))
3391 (sha256
3392 (base32
3393 "0s32lb1k80p3b3sb7w234zgxnrmadrwbcg41lhaal7dz3dk2p839"))))
3394 (build-system perl-build-system)
3395 (inputs
3396 `(("perl-datetime" ,perl-datetime)))
3397 (native-inputs
3398 `(("perl-test-pod" ,perl-test-pod)
3399 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3400 (home-page "https://metacpan.org/release/DateTime-Format-W3CDTF")
3401 (synopsis "Parse and format W3CDTF datetime strings")
3402 (description
3403 "This module understands the W3CDTF date/time format, an ISO 8601 profile,
3404 defined at https://www.w3.org/TR/NOTE-datetime. This format is the native date
3405 format of RSS 1.0. It can be used to parse these formats in order to create
3406 the appropriate objects.")
3407 (license (package-license perl))))
3408
3409 (define-public perl-devel-callchecker
3410 (package
3411 (name "perl-devel-callchecker")
3412 (version "0.008")
3413 (source
3414 (origin
3415 (method url-fetch)
3416 (uri (string-append
3417 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Devel-CallChecker-"
3418 version ".tar.gz"))
3419 (sha256
3420 (base32
3421 "1p0ij2k2i81zhl7064h9ghld1w5xy2zsbghkpdzm2hjryl5lwn2x"))))
3422 (build-system perl-build-system)
3423 (native-inputs
3424 `(("perl-module-build" ,perl-module-build)
3425 ("perl-test-pod" ,perl-test-pod)
3426 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3427 (propagated-inputs
3428 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
3429 ("perl-dynaloader-functions" ,perl-dynaloader-functions)))
3430 (home-page "https://metacpan.org/release/Devel-CallChecker")
3431 (synopsis "Custom op checking attached to subroutines")
3432 (description "This module makes some new features of the Perl
3433 5.14.0 C API available to XS modules running on older versions of
3434 Perl. The features are centred around the function
3435 @code{cv_set_call_checker}, which allows XS code to attach a magical
3436 annotation to a Perl subroutine, resulting in resolvable calls to that
3437 subroutine being mutated at compile time by arbitrary C code. This
3438 module makes @code{cv_set_call_checker} and several supporting
3439 functions available.")
3440 (license license:perl-license)))
3441
3442 (define-public perl-devel-caller
3443 (package
3444 (name "perl-devel-caller")
3445 (version "2.06")
3446 (source
3447 (origin
3448 (method url-fetch)
3449 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3450 "Devel-Caller-" version ".tar.gz"))
3451 (sha256
3452 (base32
3453 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
3454 (build-system perl-build-system)
3455 (propagated-inputs
3456 `(("perl-padwalker" ,perl-padwalker)))
3457 (home-page "https://metacpan.org/release/Devel-Caller")
3458 (synopsis "Meatier version of caller")
3459 (description "Devel::Caller provides meatier version of caller.")
3460 (license (package-license perl))))
3461
3462 (define-public perl-devel-checkbin
3463 (package
3464 (name "perl-devel-checkbin")
3465 (version "0.04")
3466 (source
3467 (origin
3468 (method url-fetch)
3469 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
3470 "Devel-CheckBin-" version ".tar.gz"))
3471 (sha256
3472 (base32
3473 "1r735yzgvsxkj4m6ks34xva5m21cfzp9qiis2d4ivv99kjskszqm"))))
3474 (build-system perl-build-system)
3475 (native-inputs `(("perl-module-build" ,perl-module-build)))
3476 (home-page "https://metacpan.org/release/Devel-CheckBin")
3477 (synopsis "Check that a command is available")
3478 (description "Devel::CheckBin is a perl module that checks whether a
3479 particular command is available.")
3480 (license (package-license perl))))
3481
3482 (define-public perl-devel-checklib
3483 (package
3484 (name "perl-devel-checklib")
3485 (version "1.14")
3486 (source
3487 (origin
3488 (method url-fetch)
3489 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTN/Devel-CheckLib-"
3490 version ".tar.gz"))
3491 (sha256
3492 (base32 "15621qh5gaan1sgmk9y9svl70nm8viw17x5h1kf0zknkk8lmw77j"))))
3493 (build-system perl-build-system)
3494 (native-inputs
3495 `(("perl-capture-tiny" ,perl-capture-tiny)
3496 ("perl-mock-config" ,perl-mock-config)))
3497 (home-page "https://metacpan.org/release/Devel-CheckLib")
3498 (synopsis "Check that a library is available")
3499 (description
3500 "@code{Devel::CheckLib} is a Perl module that checks whether a particular
3501 C library and its headers are available. You can also check for the presence of
3502 particular functions in a library, or even that those functions return
3503 particular results.")
3504 (license license:perl-license)))
3505
3506 (define-public perl-devel-checkcompiler
3507 (package
3508 (name "perl-devel-checkcompiler")
3509 (version "0.07")
3510 (source (origin
3511 (method url-fetch)
3512 (uri (string-append "mirror://cpan/authors/id/S/SY/SYOHEX/"
3513 "Devel-CheckCompiler-" version ".tar.gz"))
3514 (sha256
3515 (base32
3516 "1db973a4dbyknjxq608hywil5ai6vplnayshqxrd7m5qnjbpd2vn"))))
3517 (build-system perl-build-system)
3518 (native-inputs
3519 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
3520 (home-page "https://metacpan.org/release/Devel-CheckCompiler")
3521 (synopsis "Check compiler availability")
3522 (description "@code{Devel::CheckCompiler} is a tiny module to check
3523 whether a compiler is available. It can test for a C99 compiler, or
3524 you can tell it to compile a C source file with optional linker flags.")
3525 (license (package-license perl))))
3526
3527 (define-public perl-devel-cycle
3528 (package
3529 (name "perl-devel-cycle")
3530 (version "1.12")
3531 (source
3532 (origin
3533 (method url-fetch)
3534 (uri (string-append
3535 "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-"
3536 version
3537 ".tar.gz"))
3538 (sha256
3539 (base32
3540 "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx"))))
3541 (build-system perl-build-system)
3542 (home-page
3543 "https://metacpan.org/release/Devel-Cycle")
3544 (synopsis "Find memory cycles in objects")
3545 (description
3546 "@code{Devel::Cycle} This is a tool for finding circular references in
3547 objects and other types of references. Because of Perl's reference-count
3548 based memory management, circular references will cause memory leaks.")
3549 (license license:perl-license)))
3550
3551 (define-public perl-devel-globaldestruction
3552 (package
3553 (name "perl-devel-globaldestruction")
3554 (version "0.14")
3555 (source
3556 (origin
3557 (method url-fetch)
3558 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3559 "Devel-GlobalDestruction-" version ".tar.gz"))
3560 (sha256
3561 (base32
3562 "1aslj6myylsvzr0vpqry1cmmvzbmpbdcl4v9zrl18ccik7rabf1l"))))
3563 (build-system perl-build-system)
3564 (propagated-inputs
3565 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
3566 (home-page "https://metacpan.org/release/Devel-GlobalDestruction")
3567 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
3568 (description "Devel::GlobalDestruction provides a function returning the
3569 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
3570 (license (package-license perl))))
3571
3572 (define-public perl-devel-hide
3573 (package
3574 (name "perl-devel-hide")
3575 (version "0.0010")
3576 (source
3577 (origin
3578 (method url-fetch)
3579 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/Devel-Hide-"
3580 version ".tar.gz"))
3581 (sha256
3582 (base32 "10jyv9nmv513hs75rls5yx2xn82513xnnhjir3dxiwgb1ykfyvvm"))))
3583 (build-system perl-build-system)
3584 (propagated-inputs
3585 `(("perl-test-pod" ,perl-test-pod)
3586 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3587 (home-page "https://metacpan.org/release/Devel-Hide")
3588 (synopsis "Forces the unavailability of specified Perl modules (for testing)")
3589 (description "Given a list of Perl modules/filenames, this module makes
3590 @code{require} and @code{use} statements fail (no matter whether the specified
3591 files/modules are installed or not).")
3592 (license (package-license perl))))
3593
3594 (define-public perl-devel-leak
3595 (package
3596 (name "perl-devel-leak")
3597 (version "0.03")
3598 (source
3599 (origin
3600 (method url-fetch)
3601 (uri (string-append "mirror://cpan/authors/id/N/NI/NI-S/"
3602 "Devel-Leak-" version ".tar.gz"))
3603 (sha256
3604 (base32
3605 "0lkj2xwc3lhxv7scl43r8kfmls4am0b98sqf5vmf7d72257w6hkg"))))
3606 (build-system perl-build-system)
3607 (home-page "https://metacpan.org/release/Devel-Leak")
3608 (synopsis "Utility for looking for perl objects that are not reclaimed")
3609 (description
3610 "This module provides a basic way to discover if a piece of perl code is
3611 allocating perl data and not releasing them again.")
3612 (license license:perl-license)))
3613
3614 (define-public perl-devel-lexalias
3615 (package
3616 (name "perl-devel-lexalias")
3617 (version "0.05")
3618 (source
3619 (origin
3620 (method url-fetch)
3621 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
3622 "Devel-LexAlias-" version ".tar.gz"))
3623 (sha256
3624 (base32
3625 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
3626 (build-system perl-build-system)
3627 (propagated-inputs
3628 `(("perl-devel-caller" ,perl-devel-caller)))
3629 (home-page "https://metacpan.org/release/Devel-LexAlias")
3630 (synopsis "Alias lexical variables")
3631 (description "Devel::LexAlias provides the ability to alias a lexical
3632 variable in a subroutines scope to one of your choosing.")
3633 (license (package-license perl))))
3634
3635 (define-public perl-devel-overloadinfo
3636 (package
3637 (name "perl-devel-overloadinfo")
3638 (version "0.005")
3639 (source
3640 (origin
3641 (method url-fetch)
3642 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
3643 "Devel-OverloadInfo-" version ".tar.gz"))
3644 (sha256
3645 (base32
3646 "1rx6g8pyhi7lx6z130b7vlf8syzrq92w9ky8mpw4d6bwlkzy5zcb"))))
3647 (build-system perl-build-system)
3648 (native-inputs
3649 `(("perl-test-fatal" ,perl-test-fatal)))
3650 (propagated-inputs
3651 `(("perl-package-stash" ,perl-package-stash)
3652 ("perl-sub-identify" ,perl-sub-identify)
3653 ("perl-mro-compat" ,perl-mro-compat)))
3654 (home-page "https://metacpan.org/release/Devel-OverloadInfo")
3655 (synopsis "Introspect overloaded operators")
3656 (description "Devel::OverloadInfo returns information about overloaded
3657 operators for a given class (or object), including where in the inheritance
3658 hierarchy the overloads are declared and where the code implementing it is.")
3659 (license (package-license perl))))
3660
3661 (define-public perl-devel-partialdump
3662 (package
3663 (name "perl-devel-partialdump")
3664 (version "0.18")
3665 (source
3666 (origin
3667 (method url-fetch)
3668 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3669 "Devel-PartialDump-" version ".tar.gz"))
3670 (sha256
3671 (base32
3672 "0i1khiyi4h4h8vfwn7xip5c53z2hb2rk6407f3csvrdsiibvy53q"))))
3673 (build-system perl-build-system)
3674 (native-inputs
3675 `(("perl-module-build-tiny" ,perl-module-build-tiny)
3676 ("perl-test-warn" ,perl-test-warn)
3677 ("perl-test-simple" ,perl-test-simple)))
3678 (propagated-inputs
3679 `(("perl-class-tiny" ,perl-class-tiny)
3680 ("perl-sub-exporter" ,perl-sub-exporter)
3681 ("perl-namespace-clean" ,perl-namespace-clean)))
3682 (home-page "https://metacpan.org/release/Devel-PartialDump")
3683 (synopsis "Partial dumping of data structures")
3684 (description "This module is a data dumper optimized for logging of
3685 arbitrary parameters.")
3686 (license (package-license perl))))
3687
3688 (define-public perl-devel-stacktrace
3689 (package
3690 (name "perl-devel-stacktrace")
3691 (version "2.04")
3692 (source
3693 (origin
3694 (method url-fetch)
3695 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3696 "Devel-StackTrace-" version ".tar.gz"))
3697 (sha256
3698 (base32 "0mb8bngjq7s3kbh95h3ig4p3jfb156c4r0d53z344gbxaknh6g6d"))))
3699 (build-system perl-build-system)
3700 (home-page "https://metacpan.org/release/Devel-StackTrace")
3701 (synopsis "Object representing a stack trace")
3702 (description "The Devel::StackTrace module contains two classes,
3703 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
3704 information that can be retrieved via Perl's caller() function, as well as
3705 providing a simple interface to this data.")
3706 (license license:artistic2.0)))
3707
3708 (define-public perl-devel-stacktrace-ashtml
3709 (package
3710 (name "perl-devel-stacktrace-ashtml")
3711 (version "0.15")
3712 (source
3713 (origin
3714 (method url-fetch)
3715 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
3716 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
3717 (sha256
3718 (base32
3719 "0iri5nb2lb76qv5l9z0vjpfrq5j2fyclkd64kh020bvy37idp0v2"))))
3720 (build-system perl-build-system)
3721 (propagated-inputs
3722 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
3723 (home-page "https://metacpan.org/release/Devel-StackTrace-AsHTML")
3724 (synopsis "Displays stack trace in HTML")
3725 (description "Devel::StackTrace::AsHTML adds as_html method to
3726 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
3727 snippet context and function parameters. If you call it on an instance of
3728 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
3729 each stack frame.")
3730 (license (package-license perl))))
3731
3732 (define-public perl-devel-symdump
3733 (package
3734 (name "perl-devel-symdump")
3735 (version "2.18")
3736 (source
3737 (origin
3738 (method url-fetch)
3739 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
3740 "Devel-Symdump-" version ".tar.gz"))
3741 (sha256
3742 (base32
3743 "1h3n0w23camhj20a97nw7v40rqa7xcxx8vkn2qjjlngm0yhq2vw2"))))
3744 (build-system perl-build-system)
3745 (home-page "https://metacpan.org/release/Devel-Symdump")
3746 (synopsis "Dump symbol names or the symbol table")
3747 (description "Devel::Symdump provides access to the perl symbol table.")
3748 (license (package-license perl))))
3749
3750 (define-public perl-digest-crc
3751 (package
3752 (name "perl-digest-crc")
3753 (version "0.22")
3754 (source
3755 (origin
3756 (method url-fetch)
3757 (uri (string-append
3758 "mirror://cpan/authors/id/O/OL/OLIMAUL/Digest-CRC-"
3759 version ".2.tar.gz"))
3760 (sha256
3761 (base32
3762 "1jvqcyrbi11cj3vlfc9sq2g6rv9caizyjkjqsksvmxn6zgvm0aqi"))))
3763 (build-system perl-build-system)
3764 (home-page "https://metacpan.org/release/Digest-CRC")
3765 (synopsis "Generic CRC functions")
3766 (description "The @code{Digest::CRC} module calculates CRC sums of
3767 all sorts. It contains wrapper functions with the correct parameters
3768 for CRC-CCITT, CRC-16 and CRC-32.")
3769 (license license:public-domain)))
3770
3771 (define-public perl-digest-hmac
3772 (package
3773 (name "perl-digest-hmac")
3774 (version "1.04")
3775 (source
3776 (origin
3777 (method url-fetch)
3778 (uri (string-append "mirror://cpan/authors/id/A/AR/ARODLAND/"
3779 "Digest-HMAC-" version ".tar.gz"))
3780 (sha256
3781 (base32 "1m4fn0w3hb4vn7k5kja508a5hjmcrm28zhdpjkbl8p17m9b83g6n"))))
3782 (build-system perl-build-system)
3783 (home-page "https://metacpan.org/release/Digest-HMAC")
3784 (synopsis "Keyed-Hashing for Message Authentication")
3785 (description "The Digest::HMAC module follows the common Digest::
3786 interface for the RFC 2104 HMAC mechanism.")
3787 (license (package-license perl))))
3788
3789 (define-public perl-digest-md4
3790 (package
3791 (name "perl-digest-md4")
3792 (version "1.9")
3793 (source
3794 (origin
3795 (method url-fetch)
3796 (uri (string-append
3797 "mirror://cpan/authors/id/M/MI/MIKEM/DigestMD4/Digest-MD4-"
3798 version ".tar.gz"))
3799 (sha256
3800 (base32
3801 "19ma1hmvgiznq95ngzvm6v4dfxc9zmi69k8iyfcg6w14lfxi0lb6"))))
3802 (build-system perl-build-system)
3803 (home-page "https://metacpan.org/release/Digest-MD4")
3804 (synopsis "Interface to the MD4 Algorithm")
3805 (description "The @code{Digest::MD4} module allows you to use the
3806 RSA Data Security Inc.@: MD4 Message Digest algorithm from within Perl
3807 programs. The algorithm takes as input a message of arbitrary length
3808 and produces as output a 128-bit \"fingerprint\" or \"message digest\"
3809 of the input. MD4 is described in RFC 1320.")
3810 (license license:perl-license)))
3811
3812 (define-public perl-digest-md5
3813 (package
3814 (name "perl-digest-md5")
3815 (version "2.58")
3816 (source
3817 (origin
3818 (method url-fetch)
3819 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/Digest-MD5-"
3820 version ".tar.gz"))
3821 (sha256
3822 (base32 "057psy6k7im0pr3344ny6k5rsnbqj8aizkmwgw53kbbngabh20kx"))))
3823 (build-system perl-build-system)
3824 (home-page "https://metacpan.org/release/Digest-MD5")
3825 (synopsis "Perl interface to the MD-5 algorithm")
3826 (description
3827 "The @code{Digest::MD5} module allows you to use the MD5 Message Digest
3828 algorithm from within Perl programs. The algorithm takes as
3829 input a message of arbitrary length and produces as output a
3830 128-bit \"fingerprint\" or \"message digest\" of the input.")
3831 (license (package-license perl))))
3832
3833 (define-public perl-digest-sha1
3834 (package
3835 (name "perl-digest-sha1")
3836 (version "2.13")
3837 (source (origin
3838 (method url-fetch)
3839 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
3840 "Digest-SHA1-" version ".tar.gz"))
3841 (sha256
3842 (base32
3843 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
3844 (build-system perl-build-system)
3845 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
3846 (description
3847 "This package provides @code{Digest::SHA1}, an implementation of the NIST
3848 SHA-1 message digest algorithm for use by Perl programs.")
3849 (home-page "https://metacpan.org/release/Digest-SHA1")
3850 (license (package-license perl))))
3851
3852 (define-public perl-dist-checkconflicts
3853 (package
3854 (name "perl-dist-checkconflicts")
3855 (version "0.11")
3856 (source (origin
3857 (method url-fetch)
3858 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3859 "Dist-CheckConflicts-" version ".tar.gz"))
3860 (sha256
3861 (base32
3862 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
3863 (build-system perl-build-system)
3864 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
3865 (propagated-inputs
3866 `(("perl-module-runtime" ,perl-module-runtime)))
3867 (home-page "https://metacpan.org/release/Dist-CheckConflicts")
3868 (synopsis "Declare version conflicts for your dist")
3869 (description "This module allows you to specify conflicting versions of
3870 modules separately and deal with them after the module is done installing.")
3871 (license (package-license perl))))
3872
3873 (define-public perl-dynaloader-functions
3874 (package
3875 (name "perl-dynaloader-functions")
3876 (version "0.003")
3877 (source
3878 (origin
3879 (method url-fetch)
3880 (uri (string-append
3881 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/DynaLoader-Functions-"
3882 version ".tar.gz"))
3883 (sha256
3884 (base32
3885 "10x13q920j9kid7vmbj6fiaz153042dy4mwdmpzrdrxw2ir39ciy"))))
3886 (build-system perl-build-system)
3887 (native-inputs
3888 `(("perl-module-build" ,perl-module-build)
3889 ("perl-test-pod" ,perl-test-pod)
3890 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
3891 (home-page "https://metacpan.org/release/DynaLoader-Functions")
3892 (synopsis "Deconstructed dynamic C library loading")
3893 (description "This module provides a function-based interface to
3894 dynamic loading as used by Perl. Some details of dynamic loading are
3895 very platform-dependent, so correct use of these functions requires
3896 the programmer to be mindfulof the space of platform variations.")
3897 (license license:perl-license)))
3898
3899 (define-public perl-encode-detect
3900 (package
3901 (name "perl-encode-detect")
3902 (version "1.01")
3903 (source
3904 (origin
3905 (method url-fetch)
3906 (uri (string-append "mirror://cpan/authors/id/J/JG/JGMYERS/"
3907 "Encode-Detect-" version ".tar.gz"))
3908 (sha256
3909 (base32
3910 "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
3911 (build-system perl-build-system)
3912 (native-inputs
3913 `(("perl-module-build" ,perl-module-build)))
3914 (home-page "https://metacpan.org/release/Encode-Detect")
3915 (synopsis "Detect the encoding of data")
3916 (description "This package provides a class @code{Encode::Detect} to detect
3917 the encoding of data.")
3918 (license license:mpl1.1)))
3919
3920 (define-public perl-encode-eucjpascii
3921 (package
3922 (name "perl-encode-eucjpascii")
3923 (version "0.03")
3924 (source
3925 (origin
3926 (method url-fetch)
3927 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3928 "Encode-EUCJPASCII-" version ".tar.gz"))
3929 (sha256
3930 (base32
3931 "0qg8kmi7r9jcf8326b4fyq5sdpqyim2a11h7j77q577xam6x767r"))))
3932 (build-system perl-build-system)
3933 (home-page "https://metacpan.org/release/Encode-EUCJPASCII")
3934 (synopsis "ASCII mapping for eucJP encoding")
3935 (description "This package provides an ASCII mapping for the eucJP
3936 encoding.")
3937 (license (package-license perl))))
3938
3939 (define-public perl-encode-jis2k
3940 (package
3941 (name "perl-encode-jis2k")
3942 (version "0.03")
3943 (source
3944 (origin
3945 (method url-fetch)
3946 (uri (string-append "mirror://cpan/authors/id/D/DA/DANKOGAI/"
3947 "Encode-JIS2K-" version ".tar.gz"))
3948 (sha256
3949 (base32
3950 "1k1mdj4rd9m1z4h7qd2dl92ky0r1rk7mmagwsvdb9pirvdr4vj0y"))))
3951 (build-system perl-build-system)
3952 (home-page "https://metacpan.org/release/Encode-JIS2K")
3953 (synopsis "JIS X 0212 (aka JIS 2000) encodings")
3954 (description "This package provides encodings for JIS X 0212, which is
3955 also known as JIS 2000.")
3956 (license (package-license perl))))
3957
3958 (define-public perl-encode-hanextra
3959 (package
3960 (name "perl-encode-hanextra")
3961 (version "0.23")
3962 (source
3963 (origin
3964 (method url-fetch)
3965 (uri (string-append "mirror://cpan/authors/id/A/AU/AUDREYT/"
3966 "Encode-HanExtra-" version ".tar.gz"))
3967 (sha256
3968 (base32
3969 "0fj4vd8iva2i0j6s2fyhwgr9afrvhr6gjlzi7805h257mmnb1m0z"))))
3970 (build-system perl-build-system)
3971 (arguments
3972 '(#:phases
3973 (modify-phases %standard-phases
3974 (add-after 'unpack 'set-env
3975 (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
3976 (home-page "https://metacpan.org/release/Encode-HanExtra")
3977 (synopsis "Additional Chinese encodings")
3978 (description "This Perl module provides Chinese encodings that are not
3979 part of Perl by default, including \"BIG5-1984\", \"BIG5-2003\", \"BIG5PLUS\",
3980 \"BIG5EXT\", \"CCCII\", \"EUC-TW\", \"CNS11643-*\", \"GB18030\", and
3981 \"UNISYS\".")
3982 (license license:expat)))
3983
3984 (define-public perl-env-path
3985 (package
3986 (name "perl-env-path")
3987 (version "0.19")
3988 (source
3989 (origin
3990 (method url-fetch)
3991 (uri (string-append
3992 "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
3993 version
3994 ".tar.gz"))
3995 (sha256
3996 (base32
3997 "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
3998 (build-system perl-build-system)
3999 (home-page "https://metacpan.org/release/Env-Path")
4000 (synopsis "Advanced operations on path variables")
4001 (description "@code{Env::Path} presents an object-oriented interface to
4002 path variables, defined as that subclass of environment variables which name
4003 an ordered list of file system elements separated by a platform-standard
4004 separator.")
4005 (license (package-license perl))))
4006
4007 (define-public perl-error
4008 (package
4009 (name "perl-error")
4010 (version "0.17028")
4011 (source (origin
4012 (method url-fetch)
4013 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4014 "Error-" version ".tar.gz"))
4015 (sha256
4016 (base32
4017 "0q796nwwiarfc6pga97380c9z8xva5545632001qj75kb1g5rn1s"))))
4018 (build-system perl-build-system)
4019 (native-inputs `(("perl-module-build" ,perl-module-build)))
4020 (home-page "https://metacpan.org/release/Error")
4021 (synopsis "OO-ish Error/Exception handling for Perl")
4022 (description "The Error package provides two interfaces. Firstly Error
4023 provides a procedural interface to exception handling. Secondly Error is a
4024 base class for errors/exceptions that can either be thrown, for subsequent
4025 catch, or can simply be recorded.")
4026 (license (package-license perl))))
4027
4028 (define-public perl-eval-closure
4029 (package
4030 (name "perl-eval-closure")
4031 (version "0.14")
4032 (source
4033 (origin
4034 (method url-fetch)
4035 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4036 "Eval-Closure-" version ".tar.gz"))
4037 (sha256
4038 (base32
4039 "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
4040 (build-system perl-build-system)
4041 (native-inputs
4042 `(("perl-test-fatal" ,perl-test-fatal)
4043 ("perl-test-requires" ,perl-test-requires)))
4044 (propagated-inputs
4045 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
4046 (home-page "https://metacpan.org/release/Eval-Closure")
4047 (synopsis "Safely and cleanly create closures via string eval")
4048 (description "String eval is often used for dynamic code generation. For
4049 instance, Moose uses it heavily, to generate inlined versions of accessors and
4050 constructors, which speeds code up at runtime by a significant amount. String
4051 eval is not without its issues however - it's difficult to control the scope
4052 it's used in (which determines which variables are in scope inside the eval),
4053 and it's easy to miss compilation errors, since eval catches them and sticks
4054 them in $@@ instead. This module attempts to solve these problems. It
4055 provides an eval_closure function, which evals a string in a clean
4056 environment, other than a fixed list of specified variables. Compilation
4057 errors are rethrown automatically.")
4058 (license (package-license perl))))
4059
4060 (define-public perl-eval-withlexicals
4061 (package
4062 (name "perl-eval-withlexicals")
4063 (version "1.003006")
4064 (source
4065 (origin
4066 (method url-fetch)
4067 (uri (string-append
4068 "mirror://cpan/authors/id/H/HA/HAARG/Eval-WithLexicals-"
4069 version
4070 ".tar.gz"))
4071 (sha256
4072 (base32
4073 "0x09mq0q745cxkw3xgr0h7dil7p1pdq3l5299kj3mk2ijkk2gwb6"))))
4074 (build-system perl-build-system)
4075 (arguments
4076 `(#:phases (modify-phases %standard-phases
4077 (add-after 'install 'wrap-tinyrepl
4078 (lambda* (#:key outputs #:allow-other-keys)
4079 (let* ((out (assoc-ref outputs "out")))
4080 (wrap-program (string-append out "/bin/tinyrepl")
4081 `("PERL5LIB" ":" prefix
4082 (,(getenv "PERL5LIB")
4083 ,(string-append out "/lib/perl5/site_perl"))))
4084 #t))))))
4085 (propagated-inputs
4086 `(("perl-moo" ,perl-moo)
4087 ("perl-strictures" ,perl-strictures)))
4088 (home-page "https://metacpan.org/release/Eval-WithLexicals")
4089 (synopsis "Lexical scope evaluation library for Perl")
4090 (description "The Eval::WithLexicals Perl library provides support for
4091 lexical scope evaluation. This package also includes the @command{tinyrepl}
4092 command, which can be used as a minimal Perl read-eval-print loop (REPL).")
4093 (license (package-license perl))))
4094
4095 (define-public perl-exception-class
4096 (package
4097 (name "perl-exception-class")
4098 (version "1.44")
4099 (source
4100 (origin
4101 (method url-fetch)
4102 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4103 "Exception-Class-" version ".tar.gz"))
4104 (sha256
4105 (base32
4106 "03gf4cdgrjnljgrlxkvbh2cahsyzn0zsh2zcli7b1lrqn7wgpwrk"))))
4107 (build-system perl-build-system)
4108 (propagated-inputs
4109 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
4110 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
4111 (home-page "https://metacpan.org/release/Exception-Class")
4112 (synopsis "Allows you to declare real exception classes in Perl")
4113 (description "Exception::Class allows you to declare exception hierarchies
4114 in your modules in a \"Java-esque\" manner.")
4115 (license (package-license perl))))
4116
4117 (define-public perl-exporter-lite
4118 (package
4119 (name "perl-exporter-lite")
4120 (version "0.08")
4121 (source (origin
4122 (method url-fetch)
4123 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
4124 "Exporter-Lite-" version ".tar.gz"))
4125 (sha256
4126 (base32
4127 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
4128 (build-system perl-build-system)
4129 (synopsis "Lightweight exporting of functions and variables")
4130 (description
4131 "Exporter::Lite is an alternative to Exporter, intended to provide a
4132 lightweight subset of the most commonly-used functionality. It supports
4133 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
4134 (home-page "https://metacpan.org/release/Exporter-Lite")
4135 (license (package-license perl))))
4136
4137 (define-public perl-exporter-tiny
4138 (package
4139 (name "perl-exporter-tiny")
4140 (version "1.002001")
4141 (source
4142 (origin
4143 (method url-fetch)
4144 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
4145 "Exporter-Tiny-" version ".tar.gz"))
4146 (sha256
4147 (base32 "13f4sd9n9iyi15r5rbjbmawajxlgfdvvyrvwlyg0yjyf09636b58"))))
4148 (build-system perl-build-system)
4149 (home-page "https://metacpan.org/release/Exporter-Tiny")
4150 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
4151 (description "Exporter::Tiny supports many of Sub::Exporter's
4152 external-facing features including renaming imported functions with the `-as`,
4153 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
4154 and alternative installers with the `installler` option. But it's written in
4155 only about 40% as many lines of code and with zero non-core dependencies.")
4156 (license (package-license perl))))
4157
4158 (define-public perl-extutils-installpaths
4159 (package
4160 (name "perl-extutils-installpaths")
4161 (version "0.012")
4162 (source
4163 (origin
4164 (method url-fetch)
4165 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4166 "ExtUtils-InstallPaths-" version ".tar.gz"))
4167 (sha256
4168 (base32
4169 "1v9lshfhm9ck4p0v77arj5f7haj1mmkqal62lgzzvcds6wq5www4"))))
4170 (build-system perl-build-system)
4171 (propagated-inputs
4172 `(("perl-extutils-config" ,perl-extutils-config)))
4173 (home-page "https://metacpan.org/release/ExtUtils-InstallPaths")
4174 (synopsis "Build.PL install path logic made easy")
4175 (description "This module tries to make install path resolution as easy as
4176 possible.")
4177 (license (package-license perl))))
4178
4179 (define-public perl-extutils-config
4180 (package
4181 (name "perl-extutils-config")
4182 (version "0.008")
4183 (source
4184 (origin
4185 (method url-fetch)
4186 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4187 "ExtUtils-Config-" version ".tar.gz"))
4188 (sha256
4189 (base32
4190 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
4191 (build-system perl-build-system)
4192 (home-page "https://metacpan.org/release/ExtUtils-Config")
4193 (synopsis "Wrapper for perl's configuration")
4194 (description "ExtUtils::Config is an abstraction around the %Config hash.
4195 By itself it is not a particularly interesting module by any measure, however
4196 it ties together a family of modern toolchain modules.")
4197 (license (package-license perl))))
4198
4199 (define-public perl-extutils-cppguess
4200 (package
4201 (name "perl-extutils-cppguess")
4202 (version "0.20")
4203 (source
4204 (origin
4205 (method url-fetch)
4206 (uri (string-append
4207 "mirror://cpan/authors/id/E/ET/ETJ/ExtUtils-CppGuess-"
4208 version
4209 ".tar.gz"))
4210 (sha256
4211 (base32
4212 "0q9ynigk600fv95xac6aslrg2k19m6qbzf5hqfsnall8113r3gqj"))))
4213 (build-system perl-build-system)
4214 (native-inputs
4215 `(("perl-capture-tiny" ,perl-capture-tiny)
4216 ("perl-module-build" ,perl-module-build)))
4217 (propagated-inputs
4218 `(("perl-capture-tiny" ,perl-capture-tiny)))
4219 (home-page
4220 "https://metacpan.org/release/ExtUtils-CppGuess")
4221 (synopsis "Tool for guessing C++ compiler and flags")
4222 (description "ExtUtils::CppGuess attempts to guess the C++ compiler that
4223 is compatible with the C compiler used to build perl.")
4224 (license (package-license perl))))
4225
4226 (define-public perl-extutils-depends
4227 (package
4228 (name "perl-extutils-depends")
4229 (version "0.405")
4230 (source (origin
4231 (method url-fetch)
4232 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4233 "ExtUtils-Depends-" version ".tar.gz"))
4234 (sha256
4235 (base32
4236 "0b4ab9qmcihsfs2ajhn5qzg7nhazr68v3r0zvb7076smswd41mla"))))
4237 (build-system perl-build-system)
4238 (native-inputs
4239 `(("perl-test-number-delta" ,perl-test-number-delta)))
4240 (home-page "https://metacpan.org/release/ExtUtils-Depends")
4241 (synopsis "Easily build XS extensions that depend on XS extensions")
4242 (description
4243 "This module tries to make it easy to build Perl extensions that use
4244 functions and typemaps provided by other perl extensions. This means that a
4245 perl extension is treated like a shared library that provides also a C and an
4246 XS interface besides the perl one.")
4247 (license (package-license perl))))
4248
4249 (define-public perl-extutils-helpers
4250 (package
4251 (name "perl-extutils-helpers")
4252 (version "0.026")
4253 (source
4254 (origin
4255 (method url-fetch)
4256 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4257 "ExtUtils-Helpers-" version ".tar.gz"))
4258 (sha256
4259 (base32
4260 "05ilqcj1rg5izr09dsqmy5di4fvq6ph4k0chxks7qmd4j1kip46y"))))
4261 (build-system perl-build-system)
4262 (home-page "https://metacpan.org/release/ExtUtils-Helpers")
4263 (synopsis "Various portability utilities for module builders")
4264 (description "This module provides various portable helper functions for
4265 module building modules.")
4266 (license (package-license perl))))
4267
4268 (define-public perl-extutils-libbuilder
4269 (package
4270 (name "perl-extutils-libbuilder")
4271 (version "0.08")
4272 (source
4273 (origin
4274 (method url-fetch)
4275 (uri (string-append "mirror://cpan/authors/id/A/AM/AMBS/"
4276 "ExtUtils-LibBuilder-" version ".tar.gz"))
4277 (sha256
4278 (base32
4279 "1lmmfcjxvsvhn4f3v2lyylgr8dzcf5j7mnd1pkq3jc75dph724f5"))))
4280 (build-system perl-build-system)
4281 (native-inputs
4282 `(("perl-module-build" ,perl-module-build)))
4283 (home-page "https://metacpan.org/release/ExtUtils-LibBuilder")
4284 (synopsis "Tool to build C libraries")
4285 (description "Some Perl modules need to ship C libraries together with
4286 their Perl code. Although there are mechanisms to compile and link (or glue)
4287 C code in your Perl programs, there isn't a clear method to compile standard,
4288 self-contained C libraries. This module main goal is to help in that task.")
4289 (license (package-license perl))))
4290
4291 (define-public perl-extutils-parsexs
4292 (package
4293 (name "perl-extutils-parsexs")
4294 (version "3.35")
4295 (source
4296 (origin
4297 (method url-fetch)
4298 (uri (string-append
4299 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-ParseXS-"
4300 version
4301 ".tar.gz"))
4302 (sha256
4303 (base32
4304 "077fqiyabydm8j34wxzxwxskyidh8nmwq9gskaxai8kq298z1pj1"))))
4305 (build-system perl-build-system)
4306 (home-page
4307 "https://metacpan.org/release/ExtUtils-ParseXS")
4308 (synopsis "Module to convert Perl XS code into C code")
4309 (description "The package contains the ExtUtils::ParseXS module to
4310 convert Perl XS code into C code, the ExtUtils::Typemaps module to
4311 handle Perl/XS typemap files, and their submodules.")
4312 (license (package-license perl))))
4313
4314 (define-public perl-extutils-pkgconfig
4315 (package
4316 (name "perl-extutils-pkgconfig")
4317 (version "1.16")
4318 (source (origin
4319 (method url-fetch)
4320 (uri (string-append "mirror://cpan/authors/id/X/XA/XAOC/"
4321 "ExtUtils-PkgConfig-" version ".tar.gz"))
4322 (sha256
4323 (base32
4324 "0vhwh0731rhh1sswmvagq0myn754dnkab8sizh6d3n6pjpcwxsmv"))))
4325 (build-system perl-build-system)
4326 (propagated-inputs
4327 `(("pkg-config" ,pkg-config)))
4328 (home-page "https://metacpan.org/release/ExtUtils-PkgConfig")
4329 (synopsis "Simplistic interface to pkg-config")
4330 (description
4331 "@code{ExtUtils::PkgConfig} is a very simplistic interface to the
4332 @command{pkg-config} utility, intended for use in the @file{Makefile.PL}
4333 of perl extensions which bind libraries that @command{pkg-config} knows.
4334 It is really just boilerplate code that you would have written yourself.")
4335 (license license:lgpl2.1+)))
4336
4337 (define-public perl-extutils-typemaps-default
4338 (package
4339 (name "perl-extutils-typemaps-default")
4340 (version "1.05")
4341 (source
4342 (origin
4343 (method url-fetch)
4344 (uri (string-append
4345 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-Typemaps-Default-"
4346 version
4347 ".tar.gz"))
4348 (sha256
4349 (base32
4350 "1phmha0ks95kvzl00r1kgnd5hvg7qb1q9jmzjmw01p5zgs1zbyix"))))
4351 (build-system perl-build-system)
4352 (native-inputs
4353 `(("perl-module-build" ,perl-module-build)))
4354 (home-page
4355 "https://metacpan.org/release/ExtUtils-Typemaps-Default")
4356 (synopsis "Set of useful typemaps")
4357 (description "The package provides a number of useful typemaps as
4358 submodules of ExtUtils::Typemaps.")
4359 (license (package-license perl))))
4360
4361 (define-public perl-extutils-xspp
4362 (package
4363 (name "perl-extutils-xspp")
4364 (version "0.18")
4365 (source
4366 (origin
4367 (method url-fetch)
4368 (uri (string-append
4369 "mirror://cpan/authors/id/S/SM/SMUELLER/ExtUtils-XSpp-"
4370 version
4371 ".tar.gz"))
4372 (sha256
4373 (base32
4374 "1zx84f93lkymqz7qa4d63gzlnhnkxm5i3gvsrwkvvqr9cxjasxli"))))
4375 (build-system perl-build-system)
4376 (native-inputs
4377 `(("perl-module-build" ,perl-module-build)
4378 ("perl-test-base" ,perl-test-base)
4379 ("perl-test-differences" ,perl-test-differences)))
4380 (home-page
4381 "https://metacpan.org/release/ExtUtils-XSpp")
4382 (synopsis "XS for C++")
4383 (description "This module implements the Perl foreign function
4384 interface XS for C++; it is a thin layer over plain XS.")
4385 (license (package-license perl))))
4386
4387 (define-public perl-file-changenotify
4388 (package
4389 (name "perl-file-changenotify")
4390 (version "0.24")
4391 (source
4392 (origin
4393 (method url-fetch)
4394 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4395 "File-ChangeNotify-" version ".tar.gz"))
4396 (sha256
4397 (base32
4398 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
4399 (build-system perl-build-system)
4400 (native-inputs
4401 `(("perl-module-build" ,perl-module-build)
4402 ("perl-test-exception" ,perl-test-exception)))
4403 (propagated-inputs
4404 `(("perl-class-load" ,perl-class-load)
4405 ("perl-list-moreutils" ,perl-list-moreutils)
4406 ("perl-module-pluggable" ,perl-module-pluggable)
4407 ("perl-moose" ,perl-moose)
4408 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
4409 ("perl-moosex-semiaffordanceaccessor"
4410 ,perl-moosex-semiaffordanceaccessor)
4411 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4412 (home-page "https://metacpan.org/release/File-ChangeNotify")
4413 (synopsis "Watch for changes to files")
4414 (description "This module provides a class to monitor a directory for
4415 changes made to any file.")
4416 (license license:artistic2.0)))
4417
4418 (define-public perl-file-configdir
4419 (package
4420 (name "perl-file-configdir")
4421 (version "0.021")
4422 (source
4423 (origin
4424 (method url-fetch)
4425 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4426 "File-ConfigDir-" version ".tar.gz"))
4427 (sha256
4428 (base32
4429 "1ihlhdbwaybyj3xqfxpx4ii0ypa41907b6zdh94rvr4wyqa5lh3b"))))
4430 (build-system perl-build-system)
4431 (propagated-inputs
4432 `(("perl-file-homedir" ,perl-file-homedir)
4433 ("perl-list-moreutils" ,perl-list-moreutils)
4434 ("perl-test-without-module" ,perl-test-without-module)))
4435 (home-page "https://metacpan.org/release/File-ConfigDir")
4436 (synopsis "Get directories of configuration files")
4437 (description "This module is a helper for installing, reading and finding
4438 configuration file locations. @code{File::ConfigDir} is a module to help out
4439 when Perl modules (especially applications) need to read and store
4440 configuration files from more than one location.")
4441 (license (package-license perl))))
4442
4443 (define-public perl-file-copy-recursive
4444 (package
4445 (name "perl-file-copy-recursive")
4446 (version "0.38")
4447 (source
4448 (origin
4449 (method url-fetch)
4450 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
4451 "File-Copy-Recursive-" version ".tar.gz"))
4452 (sha256
4453 (base32
4454 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
4455 (build-system perl-build-system)
4456 (home-page "https://metacpan.org/release/File-Copy-Recursive")
4457 (synopsis "Recursively copy files and directories")
4458 (description "This module has 3 functions: one to copy files only, one to
4459 copy directories only, and one to do either depending on the argument's
4460 type.")
4461 (license (package-license perl))))
4462
4463 (define-public perl-file-find-rule
4464 (package
4465 (name "perl-file-find-rule")
4466 (version "0.34")
4467 (source
4468 (origin
4469 (method url-fetch)
4470 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4471 "File-Find-Rule-" version ".tar.gz"))
4472 (sha256
4473 (base32
4474 "1znachnhmi1w5pdqx8dzgfa892jb7x8ivrdy4pzjj7zb6g61cvvy"))))
4475 (build-system perl-build-system)
4476 (propagated-inputs
4477 `(("perl-text-glob" ,perl-text-glob)
4478 ("perl-number-compare" ,perl-number-compare)))
4479 (home-page "https://metacpan.org/release/File-Find-Rule")
4480 (synopsis "Alternative interface to File::Find")
4481 (description "File::Find::Rule is a friendlier interface to File::Find.
4482 It allows you to build rules which specify the desired files and
4483 directories.")
4484 (license (package-license perl))))
4485
4486 (define-public perl-file-find-rule-perl
4487 (package
4488 (name "perl-file-find-rule-perl")
4489 (version "1.15")
4490 (source
4491 (origin
4492 (method url-fetch)
4493 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4494 "File-Find-Rule-Perl-" version ".tar.gz"))
4495 (sha256
4496 (base32
4497 "19iy8spzrvh71x33b5yi16wjw5jjvs12jvjj0f7f3370hqzl6j4s"))))
4498 (build-system perl-build-system)
4499 (propagated-inputs
4500 `(("perl-file-find-rule" ,perl-file-find-rule)
4501 ("perl-params-util" ,perl-params-util)
4502 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
4503 (home-page "https://metacpan.org/release/File-Find-Rule-Perl")
4504 (synopsis "Common rules for searching for Perl things")
4505 (description "File::Find::Rule::Perl provides methods for finding various
4506 types Perl-related files, or replicating search queries run on a distribution
4507 in various parts of the CPAN ecosystem.")
4508 (license (package-license perl))))
4509
4510 (define-public perl-file-grep
4511 (package
4512 (name "perl-file-grep")
4513 (version "0.02")
4514 (source
4515 (origin
4516 (method url-fetch)
4517 (uri (string-append
4518 "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
4519 version
4520 ".tar.gz"))
4521 (sha256
4522 (base32
4523 "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
4524 (build-system perl-build-system)
4525 (home-page "https://metacpan.org/release/File-Grep")
4526 (synopsis "Matches patterns in a series of files")
4527 (description "@code{File::Grep} provides similar functionality as perl's
4528 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
4529 over a passed filelist instead of arrays. While trivial, this module can
4530 provide a quick dropin when such functionality is needed.")
4531 (license (package-license perl))))
4532
4533 (define-public perl-file-homedir
4534 (package
4535 (name "perl-file-homedir")
4536 (version "1.004")
4537 (source
4538 (origin
4539 (method url-fetch)
4540 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4541 "File-HomeDir-" version ".tar.gz"))
4542 (sha256
4543 (base32
4544 "1bciyzwv7gwsnaykqz0czj6mlbkkg4hg1s40s1q7j2p6nlmpxxj5"))))
4545 (build-system perl-build-system)
4546 (propagated-inputs
4547 `(("perl-file-which" ,perl-file-which)))
4548 (arguments `(#:tests? #f)) ;Not appropriate for chroot
4549 (home-page "https://metacpan.org/release/File-HomeDir")
4550 (synopsis "Find your home and other directories on any platform")
4551 (description "File::HomeDir is a module for locating the directories that
4552 are @code{owned} by a user (typically your user) and to solve the various issues
4553 that arise trying to find them consistently across a wide variety of
4554 platforms.")
4555 (license (package-license perl))))
4556
4557 (define-public perl-file-path
4558 (package
4559 (name "perl-file-path")
4560 (version "2.16")
4561 (source
4562 (origin
4563 (method url-fetch)
4564 (uri (string-append
4565 "mirror://cpan/authors/id/J/JK/JKEENAN/File-Path-"
4566 version
4567 ".tar.gz"))
4568 (sha256
4569 (base32 "01gsysg9mjkh1ckk7jhj3y8vs291a5ynkgzhqmcz90f3b6dxdxr1"))))
4570 (build-system perl-build-system)
4571 (home-page "https://metacpan.org/release/File-Path")
4572 (synopsis "Create or remove directory trees")
4573 (description "This module provide a convenient way to create directories
4574 of arbitrary depth and to delete an entire directory subtree from the
4575 file system.")
4576 (license (package-license perl))))
4577
4578 (define-public perl-file-pushd
4579 (package
4580 (name "perl-file-pushd")
4581 (version "1.016")
4582 (source
4583 (origin
4584 (method url-fetch)
4585 (uri (string-append
4586 "mirror://cpan/authors/id/D/DA/DAGOLDEN/File-pushd-"
4587 version
4588 ".tar.gz"))
4589 (sha256
4590 (base32
4591 "1p3wz5jnddd87wkwl4x3fc3ncprahdxdzwqd4scb10r98h4pyfnp"))))
4592 (build-system perl-build-system)
4593 (home-page
4594 "https://metacpan.org/release/File-pushd")
4595 (synopsis
4596 "Change directory temporarily for a limited scope")
4597 (description "@code{File::pushd} does a temporary @code{chdir} that is
4598 easily and automatically reverted, similar to @code{pushd} in some Unix
4599 command shells. It works by creating an object that caches the original
4600 working directory. When the object is destroyed, the destructor calls
4601 @code{chdir} to revert to the original working directory. By storing the
4602 object in a lexical variable with a limited scope, this happens automatically
4603 at the end of the scope.")
4604 (license license:asl2.0)))
4605
4606 (define-public perl-file-list
4607 (package
4608 (name "perl-file-list")
4609 (version "0.3.1")
4610 (source (origin
4611 (method url-fetch)
4612 (uri (string-append
4613 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
4614 version ".tar.gz"))
4615 (sha256
4616 (base32
4617 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
4618 (build-system perl-build-system)
4619 (arguments
4620 `(#:phases
4621 (modify-phases %standard-phases
4622 (add-after 'unpack 'cd
4623 (lambda _ (chdir "List") #t)))))
4624 (license (package-license perl))
4625 (synopsis "Perl extension for crawling directory trees and compiling
4626 lists of files")
4627 (description
4628 "The File::List module crawls the directory tree starting at the
4629 provided base directory and can return files (and/or directories if desired)
4630 matching a regular expression.")
4631 (home-page "https://metacpan.org/release/File-List")))
4632
4633 (define-public perl-file-readbackwards
4634 (package
4635 (name "perl-file-readbackwards")
4636 (version "1.05")
4637 (source
4638 (origin
4639 (method url-fetch)
4640 (uri (string-append
4641 "mirror://cpan/authors/id/U/UR/URI/File-ReadBackwards-"
4642 version
4643 ".tar.gz"))
4644 (sha256
4645 (base32
4646 "0vldy5q0zyf1cwzwb1gv14f8vg2f21bw96b8wvkw6z2hhypn3cl2"))))
4647 (build-system perl-build-system)
4648 (home-page "https://metacpan.org/release/File-ReadBackwards")
4649 (synopsis "Read a file backwards by lines")
4650 (description "This module reads a file backwards line by line. It is
4651 simple to use, memory efficient and fast. It supports both an object and a
4652 tied handle interface.
4653
4654 It is intended for processing log and other similar text files which typically
4655 have their newest entries appended to them. By default files are assumed to
4656 be plain text and have a line ending appropriate to the OS. But you can set
4657 the input record separator string on a per file basis.")
4658 (license license:perl-license)))
4659
4660 (define-public perl-file-remove
4661 (package
4662 (name "perl-file-remove")
4663 (version "1.58")
4664 (source
4665 (origin
4666 (method url-fetch)
4667 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
4668 "File-Remove-" version ".tar.gz"))
4669 (sha256
4670 (base32
4671 "1n6h5w3sp2bs4cfrifdx2z15cfpb4r536179mx1a12xbmj1yrxl1"))))
4672 (build-system perl-build-system)
4673 (native-inputs
4674 `(("perl-module-build" ,perl-module-build)))
4675 (home-page "https://metacpan.org/release/File-Remove")
4676 (synopsis "Remove files and directories in Perl")
4677 (description "@code{File::Remove::remove} removes files and directories.
4678 It acts like @code{/bin/rm}, for the most part. Although @code{unlink} can be
4679 given a list of files, it will not remove directories; this module remedies
4680 that. It also accepts wildcards, * and ?, as arguments for file names.")
4681 (license (package-license perl))))
4682
4683 (define-public perl-file-sharedir
4684 (package
4685 (name "perl-file-sharedir")
4686 (version "1.116")
4687 (source
4688 (origin
4689 (method url-fetch)
4690 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4691 "File-ShareDir-" version ".tar.gz"))
4692 (sha256
4693 (base32 "0a43rfb0a1fpxh4d2dayarkdxw4cx9a2krkk87zmcilcz7yhpnar"))))
4694 (build-system perl-build-system)
4695 (native-inputs
4696 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
4697 (propagated-inputs
4698 `(("perl-class-inspector" ,perl-class-inspector)))
4699 (home-page "https://metacpan.org/release/File-ShareDir")
4700 (synopsis "Locate per-dist and per-module shared files")
4701 (description "The intent of File::ShareDir is to provide a companion to
4702 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
4703 module to have access to a large amount of read-only data that is stored on
4704 the file-system at run-time. Once the files have been installed to the
4705 correct directory, you can use File::ShareDir to find your files again after
4706 the installation.")
4707 (license (package-license perl))))
4708
4709 (define-public perl-file-sharedir-dist
4710 (package
4711 (name "perl-file-sharedir-dist")
4712 (version "0.07")
4713 (source
4714 (origin
4715 (method url-fetch)
4716 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4717 "File-ShareDir-Dist-" version ".tar.gz"))
4718 (sha256
4719 (base32 "0vg8kxzgz4hf6221jb4v5bx1zhsnplnw5bcmxx0iyd92xv8fazwd"))))
4720 (build-system perl-build-system)
4721 (home-page "https://metacpan.org/release/File-ShareDir-Dist")
4722 (synopsis "Locate per-dist shared files")
4723 (description "File::ShareDir::Dist finds share directories for
4724 distributions. It is a companion module to File::ShareDir.")
4725 (license (package-license perl))))
4726
4727 (define-public perl-file-sharedir-install
4728 (package
4729 (name "perl-file-sharedir-install")
4730 (version "0.13")
4731 (source
4732 (origin
4733 (method url-fetch)
4734 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4735 "File-ShareDir-Install-" version ".tar.gz"))
4736 (sha256
4737 (base32
4738 "1yc0wlkav2l2wr36a53n4mnhsy2zv29z5nm14mygxgjwv7qgvgj5"))))
4739 (build-system perl-build-system)
4740 (native-inputs
4741 `(("perl-module-build" ,perl-module-build)))
4742 (home-page "https://metacpan.org/release/File-ShareDir-Install")
4743 (synopsis "Install shared files")
4744 (description "File::ShareDir::Install allows you to install read-only data
4745 files from a distribution. It is a companion module to File::ShareDir, which
4746 allows you to locate these files after installation.")
4747 (license (package-license perl))))
4748
4749 (define-public perl-file-slurp
4750 (package
4751 (name "perl-file-slurp")
4752 (version "9999.28")
4753 (source
4754 (origin
4755 (method url-fetch)
4756 (uri (string-append "mirror://cpan/authors/id/C/CA/CAPOEIRAB/"
4757 "File-Slurp-" version ".tar.gz"))
4758 (sha256
4759 (base32 "1vkwh880lbyr2qcrfka7yb3z4yz9id4va52gfjgdnyfb1c0wx1q5"))))
4760 (build-system perl-build-system)
4761 (home-page "https://metacpan.org/release/File-Slurp")
4762 (synopsis "Reading/Writing/Modifying of complete files")
4763 (description "File::Slurp provides subroutines to read or write entire
4764 files with a simple call. It also has a subroutine for reading the list of
4765 file names in a directory.")
4766 (license (package-license perl))))
4767
4768 (define-public perl-file-slurper
4769 (package
4770 (name "perl-file-slurper")
4771 (version "0.012")
4772 (source
4773 (origin
4774 (method url-fetch)
4775 (uri (string-append
4776 "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
4777 version
4778 ".tar.gz"))
4779 (sha256
4780 (base32
4781 "0y5518ji60yfkx9ggjp309j6g8vfri4ka4zqlsys245i2sj2xysf"))))
4782 (build-system perl-build-system)
4783 (native-inputs
4784 `(("perl-test-warnings" ,perl-test-warnings)))
4785 (propagated-inputs
4786 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
4787 (home-page "https://metacpan.org/release/File-Slurper")
4788 (synopsis "Simple, sane and efficient module to slurp a file")
4789 (description "This module provides functions for fast and correct file
4790 slurping and spewing. All functions are optionally exported.")
4791 (license (package-license perl))))
4792
4793 (define-public perl-file-slurp-tiny
4794 (package
4795 (name "perl-file-slurp-tiny")
4796 (version "0.004")
4797 (source (origin
4798 (method url-fetch)
4799 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4800 "File-Slurp-Tiny-" version ".tar.gz"))
4801 (sha256
4802 (base32
4803 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
4804 (build-system perl-build-system)
4805 (home-page "https://metacpan.org/release/File-Slurp-Tiny")
4806 (synopsis "Simple file reader and writer")
4807 (description
4808 "This module provides functions for fast reading and writing of files.")
4809 (license (package-license perl))))
4810
4811 (define-public perl-file-temp
4812 (package
4813 (name "perl-file-temp")
4814 (version "0.2309")
4815 (source
4816 (origin
4817 (method url-fetch)
4818 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4819 "File-Temp-" version ".tar.gz"))
4820 (sha256
4821 (base32 "0pr3wrxrk93wy7dz9gsb1sgl77icrs8rh2mah6wms5cdi2ll5ch1"))))
4822 (build-system perl-build-system)
4823 (home-page "https://metacpan.org/release/File-Temp")
4824 (synopsis "Return name and handle of a temporary file safely")
4825 (description "File::Temp can be used to create and open temporary files in
4826 a safe way.")
4827 (license (package-license perl))))
4828
4829 (define-public perl-file-which
4830 (package
4831 (name "perl-file-which")
4832 (version "1.23")
4833 (source (origin
4834 (method url-fetch)
4835 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
4836 "File-Which-" version ".tar.gz"))
4837 (sha256
4838 (base32
4839 "0y70qh5kn2hyrrvbsfhg0iws2qggk5vkpz37f7rbd5rd9cjc57dp"))))
4840 (build-system perl-build-system)
4841 (native-inputs `(("test-script" ,perl-test-script)))
4842 (synopsis "Portable implementation of the `which' utility")
4843 (description
4844 "File::Which was created to be able to get the paths to executable
4845 programs on systems under which the `which' program wasn't implemented in the
4846 shell.")
4847 (home-page "https://metacpan.org/release/File-Which")
4848 (license (package-license perl))))
4849
4850 (define-public perl-file-zglob
4851 (package
4852 (name "perl-file-zglob")
4853 (version "0.11")
4854 (source (origin
4855 (method url-fetch)
4856 (uri (string-append
4857 "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
4858 version ".tar.gz"))
4859 (sha256
4860 (base32
4861 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
4862 (build-system perl-build-system)
4863 (native-inputs
4864 `(("perl-module-install" ,perl-module-install)))
4865 (home-page "https://metacpan.org/release/File-Zglob")
4866 (synopsis "Extended Unix style glob functionality")
4867 (description "@code{File::Zglob} provides a traditional Unix @code{glob}
4868 functionality; it returns a list of file names that match the given pattern.
4869 For instance, it supports the @code{**/*.pm} form.")
4870 (license (package-license perl))))
4871
4872 (define-public perl-filesys-notify-simple
4873 (package
4874 (name "perl-filesys-notify-simple")
4875 (version "0.13")
4876 (source
4877 (origin
4878 (method url-fetch)
4879 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
4880 "Filesys-Notify-Simple-" version ".tar.gz"))
4881 (sha256
4882 (base32
4883 "18jv96k1pf8wqf4vn2ahs7dv44lc9cyqj0bja9z17qici3dx7qxd"))))
4884 (build-system perl-build-system)
4885 (native-inputs
4886 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
4887 (home-page "https://metacpan.org/release/Filesys-Notify-Simple")
4888 (synopsis "Simple and dumb file system watcher")
4889 (description
4890 "@code{Filesys::Notify::Simple} is a simple but unified interface to get
4891 notifications of changes to a given file system path. It uses inotify2 on
4892 Linux, fsevents on OS X, @code{kqueue} on FreeBSD, and
4893 @code{FindFirstChangeNotification} on Windows if they're installed, and falls
4894 back to a full directory scan if none of these are available.")
4895 (license license:perl-license)))
4896
4897 (define-public perl-getopt-long
4898 (package
4899 (name "perl-getopt-long")
4900 (version "2.51")
4901 (source
4902 (origin
4903 (method url-fetch)
4904 (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
4905 "Getopt-Long-" version ".tar.gz"))
4906 (sha256
4907 (base32 "0r659i6rkz8zkfgdccbn29zmd4bk9lcdc4y20ng6w2glqaa3pd10"))))
4908 (build-system perl-build-system)
4909 (home-page "https://metacpan.org/release/Getopt-Long")
4910 (synopsis "Module to handle parsing command line options")
4911 (description "The @code{Getopt::Long} module implements an extended getopt
4912 function called @code{GetOptions()}. It parses the command line from
4913 @code{ARGV}, recognizing and removing specified options and their possible
4914 values.
4915
4916 This function adheres to the POSIX syntax for command line options, with GNU
4917 extensions. In general, this means that options have long names instead of
4918 single letters, and are introduced with a double dash \"--\". Support for
4919 bundling of command line options, as was the case with the more traditional
4920 single-letter approach, is provided but not enabled by default.")
4921 ;; Can be used with either license.
4922 (license (list (package-license perl) license:gpl2+))))
4923
4924 (define-public perl-getopt-long-descriptive
4925 (package
4926 (name "perl-getopt-long-descriptive")
4927 (version "0.103")
4928 (source
4929 (origin
4930 (method url-fetch)
4931 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
4932 "Getopt-Long-Descriptive-" version ".tar.gz"))
4933 (sha256
4934 (base32
4935 "1cpl240qxmh7jf85ai9sfkp3nzm99syya4jxidizp7aa83kvmqbh"))))
4936 (build-system perl-build-system)
4937 (native-inputs
4938 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4939 ("perl-test-fatal" ,perl-test-fatal)
4940 ("perl-test-warnings" ,perl-test-warnings)))
4941 (propagated-inputs
4942 `(("perl-params-validate" ,perl-params-validate)
4943 ("perl-sub-exporter" ,perl-sub-exporter)))
4944 (home-page "https://metacpan.org/release/Getopt-Long-Descriptive")
4945 (synopsis "Getopt::Long, but simpler and more powerful")
4946 (description "Getopt::Long::Descriptive is yet another Getopt library.
4947 It's built atop Getopt::Long, and gets a lot of its features, but tries to
4948 avoid making you think about its huge array of options. It also provides
4949 usage (help) messages, data validation, and a few other useful features.")
4950 (license (package-license perl))))
4951
4952 (define-public perl-getopt-tabular
4953 (package
4954 (name "perl-getopt-tabular")
4955 (version "0.3")
4956 (source (origin
4957 (method url-fetch)
4958 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
4959 "Getopt-Tabular-" version ".tar.gz"))
4960 (sha256
4961 (base32
4962 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
4963 (build-system perl-build-system)
4964 (synopsis "Table-driven argument parsing for Perl")
4965 (description
4966 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
4967 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
4968 (home-page "https://metacpan.org/release/Getopt-Tabular")
4969 (license (package-license perl))))
4970
4971 (define-public perl-graph
4972 (package
4973 (name "perl-graph")
4974 (version "0.9704")
4975 (source
4976 (origin
4977 (method url-fetch)
4978 (uri (string-append
4979 "mirror://cpan/authors/id/J/JH/JHI/Graph-"
4980 version
4981 ".tar.gz"))
4982 (sha256
4983 (base32
4984 "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
4985 (build-system perl-build-system)
4986 (home-page "https://metacpan.org/release/Graph")
4987 (synopsis "Graph data structures and algorithms")
4988 (description "This is @code{Graph}, a Perl module for dealing with graphs,
4989 the abstract data structures.")
4990 (license (package-license perl))))
4991
4992 (define-public perl-guard
4993 (package
4994 (name "perl-guard")
4995 (version "1.023")
4996 (source (origin
4997 (method url-fetch)
4998 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
4999 version ".tar.gz"))
5000 (sha256
5001 (base32
5002 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
5003 (build-system perl-build-system)
5004 (home-page "https://metacpan.org/release/Guard")
5005 (synopsis "Safe cleanup blocks implemented as guards")
5006 (description "@code{Guard} implements so-called @dfn{guards}. A guard is
5007 something (usually an object) that \"guards\" a resource, ensuring that it is
5008 cleaned up when expected.
5009
5010 Specifically, this module supports two different types of guards: guard
5011 objects, which execute a given code block when destroyed, and scoped guards,
5012 which are tied to the scope exit.")
5013 (license (package-license perl))))
5014
5015 (define-public perl-hash-fieldhash
5016 (package
5017 (name "perl-hash-fieldhash")
5018 (version "0.15")
5019 (source
5020 (origin
5021 (method url-fetch)
5022 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5023 "Hash-FieldHash-" version ".tar.gz"))
5024 (sha256
5025 (base32
5026 "1wg8nzczfxif55j2nbymbhyd25pjy7dqs4bvd6jrcds3ll3mflaw"))))
5027 (build-system perl-build-system)
5028 (arguments
5029 `(#:phases
5030 (modify-phases %standard-phases
5031 (add-before 'configure 'set-perl-search-path
5032 (lambda _
5033 ;; Work around "dotless @INC" build failure.
5034 (setenv "PERL5LIB"
5035 (string-append (getcwd) ":"
5036 (getenv "PERL5LIB")))
5037 #t)))))
5038 (native-inputs
5039 `(("perl-module-build" ,perl-module-build)
5040 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5041 (home-page "https://metacpan.org/release/Hash-FieldHash")
5042 (synopsis "Lightweight field hash for inside-out objects")
5043 (description "@code{Hash::FieldHash} provides the field hash mechanism
5044 which supports the inside-out technique. It is an alternative to
5045 @code{Hash::Util::FieldHash} with a simpler interface, higher performance, and
5046 relic support.")
5047 (license (package-license perl))))
5048
5049 (define-public perl-hash-merge
5050 (package
5051 (name "perl-hash-merge")
5052 (version "0.302")
5053 (source
5054 (origin
5055 (method url-fetch)
5056 (uri (string-append "mirror://cpan/authors/id/H/HE/HERMES/"
5057 "Hash-Merge-" version ".tar.gz"))
5058 (sha256
5059 (base32 "0i46agids6pk445gfck80f8z7q3pjvkp0ip1vmhqnq1rcpvj41df"))))
5060 (build-system perl-build-system)
5061 (native-inputs
5062 ;; For tests only.
5063 `(("perl-clone" ,perl-clone)
5064 ("perl-clone-pp" ,perl-clone-pp)))
5065 (propagated-inputs
5066 `(("perl-clone-choose" ,perl-clone-choose)))
5067 (home-page "https://metacpan.org/release/Hash-Merge")
5068 (synopsis "Merge arbitrarily deep hashes into a single hash")
5069 (description "Hash::Merge merges two arbitrarily deep hashes into a single
5070 hash. That is, at any level, it will add non-conflicting key-value pairs from
5071 one hash to the other, and follows a set of specific rules when there are key
5072 value conflicts. The hash is followed recursively, so that deeply nested
5073 hashes that are at the same level will be merged when the parent hashes are
5074 merged.")
5075 (license (package-license perl))))
5076
5077 (define-public perl-hash-multivalue
5078 (package
5079 (name "perl-hash-multivalue")
5080 (version "0.16")
5081 (source
5082 (origin
5083 (method url-fetch)
5084 (uri (string-append "mirror://cpan/authors/id/A/AR/ARISTOTLE/"
5085 "Hash-MultiValue-" version ".tar.gz"))
5086 (sha256
5087 (base32
5088 "1x3k7h542xnigz0b8vsfiq580p5r325wi5b8mxppiqk8mbvis636"))))
5089 (build-system perl-build-system)
5090 (home-page "https://metacpan.org/release/Hash-MultiValue")
5091 (synopsis "Store multiple values per key")
5092 (description "Hash::MultiValue is an object (and a plain hash reference)
5093 that may contain multiple values per key, inspired by MultiDict of WebOb.")
5094 (license (package-license perl))))
5095
5096 (define-public perl-hook-lexwrap
5097 (package
5098 (name "perl-hook-lexwrap")
5099 (version "0.26")
5100 (source
5101 (origin
5102 (method url-fetch)
5103 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5104 "Hook-LexWrap-" version ".tar.gz"))
5105 (sha256
5106 (base32 "0bgc6w8zs45n6ksgk0zisn9a2vcr3lmzipkan2a94kzrk1gxq2xn"))))
5107 (build-system perl-build-system)
5108 (home-page
5109 "https://metacpan.org/release/Hook-LexWrap")
5110 (synopsis "Lexically scoped subroutine wrappers")
5111 (description
5112 "Hook::LexWrap allows you to install a pre- or post-wrapper (or
5113 both) around an existing subroutine. Unlike other modules that
5114 provide this capacity (e.g., Hook::PreAndPost and Hook::WrapSub),
5115 Hook::LexWrap implements wrappers in such a way that the standard
5116 caller function works correctly within the wrapped subroutine.")
5117 (license license:perl-license)))
5118
5119 (define-public perl-importer
5120 (package
5121 (name "perl-importer")
5122 (version "0.025")
5123 (source
5124 (origin
5125 (method url-fetch)
5126 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Importer-"
5127 version ".tar.gz"))
5128 (sha256
5129 (base32
5130 "0iirw6csfbycr6z5s6lgd1zdqdjhb436zcxy1hyh6x3x92616i87"))))
5131 (build-system perl-build-system)
5132 (home-page "https://metacpan.org/release/Importer")
5133 (synopsis "Alternative but compatible interface to modules that export symbols")
5134 (description "This module acts as a layer between Exporter and modules which
5135 consume exports. It is feature-compatible with Exporter, plus some much needed
5136 extras. You can use this to import symbols from any exporter that follows
5137 Exporters specification. The exporter modules themselves do not need to use or
5138 inherit from the Exporter module, they just need to set @@EXPORT and/or other
5139 variables.")
5140 (license (package-license perl))))
5141
5142 (define-public perl-import-into
5143 (package
5144 (name "perl-import-into")
5145 (version "1.002005")
5146 (source
5147 (origin
5148 (method url-fetch)
5149 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5150 "Import-Into-" version ".tar.gz"))
5151 (sha256
5152 (base32
5153 "0rq5kz7c270q33jq6hnrv3xgkvajsc62ilqq7fs40av6zfipg7mx"))))
5154 (build-system perl-build-system)
5155 (propagated-inputs
5156 `(("perl-module-runtime" ,perl-module-runtime)))
5157 (home-page "https://metacpan.org/release/Import-Into")
5158 (synopsis "Import packages into other packages")
5159 (description "Writing exporters is a pain. Some use Exporter, some use
5160 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
5161 some things are pragmas. Exporting on someone else's behalf is harder. The
5162 exporters don't provide a consistent API for this, and pragmas need to have
5163 their import method called directly, since they effect the current unit of
5164 compilation. Import::Into provides global methods to make this painless.")
5165 (license (package-license perl))))
5166
5167 (define-public perl-inc-latest
5168 (package
5169 (name "perl-inc-latest")
5170 (version "0.500")
5171 (source
5172 (origin
5173 (method url-fetch)
5174 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5175 "inc-latest-" version ".tar.gz"))
5176 (sha256
5177 (base32
5178 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
5179 (build-system perl-build-system)
5180 (home-page "https://metacpan.org/release/inc-latest")
5181 (synopsis "Use modules in inc/ if newer than installed")
5182 (description "The inc::latest module helps bootstrap configure-time
5183 dependencies for CPAN distributions. These dependencies get bundled into the
5184 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
5185 (license license:asl2.0)))
5186
5187 (define-public perl-indirect
5188 (package
5189 (name "perl-indirect")
5190 (version "0.39")
5191 (source
5192 (origin
5193 (method url-fetch)
5194 (uri (string-append
5195 "mirror://cpan/authors/id/V/VP/VPIT/indirect-"
5196 version ".tar.gz"))
5197 (sha256
5198 (base32 "1r971mykvvsrzrp6a9ccl649ihr84h254jmlfpazv64f6i63qwvi"))))
5199 (build-system perl-build-system)
5200 (home-page "https://metacpan.org/release/indirect")
5201 (synopsis "Lexically warn about using the indirect method call syntax")
5202 (description
5203 "Indirect warns about using the indirect method call syntax.")
5204 (license (package-license perl))))
5205
5206 (define-public perl-inline
5207 (package
5208 (name "perl-inline")
5209 (version "0.81")
5210 (source
5211 (origin
5212 (method url-fetch)
5213 (uri (string-append
5214 "mirror://cpan/authors/id/T/TI/TINITA/Inline-"
5215 version ".tar.gz"))
5216 (sha256
5217 (base32
5218 "1qxi0xvn8rqj4sca9gwb1xkm6bdz33x57li5kfls6mnavil3i5qz"))))
5219 (build-system perl-build-system)
5220 (native-inputs
5221 `(("perl-test-warn" ,perl-test-warn)))
5222 (home-page "https://metacpan.org/release/Inline")
5223 (synopsis "Write Perl subroutines in other programming languages")
5224 (description "The @code{Inline} module allows you to put source code
5225 from other programming languages directly (inline) in a Perl script or
5226 module. The code is automatically compiled as needed, and then loaded
5227 for immediate access from Perl.")
5228 (license (package-license perl))))
5229
5230 (define-public perl-inline-c
5231 (package
5232 (name "perl-inline-c")
5233 (version "0.78")
5234 (source
5235 (origin
5236 (method url-fetch)
5237 (uri (string-append
5238 "mirror://cpan/authors/id/T/TI/TINITA/Inline-C-"
5239 version ".tar.gz"))
5240 (sha256
5241 (base32
5242 "1izv7vswd17glffh8h83bi63gdk208mmhxi17l3qd8q1bkc08y4s"))))
5243 (build-system perl-build-system)
5244 (native-inputs
5245 `(("perl-file-copy-recursive" ,perl-file-copy-recursive)
5246 ("perl-file-sharedir-install" ,perl-file-sharedir-install)
5247 ("perl-test-warn" ,perl-test-warn)
5248 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
5249 (propagated-inputs
5250 `(("perl-inline" ,perl-inline)
5251 ("perl-parse-recdescent" ,perl-parse-recdescent)
5252 ("perl-pegex" ,perl-pegex)))
5253 (home-page "https://metacpan.org/release/Inline-C")
5254 (synopsis "C Language Support for Inline")
5255 (description "The @code{Inline::C} module allows you to write Perl
5256 subroutines in C. Since version 0.30 the @code{Inline} module supports
5257 multiple programming languages and each language has its own support module.
5258 This document describes how to use Inline with the C programming language.
5259 It also goes a bit into Perl C internals.")
5260 (license (package-license perl))))
5261
5262 (define-public perl-io-all
5263 (package
5264 (name "perl-io-all")
5265 (version "0.87")
5266 (source
5267 (origin
5268 (method url-fetch)
5269 (uri (string-append
5270 "mirror://cpan/authors/id/F/FR/FREW/IO-All-"
5271 version
5272 ".tar.gz"))
5273 (sha256
5274 (base32
5275 "0nsd9knlbd7if2v6zwj4q978axq0w5hk8ymp61z14a821hjivqjl"))))
5276 (build-system perl-build-system)
5277 (propagated-inputs
5278 `(("perl-file-mimeinfo" ,perl-file-mimeinfo)
5279 ("perl-file-readbackwards" ,perl-file-readbackwards)))
5280 (home-page "https://metacpan.org/release/IO-All")
5281 (synopsis "@code{IO::All} to Larry Wall!")
5282 (description "@code{IO::All} combines all of the best Perl IO modules into
5283 a single nifty object oriented interface to greatly simplify your everyday
5284 Perl IO idioms. It exports a single function called io, which returns a new
5285 @code{IO::All} object. And that object can do it all!")
5286 (license license:perl-license)))
5287
5288 (define-public perl-io-captureoutput
5289 (package
5290 (name "perl-io-captureoutput")
5291 (version "1.1105")
5292 (source
5293 (origin
5294 (method url-fetch)
5295 (uri (string-append
5296 "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
5297 version
5298 ".tar.gz"))
5299 (sha256
5300 (base32 "11zlfbahac09q3jvwmpijmkwgihwxps85jwy2q7q0wqjragh16df"))))
5301 (build-system perl-build-system)
5302 (home-page "https://metacpan.org/release/IO-CaptureOutput")
5303 (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
5304 (description "@code{IO::CaptureOutput} provides routines for capturing
5305 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
5306 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
5307
5308 This module is no longer recommended by its maintainer. Users are advised to
5309 try @code{Capture::Tiny} instead.")
5310 (license (package-license perl))))
5311
5312 (define-public perl-io-interactive
5313 (package
5314 (name "perl-io-interactive")
5315 (version "1.022")
5316 (source
5317 (origin
5318 (method url-fetch)
5319 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5320 "IO-Interactive-" version ".tar.gz"))
5321 (sha256
5322 (base32 "1p7b3z877am99qn9b3n2whgcv77256sbg28divlpgs1sx653pm8f"))))
5323 (build-system perl-build-system)
5324 (home-page "https://metacpan.org/release/IO-Interactive")
5325 (synopsis "Utilities for interactive I/O")
5326 (description "This module provides three utility subroutines that make it
5327 easier to develop interactive applications: is_interactive(), interactive(),
5328 and busy().")
5329 (license (package-license perl))))
5330
5331 (define-public perl-io-pager
5332 (package
5333 (name "perl-io-pager")
5334 (version "0.44")
5335 (source
5336 (origin
5337 (method url-fetch)
5338 (uri (string-append
5339 "mirror://cpan/authors/id/J/JP/JPIERCE/IO-Pager-"
5340 version
5341 ".tgz"))
5342 (sha256
5343 (base32 "0h52gplhc3rij18xc4ngpg5kqv6mylxfzig18xll1aqda8iwa8kl"))))
5344 (build-system perl-build-system)
5345 (arguments
5346 '(#:phases
5347 (modify-phases %standard-phases
5348 (add-after 'unpack 'patch-less
5349 (lambda _
5350 (substitute* "lib/IO/Pager.pm"
5351 (("/usr/local/bin/less', '/usr/bin/less")
5352 (which "less")))
5353 #t)))))
5354 (propagated-inputs
5355 `(("perl-file-which" ,perl-file-which)))
5356 (inputs
5357 `(("less" ,less)))
5358 (home-page "https://metacpan.org/release/IO-Pager")
5359 (synopsis "Select a pager and pipe text to it")
5360 (description
5361 "@code{IO::Pager} can be used to locate an available pager and use it to
5362 display output if a TTY is in use.")
5363 (license (package-license perl))))
5364
5365 (define-public perl-io-string
5366 (package
5367 (name "perl-io-string")
5368 (version "1.08")
5369 (source
5370 (origin
5371 (method url-fetch)
5372 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
5373 "IO-String-" version ".tar.gz"))
5374 (sha256
5375 (base32
5376 "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
5377 (build-system perl-build-system)
5378 (home-page "https://metacpan.org/release/IO-String")
5379 (synopsis "Emulate file interface for in-core strings")
5380 (description "IO::String is an IO::File (and IO::Handle) compatible class
5381 that reads or writes data from in-core strings.")
5382 (license (package-license perl))))
5383
5384 (define-public perl-io-stringy
5385 (package
5386 (name "perl-io-stringy")
5387 (version "2.111")
5388 (source
5389 (origin
5390 (method url-fetch)
5391 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
5392 "IO-stringy-" version ".tar.gz"))
5393 (sha256
5394 (base32
5395 "178rpx0ym5l2m9mdmpnr92ziscvchm541w94fd7ygi6311kgsrwc"))))
5396 (build-system perl-build-system)
5397 (home-page "https://metacpan.org/release/IO-stringy")
5398 (synopsis "IO:: interface for reading/writing an array of lines")
5399 (description "This toolkit primarily provides modules for performing both
5400 traditional and object-oriented i/o) on things *other* than normal
5401 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
5402 (license (package-license perl))))
5403
5404 (define-public perl-io-tty
5405 (package
5406 (name "perl-io-tty")
5407 (version "1.14")
5408 (source (origin
5409 (method url-fetch)
5410 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
5411 version ".tar.gz"))
5412 (sha256
5413 (base32
5414 "1dcmxdhrapxvvzlfp6yzz7655f3c6x8jrw0md8ndp2qj27iy9wsi"))))
5415 (build-system perl-build-system)
5416 (home-page "https://metacpan.org/release/IO-Tty")
5417 (synopsis "Perl interface to pseudo ttys")
5418 (description
5419 "This package provides the @code{IO::Pty} and @code{IO::Tty} Perl
5420 interfaces to pseudo ttys.")
5421 (license (package-license perl))))
5422
5423 (define-public perl-ipc-cmd
5424 (package
5425 (name "perl-ipc-cmd")
5426 (version "1.02")
5427 (source
5428 (origin
5429 (method url-fetch)
5430 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/IPC-Cmd-"
5431 version ".tar.gz"))
5432 (sha256
5433 (base32 "0qvh0qpvc22r4kysfy8srxnhni677lvc8hr18kjrdkmb58jjj8ah"))))
5434 (build-system perl-build-system)
5435 (home-page "https://metacpan.org/release/IPC-Cmd")
5436 (synopsis "Run interactive command-line programs")
5437 (description "@code{IPC::Cmd} allows for the searching and execution of
5438 any binary on your system. It adheres to verbosity settings and is able to
5439 run interactively. It also has an option to capture output/error buffers.")
5440 (license (package-license perl))))
5441
5442 (define-public perl-ipc-run
5443 (package
5444 (name "perl-ipc-run")
5445 (version "20180523.0")
5446 (source
5447 (origin
5448 (method url-fetch)
5449 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
5450 "IPC-Run-" version ".tar.gz"))
5451 (sha256
5452 (base32 "0bvckcs1629ifqfb68xkapd4a74fd5qbg6z9qs8i6rx4z3nxfl1q"))))
5453 (build-system perl-build-system)
5454 (propagated-inputs
5455 `(("perl-io-tty" ,perl-io-tty)))
5456 (arguments
5457 `(#:phases (modify-phases %standard-phases
5458 (add-before
5459 'check 'disable-w32-test
5460 (lambda _
5461 ;; This test fails, and we're not really interested in
5462 ;; it, so disable it.
5463 (delete-file "t/win32_compile.t")
5464 #t)))))
5465 (home-page "https://metacpan.org/release/IPC-Run")
5466 (synopsis "Run system() and background procs w/ piping, redirs, ptys")
5467 (description "IPC::Run allows you run and interact with child processes
5468 using files, pipes, and pseudo-ttys. Both system()-style and scripted usages
5469 are supported and may be mixed. Likewise, functional and OO API styles are
5470 both supported and may be mixed.")
5471 (license (package-license perl))))
5472
5473 (define-public perl-ipc-run3
5474 (package
5475 (name "perl-ipc-run3")
5476 (version "0.048")
5477 (source (origin
5478 (method url-fetch)
5479 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5480 "IPC-Run3-" version ".tar.gz"))
5481 (sha256
5482 (base32
5483 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
5484 (build-system perl-build-system)
5485 (synopsis "Run a subprocess with input/output redirection")
5486 (description
5487 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
5488 stdout, and/or stderr to files and perl data structures. It aims to satisfy
5489 99% of the need for using system, qx, and open3 with a simple, extremely
5490 Perlish API and none of the bloat and rarely used features of IPC::Run.")
5491 (home-page "https://metacpan.org/release/IPC-Run3")
5492 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
5493 ;; licenses, any version."
5494 (license (list license:bsd-3 license:gpl3+))))
5495
5496 (define-public perl-ipc-sharelite
5497 (package
5498 (name "perl-ipc-sharelite")
5499 (version "0.17")
5500 (source
5501 (origin
5502 (method url-fetch)
5503 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
5504 "IPC-ShareLite-" version ".tar.gz"))
5505 (sha256
5506 (base32
5507 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
5508 (build-system perl-build-system)
5509 (home-page "https://metacpan.org/release/IPC-ShareLite")
5510 (synopsis "Lightweight interface to shared memory")
5511 (description "IPC::ShareLite provides a simple interface to shared memory,
5512 allowing data to be efficiently communicated between processes.")
5513 (license (package-license perl))))
5514
5515 (define-public perl-ipc-system-simple
5516 (package
5517 (name "perl-ipc-system-simple")
5518 (version "1.26")
5519 (source (origin
5520 (method url-fetch)
5521 (uri (string-append
5522 "mirror://cpan/authors/id/J/JK/JKEENAN/IPC-System-Simple-"
5523 version ".tar.gz"))
5524 (sha256
5525 (base32
5526 "1zb5ni8ikaq6s60amwdsq69nz8gxl484yiga6ax5nqp8v0hpy5sp"))))
5527 (build-system perl-build-system)
5528 (home-page "https://metacpan.org/release/IPC-System-Simple")
5529 (synopsis "Run commands simply, with detailed diagnostics")
5530 (description "Calling Perl's in-built @code{system} function is easy,
5531 determining if it was successful is hard. Let's face it, @code{$?} isn't the
5532 nicest variable in the world to play with, and even if you do check it,
5533 producing a well-formatted error string takes a lot of work.
5534
5535 @code{IPC::System::Simple} takes the hard work out of calling external
5536 commands.")
5537 (license (package-license perl))))
5538
5539 (define-public perl-json
5540 (package
5541 (name "perl-json")
5542 (version "4.02")
5543 (source
5544 (origin
5545 (method url-fetch)
5546 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
5547 "JSON-" version ".tar.gz"))
5548 (sha256
5549 (base32
5550 "0z32x2lijij28c9fhmzgxc41i9nw24fyvd2a8ajs5zw9b9sqhjj4"))))
5551 (build-system perl-build-system)
5552 (propagated-inputs
5553 `(("perl-json-xs" ,perl-json-xs))) ;recommended
5554 (home-page "https://metacpan.org/release/JSON")
5555 (synopsis "JSON encoder/decoder for Perl")
5556 (description "This module converts Perl data structures to JSON and vice
5557 versa using either JSON::XS or JSON::PP.")
5558 (license (package-license perl))))
5559
5560 (define-public perl-json-any
5561 (package
5562 (name "perl-json-any")
5563 (version "1.39")
5564 (source
5565 (origin
5566 (method url-fetch)
5567 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5568 "JSON-Any-" version ".tar.gz"))
5569 (sha256
5570 (base32
5571 "1hspg6khjb38syn59cysnapc1q77qgavfym3fqr6l2kiydf7ajdf"))))
5572 (build-system perl-build-system)
5573 (native-inputs
5574 `(("perl-test-fatal" ,perl-test-fatal)
5575 ("perl-test-requires" ,perl-test-requires)
5576 ("perl-test-warnings" ,perl-test-warnings)
5577 ("perl-test-without-module" ,perl-test-without-module)))
5578 (propagated-inputs
5579 `(("perl-namespace-clean" ,perl-namespace-clean)))
5580 (home-page "https://metacpan.org/release/JSON-Any")
5581 (synopsis "Wrapper for Perl JSON classes")
5582 (description
5583 "This module tries to provide a coherent API to bring together the
5584 various JSON modules currently on CPAN. This module will allow you to code to
5585 any JSON API and have it work regardless of which JSON module is actually
5586 installed.")
5587 (license (package-license perl))))
5588
5589 (define-public perl-json-maybexs
5590 (package
5591 (name "perl-json-maybexs")
5592 (version "1.004003")
5593 (source
5594 (origin
5595 (method url-fetch)
5596 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5597 "JSON-MaybeXS-" version ".tar.gz"))
5598 (sha256
5599 (base32
5600 "1grg8saa318bs4x2wqnww7y0nra7azrzg35bk5pgvkwxzwbkpvjv"))))
5601 (build-system perl-build-system)
5602 (native-inputs
5603 `(("perl-test-needs" ,perl-test-needs)))
5604 (inputs
5605 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
5606 (home-page "https://metacpan.org/release/JSON-MaybeXS")
5607 (synopsis "Cpanel::JSON::XS with fallback")
5608 (description "This module first checks to see if either Cpanel::JSON::XS
5609 or JSON::XS is already loaded, in which case it uses that module. Otherwise
5610 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
5611 either uses the first module it finds or throws an error.")
5612 (license (package-license perl))))
5613
5614 (define-public perl-json-xs
5615 (package
5616 (name "perl-json-xs")
5617 (version "4.0")
5618 (source
5619 (origin
5620 (method url-fetch)
5621 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
5622 "JSON-XS-" version ".tar.gz"))
5623 (sha256
5624 (base32
5625 "0118yrzagwlcfj5yldn3h23zzqs2rx282jlm068nf7fjlvy4m7s7"))))
5626 (build-system perl-build-system)
5627 (native-inputs
5628 `(("perl-canary-stability" ,perl-canary-stability)))
5629 (propagated-inputs
5630 `(("perl-common-sense" ,perl-common-sense)
5631 ("perl-types-serialiser" ,perl-types-serialiser)))
5632 (home-page "https://metacpan.org/release/JSON-XS")
5633 (synopsis "JSON serialising/deserialising for Perl")
5634 (description "This module converts Perl data structures to JSON and vice
5635 versa.")
5636 (license (package-license perl))))
5637
5638 (define-public perl-lexical-sealrequirehints
5639 (package
5640 (name "perl-lexical-sealrequirehints")
5641 (version "0.011")
5642 (source
5643 (origin
5644 (method url-fetch)
5645 (uri (string-append
5646 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Lexical-SealRequireHints-"
5647 version
5648 ".tar.gz"))
5649 (sha256
5650 (base32
5651 "0fh1arpr0hsj7skbn97yfvbk22pfcrpcvcfs15p5ss7g338qx4cy"))))
5652 (build-system perl-build-system)
5653 (native-inputs
5654 `(("perl-module-build" ,perl-module-build)))
5655 (home-page "https://metacpan.org/release/Lexical-SealRequireHints")
5656 (synopsis "Prevent leakage of lexical hints")
5657 (description
5658 "Lexical::SealRequireHints prevents leakage of lexical hints")
5659 (license (package-license perl))))
5660
5661 (define-public perl-locale-maketext-lexicon
5662 (package
5663 (name "perl-locale-maketext-lexicon")
5664 (version "1.00")
5665 (source
5666 (origin
5667 (method url-fetch)
5668 (uri (string-append "mirror://cpan/authors/id/D/DR/DRTECH/"
5669 "Locale-Maketext-Lexicon-" version ".tar.gz"))
5670 (sha256
5671 (base32 "0z6w3m6f3r29ljicdigsyvpa9w9j2m65l4gjxcw0wgwdll26ngxp"))))
5672 (build-system perl-build-system)
5673 (propagated-inputs
5674 `(("perl-html-parser" ,perl-html-parser)
5675 ("perl-lingua-en-sentence" ,perl-lingua-en-sentence)
5676 ("perl-ppi" ,perl-ppi)
5677 ("perl-template-toolkit" ,perl-template-toolkit)
5678 ("perl-text-haml" ,perl-text-haml)
5679 ("perl-yaml" ,perl-yaml)))
5680 (home-page "https://metacpan.org/release/Locale-Maketext-Lexicon")
5681 (synopsis "Use other catalog formats in Maketext")
5682 (description
5683 "This module provides lexicon-handling modules to read from other
5684 localization formats, such as Gettext, Msgcat, and so on.")
5685 (license license:x11)))
5686
5687 (define-public perl-log-any
5688 (package
5689 (name "perl-log-any")
5690 (version "1.707")
5691 (source
5692 (origin
5693 (method url-fetch)
5694 (uri (string-append "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-"
5695 version ".tar.gz"))
5696 (sha256
5697 (base32 "1wb55ib4gvk8h5pjb6hliqg7li1xjk420q3w5r33f9p1ps60ylbl"))))
5698 (build-system perl-build-system)
5699 (home-page "https://metacpan.org/release/Log-Any")
5700 (synopsis "Bringing loggers and listeners together")
5701 (description "@code{Log::Any} provides a standard log production API for
5702 modules. @code{Log::Any::Adapter} allows applications to choose the mechanism
5703 for log consumption, whether screen, file or another logging mechanism like
5704 @code{Log::Dispatch} or @code{Log::Log4perl}.
5705
5706 A CPAN module uses @code{Log::Any} to get a log producer object. An
5707 application, in turn, may choose one or more logging mechanisms via
5708 @code{Log::Any::Adapter}, or none at all.
5709
5710 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
5711 itself, which makes it appropriate for even small CPAN modules to use. It
5712 defaults to @code{null} logging activity, so a module can safely log without
5713 worrying about whether the application has chosen (or will ever choose) a
5714 logging mechanism.")
5715 (license (package-license perl))))
5716
5717 (define-public perl-log-any-adapter-log4perl
5718 (package
5719 (name "perl-log-any-adapter-log4perl")
5720 (version "0.09")
5721 (source
5722 (origin
5723 (method url-fetch)
5724 (uri (string-append
5725 "mirror://cpan/authors/id/P/PR/PREACTION/Log-Any-Adapter-Log4perl-"
5726 version
5727 ".tar.gz"))
5728 (sha256
5729 (base32
5730 "19f1drqnzr6g4xwjm6jk4iaa3zmiax8bzxqch04f4jr12bjd75qi"))))
5731 (build-system perl-build-system)
5732 (propagated-inputs
5733 `(("perl-log-any" ,perl-log-any)
5734 ("perl-log-log4perl" ,perl-log-log4perl)))
5735 (home-page
5736 "https://metacpan.org/release/Log-Any-Adapter-Log4perl")
5737 (synopsis "Log::Any adapter for Log::Log4perl")
5738 (description "@code{Log::Any::Adapter::Log4perl} provides a
5739 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
5740 (license (package-license perl))))
5741
5742 (define-public perl-log-log4perl
5743 (package
5744 (name "perl-log-log4perl")
5745 (version "1.49")
5746 (source
5747 (origin
5748 (method url-fetch)
5749 (uri (string-append
5750 "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
5751 version
5752 ".tar.gz"))
5753 (sha256
5754 (base32
5755 "05ifhx1lmv91dbs9ck2zbjrkhh8z9g32gi6gxdmwnilia5zihfdp"))))
5756 (build-system perl-build-system)
5757 (home-page
5758 "https://metacpan.org/release/Log-Log4perl")
5759 (synopsis "Log4j implementation for Perl")
5760 (description "@code{Log::Log4perl} lets you remote-control and fine-tune
5761 the logging behaviour of your system from the outside. It implements the
5762 widely popular (Java-based) Log4j logging package in pure Perl.")
5763 (license (package-license perl))))
5764
5765 (define-public perl-log-report-optional
5766 (package
5767 (name "perl-log-report-optional")
5768 (version "1.06")
5769 (source (origin
5770 (method url-fetch)
5771 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5772 "Log-Report-Optional-" version ".tar.gz"))
5773 (sha256
5774 (base32
5775 "11ciiaq8vy186m7mzj8pcncwi8p9qp13wblvk427g1pnqjzlda0g"))))
5776 (build-system perl-build-system)
5777 (propagated-inputs
5778 `(("perl-string-print" ,perl-string-print)))
5779 (home-page "https://metacpan.org/release/Log-Report-Optional")
5780 (synopsis "Log::Report in the lightest form")
5781 (description
5782 "This module allows libraries to have a dependency to a small module
5783 instead of the full Log-Report distribution. The full power of
5784 @code{Log::Report} is only released when the main program uses that module.
5785 In that case, the module using the @code{Optional} will also use the full
5786 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
5787 version.")
5788 (license (package-license perl))))
5789
5790 (define-public perl-log-report
5791 (package
5792 (name "perl-log-report")
5793 (version "1.10")
5794 (source (origin
5795 (method url-fetch)
5796 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5797 "Log-Report-" version ".tar.gz"))
5798 (sha256
5799 (base32
5800 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
5801 (build-system perl-build-system)
5802 (propagated-inputs
5803 `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
5804 ("perl-log-report-optional" ,perl-log-report-optional)
5805 ("perl-string-print" ,perl-string-print)))
5806 (home-page "https://metacpan.org/release/Log-Report")
5807 (synopsis "Get messages to users and logs")
5808 (description
5809 "@code{Log::Report} combines three tasks which are closely related in
5810 one: logging, exceptions, and translations.")
5811 (license (package-license perl))))
5812
5813 (define-public perl-libintl-perl
5814 (package
5815 (name "perl-libintl-perl")
5816 (version "1.32")
5817 (source
5818 (origin
5819 (method url-fetch)
5820 (uri (string-append "mirror://cpan/authors/id/G/GU/GUIDO/"
5821 "libintl-perl-" version ".tar.gz"))
5822 (sha256
5823 (base32 "19gbbh9w3rl805mv6mg1q80fsrg610h098qhf7ycnkjnyac84440"))))
5824 (build-system perl-build-system)
5825 (arguments
5826 `(#:phases
5827 (modify-phases %standard-phases
5828 (add-before 'configure 'set-perl-search-path
5829 (lambda _
5830 ;; Work around "dotless @INC" build failure.
5831 (setenv "PERL5LIB" (string-append (getcwd) ":"
5832 (getenv "PERL5LIB")))
5833 #t)))))
5834 (propagated-inputs
5835 `(("perl-file-sharedir" ,perl-file-sharedir)))
5836 (home-page "https://metacpan.org/release/libintl-perl")
5837 (synopsis "High-level interface to Uniforum message translation")
5838 (description "This package is an internationalization library for Perl
5839 that aims to be compatible with the Uniforum message translations system as
5840 implemented for example in GNU gettext.")
5841 (license license:gpl3+)))
5842
5843 (define-public perl-lingua-en-sentence
5844 (package
5845 (name "perl-lingua-en-sentence")
5846 (version "0.31")
5847 (source
5848 (origin
5849 (method url-fetch)
5850 (uri (string-append "mirror://cpan/authors/id/K/KI/KIMRYAN/"
5851 "Lingua-EN-Sentence-" version ".tar.gz"))
5852 (sha256
5853 (base32 "11hlg92khd2azbxndnffsj9lggbxb3lqfdbwc6asr1c9lxlqddms"))))
5854 (build-system perl-build-system)
5855 (native-inputs
5856 `(("perl-module-build" ,perl-module-build)))
5857 (home-page "https://metacpan.org/release/Lingua-EN-Sentence")
5858 (synopsis "Split text into sentences")
5859 (description
5860 "The Lingua::EN::Sentence module contains the function get_sentences,
5861 which splits text into its constituent sentences, based on a regular
5862 expression and a list of abbreviations (built in and given).")
5863 (license license:perl-license)))
5864
5865 (define-public perl-lingua-translit
5866 (package
5867 (name "perl-lingua-translit")
5868 (version "0.28")
5869 (source
5870 (origin
5871 (method url-fetch)
5872 (uri (string-append "mirror://cpan/authors/id/A/AL/ALINKE/"
5873 "Lingua-Translit-" version ".tar.gz"))
5874 (sha256
5875 (base32
5876 "1qgap0j0ixmif309dvbqca7sy8xha9xgnj9s2lvh8qrczkc92gqi"))))
5877 (build-system perl-build-system)
5878 (home-page "https://metacpan.org/release/Lingua-Translit")
5879 (synopsis "Transliterate text between writing systems")
5880 (description "@code{Lingua::Translit} can be used to convert text from one
5881 writing system to another, based on national or international transliteration
5882 tables. Where possible a reverse transliteration is supported.")
5883 (license (package-license perl))))
5884
5885 (define-public perl-list-allutils
5886 (package
5887 (name "perl-list-allutils")
5888 (version "0.09")
5889 (source
5890 (origin
5891 (method url-fetch)
5892 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
5893 "List-AllUtils-" version ".tar.gz"))
5894 (sha256
5895 (base32
5896 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
5897 (build-system perl-build-system)
5898 (native-inputs
5899 `(("perl-test-warnings" ,perl-test-warnings)))
5900 (propagated-inputs
5901 `(("perl-list-moreutils" ,perl-list-moreutils)
5902 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
5903 (home-page "https://metacpan.org/release/List-AllUtils")
5904 (synopsis "Combination of List::Util and List::MoreUtils")
5905 (description "This module exports all of the functions that either
5906 List::Util or List::MoreUtils defines, with preference to List::Util.")
5907 (license (package-license perl))))
5908
5909 (define-public perl-list-compare
5910 (package
5911 (name "perl-list-compare")
5912 (version "0.53")
5913 (source
5914 (origin
5915 (method url-fetch)
5916 (uri (string-append
5917 "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
5918 version
5919 ".tar.gz"))
5920 (sha256
5921 (base32
5922 "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
5923 (build-system perl-build-system)
5924 (native-inputs
5925 `(("perl-io-captureoutput" ,perl-io-captureoutput)))
5926 (home-page "https://metacpan.org/release/List-Compare")
5927 (synopsis "Compare elements of two or more lists")
5928 (description "@code{List::Compare} provides a module to perform
5929 comparative operations on two or more lists. Provided operations include
5930 intersections, unions, unique elements, complements and many more.")
5931 (license (package-license perl))))
5932
5933 (define-public perl-list-moreutils
5934 (package
5935 (name "perl-list-moreutils")
5936 (version "0.430")
5937 (source
5938 (origin
5939 (method url-fetch)
5940 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
5941 "List-MoreUtils-" version ".tar.gz"))
5942 (sha256
5943 (base32 "09v5cipjf634a1176wy2wicibzz51lry0d0yim9rnbfl5j2ggcb3"))))
5944 (build-system perl-build-system)
5945 (arguments
5946 `(#:phases
5947 (modify-phases %standard-phases
5948 (add-before 'configure 'set-perl-search-path
5949 (lambda _
5950 ;; Work around "dotless @INC" build failure.
5951 (setenv "PERL5LIB"
5952 (string-append (getcwd) ":"
5953 (getenv "PERL5LIB")))
5954 #t)))))
5955 (native-inputs
5956 `(("perl-config-autoconf" ,perl-config-autoconf)
5957 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5958 (propagated-inputs
5959 `(("perl-exporter-tiny" ,perl-exporter-tiny)
5960 ("perl-list-moreutils-xs" ,perl-list-moreutils-xs)))
5961 (home-page "https://metacpan.org/release/List-MoreUtils")
5962 (synopsis "Provide the stuff missing in List::Util")
5963 (description "List::MoreUtils provides some trivial but commonly needed
5964 functionality on lists which is not going to go into List::Util.")
5965 (license (package-license perl))))
5966
5967 (define-public perl-list-moreutils-xs
5968 (package
5969 (name "perl-list-moreutils-xs")
5970 (version "0.430")
5971 (source
5972 (origin
5973 (method url-fetch)
5974 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/List-MoreUtils-XS-"
5975 version ".tar.gz"))
5976 (sha256
5977 (base32 "0hmjkhmk1qlzbg8skq7g1zral07k1x0fk4w2fpcfr7hpgkaldkp8"))))
5978 (build-system perl-build-system)
5979 (native-inputs
5980 `(("perl-config-autoconf" ,perl-config-autoconf)
5981 ("perl-inc-latest" ,perl-inc-latest)
5982 ("perl-test-leaktrace" ,perl-test-leaktrace)))
5983 (home-page "https://metacpan.org/release/List-MoreUtils-XS")
5984 (synopsis "Provide the stuff missing in List::Util in XS")
5985 (description "@code{List::MoreUtils::XS} provides some trivial but
5986 commonly needed functionality on lists which is not going to go into
5987 @code{List::Util}.")
5988 (license license:asl2.0)))
5989
5990 (define-public perl-list-someutils
5991 (package
5992 (name "perl-list-someutils")
5993 (version "0.56")
5994 (source
5995 (origin
5996 (method url-fetch)
5997 (uri (string-append
5998 "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
5999 version
6000 ".tar.gz"))
6001 (sha256
6002 (base32 "1xw9dzg949997b10y6zgzrmhmk2ap274qivnk0wc1033x2fdk9za"))))
6003 (build-system perl-build-system)
6004 (native-inputs
6005 `(("perl-test-leaktrace" ,perl-test-leaktrace)))
6006 (inputs
6007 `(("perl-exporter-tiny" ,perl-exporter-tiny)
6008 ("perl-module-implementation"
6009 ,perl-module-implementation)))
6010 (home-page "https://metacpan.org/release/List-SomeUtils")
6011 (synopsis "Provide the stuff missing in List::Util")
6012 (description "@code{List::SomeUtils} provides some trivial but commonly
6013 needed functionality on lists which is not going to go into @code{List::Util}.
6014
6015 All of the below functions are implementable in only a couple of lines of Perl
6016 code. Using the functions from this module however should give slightly
6017 better performance as everything is implemented in C. The pure-Perl
6018 implementation of these functions only serves as a fallback in case the C
6019 portions of this module couldn't be compiled on this machine.")
6020 (license (package-license perl))))
6021
6022 (define-public perl-mailtools
6023 (package
6024 (name "perl-mailtools")
6025 (version "2.21")
6026 (source
6027 (origin
6028 (method url-fetch)
6029 (uri (string-append
6030 "mirror://cpan/authors/id/M/MA/MARKOV/MailTools-"
6031 version
6032 ".tar.gz"))
6033 (sha256
6034 (base32
6035 "1js43bp2dnd8n2rv8clsv749166jnyqnc91k4wkkmw5n4rlbvnaa"))))
6036 (build-system perl-build-system)
6037 (propagated-inputs
6038 `(("perl-timedate" ,perl-timedate)))
6039 (home-page
6040 "https://metacpan.org/release/MailTools")
6041 (synopsis "Bundle of ancient email modules")
6042 (description "MailTools contains the following modules:
6043 @table @asis
6044 @item Mail::Address
6045 Parse email address from a header line.
6046 @item Mail::Cap
6047 Interpret mailcap files: mappings of file-types to applications as used by
6048 many command-line email programs.
6049 @item Mail::Field
6050 Simplifies access to (some) email header fields. Used by Mail::Header.
6051 @item Mail::Filter
6052 Process Mail::Internet messages.
6053 @item Mail::Header
6054 Collection of Mail::Field objects, representing the header of a Mail::Internet
6055 object.
6056 @item Mail::Internet
6057 Represents a single email message, with header and body.
6058 @item Mail::Mailer
6059 Send Mail::Internet emails via direct smtp or local MTA's.
6060 @item Mail::Send
6061 Build a Mail::Internet object, and then send it out using Mail::Mailer.
6062 @item Mail::Util
6063 \"Smart functions\" you should not depend on.
6064 @end table")
6065 (license license:perl-license)))
6066
6067 (define-public perl-mail-sendmail
6068 (package
6069 (name "perl-mail-sendmail")
6070 (version "0.80")
6071 (source
6072 (origin
6073 (method url-fetch)
6074 (uri (string-append
6075 "mirror://cpan/authors/id/N/NE/NEILB/Mail-Sendmail-"
6076 version
6077 ".tar.gz"))
6078 (sha256
6079 (base32
6080 "1r38qbkj7jwj8cqy1rnqzkk81psxi08b1aiq392817f3bk5ri2jv"))))
6081 (build-system perl-build-system)
6082 (arguments `(#:tests? #f)) ;socket not available during build
6083 (home-page "https://metacpan.org/release/Mail-Sendmail")
6084 (synopsis "Simple platform independent mailer")
6085 (description "Mail::Sendmail is a pure perl module that provides a
6086 simple means to send email from a perl script. The module only
6087 requires Perl5 and a network connection.")
6088 (license license:perl-license)))
6089
6090 (define-public perl-math-bezier
6091 (package
6092 (name "perl-math-bezier")
6093 (version "0.01")
6094 (source (origin
6095 (method url-fetch)
6096 (uri (string-append
6097 "mirror://cpan/authors/id/A/AB/ABW/Math-Bezier-"
6098 version ".tar.gz"))
6099 (sha256
6100 (base32
6101 "1f5qwrb7vvf8804myb2pcahyxffqm9zvfal2n6myzw7x8py1ba0i"))))
6102 (build-system perl-build-system)
6103 (home-page "https://metacpan.org/release/Math-Bezier")
6104 (synopsis "Solution of bezier curves")
6105 (description "This module implements the algorithm for the solution of Bezier
6106 curves as presented by Robert D Miller in Graphics Gems V, \"Quick and Simple
6107 Bezier Curve Drawing\".")
6108 (license license:perl-license)))
6109
6110 (define-public perl-math-round
6111 (package
6112 (name "perl-math-round")
6113 (version "0.07")
6114 (source (origin
6115 (method url-fetch)
6116 (uri (string-append
6117 "mirror://cpan/authors/id/G/GR/GROMMEL/Math-Round-"
6118 version ".tar.gz"))
6119 (sha256
6120 (base32
6121 "09wkvqj4hfq9y0fimri967rmhnq90dc2wf20lhlmqjp5hsd359vk"))))
6122 (build-system perl-build-system)
6123 (home-page "https://metacpan.org/release/Math-Round")
6124 (synopsis "Perl extension for rounding numbers")
6125 (description "@code{Math::Round} provides functions to round numbers,
6126 both positive and negative, in various ways.")
6127 (license license:perl-license)))
6128
6129 (define-public perl-math-vecstat
6130 (package
6131 (name "perl-math-vecstat")
6132 (version "0.08")
6133 (source (origin
6134 (method url-fetch)
6135 (uri (string-append
6136 "mirror://cpan/authors/id/A/AS/ASPINELLI/Math-VecStat-"
6137 version ".tar.gz"))
6138 (sha256
6139 (base32
6140 "03bdcl9pn2bc9b50c50nhnr7m9wafylnb3v21zlch98h9c78x6j0"))))
6141 (build-system perl-build-system)
6142 (home-page "http://search.cpan.org/dist/Math-VecStat")
6143 (synopsis "Basic numeric stats on vectors")
6144 (description "This package provides some basic statistics on numerical
6145 vectors. All the subroutines can take a reference to the vector to be
6146 operated on.")
6147 (license (package-license perl))))
6148
6149 (define-public perl-memoize
6150 (package
6151 (name "perl-memoize")
6152 (version "1.03")
6153 (source (origin
6154 (method url-fetch)
6155 (uri (string-append
6156 "mirror://cpan/authors/id/M/MJ/MJD/Memoize-"
6157 version".tgz"))
6158 (sha256
6159 (base32
6160 "1wysq3wrmf1s7s3phimzn7n0dswik7x53apykzgb0l2acigwqfaj"))))
6161 (build-system perl-build-system)
6162 (home-page "https://metacpan.org/release/Memoize")
6163 (synopsis "Make functions faster by trading space for time")
6164 (description "This package transparently speeds up functions by caching
6165 return values, trading space for time.")
6166 (license license:perl-license)))
6167
6168 (define-public perl-memoize-expirelru
6169 (package
6170 (name "perl-memoize-expirelru")
6171 (version "0.56")
6172 (source
6173 (origin
6174 (method url-fetch)
6175 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6176 "Memoize-ExpireLRU-" version ".tar.gz"))
6177 (sha256
6178 (base32
6179 "1xnp3jqabl4il5kfadlqimbxhzsbm7gpwrgw0m5s5fdsrc0n70zf"))))
6180 (build-system perl-build-system)
6181 (home-page "https://metacpan.org/release/Memoize-ExpireLRU")
6182 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
6183 (description "This module implements an expiry policy for Memoize that
6184 follows LRU semantics, that is, the last n results, where n is specified as
6185 the argument to the CACHESIZE parameter, will be cached.")
6186 (license (package-license perl))))
6187
6188 (define-public perl-mime-charset
6189 (package
6190 (name "perl-mime-charset")
6191 (version "1.012.2")
6192 (source (origin
6193 (method url-fetch)
6194 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
6195 "MIME-Charset-" version ".tar.gz"))
6196 (sha256
6197 (base32
6198 "04qxgcg9mvia121i3zcqxgp20y0d9kg0qv6hddk93ian0af7g347"))))
6199 (build-system perl-build-system)
6200 (home-page "https://metacpan.org/release/MIME-Charset")
6201 (synopsis "Charset information for MIME messages")
6202 (description
6203 "@code{MIME::Charset} provides information about character sets used for
6204 MIME messages on Internet.")
6205 (license (package-license perl))))
6206
6207 (define-public perl-mime-tools
6208 (package
6209 (name "perl-mime-tools")
6210 (version "5.509")
6211 (source
6212 (origin
6213 (method url-fetch)
6214 (uri (string-append
6215 "mirror://cpan/authors/id/D/DS/DSKOLL/MIME-tools-"
6216 version
6217 ".tar.gz"))
6218 (sha256
6219 (base32
6220 "0wv9rzx5j1wjm01c3dg48qk9wlbm6iyf91j536idk09xj869ymv4"))))
6221 (build-system perl-build-system)
6222 (native-inputs
6223 `(("perl-test-deep" ,perl-test-deep)))
6224 (inputs
6225 `(("perl-convert-binhex" ,perl-convert-binhex)))
6226 (propagated-inputs
6227 `(("perl-mailtools" ,perl-mailtools)))
6228 (home-page
6229 "https://metacpan.org/release/MIME-tools")
6230 (synopsis "Tools to manipulate MIME messages")
6231 (description
6232 "MIME-tools is a collection of Perl5 MIME:: modules for parsing,
6233 decoding, and generating single- or multipart (even nested multipart) MIME
6234 messages.")
6235 (license license:perl-license)))
6236
6237 (define-public perl-mime-types
6238 (package
6239 (name "perl-mime-types")
6240 (version "2.17")
6241 (source
6242 (origin
6243 (method url-fetch)
6244 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
6245 "MIME-Types-" version ".tar.gz"))
6246 (sha256
6247 (base32
6248 "1xlg7q6h8zyb8534sy0iqn90py18kilg419q6051bwqz5zadfkp0"))))
6249 (build-system perl-build-system)
6250 (home-page "https://metacpan.org/release/MIME-Types")
6251 (synopsis "Definition of MIME types")
6252 (description "This module provides a list of known mime-types, combined
6253 from various sources. For instance, it contains all IANA types and the
6254 knowledge of Apache.")
6255 (license (package-license perl))))
6256
6257 (define-public perl-mixin-linewise
6258 (package
6259 (name "perl-mixin-linewise")
6260 (version "0.108")
6261 (source (origin
6262 (method url-fetch)
6263 (uri (string-append
6264 "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
6265 version ".tar.gz"))
6266 (sha256
6267 (base32
6268 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
6269 (build-system perl-build-system)
6270 (inputs
6271 `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
6272 ("perl-sub-exporter" ,perl-sub-exporter)))
6273 (home-page "https://metacpan.org/release/Mixin-Linewise")
6274 (synopsis "Write your linewise code for handles; this does the rest")
6275 (description "It's boring to deal with opening files for IO, converting
6276 strings to handle-like objects, and all that. With
6277 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
6278 just write a method to handle handles, and methods for handling strings and
6279 file names are added for you.")
6280 (license (package-license perl))))
6281
6282 (define-public perl-modern-perl
6283 (package
6284 (name "perl-modern-perl")
6285 (version "1.20181021")
6286 (source
6287 (origin
6288 (method url-fetch)
6289 (uri (string-append
6290 "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
6291 version ".tar.gz"))
6292 (sha256
6293 (base32 "1if9jbh66z2vm4wwnky41ljnhdlwrh7vzl6pd3w60v3wix92nj0x"))))
6294 (build-system perl-build-system)
6295 (native-inputs
6296 `(("perl-module-build" ,perl-module-build)))
6297 (home-page
6298 "https://metacpan.org/release/Modern-Perl")
6299 (synopsis
6300 "Enable all of the features of Modern Perl with one import")
6301 (description "@code{Modern::Perl} provides a simple way to enable
6302 multiple, by now, standard libraries in a Perl program.")
6303 (license (package-license perl))))
6304
6305 (define-public perl-module-build-tiny
6306 (package
6307 (name "perl-module-build-tiny")
6308 (version "0.039")
6309 (source
6310 (origin
6311 (method url-fetch)
6312 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
6313 "Module-Build-Tiny-" version ".tar.gz"))
6314 (sha256
6315 (base32
6316 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
6317 (build-system perl-build-system)
6318 (native-inputs
6319 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6320 ("perl-extutils-config" ,perl-extutils-config)
6321 ("perl-extutils-helpers" ,perl-extutils-helpers)
6322 ("perl-test-harness" ,perl-test-harness)))
6323 (propagated-inputs
6324 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
6325 ("perl-extutils-config" ,perl-extutils-config)
6326 ("perl-extutils-helpers" ,perl-extutils-helpers)
6327 ("perl-test-harness" ,perl-test-harness)))
6328 (home-page "https://metacpan.org/release/Module-Build-Tiny")
6329 (synopsis "Tiny replacement for Module::Build")
6330 (description "Many Perl distributions use a Build.PL file instead of a
6331 Makefile.PL file to drive distribution configuration, build, test and
6332 installation. Traditionally, Build.PL uses Module::Build as the underlying
6333 build system. This module provides a simple, lightweight, drop-in
6334 replacement. Whereas Module::Build has over 6,700 lines of code; this module
6335 has less than 120, yet supports the features needed by most distributions.")
6336 (license (package-license perl))))
6337
6338 (define-public perl-module-build-withxspp
6339 (package
6340 (name "perl-module-build-withxspp")
6341 (version "0.14")
6342 (source
6343 (origin
6344 (method url-fetch)
6345 (uri (string-append
6346 "mirror://cpan/authors/id/S/SM/SMUELLER/Module-Build-WithXSpp-"
6347 version
6348 ".tar.gz"))
6349 (sha256
6350 (base32
6351 "0d39fjg9c0n820bk3fb50vvlwhdny4hdl69xmlyzql5xzp4cicsk"))))
6352 (build-system perl-build-system)
6353 (native-inputs
6354 `(("perl-module-build" ,perl-module-build)))
6355 (propagated-inputs
6356 `(("perl-extutils-cppguess" ,perl-extutils-cppguess)
6357 ("perl-extutils-xspp" ,perl-extutils-xspp)
6358 ("perl-module-build" ,perl-module-build)))
6359 (home-page
6360 "https://metacpan.org/release/Module-Build-WithXSpp")
6361 (synopsis
6362 "The module provides an XS++ enhanced flavour of Module::Build")
6363 (description "This subclass of Module::Build adds some tools and
6364 processes to make it easier to use for wrapping C++ using XS++
6365 (ExtUtils::XSpp).")
6366 (license (package-license perl))))
6367
6368 (define-public perl-module-build-xsutil
6369 (package
6370 (name "perl-module-build-xsutil")
6371 (version "0.16")
6372 (source (origin
6373 (method url-fetch)
6374 (uri (string-append "mirror://cpan/authors/id/H/HI/HIDEAKIO/"
6375 "Module-Build-XSUtil-" version ".tar.gz"))
6376 (sha256
6377 (base32
6378 "1nrs0b6hmwl3sw3g50b9857qgp5cbbbpl716zwn30h9vwjj2yxhm"))))
6379 (build-system perl-build-system)
6380 (native-inputs
6381 `(("perl-capture-tiny" ,perl-capture-tiny)
6382 ("perl-cwd-guard" ,perl-cwd-guard)
6383 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
6384 ("perl-module-build" ,perl-module-build)))
6385 (propagated-inputs
6386 `(("perl-devel-checkcompiler" ,perl-devel-checkcompiler)))
6387 (home-page "https://metacpan.org/release/Module-Build-XSUtil")
6388 (synopsis "Module::Build class for building XS modules")
6389 (description
6390 "@code{Module::Build::XSUtil} is subclass of @code{Module::Build}
6391 for support building XS modules.
6392
6393 This is a list of a new parameters in the @code{Module::Build::new} method:
6394
6395 @enumerate
6396 @item @code{needs_compiler_c99}: This option checks C99 compiler availability.
6397 @item @code{needs_compiler_cpp}: This option checks C++ compiler availability.
6398 Can also pass @code{extra_compiler_flags} and @code{extra_linker_flags} for C++.
6399 @item @code{generate_ppport_h}: Generate @file{ppport.h} by @code{Devel::PPPort}.
6400 @item @code{generate_xshelper_h}: Generate @file{xshelper.h} which is a helper
6401 header file to include @file{EXTERN.h}, @file{perl.h}, @file{XSUB.h} and
6402 @file{ppport.h}, and defines some portability stuff which are not supported by
6403 @file{ppport.h}.
6404
6405 It is ported from @code{Module::Install::XSUtil}.
6406 @item @code{cc_warnings}: Toggle compiler warnings. Enabled by default.
6407 @item @code{-g options}: Invoke @file{Build.PL} with @code{-g} to enable
6408 debug options.
6409 @end enumerate")
6410 (license (package-license perl))))
6411
6412 (define-public perl-module-find
6413 (package
6414 (name "perl-module-find")
6415 (version "0.13")
6416 (source
6417 (origin
6418 (method url-fetch)
6419 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
6420 "Module-Find-" version ".tar.gz"))
6421 (sha256
6422 (base32
6423 "0s45y5lvd9k89g7lds83c0bn1p29c13hfsbrd7x64jfaf8h8cisa"))))
6424 (build-system perl-build-system)
6425 (home-page "https://metacpan.org/release/Module-Find")
6426 (synopsis "Find and use installed modules in a (sub)category")
6427 (description "Module::Find lets you find and use modules in categories.
6428 This can be useful for auto-detecting driver or plugin modules. You can
6429 differentiate between looking in the category itself or in all
6430 subcategories.")
6431 (license (package-license perl))))
6432
6433 (define-public perl-module-implementation
6434 (package
6435 (name "perl-module-implementation")
6436 (version "0.09")
6437 (source
6438 (origin
6439 (method url-fetch)
6440 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6441 "Module-Implementation-" version ".tar.gz"))
6442 (sha256
6443 (base32
6444 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
6445 (build-system perl-build-system)
6446 (native-inputs
6447 `(("perl-test-fatal" ,perl-test-fatal)
6448 ("perl-test-requires" ,perl-test-requires)))
6449 (propagated-inputs
6450 `(("perl-module-runtime" ,perl-module-runtime)
6451 ("perl-try-tiny" ,perl-try-tiny)))
6452 (home-page "https://metacpan.org/release/Module-Implementation")
6453 (synopsis "Loads alternate underlying implementations for a module")
6454 (description "This module abstracts out the process of choosing one of
6455 several underlying implementations for a module. This can be used to provide
6456 XS and pure Perl implementations of a module, or it could be used to load an
6457 implementation for a given OS or any other case of needing to provide multiple
6458 implementations.")
6459 (license license:artistic2.0)))
6460
6461 (define-public perl-module-install
6462 (package
6463 (name "perl-module-install")
6464 (version "1.19")
6465 (source
6466 (origin
6467 (method url-fetch)
6468 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6469 "Module-Install-" version ".tar.gz"))
6470 (sha256
6471 (base32
6472 "06q12cm97yh4p7qbm0a2p96996ii6ss59qy57z0f7f9svy6sflqs"))))
6473 (build-system perl-build-system)
6474 (native-inputs
6475 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
6476 (propagated-inputs
6477 `(("perl-archive-zip" ,perl-archive-zip)
6478 ("perl-file-homedir" ,perl-file-homedir)
6479 ("perl-file-remove" ,perl-file-remove)
6480 ("perl-json" ,perl-json)
6481 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
6482 ;; would cause a circular dependency with (gnu packages web), so we
6483 ;; leave it out. It may be resolved at runtime, however.
6484 ;("perl-libwww-perl" ,perl-libwww-perl)
6485 ("perl-module-scandeps" ,perl-module-scandeps)
6486 ("perl-par-dist" ,perl-par-dist)
6487 ("perl-yaml-tiny" ,perl-yaml-tiny)))
6488 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
6489 ;; character handling.
6490 (arguments `(#:tests? #f))
6491 (home-page "https://metacpan.org/release/Module-Install")
6492 (synopsis "Standalone, extensible Perl module installer")
6493 (description "Module::Install is a package for writing installers for
6494 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
6495 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
6496 installation version 5.005 or newer.")
6497 (license (package-license perl))))
6498
6499 (define-public perl-module-manifest
6500 (package
6501 (name "perl-module-manifest")
6502 (version "1.09")
6503 (source
6504 (origin
6505 (method url-fetch)
6506 (uri (string-append
6507 "mirror://cpan/authors/id/E/ET/ETHER/Module-Manifest-"
6508 version ".tar.gz"))
6509 (sha256
6510 (base32
6511 "16skpm804a19gsgxzn1wba3lmvc7cx5q8ly4srpyd82yy47zi5d3"))))
6512 (build-system perl-build-system)
6513 (native-inputs
6514 `(("perl-test-exception" ,perl-test-exception)
6515 ("perl-test-warn" ,perl-test-warn)))
6516 (propagated-inputs
6517 `(("perl-params-util" ,perl-params-util)))
6518 (home-page "https://metacpan.org/release/Module-Manifest")
6519 (synopsis "Parse and examine a Perl distribution @file{MANIFEST} file")
6520 (description
6521 "@code{Module::Manifest} is a simple utility module created originally for
6522 use in @code{Module::Inspector}.
6523
6524 It can load a @file{MANIFEST} file that comes in a Perl distribution tarball,
6525 examine the contents, and perform some simple tasks. It can also load the
6526 @file{MANIFEST.SKIP} file and check that.")
6527 (license license:perl-license)))
6528
6529 (define-public perl-module-pluggable
6530 (package
6531 (name "perl-module-pluggable")
6532 (version "5.2")
6533 (source
6534 (origin
6535 (method url-fetch)
6536 (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
6537 "Module-Pluggable-" version ".tar.gz"))
6538 (sha256
6539 (base32
6540 "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
6541 (patches (search-patches "perl-module-pluggable-search.patch"))))
6542 (build-system perl-build-system)
6543 (home-page "https://metacpan.org/release/Module-Pluggable")
6544 (synopsis "Give your Perl module the ability to have plugins")
6545 (description "This module provides a simple but extensible way of having
6546 @code{plugins} for your Perl module.")
6547 (license (package-license perl))))
6548
6549 (define-public perl-module-runtime
6550 (package
6551 (name "perl-module-runtime")
6552 (version "0.016")
6553 (source
6554 (origin
6555 (method url-fetch)
6556 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
6557 "Module-Runtime-" version ".tar.gz"))
6558 (sha256
6559 (base32
6560 "097hy2czwkxlppri32m599ph0xfvfsbf0a5y23a4fdc38v32wc38"))))
6561 (build-system perl-build-system)
6562 (native-inputs `(("perl-module-build" ,perl-module-build)))
6563 (home-page "https://metacpan.org/release/Module-Runtime")
6564 (synopsis "Perl runtime module handling")
6565 (description "The functions exported by this module deal with runtime
6566 handling of Perl modules, which are normally handled at compile time.")
6567 (license (package-license perl))))
6568
6569 (define-public perl-module-runtime-conflicts
6570 (package
6571 (name "perl-module-runtime-conflicts")
6572 (version "0.003")
6573 (source
6574 (origin
6575 (method url-fetch)
6576 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6577 "Module-Runtime-Conflicts-" version ".tar.gz"))
6578 (sha256
6579 (base32
6580 "0x9qfg4pq70v1rl9dfk775fmca7ia308m24vfy8zww4c0dsxqz3h"))))
6581 (build-system perl-build-system)
6582 (native-inputs
6583 `(("perl-module-build" ,perl-module-build)))
6584 (propagated-inputs
6585 `(("perl-module-runtime" ,perl-module-runtime)
6586 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
6587 (home-page "https://metacpan.org/release/Module-Runtime-Conflicts")
6588 (synopsis "Provide information on conflicts for Module::Runtime")
6589 (description "This module provides conflicts checking for Module::Runtime,
6590 which had a recent release that broke some versions of Moose. It is called
6591 from Moose::Conflicts and moose-outdated.")
6592 (license (package-license perl))))
6593
6594 (define-public perl-module-scandeps
6595 (package
6596 (name "perl-module-scandeps")
6597 (version "1.27")
6598 (source
6599 (origin
6600 (method url-fetch)
6601 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
6602 "Module-ScanDeps-" version ".tar.gz"))
6603 (sha256
6604 (base32
6605 "0j6r9r99x5p0i6fv06i44wpsvjxj32amjkiqf6pmqpj80jff2k7f"))))
6606 (build-system perl-build-system)
6607 (native-inputs
6608 `(("perl-test-requires" ,perl-test-requires)))
6609 (home-page "https://metacpan.org/release/Module-ScanDeps")
6610 (synopsis "Recursively scan Perl code for dependencies")
6611 (description "Module::ScanDeps is a module to recursively scan Perl
6612 programs for dependencies.")
6613 (license (package-license perl))))
6614
6615 (define-public perl-module-util
6616 (package
6617 (name "perl-module-util")
6618 (version "1.09")
6619 (source
6620 (origin
6621 (method url-fetch)
6622 (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
6623 "Module-Util-" version ".tar.gz"))
6624 (sha256
6625 (base32
6626 "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
6627 (build-system perl-build-system)
6628 (native-inputs
6629 `(("perl-module-build" ,perl-module-build))) ; >= 0.40
6630 (home-page "https://metacpan.org/release/Module-Util")
6631 (synopsis "Module name tools and transformations")
6632 (description "This module provides a few useful functions for manipulating
6633 module names. Its main aim is to centralise some of the functions commonly
6634 used by modules that manipulate other modules in some way, like converting
6635 module names to relative paths.")
6636 (license (package-license perl))))
6637
6638 (define-public perl-moo
6639 (package
6640 (name "perl-moo")
6641 (version "1.007000")
6642 (source
6643 (origin
6644 (method url-fetch)
6645 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6646 "Moo-" version ".tar.gz"))
6647 (sha256
6648 (base32
6649 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
6650 (build-system perl-build-system)
6651 (native-inputs
6652 `(("perl-test-fatal" ,perl-test-fatal)))
6653 (propagated-inputs
6654 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
6655 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
6656 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6657 ("perl-import-into" ,perl-import-into)
6658 ("perl-module-runtime" ,perl-module-runtime)
6659 ("perl-role-tiny" ,perl-role-tiny)
6660 ("perl-strictures" ,perl-strictures)))
6661 (home-page "https://metacpan.org/release/Moo")
6662 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
6663 (description "Moo is an extremely light-weight Object Orientation system.
6664 It allows one to concisely define objects and roles with a convenient syntax
6665 that avoids the details of Perl's object system. Moo contains a subset of
6666 Moose and is optimised for rapid startup.")
6667 (license (package-license perl))))
6668
6669 ;; Some packages don't yet work with this newer version of ‘Moo’.
6670 (define-public perl-moo-2
6671 (package
6672 (inherit perl-moo)
6673 (name "perl-moo-2")
6674 (version "2.003006")
6675 (source
6676 (origin
6677 (method url-fetch)
6678 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6679 "Moo-" version ".tar.gz"))
6680 (sha256
6681 (base32 "0wi4gyp5kn4lbags0hrax3c9jj9spxg4d11fbrdh0ican4m0kcmw"))))
6682 (propagated-inputs
6683 `(("perl-role-tiny" ,perl-role-tiny-2)
6684 ("perl-sub-name" ,perl-sub-name)
6685 ("perl-sub-quote" ,perl-sub-quote)
6686 ("perl-strictures" ,perl-strictures-2)
6687 ,@(alist-delete "perl-strictures"
6688 (alist-delete "perl-role-tiny"
6689 (package-propagated-inputs perl-moo)))))
6690 (arguments
6691 `(#:phases
6692 (modify-phases %standard-phases
6693 (add-before 'configure 'set-perl-search-path
6694 (lambda _
6695 ;; Use perl-strictures for testing.
6696 (setenv "MOO_FATAL_WARNINGS" "=1")
6697 #t)))))))
6698
6699 (define-public perl-moose
6700 (package
6701 (name "perl-moose")
6702 (version "2.2015")
6703 (source (origin
6704 (method url-fetch)
6705 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6706 "Moose-" version ".tar.gz"))
6707 (sha256
6708 (base32
6709 "05gma3q3l15igqrqi8ax8v5cmmvy7s939q3xzs45l1rc7sfx6yd6"))))
6710 (build-system perl-build-system)
6711 (native-inputs
6712 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6713 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6714 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
6715 ("perl-test-fatal" ,perl-test-fatal)
6716 ("perl-test-requires" ,perl-test-requires)
6717 ("perl-test-warnings" ,perl-test-warnings)))
6718 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
6719 ;; # === Other Modules ===
6720 ;; #
6721 ;; # Module Want Have
6722 ;; # ---------------------------- ---- -------
6723 ;; # Algorithm::C3 any missing
6724 ;; # DBM::Deep any missing
6725 ;; # DateTime any missing
6726 ;; # DateTime::Calendar::Mayan any missing
6727 ;; # DateTime::Format::MySQL any missing
6728 ;; # Declare::Constraints::Simple any missing
6729 ;; # Dist::CheckConflicts any 0.11
6730 ;; # HTTP::Headers any missing
6731 ;; # IO::File any 1.16
6732 ;; # IO::String any missing
6733 ;; # Locale::US any missing
6734 ;; # Module::Refresh any missing
6735 ;; # MooseX::NonMoose any missing
6736 ;; # Params::Coerce any missing
6737 ;; # Regexp::Common any missing
6738 ;; # SUPER any missing
6739 ;; # Test::Deep any missing
6740 ;; # Test::DependentModules any missing
6741 ;; # Test::LeakTrace any missing
6742 ;; # Test::Output any missing
6743 ;; # URI any missing
6744 (propagated-inputs
6745 `(("perl-class-load" ,perl-class-load)
6746 ("perl-class-load-xs" ,perl-class-load-xs)
6747 ("perl-data-optlist" ,perl-data-optlist)
6748 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
6749 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
6750 ("perl-devel-partialdump" ,perl-devel-partialdump)
6751 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
6752 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
6753 ("perl-eval-closure" ,perl-eval-closure)
6754 ("perl-list-moreutils" ,perl-list-moreutils)
6755 ("perl-module-runtime" ,perl-module-runtime)
6756 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
6757 ("perl-mro-compat" ,perl-mro-compat)
6758 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
6759 ("perl-package-stash" ,perl-package-stash)
6760 ("perl-package-stash-xs" ,perl-package-stash-xs)
6761 ("perl-params-util" ,perl-params-util)
6762 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
6763 ("perl-sub-exporter" ,perl-sub-exporter)
6764 ("perl-sub-name" ,perl-sub-name)
6765 ("perl-task-weaken" ,perl-task-weaken)
6766 ("perl-try-tiny" ,perl-try-tiny)))
6767 (home-page "https://metacpan.org/release/Moose")
6768 (synopsis "Postmodern object system for Perl 5")
6769 (description
6770 "Moose is a complete object system for Perl 5. It provides keywords for
6771 attribute declaration, object construction, inheritance, and maybe more. With
6772 Moose, you define your class declaratively, without needing to know about
6773 blessed hashrefs, accessor methods, and so on. You can concentrate on the
6774 logical structure of your classes, focusing on \"what\" rather than \"how\".
6775 A class definition with Moose reads like a list of very concise English
6776 sentences.")
6777 (license (package-license perl))))
6778
6779 (define-public perl-moosex-emulate-class-accessor-fast
6780 (package
6781 (name "perl-moosex-emulate-class-accessor-fast")
6782 (version "0.009032")
6783 (source
6784 (origin
6785 (method url-fetch)
6786 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
6787 "MooseX-Emulate-Class-Accessor-Fast-"
6788 version ".tar.gz"))
6789 (sha256
6790 (base32 "153r30nggcyyx7ai15dbnba2h5145f8jdsh6wj54298d3zpvgvl2"))))
6791 (build-system perl-build-system)
6792 (native-inputs
6793 `(("perl-module-install" ,perl-module-install)
6794 ("perl-test-exception" ,perl-test-exception)))
6795 (propagated-inputs
6796 `(("perl-moose" ,perl-moose)))
6797 (home-page "https://metacpan.org/release/MooseX-Emulate-Class-Accessor-Fast")
6798 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
6799 (description "This module attempts to emulate the behavior of
6800 Class::Accessor::Fast as accurately as possible using the Moose attribute
6801 system. The public API of Class::Accessor::Fast is wholly supported, but the
6802 private methods are not.")
6803 (license (package-license perl))))
6804
6805 (define-public perl-moosex-getopt
6806 (package
6807 (name "perl-moosex-getopt")
6808 (version "0.75")
6809 (source
6810 (origin
6811 (method url-fetch)
6812 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6813 "MooseX-Getopt-" version ".tar.gz"))
6814 (sha256
6815 (base32 "1j7b2jnf0blxr4czp3vfcnv1h5zj601mrfdm92g1wf5wn9dvxwv3"))))
6816 (build-system perl-build-system)
6817 (native-inputs
6818 `(("perl-module-build" ,perl-module-build)
6819 ("perl-module-build-tiny" ,perl-module-build-tiny)
6820 ("perl-path-tiny" ,perl-path-tiny)
6821 ("perl-test-deep" ,perl-test-deep)
6822 ("perl-test-fatal" ,perl-test-fatal)
6823 ("perl-test-needs" ,perl-test-needs)
6824 ("perl-test-requires" ,perl-test-requires)
6825 ("perl-test-trap" ,perl-test-trap)
6826 ("perl-test-warnings" ,perl-test-warnings)))
6827 (propagated-inputs
6828 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
6829 ("perl-moose" ,perl-moose)
6830 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
6831 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6832 (home-page "https://metacpan.org/release/MooseX-Getopt")
6833 (synopsis "Moose role for processing command line options")
6834 (description "This is a Moose role which provides an alternate constructor
6835 for creating objects using parameters passed in from the command line.")
6836 (license (package-license perl))))
6837
6838 (define-public perl-moosex-markasmethods
6839 (package
6840 (name "perl-moosex-markasmethods")
6841 (version "0.15")
6842 (source
6843 (origin
6844 (method url-fetch)
6845 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
6846 "MooseX-MarkAsMethods-" version ".tar.gz"))
6847 (sha256
6848 (base32
6849 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
6850 (build-system perl-build-system)
6851 (inputs
6852 `(("perl-moose" ,perl-moose)
6853 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6854 (home-page "https://metacpan.org/release/MooseX-MarkAsMethods")
6855 (synopsis "Mark overload code symbols as methods")
6856 (description "MooseX::MarkAsMethods allows one to easily mark certain
6857 functions as Moose methods. This will allow other packages such as
6858 namespace::autoclean to operate without blowing away your overloads. After
6859 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
6860 being methods, and class extension as well as composition from roles with
6861 overloads will \"just work\".")
6862 (license license:lgpl2.1)))
6863
6864 (define-public perl-moosex-methodattributes
6865 (package
6866 (name "perl-moosex-methodattributes")
6867 (version "0.31")
6868 (source
6869 (origin
6870 (method url-fetch)
6871 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6872 "MooseX-MethodAttributes-" version ".tar.gz"))
6873 (sha256
6874 (base32
6875 "1whd10w7bm3dwaj7gpgw40bci9vvb2zmxs4349ifji91hvinwqck"))))
6876 (build-system perl-build-system)
6877 (native-inputs
6878 `(("perl-module-build-tiny" ,perl-module-build-tiny)
6879 ("perl-test-fatal" ,perl-test-fatal)
6880 ("perl-test-requires" ,perl-test-requires)))
6881 (propagated-inputs
6882 `(("perl-moose" ,perl-moose)
6883 ("perl-moosex-types" ,perl-moosex-types)
6884 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6885 (home-page "https://metacpan.org/release/MooseX-MethodAttributes")
6886 (synopsis "Code attribute introspection")
6887 (description "This module allows code attributes of methods to be
6888 introspected using Moose meta method objects.")
6889 (license (package-license perl))))
6890
6891 (define-public perl-moosex-nonmoose
6892 (package
6893 (name "perl-moosex-nonmoose")
6894 (version "0.26")
6895 (source
6896 (origin
6897 (method url-fetch)
6898 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6899 "MooseX-NonMoose-" version ".tar.gz"))
6900 (sha256
6901 (base32
6902 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
6903 (build-system perl-build-system)
6904 (native-inputs
6905 `(("perl-moose" ,perl-moose)
6906 ("perl-test-fatal" ,perl-test-fatal)))
6907 (propagated-inputs
6908 `(("perl-list-moreutils" ,perl-list-moreutils)
6909 ("perl-module-runtime" ,perl-module-runtime)
6910 ("perl-moose" ,perl-moose)
6911 ("perl-try-tiny" ,perl-try-tiny)))
6912 (home-page "https://metacpan.org/release/MooseX-NonMoose")
6913 (synopsis "Subclassing of non-Moose classes")
6914 (description "MooseX::NonMoose allows for easily subclassing non-Moose
6915 classes with Moose, taking care of the details connected with doing this, such
6916 as setting up proper inheritance from Moose::Object and installing (and
6917 inlining, at make_immutable time) a constructor that makes sure things like
6918 BUILD methods are called. It tries to be as non-intrusive as possible.")
6919 (license (package-license perl))))
6920
6921 (define-public perl-moosex-params-validate
6922 (package
6923 (name "perl-moosex-params-validate")
6924 (version "0.21")
6925 (source
6926 (origin
6927 (method url-fetch)
6928 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6929 "MooseX-Params-Validate-" version ".tar.gz"))
6930 (sha256
6931 (base32 "1n9ry6gnskkp9ir6s7d5jirn3mh14ydgpmwqz6wcp6d9md358ac8"))))
6932 (build-system perl-build-system)
6933 (native-inputs
6934 `(("perl-moose" ,perl-moose)
6935 ("perl-test-fatal" ,perl-test-fatal)))
6936 (propagated-inputs
6937 `(("perl-devel-caller" ,perl-devel-caller)
6938 ("perl-moose" ,perl-moose)
6939 ("perl-params-validate" ,perl-params-validate)
6940 ("perl-sub-exporter" ,perl-sub-exporter)))
6941 (home-page "https://metacpan.org/release/MooseX-Params-Validate")
6942 (synopsis "Extension of Params::Validate using Moose's types")
6943 (description "This module fills a gap in Moose by adding method parameter
6944 validation to Moose.")
6945 (license (package-license perl))))
6946
6947 (define-public perl-moosex-relatedclassroles
6948 (package
6949 (name "perl-moosex-relatedclassroles")
6950 (version "0.004")
6951 (source
6952 (origin
6953 (method url-fetch)
6954 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
6955 "MooseX-RelatedClassRoles-" version ".tar.gz"))
6956 (sha256
6957 (base32
6958 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
6959 (build-system perl-build-system)
6960 (propagated-inputs
6961 `(("perl-moose" ,perl-moose)
6962 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
6963 (home-page "https://metacpan.org/release/MooseX-RelatedClassRoles")
6964 (synopsis "Apply roles to a related Perl class")
6965 (description "This module applies roles to make a subclass instead of
6966 manually setting up a subclass.")
6967 (license (package-license perl))))
6968
6969 (define-public perl-moosex-role-parameterized
6970 (package
6971 (name "perl-moosex-role-parameterized")
6972 (version "1.10")
6973 (source
6974 (origin
6975 (method url-fetch)
6976 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6977 "MooseX-Role-Parameterized-" version ".tar.gz"))
6978 (sha256
6979 (base32 "0plx25n80mv9qwhix52z79md0qil616nbcryk2f4216kghpw2ij8"))))
6980 (build-system perl-build-system)
6981 (native-inputs
6982 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
6983 ("perl-module-build" ,perl-module-build)
6984 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
6985 ("perl-test-fatal" ,perl-test-fatal)
6986 ("perl-test-requires" ,perl-test-requires)))
6987 (propagated-inputs
6988 `(("perl-moose" ,perl-moose)
6989 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
6990 (home-page "https://metacpan.org/release/MooseX-Role-Parameterized")
6991 (synopsis "Moose roles with composition parameters")
6992 (description "Because Moose roles serve many different masters, they
6993 usually provide only the least common denominator of functionality. To
6994 empower roles further, more configurability than -alias and -excludes is
6995 required. Perhaps your role needs to know which method to call when it is
6996 done processing, or what default value to use for its url attribute.
6997 Parameterized roles offer a solution to these (and other) kinds of problems.")
6998 (license (package-license perl))))
6999
7000 (define-public perl-moosex-role-withoverloading
7001 (package
7002 (name "perl-moosex-role-withoverloading")
7003 (version "0.17")
7004 (source
7005 (origin
7006 (method url-fetch)
7007 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7008 "MooseX-Role-WithOverloading-" version ".tar.gz"))
7009 (sha256
7010 (base32
7011 "0rb8k0dp1a55bm2pr6r0vsi5msvjl1dslfidxp1gj80j7zbrbc4j"))))
7012 (build-system perl-build-system)
7013 (propagated-inputs
7014 `(("perl-aliased" ,perl-aliased)
7015 ("perl-moose" ,perl-moose)
7016 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7017 (home-page "https://metacpan.org/release/MooseX-Role-WithOverloading")
7018 (synopsis "Roles which support overloading")
7019 (description "MooseX::Role::WithOverloading allows you to write a
7020 Moose::Role which defines overloaded operators and allows those overload
7021 methods to be composed into the classes/roles/instances it's compiled to,
7022 where plain Moose::Roles would lose the overloading.")
7023 (license (package-license perl))))
7024
7025 (define-public perl-moosex-semiaffordanceaccessor
7026 (package
7027 (name "perl-moosex-semiaffordanceaccessor")
7028 (version "0.10")
7029 (source
7030 (origin
7031 (method url-fetch)
7032 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7033 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
7034 (sha256
7035 (base32
7036 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
7037 (build-system perl-build-system)
7038 (propagated-inputs
7039 `(("perl-moose" ,perl-moose)))
7040 (home-page "https://metacpan.org/release/MooseX-SemiAffordanceAccessor")
7041 (synopsis "Name your accessors foo() and set_foo()")
7042 (description "This module does not provide any methods. Simply loading it
7043 changes the default naming policy for the loading class so that accessors are
7044 separated into get and set methods. The get methods have the same name as the
7045 accessor, while set methods are prefixed with \"_set_\".")
7046 (license license:artistic2.0)))
7047
7048 (define-public perl-moosex-strictconstructor
7049 (package
7050 (name "perl-moosex-strictconstructor")
7051 (version "0.19")
7052 (source
7053 (origin
7054 (method url-fetch)
7055 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7056 "MooseX-StrictConstructor-" version ".tar.gz"))
7057 (sha256
7058 (base32
7059 "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
7060 (build-system perl-build-system)
7061 (native-inputs
7062 `(("perl-moose" ,perl-moose)
7063 ("perl-test-fatal" ,perl-test-fatal)))
7064 (propagated-inputs
7065 `(("perl-moose" ,perl-moose)
7066 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7067 (home-page "https://metacpan.org/release/MooseX-StrictConstructor")
7068 (synopsis "Strict object constructors for Moose")
7069 (description "Simply loading this module makes your constructors
7070 \"strict\". If your constructor is called with an attribute init argument
7071 that your class does not declare, then it calls Moose->throw_error().")
7072 (license license:artistic2.0)))
7073
7074 (define-public perl-moosex-traits-pluggable
7075 (package
7076 (name "perl-moosex-traits-pluggable")
7077 (version "0.12")
7078 (source
7079 (origin
7080 (method url-fetch)
7081 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
7082 "MooseX-Traits-Pluggable-" version ".tar.gz"))
7083 (sha256
7084 (base32
7085 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
7086 (build-system perl-build-system)
7087 (native-inputs
7088 `(("perl-moose" ,perl-moose)
7089 ("perl-test-exception" ,perl-test-exception)))
7090 (propagated-inputs
7091 `(("perl-class-load" ,perl-class-load)
7092 ("perl-list-moreutils" ,perl-list-moreutils)
7093 ("perl-moose" ,perl-moose)
7094 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7095 (home-page
7096 "https://metacpan.org/release/MooseX-Traits-Pluggable")
7097 (synopsis "Trait loading and resolution for Moose")
7098 (description "Adds support on top of MooseX::Traits for class precedence
7099 search for traits and some extra attributes.")
7100 (license (package-license perl))))
7101
7102 (define-public perl-moosex-types
7103 (package
7104 (name "perl-moosex-types")
7105 (version "0.45")
7106 (source
7107 (origin
7108 (method url-fetch)
7109 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7110 "MooseX-Types-" version ".tar.gz"))
7111 (sha256
7112 (base32
7113 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
7114 (build-system perl-build-system)
7115 (native-inputs
7116 `(("perl-module-build" ,perl-module-build)
7117 ("perl-test-fatal" ,perl-test-fatal)
7118 ("perl-test-requires" ,perl-test-requires)))
7119 (propagated-inputs
7120 `(("perl-carp-clan" ,perl-carp-clan)
7121 ("perl-moose" ,perl-moose)
7122 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7123 (home-page "https://metacpan.org/release/MooseX-Types")
7124 (synopsis "Organise your Moose types in libraries")
7125 (description "This package lets you declare types using short names, but
7126 behind the scenes it namespaces all your type declarations, effectively
7127 prevent name clashes between packages.")
7128 (license (package-license perl))))
7129
7130 (define-public perl-moosex-types-datetime
7131 (package
7132 (name "perl-moosex-types-datetime")
7133 (version "0.13")
7134 (source
7135 (origin
7136 (method url-fetch)
7137 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7138 "MooseX-Types-DateTime-" version ".tar.gz"))
7139 (sha256
7140 (base32
7141 "1iir3mdvz892kbbs2q91vjxnhas7811m3d3872m7x8gn6rka57xq"))))
7142 (build-system perl-build-system)
7143 (native-inputs
7144 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7145 ("perl-moose" ,perl-moose)
7146 ("perl-test-fatal" ,perl-test-fatal)
7147 ("perl-test-simple" ,perl-test-simple)))
7148 (propagated-inputs
7149 `(("perl-datetime" ,perl-datetime)
7150 ("perl-datetime-locale" ,perl-datetime-locale)
7151 ("perl-datetime-timezone" ,perl-datetime-timezone)
7152 ("perl-moose" ,perl-moose)
7153 ("perl-moosex-types" ,perl-moosex-types)
7154 ("perl-namespace-clean" ,perl-namespace-clean)))
7155 (home-page "https://metacpan.org/release/MooseX-Types-DateTime")
7156 (synopsis "DateTime related constraints and coercions for Moose")
7157 (description "This module packages several Moose::Util::TypeConstraints
7158 with coercions, designed to work with the DateTime suite of objects.")
7159 (license (package-license perl))))
7160
7161 (define-public perl-moosex-types-datetime-morecoercions
7162 (package
7163 (name "perl-moosex-types-datetime-morecoercions")
7164 (version "0.15")
7165 (source
7166 (origin
7167 (method url-fetch)
7168 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7169 "MooseX-Types-DateTime-MoreCoercions-"
7170 version ".tar.gz"))
7171 (sha256
7172 (base32 "15ip1rgaana2p4vww355jb5jxyawim0k58gadkdqx20rfxckmfr1"))))
7173 (build-system perl-build-system)
7174 (native-inputs
7175 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7176 ("perl-test-fatal" ,perl-test-fatal)
7177 ("perl-test-simple" ,perl-test-simple)))
7178 (propagated-inputs
7179 `(("perl-datetime" ,perl-datetime)
7180 ("perl-datetimex-easy" ,perl-datetimex-easy)
7181 ("perl-moose" ,perl-moose)
7182 ("perl-moosex-types" ,perl-moosex-types)
7183 ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
7184 ("perl-namespace-clean" ,perl-namespace-clean)
7185 ("perl-time-duration-parse" ,perl-time-duration-parse)))
7186 (home-page
7187 "https://metacpan.org/release/MooseX-Types-DateTime-MoreCoercions")
7188 (synopsis "Extensions to MooseX::Types::DateTime")
7189 (description "This module builds on MooseX::Types::DateTime to add
7190 additional custom types and coercions. Since it builds on an existing type,
7191 all coercions and constraints are inherited.")
7192 (license (package-license perl))))
7193
7194 (define-public perl-moosex-types-loadableclass
7195 (package
7196 (name "perl-moosex-types-loadableclass")
7197 (version "0.015")
7198 (source
7199 (origin
7200 (method url-fetch)
7201 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7202 "MooseX-Types-LoadableClass-" version ".tar.gz"))
7203 (sha256
7204 (base32 "1x1vb96hcrd96bzs73w0lb04jr0fvax1ams38qlzkp2kh9vx6dz0"))))
7205 (build-system perl-build-system)
7206 (native-inputs
7207 `(("perl-module-build-tiny" ,perl-module-build-tiny)
7208 ("perl-namespace-clean" ,perl-namespace-clean)
7209 ("perl-moose" ,perl-moose)
7210 ("perl-test-fatal" ,perl-test-fatal)
7211 ("perl-class-load" ,perl-class-load)))
7212 (propagated-inputs
7213 `(("perl-module-runtime" ,perl-module-runtime)
7214 ("perl-moosex-types" ,perl-moosex-types)
7215 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
7216 (home-page "https://metacpan.org/release/MooseX-Types-LoadableClass")
7217 (synopsis "ClassName type constraints for Moose")
7218 (description "MooseX::Types::LoadableClass provides a ClassName type
7219 constraint with coercion to load the class.")
7220 (license (package-license perl))))
7221
7222 (define-public perl-moox
7223 (package
7224 (name "perl-moox")
7225 (version "0.101")
7226 (source
7227 (origin
7228 (method url-fetch)
7229 (uri (string-append
7230 "mirror://cpan/authors/id/G/GE/GETTY/MooX-"
7231 version
7232 ".tar.gz"))
7233 (sha256
7234 (base32
7235 "1m9jvrqcidiabdih211byadwnnkygafq54r2ljnf1akqdrjimy9g"))))
7236 (build-system perl-build-system)
7237 (inputs
7238 `(("perl-data-optlist" ,perl-data-optlist)
7239 ("perl-import-into" ,perl-import-into)
7240 ("perl-module-runtime" ,perl-module-runtime)
7241 ("perl-moo" ,perl-moo)))
7242 (home-page "https://metacpan.org/release/MooX")
7243 (synopsis
7244 "Using Moo and MooX:: packages the most lazy way")
7245 (description "Contains the MooX and MooX::Role packages.")
7246 (license license:perl-license)))
7247
7248 (define-public perl-moox-cmd
7249 (package
7250 (name "perl-moox-cmd")
7251 (version "0.017")
7252 (source
7253 (origin
7254 (method url-fetch)
7255 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/MooX-Cmd-"
7256 version ".tar.gz"))
7257 (sha256
7258 (base32 "1xbhmq07v9z371ygkyghva9aryhc22kwbzn5qwkp72c0ma6z4gwl"))))
7259 (build-system perl-build-system)
7260 (native-inputs
7261 `(("perl-capture-tiny" ,perl-capture-tiny)
7262 ("perl-list-moreutils" ,perl-list-moreutils)))
7263 (propagated-inputs
7264 `(("perl-module-pluggable" ,perl-module-pluggable)
7265 ("perl-module-runtime" ,perl-module-runtime)
7266 ("perl-moo" ,perl-moo)
7267 ("perl-package-stash" ,perl-package-stash)
7268 ("perl-params-util" ,perl-params-util)
7269 ("perl-regexp-common" ,perl-regexp-common)))
7270 (home-page "https://metacpan.org/release/MooX-Cmd")
7271 (synopsis "Giving an easy Moo style way to make command organized CLI apps")
7272 (description "This package eases the writing of command line utilities,
7273 accepting commands and subcommands and so on. These commands can form a tree,
7274 which is mirrored in the package structure. On invocation, each command along
7275 the path through the tree (starting from the top-level command through to the
7276 most specific one) is instantiated.")
7277 (license (package-license perl))))
7278
7279 (define-public perl-moox-configfromfile
7280 (package
7281 (name "perl-moox-configfromfile")
7282 (version "0.008")
7283 (source
7284 (origin
7285 (method url-fetch)
7286 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7287 "MooX-ConfigFromFile-" version ".tar.gz"))
7288 (sha256
7289 (base32
7290 "1zrpz4mzngnhaap6988is0w0aarilfj4kb1yc8hvfqna69lywac0"))))
7291 (build-system perl-build-system)
7292 (native-inputs
7293 `(("perl-hash-merge" ,perl-hash-merge)
7294 ("perl-json" ,perl-json)
7295 ("perl-moox-cmd" ,perl-moox-cmd)))
7296 (propagated-inputs
7297 `(("perl-config-any" ,perl-config-any)
7298 ("perl-file-configdir" ,perl-file-configdir)
7299 ("perl-file-find-rule" ,perl-file-find-rule)
7300 ("perl-hash-merge" ,perl-hash-merge)
7301 ("perl-moo" ,perl-moo)
7302 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7303 ("perl-namespace-clean" ,perl-namespace-clean)))
7304 (home-page "https://metacpan.org/release/MooX-ConfigFromFile")
7305 (synopsis "Moo eXtension for initializing objects from config file")
7306 (description "This module is intended to easily load initialization values
7307 for attributes on object construction from an appropriate config file. The
7308 building is done in @code{MooX::ConfigFromFile::Role}---using
7309 @code{MooX::ConfigFromFile} ensures that the role is applied.")
7310 (license (package-license perl))))
7311
7312 (define-public perl-moox-file-configdir
7313 (package
7314 (name "perl-moox-file-configdir")
7315 (version "0.008")
7316 (source
7317 (origin
7318 (method url-fetch)
7319 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
7320 "MooX-File-ConfigDir-" version ".tar.gz"))
7321 (sha256
7322 (base32 "1b033injzk9d8clgip67ps5j5bpkrnag28q89ddwhrgqx12i3m7q"))))
7323 (build-system perl-build-system)
7324 (propagated-inputs
7325 `(("perl-file-configdir" ,perl-file-configdir)
7326 ("perl-moo" ,perl-moo)
7327 ("perl-namespace-clean" ,perl-namespace-clean)))
7328 (home-page "https://metacpan.org/release/MooX-File-ConfigDir")
7329 (synopsis "Moo eXtension for @code{File::ConfigDir}")
7330 (description "This module is a helper for easily finding configuration
7331 file locations. This information can be used to find a suitable place for
7332 installing configuration files or for finding any piece of settings.")
7333 (license (package-license perl))))
7334
7335 (define-public perl-moox-handlesvia
7336 (package
7337 (name "perl-moox-handlesvia")
7338 (version "0.001009")
7339 (source
7340 (origin
7341 (method url-fetch)
7342 (uri (string-append
7343 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-HandlesVia-"
7344 version
7345 ".tar.gz"))
7346 (sha256
7347 (base32 "04kcyflg49rclxa1nm035c05jpyvhdacjyy1wklbgv4li3im6qvi"))))
7348 (build-system perl-build-system)
7349 (native-inputs
7350 `(("perl-moox-types-mooselike"
7351 ,perl-moox-types-mooselike)
7352 ("perl-test-exception" ,perl-test-exception)
7353 ("perl-test-fatal" ,perl-test-fatal)))
7354 (inputs
7355 `(("perl-class-method-modifiers"
7356 ,perl-class-method-modifiers)
7357 ("perl-module-runtime" ,perl-module-runtime)
7358 ("perl-moo" ,perl-moo)
7359 ("perl-role-tiny" ,perl-role-tiny)))
7360 (propagated-inputs
7361 `(("perl-data-perl" ,perl-data-perl)))
7362 (home-page
7363 "https://metacpan.org/release/MooX-HandlesVia")
7364 (synopsis "NativeTrait-like behavior for Moo")
7365 (description
7366 "@code{MooX::HandlesVia} is an extension of Moo's @code{handles}
7367 attribute functionality. It provides a means of proxying functionality from
7368 an external class to the given attribute.")
7369 (license license:perl-license)))
7370
7371 (define-public perl-moox-late
7372 (package
7373 (name "perl-moox-late")
7374 (version "0.016")
7375 (source
7376 (origin
7377 (method url-fetch)
7378 (uri (string-append
7379 "mirror://cpan/authors/id/T/TO/TOBYINK/MooX-late-"
7380 version ".tar.gz"))
7381 (sha256
7382 (base32 "0kjy86rrpzfy6w5r9ykjq7njwdnvp7swd6r2k4gfrh3picz3kdhz"))))
7383 (build-system perl-build-system)
7384 (native-inputs
7385 `(("perl-test-fatal" ,perl-test-fatal)
7386 ("perl-test-requires" ,perl-test-requires)))
7387 (inputs
7388 `(("perl-moo" ,perl-moo)
7389 ("perl-moox" ,perl-moox)
7390 ("perl-moox-handlesvia" ,perl-moox-handlesvia)))
7391 (propagated-inputs
7392 `(("perl-type-tiny" ,perl-type-tiny)))
7393 (home-page "https://metacpan.org/release/MooX-late")
7394 (synopsis "Easily translate Moose code to Moo")
7395 (description
7396 "MooX::late does the following:
7397 @enumerate
7398 @item Supports isa => $stringytype
7399 @item Supports does => $rolename
7400 @item Supports lazy_build => 1
7401 @item Exports blessed and confess functions to your namespace.
7402 @item Handles certain attribute traits
7403 Currently Hash, Array and Code are supported. This feature requires
7404 MooX::HandlesVia.
7405 @end enumerate")
7406 (license license:perl-license)))
7407
7408 (define-public perl-moox-options
7409 (package
7410 (name "perl-moox-options")
7411 (version "4.023")
7412 (source
7413 (origin
7414 (method url-fetch)
7415 (uri (string-append "mirror://cpan/authors/id/C/CE/CELOGEEK/"
7416 "MooX-Options-" version ".tar.gz"))
7417 (sha256
7418 (base32
7419 "14kz51hybxx8vcm4wg36f0qa64aainw7i2sqmqxg20c3qvczyvj2"))))
7420 (build-system perl-build-system)
7421 (native-inputs
7422 `(("perl-capture-tiny" ,perl-capture-tiny)
7423 ("perl-import-into" ,perl-import-into)
7424 ("perl-module-build" ,perl-module-build)
7425 ("perl-moo" ,perl-moo)
7426 ("perl-moose" ,perl-moose)
7427 ("perl-moox-cmd" ,perl-moox-cmd)
7428 ("perl-namespace-clean" ,perl-namespace-clean)
7429 ("perl-role-tiny" ,perl-role-tiny)
7430 ("perl-test-requires" ,perl-test-requires)
7431 ("perl-test-trap" ,perl-test-trap)
7432 ("perl-test-pod" ,perl-test-pod)
7433 ("perl-try-tiny" ,perl-try-tiny)))
7434 (propagated-inputs
7435 `(("perl-config-any" ,perl-config-any)
7436 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7437 ("perl-data-record" ,perl-data-record)
7438 ("perl-file-configdir" ,perl-file-configdir)
7439 ("perl-file-find-rule" ,perl-file-find-rule)
7440 ("perl-file-sharedir" ,perl-file-sharedir)
7441 ("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
7442 ("perl-json-maybexs" ,perl-json-maybexs)
7443 ("perl-libintl-perl" ,perl-libintl-perl)
7444 ("perl-moox-configfromfile" ,perl-moox-configfromfile)
7445 ("perl-moox-file-configdir" ,perl-moox-file-configdir)
7446 ("perl-path-class" ,perl-path-class)
7447 ("perl-regexp-common" ,perl-regexp-common)
7448 ("perl-term-size-any" ,perl-term-size-any)
7449 ("perl-unicode-linebreak" ,perl-unicode-linebreak)))
7450 (home-page "https://metacpan.org/release/MooX-Options")
7451 (synopsis "Explicit Options eXtension for Object Class")
7452 (description "Create a command line tool with your Mo, Moo, Moose objects.
7453 You have an @code{option} keyword to replace the usual @code{has} to
7454 explicitly use your attribute on the command line. The @code{option} keyword
7455 takes additional parameters and uses @code{Getopt::Long::Descriptive} to
7456 generate a command line tool.")
7457 (license (package-license perl))))
7458
7459 (define-public perl-moox-strictconstructor
7460 (package
7461 (name "perl-moox-strictconstructor")
7462 (version "0.010")
7463 (source
7464 (origin
7465 (method url-fetch)
7466 (uri (string-append
7467 "mirror://cpan/authors/id/H/HA/HARTZELL/MooX-StrictConstructor-"
7468 version
7469 ".tar.gz"))
7470 (sha256
7471 (base32
7472 "0vvjgz7xbfmf69yav7sxsxmvklqv835xvh7h47w0apxmlkm9fjgr"))))
7473 (build-system perl-build-system)
7474 (native-inputs
7475 `(("perl-test-fatal" ,perl-test-fatal)))
7476 (propagated-inputs
7477 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
7478 ("perl-moo" ,perl-moo)
7479 ("perl-strictures" ,perl-strictures)))
7480 (home-page "https://metacpan.org/release/MooX-StrictConstructor")
7481 (synopsis "Make Moo-based object constructors blow up on unknown attributes")
7482 (description
7483 "Loading @code{MooX::StrictConstructor} makes your constructors \"strict\".
7484 If your constructor is called with an attribute init argument that your class
7485 does not declare, then it dies.")
7486 (license license:perl-license)))
7487
7488 (define-public perl-moox-types-mooselike
7489 (package
7490 (name "perl-moox-types-mooselike")
7491 (version "0.29")
7492 (source
7493 (origin
7494 (method url-fetch)
7495 (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
7496 "MooX-Types-MooseLike-" version ".tar.gz"))
7497 (sha256
7498 (base32 "1d6jg9x3p7gm2r0xmbcag374a44gf5pcga2swvxhlhzakfm80dqx"))))
7499 (build-system perl-build-system)
7500 (native-inputs
7501 `(("perl-moo" ,perl-moo)
7502 ("perl-test-fatal" ,perl-test-fatal)))
7503 (propagated-inputs
7504 `(("perl-module-runtime" ,perl-module-runtime)
7505 ("perl-strictures" ,perl-strictures)))
7506 (home-page "https://metacpan.org/release/MooX-Types-MooseLike")
7507 (synopsis "Moosish types and type builder")
7508 (description "MooX::Types::MooseLike provides a possibility to build your
7509 own set of Moose-like types. These custom types can then be used to describe
7510 fields in Moo-based classes.")
7511 (license (package-license perl))))
7512
7513 (define-public perl-mouse
7514 (package
7515 (name "perl-mouse")
7516 (version "2.5.6")
7517 (source (origin
7518 (method url-fetch)
7519 (uri (string-append
7520 "mirror://cpan/authors/id/S/SK/SKAJI/Mouse-v"
7521 version
7522 ".tar.gz"))
7523 (sha256
7524 (base32
7525 "1j3048ip691j91rdig6wrlg6i4jdzhszxmz5pi2g7n355rl2w00l"))))
7526 (build-system perl-build-system)
7527 (native-inputs
7528 `(("perl-module-build" ,perl-module-build)
7529 ("perl-module-build-xsutil" ,perl-module-build-xsutil)
7530 ("perl-test-exception" ,perl-test-exception)
7531 ("perl-test-fatal" ,perl-test-fatal)
7532 ("perl-test-leaktrace" ,perl-test-leaktrace)
7533 ("perl-test-output" ,perl-test-output)
7534 ("perl-test-requires" ,perl-test-requires)
7535 ("perl-try-tiny" ,perl-try-tiny)))
7536 (home-page "https://github.com/gfx/p5-Mouse")
7537 (synopsis "Fast Moose-compatible object system for perl5")
7538 (description
7539 "Mouse is a @code{Moose} compatible object system that implements a
7540 subset of the functionality for reduced startup time.")
7541 (license (package-license perl))))
7542
7543 (define-public perl-mousex-nativetraits
7544 (package
7545 (name "perl-mousex-nativetraits")
7546 (version "1.09")
7547 (source (origin
7548 (method url-fetch)
7549 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
7550 "MouseX-NativeTraits-" version ".tar.gz"))
7551 (sha256
7552 (base32
7553 "0pnbchkxfz9fwa8sniyjqp0mz75b3k2fafq9r09znbbh51dbz9gq"))))
7554 (build-system perl-build-system)
7555 (native-inputs
7556 `(("perl-any-moose" ,perl-any-moose)
7557 ("perl-module-install" ,perl-module-install)
7558 ("perl-test-fatal" ,perl-test-fatal)))
7559 (propagated-inputs
7560 `(("perl-mouse" ,perl-mouse)))
7561 (home-page "https://metacpan.org/release/MouseX-NativeTraits")
7562 (synopsis "Extend attribute interfaces for Mouse")
7563 (description
7564 "While @code{Mouse} attributes provide a way to name your accessors,
7565 readers, writers, clearers and predicates, @code{MouseX::NativeTraits}
7566 provides commonly used attribute helper methods for more specific types
7567 of data.")
7568 (license (package-license perl))))
7569
7570 (define-public perl-mozilla-ca
7571 (package
7572 (name "perl-mozilla-ca")
7573 (version "20180117")
7574 (source
7575 (origin
7576 (method url-fetch)
7577 (uri (string-append "mirror://cpan/authors/id/A/AB/ABH/Mozilla-CA-"
7578 version ".tar.gz"))
7579 (sha256
7580 (base32
7581 "01p4ykyilk1639dxgjaa2n7rz1f0zbqxkq11yc9n6xcz26z9zk7j"))))
7582 (build-system perl-build-system)
7583 (home-page "https://metacpan.org/release/Mozilla-CA")
7584 (synopsis "Mozilla's CA cert bundle in PEM format")
7585 (description "@code{Mozilla::CA} provides a copy of Mozilla's bundle of
7586 Certificate Authority certificates in a form that can be consumed by modules
7587 and libraries based on OpenSSL.")
7588 (license license:mpl2.0)))
7589
7590 (define-public perl-multidimensional
7591 (package
7592 (name "perl-multidimensional")
7593 (version "0.014")
7594 (source
7595 (origin
7596 (method url-fetch)
7597 (uri (string-append
7598 "mirror://cpan/authors/id/I/IL/ILMARI/multidimensional-"
7599 version ".tar.gz"))
7600 (sha256
7601 (base32
7602 "0prchsg547ziysjl8ghiid6ph3m2xnwpsrwrjymibga7fhqi9sqj"))))
7603 (build-system perl-build-system)
7604 (native-inputs
7605 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7606 ("perl-extutils-depends" ,perl-extutils-depends)))
7607 (propagated-inputs
7608 `(("perl-b-hooks-op-check" ,perl-b-hooks-op-check)
7609 ("perl-lexical-sealrequirehints" ,perl-lexical-sealrequirehints)))
7610 (home-page "https://metacpan.org/release/multidimensional")
7611 (synopsis "Disable multidimensional array emulation")
7612 (description
7613 "Multidimensional disables multidimensional array emulation.")
7614 (license (package-license perl))))
7615
7616 (define-public perl-mro-compat
7617 (package
7618 (name "perl-mro-compat")
7619 (version "0.13")
7620 (source
7621 (origin
7622 (method url-fetch)
7623 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
7624 "MRO-Compat-" version ".tar.gz"))
7625 (sha256
7626 (base32
7627 "1y547lr6zccf7919vx01v22zsajy528psanhg5aqschrrin3nb4a"))))
7628 (build-system perl-build-system)
7629 (home-page "https://metacpan.org/release/MRO-Compat")
7630 (synopsis "MRO interface compatibility for Perls < 5.9.5")
7631 (description "The \"mro\" namespace provides several utilities for dealing
7632 with method resolution order and method caching in general in Perl 5.9.5 and
7633 higher. This module provides those interfaces for earlier versions of
7634 Perl (back to 5.6.0).")
7635 (license (package-license perl))))
7636
7637 (define-public perl-namespace-autoclean
7638 (package
7639 (name "perl-namespace-autoclean")
7640 (version "0.29")
7641 (source
7642 (origin
7643 (method url-fetch)
7644 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7645 "namespace-autoclean-" version ".tar.gz"))
7646 (sha256
7647 (base32 "012qqs561xyyhm082znmzsl8lz4n299fa6p0v246za2l9bkdiss5"))))
7648 (build-system perl-build-system)
7649 (native-inputs
7650 `(("perl-module-build" ,perl-module-build)
7651 ("perl-test-needs" ,perl-test-needs)))
7652 (propagated-inputs
7653 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
7654 ("perl-namespace-clean" ,perl-namespace-clean)
7655 ("perl-sub-identify" ,perl-sub-identify)))
7656 (home-page "https://metacpan.org/release/namespace-autoclean")
7657 (synopsis "Keep imports out of your namespace")
7658 (description "The namespace::autoclean pragma will remove all imported
7659 symbols at the end of the current package's compile cycle. Functions called
7660 in the package itself will still be bound by their name, but they won't show
7661 up as methods on your class or instances. It is very similar to
7662 namespace::clean, except it will clean all imported functions, no matter if
7663 you imported them before or after you used the pragma. It will also not touch
7664 anything that looks like a method.")
7665 (license (package-license perl))))
7666
7667 (define-public perl-namespace-clean
7668 (package
7669 (name "perl-namespace-clean")
7670 (version "0.27")
7671 (source
7672 (origin
7673 (method url-fetch)
7674 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
7675 "namespace-clean-" version ".tar.gz"))
7676 (sha256
7677 (base32
7678 "17dg64pd4bwi2ad3p8ykwys1zha7kg8a8ykvks7wfg8q7qyah44a"))))
7679 (build-system perl-build-system)
7680 (propagated-inputs
7681 `(("perl-package-stash" ,perl-package-stash)
7682 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
7683 (home-page "https://metacpan.org/release/namespace-clean")
7684 (synopsis "Keep imports and functions out of your namespace")
7685 (description "The namespace::clean pragma will remove all previously
7686 declared or imported symbols at the end of the current package's compile
7687 cycle. Functions called in the package itself will still be bound by their
7688 name, but they won't show up as methods on your class or instances.")
7689 (license (package-license perl))))
7690
7691 (define-public perl-net-bgp
7692 (package
7693 (name "perl-net-bgp")
7694 (version "0.17")
7695 (source
7696 (origin
7697 (method url-fetch)
7698 (uri (string-append
7699 "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
7700 (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y"))))
7701 (build-system perl-build-system)
7702 (home-page "https://metacpan.org/release/Net-BGP")
7703 (synopsis "Object-oriented API to the BGP protocol")
7704 (description
7705 "This module is an implementation of the BGP-4 inter-domain routing protocol.
7706 It encapsulates all of the functionality needed to establish and maintain a
7707 BGP peering session and exchange routing update information with the peer.
7708 It aims to provide a simple API to the BGP protocol for the purposes of
7709 automation, logging, monitoring, testing, and similar tasks using the
7710 power and flexibility of perl. The module does not implement the
7711 functionality of a RIB (Routing Information Base) nor does it modify the
7712 kernel routing table of the host system. However, such operations could be
7713 implemented using the API provided by the module.")
7714 (license license:perl-license)))
7715
7716 (define-public perl-net-dns-native
7717 (package
7718 (name "perl-net-dns-native")
7719 (version "0.22")
7720 (source
7721 (origin
7722 (method url-fetch)
7723 (uri (string-append
7724 "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-"
7725 version ".tar.gz"))
7726 (sha256
7727 (base32 "1m9hbj83ikg52wvq7z8bjm78i50qvqk5alh11mmazzxrpbnrv38h"))))
7728 (build-system perl-build-system)
7729 (home-page "https://metacpan.org/release/Net-DNS-Native")
7730 (synopsis "Non-blocking system DNS resolver")
7731 (description
7732 "This class provides several methods for host name resolution. It is
7733 designed to be used with event loops. Names are resolved by your system's
7734 native @code{getaddrinfo(3)} implementation, called in a separate thread to
7735 avoid blocking the entire application. Threading overhead is limited by using
7736 system threads instead of Perl threads.")
7737 (license license:perl-license)))
7738
7739 (define-public perl-net-idn-encode
7740 (package
7741 (name "perl-net-idn-encode")
7742 (version "2.500")
7743 (source
7744 (origin
7745 (method url-fetch)
7746 (uri (string-append "mirror://cpan/authors/id/C/CF/CFAERBER/"
7747 "Net-IDN-Encode-" version ".tar.gz"))
7748 (sha256
7749 (base32 "1aiy7adirk3wpwlczd8sldi9k1dray0jrg1lbcrcw97zwcrkciam"))))
7750 (build-system perl-build-system)
7751 (native-inputs
7752 `(("perl-module-build" ,perl-module-build)
7753 ("perl-test-nowarnings" ,perl-test-nowarnings)))
7754 (home-page "https://metacpan.org/release/Net-IDN-Encode")
7755 (synopsis "Internationalizing Domain Names in Applications (IDNA)")
7756 (description
7757 "Internationalized Domain Names (IDNs) use characters drawn from a large
7758 repertoire (Unicode), but IDNA allows the non-ASCII characters to be
7759 represented using only the ASCII characters already allowed in so-called host
7760 names today (letter-digit-hyphen, /[A-Z0-9-]/i).
7761
7762 Use this module if you just want to convert domain names (or email addresses),
7763 using whatever IDNA standard is the best choice at the moment.")
7764 (license license:perl-license)))
7765
7766 (define-public perl-net-statsd
7767 (package
7768 (name "perl-net-statsd")
7769 (version "0.12")
7770 (source
7771 (origin
7772 (method url-fetch)
7773 (uri (string-append
7774 "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
7775 version
7776 ".tar.gz"))
7777 (sha256
7778 (base32
7779 "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
7780 (build-system perl-build-system)
7781 (home-page
7782 "https://metacpan.org/release/Net-Statsd")
7783 (synopsis "Perl client for Etsy's statsd daemon")
7784 (description "This module implement a UDP client for the statsd statistics
7785 collector daemon in use at Etsy.com.")
7786 (license (package-license perl))))
7787
7788 (define-public perl-number-compare
7789 (package
7790 (name "perl-number-compare")
7791 (version "0.03")
7792 (source
7793 (origin
7794 (method url-fetch)
7795 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
7796 "Number-Compare-" version ".tar.gz"))
7797 (sha256
7798 (base32
7799 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
7800 (build-system perl-build-system)
7801 (home-page "https://metacpan.org/release/Number-Compare")
7802 (synopsis "Numeric comparisons")
7803 (description "Number::Compare compiles a simple comparison to an anonymous
7804 subroutine, which you can call with a value to be tested against.")
7805 (license (package-license perl))))
7806
7807 (define-public perl-number-format
7808 (package
7809 (name "perl-number-format")
7810 (version "1.75")
7811 (source (origin
7812 (method url-fetch)
7813 (uri (string-append
7814 "mirror://cpan/authors/id/W/WR/WRW/Number-Format-"
7815 version ".tar.gz"))
7816 (sha256
7817 (base32
7818 "1wspw9fybik76jq9w1n1gmvfixd4wvlrq6ni8kyn85s62v5mkml2"))))
7819 (build-system perl-build-system)
7820 (home-page "https://metacpan.org/release/Number-Format")
7821 (synopsis "Convert numbers to strings with pretty formatting")
7822 (description "@code{Number::Format} is a library for formatting numbers.
7823 Functions are provided for converting numbers to strings in a variety of ways,
7824 and to convert strings that contain numbers back into numeric form. The
7825 output formats may include thousands separators - characters inserted between
7826 each group of three characters counting right to left from the decimal point.
7827 The characters used for the decimal point and the thousands separator come from
7828 the locale information or can be specified by the user.")
7829 (license license:perl-license)))
7830
7831 (define-public perl-number-range
7832 (package
7833 (name "perl-number-range")
7834 (version "0.12")
7835 (source
7836 (origin
7837 (method url-fetch)
7838 (uri (string-append
7839 "mirror://cpan/authors/id/L/LA/LARRYSH/Number-Range-"
7840 version ".tar.gz"))
7841 (sha256
7842 (base32
7843 "0999xvs3w2xprs14q4shqndjf2m6mzvhzdljgr61ddjaqhd84gj3"))))
7844 (build-system perl-build-system)
7845 (home-page "https://metacpan.org/release/Number-Range")
7846 (synopsis "Perl extension defining ranges of numbers")
7847 (description "Number::Range is an object-oriented interface to test if a
7848 number exists in a given range, and to be able to manipulate the range.")
7849 (license (package-license perl))))
7850
7851 (define-public perl-object-signature
7852 (package
7853 (name "perl-object-signature")
7854 (version "1.08")
7855 (source
7856 (origin
7857 (method url-fetch)
7858 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
7859 "Object-Signature-" version ".tar.gz"))
7860 (sha256
7861 (base32 "12k90c19ly93ib1p6sm3k7sbnr2h5dbywkdmnff2ngm99p4m68c4"))))
7862 (build-system perl-build-system)
7863 (native-inputs
7864 `(("perl-module-install" ,perl-module-install)))
7865 (home-page "https://metacpan.org/release/Object-Signature")
7866 (synopsis "Generate cryptographic signatures for objects")
7867 (description "Object::Signature is an abstract base class that you can
7868 inherit from in order to allow your objects to generate unique cryptographic
7869 signatures.")
7870 (license (package-license perl))))
7871
7872 (define-public perl-ole-storage-lite
7873 (package
7874 (name "perl-ole-storage-lite")
7875 (version "0.20")
7876 (source
7877 (origin
7878 (method url-fetch)
7879 (uri (string-append
7880 "mirror://cpan/authors/id/J/JM/JMCNAMARA/OLE-Storage_Lite-"
7881 version
7882 ".tar.gz"))
7883 (sha256
7884 (base32
7885 "1fpqhhgb8blj4hhs97fsbnbhk29s9yms057a9s9yl20f3hbsc65b"))))
7886 (build-system perl-build-system)
7887 (home-page "https://metacpan.org/release/OLE-Storage_Lite")
7888 (synopsis "Read and write OLE storage files")
7889 (description "This module allows you to read and write
7890 an OLE-Structured file. @dfn{OLE} (Object Linking and Embedding) is a
7891 technology to store hierarchical information such as links to other
7892 documents within a single file.")
7893 (license (package-license perl))))
7894
7895 (define-public perl-opengl
7896 (package
7897 (name "perl-opengl")
7898 (version "0.70")
7899 (source
7900 (origin
7901 (method url-fetch)
7902 (uri (string-append
7903 "mirror://cpan/authors/id/C/CH/CHM/OpenGL-"
7904 version
7905 ".tar.gz"))
7906 (sha256
7907 (base32
7908 "1q3lz168q081iwl9jg21fbzhp9la79gav9mv6nmh2jab83s2l3mj"))))
7909 (build-system perl-build-system)
7910 (inputs `(("freeglut" ,freeglut)
7911 ("libxi" ,libxi)
7912 ("libxmu" ,libxmu)))
7913 (arguments
7914 '(#:tests? #f ; test.pl fails with our empty glversion.txt, while
7915 ; the package still seems to work on the examples
7916 #:phases
7917 (modify-phases %standard-phases
7918 (add-before 'configure 'glversion
7919 ;; Building utils/glversion.txt fails, and is probably
7920 ;; dependent on the graphics card in the build system.
7921 ;; Replace it by a content-free file; while this breaks
7922 ;; the tests, the examples in the examples/ subdirectory
7923 ;; can be run.
7924 (lambda _
7925 (substitute* "Makefile.PL"
7926 (("unlink") "# unlink") ; prevent utils/glversion.txt
7927 ; from being deleted once...
7928 (("\\.\"\\$make_ver clean\"") "")) ; ...and twice...
7929 (substitute* "utils/Makefile"
7930 (("all: glversion.txt") "all: ")) ; ...and thrice.
7931 (call-with-output-file "utils/glversion.txt"
7932 (lambda (port)
7933 (display (string-append "FREEGLUT=\nGLUT=\nVERSION=\n"
7934 "VENDOR=\nRENDERER=\n"
7935 "EXTENSIONS=\n")
7936 port)))
7937 #t))
7938 (add-before 'configure 'fix-library-flags
7939 (lambda* (#:key inputs #:allow-other-keys)
7940 (substitute* "Makefile.PL"
7941 (("-L/usr/local/freeglut/lib")
7942 (string-append "-L" (assoc-ref inputs "freeglut") "/lib\n"
7943 "-L" (assoc-ref inputs "glu") "/lib\n"
7944 "-L" (assoc-ref inputs "mesa") "/lib\n")))
7945 #t)))))
7946 (home-page "https://metacpan.org/release/OpenGL")
7947 (synopsis
7948 "Perl bindings to the OpenGL API, GLU, and GLUT/FreeGLUT")
7949 (description "The package provides Perl bindings to OpenGL, GLU
7950 and FreeGLUT.")
7951 (license (package-license perl))))
7952
7953 (define-public perl-package-anon
7954 (package
7955 (name "perl-package-anon")
7956 (version "0.05")
7957 (source
7958 (origin
7959 (method url-fetch)
7960 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
7961 "Package-Anon-" version ".tar.gz"))
7962 (sha256
7963 (base32
7964 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
7965 (build-system perl-build-system)
7966 (propagated-inputs
7967 `(("perl-sub-exporter" ,perl-sub-exporter)
7968 ("perl-params-util" ,perl-params-util)))
7969 (home-page "https://metacpan.org/release/Package-Anon")
7970 (synopsis "Anonymous packages")
7971 (description "This module allows for anonymous packages that are
7972 independent of the main namespace and only available through an object
7973 instance, not by name.")
7974 (license (package-license perl))))
7975
7976 (define-public perl-package-deprecationmanager
7977 (package
7978 (name "perl-package-deprecationmanager")
7979 (version "0.17")
7980 (source
7981 (origin
7982 (method url-fetch)
7983 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
7984 "Package-DeprecationManager-" version ".tar.gz"))
7985 (sha256
7986 (base32
7987 "0jv8svfh1c1q4vxlkf8vjfbdq3n2sj3nx5llv1qrhp1b93d3lx0x"))))
7988 (build-system perl-build-system)
7989 (native-inputs
7990 `(("perl-test-fatal" ,perl-test-fatal)
7991 ("perl-test-requires" ,perl-test-requires)
7992 ("perl-test-output" ,perl-test-output)))
7993 (propagated-inputs
7994 `(("perl-list-moreutils" ,perl-list-moreutils)
7995 ("perl-params-util" ,perl-params-util)
7996 ("perl-sub-install" ,perl-sub-install)))
7997 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
7998 (home-page "https://metacpan.org/release/Package-DeprecationManager")
7999 (synopsis "Manage deprecation warnings for your distribution")
8000 (description "This module allows you to manage a set of deprecations for
8001 one or more modules.")
8002 (license license:artistic2.0)))
8003
8004 (define-public perl-package-stash
8005 (package
8006 (name "perl-package-stash")
8007 (version "0.38")
8008 (source
8009 (origin
8010 (method url-fetch)
8011 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8012 "Package-Stash-" version ".tar.gz"))
8013 (sha256
8014 (base32 "0zrs4byhlpq5ybnl0fd3y6pfzair6i2dyvzn7f7a7pgj9n2fi3n5"))))
8015 (build-system perl-build-system)
8016 (native-inputs
8017 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
8018 ("perl-test-fatal" ,perl-test-fatal)
8019 ("perl-test-requires" ,perl-test-requires)
8020 ("perl-package-anon" ,perl-package-anon)))
8021 (propagated-inputs
8022 `(("perl-module-implementation" ,perl-module-implementation)
8023 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
8024 ("perl-package-stash-xs" ,perl-package-stash-xs)))
8025 (home-page "https://metacpan.org/release/Package-Stash")
8026 (synopsis "Routines for manipulating stashes")
8027 (description "Manipulating stashes (Perl's symbol tables) is occasionally
8028 necessary, but incredibly messy, and easy to get wrong. This module hides all
8029 of that behind a simple API.")
8030 (license (package-license perl))))
8031
8032 (define-public perl-package-stash-xs
8033 (package
8034 (name "perl-package-stash-xs")
8035 (version "0.29")
8036 (source
8037 (origin
8038 (method url-fetch)
8039 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8040 "Package-Stash-XS-" version ".tar.gz"))
8041 (sha256
8042 (base32 "1akqk10qxwk798qppajqbczwmhy4cs9g0lg961m3vq218slnnryk"))))
8043 (build-system perl-build-system)
8044 (native-inputs
8045 `(("perl-test-fatal" ,perl-test-fatal)
8046 ("perl-test-requires" ,perl-test-requires)
8047 ("perl-package-anon" ,perl-package-anon)))
8048 (home-page "https://metacpan.org/release/Package-Stash-XS")
8049 (synopsis "Faster implementation of the Package::Stash API")
8050 (description "This is a backend for Package::Stash, which provides the
8051 functionality in a way that's less buggy and much faster. It will be used by
8052 default if it's installed, and should be preferred in all environments with a
8053 compiler.")
8054 (license (package-license perl))))
8055
8056 (define-public perl-padwalker
8057 (package
8058 (name "perl-padwalker")
8059 (version "2.3")
8060 (source
8061 (origin
8062 (method url-fetch)
8063 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
8064 "PadWalker-" version ".tar.gz"))
8065 (sha256
8066 (base32 "1kw8cnfyh6jbngm9q1kn003g08gis6l82h77d12yaq88c3xl8v1a"))))
8067 (build-system perl-build-system)
8068 (home-page "https://metacpan.org/release/PadWalker")
8069 (synopsis "Play with other peoples' lexical variables")
8070 (description "PadWalker is a module which allows you to inspect (and even
8071 change) lexical variables in any subroutine which called you. It will only
8072 show those variables which are in scope at the point of the call. PadWalker
8073 is particularly useful for debugging.")
8074 (license (package-license perl))))
8075
8076 (define-public perl-parallel-forkmanager
8077 (package
8078 (name "perl-parallel-forkmanager")
8079 (version "1.19")
8080 (source
8081 (origin
8082 (method url-fetch)
8083 (uri (string-append
8084 "mirror://cpan/authors/id/Y/YA/YANICK/Parallel-ForkManager-"
8085 version
8086 ".tar.gz"))
8087 (sha256
8088 (base32
8089 "0wm4wp6p3ah5z212jl12728z68nmxmfr0f03z1jpvdzffnc2xppi"))))
8090 (build-system perl-build-system)
8091 (native-inputs
8092 `(("perl-test-warn" ,perl-test-warn)))
8093 (home-page "https://metacpan.org/release/Parallel-ForkManager")
8094 (synopsis "Simple parallel processing fork manager")
8095 (description "@code{Parallel::ForkManager} is intended for use in
8096 operations that can be done in parallel where the number of
8097 processes to be forked off should be limited.")
8098 (license (package-license perl))))
8099
8100 (define-public perl-params-classify
8101 (package
8102 (name "perl-params-classify")
8103 (version "0.015")
8104 (source
8105 (origin
8106 (method url-fetch)
8107 (uri (string-append
8108 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Params-Classify-"
8109 version ".tar.gz"))
8110 (sha256
8111 (base32
8112 "052r198xyrsv8wz21gijdigz2cgnidsa37nvyfzdiz4rv1fc33ir"))))
8113 (build-system perl-build-system)
8114 (native-inputs
8115 `(("perl-module-build" ,perl-module-build)
8116 ("perl-test-pod" ,perl-test-pod)
8117 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8118 (propagated-inputs
8119 `(("perl-devel-callchecker" ,perl-devel-callchecker)))
8120 (home-page "https://metacpan.org/release/Params-Classify")
8121 (synopsis "Argument type classification")
8122 (description "This module provides various type-testing functions.
8123 These are intended for functions that care what type of data they are
8124 operating on. There are two flavours of function. Functions of the
8125 first flavour provide type classification only. Functions of the
8126 second flavour also check that an argument is of an expected type.
8127 The type enforcement functions handle only the simplest requirements
8128 for arguments of the types handled by the classification functions.
8129 Enforcement of more complex types may be built using the
8130 classification functions, or it may be more convenient to use a module
8131 designed for the more complex job, such as @code{Params::Validate}")
8132 (license license:perl-license)))
8133
8134 (define-public perl-params-util
8135 (package
8136 (name "perl-params-util")
8137 (version "1.102")
8138 (source
8139 (origin
8140 (method url-fetch)
8141 (uri (string-append
8142 "mirror://cpan/authors/id/R/RE/REHSACK/Params-Util-"
8143 version ".tar.gz"))
8144 (sha256
8145 (base32
8146 "00kl154zisf2zsl8yl6xa6yw54nhd9cja5d5fyigs96vhasb36s9"))))
8147 (build-system perl-build-system)
8148 (home-page "https://metacpan.org/release/Params-Util")
8149 (synopsis "Simple, compact and correct param-checking functions")
8150 (description
8151 "Params::Util provides a basic set of importable functions that makes
8152 checking parameters easier.")
8153 (license (package-license perl))))
8154
8155 (define-public perl-params-validate
8156 (package
8157 (name "perl-params-validate")
8158 (version "1.29")
8159 (source
8160 (origin
8161 (method url-fetch)
8162 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8163 "Params-Validate-" version ".tar.gz"))
8164 (sha256
8165 (base32
8166 "0cwpf8yxwyxbnwhf6rx4wnaq1q38j38i34a78a005shb8gxqv9j9"))))
8167 (build-system perl-build-system)
8168 (native-inputs
8169 `(("perl-module-build" ,perl-module-build)
8170 ("perl-test-fatal" ,perl-test-fatal)
8171 ("perl-test-requires" ,perl-test-requires)))
8172 (propagated-inputs
8173 `(("perl-module-implementation" ,perl-module-implementation)))
8174 (home-page "https://metacpan.org/release/Params-Validate")
8175 (synopsis "Validate method/function parameters")
8176 (description "The Params::Validate module allows you to validate method or
8177 function call parameters to an arbitrary level of specificity.")
8178 (license license:artistic2.0)))
8179
8180 (define-public perl-params-validationcompiler
8181 (package
8182 (name "perl-params-validationcompiler")
8183 (version "0.30")
8184 (source
8185 (origin
8186 (method url-fetch)
8187 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8188 "Params-ValidationCompiler-" version ".tar.gz"))
8189 (sha256
8190 (base32 "1jqn1l4m4i341g14kmjsf3a1kn7vv6z89cix0xjjgr1v70iywnyw"))))
8191 (build-system perl-build-system)
8192 (native-inputs
8193 ;; For tests.
8194 `(("perl-test-without-module" ,perl-test-without-module)
8195 ("perl-test2-plugin-nowarnings" ,perl-test2-plugin-nowarnings)
8196 ("perl-test2-suite" ,perl-test2-suite)
8197 ("perl-type-tiny" ,perl-type-tiny)))
8198 (propagated-inputs
8199 `(("perl-eval-closure" ,perl-eval-closure)
8200 ("perl-exception-class" ,perl-exception-class)
8201 ("perl-specio" ,perl-specio)))
8202 (home-page "https://github.com/houseabsolute/Params-ValidationCompiler")
8203 (synopsis "Build an optimized subroutine parameter validator")
8204 (description "This module creates a customized, highly efficient
8205 parameter checking subroutine. It can handle named or positional
8206 parameters, and can return the parameters as key/value pairs or a list
8207 of values. In addition to type checks, it also supports parameter
8208 defaults, optional parameters, and extra \"slurpy\" parameters.")
8209 (license license:artistic2.0)))
8210
8211 (define-public perl-par-dist
8212 (package
8213 (name "perl-par-dist")
8214 (version "0.49")
8215 (source
8216 (origin
8217 (method url-fetch)
8218 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
8219 "PAR-Dist-" version ".tar.gz"))
8220 (sha256
8221 (base32
8222 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
8223 (build-system perl-build-system)
8224 (home-page "https://metacpan.org/release/PAR-Dist")
8225 (synopsis "Create and manipulate PAR distributions")
8226 (description "PAR::Dist is a toolkit to create and manipulate PAR
8227 distributions.")
8228 (license (package-license perl))))
8229
8230 (define-public perl-parent
8231 (deprecated-package "perl-parent" perl))
8232
8233 (define-public perl-path-class
8234 (package
8235 (name "perl-path-class")
8236 (version "0.37")
8237 (source
8238 (origin
8239 (method url-fetch)
8240 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8241 "Path-Class-" version ".tar.gz"))
8242 (sha256
8243 (base32
8244 "1kj8q8dmd8jci94w5arav59nkp0pkxrkliz4n8n6yf02hsa82iv5"))))
8245 (build-system perl-build-system)
8246 (native-inputs `(("perl-module-build" ,perl-module-build)))
8247 (home-page "https://metacpan.org/release/Path-Class")
8248 (synopsis "Path specification manipulation")
8249 (description "Path::Class is a module for manipulation of file and
8250 directory specifications in a cross-platform manner.")
8251 (license (package-license perl))))
8252
8253 (define-public perl-pathtools
8254 (package
8255 (name "perl-pathtools")
8256 (version "3.75")
8257 (source
8258 (origin
8259 (method url-fetch)
8260 (uri (string-append
8261 "mirror://cpan/authors/id/X/XS/XSAWYERX/PathTools-"
8262 version ".tar.gz"))
8263 (sha256
8264 (base32 "18j5z71xin9dsqddl6khm838d23p3843jcq7q0kwgy5ilqx50n55"))))
8265 (build-system perl-build-system)
8266 (arguments
8267 `(#:phases
8268 (modify-phases %standard-phases
8269 (add-after 'unpack 'patch-pwd-path
8270 (lambda* (#:key inputs #:allow-other-keys)
8271 (substitute* "Cwd.pm"
8272 (("'/bin/pwd'")
8273 (string-append "'" (assoc-ref inputs "coreutils")
8274 "/bin/pwd'")))
8275 #t)))))
8276 (inputs
8277 `(("coreutils" ,coreutils)))
8278 (home-page "https://metacpan.org/release/PathTools")
8279 (synopsis "Tools for working with directory and file names")
8280 (description "This package provides functions to work with directory and
8281 file names.")
8282 (license license:perl-license)))
8283
8284 (define-public perl-path-tiny
8285 (package
8286 (name "perl-path-tiny")
8287 (version "0.118")
8288 (source (origin
8289 (method url-fetch)
8290 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
8291 "Path-Tiny-" version ".tar.gz"))
8292 (sha256
8293 (base32
8294 "1zdhc3azw6wn21db3yyygs57vlqkx72ipyd8sa21m72c1y6qs4rj"))))
8295 (build-system perl-build-system)
8296 (arguments
8297 `(#:tests? #f)) ; Tests require additional test modules to be packaged
8298 ;; (native-inputs
8299 ;; `(("perl-test-failwarnings" ,perl-test-failwarnings)
8300 ;; ("perl-test-mockrandom" ,perl-test-mockrandom)))
8301 (inputs
8302 `(("perl-unicode-utf8" ,perl-unicode-utf8)))
8303 (home-page "https://metacpan.org/release/Path-Tiny")
8304 (synopsis "File path utility")
8305 (description "This module provides a small, fast utility for working
8306 with file paths.")
8307 (license license:asl2.0)))
8308
8309 (define-public perl-pdf-api2
8310 (package
8311 (name "perl-pdf-api2")
8312 (version "2.039")
8313 (source (origin
8314 (method url-fetch)
8315 (uri (string-append
8316 "mirror://cpan/authors/id/S/SS/SSIMMS/PDF-API2-"
8317 version ".tar.gz"))
8318 (sha256
8319 (base32
8320 "08x1anlvmxwym081flkrz7wr9q89y9wbq8ajqk72xsbzhhc479rn"))))
8321 (build-system perl-build-system)
8322 (native-inputs
8323 `(("perl-test-exception" ,perl-test-exception)
8324 ("perl-test-memory-cycle" ,perl-test-memory-cycle)))
8325 (propagated-inputs
8326 `(("perl-font-ttf" ,perl-font-ttf)))
8327 (home-page "https://metacpan.org/release/PDF-API2")
8328 (synopsis "Facilitates the creation and modification of PDF files")
8329 (description "This Perl module facilitates the creation and modification
8330 of PDF files.")
8331 (license license:lgpl2.1)))
8332
8333 (define-public perl-perlio-utf8_strict
8334 (package
8335 (name "perl-perlio-utf8-strict")
8336 (version "0.007")
8337 (source (origin
8338 (method url-fetch)
8339 (uri (string-append
8340 "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
8341 version ".tar.gz"))
8342 (sha256
8343 (base32
8344 "1jw1ri8nkm4ck73arbsld1y2qgj2b9ir01y8mzb3mjs6w0pkz8w3"))))
8345 (build-system perl-build-system)
8346 (native-inputs
8347 `(("perl-test-exception" ,perl-test-exception)))
8348 (home-page
8349 "https://metacpan.org/release/PerlIO-utf8_strict")
8350 (synopsis "Fast and correct UTF-8 IO")
8351 (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
8352 PerlIO layer. Unlike Perl's default @code{:utf8} layer it checks the input
8353 for correctness.")
8354 (license (package-license perl))))
8355
8356 (define-public perl-pegex
8357 (package
8358 (name "perl-pegex")
8359 (version "0.70")
8360 (source
8361 (origin
8362 (method url-fetch)
8363 (uri (string-append
8364 "mirror://cpan/authors/id/I/IN/INGY/Pegex-"
8365 version ".tar.gz"))
8366 (sha256
8367 (base32
8368 "1zd0zm6vxapw6bds3ipymkbzam70p3j3rm48794qy11620r22dgx"))))
8369 (build-system perl-build-system)
8370 (native-inputs
8371 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)
8372 ("perl-yaml-libyaml" ,perl-yaml-libyaml)))
8373 (home-page "https://metacpan.org/release/Pegex")
8374 (synopsis "Acmeist PEG Parser Framework")
8375 (description "Pegex is an Acmeist parser framework. It allows you to easily
8376 create parsers that will work equivalently in lots of programming languages.
8377 The inspiration for Pegex comes from the parsing engine upon which the
8378 postmodern programming language Perl 6 is based on. Pegex brings this beauty
8379 to the other justmodern languages that have a normal regular expression engine
8380 available.")
8381 (license (package-license perl))))
8382
8383 (define-public perl-pod-coverage
8384 (package
8385 (name "perl-pod-coverage")
8386 (version "0.23")
8387 (source
8388 (origin
8389 (method url-fetch)
8390 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
8391 "Pod-Coverage-" version ".tar.gz"))
8392 (sha256
8393 (base32
8394 "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
8395 (build-system perl-build-system)
8396 (propagated-inputs
8397 `(("perl-devel-symdump" ,perl-devel-symdump)))
8398 (home-page "https://metacpan.org/release/Pod-Coverage")
8399 (synopsis "Check for comprehensive documentation of a module")
8400 (description "This module provides a mechanism for determining if the pod
8401 for a given module is comprehensive.")
8402 (license (package-license perl))))
8403
8404 (define-public perl-pod-simple
8405 (package
8406 (name "perl-pod-simple")
8407 (version "3.42")
8408 (source (origin
8409 (method url-fetch)
8410 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
8411 "Pod-Simple-" version ".tar.gz"))
8412 (sha256
8413 (base32
8414 "1icagrjqw1azmff82h17cbrhqgql7rg21gz64mjpiqqq0cpfpz59"))))
8415 (build-system perl-build-system)
8416 (home-page "https://metacpan.org/release/Pod-Simple")
8417 (synopsis "Parsing library for text in Pod format")
8418 (description "@code{Pod::Simple} is a Perl library for parsing text in
8419 the @dfn{Pod} (plain old documentation) markup language that is typically
8420 used for writing documentation for Perl and for Perl modules.")
8421 (license (package-license perl))))
8422
8423 (define-public perl-posix-strftime-compiler
8424 (package
8425 (name "perl-posix-strftime-compiler")
8426 (version "0.42")
8427 (source
8428 (origin
8429 (method url-fetch)
8430 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
8431 "POSIX-strftime-Compiler-" version ".tar.gz"))
8432 (sha256
8433 (base32
8434 "04dcn2n4rfkj8p24vj2p17vvis40l87pf2vdqp0vqm5jg3fjnn16"))))
8435 (build-system perl-build-system)
8436 (native-inputs `(("perl-module-build" ,perl-module-build)))
8437 (arguments `(#:tests? #f)) ; TODO: Timezone test failures
8438 (home-page "https://metacpan.org/release/POSIX-strftime-Compiler")
8439 (synopsis "GNU C library compatible strftime for loggers and servers")
8440 (description "POSIX::strftime::Compiler provides GNU C library compatible
8441 strftime(3). But this module is not affected by the system locale. This
8442 feature is useful when you want to write loggers, servers, and portable
8443 applications.")
8444 (license (package-license perl))))
8445
8446 (define-public perl-ppi
8447 (package
8448 (name "perl-ppi")
8449 (version "1.270")
8450 (source
8451 (origin
8452 (method url-fetch)
8453 (uri (string-append "mirror://cpan/authors/id/M/MI/MITHALDU/"
8454 "PPI-" version ".tar.gz"))
8455 (sha256
8456 (base32 "0mzlz9rxqx93rqgy16jcfxwkplvhzr0f1gvvvwmmvf0vg266jak2"))))
8457 (build-system perl-build-system)
8458 (arguments
8459 `(#:tests? #f)) ;FIXME: some tests fail
8460 (native-inputs
8461 `(("perl-class-inspector" ,perl-class-inspector)
8462 ("perl-test-deep" ,perl-test-deep)
8463 ("perl-test-nowarnings" ,perl-test-nowarnings)
8464 ("perl-test-object" ,perl-test-object)
8465 ("perl-test-subcalls" ,perl-test-subcalls)))
8466 (propagated-inputs
8467 `(("perl-clone" ,perl-clone)
8468 ("perl-io-string" ,perl-io-string)
8469 ("perl-params-util" ,perl-params-util)
8470 ("perl-task-weaken" ,perl-task-weaken)))
8471 (home-page "https://metacpan.org/release/PPI")
8472 (synopsis "Parse, analyze and manipulate Perl (without Perl)")
8473 (description "The PPI module parses, analyzes and manipulates Perl
8474 code.")
8475 (license license:perl-license)))
8476
8477 (define-public perl-probe-perl
8478 (package
8479 (name "perl-probe-perl")
8480 (version "0.03")
8481 (source (origin
8482 (method url-fetch)
8483 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
8484 "Probe-Perl-" version ".tar.gz"))
8485 (sha256
8486 (base32
8487 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
8488 (build-system perl-build-system)
8489 (synopsis "Information about the currently running perl")
8490 (description
8491 "Probe::Perl provides methods for obtaining information about the
8492 currently running perl interpreter. It originally began life as code in the
8493 Module::Build project, but has been externalized here for general use.")
8494 (home-page "https://metacpan.org/release/Probe-Perl")
8495 (license (package-license perl))))
8496
8497 (define-public perl-proc-invokeeditor
8498 (package
8499 (name "perl-proc-invokeeditor")
8500 (version "1.13")
8501 (source
8502 (origin
8503 (method url-fetch)
8504 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTEVENS/Proc-InvokeEditor-"
8505 version ".tar.gz"))
8506 (sha256
8507 (base32
8508 "0xc1416kvhq904ribpwh2lbxryh41dzl2glzpgr32b68s4fbwbaa"))))
8509 (build-system perl-build-system)
8510 (arguments
8511 `(#:phases
8512 (modify-phases %standard-phases
8513 (add-after 'unpack 'set-EDITOR
8514 (lambda _ (setenv "EDITOR" "echo") #t)))))
8515 (propagated-inputs
8516 `(("perl-carp-assert" ,perl-carp-assert)))
8517 (home-page "https://metacpan.org/release/Proc-InvokeEditor")
8518 (synopsis "Interface to external editor from Perl")
8519 (description "This module provides the ability to supply some text to an
8520 external text editor, have it edited by the user, and retrieve the results.")
8521 (license (package-license perl))))
8522
8523 (define-public perl-readonly
8524 (package
8525 (name "perl-readonly")
8526 (version "2.00")
8527 (source
8528 (origin
8529 (method url-fetch)
8530 (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
8531 "Readonly-" version ".tar.gz"))
8532 (sha256
8533 (base32
8534 "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
8535 (build-system perl-build-system)
8536 (native-inputs `(("perl-module-build" ,perl-module-build)))
8537 (home-page "https://metacpan.org/release/Readonly")
8538 (synopsis "Create read-only scalars, arrays, hashes")
8539 (description "This module provides a facility for creating non-modifiable
8540 variables in Perl. This is useful for configuration files, headers, etc. It
8541 can also be useful as a development and debugging tool for catching updates to
8542 variables that should not be changed.")
8543 (license (package-license perl))))
8544
8545 (define-public perl-ref-util-xs
8546 (package
8547 (name "perl-ref-util-xs")
8548 (version "0.117")
8549 (source
8550 (origin
8551 (method url-fetch)
8552 (uri (string-append "mirror://cpan/authors/id/X/XS/XSAWYERX/"
8553 "Ref-Util-XS-" version ".tar.gz"))
8554 (sha256
8555 (base32
8556 "0g33cndhj353h5xjihvgjc2h6vxwkyyzw63r4l06czvq4flcar7v"))))
8557 (build-system perl-build-system)
8558 (home-page "https://metacpan.org/release/Ref-Util-XS")
8559 (synopsis "XS implementation for Ref::Util")
8560 (description "@code{Ref::Util::XS} is the XS implementation of
8561 @code{Ref::Util}, which provides several functions to help identify references
8562 in a more convenient way than the usual approach of examining the return value
8563 of @code{ref}.")
8564 (license license:x11)))
8565
8566 (define-public perl-regexp-common
8567 (package
8568 (name "perl-regexp-common")
8569 (version "2017060201")
8570 (source (origin
8571 (method url-fetch)
8572 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
8573 "Regexp-Common-" version ".tar.gz"))
8574 (sha256
8575 (base32
8576 "16q8d7mx0c4nbjrvj69jdn4q33d1k40imgxn83h11wq6xqx8a1zf"))))
8577 (build-system perl-build-system)
8578 (synopsis "Provide commonly requested regular expressions")
8579 (description
8580 "This module exports a single hash (@code{%RE}) that stores or generates
8581 commonly needed regular expressions. Patterns currently provided include:
8582 balanced parentheses and brackets, delimited text (with escapes), integers and
8583 floating-point numbers in any base (up to 36), comments in 44 languages,
8584 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
8585 codes.")
8586 (home-page "https://metacpan.org/release/Regexp-Common")
8587 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
8588 (license (list (package-license perl) license:x11 license:bsd-3))))
8589
8590 (define-public perl-regexp-util
8591 (package
8592 (name "perl-regexp-util")
8593 (version "0.003")
8594 (source
8595 (origin
8596 (method url-fetch)
8597 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
8598 "Regexp-Util-" version ".tar.gz"))
8599 (sha256
8600 (base32
8601 "01n1cggiflsnp9f6adkcxzkc0qpgssz60cwnyyd8mzavh2ximr5a"))))
8602 (build-system perl-build-system)
8603 (home-page "https://metacpan.org/release/Regexp-Util")
8604 (synopsis "Selection of general-utility regexp subroutines")
8605 (description "This package provides a selection of regular expression
8606 subroutines including @code{is_regexp}, @code{regexp_seen_evals},
8607 @code{regexp_is_foreign}, @code{regexp_is_anchored}, @code{serialize_regexp},
8608 and @code{deserialize_regexp}.")
8609 (license (package-license perl))))
8610
8611 (define-public perl-role-tiny
8612 (package
8613 (name "perl-role-tiny")
8614 (version "1.003004")
8615 (source
8616 (origin
8617 (method url-fetch)
8618 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8619 "Role-Tiny-" version ".tar.gz"))
8620 (sha256
8621 (base32
8622 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
8623 (build-system perl-build-system)
8624 (native-inputs
8625 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
8626 ("perl-test-fatal" ,perl-test-fatal)))
8627 (propagated-inputs
8628 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
8629 (home-page "https://metacpan.org/release/Role-Tiny")
8630 (synopsis "Roles, as a slice of Moose")
8631 (description "Role::Tiny is a minimalist role composition tool.")
8632 (license (package-license perl))))
8633
8634 ;; Some packages don't yet work with this newer version of ‘Role::Tiny’.
8635 (define-public perl-role-tiny-2
8636 (package
8637 (inherit perl-role-tiny)
8638 (version "2.001004")
8639 (source
8640 (origin
8641 (method url-fetch)
8642 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
8643 "Role-Tiny-" version ".tar.gz"))
8644 (sha256
8645 (base32 "11qn516352yhi794www3ykwa9xv2gxpfnhn9jcn10x0ahl95gflj"))))))
8646
8647 (define-public perl-safe-isa
8648 (package
8649 (name "perl-safe-isa")
8650 (version "1.000010")
8651 (source
8652 (origin
8653 (method url-fetch)
8654 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
8655 "Safe-Isa-" version ".tar.gz"))
8656 (sha256
8657 (base32
8658 "0sm6p1kw98s7j6n92vvxjqf818xggnmjwci34xjmw7gzl2519x47"))))
8659 (build-system perl-build-system)
8660 (home-page "https://metacpan.org/release/Safe-Isa")
8661 (synopsis "Call isa, can, does, and DOES safely")
8662 (description "This module allows you to call isa, can, does, and DOES
8663 safely on things that may not be objects.")
8664 (license (package-license perl))))
8665
8666 (define-public perl-scalar-string
8667 (package
8668 (name "perl-scalar-string")
8669 (version "0.003")
8670 (source
8671 (origin
8672 (method url-fetch)
8673 (uri (string-append
8674 "mirror://cpan/authors/id/Z/ZE/ZEFRAM/Scalar-String-"
8675 version ".tar.gz"))
8676 (sha256
8677 (base32
8678 "0llbsqk7rsg9p7l1f4yk6iv7wij91gvavprsqhnb04w7nz4ifjpm"))))
8679 (build-system perl-build-system)
8680 (native-inputs
8681 `(("perl-module-build" ,perl-module-build)
8682 ("perl-test-pod" ,perl-test-pod)
8683 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
8684 (home-page "https://metacpan.org/release/Scalar-String")
8685 (synopsis "String aspects of scalars")
8686 (description "@code{Scalar::String} is about the string part of
8687 plain Perl scalars. A scalar has a string value, which is notionally
8688 a sequence of Unicode codepoints but may be internally encoded in
8689 either ISO-8859-1 or UTF-8. In places, more so in older versions of
8690 Perl, the internal encoding shows through. To fully understand Perl
8691 strings it is necessary to understand these implementation details.
8692 This module provides functions to classify a string by encoding and to
8693 encode a string in a desired way. The module is implemented in XS,
8694 with a pure Perl backup version for systems that cannot handle XS.")
8695 (license license:perl-license)))
8696
8697 (define-public perl-scope-guard
8698 (package
8699 (name "perl-scope-guard")
8700 (version "0.21")
8701 (source
8702 (origin
8703 (method url-fetch)
8704 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
8705 "Scope-Guard-" version ".tar.gz"))
8706 (sha256
8707 (base32
8708 "0y6jfzvxiz8h5yfz701shair0ilypq2mvimd7wn8wi2nbkm1p6wc"))))
8709 (build-system perl-build-system)
8710 (home-page "https://metacpan.org/release/Scope-Guard")
8711 (synopsis "Lexically-scoped resource management")
8712 (description "This module provides a convenient way to perform cleanup or
8713 other forms of resource management at the end of a scope. It is particularly
8714 useful when dealing with exceptions: the Scope::Guard constructor takes a
8715 reference to a subroutine that is guaranteed to be called even if the thread
8716 of execution is aborted prematurely. This effectively allows lexically-scoped
8717 \"promises\" to be made that are automatically honoured by perl's garbage
8718 collector.")
8719 (license (package-license perl))))
8720
8721 (define-public perl-set-infinite
8722 (package
8723 (name "perl-set-infinite")
8724 (version "0.65")
8725 (source
8726 (origin
8727 (method url-fetch)
8728 (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
8729 "Set-Infinite-" version ".tar.gz"))
8730 (sha256
8731 (base32
8732 "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
8733 (build-system perl-build-system)
8734 (home-page "https://metacpan.org/release/Set-Infinite")
8735 (synopsis "Infinite sets")
8736 (description "Set::Infinite is a set theory module for infinite sets.")
8737 (license (package-license perl))))
8738
8739 (define-public perl-set-intspan
8740 (package
8741 (name "perl-set-intspan")
8742 (version "1.19")
8743 (source (origin
8744 (method url-fetch)
8745 (uri (string-append
8746 "mirror://cpan/authors/id/S/SW/SWMCD/Set-IntSpan-"
8747 version ".tar.gz"))
8748 (sha256
8749 (base32
8750 "1l6znd40ylzvfwl02rlqzvakv602rmvwgm2xd768fpgc2fdm9dqi"))))
8751 (build-system perl-build-system)
8752 (home-page "https://metacpan.org/release/Set-IntSpan")
8753 (synopsis "Manage sets of integers")
8754 (description "@code{Set::IntSpan} manages sets of integers. It is
8755 optimized for sets that have long runs of consecutive integers.")
8756 (license license:perl-license)))
8757
8758 (define-public perl-set-object
8759 (package
8760 (name "perl-set-object")
8761 (version "1.39")
8762 (source
8763 (origin
8764 (method url-fetch)
8765 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
8766 "Set-Object-" version ".tar.gz"))
8767 (sha256
8768 (base32 "040q819l9x55j0hjhfvc153451syvjffw3d22gs398sd23mwzzsy"))))
8769 (build-system perl-build-system)
8770 (propagated-inputs
8771 `(("perl-moose" ,perl-moose)
8772 ("perl-test-leaktrace" ,perl-test-leaktrace)))
8773 (home-page "https://metacpan.org/release/Set-Object")
8774 (synopsis "Unordered collections of Perl Objects")
8775 (description "Set::Object provides efficient sets, unordered collections
8776 of Perl objects without duplicates for scalars and references.")
8777 (license license:artistic2.0)))
8778
8779 (define-public perl-set-scalar
8780 (package
8781 (name "perl-set-scalar")
8782 (version "1.29")
8783 (source
8784 (origin
8785 (method url-fetch)
8786 (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
8787 "Set-Scalar-" version ".tar.gz"))
8788 (sha256
8789 (base32
8790 "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
8791 (build-system perl-build-system)
8792 (home-page "https://metacpan.org/release/Set-Scalar")
8793 (synopsis "Set operations for Perl")
8794 (description "The first priority of Set::Scalar is to be a convenient
8795 interface to sets (as in: unordered collections of Perl scalars). While not
8796 designed to be slow or big, neither has it been designed to be fast or
8797 compact.")
8798 (license (package-license perl))))
8799
8800 (define-public perl-sort-key
8801 (package
8802 (name "perl-sort-key")
8803 (version "1.33")
8804 (source
8805 (origin
8806 (method url-fetch)
8807 (uri (string-append "mirror://cpan/authors/id/S/SA/SALVA/Sort-Key-"
8808 version ".tar.gz"))
8809 (sha256
8810 (base32
8811 "1kqs10s2plj6c96srk0j8d7xj8dxk1704r7mck8rqk09mg7lqspd"))))
8812 (build-system perl-build-system)
8813 (home-page "https://metacpan.org/release/Sort-Key")
8814 (synopsis "Sort arrays by one or multiple calculated keys")
8815 (description "This Perl module provides various functions to quickly sort
8816 arrays by one or multiple calculated keys.")
8817 (license (package-license perl))))
8818
8819 (define-public perl-sort-naturally
8820 (package
8821 (name "perl-sort-naturally")
8822 (version "1.03")
8823 (source
8824 (origin
8825 (method url-fetch)
8826 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/Sort-Naturally-"
8827 version ".tar.gz"))
8828 (sha256
8829 (base32
8830 "0ip7q5g8d3lr7ri3ffcbrpk1hzzsiwgsn14k10k7hnjphxf1raza"))))
8831 (build-system perl-build-system)
8832 (home-page "https://metacpan.org/release/Sort-Naturally")
8833 (synopsis "Sort lexically, but sort numeral parts numerically")
8834 (description "This module exports two functions, @code{nsort} and
8835 @code{ncmp}; they are used in implementing a \"natural sorting\" algorithm.
8836 Under natural sorting, numeric substrings are compared numerically, and other
8837 word-characters are compared lexically.")
8838 (license (package-license perl))))
8839
8840 (define-public perl-specio
8841 (package
8842 (name "perl-specio")
8843 (version "0.38")
8844 (source
8845 (origin
8846 (method url-fetch)
8847 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
8848 "Specio-" version ".tar.gz"))
8849 (sha256
8850 (base32
8851 "1s5xd9awwrzc94ymimjkxqs6jq513wwlmwwarxaklvg2hk4lps0l"))))
8852 (build-system perl-build-system)
8853 (propagated-inputs
8854 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
8855 ("perl-eval-closure" ,perl-eval-closure)
8856 ("perl-module-runtime" ,perl-module-runtime)
8857 ("perl-mro-compat" ,perl-mro-compat)
8858 ("perl-role-tiny" ,perl-role-tiny)
8859 ("perl-test-fatal" ,perl-test-fatal)
8860 ("perl-test-needs" ,perl-test-needs)))
8861 (home-page "https://metacpan.org/release/Specio")
8862 (synopsis "Classes for representing type constraints and coercion")
8863 (description "The Specio distribution provides classes for representing type
8864 constraints and coercion, along with syntax sugar for declaring them. Note that
8865 this is not a proper type system for Perl. Nothing in this distribution will
8866 magically make the Perl interpreter start checking a value's type on assignment
8867 to a variable. In fact, there's no built-in way to apply a type to a variable at
8868 all. Instead, you can explicitly check a value against a type, and optionally
8869 coerce values to that type.")
8870 (license license:artistic2.0)))
8871
8872 (define-public perl-spiffy
8873 (package
8874 (name "perl-spiffy")
8875 (version "0.46")
8876 (source
8877 (origin
8878 (method url-fetch)
8879 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
8880 "Spiffy-" version ".tar.gz"))
8881 (sha256
8882 (base32
8883 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
8884 (build-system perl-build-system)
8885 (home-page "https://metacpan.org/release/Spiffy")
8886 (synopsis "Spiffy Perl Interface Framework For You")
8887 (description "Spiffy is a framework and methodology for doing object
8888 oriented (OO) programming in Perl. Spiffy combines the best parts of
8889 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
8890 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
8891 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
8892 other OO languages like Python, Ruby, Java and Perl 6.")
8893 (license (package-license perl))))
8894
8895 (define-public perl-want
8896 (package
8897 (name "perl-want")
8898 (version "0.29")
8899 (source (origin
8900 (method url-fetch)
8901 (uri (string-append
8902 "mirror://cpan/authors/id/R/RO/ROBIN/Want-"
8903 version ".tar.gz"))
8904 (sha256
8905 (base32
8906 "1xsjylbxxcbkjazqms49ipi94j1hd2ykdikk29cq7dscil5p9r5l"))))
8907 (build-system perl-build-system)
8908 (home-page "https://metacpan.org/release/Want")
8909 (synopsis "Generalization of wantarray")
8910 (description "This module generalises the mechanism of the
8911 @code{wantarray} function, allowing a function to determine in some detail how
8912 its return value is going to be immediately used.")
8913 (license license:perl-license)))
8914
8915 (define-public perl-contextual-return
8916 (package
8917 (name "perl-contextual-return")
8918 (version "0.004014")
8919 (source (origin
8920 (method url-fetch)
8921 (uri (string-append
8922 "mirror://cpan/authors/id/D/DC/DCONWAY/Contextual-Return-"
8923 version ".tar.gz"))
8924 (sha256
8925 (base32
8926 "0y4zf5qkpayp4kkg7lw9ydbbin1z99m6xvy02fgacjbfw4ai9zh9"))))
8927 (build-system perl-build-system)
8928 (propagated-inputs
8929 `(("perl-want" ,perl-want)))
8930 (home-page "https://metacpan.org/release/Contextual-Return")
8931 (synopsis "Create context-sensitive return values")
8932 (description "This module provides a collection of named blocks that allow
8933 a return statement to return different values depending on the context in
8934 which it is called.")
8935 (license license:perl-license)))
8936
8937 (define-public perl-statistics-basic
8938 (package
8939 (name "perl-statistics-basic")
8940 (version "1.6611")
8941 (source (origin
8942 (method url-fetch)
8943 (uri (string-append
8944 "mirror://cpan/authors/id/J/JE/JETTERO/Statistics-Basic-"
8945 version ".tar.gz"))
8946 (sha256
8947 (base32
8948 "1ywl398z42hz9w1k0waf1caa6agz8jzsjlf4rzs1lgpx2mbcwmb8"))))
8949 (build-system perl-build-system)
8950 (inputs
8951 `(("perl-number-format" ,perl-number-format)))
8952 (home-page "https://metacpan.org/release/Statistics-Basic")
8953 (synopsis "Collection of very basic statistics modules")
8954 (description "This package provides basic statistics functions like
8955 @code{median()}, @code{mean()}, @code{variance()} and @code{stddev()}.")
8956 (license license:lgpl2.0)))
8957
8958 (define-public perl-statistics-pca
8959 (package
8960 (name "perl-statistics-pca")
8961 (version "0.0.1")
8962 (source (origin
8963 (method url-fetch)
8964 (uri (string-append
8965 "mirror://cpan/authors/id/D/DS/DSTH/Statistics-PCA-"
8966 version ".tar.gz"))
8967 (sha256
8968 (base32
8969 "1i3bskwibp54c9a2wx8gzr3hyds6mmhr3d550g8j6893005v3bgq"))))
8970 (build-system perl-build-system)
8971 (native-inputs
8972 `(("perl-module-build" ,perl-module-build)))
8973 (propagated-inputs
8974 `(("perl-contextual-return" ,perl-contextual-return)
8975 ("perl-math-cephes" ,perl-math-cephes)
8976 ("perl-math-matrixreal" ,perl-math-matrixreal)
8977 ("perl-text-simpletable" ,perl-text-simpletable)))
8978 (home-page "https://metacpan.org/release/Statistics-PCA")
8979 (synopsis "Perl implementation of Principal Component Analysis")
8980 (description "This package provides the Statistics::PCA module, an
8981 implementation of @dfn{Principal Component Analysis} (PCA).")
8982 (license license:perl-license)))
8983
8984 (define-public perl-stream-buffered
8985 (package
8986 (name "perl-stream-buffered")
8987 (version "0.03")
8988 (source
8989 (origin
8990 (method url-fetch)
8991 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
8992 "Stream-Buffered-" version ".tar.gz"))
8993 (sha256
8994 (base32
8995 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
8996 (build-system perl-build-system)
8997 (home-page "https://metacpan.org/release/Stream-Buffered")
8998 (synopsis "Temporary buffer to save bytes")
8999 (description "Stream::Buffered is a buffer class to store arbitrary length
9000 of byte strings and then get a seekable filehandle once everything is
9001 buffered. It uses PerlIO and/or temporary file to save the buffer depending
9002 on the length of the size.")
9003 (license (package-license perl))))
9004
9005 (define-public perl-strictures
9006 (package
9007 (name "perl-strictures")
9008 (version "1.005005")
9009 (source
9010 (origin
9011 (method url-fetch)
9012 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
9013 "strictures-" version ".tar.gz"))
9014 (sha256
9015 (base32
9016 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
9017 (build-system perl-build-system)
9018 (home-page "https://metacpan.org/release/strictures")
9019 (synopsis "Turn on strict and make all warnings fatal")
9020 (description "Strictures turns on strict and make all warnings fatal when
9021 run from within a source-controlled directory.")
9022 (license (package-license perl))))
9023
9024 ;; Some packages don't yet work with this newer version of ‘strictures’.
9025 (define-public perl-strictures-2
9026 (package
9027 (inherit perl-strictures)
9028 (version "2.000006")
9029 (source
9030 (origin
9031 (method url-fetch)
9032 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
9033 "strictures-" version ".tar.gz"))
9034 (sha256
9035 (base32 "0mwd9xqz4n8qfpi5h5581lbm33qhf7agww18h063icnilrs7km89"))))))
9036
9037 (define-public perl-string-camelcase
9038 (package
9039 (name "perl-string-camelcase")
9040 (version "0.04")
9041 (source
9042 (origin
9043 (method url-fetch)
9044 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
9045 "String-CamelCase-" version ".tar.gz"))
9046 (sha256
9047 (base32 "1a8i4yzv586svd0pbxls7642vvmyiwzh4x2xyij8gbnfxsydxhw9"))))
9048 (build-system perl-build-system)
9049 (arguments
9050 `(#:phases
9051 (modify-phases %standard-phases
9052 (add-before 'configure 'set-perl-search-path
9053 (lambda _
9054 ;; Work around "dotless @INC" build failure.
9055 (setenv "PERL5LIB"
9056 (string-append (getcwd) ":"
9057 (getenv "PERL5LIB")))
9058 #t)))))
9059 (home-page "https://metacpan.org/release/String-CamelCase")
9060 (synopsis "Camelcase and de-camelcase")
9061 (description "This module may be used to convert from under_score text to
9062 CamelCase and back again.")
9063 (license (package-license perl))))
9064
9065 (define-public perl-string-escape
9066 (package
9067 (name "perl-string-escape")
9068 (version "2010.002")
9069 (source
9070 (origin
9071 (method url-fetch)
9072 (uri (string-append
9073 "mirror://cpan/authors/id/E/EV/EVO/String-Escape-"
9074 version ".tar.gz"))
9075 (sha256
9076 (base32
9077 "12ls7f7847i4qcikkp3skwraqvjphjiv2zxfhl5d49326f5myr7x"))))
9078 (build-system perl-build-system)
9079 (home-page "https://metacpan.org/release/String-Escape")
9080 (synopsis "Backslash escapes, quoted phrase, word elision, etc.")
9081 (description "This module provides a flexible calling interface to some
9082 frequently-performed string conversion functions, including applying and
9083 expanding standard C/Unix-style backslash escapes like \n and \t, wrapping and
9084 removing double-quotes, and truncating to fit within a desired length.")
9085 (license (package-license perl))))
9086
9087 (define-public perl-string-formatter
9088 (package
9089 (name "perl-string-formatter")
9090 (version "0.102084")
9091 (source
9092 (origin
9093 (method url-fetch)
9094 (uri (string-append
9095 "mirror://cpan/authors/id/R/RJ/RJBS/String-Formatter-"
9096 version
9097 ".tar.gz"))
9098 (sha256
9099 (base32
9100 "0mlwm0rirv46gj4h072q8gdync5zxxsxy8p028gdyrhczl942dc3"))))
9101 (build-system perl-build-system)
9102 (propagated-inputs
9103 `(("perl-params-util" ,perl-params-util)
9104 ("perl-sub-exporter" ,perl-sub-exporter)))
9105 (home-page "https://metacpan.org/release/String-Formatter")
9106 (synopsis "Build your own sprintf-like functions")
9107 (description
9108 "@code{String::Formatter} is a tool for building sprintf-like formatting
9109 routines. It supports named or positional formatting, custom conversions,
9110 fixed string interpolation, and simple width-matching.")
9111 (license license:gpl2)))
9112
9113 (define-public perl-string-rewriteprefix
9114 (package
9115 (name "perl-string-rewriteprefix")
9116 (version "0.007")
9117 (source
9118 (origin
9119 (method url-fetch)
9120 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
9121 "String-RewritePrefix-" version ".tar.gz"))
9122 (sha256
9123 (base32
9124 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
9125 (build-system perl-build-system)
9126 (propagated-inputs
9127 `(("perl-sub-exporter" ,perl-sub-exporter)))
9128 (home-page "https://metacpan.org/release/String-RewritePrefix")
9129 (synopsis "Rewrite strings based on a set of known prefixes")
9130 (description "This module allows you to rewrite strings based on a set of
9131 known prefixes.")
9132 (license (package-license perl))))
9133
9134 (define-public perl-string-shellquote
9135 (package
9136 (name "perl-string-shellquote")
9137 (version "1.04")
9138 (source
9139 (origin
9140 (method url-fetch)
9141 (uri (string-append
9142 "mirror://cpan/authors/id/R/RO/ROSCH/String-ShellQuote-"
9143 version
9144 ".tar.gz"))
9145 (sha256
9146 (base32
9147 "0dfxhr6hxc2majkkrm0qbx3qcbykzpphbj2ms93dc86f7183c1p6"))))
9148 (build-system perl-build-system)
9149 (home-page "https://metacpan.org/release/String-ShellQuote")
9150 (synopsis "Quote strings for passing through a shell")
9151 (description
9152 "@code{shell-quote} lets you pass arbitrary strings through the shell so
9153 that they won't be changed.")
9154 (license (package-license perl))))
9155
9156 (define-public perl-string-print
9157 (package
9158 (name "perl-string-print")
9159 (version "0.15")
9160 (source (origin
9161 (method url-fetch)
9162 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
9163 "String-Print-" version ".tar.gz"))
9164 (sha256
9165 (base32
9166 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
9167 (build-system perl-build-system)
9168 (propagated-inputs
9169 `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
9170 (home-page "https://metacpan.org/release/String-Print")
9171 (synopsis "String printing alternatives to printf")
9172 (description
9173 "This module inserts values into (translated) strings. It provides
9174 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
9175 a functional interface.")
9176 (license (package-license perl))))
9177
9178 (define-public perl-sub-exporter
9179 (package
9180 (name "perl-sub-exporter")
9181 (version "0.987")
9182 (source
9183 (origin
9184 (method url-fetch)
9185 (uri (string-append
9186 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
9187 version ".tar.gz"))
9188 (sha256
9189 (base32
9190 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
9191 (build-system perl-build-system)
9192 (propagated-inputs
9193 `(("perl-data-optlist" ,perl-data-optlist)
9194 ("perl-params-util" ,perl-params-util)))
9195 (home-page "https://metacpan.org/release/Sub-Exporter")
9196 (synopsis "Sophisticated exporter for custom-built routines")
9197 (description
9198 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
9199 custom-built routines.")
9200 (license (package-license perl))))
9201
9202 (define-public perl-sub-exporter-progressive
9203 (package
9204 (name "perl-sub-exporter-progressive")
9205 (version "0.001013")
9206 (source
9207 (origin
9208 (method url-fetch)
9209 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
9210 "Sub-Exporter-Progressive-" version ".tar.gz"))
9211 (sha256
9212 (base32
9213 "0mn0x8mkh36rrsr58s1pk4srwxh2hbwss7sv630imnk49navfdfm"))))
9214 (build-system perl-build-system)
9215 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
9216 (home-page "https://metacpan.org/release/Sub-Exporter-Progressive")
9217 (synopsis "Only use Sub::Exporter if you need it")
9218 (description "Sub::Exporter is an incredibly powerful module, but with
9219 that power comes great responsibility, as well as some runtime penalties.
9220 This module is a \"Sub::Exporter\" wrapper that will let your users just use
9221 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
9222 if your users try to use \"Sub::Exporter\"'s more advanced features, like
9223 renaming exports, if they try to use them.")
9224 (license (package-license perl))))
9225
9226 (define-public perl-sub-identify
9227 (package
9228 (name "perl-sub-identify")
9229 (version "0.14")
9230 (source
9231 (origin
9232 (method url-fetch)
9233 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
9234 "Sub-Identify-" version ".tar.gz"))
9235 (sha256
9236 (base32
9237 "0vxdxyfh6037xy88ic7500wydzmsxldhp95n8bld2kaihqh2g386"))))
9238 (build-system perl-build-system)
9239 (home-page "https://metacpan.org/release/Sub-Identify")
9240 (synopsis "Retrieve names of code references")
9241 (description "Sub::Identify allows you to retrieve the real name of code
9242 references.")
9243 (license (package-license perl))))
9244
9245 (define-public perl-sub-info
9246 (package
9247 (name "perl-sub-info")
9248 (version "0.002")
9249 (source
9250 (origin
9251 (method url-fetch)
9252 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Sub-Info-"
9253 version ".tar.gz"))
9254 (sha256
9255 (base32
9256 "1snhrmc6gpw2zjnj7zvvqj69mlw711bxah6kk4dg5vxxjvb5cc7a"))))
9257 (build-system perl-build-system)
9258 (propagated-inputs
9259 `(("perl-importer" ,perl-importer)))
9260 (home-page "https://metacpan.org/release/Sub-Info")
9261 (synopsis "Tool to inspect subroutines")
9262 (description "This package provides tools for inspecting subroutines
9263 in Perl.")
9264 (license (package-license perl))))
9265
9266 (define-public perl-sub-install
9267 (package
9268 (name "perl-sub-install")
9269 (version "0.928")
9270 (source
9271 (origin
9272 (method url-fetch)
9273 (uri (string-append
9274 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
9275 version ".tar.gz"))
9276 (sha256
9277 (base32
9278 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
9279 (build-system perl-build-system)
9280 (home-page "https://metacpan.org/release/Sub-Install")
9281 (synopsis "Install subroutines into packages easily")
9282 (description
9283 "Sub::Install makes it easy to install subroutines into packages without
9284 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
9285 can see them.")
9286 (license (package-license perl))))
9287
9288 (define-public perl-sub-name
9289 (package
9290 (name "perl-sub-name")
9291 (version "0.21")
9292 (source
9293 (origin
9294 (method url-fetch)
9295 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9296 "Sub-Name-" version ".tar.gz"))
9297 (sha256
9298 (base32
9299 "05viq8scqk29g964fsfvls2rhvlb8myz3jblwh5c2ivhw3gfjcmx"))))
9300 (build-system perl-build-system)
9301 (native-inputs
9302 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
9303 (home-page "https://metacpan.org/release/Sub-Name")
9304 (synopsis "(Re)name a sub")
9305 (description "Assigns a new name to referenced sub. If package
9306 specification is omitted in the name, then the current package is used. The
9307 return value is the sub.")
9308 (license (package-license perl))))
9309
9310 (define-public perl-sub-quote
9311 (package
9312 (name "perl-sub-quote")
9313 (version "2.006006")
9314 (source
9315 (origin
9316 (method url-fetch)
9317 (uri (string-append
9318 "mirror://cpan/authors/id/H/HA/HAARG/Sub-Quote-"
9319 version ".tar.gz"))
9320 (sha256
9321 (base32 "17fq4iskrisnqs96amrz493vxikwvqbj9s7014k6vyl84gs2lkkf"))))
9322 (build-system perl-build-system)
9323 (native-inputs
9324 `(("perl-test-fatal" ,perl-test-fatal)))
9325 (propagated-inputs
9326 `(("perl-sub-name" ,perl-sub-name)))
9327 (home-page "https://metacpan.org/release/Sub-Quote")
9328 (synopsis "Efficient generation of subroutines via string eval")
9329 (description "Sub::Quote provides an efficient generation of subroutines
9330 via string eval.")
9331 (license (package-license perl))))
9332
9333 (define-public perl-sub-uplevel
9334 (package
9335 (name "perl-sub-uplevel")
9336 (version "0.24")
9337 (source
9338 (origin
9339 (method url-fetch)
9340 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
9341 "Sub-Uplevel-" version ".tar.gz"))
9342 (sha256
9343 (base32
9344 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
9345 (build-system perl-build-system)
9346 (home-page "https://metacpan.org/release/Sub-Uplevel")
9347 (synopsis "Apparently run a function in a higher stack frame")
9348 (description "Like Tcl's uplevel() function, but not quite so dangerous.
9349 The idea is just to fool caller(). All the really naughty bits of Tcl's
9350 uplevel() are avoided.")
9351 (license (package-license perl))))
9352
9353 (define-public perl-super
9354 (package
9355 (name "perl-super")
9356 (version "1.20190531")
9357 (source
9358 (origin
9359 (method url-fetch)
9360 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
9361 "SUPER-" version ".tar.gz"))
9362 (sha256
9363 (base32 "16nk2za9fwyg7mcifacr69qi075iz1yvy8r9jh3903kzdvkiwpb8"))))
9364 (build-system perl-build-system)
9365 (native-inputs
9366 `(("perl-module-build" ,perl-module-build)))
9367 (propagated-inputs
9368 `(("perl-sub-identify" ,perl-sub-identify)))
9369 (home-page "https://metacpan.org/release/SUPER")
9370 (synopsis "Control superclass method dispatching")
9371 (description
9372 "When subclassing a class, you may occasionally want to dispatch control to
9373 the superclass---at least conditionally and temporarily. This module provides
9374 nicer equivalents to the native Perl syntax for calling superclasses, along with
9375 a universal @code{super} method to determine a class' own superclass, and better
9376 support for run-time mix-ins and roles.")
9377 (license license:perl-license)))
9378
9379 (define-public perl-svg
9380 (package
9381 (name "perl-svg")
9382 (version "2.84")
9383 (source
9384 (origin
9385 (method url-fetch)
9386 (uri (string-append "mirror://cpan/authors/id/M/MA/MANWAR/SVG-"
9387 version ".tar.gz"))
9388 (sha256
9389 (base32 "1br8dwh2363s6r0qgy7vv30gv5kj456vj5m6x83savx4wzfnsggc"))))
9390 (build-system perl-build-system)
9391 (home-page "https://metacpan.org/release/SVG")
9392 (synopsis "Perl extension for generating SVG documents")
9393 (description "SVG is a Perl module which generates a nested data structure
9394 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
9395 Using SVG, you can generate SVG objects, embed other SVG instances into it,
9396 access the DOM object, create and access Javascript, and generate SMIL
9397 animation content.")
9398 (license (package-license perl))))
9399
9400 (define-public perl-switch
9401 (package
9402 (name "perl-switch")
9403 (version "2.17")
9404 (source
9405 (origin
9406 (method url-fetch)
9407 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/Switch-"
9408 version ".tar.gz"))
9409 (sha256
9410 (base32
9411 "0xbdjdgzfj9zwa4j3ipr8bfk7bcici4hk89hq5d27rhg2isljd9i"))))
9412 (build-system perl-build-system)
9413 (home-page "https://metacpan.org/release/Switch")
9414 (synopsis "Switch statement for Perl")
9415 (description "Switch is a Perl module which implements a generalized case
9416 mechanism. The module augments the standard Perl syntax with two new
9417 statements: @code{switch} and @code{case}.")
9418 (license (package-license perl))))
9419
9420 (define-public perl-sys-cpu
9421 (package
9422 (name "perl-sys-cpu")
9423 (version "0.61")
9424 (source (origin
9425 (method url-fetch)
9426 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
9427 "Sys-CPU-" version ".tar.gz"))
9428 (sha256
9429 (base32
9430 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))
9431 (modules '((guix build utils)))
9432 (snippet
9433 '(begin
9434 ;; The contents of /proc/cpuinfo can differ and confuse the
9435 ;; cpu_clock and cpu_type methods, so we replace the test
9436 ;; with one that marks cpu_clock and cpu_type as TODO.
9437 ;; Borrowed from Debian.
9438 (call-with-output-file "t/Sys-CPU.t"
9439 (lambda (port)
9440 (format port "#!/usr/bin/perl
9441
9442 use Test::More tests => 4;
9443
9444 BEGIN { use_ok('Sys::CPU'); }
9445
9446 $number = &Sys::CPU::cpu_count();
9447 ok( defined($number), \"CPU Count: $number\" );
9448
9449 TODO: {
9450 local $TODO = \"/proc/cpuinfo doesn't always report 'cpu MHz' or 'clock' or 'bogomips' ...\";
9451 $speed = &Sys::CPU::cpu_clock();
9452 ok( defined($speed), \"CPU Speed: $speed\" );
9453 }
9454
9455 TODO: {
9456 local $TODO = \"/proc/cpuinfo doesn't always report 'model name' or 'machine' ...\";
9457 $type = &Sys::CPU::cpu_type();
9458 ok( defined($type), \"CPU Type: $type\" );
9459 }~%")))
9460 #t))))
9461 (build-system perl-build-system)
9462 (synopsis "Perl extension for getting CPU information")
9463 (description
9464 "Sys::CPU is a module for counting the number of CPUs on a system, and
9465 determining their type and clock speed.")
9466 (home-page "https://metacpan.org/release/MZSANFORD/Sys-CPU-0.61")
9467 (license (package-license perl))))
9468
9469 (define-public perl-sys-hostname-long
9470 (package
9471 (name "perl-sys-hostname-long")
9472 (version "1.5")
9473 (source
9474 (origin
9475 (method url-fetch)
9476 (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
9477 "Sys-Hostname-Long-" version ".tar.gz"))
9478 (sha256
9479 (base32
9480 "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
9481 (build-system perl-build-system)
9482 (arguments `(#:tests? #f)) ;no `hostname' during build
9483 (home-page "https://metacpan.org/release/Sys-Hostname-Long")
9484 (synopsis "Get full hostname in Perl")
9485 (description "Sys::Hostname::Long tries very hard to get the full hostname
9486 of a system.")
9487 (license (package-license perl))))
9488
9489 (define-public perl-sys-syscall
9490 (package
9491 (name "perl-sys-syscall")
9492 (version "0.25")
9493 (source
9494 (origin
9495 (method url-fetch)
9496 (uri (string-append "mirror://cpan/authors/id/B/BR/BRADFITZ/"
9497 "Sys-Syscall-" version ".tar.gz"))
9498 (sha256
9499 (base32
9500 "1r8k4q04dhs191zgdfgiagvbra770hx0bm6x24jsykxn0c6ghi8y"))))
9501 (build-system perl-build-system)
9502 (home-page "https://metacpan.org/release/Sys-Syscall")
9503 (synopsis
9504 "Access system calls that Perl doesn't normally provide access to")
9505 (description
9506 "Sys::Syscall allows one to use epoll and sendfile system calls from
9507 Perl. Support is mostly Linux-only for now, but other syscalls/OSes are
9508 planned for the future.")
9509 (license license:perl-license)))
9510
9511 (define-public perl-task-weaken
9512 (package
9513 (name "perl-task-weaken")
9514 (version "1.06")
9515 (source
9516 (origin
9517 (method url-fetch)
9518 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
9519 "Task-Weaken-" version ".tar.gz"))
9520 (sha256
9521 (base32
9522 "1gk6rmnp4x50lzr0vfng41khf0f8yzxlm0pad1j69vxskpdzx0r3"))))
9523 (build-system perl-build-system)
9524 (arguments
9525 '(#:phases (modify-phases %standard-phases
9526 (add-before 'configure 'set-search-path
9527 (lambda _
9528 ;; Work around "dotless @INC" build failure.
9529 (setenv "PERL5LIB"
9530 (string-append (getcwd) ":"
9531 (getenv "PERL5LIB")))
9532 #t)))))
9533 (home-page "https://metacpan.org/release/Task-Weaken")
9534 (synopsis "Ensure that a platform has weaken support")
9535 (description "One recurring problem in modules that use Scalar::Util's
9536 weaken function is that it is not present in the pure-perl variant. If
9537 Scalar::Util is not available at all, it will issue a normal dependency on the
9538 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
9539 module does not have weaken, the install will bail out altogether with a long
9540 error encouraging the user to seek support.")
9541 (license (package-license perl))))
9542
9543 (define-public perl-template-toolkit
9544 (package
9545 (name "perl-template-toolkit")
9546 (version "2.28")
9547 (source
9548 (origin
9549 (method url-fetch)
9550 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
9551 "Template-Toolkit-" version ".tar.gz"))
9552 (sha256
9553 (base32
9554 "1msxg3j1hx5wsc7vr81x5gs9gdbn4y0x6cvyj3pq4dgi1603dbvi"))))
9555 (build-system perl-build-system)
9556 (propagated-inputs
9557 `(("perl-appconfig" ,perl-appconfig)
9558 ("perl-test-leaktrace" ,perl-test-leaktrace)))
9559 (home-page "https://metacpan.org/release/Template-Toolkit")
9560 (synopsis "Template processing system for Perl")
9561 (description "The Template Toolkit is a collection of modules which
9562 implement an extensible template processing system. It was originally
9563 designed and remains primarily useful for generating dynamic web content, but
9564 it can be used equally well for processing any other kind of text based
9565 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
9566 (license (package-license perl))))
9567
9568 (define-public perl-template-timer
9569 (package
9570 (name "perl-template-timer")
9571 (version "1.00")
9572 (source
9573 (origin
9574 (method url-fetch)
9575 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
9576 "Template-Timer-" version ".tar.gz"))
9577 (sha256
9578 (base32
9579 "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
9580 (build-system perl-build-system)
9581 (propagated-inputs
9582 `(("perl-template-toolkit" ,perl-template-toolkit)))
9583 (home-page "https://metacpan.org/release/Template-Timer")
9584 (synopsis "Profiling for Template Toolkit")
9585 (description "Template::Timer provides inline profiling of the template
9586 processing in Perl code.")
9587 (license (list license:gpl3 license:artistic2.0))))
9588
9589 (define-public perl-template-tiny
9590 (package
9591 (name "perl-template-tiny")
9592 (version "1.12")
9593 (source
9594 (origin
9595 (method url-fetch)
9596 (uri (string-append
9597 "mirror://cpan/authors/id/A/AD/ADAMK/Template-Tiny-"
9598 version
9599 ".tar.gz"))
9600 (sha256
9601 (base32
9602 "0jhadxbc8rzbk2v8qvjrbhnvfp0m56iqar6d4nvxyl8bccn0cgh7"))))
9603 (build-system perl-build-system)
9604 (home-page "https://metacpan.org/release/Template-Tiny")
9605 (synopsis "Template Toolkit reimplemented in as little code as possible")
9606 (description
9607 "@code{Template::Tiny} is a reimplementation of a subset of the
9608 functionality from Template Toolkit in as few lines of code as possible.
9609
9610 It is intended for use in light-usage, low-memory, or low-cpu templating
9611 situations, where you may need to upgrade to the full feature set in the
9612 future, or if you want the retain the familiarity of TT-style templates.")
9613 (license license:perl-license)))
9614
9615 (define-public perl-term-encoding
9616 (package
9617 (name "perl-term-encoding")
9618 (version "0.02")
9619 (source
9620 (origin
9621 (method url-fetch)
9622 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
9623 "Term-Encoding-" version ".tar.gz"))
9624 (sha256
9625 (base32
9626 "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
9627 (build-system perl-build-system)
9628 (native-inputs
9629 `(("perl-module-install" ,perl-module-install)))
9630 (home-page "https://metacpan.org/release/Term-Encoding")
9631 (synopsis "Detect encoding of the current terminal")
9632 (description "Term::Encoding is a simple module to detect the encoding of
9633 the current terminal expects in various ways.")
9634 (license (package-license perl))))
9635
9636 (define-public perl-term-progressbar
9637 (package
9638 (name "perl-term-progressbar")
9639 (version "2.17")
9640 (source
9641 (origin
9642 (method url-fetch)
9643 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
9644 "Term-ProgressBar-" version ".tar.gz"))
9645 (sha256
9646 (base32
9647 "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
9648 (build-system perl-build-system)
9649 (native-inputs
9650 `(("perl-capture-tiny" ,perl-capture-tiny)
9651 ("perl-test-exception" ,perl-test-exception)))
9652 (propagated-inputs
9653 `(("perl-class-methodmaker" ,perl-class-methodmaker)
9654 ("perl-term-readkey" ,perl-term-readkey)))
9655 (home-page "https://metacpan.org/release/Term-ProgressBar")
9656 (synopsis "Progress meter on a standard terminal")
9657 (description "Term::ProgressBar provides a simple progress bar on the
9658 terminal, to let the user know that something is happening, roughly how much
9659 stuff has been done, and maybe an estimate at how long remains.")
9660 (license (package-license perl))))
9661
9662 (define-public perl-term-progressbar-quiet
9663 (package
9664 (name "perl-term-progressbar-quiet")
9665 (version "0.31")
9666 (source
9667 (origin
9668 (method url-fetch)
9669 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
9670 "Term-ProgressBar-Quiet-" version ".tar.gz"))
9671 (sha256
9672 (base32
9673 "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
9674 (build-system perl-build-system)
9675 (propagated-inputs
9676 `(("perl-io-interactive" ,perl-io-interactive)
9677 ("perl-term-progressbar" ,perl-term-progressbar)
9678 ("perl-test-mockobject" ,perl-test-mockobject)))
9679 (home-page "https://metacpan.org/release/Term-ProgressBar-Quiet")
9680 (synopsis "Progress meter if run interactively")
9681 (description "Term::ProgressBar is a wonderful module for showing progress
9682 bars on the terminal. This module acts very much like that module when it is
9683 run interactively. However, when it is not run interactively (for example, as
9684 a cron job) then it does not show the progress bar.")
9685 (license (package-license perl))))
9686
9687 (define-public perl-term-progressbar-simple
9688 (package
9689 (name "perl-term-progressbar-simple")
9690 (version "0.03")
9691 (source
9692 (origin
9693 (method url-fetch)
9694 (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
9695 "Term-ProgressBar-Simple-" version ".tar.gz"))
9696 (sha256
9697 (base32
9698 "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
9699 (build-system perl-build-system)
9700 (propagated-inputs
9701 `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
9702 (home-page "https://metacpan.org/release/Term-ProgressBar-Simple")
9703 (synopsis "Simple progress bars")
9704 (description "Term::ProgressBar::Simple tells you how much work has been
9705 done, how much is left to do, and estimate how long it will take.")
9706 (license (package-license perl))))
9707
9708 (define-public perl-term-readkey
9709 (package
9710 (name "perl-term-readkey")
9711 (version "2.38")
9712 (source
9713 (origin
9714 (method url-fetch)
9715 (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
9716 "TermReadKey-" version ".tar.gz"))
9717 (sha256
9718 (base32
9719 "143jlibah1g14bym7sj3gphvqkpj1w4vn7sqc4vc62jpviw5hr2s"))))
9720 (build-system perl-build-system)
9721 (home-page "https://metacpan.org/release/TermReadKey")
9722 (synopsis "Simple terminal control")
9723 (description "This module, ReadKey, provides ioctl control for terminals
9724 so the input modes can be changed (thus allowing reads of a single character
9725 at a time), and also provides non-blocking reads of stdin, as well as several
9726 other terminal related features, including retrieval/modification of the
9727 screen size, and retrieval/modification of the control characters.")
9728 (license (package-license perl))))
9729
9730 (define-public perl-term-readline-gnu
9731 (package
9732 (name "perl-term-readline-gnu")
9733 (version "1.36")
9734 (source
9735 (origin
9736 (method url-fetch)
9737 (uri (string-append "mirror://cpan/authors/id/H/HA/HAYASHI/"
9738 "Term-ReadLine-Gnu-" version ".tar.gz"))
9739 (sha256
9740 (base32
9741 "09b9mcmp09kdfh5jaqdr528yny8746hvn3f185aqd6rw06jgf24s"))))
9742 (build-system perl-build-system)
9743 (inputs
9744 `(("readline" ,readline)
9745 ("ncurses" ,ncurses)))
9746 (arguments
9747 `(#:tests? #f ; Tests fail without other Term::ReadLine interfaces present
9748 #:phases (modify-phases %standard-phases
9749 (add-before 'configure 'patch-search-lib
9750 (lambda* (#:key inputs #:allow-other-keys)
9751 (substitute* "Makefile.PL"
9752 ;; The configuration provides no way easy was to pass
9753 ;; additional directories to search for libraries, so
9754 ;; just patch in the flags.
9755 (("-lreadline" &)
9756 (format #f "-L~a/lib ~a" (assoc-ref inputs "readline") &))
9757 (("&search_lib\\('-lncurses'\\)")
9758 (string-append "'-L" (assoc-ref inputs "ncurses") "/lib"
9759 " -lncurses'"))))))))
9760 (home-page "https://metacpan.org/release/Term-ReadLine-Gnu")
9761 (synopsis "GNU Readline/History Library interface for Perl")
9762 (description "This module implements an interface to the GNU Readline
9763 library. It gives you input line editing facilities, input history management
9764 facilities, completion facilities, etc. Term::ReadLine::Gnu is upwards
9765 compatible with Term::ReadLine.")
9766 (license (package-license perl))))
9767
9768 (define-public perl-term-size-any
9769 (package
9770 (name "perl-term-size-any")
9771 (version "0.002")
9772 (source
9773 (origin
9774 (method url-fetch)
9775 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9776 "Term-Size-Any-" version ".tar.gz"))
9777 (sha256
9778 (base32
9779 "1lnynd8pwjp3g85bl4nav6yigg2lag3sx5da989j7a733bdmzyk4"))))
9780 (build-system perl-build-system)
9781 (native-inputs
9782 `(("perl-devel-hide" ,perl-devel-hide)))
9783 (propagated-inputs
9784 `(("perl-term-size-perl" ,perl-term-size-perl)))
9785 (home-page "https://metacpan.org/release/Term-Size-Any")
9786 (synopsis "Retrieve terminal size")
9787 (description "This is a unified interface to retrieve terminal size. It
9788 loads one module of a list of known alternatives, each implementing some way
9789 to get the desired terminal information. This loaded module will actually do
9790 the job on behalf of @code{Term::Size::Any}.")
9791 (license (package-license perl))))
9792
9793 (define-public perl-term-size-perl
9794 (package
9795 (name "perl-term-size-perl")
9796 (version "0.031")
9797 (source
9798 (origin
9799 (method url-fetch)
9800 (uri (string-append "mirror://cpan/authors/id/F/FE/FERREIRA/"
9801 "Term-Size-Perl-" version ".tar.gz"))
9802 (sha256
9803 (base32 "17i05y186l977bhp32b24c8rqasmg1la934dizf5sc0vrd36g6mf"))))
9804 (build-system perl-build-system)
9805 (home-page "https://metacpan.org/release/Term-Size-Perl")
9806 (synopsis "Perl extension for retrieving terminal size (Perl version)")
9807 (description "This is yet another implementation of @code{Term::Size}.
9808 Now in pure Perl, with the exception of a C probe run at build time.")
9809 (license (package-license perl))))
9810
9811 (define-public perl-term-table
9812 (package
9813 (name "perl-term-table")
9814 (version "0.008")
9815 (source
9816 (origin
9817 (method url-fetch)
9818 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/Term-Table-"
9819 version ".tar.gz"))
9820 (sha256
9821 (base32
9822 "0gi4lyvs6n8y6hjwmflfpamfl65y7mb1g39zi0rx35nclj8xb370"))))
9823 (build-system perl-build-system)
9824 (propagated-inputs
9825 `(("perl-importer" ,perl-importer)))
9826 (home-page "https://metacpan.org/release/Term-Table")
9827 (synopsis "Format a header and rows into a table")
9828 (description "This module is able to generically format rows of data
9829 into tables.")
9830 (license (package-license perl))))
9831
9832 (define-public perl-text-aligner
9833 (package
9834 (name "perl-text-aligner")
9835 (version "0.13")
9836 (source
9837 (origin
9838 (method url-fetch)
9839 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
9840 "Text-Aligner-" version ".tar.gz"))
9841 (sha256
9842 (base32 "1vry21jrh91l2pkajnrps83bnr1fn6zshbzi80mcrnggrn9iq776"))))
9843 (build-system perl-build-system)
9844 (native-inputs `(("perl-module-build" ,perl-module-build)))
9845 (home-page "https://metacpan.org/release/Text-Aligner")
9846 (synopsis "Align text")
9847 (description "Text::Aligner exports a single function, align(), which is
9848 used to justify strings to various alignment styles.")
9849 (license license:x11)))
9850
9851 (define-public perl-text-balanced
9852 (package
9853 (name "perl-text-balanced")
9854 (version "2.03")
9855 (source
9856 (origin
9857 (method url-fetch)
9858 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
9859 "Text-Balanced-" version ".tar.gz"))
9860 (sha256
9861 (base32
9862 "1j4jjw6bg6ik8cn1mimw54rvg4h0qf4hm9k63y9572sny3w56xq5"))))
9863 (build-system perl-build-system)
9864 (home-page "https://metacpan.org/release/Text-Balanced")
9865 (synopsis "Extract delimited text sequences from strings")
9866 (description "The Text::Balanced module can be used to extract delimited
9867 text sequences from strings.")
9868 (license (package-license perl))))
9869
9870 (define-public perl-text-csv
9871 (package
9872 (name "perl-text-csv")
9873 (version "2.00")
9874 (source
9875 (origin
9876 (method url-fetch)
9877 (uri (string-append "mirror://cpan/authors/id/I/IS/ISHIGAKI/"
9878 "Text-CSV-" version ".tar.gz"))
9879 (sha256
9880 (base32 "1hmjrc8h622nybdq8lpqi3hlrcjvb474s4a4b2cjs8h5b0cxkjwc"))))
9881 (build-system perl-build-system)
9882 (home-page "https://metacpan.org/release/Text-CSV")
9883 (synopsis "Manipulate comma-separated values")
9884 (description "Text::CSV provides facilities for the composition and
9885 decomposition of comma-separated values. An instance of the Text::CSV class
9886 can combine fields into a CSV string and parse a CSV string into fields.")
9887 (license (package-license perl))))
9888
9889 (define-public perl-text-csv-xs
9890 (package
9891 (name "perl-text-csv-xs")
9892 (version "1.44")
9893 (source
9894 (origin
9895 (method url-fetch)
9896 (uri (string-append "mirror://cpan/authors/id/H/HM/HMBRAND/"
9897 "Text-CSV_XS-" version ".tgz"))
9898 (sha256
9899 (base32 "1i4viyf61lzss474ndnmqhdqlhksn9hcxhjbqhv4frg2m3f2v0f4"))))
9900 (build-system perl-build-system)
9901 (home-page "https://metacpan.org/release/Text-CSV_XS")
9902 (synopsis "Routines for manipulating CSV files")
9903 (description "@code{Text::CSV_XS} provides facilities for the composition
9904 and decomposition of comma-separated values. An instance of the
9905 @code{Text::CSV_XS} class will combine fields into a CSV string and parse a
9906 CSV string into fields. The module accepts either strings or files as input
9907 and support the use of user-specified characters for delimiters, separators,
9908 and escapes.")
9909 (license (package-license perl))))
9910
9911 (define-public perl-text-diff
9912 (package
9913 (name "perl-text-diff")
9914 (version "1.45")
9915 (source
9916 (origin
9917 (method url-fetch)
9918 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
9919 "Text-Diff-" version ".tar.gz"))
9920 (sha256
9921 (base32
9922 "013g13prdghxvrp5754gyc7rmv1syyxrhs33yc5f0lrz3dxs1fp8"))))
9923 (build-system perl-build-system)
9924 (propagated-inputs
9925 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
9926 (home-page "https://metacpan.org/release/Text-Diff")
9927 (synopsis "Perform diffs on files and record sets")
9928 (description "Text::Diff provides a basic set of services akin to the GNU
9929 diff utility. It is not anywhere near as feature complete as GNU diff, but it
9930 is better integrated with Perl and available on all platforms. It is often
9931 faster than shelling out to a system's diff executable for small files, and
9932 generally slower on larger files.")
9933 (license (package-license perl))))
9934
9935 (define-public perl-text-format
9936 (package
9937 (name "perl-text-format")
9938 (version "0.62")
9939 (source (origin
9940 (method url-fetch)
9941 (uri (string-append
9942 "mirror://cpan/authors/id/S/SH/SHLOMIF/Text-Format-"
9943 version ".tar.gz"))
9944 (sha256
9945 (base32
9946 "0104z7jjv46kqh77rnx8kvmsbr5dy0s56xm01dckq4ly65br0hkx"))))
9947 (build-system perl-build-system)
9948 (native-inputs
9949 `(("perl-module-build" ,perl-module-build)
9950 ("perl-test-pod" ,perl-test-pod)
9951 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
9952 (home-page "https://metacpan.org/release/Text-Format")
9953 (synopsis "Various subroutines to format text")
9954 (description "This package provides functions to format text in various
9955 ways like centering, paragraphing, and converting tabs to spaces and spaces
9956 to tabs.")
9957 (license license:perl-license)))
9958
9959 (define-public perl-text-glob
9960 (package
9961 (name "perl-text-glob")
9962 (version "0.11")
9963 (source
9964 (origin
9965 (method url-fetch)
9966 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
9967 "Text-Glob-" version ".tar.gz"))
9968 (sha256
9969 (base32
9970 "11sj62fynfgwrlgkv5a051cq6yn0pagxqjsz27dxx8phsd4wv706"))))
9971 (build-system perl-build-system)
9972 (native-inputs `(("perl-module-build" ,perl-module-build)))
9973 (home-page "https://metacpan.org/release/Text-Glob")
9974 (synopsis "Match globbing patterns against text")
9975 (description "Text::Glob implements glob(3) style matching that can be
9976 used to match against text, rather than fetching names from a file system. If
9977 you want to do full file globbing use the File::Glob module instead.")
9978 (license (package-license perl))))
9979
9980 (define-public perl-text-haml
9981 (package
9982 (name "perl-text-haml")
9983 (version "0.990118")
9984 (source
9985 (origin
9986 (method url-fetch)
9987 (uri (string-append "mirror://cpan/authors/id/V/VT/VTI/"
9988 "Text-Haml-" version ".tar.gz"))
9989 (sha256
9990 (base32 "1siq8hgj7s8gwpf3n3h1is5v50rwi6av8lfb19khiyyqz0rp7a57"))))
9991 (build-system perl-build-system)
9992 (native-inputs
9993 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
9994 (propagated-inputs
9995 `(("perl-data-section-simple" ,perl-data-section-simple)
9996 ("perl-uri" ,perl-uri)))
9997 (home-page "https://metacpan.org/release/Text-Haml")
9998 (synopsis "Haml Perl implementation")
9999 (description
10000 "Text::Haml implements Haml
10001 @url{http://haml.info/docs/yardoc/file.REFERENCE.html} specification.")
10002 (license license:artistic2.0)))
10003
10004 (define-public perl-text-neattemplate
10005 (package
10006 (name "perl-text-neattemplate")
10007 (version "0.1101")
10008 (source
10009 (origin
10010 (method url-fetch)
10011 (uri (string-append
10012 "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
10013 "Text-NeatTemplate-" version ".tar.gz"))
10014 (sha256
10015 (base32
10016 "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
10017 (build-system perl-build-system)
10018 (native-inputs
10019 `(("perl-module-build" ,perl-module-build)))
10020 (home-page
10021 "https://metacpan.org/release/Text-NeatTemplate")
10022 (synopsis "Fast, middleweight template engine")
10023 (description
10024 "Text::NeatTemplate provides a simple, middleweight but fast
10025 template engine, for when you need speed rather than complex features,
10026 yet need more features than simple variable substitution.")
10027 (license (package-license perl))))
10028
10029 (define-public perl-text-patch
10030 (package
10031 (name "perl-text-patch")
10032 (version "1.8")
10033 (source
10034 (origin
10035 (method url-fetch)
10036 (uri (string-append "mirror://cpan/authors/id/C/CA/CADE/"
10037 "Text-Patch-" version ".tar.gz"))
10038 (sha256
10039 (base32 "1k1xbhxwn9fymqqwnam9pm7hr2p5ikq6dk578qw18gkap9hqxwga"))))
10040 (build-system perl-build-system)
10041 (propagated-inputs
10042 `(("perl-text-diff" ,perl-text-diff)))
10043 (home-page "https://metacpan.org/release/Text-Patch")
10044 (synopsis "Patches text with given patch")
10045 (description "Text::Patch combines source text with given
10046 diff (difference) data. Diff data is produced by Text::Diff module or
10047 by the standard @code{diff} utility.")
10048 (license license:gpl2+)))
10049
10050 (define-public perl-text-roman
10051 (package
10052 (name "perl-text-roman")
10053 (version "3.5")
10054 (source
10055 (origin
10056 (method url-fetch)
10057 (uri (string-append "mirror://cpan/authors/id/S/SY/SYP/Text-Roman-"
10058 version ".tar.gz"))
10059 (sha256
10060 (base32
10061 "0sh47svzz0wm993ywfgpn0fvhajl2sj5hcnf5zxjz02in6ihhjnb"))))
10062 (build-system perl-build-system)
10063 (home-page "https://metacpan.org/release/Text-Roman")
10064 (synopsis "Convert between Roman and Arabic algorisms")
10065 (description "This package provides functions to convert between Roman and
10066 Arabic algorisms. It supports both conventional Roman algorisms (which range
10067 from 1 to 3999) and Milhar Romans, a variation which uses a bar across the
10068 algorism to indicate multiplication by 1000.")
10069 (license (package-license perl))))
10070
10071 (define-public perl-text-simpletable
10072 (package
10073 (name "perl-text-simpletable")
10074 (version "2.07")
10075 (source
10076 (origin
10077 (method url-fetch)
10078 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
10079 "Text-SimpleTable-" version ".tar.gz"))
10080 (sha256
10081 (base32 "1v8r8qpzg283p2pqqr8dqrak2bxray1b2jmib0qk75jffqw3yv95"))))
10082 (build-system perl-build-system)
10083 (home-page "https://metacpan.org/release/Text-SimpleTable")
10084 (synopsis "Simple ASCII tables")
10085 (description "Text::SimpleTable draws simple ASCII tables.")
10086 (license license:artistic2.0)))
10087
10088 (define-public perl-text-table
10089 (package
10090 (name "perl-text-table")
10091 (version "1.133")
10092 (source
10093 (origin
10094 (method url-fetch)
10095 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
10096 "Text-Table-" version ".tar.gz"))
10097 (sha256
10098 (base32
10099 "04kh5x5inq183rdg221wlqaaqi1ipyj588mxsslik6nhc14f17nd"))))
10100 (build-system perl-build-system)
10101 (native-inputs
10102 `(("perl-module-build" ,perl-module-build)))
10103 (propagated-inputs
10104 `(("perl-text-aligner" ,perl-text-aligner)))
10105 (home-page "https://metacpan.org/release/Text-Table")
10106 (synopsis "Organize Data in Tables")
10107 (description "Text::Table renders plaintext tables.")
10108 (license license:x11)))
10109
10110 (define-public perl-text-template
10111 (package
10112 (name "perl-text-template")
10113 (version "1.55")
10114 (source
10115 (origin
10116 (method url-fetch)
10117 (uri (string-append
10118 "mirror://cpan/authors/id/M/MS/MSCHOUT/Text-Template-"
10119 version
10120 ".tar.gz"))
10121 (sha256
10122 (base32
10123 "12zi08mwmlbfbnsialmppk75s6dkg765dvmay3wif3158plqp554"))))
10124 (build-system perl-build-system)
10125 (native-inputs
10126 `(("perl-test-more-utf8" ,perl-test-more-utf8)
10127 ("perl-test-warnings" ,perl-test-warnings)))
10128 (home-page
10129 "https://metacpan.org/release/Text-Template")
10130 (synopsis
10131 "Expand template text with embedded Perl")
10132 (description
10133 "This is a library for generating letters, building HTML pages, or
10134 filling in templates generally. A template is a piece of text that has little
10135 Perl programs embedded in it here and there. When you fill in a template, you
10136 evaluate the little programs and replace them with their values.")
10137 (license license:perl-license)))
10138
10139 (define-public perl-text-unidecode
10140 (package
10141 (name "perl-text-unidecode")
10142 (version "1.30")
10143 (source
10144 (origin
10145 (method url-fetch)
10146 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
10147 "Text-Unidecode-" version ".tar.gz"))
10148 (sha256
10149 (base32 "1imii0p6wvhrxsr5z2zhazpx5vl4l4ybf1y2c5hy480xvi6z293c"))))
10150 (build-system perl-build-system)
10151 (home-page "https://metacpan.org/release/Text-Unidecode")
10152 (synopsis "Provide plain ASCII transliterations of Unicode text")
10153 (description "Text::Unidecode provides a function, unidecode(...) that
10154 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
10155 universally displayable characters between 0x00 and 0x7F). The representation
10156 is almost always an attempt at transliteration-- i.e., conveying, in Roman
10157 letters, the pronunciation expressed by the text in some other writing
10158 system.")
10159 (license (package-license perl))))
10160
10161 (define-public perl-threads
10162 (package
10163 (name "perl-threads")
10164 (version "2.21")
10165 (source
10166 (origin
10167 (method url-fetch)
10168 (uri (string-append "mirror://cpan/authors/id/J/JD/JDHEDDEN/threads-"
10169 version ".tar.gz"))
10170 (sha256
10171 (base32 "047i22mdnf7fa0h9w5jhqrjbg561l5jxk8xqzwh6zbmwlac4qf98"))))
10172 (build-system perl-build-system)
10173 (home-page "https://metacpan.org/release/threads")
10174 (synopsis "Perl interpreter-based threads")
10175 (description "This module exposes interpreter threads to the Perl level.")
10176 (license license:perl-license)))
10177
10178 (define-public perl-throwable
10179 (package
10180 (name "perl-throwable")
10181 (version "0.200013")
10182 (source
10183 (origin
10184 (method url-fetch)
10185 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
10186 "Throwable-" version ".tar.gz"))
10187 (sha256
10188 (base32
10189 "184gdcwxqwnkrx5md968v1ny70pq6blzpkihccm3bpdxnpgd11wr"))))
10190 (build-system perl-build-system)
10191 (native-inputs
10192 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
10193 (propagated-inputs
10194 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
10195 ("perl-module-runtime" ,perl-module-runtime)
10196 ("perl-moo" ,perl-moo)))
10197 (home-page "https://metacpan.org/release/Throwable")
10198 (synopsis "Role for classes that can be thrown")
10199 (description "Throwable is a role for classes that are meant to be thrown
10200 as exceptions to standard program flow.")
10201 (license (package-license perl))))
10202
10203 (define-public perltidy
10204 (package
10205 (name "perltidy")
10206 (version "20180220")
10207 (source (origin
10208 (method url-fetch)
10209 (uri (string-append "mirror://sourceforge/perltidy/" version
10210 "/Perl-Tidy-" version ".tar.gz"))
10211 (sha256
10212 (base32
10213 "0w1k5ffcrpx0fm9jgprrwy0290k6cmy7dyk83s61063migi3r5z9"))))
10214 (build-system perl-build-system)
10215 (home-page "http://perltidy.sourceforge.net/")
10216 (synopsis "Perl script tidier")
10217 (description "This package contains a Perl script which indents and
10218 reformats Perl scripts to make them easier to read. The formatting can be
10219 controlled with command line parameters. The default parameter settings
10220 approximately follow the suggestions in the Perl Style Guide.")
10221 (license license:gpl2+)))
10222
10223 (define-public perl-tie-cycle
10224 (package
10225 (name "perl-tie-cycle")
10226 (version "1.225")
10227 (source
10228 (origin
10229 (method url-fetch)
10230 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/Tie-Cycle-"
10231 version ".tar.gz"))
10232 (sha256
10233 (base32
10234 "0i9xq2qm50p2ih24265jndp2x8hfq7ap0d88nrlv5yaad4hxhc7k"))))
10235 (build-system perl-build-system)
10236 (home-page "https://metacpan.org/release/Tie-Cycle")
10237 (synopsis "Cycle through a list of values")
10238 (description "You use @code{Tie::Cycle} to go through a list over and over
10239 again. Once you get to the end of the list, you go back to the beginning.")
10240 (license (package-license perl))))
10241
10242 (define-public perl-tie-ixhash
10243 (package
10244 (name "perl-tie-ixhash")
10245 (version "1.23")
10246 (source
10247 (origin
10248 (method url-fetch)
10249 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
10250 "Tie-IxHash-" version ".tar.gz"))
10251 (sha256
10252 (base32
10253 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
10254 (build-system perl-build-system)
10255 (native-inputs `(("perl-module-build" ,perl-module-build)))
10256 (home-page "https://metacpan.org/release/Tie-IxHash")
10257 (synopsis "Ordered associative arrays for Perl")
10258 (description "This Perl module implements Perl hashes that preserve the
10259 order in which the hash elements were added. The order is not affected when
10260 values corresponding to existing keys in the IxHash are changed. The elements
10261 can also be set to any arbitrary supplied order. The familiar perl array
10262 operations can also be performed on the IxHash.")
10263 (license (package-license perl))))
10264
10265 (define-public perl-tie-handle-offset
10266 (package
10267 (name "perl-tie-handle-offset")
10268 (version "0.004")
10269 (source
10270 (origin
10271 (method url-fetch)
10272 (uri (string-append
10273 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Tie-Handle-Offset-"
10274 version
10275 ".tar.gz"))
10276 (sha256
10277 (base32
10278 "17m8s8314wi4g0wasdxk15rf12vzsgzmcbr598jam5f6bl2kk7zf"))))
10279 (build-system perl-build-system)
10280 (home-page "https://metacpan.org/release/Tie-Handle-Offset")
10281 (synopsis "Special file handle that hides the beginning of a file")
10282 (description
10283 "This modules provides a file handle that hides the beginning of a file,
10284 by modifying the @code{seek()} and @code{tell()} calls.")
10285 (license license:asl2.0)))
10286
10287 (define-public perl-tie-simple
10288 (package
10289 (name "perl-tie-simple")
10290 (version "1.04")
10291 (source
10292 (origin
10293 (method url-fetch)
10294 (uri (string-append "mirror://cpan/authors/id/H/HA/HANENKAMP/"
10295 "Tie-Simple-" version ".tar.gz"))
10296 (sha256
10297 (base32 "04lbh07nlxhpp03gl20f9w8hxjb2vzlb7w85y9w6q12i749y5s99"))))
10298 (build-system perl-build-system)
10299 (home-page "https://metacpan.org/release/Tie-Simple")
10300 (synopsis "Variable ties made much easier")
10301 (description
10302 "This module adds the ability to quickly create new types of tie objects
10303 without creating a complete class. It does so in such a way as to try and
10304 make the programmers life easier when it comes to single-use ties that I find
10305 myself wanting to use from time-to-time.
10306
10307 The Tie::Simple package is actually a front-end to other classes which really
10308 do all the work once tied, but this package does the dwimming to automatically
10309 figure out what you're trying to do.")
10310 (license license:perl-license)))
10311
10312 (define-public perl-tie-toobject
10313 (package
10314 (name "perl-tie-toobject")
10315 (version "0.03")
10316 (source
10317 (origin
10318 (method url-fetch)
10319 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
10320 "Tie-ToObject-" version ".tar.gz"))
10321 (sha256
10322 (base32
10323 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
10324 (build-system perl-build-system)
10325 (propagated-inputs
10326 `(("perl-test-simple" ,perl-test-simple)))
10327 (home-page "https://metacpan.org/release/Tie-ToObject")
10328 (synopsis "Tie to an existing Perl object")
10329 (description "This class provides a tie constructor that returns the
10330 object it was given as it's first argument. This way side effects of calling
10331 $object->TIEHASH are avoided.")
10332 (license (package-license perl))))
10333
10334 (define-public perl-time-duration
10335 (package
10336 (name "perl-time-duration")
10337 (version "1.21")
10338 (source
10339 (origin
10340 (method url-fetch)
10341 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
10342 "Time-Duration-" version ".tar.gz"))
10343 (sha256
10344 (base32 "1f59z2svfydxgd1gzrb5k3hl6d432kzmskk7jhv2dyb5hyx0wd7y"))))
10345 (build-system perl-build-system)
10346 (native-inputs
10347 `(("perl-module-install" ,perl-module-install)
10348 ("perl-test-pod" ,perl-test-pod)
10349 ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
10350 (home-page "https://metacpan.org/release/Time-Duration")
10351 (synopsis "English expression of durations")
10352 (description "This module provides functions for expressing durations in
10353 rounded or exact terms.")
10354 (license (package-license perl))))
10355
10356 (define-public perl-time-duration-parse
10357 (package
10358 (name "perl-time-duration-parse")
10359 (version "0.15")
10360 (source
10361 (origin
10362 (method url-fetch)
10363 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
10364 "Time-Duration-Parse-" version ".tar.gz"))
10365 (sha256
10366 (base32 "10g39bbrxkabbsfq4rv7f5b5x7h3jba08j4pg8gwr0b9iqx19n31"))))
10367 (build-system perl-build-system)
10368 (native-inputs
10369 `(("perl-time-duration" ,perl-time-duration)))
10370 (propagated-inputs
10371 `(("perl-exporter-lite" ,perl-exporter-lite)))
10372 (home-page "https://metacpan.org/release/Time-Duration-Parse")
10373 (synopsis "Parse time duration strings")
10374 (description "Time::Duration::Parse is a module to parse human readable
10375 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
10376 (license (package-license perl))))
10377
10378 (define-public perl-time-hires
10379 (package
10380 (name "perl-time-hires")
10381 (version "1.9764")
10382 (source (origin
10383 (method url-fetch)
10384 (uri (string-append
10385 "mirror://cpan/authors/id/A/AT/ATOOMIC/Time-HiRes-"
10386 version ".tar.gz"))
10387 (sha256
10388 (base32
10389 "1cfp078spid9z5g7xiswkpkjbkh4mkjvarz25wgwvdxzhxavwhcq"))))
10390 (build-system perl-build-system)
10391 (home-page "https://metacpan.org/release/Time-HiRes")
10392 (synopsis "High-resolution alarm, sleep, gettimeofday, and interval timers")
10393 (description "This package implements @code{usleep}, @code{ualarm}, and
10394 @code{gettimeofday} for Perl, as well as wrappers to implement @code{time},
10395 @code{sleep}, and @code{alarm} that know about non-integral seconds.")
10396 (license license:perl-license)))
10397
10398 (define-public perl-time-local
10399 (package
10400 (name "perl-time-local")
10401 (version "1.30")
10402 (source
10403 (origin
10404 (method url-fetch)
10405 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
10406 "Time-Local-" version ".tar.gz"))
10407 (sha256
10408 (base32
10409 "1jr0i57jqm0spdd98gp5mzdnrqdyf7rls0ygwb9ldfc655mlyx67"))))
10410 (build-system perl-build-system)
10411 (home-page "https://metacpan.org/release/Time-Local")
10412 (synopsis "Efficiently compute time from local and GMT time")
10413 (description "This module provides functions that are the inverse of
10414 built-in perl functions localtime() and gmtime(). They accept a date as a
10415 six-element array, and return the corresponding time(2) value in seconds since
10416 the system epoch.")
10417 (license (package-license perl))))
10418
10419 (define-public perl-time-piece
10420 (package
10421 (name "perl-time-piece")
10422 (version "1.3203")
10423 (source
10424 (origin
10425 (method url-fetch)
10426 (uri (string-append
10427 "mirror://cpan/authors/id/E/ES/ESAYM/Time-Piece-"
10428 version ".tar.gz"))
10429 (sha256
10430 (base32 "0hbg99v8xqy3nx6nrjpwh1w6xwqpfflz0djkbdd72kvf8zvglwb9"))))
10431 (build-system perl-build-system)
10432 (home-page "https://metacpan.org/release/Time-Piece")
10433 (synopsis "Object-Oriented time objects")
10434 (description
10435 "This module replaces the standard @code{localtime} and @code{gmtime}
10436 functions with implementations that return objects. It does so in a
10437 backwards-compatible manner, so that using these functions as documented will
10438 still work as expected.")
10439 (license license:perl-license)))
10440
10441 (define-public perl-timedate
10442 (package
10443 (name "perl-timedate")
10444 (version "2.33")
10445 (source
10446 (origin
10447 (method url-fetch)
10448 (uri (string-append "mirror://cpan/authors/id/A/AT/ATOOMIC/"
10449 "TimeDate-" version ".tar.gz"))
10450 (sha256
10451 (base32 "1cjyc0yi873597r7xcp9yz0l1c46ik2kxwfrn00zbrlx0d5rrdn0"))))
10452 (build-system perl-build-system)
10453 (home-page "https://metacpan.org/release/TimeDate")
10454 (synopsis "Date parsing/formatting subroutines")
10455 (description "This module provides routines for parsing date string into
10456 time values and formatting dates into ASCII strings.")
10457 (license (package-license perl))))
10458
10459 (define-public perl-time-mock
10460 (package
10461 (name "perl-time-mock")
10462 (version "0.0.2")
10463 (source
10464 (origin
10465 (method url-fetch)
10466 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
10467 "Time-Mock-v" version ".tar.gz"))
10468 (sha256
10469 (base32
10470 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
10471 (build-system perl-build-system)
10472 (native-inputs
10473 `(("perl-module-build" ,perl-module-build)))
10474 (propagated-inputs
10475 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
10476 (home-page "https://metacpan.org/release/Time-Mock")
10477 (synopsis "Shift and scale time")
10478 (description "This module allows you to speed up your sleep(), alarm(),
10479 and time() calls.")
10480 (license (package-license perl))))
10481
10482 (define-public perl-tree-simple
10483 (package
10484 (name "perl-tree-simple")
10485 (version "1.33")
10486 (source
10487 (origin
10488 (method url-fetch)
10489 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10490 "Tree-Simple-" version ".tgz"))
10491 (sha256
10492 (base32 "1alnwb6c7n4al91m9cyknvcyvdz521lh22dz1hyk4v7c50adffnv"))))
10493 (build-system perl-build-system)
10494 (native-inputs
10495 `(("perl-module-build" ,perl-module-build)
10496 ("perl-test-exception" ,perl-test-exception)))
10497 (propagated-inputs
10498 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
10499 (home-page "https://metacpan.org/release/Tree-Simple")
10500 (synopsis "Simple tree object")
10501 (description "This module in a fully object-oriented implementation of a
10502 simple n-ary tree.")
10503 (license (package-license perl))))
10504
10505 (define-public perl-tree-simple-visitorfactory
10506 (package
10507 (name "perl-tree-simple-visitorfactory")
10508 (version "0.15")
10509 (source
10510 (origin
10511 (method url-fetch)
10512 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
10513 "Tree-Simple-VisitorFactory-" version ".tgz"))
10514 (sha256
10515 (base32 "06y2vazkl307k59hnkp9h5bp3p7711kgmp1qdhb2lgnfwzn84zin"))))
10516 (build-system perl-build-system)
10517 (native-inputs
10518 `(("perl-module-build" ,perl-module-build)
10519 ("perl-test-exception" ,perl-test-exception)))
10520 (propagated-inputs
10521 `(("perl-tree-simple" ,perl-tree-simple)))
10522 (home-page "https://metacpan.org/release/Tree-Simple-VisitorFactory")
10523 (synopsis "Factory object for dispensing Visitor objects")
10524 (description "This module is a factory for dispensing
10525 Tree::Simple::Visitor::* objects.")
10526 (license (package-license perl))))
10527
10528 (define-public perl-try-tiny
10529 (package
10530 (name "perl-try-tiny")
10531 (version "0.30")
10532 (source
10533 (origin
10534 (method url-fetch)
10535 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10536 "Try-Tiny-" version ".tar.gz"))
10537 (sha256
10538 (base32
10539 "0szgvlz19yz3mq1lbzmwh8w5dh6agg5s16xv22zrnl83r7ax0nys"))))
10540 (build-system perl-build-system)
10541 (home-page "https://metacpan.org/release/Try-Tiny")
10542 (synopsis "Minimal try/catch with proper preservation of $@@")
10543 (description "This module provides bare bones try/catch/finally statements
10544 that are designed to minimize common mistakes with eval blocks, and nothing
10545 else.")
10546 (license license:x11)))
10547
10548 (define-public perl-type-tie
10549 (package
10550 (name "perl-type-tie")
10551 (version "0.014")
10552 (source
10553 (origin
10554 (method url-fetch)
10555 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10556 "Type-Tie-" version ".tar.gz"))
10557 (sha256
10558 (base32 "1ri23xb3rdb59lk984hnjqi4pb97zqnv4ppn0zpd70pfp0a9addm"))))
10559 (build-system perl-build-system)
10560 (native-inputs
10561 `(("perl-test-fatal" ,perl-test-fatal)
10562 ("perl-test-requires" ,perl-test-requires)))
10563 (propagated-inputs
10564 `(("perl-exporter-tiny" ,perl-exporter-tiny)
10565 ("perl-hash-fieldhash" ,perl-hash-fieldhash)))
10566 (home-page "https://metacpan.org/release/Type-Tie")
10567 (synopsis "Tie a variable to a type constraint")
10568 (description "This module exports a single function: @code{ttie}. It ties
10569 a variable to a type constraint, ensuring that whatever values stored in the
10570 variable will conform to the type constraint. If the type constraint has
10571 coercions, these will be used if necessary to ensure values assigned to the
10572 variable conform.")
10573 (license (package-license perl))))
10574
10575 (define-public perl-type-tiny
10576 (package
10577 (name "perl-type-tiny")
10578 (version "1.008003")
10579 (source
10580 (origin
10581 (method url-fetch)
10582 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
10583 "Type-Tiny-" version ".tar.gz"))
10584 (sha256
10585 (base32 "1x80rlnh7kl4xgm4qvyfbgahcyla4wbyh3b759nm21czn8x6wkm4"))))
10586 (build-system perl-build-system)
10587 (native-inputs
10588 `(("perl-test-warnings" ,perl-test-warnings)))
10589 (propagated-inputs
10590 `(("perl-devel-lexalias" ,perl-devel-lexalias)
10591 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
10592 ("perl-exporter-tiny" ,perl-exporter-tiny)
10593 ("perl-moo" ,perl-moo)
10594 ("perl-moose" ,perl-moose)
10595 ("perl-mouse" ,perl-mouse)
10596 ("perl-ref-util-xs" ,perl-ref-util-xs)
10597 ("perl-regexp-util" ,perl-regexp-util)
10598 ("perl-type-tie" ,perl-type-tie)))
10599 (home-page "https://metacpan.org/release/Type-Tiny")
10600 (synopsis "Tiny, yet Moo(se)-compatible type constraint")
10601 (description "@code{Type::Tiny} is a small class for writing type
10602 constraints, inspired by Moose's type constraint API. It has only one
10603 non-core dependency (and even that is simply a module that was previously
10604 distributed as part of @code{Type::Tiny} but has since been spun off), and can
10605 be used with Moose, Mouse and Moo (or none of the above).")
10606 (license (package-license perl))))
10607
10608 (define-public perl-type-tiny-xs
10609 (package
10610 (name "perl-type-tiny-xs")
10611 (version "0.014")
10612 (source
10613 (origin
10614 (method url-fetch)
10615 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/Type-Tiny-XS-"
10616 version ".tar.gz"))
10617 (sha256
10618 (base32 "1bbvghd2wmm9z1jx9qs9yz4l3r4izs8sz87z87sis7n3ydjdx2w2"))))
10619 (build-system perl-build-system)
10620 (home-page "https://metacpan.org/release/Type-Tiny-XS")
10621 (synopsis "Provides an XS boost for some of Type::Tiny's built-in type constraints")
10622 (description "This module is optionally used by @code{Type::Tiny} to
10623 provide faster, C-based implementations of some type constraints. This
10624 package has only core dependencies, and does not depend on @code{Type::Tiny},
10625 so other data validation frameworks might also consider using it.")
10626 (license license:perl-license)))
10627
10628 (define-public perl-types-path-tiny
10629 (package
10630 (name "perl-types-path-tiny")
10631 (version "0.006")
10632 (source
10633 (origin
10634 (method url-fetch)
10635 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
10636 "Types-Path-Tiny-" version ".tar.gz"))
10637 (sha256
10638 (base32 "1072vwcbx2bldfg8xpxc9iqs3rzqd18yik60b432hsdwxpxcjgsr"))))
10639 (build-system perl-build-system)
10640 (propagated-inputs
10641 `(("perl-file-pushd" ,perl-file-pushd)
10642 ("perl-path-tiny" ,perl-path-tiny)
10643 ("perl-type-tiny" ,perl-type-tiny)
10644 ("perl-exporter-tiny" ,perl-exporter-tiny)))
10645 (home-page "https://metacpan.org/release/Types-Path-Tiny")
10646 (synopsis "Types and coercions for Moose and Moo")
10647 (description "This module provides @code{Path::Tiny} types for Moose, Moo,
10648 etc. It handles two important types of coercion: coercing objects with
10649 overloaded stringification, and coercing to absolute paths. It also can check
10650 to ensure that files or directories exist.")
10651 (license license:artistic2.0)))
10652
10653 (define-public perl-types-serialiser
10654 (package
10655 (name "perl-types-serialiser")
10656 (version "1.0")
10657 (source
10658 (origin
10659 (method url-fetch)
10660 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
10661 "Types-Serialiser-" version ".tar.gz"))
10662 (sha256
10663 (base32
10664 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
10665 (build-system perl-build-system)
10666 (propagated-inputs
10667 `(("perl-common-sense" ,perl-common-sense)))
10668 (home-page "https://metacpan.org/release/Types-Serialiser")
10669 (synopsis "Data types for common serialisation formats")
10670 (description "This module provides some extra datatypes that are used by
10671 common serialisation formats such as JSON or CBOR.")
10672 (license (package-license perl))))
10673
10674 (define-public perl-unicode-normalize
10675 (package
10676 (name "perl-unicode-normalize")
10677 (version "1.26")
10678 (source
10679 (origin
10680 (method url-fetch)
10681 (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/"
10682 "Unicode-Normalize-" version ".tar.gz"))
10683 (sha256
10684 (base32
10685 "0gvpmrfrvb3sxqq4pnqfmbpf9q0q2an6a2ba4ara95cvx1s6zpms"))))
10686 (build-system perl-build-system)
10687 (arguments
10688 '(#:phases (modify-phases %standard-phases
10689 (add-before 'configure 'set-search-path
10690 (lambda _
10691 ;; Work around "dotless @INC" build failure.
10692 (setenv "PERL5LIB"
10693 (string-append (getcwd) ":"
10694 (getenv "PERL5LIB")))
10695 #t)))))
10696 (home-page "https://metacpan.org/release/Unicode-Normalize")
10697 (synopsis "Unicode normalization forms")
10698 (description "This Perl module provides Unicode normalization forms.")
10699 (license (package-license perl))))
10700
10701 (define-public perl-unicode-collate
10702 (package
10703 (name "perl-unicode-collate")
10704 (version "1.27")
10705 (source
10706 (origin
10707 (method url-fetch)
10708 (uri (string-append "mirror://cpan/authors/id/S/SA/SADAHIRO/"
10709 "Unicode-Collate-" version ".tar.gz"))
10710 (sha256
10711 (base32 "12df4n46yri6via4x9jb918v1hk6yrlzqk9srq6fnz5kviylnxbf"))))
10712 (build-system perl-build-system)
10713 (arguments
10714 `(#:phases
10715 (modify-phases %standard-phases
10716 (add-before 'configure 'set-perl-search-path
10717 (lambda _
10718 ;; Work around "dotless @INC" build failure.
10719 (setenv "PERL5LIB"
10720 (string-append (getcwd) ":"
10721 (getenv "PERL5LIB")))
10722 #t)))))
10723 (propagated-inputs
10724 `(("perl-unicode-normalize" ,perl-unicode-normalize)))
10725 (home-page "https://metacpan.org/release/Unicode-Collate")
10726 (synopsis "Unicode collation algorithm")
10727 (description "This package provides tools for sorting and comparing
10728 Unicode data.")
10729 ;; The file Unicode/Collate/allkeys.txt is released under the Expat
10730 ;; license.
10731 (license (list (package-license perl) license:expat))))
10732
10733 (define-public perl-unicode-linebreak
10734 (package
10735 (name "perl-unicode-linebreak")
10736 (version "2019.001")
10737 (source (origin
10738 (method url-fetch)
10739 (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
10740 "Unicode-LineBreak-" version ".tar.gz"))
10741 (sha256
10742 (base32
10743 "12iinva5gqc9g7qzxrvmh45n714z0ad9g7wq2dxwgp6drbj64rs8"))))
10744 (build-system perl-build-system)
10745 (propagated-inputs
10746 `(("perl-mime-charset" ,perl-mime-charset)))
10747 (home-page "https://metacpan.org/release/Unicode-LineBreak")
10748 (synopsis "Unicode line breaking algorithm")
10749 (description
10750 "@code{Unicode::LineBreak} implements the line breaking algorithm
10751 described in Unicode Standard Annex #14. The @code{East_Asian_Width} property
10752 defined by Annex #11 is used to determine breaking positions.")
10753 (license (package-license perl))))
10754
10755 (define-public perl-unicode-utf8
10756 (package
10757 (name "perl-unicode-utf8")
10758 (version "0.62")
10759 (source (origin
10760 (method url-fetch)
10761 (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
10762 "Unicode-UTF8-" version ".tar.gz"))
10763 (sha256
10764 (base32
10765 "1xnhazbdvpyfpnxd90krzhxkvabf8fa2ji6xzlrf75j6nz8251zs"))))
10766 (build-system perl-build-system)
10767 ;; FIXME: Tests fail on 32-bit architectures:
10768 ;; <https://rt.cpan.org/Public/Bug/Display.html?id=127007>.
10769 (arguments `(#:tests? ,(target-64bit?)))
10770 (native-inputs
10771 `(("perl-test-fatal" ,perl-test-fatal)
10772 ("perl-test-leaktrace" ,perl-test-leaktrace)
10773 ("perl-variable-magic" ,perl-variable-magic)
10774 ("perl-test-pod" ,perl-test-pod)))
10775 (home-page "https://metacpan.org/release/Unicode-UTF8")
10776 (synopsis "Encoding and decoding of UTF-8 encoding form")
10777 (description
10778 "This module provides functions to encode and decode UTF-8 encoding form
10779 as specified by Unicode and ISO/IEC 10646:2011.")
10780 (license (package-license perl))))
10781
10782 (define-public perl-universal-can
10783 (package
10784 (name "perl-universal-can")
10785 (version "1.20140328")
10786 (source
10787 (origin
10788 (method url-fetch)
10789 (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
10790 "UNIVERSAL-can-" version ".tar.gz"))
10791 (sha256
10792 (base32
10793 "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
10794 (build-system perl-build-system)
10795 (home-page "https://metacpan.org/release/UNIVERSAL-can")
10796 (synopsis "UNIVERSAL::can() reimplementation")
10797 (description "This module attempts to work around people calling
10798 UNIVERSAL::can() as a function, which it is not.")
10799 (license (package-license perl))))
10800
10801 (define-public perl-universal-isa
10802 (package
10803 (name "perl-universal-isa")
10804 (version "1.20171012")
10805 (source
10806 (origin
10807 (method url-fetch)
10808 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10809 "UNIVERSAL-isa-" version ".tar.gz"))
10810 (sha256
10811 (base32
10812 "0avzv9j32aab6l0rd63n92v0pgliz1p4yabxxjfq275hdh1mcsfi"))))
10813 (build-system perl-build-system)
10814 (native-inputs
10815 `(("perl-module-build-tiny" ,perl-module-build-tiny)))
10816 (home-page "https://metacpan.org/release/UNIVERSAL-isa")
10817 (synopsis "UNIVERSAL::isa() reimplementation")
10818 (description "This module attempts to recover from people calling
10819 UNIVERSAL::isa as a function.")
10820 (license (package-license perl))))
10821
10822 (define-public perl-universal-require
10823 (package
10824 (name "perl-universal-require")
10825 (version "0.18")
10826 (source
10827 (origin
10828 (method url-fetch)
10829 (uri (string-append
10830 "mirror://cpan/authors/id/N/NE/NEILB/UNIVERSAL-require-"
10831 version ".tar.gz"))
10832 (sha256
10833 (base32
10834 "1v9qdg80ng6dzyzs7cn8sb6mn8ym042i32lcnpd478b7g6l3d9xj"))))
10835 (build-system perl-build-system)
10836 (home-page "https://metacpan.org/release/UNIVERSAL-require")
10837 (synopsis "Require modules from a variable")
10838 (description "This module lets you require other modules where the module
10839 name is in a variable, something you can't do with the @code{require}
10840 built-in.")
10841 (license (package-license perl))))
10842
10843 (define-public perl-variable-magic
10844 (package
10845 (name "perl-variable-magic")
10846 (version "0.62")
10847 (source
10848 (origin
10849 (method url-fetch)
10850 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
10851 "Variable-Magic-" version ".tar.gz"))
10852 (sha256
10853 (base32
10854 "0p31dclnj47k4hj35rzay9pzxasl3gq46kzwqalhdw1kgr8ii6iz"))))
10855 (build-system perl-build-system)
10856 (home-page "https://metacpan.org/release/Variable-Magic")
10857 (synopsis "Associate user-defined magic to variables from Perl")
10858 (description "Magic is Perl's way of enhancing variables. This mechanism
10859 lets the user add extra data to any variable and hook syntactical
10860 operations (such as access, assignment or destruction) that can be applied to
10861 it. With this module, you can add your own magic to any variable without
10862 having to write a single line of XS.")
10863 (license (package-license perl))))
10864
10865 (define-public perl-xml-writer
10866 (package
10867 (name "perl-xml-writer")
10868 (version "0.900")
10869 (source
10870 (origin
10871 (method url-fetch)
10872 (uri (string-append
10873 "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
10874 version
10875 ".tar.gz"))
10876 (sha256
10877 (base32
10878 "07qd806kcs7si7qakx3x5p68xq2jdmkxdrns987kaayg7syzbj3k"))))
10879 (build-system perl-build-system)
10880 (home-page "https://metacpan.org/release/XML-Writer")
10881 (synopsis "Easily generate well-formed, namespace-aware XML")
10882 (description "@code{XML::Writer} is a simple Perl module for writing XML
10883 documents: it takes care of constructing markup and escaping data correctly.
10884 By default, it also performs a significant amount of well-formedness checking
10885 on the output to make certain (for example) that start and end tags match,
10886 that there is exactly one document element, and that there are not duplicate
10887 attribute names.")
10888 ;; Redistribution and use in source and compiled forms, with or without
10889 ;; modification, are permitted under any circumstances. No warranty.
10890 (license license:public-domain)))
10891
10892 (define-public perl-xs-object-magic
10893 (package
10894 (name "perl-xs-object-magic")
10895 (version "0.05")
10896 (source (origin
10897 (method url-fetch)
10898 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10899 "XS-Object-Magic-" version ".tar.gz"))
10900 (sha256
10901 (base32
10902 "0njyy4y0zax4zz55y82dlm9cly1pld1lcxb281s12bp9rrhf9j9x"))))
10903 (build-system perl-build-system)
10904 (native-inputs
10905 `(("perl-extutils-depends" ,perl-extutils-depends)
10906 ("perl-module-install" ,perl-module-install)
10907 ("perl-test-fatal" ,perl-test-fatal)))
10908 (home-page "https://metacpan.org/release/XS-Object-Magic")
10909 (synopsis "Opaque, extensible XS pointer backed objects using sv_magic")
10910 (description
10911 "This way of associating structs with Perl space objects is designed to
10912 supersede Perl's builtin @code{T_PTROBJ} with something that is extensible
10913 (structs can be associated with any data type) and opaque (the C pointer is
10914 neither visible nor modifiable from Perl space).")
10915 (license (package-license perl))))
10916
10917 (define-public perl-yaml
10918 (package
10919 (name "perl-yaml")
10920 (version "1.30")
10921 (source
10922 (origin
10923 (method url-fetch)
10924 (uri (string-append "mirror://cpan/authors/id/T/TI/TINITA/"
10925 "YAML-" version ".tar.gz"))
10926 (sha256
10927 (base32 "1kbrfksjg4k4vmx1i337m5n69m00m0m5bgsh61c15bzzrgbacc2h"))))
10928 (build-system perl-build-system)
10929 (native-inputs
10930 `(("perl-test-yaml" ,perl-test-yaml)))
10931 (home-page "https://metacpan.org/release/YAML")
10932 (synopsis "YAML for Perl")
10933 (description "The YAML.pm module implements a YAML Loader and Dumper based
10934 on the YAML 1.0 specification.")
10935 (license (package-license perl))))
10936
10937 (define-public perl-yaml-libyaml
10938 (package
10939 (name "perl-yaml-libyaml")
10940 (version "0.82")
10941 (source
10942 (origin
10943 (method url-fetch)
10944 (uri (string-append
10945 "mirror://cpan/authors/id/T/TI/TINITA/YAML-LibYAML-"
10946 version ".tar.gz"))
10947 (sha256
10948 (base32 "0j7yhxkaasccynl5iq1cqpf4x253p4bi5wsq6qbwwv2wjsiwgd02"))))
10949 (build-system perl-build-system)
10950 (home-page "https://metacpan.org/release/YAML-LibYAML")
10951 (synopsis "Perl YAML Serialization using XS and libyaml")
10952 (description
10953 "@code{YAML::XS} is a Perl XS binding to libyaml which offers Perl the
10954 best YAML support to date.")
10955 (license license:perl-license)))
10956
10957 (define-public perl-yaml-tiny
10958 (package
10959 (name "perl-yaml-tiny")
10960 (version "1.73")
10961 (source
10962 (origin
10963 (method url-fetch)
10964 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
10965 "YAML-Tiny-" version ".tar.gz"))
10966 (sha256
10967 (base32
10968 "0i3p4nz8ysrsrs6vlzc6gkjcfpcaf05xjc7lwbjkw7lg5shmycdw"))))
10969 (build-system perl-build-system)
10970 (native-inputs
10971 `(("perl-json-maybexs" ,perl-json-maybexs)
10972 ("perl-module-build-tiny" ,perl-module-build-tiny)))
10973 (arguments
10974 `(#:tests? #f)) ;requires Test::More >= 0.99
10975 (home-page "https://metacpan.org/release/YAML-Tiny")
10976 (synopsis "Read/Write YAML files")
10977 (description "YAML::Tiny is a perl class for reading and writing
10978 YAML-style files, written with as little code as possible, reducing load time
10979 and memory overhead.")
10980 (license (package-license perl))))
10981
10982 (define-public perl-parse-recdescent
10983 (package
10984 (name "perl-parse-recdescent")
10985 (version "1.967015")
10986 (source
10987 (origin
10988 (method url-fetch)
10989 (uri (string-append
10990 "mirror://cpan/authors/id/J/JT/JTBRAUN/Parse-RecDescent-"
10991 version
10992 ".tar.gz"))
10993 (sha256
10994 (base32
10995 "0dvfcn2xvj9r4ra5xqgasl847nsm1iy85w1kly41fkxm9im36hqr"))))
10996 (build-system perl-build-system)
10997 (native-inputs
10998 `(("perl-module-build" ,perl-module-build)))
10999 (home-page
11000 "https://metacpan.org/release/Parse-RecDescent")
11001 (synopsis "Generate recursive-descent parsers")
11002 (description
11003 "@code{Parse::RecDescent} can incrementally generate top-down
11004 recursive-descent text parsers from simple yacc-like grammar specifications.")
11005 (license license:perl-license)))
11006
11007 (define-public perl-parse-yapp
11008 (package
11009 (name "perl-parse-yapp")
11010 (version "1.21")
11011 (source
11012 (origin
11013 (method url-fetch)
11014 (uri (string-append
11015 "mirror://cpan/authors/id/W/WB/WBRASWELL/Parse-Yapp-"
11016 version
11017 ".tar.gz"))
11018 (sha256
11019 (base32
11020 "1r8kbyk0qd4ficmabj753kjpq0ib0csk01169w7jxflg62cfj41q"))))
11021 (build-system perl-build-system)
11022 (home-page "https://metacpan.org/release/Parse-Yapp")
11023 (synopsis "Generate and use LALR parsers")
11024 (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
11025 grammars to generate Perl object oriented parser modules.")
11026 (license (package-license perl))))
11027
11028 \f
11029 ;;; Some packaged modules need versions of core modules that are newer than
11030 ;;; those in our perl 5.16.1.
11031
11032 (define-public perl-cpan-meta
11033 (package
11034 (name "perl-cpan-meta")
11035 (version "2.150010")
11036 (source
11037 (origin
11038 (method url-fetch)
11039 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
11040 "CPAN-Meta-" version ".tar.gz"))
11041 (sha256
11042 (base32
11043 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
11044 (build-system perl-build-system)
11045 (propagated-inputs
11046 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
11047 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
11048 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
11049 (home-page "https://metacpan.org/release/CPAN-Meta")
11050 (synopsis "Distribution metadata for a CPAN dist")
11051 (description "Software distributions released to the CPAN include a
11052 META.json or, for older distributions, META.yml, which describes the
11053 distribution, its contents, and the requirements for building and installing
11054 the distribution. The data structure stored in the META.json file is
11055 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
11056 represent this distribution metadata (or distmeta), along with some helpful
11057 methods for interrogating that data.")
11058 (license (package-license perl))))
11059
11060 (define-public perl-cpan-meta-requirements
11061 (package
11062 (name "perl-cpan-meta-requirements")
11063 (version "2.140")
11064 (source
11065 (origin
11066 (method url-fetch)
11067 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
11068 "CPAN-Meta-Requirements-" version ".tar.gz"))
11069 (sha256
11070 (base32
11071 "1a8zflgaayycmn3zvd3n64yypa4jyl1va0h51wpr5w46irg69608"))))
11072 (build-system perl-build-system)
11073 (home-page "https://metacpan.org/release/CPAN-Meta-Requirements")
11074 (synopsis "Set of version requirements for a CPAN dist")
11075 (description "A CPAN::Meta::Requirements object models a set of version
11076 constraints like those specified in the META.yml or META.json files in CPAN
11077 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
11078 adding more and more constraints, and will reduce them to the simplest
11079 representation.")
11080 (license (package-license perl))))
11081
11082 (define-public perl-cpan-meta-yaml
11083 (package
11084 (name "perl-cpan-meta-yaml")
11085 (version "0.018")
11086 (source
11087 (origin
11088 (method url-fetch)
11089 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
11090 "CPAN-Meta-YAML-" version ".tar.gz"))
11091 (sha256
11092 (base32
11093 "150jh9l7baddl2587m23qs2l0pb395qsx9bhsgdsnn6y9k4zgjik"))))
11094 (build-system perl-build-system)
11095 (arguments
11096 `(#:tests? #f)) ;Tests require Test::More >= 0.99
11097 (home-page "https://metacpan.org/release/CPAN-Meta-YAML")
11098 (synopsis "Read and write a subset of YAML for CPAN Meta files")
11099 (description "This module implements a subset of the YAML specification
11100 for use in reading and writing CPAN metadata files like META.yml and
11101 MYMETA.yml.")
11102 (license (package-license perl))))
11103
11104 (define-public perl-module-build
11105 (package
11106 (name "perl-module-build")
11107 (version "0.4229")
11108 (source
11109 (origin
11110 (method url-fetch)
11111 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
11112 "Module-Build-" version ".tar.gz"))
11113 (sha256
11114 (base32
11115 "064c03wxia7jz0i578awj4srykj0nnigm4p5r0dv0559rnk93r0z"))))
11116 (build-system perl-build-system)
11117 (propagated-inputs
11118 `(("perl-cpan-meta" ,perl-cpan-meta)))
11119 (home-page "https://metacpan.org/release/Module-Build")
11120 (synopsis "Build and install Perl modules")
11121 (description "@code{Module::Build} is a system for building, testing, and
11122 installing Perl modules; it used to be part of Perl itself until version 5.22,
11123 which dropped it. It is meant to be an alternative to
11124 @code{ExtUtils::MakeMaker}. Developers may alter the behavior of the module
11125 through subclassing in a much more straightforward way than with
11126 @code{MakeMaker}. It also does not require a @command{make} on your
11127 system---most of the @code{Module::Build} code is pure-Perl.")
11128 (license (package-license perl))))
11129
11130 (define-public perl-parse-cpan-meta
11131 (package
11132 (name "perl-parse-cpan-meta")
11133 (version "2.150010")
11134 (source
11135 (origin
11136 (method url-fetch)
11137 ;; This module is now known as CPAN::Meta on CPAN.
11138 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
11139 "CPAN-Meta-" version ".tar.gz"))
11140 (sha256
11141 (base32
11142 "1mm3dfw3ffyzb2ikpqn9l6zyqrxijb4vyywmbx2l21ryqwp0zy74"))))
11143 (build-system perl-build-system)
11144 (propagated-inputs
11145 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
11146 (home-page "https://metacpan.org/release/DAGOLDEN/Parse-CPAN-Meta-1.4422")
11147 (synopsis "Parse META.yml and META.json CPAN metadata files")
11148 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
11149 files, using JSON::PP and/or CPAN::Meta::YAML.")
11150 (license (package-license perl))))
11151
11152 (define-public perl-scalar-list-utils
11153 (package
11154 (name "perl-scalar-list-utils")
11155 (version "1.56")
11156 (source
11157 (origin
11158 (method url-fetch)
11159 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
11160 "Scalar-List-Utils-" version ".tar.gz"))
11161 (sha256
11162 (base32 "0nxb29x7i2w6kjxq188n131b56bsqj1ykrxjcjp6sgpv81ym7f0m"))))
11163 (build-system perl-build-system)
11164 (home-page "https://metacpan.org/release/Scalar-List-Utils")
11165 (synopsis "Common Scalar and List utility subroutines")
11166 (description "This package contains a selection of subroutines that people
11167 have expressed would be nice to have in the perl core, but the usage would not
11168 really be high enough to warrant the use of a keyword, and the size so small
11169 such that being individual extensions would be wasteful.")
11170 (license (package-license perl))))
11171
11172 (define-public perl-sdl
11173 (package
11174 (name "perl-sdl")
11175 (version "2.548")
11176 (source
11177 (origin
11178 (method url-fetch)
11179 (uri (string-append "mirror://cpan/authors/id/F/FR/FROGGS/"
11180 "SDL-" version ".tar.gz"))
11181 (sha256
11182 (base32 "1dagpmcpjnwvd4g6mmnc312rqpd4qcwx21rpi2j7084wz8mijai5"))))
11183 (build-system perl-build-system)
11184 (native-inputs
11185 `(("perl-alien-sdl" ,perl-alien-sdl)
11186 ("perl-capture-tiny" ,perl-capture-tiny)
11187 ("perl-file-sharedir" ,perl-file-sharedir)
11188 ("perl-module-build" ,perl-module-build)
11189 ("perl-test-most" ,perl-test-most)
11190 ("perl-tie-simple" ,perl-tie-simple)))
11191 (inputs
11192 `(("freeglut" ,freeglut)
11193 ("libjpeg" ,libjpeg-turbo)
11194 ("libpng" ,libpng)
11195 ("libsmpeg" ,libsmpeg)
11196 ("libtiff" ,libtiff)
11197 ("mesa" ,mesa)
11198 ("sdl" ,(sdl-union
11199 (list sdl sdl-gfx sdl-image sdl-mixer sdl-pango sdl-ttf)))))
11200 (propagated-inputs
11201 `(("perl-file-sharedir" ,perl-file-sharedir)
11202 ("perl-tie-simple" ,perl-tie-simple)))
11203 (home-page "https://metacpan.org/release/SDL")
11204 (synopsis "SDL bindings to Perl")
11205 (description
11206 "SDL Perl is a package of Perl modules that provide both functional and
11207 object oriented interfaces to the Simple DirectMedia Layer for Perl5. This
11208 package takes some liberties with the SDL API, and attempts to adhere to the
11209 spirit of both the SDL and Perl.")
11210 (license license:lgpl2.1)))
11211
11212 (define-public perl-sgmls
11213 (package
11214 (name "perl-sgmls")
11215 (version "1.1")
11216 (source (origin
11217 (method url-fetch)
11218 (uri (string-append "mirror://cpan/authors/id/R/RA/RAAB/SGMLSpm-"
11219 version ".tar.gz"))
11220 (sha256
11221 (base32
11222 "1gdjf3mcz2bxir0l9iljxiz6qqqg3a9gg23y5wjg538w552r432m"))))
11223 (build-system perl-build-system)
11224 (arguments
11225 `(#:phases (modify-phases %standard-phases
11226 (add-after 'install 'wrap-script
11227 (lambda* (#:key outputs #:allow-other-keys)
11228 (let* ((out (assoc-ref outputs "out"))
11229 (site (string-append out "/lib/perl5/site_perl")))
11230 (with-directory-excursion out
11231 (rename-file "bin/sgmlspl.pl" "bin/sgmlspl")
11232 (wrap-program "bin/sgmlspl"
11233 `("PERL5LIB" suffix (,site))))
11234 #t))))))
11235 (native-inputs
11236 `(("perl-module-build" ,perl-module-build)))
11237 (home-page "https://metacpan.org/release/RAAB/SGMLSpm-1.1")
11238 (synopsis "Perl module for processing SGML parser output")
11239 (description "This package contains @code{SGMLS.pm}, a perl5 class library
11240 for parsing the output from an SGML parser such as OpenSP. It also includes
11241 the @command{sgmlspl} command, an Perl script showcasing how the library can
11242 be used.")
11243 (license license:gpl2+)))
11244
11245 (define-public perl-shell-command
11246 (package
11247 (name "perl-shell-command")
11248 (version "0.06")
11249 (source
11250 (origin
11251 (method url-fetch)
11252 (uri (string-append
11253 "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
11254 version
11255 ".tar.gz"))
11256 (sha256
11257 (base32
11258 "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
11259 (build-system perl-build-system)
11260 (home-page
11261 "https://metacpan.org/release/Shell-Command")
11262 (synopsis
11263 "Cross-platform functions emulating common shell commands")
11264 (description
11265 "Shell::Command is a thin wrapper around ExtUtils::Command.")
11266 (license (package-license perl))))
11267
11268 ;;; END: Core module overrides
11269
11270 (define-public perl-file-find-object
11271 (package
11272 (name "perl-file-find-object")
11273 (version "0.2.13")
11274 (source
11275 (origin
11276 (method url-fetch)
11277 (uri (string-append
11278 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-v"
11279 version ".tar.gz"))
11280 (sha256
11281 (base32
11282 "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
11283 (build-system perl-build-system)
11284 (native-inputs
11285 `(("perl-module-build" ,perl-module-build)))
11286 (inputs
11287 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
11288 (home-page
11289 "https://metacpan.org/release/File-Find-Object")
11290 (synopsis
11291 "Object-oriented File::Find replacement in Perl")
11292 (description "File::Find::Object is an object-oriented
11293 File::Find replacement in Perl.")
11294 (license license:artistic2.0)))
11295
11296 (define-public perl-file-find-object-rule
11297 (package
11298 (name "perl-file-find-object-rule")
11299 (version "0.0311")
11300 (source
11301 (origin
11302 (method url-fetch)
11303 (uri (string-append
11304 "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
11305 version
11306 ".tar.gz"))
11307 (sha256
11308 (base32 "0gjzfd5fz7mhr5abafxr7qic7nwhk7y9iv17as6l880973j952h3"))))
11309 (build-system perl-build-system)
11310 (native-inputs
11311 `(("perl-module-build" ,perl-module-build)))
11312 (inputs
11313 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
11314 ("perl-file-find-object" ,perl-file-find-object)
11315 ("perl-number-compare" ,perl-number-compare)
11316 ("perl-text-glob" ,perl-text-glob)))
11317 (home-page
11318 "https://metacpan.org/release/File-Find-Object-Rule")
11319 (synopsis
11320 "Alternative interface to File::Find::Object")
11321 (description "File::Find::Object::Rule is an alternative Perl
11322 interface to File::Find::Object.")
11323 (license (package-license perl))))
11324
11325 (define-public perl-file-finder
11326 (package
11327 (name "perl-file-finder")
11328 (version "0.53")
11329 (source
11330 (origin
11331 (method url-fetch)
11332 (uri (string-append
11333 "mirror://cpan/authors/id/M/ME/MERLYN/File-Finder-"
11334 version ".tar.gz"))
11335 (sha256
11336 (base32
11337 "0x3a2xgzrka73lcmmwalq2mmpzxa7s6pm01ahxf677ksqsdc3jrf"))))
11338 (build-system perl-build-system)
11339 (propagated-inputs
11340 `(("perl-text-glob" ,perl-text-glob)))
11341 (home-page "https://metacpan.org/release/File-Finder")
11342 (synopsis "Wrapper for @code{File::Find} ala @code{find(1)}")
11343 (description
11344 "@code{File::Find} is great, but constructing the wanted routine can
11345 sometimes be a pain. @code{File::Finder} provides a wanted-writer, using
11346 syntax that is directly mappable to the @code{find(1)} command's syntax.
11347
11348 A @code{File::Finder} object contains a hash of @code{File::Find} options, and
11349 a series of steps that mimic find's predicates. Initially, a
11350 @code{File::Finder} object has no steps. Each step method clones the previous
11351 object's options and steps, and then adds the new step, returning the new
11352 object. In this manner, an object can be grown, step by step, by chaining
11353 method calls. Furthermore, a partial sequence can be created and held, and
11354 used as the head of many different sequences.")
11355 (license license:perl-license)))
11356
11357 (define-public perl-font-ttf
11358 (package
11359 (name "perl-font-ttf")
11360 (version "1.06")
11361 (source (origin
11362 (method url-fetch)
11363 (uri (string-append
11364 "mirror://cpan/authors/id/B/BH/BHALLISSY/Font-TTF-"
11365 version ".tar.gz"))
11366 (sha256
11367 (base32
11368 "14y29ja3lsa3yw0ll20lj96f3zz5zydjqi1c5nh9wxar8927ssab"))))
11369 (build-system perl-build-system)
11370 (propagated-inputs
11371 `(("perl-io-string" ,perl-io-string)))
11372 (home-page "https://metacpan.org/release/Font-TTF")
11373 (synopsis "TTF font support for Perl")
11374 (description "This package provides a Perl module for TrueType/OpenType
11375 font hacking. It supports reading, processing and writing of the following
11376 tables: GDEF, GPOS, GSUB, LTSH, OS/2, PCLT, bsln, cmap, cvt, fdsc, feat,
11377 fpgm, glyf, hdmx, head, hhea, hmtx, kern, loca, maxp, mort, name, post, prep,
11378 prop, vhea, vmtx and the reading and writing of all other table types.")
11379 (license license:artistic2.0)))
11380
11381 (define-public perl-libtime-parsedate
11382 (package
11383 (name "perl-libtime-parsedate")
11384 (version "2015.103")
11385 (source
11386 (origin
11387 (method url-fetch)
11388 (uri (string-append
11389 "mirror://cpan/authors/id/M/MU/MUIR/modules/Time-ParseDate-"
11390 version ".tar.gz"))
11391 (sha256
11392 (base32 "1lgfr87j4qwqnln0hyyzgik5ixqslzdaksn9m8y824gqbcihc6ic"))))
11393 (build-system perl-build-system)
11394 (arguments
11395 `(;; XXX: We'd like to use #:disallowed-references 'perl-build-system'
11396 ;; doesn't support it yet.
11397 ;;
11398 ;; #:disallowed-references (,tzdata-for-tests)
11399
11400 #:phases
11401 (modify-phases %standard-phases
11402 ;; This is needed for tests
11403 (add-after 'unpack 'set-TZDIR
11404 (lambda* (#:key inputs #:allow-other-keys)
11405 (setenv "TZDIR" (string-append (assoc-ref inputs "tzdata")
11406 "/share/zoneinfo"))
11407 #t)))))
11408 (native-inputs
11409 `(("perl-module-build" ,perl-module-build)
11410 ("tzdata" ,tzdata-for-tests)))
11411 (home-page "https://metacpan.org/release/Time-ParseDate")
11412 (synopsis "Collection of Perl modules for time/date manipulation")
11413 (description "Provides several perl modules for date/time manipulation:
11414 @code{Time::CTime.pm}, @code{Time::JulianDay.pm}, @code{Time::ParseDate.pm},
11415 @code{Time::Timezone.pm}, and @code{Time::DaysInMonth.pm}.")
11416 ;; License text:
11417 ;; "License hereby granted for anyone to use, modify or redistribute this
11418 ;; module at their own risk. Please feed useful changes back to
11419 ;; cpan@dave.sharnoff.org."
11420 (license (license:non-copyleft "http://metadata.ftp-master.debian.org/\
11421 changelogs/main/libt/libtime-parsedate-perl/\
11422 libtime-parsedate-perl_2015.103-2_copyright"))))
11423
11424 (define-public perl-libtime-period
11425 (package
11426 (name "perl-libtime-period")
11427 (version "1.20")
11428 (source
11429 (origin
11430 (method url-fetch)
11431 (uri (string-append
11432 "http://http.debian.net/debian/pool/main/libt/"
11433 "libtime-period-perl/libtime-period-perl_"
11434 version ".orig.tar.gz"))
11435 (sha256
11436 (base32 "0c0yd999h0ikj88c9j95wa087m87i0qh7vja3715y2kd7vixkci2"))))
11437 (build-system perl-build-system)
11438 (native-inputs
11439 `(("perl-module-build" ,perl-module-build)))
11440 ;; Unless some other homepage is out there...
11441 (home-page "https://packages.debian.org/stretch/libtime-period-perl")
11442 (synopsis "Perl library for testing if a time() is in a specific period")
11443 (description "This Perl library provides a function which tells whether a
11444 specific time falls within a specified time period. Its syntax for specifying
11445 time periods allows you to test for conditions like \"Monday to Friday, 9am
11446 till 5pm\" and \"on the second Tuesday of the month\" and \"between 4pm and
11447 4:15pm\" and \"in the first half of each minute\" and \"in January of
11448 1998\".")
11449 (license license:perl-license)))
11450
11451 (define-public perl-path-iterator-rule
11452 (package
11453 (name "perl-path-iterator-rule")
11454 (version "1.014")
11455 (source
11456 (origin
11457 (method url-fetch)
11458 (uri (string-append
11459 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Path-Iterator-Rule-"
11460 version ".tar.gz"))
11461 (sha256
11462 (base32 "19mik0r5v1cmxfxm0h4lwqyj0nmq6jgnvvq96hqcjgylpvc02x1z"))))
11463 (build-system perl-build-system)
11464 (native-inputs
11465 `(("perl-file-pushd" ,perl-file-pushd)
11466 ("perl-path-tiny" ,perl-path-tiny)
11467 ("perl-test-deep" ,perl-test-deep)
11468 ("perl-test-filename" ,perl-test-filename)))
11469 (propagated-inputs
11470 `(("perl-number-compare" ,perl-number-compare)
11471 ("perl-text-glob" ,perl-text-glob)
11472 ("perl-try-tiny" ,perl-try-tiny)))
11473 (home-page "https://metacpan.org/release/Path-Iterator-Rule")
11474 (synopsis "Iterative, recursive file finder")
11475 (description "Path::Iterator::Rule iterates over files and directories to
11476 identify ones matching a user-defined set of rules. The API is based heavily
11477 on File::Find::Rule, but with more explicit distinction between matching rules
11478 and options that influence how directories are searched. A
11479 Path::Iterator::Rule object is a collection of rules (match criteria) with
11480 methods to add additional criteria. Options that control directory traversal
11481 are given as arguments to the method that generates an iterator.
11482
11483 A summary of features for comparison to other file finding modules:
11484
11485 @itemize
11486 @item provides many helper methods for specifying rules
11487 @item offers (lazy) iterator and flattened list interfaces
11488 @item custom rules implemented with callbacks
11489 @item breadth-first (default) or pre- or post-order depth-first searching
11490 @item follows symlinks (by default, but can be disabled)
11491 @item directories visited only once (no infinite loop; can be disabled)
11492 @item doesn't chdir during operation
11493 @item provides an API for extensions
11494 @end itemize
11495
11496 As a convenience, the PIR module is an empty subclass of this one that is less
11497 arduous to type for one-liners.")
11498 (license license:asl2.0)))
11499
11500 (define-public perl-pod-constants
11501 (package
11502 (name "perl-pod-constants")
11503 (version "0.19")
11504 (source
11505 (origin
11506 (method url-fetch)
11507 (uri (string-append
11508 "mirror://cpan/authors/id/M/MG/MGV/Pod-Constants-"
11509 version ".tar.gz"))
11510 (sha256
11511 (base32
11512 "1njgr2zly9nrwvfrjhgk9dqq48as1pmbb2rs4bh3irvla75v7azg"))))
11513 (build-system perl-build-system)
11514 (home-page "https://metacpan.org/release/Pod-Constants")
11515 (synopsis "Include constants from POD")
11516 (description "This module allows you to specify those constants that
11517 should be documented in your POD, and pull them out a run time in a fairly
11518 arbitrary fashion.
11519
11520 Pod::Constants uses Pod::Parser to do the parsing of the source file. It has
11521 to open the source file it is called from, and does so directly either by
11522 lookup in %INC or by assuming it is $0 if the caller is @code{main}
11523 (or it can't find %INC{caller()}).")
11524 (license license:artistic2.0)))
11525
11526 (define-public perl-text-soundex
11527 (package
11528 (name "perl-text-soundex")
11529 (version "3.05")
11530 (source
11531 (origin
11532 (method url-fetch)
11533 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/Text-Soundex-"
11534 version ".tar.gz"))
11535 (sha256
11536 (base32
11537 "1vb0vg1109gfzaak74ynw5s00ml28f33j612g2lxw98b52s5bpgn"))))
11538 (build-system perl-build-system)
11539 (home-page
11540 "https://metacpan.org/release/Text-Soundex")
11541 (synopsis "Implementation of the soundex algorithm.")
11542 (description "Soundex is a phonetic algorithm for indexing names by sound,
11543 as pronounced in English. The goal is for names with the same pronunciation to
11544 be encoded to the same representation so that they can be matched despite
11545 minor differences in spelling.
11546
11547 This module implements the original soundex algorithm developed by Robert
11548 Russell and Margaret Odell, patented in 1918 and 1922, as well as a variation
11549 called \"American Soundex\" used for US census data, and current maintained by
11550 the National Archives and Records Administration (NARA).")
11551 (license license:perl-license)))
11552
11553 (define-public perl-regexp-pattern
11554 (package
11555 (name "perl-regexp-pattern")
11556 (version "0.2.8")
11557 (source
11558 (origin
11559 (method url-fetch)
11560 (uri (string-append
11561 "mirror://cpan/authors/id/P/PE/PERLANCAR/Regexp-Pattern-"
11562 version ".tar.gz"))
11563 (sha256
11564 (base32 "064igp2wxgsz4yb33v1r90i8clwjzs2xnpvw9niqlqrbzzrd4q1l"))))
11565 (build-system perl-build-system)
11566 (native-inputs
11567 `(("perl-test-exception" ,perl-test-exception)))
11568 (home-page "https://metacpan.org/release/Regexp-Pattern")
11569 (synopsis "Collection of regexp patterns")
11570 (description "Regexp::Pattern is a convention for organizing reusable
11571 regexp patterns in modules.")
11572 (license (package-license perl))))
11573
11574 (define-public perl-data-sexpression
11575 (package
11576 (name "perl-data-sexpression")
11577 (version "0.41")
11578 (source
11579 (origin
11580 (method url-fetch)
11581 (uri (string-append
11582 "mirror://cpan/authors/id/N/NE/NELHAGE/Data-SExpression-"
11583 version ".tar.gz"))
11584 (sha256
11585 (base32
11586 "16qls1yqcmhxrcx9agsmaypxa1nirq4nvbyzbww9984589m44ql1"))))
11587 (build-system perl-build-system)
11588 (native-inputs
11589 `(("perl-module-install" ,perl-module-install)
11590 ("perl-test-deep" ,perl-test-deep)))
11591 (propagated-inputs
11592 `(("perl-class-accessor" ,perl-class-accessor)))
11593 (home-page "https://metacpan.org/release/Data-SExpression")
11594 (synopsis "Parse Lisp S-Expressions into Perl data structures")
11595 (description "Data::SExpression parses Lisp S-Expressions into Perl data
11596 structures.")
11597 (license license:perl-license)))