Merge branch 'core-updates'
[guix.git] / gnu / packages / perl.scm
bloba044a32b32104319ecef12bd207ee89c800eeea8
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014, 2015, 2016 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015, 2016 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015, 2016 Eric Bavier <bavier@member.fsf.org>
6 ;;; Copyright © 2015 Eric Dvorsak <eric@dvorsak.fr>
7 ;;; Copyright © 2016 Mark H Weaver <mhw@netris.org>
8 ;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
9 ;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Coypright © 2016 ng0 <ng0@we.make.ritual.n0.is>
11 ;;; Copyright © 2016 Alex Sassmannshausen <alex@pompo.co>
12 ;;; Copyright © 2016 Roel Janssen <roel@gnu.org>
13 ;;; Copyright © 2016 Ben Woodcroft <donttrustben@gmail.com>
14 ;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
15 ;;;
16 ;;; This file is part of GNU Guix.
17 ;;;
18 ;;; GNU Guix is free software; you can redistribute it and/or modify it
19 ;;; under the terms of the GNU General Public License as published by
20 ;;; the Free Software Foundation; either version 3 of the License, or (at
21 ;;; your option) any later version.
22 ;;;
23 ;;; GNU Guix is distributed in the hope that it will be useful, but
24 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
25 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26 ;;; GNU General Public License for more details.
27 ;;;
28 ;;; You should have received a copy of the GNU General Public License
29 ;;; along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.
31 (define-module (gnu packages perl)
32   #:use-module (guix licenses)
33   #:use-module (gnu packages)
34   #:use-module (guix packages)
35   #:use-module (guix download)
36   #:use-module (guix build-system gnu)
37   #:use-module (guix build-system perl))
39 ;;;
40 ;;; Please: Try to add new module packages in alphabetic order.
41 ;;;
44 (define-public perl
45   ;; Yeah, Perl...  It is required early in the bootstrap process by Linux.
46   (package
47     (name "perl")
48     (version "5.24.0")
49     (source (origin
50              (method url-fetch)
51              (uri (string-append "http://www.cpan.org/src/5.0/perl-"
52                                  version ".tar.gz"))
53              (sha256
54               (base32
55                "00jj8zr8fnihrxxhl8h936ssczv5x86qb618yz1ig40d1rp0qhvy"))
56              (patches (search-patches
57                        "perl-no-sys-dirs.patch"
58                        "perl-autosplit-default-time.patch"
59                        "perl-deterministic-ordering.patch"
60                        "perl-reproducible-build-date.patch"))))
61     (build-system gnu-build-system)
62     (arguments
63      '(#:tests? #f
64        #:configure-flags
65        (let ((out  (assoc-ref %outputs "out"))
66              (libc (assoc-ref %build-inputs "libc")))
67          (list
68           (string-append "-Dprefix=" out)
69           (string-append "-Dman1dir=" out "/share/man/man1")
70           (string-append "-Dman3dir=" out "/share/man/man3")
71           "-de" "-Dcc=gcc"
72           "-Uinstallusrbinperl"
73           "-Dinstallstyle=lib/perl5"
74           "-Duseshrplib"
75           (string-append "-Dlocincpth=" libc "/include")
76           (string-append "-Dloclibpth=" libc "/lib")
77           "-Dusethreads"))
78        #:phases
79        (modify-phases %standard-phases
80          (add-before 'configure 'setup-configure
81            (lambda _
82              ;; Use the right path for `pwd'.
83              (substitute* "dist/PathTools/Cwd.pm"
84                (("/bin/pwd")
85                 (which "pwd")))
87              ;; Build in GNU89 mode to tolerate C++-style comment in libc's
88              ;; <bits/string3.h>.
89              (substitute* "cflags.SH"
90                (("-std=c89")
91                 "-std=gnu89"))
92              #t))
93          (replace 'configure
94            (lambda* (#:key configure-flags #:allow-other-keys)
95              (format #t "Perl configure flags: ~s~%" configure-flags)
96              (zero? (apply system* "./Configure" configure-flags))))
97          (add-before
98           'strip 'make-shared-objects-writable
99           (lambda* (#:key outputs #:allow-other-keys)
100             ;; The 'lib/perl5' directory contains ~50 MiB of .so.  Make them
101             ;; writable so that 'strip' actually strips them.
102             (let* ((out (assoc-ref outputs "out"))
103                    (lib (string-append out "/lib")))
104               (for-each (lambda (dso)
105                           (chmod dso #o755))
106                         (find-files lib "\\.so$")))))
108          (add-after 'install 'remove-extra-references
109            (lambda* (#:key inputs outputs #:allow-other-keys)
110              (let* ((out     (assoc-ref outputs "out"))
111                     (libc    (assoc-ref inputs "libc"))
112                     (config1 (car (find-files (string-append out "/lib/perl5")
113                                               "^Config_heavy\\.pl$")))
114                     (config2 (find-files (string-append out "/lib/perl5")
115                                          "^Config\\.pm$")))
116                ;; Force the library search path to contain only libc because
117                ;; it is recorded in Config.pm and Config_heavy.pl; we don't
118                ;; want to keep a reference to everything that's in
119                ;; $LIBRARY_PATH at build time (GCC, Binutils, bzip2, file,
120                ;; etc.)
121                (substitute* config1
122                  (("^incpth=.*$")
123                   (string-append "incpth='" libc "/include'\n"))
124                  (("^(libpth|plibpth|libspath)=.*$" _ variable)
125                   (string-append variable "='" libc "/lib'\n")))
127                (for-each (lambda (file)
128                            (substitute* config2
129                              (("libpth => .*$")
130                               (string-append "libpth => '" libc
131                                              "/lib',\n"))))
132                          config2)
133                #t))))))
134     (native-search-paths (list (search-path-specification
135                                 (variable "PERL5LIB")
136                                 (files '("lib/perl5/site_perl")))))
137     (synopsis "Implementation of the Perl programming language")
138     (description
139      "Perl 5 is a highly capable, feature-rich programming language with over
140 24 years of development.")
141     (home-page "http://www.perl.org/")
142     (license gpl1+)))                          ; or "Artistic"
144 (define-public perl-algorithm-c3
145   (package
146     (name "perl-algorithm-c3")
147     (version "0.10")
148     (source
149      (origin
150        (method url-fetch)
151        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
152                            "Algorithm-C3-" version ".tar.gz"))
153        (sha256
154         (base32
155          "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
156     (build-system perl-build-system)
157     (home-page "http://search.cpan.org/dist/Algorithm-C3")
158     (synopsis "Module for merging hierarchies using the C3 algorithm")
159     (description "This module implements the C3 algorithm, which aims to
160 provide a sane method resolution order under multiple inheritance.")
161     (license (package-license perl))))
163 (define-public perl-algorithm-diff
164   (package
165     (name "perl-algorithm-diff")
166     (version "1.1903")
167     (source
168      (origin
169        (method url-fetch)
170        (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
171                            "Algorithm-Diff-" version ".tar.gz"))
172        (sha256
173         (base32
174          "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
175     (build-system perl-build-system)
176     (home-page "http://search.cpan.org/dist/Algorithm-Diff")
177     (synopsis "Compute differences between two files or lists")
178     (description "This is a module for computing the difference between two
179 files, two strings, or any other two lists of things.  It uses an intelligent
180 algorithm similar to (or identical to) the one used by the Unix \"diff\"
181 program.  It is guaranteed to find the *smallest possible* set of
182 differences.")
183     (license (package-license perl))))
185 (define-public perl-aliased
186   (package
187     (name "perl-aliased")
188     (version "0.34")
189     (source
190      (origin
191        (method url-fetch)
192        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
193                            "aliased-" version ".tar.gz"))
194        (sha256
195         (base32
196          "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
197     (build-system perl-build-system)
198     (native-inputs `(("perl-module-build" ,perl-module-build)))
199     (home-page "http://search.cpan.org/dist/aliased")
200     (synopsis "Use shorter versions of class names")
201     (description "The alias module loads the class you specify and exports
202 into your namespace a subroutine that returns the class name.  You can
203 explicitly alias the class to another name or, if you prefer, you can do so
204 implicitly.")
205     (license (package-license perl))))
207 (define-public perl-appconfig
208   (package
209     (name "perl-appconfig")
210     (version "1.71")
211     (source
212      (origin
213        (method url-fetch)
214        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
215                            "AppConfig-" version ".tar.gz"))
216        (sha256
217         (base32
218          "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
219     (build-system perl-build-system)
220     (native-inputs
221      `(("perl-test-pod" ,perl-test-pod)))
222     (home-page "http://search.cpan.org/dist/AppConfig")
223     (synopsis "Configuration files and command line parsing")
224     (description "AppConfig is a bundle of Perl5 modules for reading
225 configuration files and parsing command line arguments.")
226     (license (package-license perl))))
228 (define-public perl-archive-zip
229   (package
230     (name "perl-archive-zip")
231     (version "1.30")
232     (source
233      (origin
234        (method url-fetch)
235        (uri (string-append
236              "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-"
237              version ".tar.gz"))
238        (sha256
239         (base32
240          "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
241     (build-system perl-build-system)
242     (synopsis "Perl API to zip files")
243     (description "The Archive::Zip module allows a Perl program to create,
244 manipulate, read, and write Zip archive files.")
245     (home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm")
246     (license (package-license perl))))
248 (define-public perl-array-utils
249   (package
250     (name "perl-array-utils")
251     (version "0.5")
252     (source
253      (origin
254        (method url-fetch)
255        (uri (string-append
256              "mirror://cpan/authors/id/Z/ZM/ZMIJ/Array/Array-Utils-"
257              version
258              ".tar.gz"))
259        (sha256
260         (base32
261          "0w1pwvnjdpb0n6k07zbknxwx6v7y75p4jxrs594pjhwvrmzippc9"))))
262     (build-system perl-build-system)
263     (home-page "http://search.cpan.org/dist/Array-Utils")
264     (synopsis "Small utils for array manipulation")
265     (description "@code{Array::Utils} is a small pure-perl module containing
266 list manipulation routines.")
267     (license (package-license perl))))
269 (define-public perl-base
270   (package
271     (name "perl-base")
272     (version "2.18")
273     (source
274      (origin
275        (method url-fetch)
276        (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
277                            "base-" version ".tar.gz"))
278        (sha256
279         (base32
280          "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
281     (build-system perl-build-system)
282     (home-page "http://search.cpan.org/dist/base")
283     (synopsis "Establish an ISA relationship with base classes at compile time")
284     (description "Allows you to both load one or more modules, while setting
285 up inheritance from those modules at the same time.  Unless you are using the
286 fields pragma, consider this module discouraged in favor of the lighter-weight
287 parent.")
288     (license (package-license perl))))  ;See README
290 (define-public perl-b-hooks-endofscope
291   (package
292     (name "perl-b-hooks-endofscope")
293     (version "0.13")
294     (source
295      (origin
296        (method url-fetch)
297        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
298                            "B-Hooks-EndOfScope-" version ".tar.gz"))
299        (sha256
300         (base32
301          "1f5d0lbkwf23dfjn60g6fynmjhy5rxdyxcpdfb07srm73qpg2zpi"))))
302     (build-system perl-build-system)
303     (propagated-inputs
304      `(("perl-module-runtime" ,perl-module-runtime)
305        ("perl-module-implementation" ,perl-module-implementation)
306        ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
307        ("perl-variable-magic" ,perl-variable-magic)))
308     (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope")
309     (synopsis "Execute code after a scope finished compilation")
310     (description "This module allows you to execute code when perl finished
311 compiling the surrounding scope.")
312     (license (package-license perl))))
314 (define-public perl-benchmark-timer
315   (package
316     (name "perl-benchmark-timer")
317     (version "0.7102")
318     (source (origin
319               (method url-fetch)
320               (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
321                                   "Benchmark-Timer-" version ".tar.gz"))
322               (sha256
323                (base32
324                 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
325     (build-system perl-build-system)
326     ;; The optional input module Statistics::PointEstimation (from
327     ;; Statistics-TTest) lists no license.
328     (synopsis "Benchmarking with statistical confidence")
329     (description
330      "The Benchmark::Timer class allows you to time portions of code
331 conveniently, as well as benchmark code by allowing timings of repeated
332 trials.  It is perfect for when you need more precise information about the
333 running time of portions of your code than the Benchmark module will give you,
334 but don't want to go all out and profile your code.")
335     (home-page (string-append "http://search.cpan.org/~dcoppit/"
336                               "Benchmark-Timer-" version))
337     (license gpl2)))
339 (define-public perl-bit-vector
340   (package
341     (name "perl-bit-vector")
342     (version "7.4")
343     (source
344      (origin
345        (method url-fetch)
346        (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
347                            "Bit-Vector-" version ".tar.gz"))
348        (sha256
349         (base32
350          "09m96p8c0ipgz42li2ywdgy0vxb57mb5nf59j9gw7yzc3xkslv9w"))))
351     (build-system perl-build-system)
352     (propagated-inputs
353      `(("perl-carp-clan" ,perl-carp-clan)))
354     (home-page "http://search.cpan.org/dist/Bit-Vector")
355     (synopsis "Bit vector library")
356     (description "Bit::Vector is an efficient C library which allows you to
357 handle bit vectors, sets (of integers), \"big integer arithmetic\" and boolean
358 matrices, all of arbitrary sizes.  The package also includes an
359 object-oriented Perl module for accessing the C library from Perl, and
360 optionally features overloaded operators for maximum ease of use.  The C
361 library can nevertheless be used stand-alone, without Perl.")
362     (license (list (package-license perl) lgpl2.0+))))
364 (define-public perl-boolean
365   (package
366     (name "perl-boolean")
367     (version "0.45")
368     (source
369      (origin
370        (method url-fetch)
371        (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
372                            "boolean-" version ".tar.gz"))
373        (sha256
374         (base32
375          "18hrgldzwnhs0c0r8hxx6r05qvk9p7gwinjwcybixfs2h0n43ypj"))))
376     (build-system perl-build-system)
377     (home-page "http://search.cpan.org/dist/boolean")
378     (synopsis "Boolean support for Perl")
379     (description "This module provides basic Boolean support, by defining two
380 special objects: true and false.")
381     (license (package-license perl))))
383 (define-public perl-cache-cache
384   (package
385     (name "perl-cache-cache")
386     (version "1.08")
387     (source (origin
388               (method url-fetch)
389               (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
390                                   "Cache-Cache-" version ".tar.gz"))
391               (sha256
392                (base32
393                 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
394     (build-system perl-build-system)
395     (propagated-inputs
396      `(("perl-digest-sha1" ,perl-digest-sha1)
397        ("perl-error" ,perl-error)
398        ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
399     (home-page "http://search.cpan.org/dist/Cache-Cache")
400     (synopsis "Cache interface for Perl")
401     (description "The Cache modules are designed to assist a developer in
402 persisting data for a specified period of time.  Often these modules are used
403 in web applications to store data locally to save repeated and redundant
404 expensive calls to remote machines or databases.  People have also been known
405 to use Cache::Cache for its straightforward interface in sharing data between
406 runs of an application or invocations of a CGI-style script or simply as an
407 easy to use abstraction of the file system or shared memory.")
408     (license (package-license perl))))
410 (define-public perl-cache-fastmmap
411   (package
412     (name "perl-cache-fastmmap")
413     (version "1.40")
414     (source
415      (origin
416        (method url-fetch)
417        (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
418                            "Cache-FastMmap-" version ".tar.gz"))
419        (sha256
420         (base32
421          "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
422     (build-system perl-build-system)
423     (home-page "http://search.cpan.org/dist/Cache-FastMmap")
424     (synopsis "Shared memory interprocess cache via mmap")
425     (description "A shared memory cache through an mmap'ed file.  It's core is
426 written in C for performance.  It uses fcntl locking to ensure multiple
427 processes can safely access the cache at the same time.  It uses a basic LRU
428 algorithm to keep the most used entries in the cache.")
429     (license (package-license perl))))
431 (define-public perl-capture-tiny
432   (package
433     (name "perl-capture-tiny")
434     (version "0.28")
435     (source
436      (origin
437        (method url-fetch)
438        (uri (string-append
439              "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
440              version ".tar.gz"))
441        (sha256
442         (base32
443          "117gmwipql1y5xnw9jil3lhdsrf2wsm9wjdzqj66x971n3fwm573"))))
444     (build-system perl-build-system)
445     (home-page "http://search.cpan.org/dist/Capture-Tiny")
446     (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
447     (description
448      "Capture::Tiny provides a simple, portable way to capture almost anything
449 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
450 code or from an external program.  Optionally, output can be teed so that it
451 is captured while being passed through to the original file handles.")
452     (license asl2.0)))
454 (define-public perl-carp-assert
455   (package
456     (name "perl-carp-assert")
457     (version "0.21")
458     (source
459      (origin
460        (method url-fetch)
461        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
462                            "Carp-Assert-" version ".tar.gz"))
463        (sha256
464         (base32
465          "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
466     (build-system perl-build-system)
467     (home-page "http://search.cpan.org/dist/Carp-Assert")
468     (synopsis "Executable comments for Perl")
469     (description "Carp::Assert is intended for a purpose like the ANSI C
470 library assert.h.")
471     (license (package-license perl))))
473 (define-public perl-carp-assert-more
474   (package
475     (name "perl-carp-assert-more")
476     (version "1.14")
477     (source
478      (origin
479        (method url-fetch)
480        (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
481                            "Carp-Assert-More-" version ".tar.gz"))
482        (sha256
483         (base32
484          "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
485     (build-system perl-build-system)
486     (native-inputs
487      `(("perl-test-exception" ,perl-test-exception)))
488     (propagated-inputs
489      `(("perl-carp-assert" ,perl-carp-assert)))
490     (home-page "http://search.cpan.org/dist/Carp-Assert-More")
491     (synopsis "Convenience wrappers around Carp::Assert")
492     (description "Carp::Assert::More is a set of handy assertion functions for
493 Perl.")
494     (license artistic2.0)))
496 (define-public perl-carp-clan
497   (package
498     (name "perl-carp-clan")
499     (version "6.04")
500     (source
501      (origin
502        (method url-fetch)
503        (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
504                            "Carp-Clan-" version ".tar.gz"))
505        (sha256
506         (base32
507          "1v71k8s1pi16l5y579gnrg372c6pdvy6qqm6iddm8h1dx7n16bjl"))))
508     (build-system perl-build-system)
509     (native-inputs
510      `(("perl-test-exception" ,perl-test-exception)))
511     (home-page "http://search.cpan.org/dist/Carp-Clan")
512     (synopsis "Report errors from a \"clan\" of modules")
513     (description "This module allows errors from a clan (or family) of modules
514 to appear to originate from the caller of the clan.  This is necessary in
515 cases where the clan modules are not classes derived from each other, and thus
516 the Carp.pm module doesn't help.")
517     (license (package-license perl))))
519 (define-public perl-class-accessor
520   (package
521     (name "perl-class-accessor")
522     (version "0.34")
523     (source
524      (origin
525        (method url-fetch)
526        (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
527                            "Class-Accessor-" version ".tar.gz"))
528        (sha256
529         (base32
530          "1z6fqg0yz8gay15r1iasslv8f1n1mzjkrhs47fvbj3rqz36y1cfd"))))
531     (build-system perl-build-system)
532     (native-inputs
533      `(("perl-sub-name" ,perl-sub-name)))
534     (propagated-inputs
535      `(("perl-base" ,perl-base)))
536     (home-page "http://search.cpan.org/dist/Class-Accessor")
537     (synopsis "Automated accessor generation")
538     (description "This module automagically generates accessors/mutators for
539 your class.")
540     (license (package-license perl))))
542 (define-public perl-class-accessor-chained
543   (package
544     (name "perl-class-accessor-chained")
545     (version "0.01")
546     (source
547      (origin
548        (method url-fetch)
549        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
550                            "Class-Accessor-Chained-" version ".tar.gz"))
551        (sha256
552         (base32
553          "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
554     (build-system perl-build-system)
555     (native-inputs
556      `(("perl-module-build" ,perl-module-build)))
557     (propagated-inputs
558      `(("perl-class-accessor" ,perl-class-accessor)))
559     (home-page "http://search.cpan.org/dist/Class-Accessor-Chained")
560     (synopsis "Faster, but less expandable, chained accessors")
561     (description "A chained accessor is one that always returns the object
562 when called with parameters (to set), and the value of the field when called
563 with no arguments.  This module subclasses Class::Accessor in order to provide
564 the same mk_accessors interface.")
565     (license (package-license perl))))
567 (define-public perl-class-accessor-grouped
568   (package
569     (name "perl-class-accessor-grouped")
570     (version "0.10012")
571     (source
572      (origin
573        (method url-fetch)
574        (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
575                            "Class-Accessor-Grouped-" version ".tar.gz"))
576        (sha256
577         (base32
578          "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
579     (build-system perl-build-system)
580     (native-inputs
581      `(("perl-test-exception" ,perl-test-exception)))
582     (propagated-inputs
583      `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
584        ("perl-module-runtime" ,perl-module-runtime)
585        ("perl-sub-name" ,perl-sub-name)))
586     (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped")
587     (synopsis "Build groups of accessors")
588     (description "This class lets you build groups of accessors that will call
589 different getters and setters.")
590     (license (package-license perl))))
592 (define-public perl-class-c3
593   (package
594     (name "perl-class-c3")
595     (version "0.27")
596     (source
597      (origin
598        (method url-fetch)
599        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
600                            "Class-C3-" version ".tar.gz"))
601        (sha256
602         (base32
603          "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
604     (build-system perl-build-system)
605     (propagated-inputs
606      `(("perl-algorithm-c3" ,perl-algorithm-c3)))
607     (home-page "http://search.cpan.org/dist/Class-C3")
608     (synopsis "Pragma to use the C3 method resolution order algorithm")
609     (description "This is pragma to change Perl 5's standard method resolution
610 order from depth-first left-to-right (a.k.a - pre-order) to the more
611 sophisticated C3 method resolution order.")
612     (license (package-license perl))))
614 (define-public perl-class-c3-adopt-next
615   (package
616     (name "perl-class-c3-adopt-next")
617     (version "0.13")
618     (source
619      (origin
620        (method url-fetch)
621        (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
622                            "Class-C3-Adopt-NEXT-" version ".tar.gz"))
623        (sha256
624         (base32
625          "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
626     (build-system perl-build-system)
627     (native-inputs
628      `(("perl-test-exception" ,perl-test-exception)))
629     (propagated-inputs
630      `(("perl-list-moreutils" ,perl-list-moreutils)
631        ("perl-mro-compat" ,perl-mro-compat)))
632     (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT")
633     (synopsis "Drop-in replacement for NEXT")
634     (description "This module is intended as a drop-in replacement for NEXT,
635 supporting the same interface, but using Class::C3 to do the hard work.")
636     (license (package-license perl))))
638 (define-public perl-class-c3-componentised
639   (package
640     (name "perl-class-c3-componentised")
641     (version "1.001000")
642     (source
643      (origin
644        (method url-fetch)
645        (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
646                            "Class-C3-Componentised-" version ".tar.gz"))
647        (sha256
648         (base32
649          "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
650     (build-system perl-build-system)
651     (native-inputs
652      `(("perl-test-exception" ,perl-test-exception)))
653     (propagated-inputs
654      `(("perl-class-c3" ,perl-class-c3)
655        ("perl-class-inspector" ,perl-class-inspector)
656        ("perl-mro-compat" ,perl-mro-compat)))
657     (home-page "http://search.cpan.org/dist/Class-C3-Componentised")
658     (synopsis "Load mix-ins or components to your C3-based class")
659     (description "This module will inject base classes to your module using
660 the Class::C3 method resolution order.")
661     (license (package-license perl))))
663 (define-public perl-class-data-inheritable
664   (package
665     (name "perl-class-data-inheritable")
666     (version "0.08")
667     (source
668      (origin
669        (method url-fetch)
670        (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
671                            "Class-Data-Inheritable-" version ".tar.gz"))
672        (sha256
673         (base32
674          "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
675     (build-system perl-build-system)
676     (home-page "http://search.cpan.org/dist/Class-Data-Inheritable")
677     (synopsis "Inheritable, overridable class data")
678     (description "Class::Data::Inheritable is for creating accessor/mutators
679 to class data.  That is, if you want to store something about your class as a
680 whole (instead of about a single object).  This data is then inherited by your
681 subclasses and can be overridden.")
682     (license (package-license perl))))
684 (define-public perl-class-date
685   (package
686     (name "perl-class-date")
687     (version "1.1.15")
688     (source
689      (origin
690        (method url-fetch)
691        (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
692                            "Class-Date-" version ".tar.gz"))
693        (sha256
694         (base32
695          "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
696     (build-system perl-build-system)
697     (arguments `(#:tests? #f))          ;timezone tests in chroot
698     (home-page "http://search.cpan.org/dist/Class-Date")
699     (synopsis "Class for easy date and time manipulation")
700     (description "This module provides a general-purpose date and datetime
701 type for perl.")
702     (license (package-license perl))))
704 (define-public perl-class-errorhandler
705   (package
706     (name "perl-class-errorhandler")
707     (version "0.04")
708     (source (origin
709               (method url-fetch)
710               (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
711                                   "Class-ErrorHandler-" version ".tar.gz"))
712               (sha256
713                (base32
714                 "00j5f0z4riyq7i95jww291dpmbn0hmmvkcbrh7p0p8lpqz7jsb9l"))))
715     (build-system perl-build-system)
716     (home-page "http://search.cpan.org/dist/Class-ErrorHandler")
717     (synopsis "Base class for error handling")
718     (description
719      "@code{Class::ErrorHandler} provides an error-handling mechanism that is generic
720 enough to be used as the base class for a variety of OO classes.  Subclasses inherit
721 its two error-handling methods, error and errstr, to communicate error messages back
722 to the calling program.")
723     (license (package-license perl))))
725 (define-public perl-class-factory-util
726   (package
727     (name "perl-class-factory-util")
728     (version "1.7")
729     (source
730      (origin
731        (method url-fetch)
732        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
733                            "Class-Factory-Util-" version ".tar.gz"))
734        (sha256
735         (base32
736          "09ifd6v0c94vr20n9yr1dxgcp7hyscqq851szdip7y24bd26nlbc"))))
737     (build-system perl-build-system)
738     (native-inputs `(("perl-module-build" ,perl-module-build)))
739     (home-page "http://search.cpan.org/dist/Class-Factory-Util")
740     (synopsis "Utility methods for factory classes")
741     (description "This module exports methods useful for factory classes.")
742     (license (package-license perl))))
744 (define-public perl-class-inspector
745   (package
746     (name "perl-class-inspector")
747     (version "1.28")
748     (source
749      (origin
750        (method url-fetch)
751        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
752                            "Class-Inspector-" version ".tar.gz"))
753        (sha256
754         (base32
755          "04iij8dbcgaim7g109frpyf7mh4ydsd8zh53r53chk0zxnivg91w"))))
756     (build-system perl-build-system)
757     (home-page "http://search.cpan.org/dist/Class-Inspector")
758     (synopsis "Get information about a class and its structure")
759     (description "Class::Inspector allows you to get information about a
760 loaded class.")
761     (license (package-license perl))))
763 (define-public perl-class-load
764   (package
765     (name "perl-class-load")
766     (version "0.22")
767     (source
768      (origin
769        (method url-fetch)
770        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
771                            "Class-Load-" version ".tar.gz"))
772        (sha256
773         (base32
774          "049i285yj8hwgzj7nncjbs2bhxvpdk88wmx1d0nh0rdmh5hdnlmy"))))
775     (build-system perl-build-system)
776     (native-inputs
777      `(("perl-module-build-tiny" ,perl-module-build-tiny)
778        ("perl-test-fatal" ,perl-test-fatal)
779        ("perl-test-requires" ,perl-test-requires)))
780     (propagated-inputs
781      `(("perl-package-stash" ,perl-package-stash)
782        ("perl-data-optlist" ,perl-data-optlist)
783        ("perl-namespace-clean" ,perl-namespace-clean)
784        ("perl-module-runtime" ,perl-module-runtime)
785        ("perl-module-implementation" ,perl-module-implementation)))
786     (home-page "http://search.cpan.org/dist/Class-Load")
787     (synopsis "Working (require \"Class::Name\") and more")
788     (description "\"require EXPR\" only accepts Class/Name.pm style module
789 names, not Class::Name.  For that, this module provides \"load_class
790 'Class::Name'\".")
791     (license (package-license perl))))
793 (define-public perl-class-load-xs
794   (package
795     (name "perl-class-load-xs")
796     (version "0.09")
797     (source
798      (origin
799        (method url-fetch)
800        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
801                            "Class-Load-XS-" version ".tar.gz"))
802        (sha256
803         (base32
804          "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"))))
805     (build-system perl-build-system)
806     (native-inputs
807      `(("perl-test-fatal" ,perl-test-fatal)
808        ("perl-test-requires" ,perl-test-requires)))
809     (inputs `(("perl-class-load" ,perl-class-load)))
810     (home-page "http://search.cpan.org/dist/Class-Load-XS")
811     (synopsis "XS implementation of parts of Class::Load")
812     (description "This module provides an XS implementation for portions of
813 Class::Load.")
814     (license artistic2.0)))
816 (define-public perl-class-methodmaker
817   (package
818     (name "perl-class-methodmaker")
819     (version "2.24")
820     (source
821      (origin
822        (method url-fetch)
823        (uri (string-append "mirror://cpan/authors/id/S/SC/SCHWIGON/"
824                            "class-methodmaker/Class-MethodMaker-"
825                            version ".tar.gz"))
826        (sha256
827         (base32
828          "0a03i4k3a33qqwhykhz5k437ld5mag2vq52vvsy03gbynb65ivsy"))))
829     (build-system perl-build-system)
830     (home-page "http://search.cpan.org/dist/Class-MethodMaker")
831     (synopsis "Create generic methods for OO Perl")
832     (description "This module solves the problem of having to continually
833 write accessor methods for your objects that perform standard tasks.")
834     (license (package-license perl))))
836 (define-public perl-class-method-modifiers
837   (package
838     (name "perl-class-method-modifiers")
839     (version "2.11")
840     (source
841      (origin
842        (method url-fetch)
843        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
844                            "Class-Method-Modifiers-" version ".tar.gz"))
845        (sha256
846         (base32
847          "14nk2gin9cjwpysakli7f0gs4q1w220sn73xzv35rhlspngrggyy"))))
848     (build-system perl-build-system)
849     (native-inputs
850      `(("perl-test-fatal" ,perl-test-fatal)
851        ("perl-test-requires" ,perl-test-requires)))
852     (home-page "http://search.cpan.org/dist/Class-Method-Modifiers")
853     (synopsis "Moose-like method modifiers")
854     (description "Class::Method::Modifiers provides three modifiers: 'before',
855 'around', and 'after'.  'before' and 'after' are run just before and after the
856 method they modify, but can not really affect that original method.  'around'
857 is run in place of the original method, with a hook to easily call that
858 original method.")
859     (license (package-license perl))))
861 (define-public perl-class-singleton
862   (package
863     (name "perl-class-singleton")
864     (version "1.5")
865     (source
866      (origin
867        (method url-fetch)
868        (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
869                            "Class-Singleton-" version ".tar.gz"))
870        (sha256
871         (base32
872          "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
873     (build-system perl-build-system)
874     (home-page "http://search.cpan.org/dist/Class-Singleton")
875     (synopsis "Implementation of a singleton class for Perl")
876     (description "This module implements a Singleton class from which other
877 classes can be derived.  By itself, the Class::Singleton module does very
878 little other than manage the instantiation of a single object.")
879     (license (package-license perl))))
881 (define-public perl-class-tiny
882   (package
883     (name "perl-class-tiny")
884     (version "1.000")
885     (source
886      (origin
887        (method url-fetch)
888        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
889                            "Class-Tiny-" version ".tar.gz"))
890        (sha256
891         (base32
892          "0jll90byj0nl16hwpf28k54i4n53jidjsj1bnlbx72v0n56qfpb2"))))
893     (build-system perl-build-system)
894     (home-page "http://search.cpan.org/dist/Class-Tiny")
895     (synopsis "Minimalist class construction")
896     (description "This module offers a minimalist class construction kit.  It
897 uses no non-core modules for any recent Perl.")
898     (license asl2.0)))
900 (define-public perl-class-unload
901   (package
902     (name "perl-class-unload")
903     (version "0.08")
904     (source
905      (origin
906        (method url-fetch)
907        (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
908                            "Class-Unload-" version ".tar.gz"))
909        (sha256
910         (base32
911          "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
912     (build-system perl-build-system)
913     (propagated-inputs
914      `(("perl-class-inspector" ,perl-class-inspector)))
915     (home-page "http://search.cpan.org/dist/Class-Unload")
916     (synopsis "Unload a class")
917     (description "Class:Unload unloads a given class by clearing out its
918 symbol table and removing it from %INC.")
919     (license (package-license perl))))
921 (define-public perl-class-xsaccessor
922   (package
923     (name "perl-class-xsaccessor")
924     (version "1.19")
925     (source
926      (origin
927        (method url-fetch)
928        (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
929                            "Class-XSAccessor-" version ".tar.gz"))
930        (sha256
931         (base32
932          "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
933     (build-system perl-build-system)
934     (home-page "http://search.cpan.org/dist/Class-XSAccessor")
935     (synopsis "Generate fast XS accessors without runtime compilation")
936     (description "Class::XSAccessor implements fast read, write, and
937 read/write accessors in XS.  Additionally, it can provide predicates such as
938 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
939 object.  It only works with objects that are implemented as ordinary hashes.
940 Class::XSAccessor::Array implements the same interface for objects that use
941 arrays for their internal representation.")
942     (license (package-license perl))))
944 (define-public perl-clone
945   (package
946     (name "perl-clone")
947     (version "0.37")
948     (source (origin
949               (method url-fetch)
950               (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
951                                   "Clone-" version ".tar.gz"))
952               (sha256
953                (base32
954                 "17fdhxpzrq2nwim3zkcrz4m9gjixp0i886yz54ysrshxy3k53wnr"))))
955     (build-system perl-build-system)
956     (synopsis "Recursively copy Perl datatypes")
957     (description
958      "This module provides a clone() method which makes recursive copies of
959 nested hash, array, scalar and reference types, including tied variables and
960 objects.")
961     (home-page (string-append "http://search.cpan.org/~garu/"
962                               "Clone-" version))
963     (license (package-license perl))))
965 (define-public perl-common-sense
966   (package
967     (name "perl-common-sense")
968     (version "3.73")
969     (source
970      (origin
971        (method url-fetch)
972        (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
973                            "common-sense-" version ".tar.gz"))
974        (sha256
975         (base32
976          "047xwgpn5611zrhk4c8vk9pzcbk1q7n3q0lfiwhhq7k4fbjca441"))))
977     (build-system perl-build-system)
978     (home-page "http://search.cpan.org/dist/common-sense")
979     (synopsis "Sane defaults for Perl programs")
980     (description "This module implements some sane defaults for Perl programs,
981 as defined by two typical specimens of Perl coders.")
982     (license (package-license perl))))
984 (define-public perl-config-any
985   (package
986     (name "perl-config-any")
987     (version "0.24")
988     (source
989      (origin
990        (method url-fetch)
991        (uri (string-append "mirror://cpan/authors/id/B/BR/BRICAS/"
992                            "Config-Any-" version ".tar.gz"))
993        (sha256
994         (base32
995          "06n6jn3q3xhk57icwip0ihzqixxav6sgp6rrb35hahj1z748y3vi"))))
996     (build-system perl-build-system)
997     (propagated-inputs
998      `(("perl-module-pluggable" ,perl-module-pluggable)))
999     (home-page "http://search.cpan.org/dist/Config-Any")
1000     (synopsis "Load configuration from different file formats")
1001     (description "Config::Any provides a facility for Perl applications and
1002 libraries to load configuration data from multiple different file formats.  It
1003 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
1004     (license (package-license perl))))
1006 (define-public perl-config-autoconf
1007   (package
1008     (name "perl-config-autoconf")
1009     (version "0.309")
1010     (source
1011      (origin
1012        (method url-fetch)
1013        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1014                            "Config-AutoConf-" version ".tar.gz"))
1015        (sha256
1016         (base32
1017          "1nqc7calfny12dwfhz7ylsvx55nf69kirdc5dbyvh3sjsqj8yvdq"))))
1018     (build-system perl-build-system)
1019     (propagated-inputs
1020      `(("perl-capture-tiny" ,perl-capture-tiny)))
1021     (home-page "http://search.cpan.org/dist/Config-AutoConf")
1022     (synopsis "Module to implement some AutoConf macros in Perl")
1023     (description "Config::AutoConf is intended to provide the same
1024 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
1025     (license (package-license perl))))
1027 (define-public perl-config-general
1028   (package
1029     (name "perl-config-general")
1030     (version "2.56")
1031     (source
1032      (origin
1033        (method url-fetch)
1034        (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
1035                            "Config-General-" version ".tar.gz"))
1036        (sha256
1037         (base32
1038          "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
1039     (build-system perl-build-system)
1040     (home-page "http://search.cpan.org/dist/Config-General")
1041     (synopsis "Generic Config Module")
1042     (description "This module opens a config file and parses its contents for
1043 you.  The format of config files supported by Config::General is inspired by
1044 the well known Apache config format and is 100% compatible with Apache
1045 configs, but you can also just use simple name/value pairs in your config
1046 files.  In addition to the capabilities of an Apache config file it supports
1047 some enhancements such as here-documents, C-style comments, and multiline
1048 options.")
1049     (license (package-license perl))))
1051 (define-public perl-config-ini
1052   (package
1053     (name "perl-config-ini")
1054     (version "0.025")
1055     (source (origin
1056               (method url-fetch)
1057               (uri (string-append
1058                     "mirror://cpan/authors/id/R/RJ/RJBS/Config-INI-"
1059                     version ".tar.gz"))
1060               (sha256
1061                (base32
1062                 "0clphq6a17chvb663fvjnxqvyvh26g03x0fl4bg9vy4ibdnzg2v2"))))
1063     (build-system perl-build-system)
1064     (inputs
1065      `(("perl-mixin-linewise" ,perl-mixin-linewise)
1066        ("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
1067        ("perl-sub-exporter" ,perl-sub-exporter)))
1068     (home-page "http://search.cpan.org/dist/Config-INI")
1069     (synopsis "Simple .ini-file format reader and writer")
1070     (description "@code{Config::INI} is a module that facilates the reading
1071 and writing of @code{.ini}-style configuration files.")
1072     (license (package-license perl))))
1074 (define-public perl-context-preserve
1075   (package
1076     (name "perl-context-preserve")
1077     (version "0.01")
1078     (source
1079      (origin
1080        (method url-fetch)
1081        (uri (string-append "mirror://cpan/authors/id/J/JR/JROCKWAY/"
1082                            "Context-Preserve-" version ".tar.gz"))
1083        (sha256
1084         (base32
1085          "0gssillawjknqks81x7fg7w2x94bnyklgd8ry2pr1k6ifkjhwz46"))))
1086     (build-system perl-build-system)
1087     (native-inputs
1088      `(("perl-test-exception" ,perl-test-exception)
1089        ("perl-test-simple" ,perl-test-simple)))
1090     (home-page "http://search.cpan.org/dist/Context-Preserve")
1091     (synopsis "Preserve context during subroutine call")
1092     (description "This module runs code after a subroutine call, preserving
1093 the context the subroutine would have seen if it were the last statement in
1094 the caller.")
1095     (license (package-license perl))))
1097 (define-public perl-cpan-meta-check
1098   (package
1099     (name "perl-cpan-meta-check")
1100     (version "0.009")
1101     (source
1102      (origin
1103        (method url-fetch)
1104        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1105                            "CPAN-Meta-Check-" version ".tar.gz"))
1106        (sha256
1107         (base32
1108          "0qbk5dwvhd78qgq5x6nim2n0l78pylvlklpbrm56w9yss6pl6bgb"))))
1109     (build-system perl-build-system)
1110     (native-inputs `(("perl-test-deep" ,perl-test-deep)))
1111     (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
1112     (home-page "http://search.cpan.org/dist/CPAN-Meta-Check")
1113     (synopsis "Verify requirements in a CPAN::Meta object")
1114     (description "This module verifies if requirements described in a
1115 CPAN::Meta object are present.")
1116     (license (package-license perl))))
1118 (define-public perl-cpanel-json-xs
1119   (package
1120     (name "perl-cpanel-json-xs")
1121     (version "3.0114")
1122     (source
1123      (origin
1124        (method url-fetch)
1125        (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
1126                            "Cpanel-JSON-XS-" version ".tar.gz"))
1127        (sha256
1128         (base32
1129          "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
1130     (build-system perl-build-system)
1131     (propagated-inputs
1132      `(("perl-common-sense" ,perl-common-sense)))
1133     (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS")
1134     (synopsis "JSON::XS for Cpanel")
1135     (description "This module converts Perl data structures to JSON and vice
1136 versa.")
1137     (license (package-license perl))))
1139 (define-public perl-crypt-randpasswd
1140   (package
1141     (name "perl-crypt-randpasswd")
1142     (version "0.06")
1143     (source
1144      (origin
1145        (method url-fetch)
1146        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1147                            "Crypt-RandPasswd-" version ".tar.gz"))
1148        (sha256
1149         (base32
1150          "0ca8544371wp4vvqsa19lnhl02hczpkbwkgsgm65ziwwim3r1gdi"))))
1151     (build-system perl-build-system)
1152     (home-page "http://search.cpan.org/dist/Crypt-RandPasswd")
1153     (synopsis "Random password generator")
1154     (description "Crypt::RandPasswd provides three functions that can be used
1155 to generate random passwords, constructed from words, letters, or characters.
1156 This code is a Perl implementation of the Automated Password Generator
1157 standard, like the program described in \"A Random Word Generator For
1158 Pronounceable Passwords\".  This code is a re-engineering of the program
1159 contained in Appendix A of FIPS Publication 181, \"Standard for Automated
1160 Password Generator\".")
1161     (license (package-license perl))))
1163 (define-public perl-czplib
1164   (package
1165     (name "perl-czplib")
1166     (version "1.0.5")
1167     (source
1168      (origin
1169        (method url-fetch)
1170        (uri (string-append "mirror://sourceforge/czplib/czplib.v"
1171                            version ".tgz"))
1172        (sha256
1173         (base32
1174          "12kln8l5h406r1ss6zbazgcshmys9nvabkrhvk2zwrrgl1saq1kf"))
1175        (modules '((guix build utils)))
1176        (snippet
1177         '(begin
1178            ;; Remove .git directory
1179            (delete-file-recursively ".git")
1180            #t))))
1181     (build-system perl-build-system)
1182     (arguments
1183      `(#:phases
1184        (modify-phases %standard-phases
1185          (delete 'configure)
1186          (delete 'build)
1187          (replace
1188           'install
1189           (lambda* (#:key outputs #:allow-other-keys)
1190             (copy-recursively "."
1191                               (string-append (assoc-ref outputs "out")
1192                                              "/plib/perl5/site_perl/"
1193                                              ,(package-version perl)
1194                                              "/czplib/"))
1195             #t)))))
1196     (home-page "http://sourceforge.net/projects/czplib/")
1197     (synopsis "Library for genomic analysis")
1198     (description "Chaolin Zhang's Perl Library (czplib) contains assorted
1199 functions and data structures for processing and analysing genomic and
1200 bioinformatics data.")
1201     (license gpl3+)))
1203 (define-public perl-data-dump
1204   (package
1205     (name "perl-data-dump")
1206     (version "1.22")
1207     (source
1208      (origin
1209        (method url-fetch)
1210        (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1211                            "Data-Dump-" version ".tar.gz"))
1212        (sha256
1213         (base32
1214          "1ciqlwsy1q35s94dry9bjy1pwanbq6b7q4rhxm9z8prgkzbslg2k"))))
1215     (build-system perl-build-system)
1216     (home-page "http://search.cpan.org/dist/Data-Dump")
1217     (synopsis "Pretty printing of data structures")
1218     (description "This module provide functions that takes a list of values as
1219 their argument and produces a string as its result.  The string contains Perl
1220 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
1221     (license (package-license perl))))
1223 (define-public perl-data-dumper-concise
1224   (package
1225     (name "perl-data-dumper-concise")
1226     (version "2.022")
1227     (source
1228      (origin
1229        (method url-fetch)
1230        (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
1231                            "Data-Dumper-Concise-" version ".tar.gz"))
1232        (sha256
1233         (base32
1234          "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc"))))
1235     (build-system perl-build-system)
1236     (home-page "http://search.cpan.org/dist/Data-Dumper-Concise")
1237     (synopsis "Concise data dumper")
1238     (description "Data::Dumper::Concise provides a dumper with Less
1239 indentation and newlines plus sub deparsing.")
1240     (license (package-license perl))))
1242 (define-public perl-data-optlist
1243   (package
1244     (name "perl-data-optlist")
1245     (version "0.109")
1246     (source
1247      (origin
1248        (method url-fetch)
1249        (uri (string-append
1250              "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
1251              version ".tar.gz"))
1252        (sha256
1253         (base32
1254          "1j44rm2spprlq3bc80cxni3dzs3gfjiqv1qc9q7820n1qj0wgmqw"))))
1255     (build-system perl-build-system)
1256     (propagated-inputs
1257      `(("perl-sub-install" ,perl-sub-install)
1258        ("perl-params-util" ,perl-params-util)))
1259     (home-page "http://search.cpan.org/dist/Data-OptList")
1260     (synopsis "Parse and validate simple name/value option pairs")
1261     (description
1262      "Data::OptList provides a simple syntax for name/value option pairs.")
1263     (license (package-license perl))))
1265 (define-public perl-data-page
1266   (package
1267     (name "perl-data-page")
1268     (version "2.02")
1269     (source
1270      (origin
1271        (method url-fetch)
1272        (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
1273                            "Data-Page-" version ".tar.gz"))
1274        (sha256
1275         (base32
1276          "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1277     (build-system perl-build-system)
1278     (native-inputs
1279      `(("perl-module-build" ,perl-module-build)
1280        ("perl-test-exception" ,perl-test-exception)))
1281     (propagated-inputs
1282      `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1283     (home-page "http://search.cpan.org/dist/Data-Page")
1284     (synopsis "Help when paging through sets of results")
1285     (description "When searching through large amounts of data, it is often
1286 the case that a result set is returned that is larger than we want to display
1287 on one page.  This results in wanting to page through various pages of data.
1288 The maths behind this is unfortunately fiddly, hence this module.")
1289     (license (package-license perl))))
1291 (define-public perl-data-stag
1292   (package
1293     (name "perl-data-stag")
1294     (version "0.14")
1295     (source
1296      (origin
1297        (method url-fetch)
1298        (uri (string-append "mirror://cpan/authors/id/C/CM/CMUNGALL/"
1299                            "Data-Stag-" version ".tar.gz"))
1300        (sha256
1301         (base32
1302          "0ncf4l39ka23nb01jlm6rzxdb5pqbip01x0m38bnvf1gim825caa"))))
1303     (build-system perl-build-system)
1304     (propagated-inputs
1305      `(("perl-io-string" ,perl-io-string)))
1306     (home-page "http://search.cpan.org/dist/Data-Stag")
1307     (synopsis "Structured tags datastructures")
1308     (description
1309      "This module is for manipulating data as hierarchical tag/value
1310 pairs (Structured TAGs or Simple Tree AGgregates).  These datastructures can
1311 be represented as nested arrays, which have the advantage of being native to
1312 Perl.")
1313     (license (package-license perl))))
1315 (define-public perl-data-stream-bulk
1316   (package
1317     (name "perl-data-stream-bulk")
1318     (version "0.11")
1319     (source
1320      (origin
1321        (method url-fetch)
1322        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1323                            "Data-Stream-Bulk-" version ".tar.gz"))
1324        (sha256
1325         (base32
1326          "05q9ygcv7r318j7daxz42rjr5b99j6whjmwjdih0axxrlqr89q06"))))
1327     (build-system perl-build-system)
1328     (native-inputs
1329      `(("perl-test-requires" ,perl-test-requires)))
1330     (propagated-inputs
1331      `(("perl-moose" ,perl-moose)
1332        ("perl-namespace-clean" ,perl-namespace-clean)
1333        ("perl-path-class" ,perl-path-class)
1334        ("perl-sub-exporter" ,perl-sub-exporter)))
1335     (home-page "http://search.cpan.org/dist/Data-Stream-Bulk")
1336     (synopsis "N at a time iteration API")
1337     (description "This module tries to find middle ground between one at a
1338 time and all at once processing of data sets.  The purpose of this module is
1339 to avoid the overhead of implementing an iterative api when this isn't
1340 necessary, without breaking forward compatibility in case that becomes
1341 necessary later on.")
1342     (license (package-license perl))))
1344 (define-public perl-data-tumbler
1345   (package
1346     (name "perl-data-tumbler")
1347     (version "0.008")
1348     (source
1349      (origin
1350        (method url-fetch)
1351        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1352                            "Data-Tumbler-" version ".tar.gz"))
1353        (sha256
1354         (base32
1355          "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
1356     (build-system perl-build-system)
1357     (native-inputs
1358      `(("perl-test-most" ,perl-test-most)))
1359     (propagated-inputs
1360      `(("perl-file-homedir" ,perl-file-homedir)))
1361     (home-page "http://search.cpan.org/dist/Data-Tumbler")
1362     (synopsis "Dynamic generation of nested combinations of variants")
1363     (description "Data::Tumbler - Dynamic generation of nested combinations of
1364 variants.")
1365     (license (package-license perl))))
1367 (define-public perl-data-visitor
1368   (package
1369     (name "perl-data-visitor")
1370     (version "0.30")
1371     (source
1372      (origin
1373        (method url-fetch)
1374        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1375                            "Data-Visitor-" version ".tar.gz"))
1376        (sha256
1377         (base32
1378          "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
1379     (build-system perl-build-system)
1380     (native-inputs
1381      `(("perl-test-requires" ,perl-test-requires)))
1382     (propagated-inputs
1383      `(("perl-class-load" ,perl-class-load)
1384        ("perl-moose" ,perl-moose)
1385        ("perl-namespace-clean" ,perl-namespace-clean)
1386        ("perl-task-weaken" ,perl-task-weaken)
1387        ("perl-tie-toobject" ,perl-tie-toobject)))
1388     (home-page "http://search.cpan.org/dist/Data-Visitor")
1389     (synopsis "Visitor style traversal of Perl data structures")
1390     (description "This module is a simple visitor implementation for Perl
1391 values.  It has a main dispatcher method, visit, which takes a single perl
1392 value and then calls the methods appropriate for that value.  It can
1393 recursively map (cloning as necessary) or just traverse most structures, with
1394 support for per-object behavior, circular structures, visiting tied
1395 structures, and all ref types (hashes, arrays, scalars, code, globs).")
1396     (license (package-license perl))))
1398 (define-public perl-date-calc
1399   (package
1400     (name "perl-date-calc")
1401     (version "6.4")
1402     (source
1403      (origin
1404        (method url-fetch)
1405        (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1406                            "Date-Calc-" version ".tar.gz"))
1407        (sha256
1408         (base32
1409          "1barz0jgdaan3jm7ciphs5n3ahwkl42imprs3y8c1dwpwyr3gqbw"))))
1410     (build-system perl-build-system)
1411     (propagated-inputs
1412      `(("perl-bit-vector" ,perl-bit-vector)
1413        ("perl-carp-clan" ,perl-carp-clan)))
1414     (home-page "http://search.cpan.org/dist/Date-Calc")
1415     (synopsis "Gregorian calendar date calculations")
1416     (description "This package consists of a Perl module for date calculations
1417 based on the Gregorian calendar, thereby complying with all relevant norms and
1418 standards: ISO/R 2015-1971, DIN 1355 and, to some extent, ISO 8601 (where
1419 applicable).")
1420     (license (package-license perl))))
1422 (define-public perl-date-calc-xs
1423   (package
1424     (name "perl-date-calc-xs")
1425     (version "6.4")
1426     (source
1427      (origin
1428        (method url-fetch)
1429        (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
1430                            "Date-Calc-XS-" version ".tar.gz"))
1431        (sha256
1432         (base32
1433          "1cssi9rmd31cgaafgp4m70jqbm1mgh3aphxsxz1dwdz8h283n6jz"))))
1434     (build-system perl-build-system)
1435     (propagated-inputs
1436      `(("perl-bit-vector" ,perl-bit-vector)
1437        ("perl-carp-clan" ,perl-carp-clan)
1438        ("perl-date-calc" ,perl-date-calc)))
1439     (home-page "http://search.cpan.org/dist/Date-Calc-XS")
1440     (synopsis "XS wrapper for Date::Calc")
1441     (description "Date::Calc::XS is an XS wrapper and C library plug-in for
1442 Date::Calc.")
1443     (license (list (package-license perl) lgpl2.0+))))
1445 (define-public perl-date-manip
1446   (package
1447     (name "perl-date-manip")
1448     (version "6.50")
1449     (source
1450      (origin
1451        (method url-fetch)
1452        (uri (string-append "https://cpan.metacpan.org/authors/id/S/SB/SBECK/"
1453                            "Date-Manip-" version ".tar.gz"))
1454        (sha256
1455         (base32
1456          "0zd0wbf91i49753rnf7m1lw197hdl5r97mxy0n43zdmcmhvkb3qq"))))
1457     (build-system perl-build-system)
1458     (native-inputs `(("perl-module-build" ,perl-module-build)))
1459     (arguments
1460      ;; Tests would require tzdata for timezone information, but tzdata is in
1461      ;; (gnu packages base) which would create a circular dependency.  TODO:
1462      ;; Maybe put this package elsewhere so we can turn on tests.
1463      '(#:tests? #f))
1464     (home-page "http://search.cpan.org/dist/Date-Manip")
1465     (synopsis "Date manipulation routines")
1466     (description "Date::Manip is a series of modules for common date/time
1467 operations, such as comparing two times, determining a date a given amount of
1468 time from another, or parsing international times.")
1469     (license (package-license perl))))
1471 (define-public perl-datetime
1472   (package
1473     (name "perl-datetime")
1474     (version "1.18")
1475     (source
1476      (origin
1477        (method url-fetch)
1478        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1479                            "DateTime-" version ".tar.gz"))
1480        (sha256
1481         (base32
1482          "0fli1ls298qa8nfki15myxqqqfpxvslxk4j5r3vjk577wfgjrnms"))))
1483     (build-system perl-build-system)
1484     (native-inputs
1485      `(("perl-module-build" ,perl-module-build)
1486        ("perl-test-fatal" ,perl-test-fatal)
1487        ("perl-test-warnings" ,perl-test-warnings)))
1488     (propagated-inputs
1489      `(("perl-datetime-locale" ,perl-datetime-locale)
1490        ("perl-datetime-timezone" ,perl-datetime-timezone)
1491        ("perl-params-validate" ,perl-params-validate)
1492        ("perl-try-tiny" ,perl-try-tiny)))
1493     (home-page "http://search.cpan.org/dist/DateTime")
1494     (synopsis "Date and time object for Perl")
1495     (description "DateTime is a class for the representation of date/time
1496 combinations.  It represents the Gregorian calendar, extended backwards in
1497 time before its creation (in 1582).")
1498     (license artistic2.0)))
1500 (define-public perl-datetime-set
1501   (package
1502     (name "perl-datetime-set")
1503     (version "0.3400")
1504     (source
1505      (origin
1506        (method url-fetch)
1507        (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1508                            "DateTime-Set-" version ".tar.gz"))
1509        (sha256
1510         (base32
1511          "1b27699zkj68w5ll9chjhs52vmf39f9via6x5r5844as30qh9zxb"))))
1512     (build-system perl-build-system)
1513     (native-inputs
1514      `(("perl-module-build" ,perl-module-build)))
1515     (propagated-inputs
1516      `(("perl-datetime" ,perl-datetime)
1517        ("perl-params-validate" ,perl-params-validate)
1518        ("perl-set-infinite" ,perl-set-infinite)))
1519     (home-page "http://search.cpan.org/dist/DateTime-Set")
1520     (synopsis "DateTime set objects")
1521     (description "The DateTime::Set module provides a date/time sets
1522 implementation.  It allows, for example, the generation of groups of dates,
1523 like \"every wednesday\", and then find all the dates matching that pattern,
1524 within a time range.")
1525     (license (package-license perl))))
1527 (define-public perl-datetime-event-ical
1528   (package
1529     (name "perl-datetime-event-ical")
1530     (version "0.12")
1531     (source
1532      (origin
1533        (method url-fetch)
1534        (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1535                            "DateTime-Event-ICal-" version ".tar.gz"))
1536        (sha256
1537         (base32
1538          "1rfrjhczfmasf7aaz8rfd89vhwjj2nkxlnirxxrmy75z10nmrpjk"))))
1539     (build-system perl-build-system)
1540     (propagated-inputs
1541      `(("perl-datetime" ,perl-datetime)
1542        ("perl-datetime-event-recurrence" ,perl-datetime-event-recurrence)))
1543     (home-page "http://search.cpan.org/dist/DateTime-Event-ICal")
1544     (synopsis "DateTime rfc2445 recurrences")
1545     (description "This module provides convenience methods that let you easily
1546 create DateTime::Set objects for RFC 2445 style recurrences.")
1547     (license (package-license perl))))
1549 (define-public perl-datetime-event-recurrence
1550   (package
1551     (name "perl-datetime-event-recurrence")
1552     (version "0.16")
1553     (source
1554      (origin
1555        (method url-fetch)
1556        (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
1557                            "DateTime-Event-Recurrence-" version ".tar.gz"))
1558        (sha256
1559         (base32
1560          "02c6ky3k26r0c8r87rcsd8gbn7rd6j2pylryin8pllnrdh9f0wiq"))))
1561     (build-system perl-build-system)
1562     (propagated-inputs
1563      `(("perl-datetime" ,perl-datetime)
1564        ("perl-datetime-set" ,perl-datetime-set)))
1565     (home-page "http://search.cpan.org/dist/DateTime-Event-Recurrence")
1566     (synopsis "DateTime::Set extension for basic recurrences")
1567     (description "This module provides convenience methods that let you easily
1568 create DateTime::Set objects for various recurrences, such as \"once a month\"
1569 or \"every day\".  You can also create more complicated recurrences, such as
1570 \"every Monday, Wednesday and Thursday at 10:00 AM and 2:00 PM\".")
1571     (license (package-license perl))))
1573 (define-public perl-datetime-format-builder
1574   (package
1575     (name "perl-datetime-format-builder")
1576     (version "0.81")
1577     (source
1578      (origin
1579        (method url-fetch)
1580        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1581                            "DateTime-Format-Builder-" version ".tar.gz"))
1582        (sha256
1583         (base32
1584          "1vrkzw7kmxnyy403ykxgbg2kvgs99nggi4n9gi09ixivnn68mmbw"))))
1585     (build-system perl-build-system)
1586     (propagated-inputs
1587      `(("perl-class-factory-util" ,perl-class-factory-util)
1588        ("perl-datetime" ,perl-datetime)
1589        ("perl-datetime-format-strptime" ,perl-datetime-format-strptime)
1590        ("perl-params-validate" ,perl-params-validate)))
1591     (home-page "http://search.cpan.org/dist/DateTime-Format-Builder")
1592     (synopsis "Create DateTime parser classes and objects")
1593     (description "DateTime::Format::Builder creates DateTime parsers.  Many
1594 string formats of dates and times are simple and just require a basic regular
1595 expression to extract the relevant information.  Builder provides a simple way
1596 to do this without writing reams of structural code.")
1597     (license artistic2.0)))
1599 (define-public perl-datetime-format-flexible
1600   (package
1601     (name "perl-datetime-format-flexible")
1602     (version "0.26")
1603     (source
1604      (origin
1605        (method url-fetch)
1606        (uri (string-append "mirror://cpan/authors/id/T/TH/THINC/"
1607                            "DateTime-Format-Flexible-" version ".tar.gz"))
1608        (sha256
1609         (base32
1610          "0gb9dsn178dpvgbbgwnaf3v2v8zy4xj36i0w5q8qbhvwx32znvj3"))))
1611     (build-system perl-build-system)
1612     (propagated-inputs
1613      `(("perl-datetime" ,perl-datetime)
1614        ("perl-datetime-format-builder" ,perl-datetime-format-builder)
1615        ("perl-datetime-timezone" ,perl-datetime-timezone)
1616        ("perl-list-moreutils" ,perl-list-moreutils)
1617        ("perl-module-pluggable" ,perl-module-pluggable)
1618        ("perl-test-mocktime" ,perl-test-mocktime)))
1619     (home-page "http://search.cpan.org/dist/DateTime-Format-Flexible")
1620     (synopsis "Parse data/time strings")
1621     (description "DateTime::Format::Flexible attempts to take any string you
1622 give it and parse it into a DateTime object.")
1623     (license (package-license perl))))
1625 (define-public perl-datetime-format-ical
1626   (package
1627     (name "perl-datetime-format-ical")
1628     (version "0.09")
1629     (source
1630      (origin
1631        (method url-fetch)
1632        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1633                            "DateTime-Format-ICal-" version ".tar.gz"))
1634        (sha256
1635         (base32
1636          "0cvwk7pigj7czsp81z35h7prxvylkrlk2l0kwvq0v72ykx9zc2cb"))))
1637     (build-system perl-build-system)
1638     (native-inputs
1639      `(("perl-module-build" ,perl-module-build)))
1640     (propagated-inputs
1641      `(("perl-datetime" ,perl-datetime)
1642        ("perl-datetime-event-ical" ,perl-datetime-event-ical)
1643        ("perl-datetime-set" ,perl-datetime-set)
1644        ("perl-datetime-timezone" ,perl-datetime-timezone)
1645        ("perl-params-validate" ,perl-params-validate)))
1646     (home-page "http://search.cpan.org/dist/DateTime-Format-ICal")
1647     (synopsis "Parse and format iCal datetime and duration strings")
1648     (description "This module understands the ICal date/time and duration
1649 formats, as defined in RFC 2445.  It can be used to parse these formats in
1650 order to create the appropriate objects.")
1651     (license (package-license perl))))
1653 (define-public perl-datetime-format-natural
1654   (package
1655     (name "perl-datetime-format-natural")
1656     (version "1.02")
1657     (source
1658      (origin
1659        (method url-fetch)
1660        (uri (string-append "mirror://cpan/authors/id/S/SC/SCHUBIGER/"
1661                            "DateTime-Format-Natural-" version ".tar.gz"))
1662        (sha256
1663         (base32
1664          "1qq3adq1y08d0jlmwk9059s5d39hb26f3zjag099gjjyvs5c8yal"))))
1665     (build-system perl-build-system)
1666     (native-inputs
1667      `(("perl-module-build" ,perl-module-build)
1668        ("perl-module-util" ,perl-module-util)
1669        ("perl-test-mocktime" ,perl-test-mocktime)))
1670     (propagated-inputs
1671      `(("perl-boolean" ,perl-boolean)
1672        ("perl-clone" ,perl-clone)
1673        ("perl-date-calc" ,perl-date-calc)
1674        ("perl-date-calc-xs" ,perl-date-calc-xs)
1675        ("perl-datetime" ,perl-datetime)
1676        ("perl-datetime-timezone" ,perl-datetime-timezone)
1677        ("perl-list-moreutils" ,perl-list-moreutils)
1678        ("perl-params-validate" ,perl-params-validate)))
1679     (home-page "http://search.cpan.org/dist/DateTime-Format-Natural")
1680     (synopsis "Machine-readable date/time with natural parsing")
1681     (description "DateTime::Format::Natural takes a string with a human
1682 readable date/time and creates a machine readable one by applying natural
1683 parsing logic.")
1684     (license (package-license perl))))
1686 (define-public perl-datetime-format-strptime
1687   (package
1688     (name "perl-datetime-format-strptime")
1689     (version "1.56")
1690     (source
1691      (origin
1692        (method url-fetch)
1693        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1694                            "DateTime-Format-Strptime-" version ".tar.gz"))
1695        (sha256
1696         (base32
1697          "0a4bszmff16rw6fz1yr4v9001q9vxrdxnxkj9sqaln83b87rvxig"))))
1698     (build-system perl-build-system)
1699     (propagated-inputs
1700      `(("perl-datetime" ,perl-datetime)
1701        ("perl-datetime-locale" ,perl-datetime-locale)
1702        ("perl-datetime-timezone" ,perl-datetime-timezone)
1703        ("perl-params-validate" ,perl-params-validate)))
1704     (home-page "http://search.cpan.org/dist/DateTime-Format-Strptime")
1705     (synopsis "Parse and format strp and strf time patterns")
1706     (description "This module implements most of `strptime(3)`, the POSIX
1707 function that is the reverse of `strftime(3)`, for `DateTime`.  While
1708 `strftime` takes a `DateTime` and a pattern and returns a string, `strptime`
1709 takes a string and a pattern and returns the `DateTime` object associated.")
1710     (license artistic2.0)))
1712 (define-public perl-datetime-locale
1713   (package
1714     (name "perl-datetime-locale")
1715     (version "0.45")
1716     (source
1717      (origin
1718        (method url-fetch)
1719        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1720                            "DateTime-Locale-" version ".tar.gz"))
1721        (sha256
1722         (base32
1723          "175grkrxiv012n6ch3z1sip4zprcili6m5zqi3njdk5c1gdvi8ca"))))
1724     (build-system perl-build-system)
1725     (native-inputs
1726      `(("perl-module-build" ,perl-module-build)))
1727     (propagated-inputs
1728      `(("perl-list-moreutils" ,perl-list-moreutils)
1729        ("perl-params-validate" ,perl-params-validate)))
1730     (home-page "http://search.cpan.org/dist/DateTime-Locale")
1731     (synopsis "Localization support for DateTime.pm")
1732     (description "The DateTime::Locale modules provide localization data for
1733 the DateTime.pm class.")
1734     (license (package-license perl))))
1736 (define-public perl-datetime-timezone
1737   (package
1738     (name "perl-datetime-timezone")
1739     (version "1.86")
1740     (source
1741      (origin
1742        (method url-fetch)
1743        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1744                            "DateTime-TimeZone-" version ".tar.gz"))
1745        (sha256
1746         (base32
1747          "1aj5liy9as7yci2s9cqv9gqna5wggah8yg2jqrc89dnrin25s26z"))))
1748     (build-system perl-build-system)
1749     (native-inputs
1750      `(("perl-test-fatal" ,perl-test-fatal)
1751        ("perl-test-requires" ,perl-test-requires)))
1752     (propagated-inputs
1753      `(("perl-class-singleton" ,perl-class-singleton)
1754        ("perl-list-allutils" ,perl-list-allutils)
1755        ("perl-module-runtime" ,perl-module-runtime)
1756        ("perl-params-validate" ,perl-params-validate)
1757        ("perl-try-tiny" ,perl-try-tiny)))
1758     (home-page "http://search.cpan.org/dist/DateTime-TimeZone")
1759     (synopsis "Time zone object for Perl")
1760     (description "This class is the base class for all time zone objects.  A
1761 time zone is represented internally as a set of observances, each of which
1762 describes the offset from GMT for a given time period.  Note that without the
1763 DateTime module, this module does not do much.  It's primary interface is
1764 through a DateTime object, and most users will not need to directly use
1765 DateTime::TimeZone methods.")
1766     (license (package-license perl))))
1768 (define-public perl-datetimex-easy
1769   (package
1770     (name "perl-datetimex-easy")
1771     (version "0.089")
1772     (source
1773      (origin
1774        (method url-fetch)
1775        (uri (string-append "mirror://cpan/authors/id/R/RO/ROKR/"
1776                            "DateTimeX-Easy-" version ".tar.gz"))
1777        (sha256
1778         (base32
1779          "0ybs9175h4s39x8a23ap129cgqwmy6w7psa86194jq5cww1d5rhp"))))
1780     (build-system perl-build-system)
1781     (native-inputs
1782      `(("perl-test-most" ,perl-test-most)))
1783     (propagated-inputs
1784      `(("perl-datetime" ,perl-datetime)
1785        ("perl-datetime-format-flexible" ,perl-datetime-format-flexible)
1786        ("perl-datetime-format-ical" ,perl-datetime-format-ical)
1787        ("perl-datetime-format-natural" ,perl-datetime-format-natural)
1788        ("perl-timedate" ,perl-timedate)))
1789     (home-page "http://search.cpan.org/dist/DateTimeX-Easy")
1790     (synopsis "Parse date/time strings")
1791     (description "DateTimeX::Easy uses a variety of DateTime::Format packages
1792 to create DateTime objects, with some custom tweaks to smooth out the rough
1793 edges (mainly concerning timezone detection and selection).")
1794     (license (package-license perl))))
1796 (define-public perl-datetime-format-mail
1797   (package
1798     (name "perl-datetime-format-mail")
1799     (version "0.403")
1800     (source (origin
1801               (method url-fetch)
1802               (uri (string-append "mirror://cpan/authors/id/B/BO/BOOK/"
1803                                   "DateTime-Format-Mail-" version ".tar.gz"))
1804               (sha256
1805                (base32
1806                 "1c7wapbi9g9p2za52l3skhh31vg4da5kx2yfqzsqyf3p8iff7y4d"))))
1807     (build-system perl-build-system)
1808     (inputs
1809      `(("perl-datetime" ,perl-datetime)
1810        ("perl-params-validate" ,perl-params-validate)))
1811     (home-page "http://search.cpan.org/dist/DateTime-Format-Mail")
1812     (synopsis "Convert between DateTime and RFC2822/822 formats")
1813     (description "RFCs 2822 and 822 specify date formats to be used by email.
1814 This module parses and emits such dates.")
1815     (license (package-license perl))))
1817 (define-public perl-datetime-format-w3cdtf
1818   (package
1819     (name "perl-datetime-format-w3cdtf")
1820     (version "0.06")
1821     (source (origin
1822               (method url-fetch)
1823               (uri (string-append "mirror://cpan/authors/id/G/GW/GWILLIAMS/"
1824                                   "DateTime-Format-W3CDTF-" version ".tar.gz"))
1825               (sha256
1826                (base32
1827                 "0ymxizwd2zfx8b4bmrmv4k439qwfwf2522jrvn4hlay5v6z459dr"))))
1828     (build-system perl-build-system)
1829     (inputs
1830      `(("perl-datetime" ,perl-datetime)))
1831     (native-inputs
1832      `(("perl-test-pod" ,perl-test-pod)
1833        ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
1834     (home-page "http://search.cpan.org/dist/DateTime-Format-W3CDTF")
1835     (synopsis "Parse and format W3CDTF datetime strings")
1836     (description
1837      "This module understands the W3CDTF date/time format, an ISO 8601 profile,
1838 defined at https://www.w3.org/TR/NOTE-datetime.  This format is the native date
1839 format of RSS 1.0.  It can be used to parse these formats in order to create
1840 the appropriate objects.")
1841     (license (package-license perl))))
1843 (define-public perl-devel-caller
1844   (package
1845     (name "perl-devel-caller")
1846     (version "2.06")
1847     (source
1848      (origin
1849        (method url-fetch)
1850        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1851                            "Devel-Caller-" version ".tar.gz"))
1852        (sha256
1853         (base32
1854          "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
1855     (build-system perl-build-system)
1856     (propagated-inputs
1857      `(("perl-padwalker" ,perl-padwalker)))
1858     (home-page "http://search.cpan.org/dist/Devel-Caller")
1859     (synopsis "Meatier version of caller")
1860     (description "Devel::Caller provides meatier version of caller.")
1861     (license (package-license perl))))
1863 (define-public perl-devel-checkbin
1864   (package
1865     (name "perl-devel-checkbin")
1866     (version "0.02")
1867     (source
1868      (origin
1869        (method url-fetch)
1870        (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1871                            "Devel-CheckBin-" version ".tar.gz"))
1872        (sha256
1873         (base32
1874          "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
1875     (build-system perl-build-system)
1876     (native-inputs `(("perl-module-build" ,perl-module-build)))
1877     (home-page "http://search.cpan.org/dist/Devel-CheckBin")
1878     (synopsis "Check that a command is available")
1879     (description "Devel::CheckBin is a perl module that checks whether a
1880 particular command is available.")
1881     (license (package-license perl))))
1883 (define-public perl-devel-globaldestruction
1884   (package
1885     (name "perl-devel-globaldestruction")
1886     (version "0.13")
1887     (source
1888      (origin
1889        (method url-fetch)
1890        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1891                            "Devel-GlobalDestruction-" version ".tar.gz"))
1892        (sha256
1893         (base32
1894          "0qn4iszgylnxjdkb6430f6a3ci7bcx9ih1az6bd5cbij1pf2965j"))))
1895     (build-system perl-build-system)
1896     (propagated-inputs
1897      `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
1898     (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction")
1899     (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
1900     (description "Devel::GlobalDestruction provides a function returning the
1901 equivalent of \"$@{^GLOBAL_PHASE@} eq 'DESTRUCT'\" for older perls.")
1902     (license (package-license perl))))
1904 (define-public perl-devel-lexalias
1905   (package
1906     (name "perl-devel-lexalias")
1907     (version "0.05")
1908     (source
1909      (origin
1910        (method url-fetch)
1911        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1912                            "Devel-LexAlias-" version ".tar.gz"))
1913        (sha256
1914         (base32
1915          "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
1916     (build-system perl-build-system)
1917     (propagated-inputs
1918      `(("perl-devel-caller" ,perl-devel-caller)))
1919     (home-page "http://search.cpan.org/dist/Devel-LexAlias")
1920     (synopsis "Alias lexical variables")
1921     (description "Devel::LexAlias provides the ability to alias a lexical
1922 variable in a subroutines scope to one of your choosing.")
1923     (license (package-license perl))))
1925 (define-public perl-devel-overloadinfo
1926   (package
1927     (name "perl-devel-overloadinfo")
1928     (version "0.002")
1929     (source
1930      (origin
1931        (method url-fetch)
1932        (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1933                            "Devel-OverloadInfo-" version ".tar.gz"))
1934        (sha256
1935         (base32
1936          "14gzjlsqhypqp0szqj6152qfn69snzydgk1yk6bji5zimzv86qyy"))))
1937     (build-system perl-build-system)
1938     (propagated-inputs
1939      `(("perl-package-stash" ,perl-package-stash)
1940        ("perl-sub-identify" ,perl-sub-identify)
1941        ("perl-mro-compat" ,perl-mro-compat)))
1942     (home-page "http://search.cpan.org/dist/Devel-OverloadInfo")
1943     (synopsis "Introspect overloaded operators")
1944     (description "Devel::OverloadInfo returns information about overloaded
1945 operators for a given class (or object), including where in the inheritance
1946 hierarchy the overloads are declared and where the code implementing it is.")
1947     (license (package-license perl))))
1949 (define-public perl-devel-partialdump
1950   (package
1951     (name "perl-devel-partialdump")
1952     (version "0.17")
1953     (source
1954      (origin
1955        (method url-fetch)
1956        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1957                            "Devel-PartialDump-" version ".tar.gz"))
1958        (sha256
1959         (base32
1960          "0nr3qa68x4yp219kd17j1ks9c95qc9agfvz7ddnpn8p78f3kgwfn"))))
1961     (build-system perl-build-system)
1962     (native-inputs
1963      `(("perl-module-build-tiny" ,perl-module-build-tiny)
1964        ("perl-test-warn" ,perl-test-warn)
1965        ("perl-test-simple" ,perl-test-simple)))
1966     (propagated-inputs
1967      `(("perl-class-tiny" ,perl-class-tiny)
1968        ("perl-sub-exporter" ,perl-sub-exporter)
1969        ("perl-namespace-clean" ,perl-namespace-clean)))
1970     (home-page "http://search.cpan.org/dist/Devel-PartialDump")
1971     (synopsis "Partial dumping of data structures")
1972     (description "This module is a data dumper optimized for logging of
1973 arbitrary parameters.")
1974     (license (package-license perl))))
1976 (define-public perl-devel-stacktrace
1977   (package
1978     (name "perl-devel-stacktrace")
1979     (version "2.00")
1980     (source
1981      (origin
1982        (method url-fetch)
1983        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1984                            "Devel-StackTrace-" version ".tar.gz"))
1985        (sha256
1986         (base32
1987          "1r65iq5i11xh0r0kp3pdycydnd3kxpdmxnp0hq9hx9lr60kygsqx"))))
1988     (build-system perl-build-system)
1989     (home-page "http://search.cpan.org/dist/Devel-StackTrace")
1990     (synopsis "Object representing a stack trace")
1991     (description "The Devel::StackTrace module contains two classes,
1992 Devel::StackTrace and Devel::StackTrace::Frame.  These objects encapsulate the
1993 information that can be retrieved via Perl's caller() function, as well as
1994 providing a simple interface to this data.")
1995     (license artistic2.0)))
1997 (define-public perl-devel-stacktrace-ashtml
1998   (package
1999     (name "perl-devel-stacktrace-ashtml")
2000     (version "0.14")
2001     (source
2002      (origin
2003        (method url-fetch)
2004        (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2005                            "Devel-StackTrace-AsHTML-" version ".tar.gz"))
2006        (sha256
2007         (base32
2008          "0yl296y0qfwybwjgqjzd4j2w2bj5a2nz342qqgxchnf5bqynl1c9"))))
2009     (build-system perl-build-system)
2010     (propagated-inputs
2011      `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
2012     (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML")
2013     (synopsis "Displays stack trace in HTML")
2014     (description "Devel::StackTrace::AsHTML adds as_html method to
2015 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
2016 snippet context and function parameters.  If you call it on an instance of
2017 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
2018 each stack frame.")
2019     (license (package-license perl))))
2021 (define-public perl-devel-symdump
2022   (package
2023     (name "perl-devel-symdump")
2024     (version "2.17")
2025     (source
2026      (origin
2027        (method url-fetch)
2028        (uri (string-append "mirror://cpan/authors/id/A/AN/ANDK/"
2029                            "Devel-Symdump-" version ".tar.gz"))
2030        (sha256
2031         (base32
2032          "0qkfjk7bm7jwn9d9qaldg298zvkqh2f19fgvfh5j1rp66mwzql1c"))))
2033     (build-system perl-build-system)
2034     (home-page "http://search.cpan.org/dist/Devel-Symdump")
2035     (synopsis "Dump symbol names or the symbol table")
2036     (description "Devel::Symdump provides access to the perl symbol table.")
2037     (license (package-license perl))))
2039 (define-public perl-digest-hmac
2040   (package
2041     (name "perl-digest-hmac")
2042     (version "1.03")
2043     (source
2044      (origin
2045        (method url-fetch)
2046        (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2047                            "Digest-HMAC-" version ".tar.gz"))
2048        (sha256
2049         (base32
2050          "0naavabbm1c9zgn325ndy66da4insdw9l3mrxwxdfi7i7xnjrirv"))))
2051     (build-system perl-build-system)
2052     (home-page "http://search.cpan.org/dist/Digest-HMAC")
2053     (synopsis "Keyed-Hashing for Message Authentication")
2054     (description "The Digest::HMAC module follows the common Digest::
2055 interface for the RFC 2104 HMAC mechanism.")
2056     (license (package-license perl))))
2058 (define-public perl-digest-sha1
2059   (package
2060     (name "perl-digest-sha1")
2061     (version "2.13")
2062     (source (origin
2063               (method url-fetch)
2064               (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2065                                   "Digest-SHA1-" version ".tar.gz"))
2066               (sha256
2067                (base32
2068                 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
2069     (build-system perl-build-system)
2070     (synopsis "Perl implementation of the SHA-1 message digest algorithm")
2071     (description
2072      "This package provides 'Digest::SHA1', an implementation of the NIST
2073 SHA-1 message digest algorithm for use by Perl programs.")
2074     (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
2075                               version "/SHA1.pm"))
2076     (license (package-license perl))))
2078 (define-public perl-dist-checkconflicts
2079   (package
2080     (name "perl-dist-checkconflicts")
2081     (version "0.11")
2082     (source (origin
2083               (method url-fetch)
2084               (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2085                                   "Dist-CheckConflicts-" version ".tar.gz"))
2086               (sha256
2087                (base32
2088                 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
2089     (build-system perl-build-system)
2090     (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
2091     (propagated-inputs
2092      `(("perl-module-runtime" ,perl-module-runtime)))
2093     (home-page "http://search.cpan.org/dist/Dist-CheckConflicts")
2094     (synopsis "Declare version conflicts for your dist")
2095     (description "This module allows you to specify conflicting versions of
2096 modules separately and deal with them after the module is done installing.")
2097     (license (package-license perl))))
2099 (define-public perl-env-path
2100   (package
2101     (name "perl-env-path")
2102     (version "0.19")
2103     (source
2104      (origin
2105        (method url-fetch)
2106        (uri (string-append
2107              "mirror://cpan/authors/id/D/DS/DSB/Env-Path-"
2108              version
2109              ".tar.gz"))
2110        (sha256
2111         (base32
2112          "1qhmj15a66h90pjl2dgnxsb9jj3b1r5mpvnr87cafcl8g69z0jr4"))))
2113     (build-system perl-build-system)
2114     (home-page "http://search.cpan.org/dist/Env-Path")
2115     (synopsis "Advanced operations on path variables")
2116     (description "@code{Env::Path} presents an object-oriented interface to
2117 path variables, defined as that subclass of environment variables which name
2118 an ordered list of file system elements separated by a platform-standard
2119 separator.")
2120     (license (package-license perl))))
2122 (define-public perl-error
2123   (package
2124     (name "perl-error")
2125     (version "0.17023")
2126     (source (origin
2127               (method url-fetch)
2128               (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
2129                                   "Error-" version ".tar.gz"))
2130               (sha256
2131                (base32
2132                 "0dsxic78mxy30qvbbdzfyp501hbkwhnbmafqfxipr0yqfy8f2j5g"))))
2133     (build-system perl-build-system)
2134     (native-inputs `(("perl-module-build" ,perl-module-build)))
2135     (home-page "http://search.cpan.org/dist/Error")
2136     (synopsis "OO-ish Error/Exception handling for Perl")
2137     (description "The Error package provides two interfaces.  Firstly Error
2138 provides a procedural interface to exception handling.  Secondly Error is a
2139 base class for errors/exceptions that can either be thrown, for subsequent
2140 catch, or can simply be recorded.")
2141     (license (package-license perl))))
2143 (define-public perl-eval-closure
2144   (package
2145     (name "perl-eval-closure")
2146     (version "0.14")
2147     (source
2148      (origin
2149        (method url-fetch)
2150        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2151                            "Eval-Closure-" version ".tar.gz"))
2152        (sha256
2153         (base32
2154          "1bcc47r6zm3hfr6ccsrs72kgwxm3wkk07mgnpsaxi67cypr482ga"))))
2155     (build-system perl-build-system)
2156     (native-inputs
2157      `(("perl-test-fatal" ,perl-test-fatal)
2158        ("perl-test-requires" ,perl-test-requires)))
2159     (propagated-inputs
2160      `(("perl-devel-lexalias" ,perl-devel-lexalias)))
2161     (home-page "http://search.cpan.org/dist/Eval-Closure")
2162     (synopsis "Safely and cleanly create closures via string eval")
2163     (description "String eval is often used for dynamic code generation.  For
2164 instance, Moose uses it heavily, to generate inlined versions of accessors and
2165 constructors, which speeds code up at runtime by a significant amount.  String
2166 eval is not without its issues however - it's difficult to control the scope
2167 it's used in (which determines which variables are in scope inside the eval),
2168 and it's easy to miss compilation errors, since eval catches them and sticks
2169 them in $@@ instead.  This module attempts to solve these problems.  It
2170 provides an eval_closure function, which evals a string in a clean
2171 environment, other than a fixed list of specified variables.  Compilation
2172 errors are rethrown automatically.")
2173     (license (package-license perl))))
2175 (define-public perl-exception-class
2176   (package
2177     (name "perl-exception-class")
2178     (version "1.39")
2179     (source
2180      (origin
2181        (method url-fetch)
2182        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2183                            "Exception-Class-" version ".tar.gz"))
2184        (sha256
2185         (base32
2186          "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
2187     (build-system perl-build-system)
2188     (propagated-inputs
2189      `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
2190        ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
2191     (home-page "http://search.cpan.org/dist/Exception-Class")
2192     (synopsis "Allows you to declare real exception classes in Perl")
2193     (description "Exception::Class allows you to declare exception hierarchies
2194 in your modules in a \"Java-esque\" manner.")
2195     (license (package-license perl))))
2197 (define-public perl-exporter-lite
2198   (package
2199     (name "perl-exporter-lite")
2200     (version "0.08")
2201     (source (origin
2202               (method url-fetch)
2203               (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
2204                                   "Exporter-Lite-" version ".tar.gz"))
2205               (sha256
2206                (base32
2207                 "1hns15imih8z2h6zv3m1wwmv9fiysacsb52y94v6zf2cmw4kjny0"))))
2208     (build-system perl-build-system)
2209     (synopsis "Lightweight exporting of functions and variables")
2210     (description
2211      "Exporter::Lite is an alternative to Exporter, intended to provide a
2212 lightweight subset of the most commonly-used functionality.  It supports
2213 import(), @@EXPORT and @@EXPORT_OK and not a whole lot else.")
2214     (home-page "http://search.cpan.org/dist/Exporter-Lite")
2215     (license (package-license perl))))
2217 (define-public perl-exporter-tiny
2218   (package
2219     (name "perl-exporter-tiny")
2220     (version "0.042")
2221     (source
2222      (origin
2223        (method url-fetch)
2224        (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
2225                            "Exporter-Tiny-" version ".tar.gz"))
2226        (sha256
2227         (base32
2228          "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
2229     (build-system perl-build-system)
2230     (home-page "http://search.cpan.org/dist/Exporter-Tiny")
2231     (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
2232     (description "Exporter::Tiny supports many of Sub::Exporter's
2233 external-facing features including renaming imported functions with the `-as`,
2234 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
2235 and alternative installers with the `installler` option.  But it's written in
2236 only about 40% as many lines of code and with zero non-core dependencies.")
2237     (license (package-license perl))))
2239 (define-public perl-extutils-installpaths
2240   (package
2241     (name "perl-extutils-installpaths")
2242     (version "0.010")
2243     (source
2244      (origin
2245        (method url-fetch)
2246        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2247                            "ExtUtils-InstallPaths-" version ".tar.gz"))
2248        (sha256
2249         (base32
2250          "0mi1px42in7i442jqncg3gmxd5zn7sw5b2s85h690rz433qvyk6i"))))
2251     (build-system perl-build-system)
2252     (propagated-inputs
2253      `(("perl-extutils-config" ,perl-extutils-config)))
2254     (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths")
2255     (synopsis "Build.PL install path logic made easy")
2256     (description "This module tries to make install path resolution as easy as
2257 possible.")
2258     (license (package-license perl))))
2260 (define-public perl-extutils-config
2261   (package
2262     (name "perl-extutils-config")
2263     (version "0.008")
2264     (source
2265      (origin
2266        (method url-fetch)
2267        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2268                            "ExtUtils-Config-" version ".tar.gz"))
2269        (sha256
2270         (base32
2271          "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
2272     (build-system perl-build-system)
2273     (home-page "http://search.cpan.org/dist/ExtUtils-Config")
2274     (synopsis "Wrapper for perl's configuration")
2275     (description "ExtUtils::Config is an abstraction around the %Config hash.
2276 By itself it is not a particularly interesting module by any measure, however
2277 it ties together a family of modern toolchain modules.")
2278     (license (package-license perl))))
2280 (define-public perl-extutils-helpers
2281   (package
2282     (name "perl-extutils-helpers")
2283     (version "0.022")
2284     (source
2285      (origin
2286        (method url-fetch)
2287        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2288                            "ExtUtils-Helpers-" version ".tar.gz"))
2289        (sha256
2290         (base32
2291          "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
2292     (build-system perl-build-system)
2293     (home-page "http://search.cpan.org/dist/ExtUtils-Helpers")
2294     (synopsis "Various portability utilities for module builders")
2295     (description "This module provides various portable helper functions for
2296 module building modules.")
2297     (license (package-license perl))))
2299 (define-public perl-file-changenotify
2300   (package
2301     (name "perl-file-changenotify")
2302     (version "0.24")
2303     (source
2304      (origin
2305        (method url-fetch)
2306        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2307                            "File-ChangeNotify-" version ".tar.gz"))
2308        (sha256
2309         (base32
2310          "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
2311     (build-system perl-build-system)
2312     (native-inputs
2313      `(("perl-module-build" ,perl-module-build)
2314        ("perl-test-exception" ,perl-test-exception)))
2315     (propagated-inputs
2316      `(("perl-class-load" ,perl-class-load)
2317        ("perl-list-moreutils" ,perl-list-moreutils)
2318        ("perl-module-pluggable" ,perl-module-pluggable)
2319        ("perl-moose" ,perl-moose)
2320        ("perl-moosex-params-validate" ,perl-moosex-params-validate)
2321        ("perl-moosex-semiaffordanceaccessor"
2322         ,perl-moosex-semiaffordanceaccessor)
2323        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2324     (home-page "http://search.cpan.org/dist/File-ChangeNotify")
2325     (synopsis "Watch for changes to files")
2326     (description "This module provides a class to monitor a directory for
2327 changes made to any file.")
2328     (license artistic2.0)))
2330 (define-public perl-file-copy-recursive
2331   (package
2332     (name "perl-file-copy-recursive")
2333     (version "0.38")
2334     (source
2335      (origin
2336        (method url-fetch)
2337        (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
2338                            "File-Copy-Recursive-" version ".tar.gz"))
2339        (sha256
2340         (base32
2341          "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
2342     (build-system perl-build-system)
2343     (home-page "http://search.cpan.org/dist/File-Copy-Recursive")
2344     (synopsis "Recursively copy files and directories")
2345     (description "This module has 3 functions: one to copy files only, one to
2346 copy directories only, and one to do either depending on the argument's
2347 type.")
2348     (license (package-license perl))))
2350 (define-public perl-file-find-rule
2351   (package
2352     (name "perl-file-find-rule")
2353     (version "0.33")
2354     (source
2355      (origin
2356        (method url-fetch)
2357        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2358                            "File-Find-Rule-" version ".tar.gz"))
2359        (sha256
2360         (base32
2361          "0w73b4jr2fcrd74a1w3b2jryq3mqzc8z5mk7ia9p85xn3qmpa5r4"))))
2362     (build-system perl-build-system)
2363     (propagated-inputs
2364      `(("perl-text-glob" ,perl-text-glob)
2365        ("perl-number-compare" ,perl-number-compare)))
2366     (home-page "http://search.cpan.org/dist/File-Find-Rule")
2367     (synopsis "Alternative interface to File::Find")
2368     (description "File::Find::Rule is a friendlier interface to File::Find.
2369 It allows you to build rules which specify the desired files and
2370 directories.")
2371     (license (package-license perl))))
2373 (define-public perl-file-find-rule-perl
2374   (package
2375     (name "perl-file-find-rule-perl")
2376     (version "1.13")
2377     (source
2378      (origin
2379        (method url-fetch)
2380        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2381                            "File-Find-Rule-Perl-" version ".tar.gz"))
2382        (sha256
2383         (base32
2384          "0xi4ppqr6r57l5xlkwxpvkvpb9p7dvz053d76v2m9pwdfxqb5v6j"))))
2385     (build-system perl-build-system)
2386     (propagated-inputs
2387      `(("perl-file-find-rule" ,perl-file-find-rule)
2388        ("perl-params-util" ,perl-params-util)
2389        ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
2390     (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl")
2391     (synopsis "Common rules for searching for Perl things")
2392     (description "File::Find::Rule::Perl provides methods for finding various
2393 types Perl-related files, or replicating search queries run on a distribution
2394 in various parts of the CPAN ecosystem.")
2395     (license (package-license perl))))
2397 (define-public perl-file-grep
2398   (package
2399     (name "perl-file-grep")
2400     (version "0.02")
2401     (source
2402      (origin
2403        (method url-fetch)
2404        (uri (string-append
2405              "mirror://cpan/authors/id/M/MN/MNEYLON/File-Grep-"
2406              version
2407              ".tar.gz"))
2408        (sha256
2409         (base32
2410          "0cjnz3ak7s3x3y3q48xb9ka2q9d7xvch58vy80hqa9xn9qkiabj6"))))
2411     (build-system perl-build-system)
2412     (home-page "http://search.cpan.org/dist/File-Grep")
2413     (synopsis "Matches patterns in a series of files")
2414     (description "@code{File::Grep} provides similar functionality as perl's
2415 builtin @code{grep}, @code{map}, and @code{foreach} commands, but iterating
2416 over a passed filelist instead of arrays.  While trivial, this module can
2417 provide a quick dropin when such functionality is needed.")
2418     (license (package-license perl))))
2420 (define-public perl-file-homedir
2421   (package
2422     (name "perl-file-homedir")
2423     (version "1.00")
2424     (source
2425      (origin
2426        (method url-fetch)
2427        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2428                            "File-HomeDir-" version ".tar.gz"))
2429        (sha256
2430         (base32
2431          "0hvihydd0y4gdxafi8dpybk9ll8q35bz5ycibfic0gh92cslzfc5"))))
2432     (build-system perl-build-system)
2433     (propagated-inputs
2434      `(("perl-file-which" ,perl-file-which)
2435        ("perl-file-temp" ,perl-file-temp)))
2436     (arguments `(#:tests? #f))          ;Not appropriate for chroot
2437     (home-page "http://search.cpan.org/dist/File-HomeDir")
2438     (synopsis "Find your home and other directories on any platform")
2439     (description "File::HomeDir is a module for locating the directories that
2440 are \"owned\" by a user (typically your user) and to solve the various issues
2441 that arise trying to find them consistently across a wide variety of
2442 platforms.")
2443     (license (package-license perl))))
2445 (define-public perl-file-path
2446   (package
2447     (name "perl-file-path")
2448     (version "2.12")
2449     (source
2450      (origin
2451        (method url-fetch)
2452        (uri (string-append
2453              "mirror://cpan/authors/id/R/RI/RICHE/File-Path-"
2454              version
2455              ".tar.gz"))
2456        (sha256
2457         (base32
2458          "0znihrlcnlpa0ziml0hkq9s59p1bjd2a6khgx2accdf16w6imxmv"))))
2459     (build-system perl-build-system)
2460     (home-page "http://search.cpan.org/dist/File-Path")
2461     (synopsis "Create or remove directory trees")
2462     (description "This module provide a convenient way to create directories
2463 of arbitrary depth and to delete an entire directory subtree from the
2464 file system.")
2465     (license (package-license perl))))
2467 (define-public perl-file-list
2468   (package
2469     (name "perl-file-list")
2470     (version "0.3.1")
2471     (source (origin
2472              (method url-fetch)
2473              (uri (string-append
2474                    "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
2475                    version ".tar.gz"))
2476              (sha256
2477               (base32
2478                "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
2479     (build-system perl-build-system)
2480     (arguments
2481      `(#:phases
2482        (alist-cons-after
2483         'unpack 'cd
2484         (lambda* _
2485          (chdir "List"))
2486        %standard-phases)))
2487     (license (package-license perl))
2488     (synopsis "Perl extension for crawling directory trees and compiling
2489 lists of files")
2490     (description
2491      "The File::List module crawls the directory tree starting at the
2492 provided base directory and can return files (and/or directories if desired)
2493 matching a regular expression.")
2494     (home-page "http://search.cpan.org/~dopacki/File-List/")))
2496 (define-public perl-file-remove
2497   (package
2498     (name "perl-file-remove")
2499     (version "1.52")
2500     (source
2501      (origin
2502        (method url-fetch)
2503        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2504                            "File-Remove-" version ".tar.gz"))
2505        (sha256
2506         (base32
2507          "1p8bal9qhwkjbghivxn1d5m3qdj2qwm1agrjbmakm6la9dbxqm21"))))
2508     (build-system perl-build-system)
2509     (home-page "http://search.cpan.org/dist/File-Remove")
2510     (synopsis "Remove files and directories in Perl")
2511     (description "File::Remove::remove removes files and directories.  It acts
2512 like /bin/rm, for the most part.  Although \"unlink\" can be given a list of
2513 files, it will not remove directories; this module remedies that.  It also
2514 accepts wildcards, * and ?, as arguments for file names.")
2515     (license (package-license perl))))
2517 (define-public perl-file-sharedir
2518   (package
2519     (name "perl-file-sharedir")
2520     (version "1.102")
2521     (source
2522      (origin
2523        (method url-fetch)
2524        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2525                            "File-ShareDir-" version ".tar.gz"))
2526        (sha256
2527         (base32
2528          "04blqn4cms9zjmhlfvwyx6mrglaaq1mmy4xwv7xqf9c8fjwk8wvw"))))
2529     (build-system perl-build-system)
2530     (native-inputs
2531      `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
2532     (propagated-inputs
2533      `(("perl-class-inspector" ,perl-class-inspector)))
2534     (home-page "http://search.cpan.org/dist/File-ShareDir")
2535     (synopsis "Locate per-dist and per-module shared files")
2536     (description "The intent of File::ShareDir is to provide a companion to
2537 Class::Inspector and File::HomeDir.  Quite often you want or need your Perl
2538 module to have access to a large amount of read-only data that is stored on
2539 the file-system at run-time.  Once the files have been installed to the
2540 correct directory, you can use File::ShareDir to find your files again after
2541 the installation.")
2542     (license (package-license perl))))
2544 (define-public perl-file-sharedir-install
2545   (package
2546     (name "perl-file-sharedir-install")
2547     (version "0.10")
2548     (source
2549      (origin
2550        (method url-fetch)
2551        (uri (string-append "mirror://cpan/authors/id/G/GW/GWYN/"
2552                            "File-ShareDir-Install-" version ".tar.gz"))
2553        (sha256
2554         (base32
2555          "1xz60bi7x8755lq24rx7y1jkyk3icssn7s55z665mysdxhfzg2kh"))))
2556     (build-system perl-build-system)
2557     (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
2558     (synopsis "Install shared files")
2559     (description "File::ShareDir::Install allows you to install read-only data
2560 files from a distribution.  It is a companion module to File::ShareDir, which
2561 allows you to locate these files after installation.")
2562     (license (package-license perl))))
2564 (define-public perl-file-slurp
2565   (package
2566     (name "perl-file-slurp")
2567     (version "9999.19")
2568     (source
2569      (origin
2570        (method url-fetch)
2571        (uri (string-append "mirror://cpan/authors/id/U/UR/URI/"
2572                            "File-Slurp-" version ".tar.gz"))
2573        (sha256
2574         (base32
2575          "0hrn4nipwx40d6ji8ssgr5nw986z9iqq8cn0kdpbszh9jplynaff"))))
2576     (build-system perl-build-system)
2577     (home-page "http://search.cpan.org/dist/File-Slurp")
2578     (synopsis "Reading/Writing/Modifying of complete files")
2579     (description "File::Slurp provides subroutines to read or write entire
2580 files with a simple call.  It also has a subroutine for reading the list of
2581 file names in a directory.")
2582     (license (package-license perl))))
2584 (define-public perl-file-slurper
2585   (package
2586     (name "perl-file-slurper")
2587     (version "0.008")
2588     (source
2589      (origin
2590        (method url-fetch)
2591        (uri (string-append
2592              "mirror://cpan/authors/id/L/LE/LEONT/File-Slurper-"
2593              version
2594              ".tar.gz"))
2595        (sha256
2596         (base32
2597          "0cyjspspms6zyjcqz9v18dbs574g085h2jzjh41xvsrc1qa8bxhh"))))
2598     (build-system perl-build-system)
2599     (propagated-inputs
2600      `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)))
2601     (home-page "http://search.cpan.org/dist/File-Slurper")
2602     (synopsis "Simple, sane and efficient module to slurp a file")
2603     (description "This module provides functions for fast and correct file
2604 slurping and spewing.  All functions are optionally exported.")
2605     (license (package-license perl))))
2607 (define-public perl-file-slurp-tiny
2608   (package
2609     (name "perl-file-slurp-tiny")
2610     (version "0.004")
2611     (source (origin
2612               (method url-fetch)
2613               (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2614                                   "File-Slurp-Tiny-" version ".tar.gz"))
2615               (sha256
2616                (base32
2617                 "07kzfmibl43dq4c803f022g2rcfv4nkjgipxclz943mzxaz9aaa5"))))
2618     (build-system perl-build-system)
2619     (home-page "http://search.cpan.org/dist/File-Slurp-Tiny")
2620     (synopsis "Simple file reader and writer")
2621     (description
2622      "This module provides functions for fast reading and writing of files.")
2623     (license (package-license perl))))
2625 (define-public perl-file-temp
2626   (package
2627     (name "perl-file-temp")
2628     (version "0.2304")
2629     (source
2630      (origin
2631        (method url-fetch)
2632        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
2633                            "File-Temp-" version ".tar.gz"))
2634        (sha256
2635         (base32
2636          "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
2637     (build-system perl-build-system)
2638     (propagated-inputs
2639      `(("perl-parent" ,perl-parent)))
2640     (home-page "http://search.cpan.org/dist/File-Temp")
2641     (synopsis "Return name and handle of a temporary file safely")
2642     (description "File::Temp can be used to create and open temporary files in
2643 a safe way.")
2644     (license (package-license perl))))
2646 (define-public perl-file-which
2647   (package
2648     (name "perl-file-which")
2649     (version "1.09")
2650     (source (origin
2651               (method url-fetch)
2652               (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2653                                   "File-Which-" version ".tar.gz"))
2654               (sha256
2655                (base32
2656                 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
2657     (build-system perl-build-system)
2658     (native-inputs `(("test-script" ,perl-test-script)))
2659     (synopsis "Portable implementation of the `which' utility")
2660     (description
2661      "File::Which was created to be able to get the paths to executable
2662 programs on systems under which the `which' program wasn't implemented in the
2663 shell.")
2664     (home-page (string-append "http://search.cpan.org/~adamk/"
2665                               "File-Which-" version))
2666     (license (package-license perl))))
2668 (define-public perl-file-zglob
2669   (package
2670     (name "perl-file-zglob")
2671     (version "0.11")
2672     (source (origin
2673               (method url-fetch)
2674               (uri (string-append
2675                     "mirror://cpan/authors/id/T/TO/TOKUHIROM/File-Zglob-"
2676                     version ".tar.gz"))
2677               (sha256
2678                (base32
2679                 "16v61rn0yimpv5kp6b20z2f1c93n5kpsyjvr0gq4w2dc43gfvc8w"))))
2680     (build-system perl-build-system)
2681     (home-page "http://search.cpan.org/dist/File-Zglob")
2682     (synopsis "Extended Unix style glob functionality")
2683     (description "@code{File::Zglob} provides a traditional Unix @code{glob}
2684 functionality; it returns a list of file names that match the given pattern.
2685 For instance, it supports the @code{**/*.pm} form.")
2686     (license (package-license perl))))
2688 (define-public perl-getopt-long
2689   (package
2690     (name "perl-getopt-long")
2691     (version "v2.49.1")
2692     (source
2693      (origin
2694        (method url-fetch)
2695        (uri (string-append "mirror://cpan/authors/id/J/JV/JV/"
2696                            "Getopt-Long-" (substring version 1) ".tar.gz"))
2697        (sha256
2698         (base32
2699          "0bw8gbhj8s5gmkqvs3m7pk9arqhgqssrby4yimh29ah9alix9ylq"))))
2700     (build-system perl-build-system)
2701     (home-page "http://search.cpan.org/dist/Getopt-Long")
2702     (synopsis "Module to handle parsing command line options")
2703     (description "The @code{Getopt::Long} module implements an extended getopt
2704 function called @code{GetOptions()}.  It parses the command line from
2705 @code{ARGV}, recognizing and removing specified options and their possible
2706 values.
2708 This function adheres to the POSIX syntax for command line options, with GNU
2709 extensions.  In general, this means that options have long names instead of
2710 single letters, and are introduced with a double dash \"--\".  Support for
2711 bundling of command line options, as was the case with the more traditional
2712 single-letter approach, is provided but not enabled by default.")
2713     ;; Can be used with either license.
2714     (license (list (package-license perl) gpl2+))))
2716 (define-public perl-getopt-long-descriptive
2717   (package
2718     (name "perl-getopt-long-descriptive")
2719     (version "0.098")
2720     (source
2721      (origin
2722        (method url-fetch)
2723        (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
2724                            "Getopt-Long-Descriptive-" version ".tar.gz"))
2725        (sha256
2726         (base32
2727          "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
2728     (build-system perl-build-system)
2729     (native-inputs
2730      `(("perl-test-fatal" ,perl-test-fatal)
2731        ("perl-test-warnings" ,perl-test-warnings)))
2732     (propagated-inputs
2733      `(("perl-params-validate" ,perl-params-validate)
2734        ("perl-sub-exporter" ,perl-sub-exporter)))
2735     (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
2736     (synopsis "Getopt::Long, but simpler and more powerful")
2737     (description "Getopt::Long::Descriptive is yet another Getopt library.
2738 It's built atop Getopt::Long, and gets a lot of its features, but tries to
2739 avoid making you think about its huge array of options.  It also provides
2740 usage (help) messages, data validation, and a few other useful features.")
2741     (license (package-license perl))))
2743 (define-public perl-getopt-tabular
2744   (package
2745     (name "perl-getopt-tabular")
2746     (version "0.3")
2747     (source (origin
2748               (method url-fetch)
2749               (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
2750                                   "Getopt-Tabular-" version ".tar.gz"))
2751               (sha256
2752                (base32
2753                 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
2754     (build-system perl-build-system)
2755     (synopsis "Table-driven argument parsing for Perl")
2756     (description
2757      "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
2758 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
2759     (home-page (string-append "http://search.cpan.org/~gward/"
2760                               "Getopt-Tabular-" version))
2761     (license (package-license perl))))
2763 (define-public perl-graph
2764   (package
2765     (name "perl-graph")
2766     (version "0.9704")
2767     (source
2768      (origin
2769        (method url-fetch)
2770        (uri (string-append
2771              "mirror://cpan/authors/id/J/JH/JHI/Graph-"
2772              version
2773              ".tar.gz"))
2774        (sha256
2775         (base32
2776          "099a1gca0wj5zs0cffncjqp2mjrdlk9i6325ks89ml72gfq8wpij"))))
2777     (build-system perl-build-system)
2778     (home-page "http://search.cpan.org/dist/Graph")
2779     (synopsis "Graph data structures and algorithms")
2780     (description "This is @code{Graph}, a Perl module for dealing with graphs,
2781 the abstract data structures.")
2782     (license (package-license perl))))
2784 (define-public perl-guard
2785   (package
2786     (name "perl-guard")
2787     (version "1.023")
2788     (source (origin
2789               (method url-fetch)
2790               (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/Guard-"
2791                                   version ".tar.gz"))
2792               (sha256
2793                (base32
2794                 "1p6i9mfmbs9cw40jqdv71ihv2xfi0vvlv8bdv2810gf93zwxvi1l"))))
2795     (build-system perl-build-system)
2796     (home-page "http://search.cpan.org/dist/Guard")
2797     (synopsis "Safe cleanup blocks implemented as guards")
2798     (description "@code{Guard} implements so-called @dfn{guards}.  A guard is
2799 something (usually an object) that \"guards\" a resource, ensuring that it is
2800 cleaned up when expected.
2802 Specifically, this module supports two different types of guards: guard
2803 objects, which execute a given code block when destroyed, and scoped guards,
2804 which are tied to the scope exit.")
2805     (license (package-license perl))))
2807 (define-public perl-hash-merge
2808   (package
2809     (name "perl-hash-merge")
2810     (version "0.200")
2811     (source
2812      (origin
2813        (method url-fetch)
2814        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2815                            "Hash-Merge-" version ".tar.gz"))
2816        (sha256
2817         (base32
2818          "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
2819     (build-system perl-build-system)
2820     (home-page "http://search.cpan.org/dist/Hash-Merge")
2821     (synopsis "Merge arbitrarily deep hashes into a single hash")
2822     (description "Hash::Merge merges two arbitrarily deep hashes into a single
2823 hash.  That is, at any level, it will add non-conflicting key-value pairs from
2824 one hash to the other, and follows a set of specific rules when there are key
2825 value conflicts.  The hash is followed recursively, so that deeply nested
2826 hashes that are at the same level will be merged when the parent hashes are
2827 merged.")
2828     (license (package-license perl))))
2830 (define-public perl-hash-multivalue
2831   (package
2832     (name "perl-hash-multivalue")
2833     (version "0.15")
2834     (source
2835      (origin
2836        (method url-fetch)
2837        (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2838                            "Hash-MultiValue-" version ".tar.gz"))
2839        (sha256
2840         (base32
2841          "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
2842     (build-system perl-build-system)
2843     (home-page "http://search.cpan.org/dist/Hash-MultiValue")
2844     (synopsis "Store multiple values per key")
2845     (description "Hash::MultiValue is an object (and a plain hash reference)
2846 that may contain multiple values per key, inspired by MultiDict of WebOb.")
2847     (license (package-license perl))))
2849 (define-public perl-import-into
2850   (package
2851     (name "perl-import-into")
2852     (version "1.002004")
2853     (source
2854      (origin
2855        (method url-fetch)
2856        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2857                            "Import-Into-" version ".tar.gz"))
2858        (sha256
2859         (base32
2860          "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
2861     (build-system perl-build-system)
2862     (propagated-inputs
2863      `(("perl-module-runtime" ,perl-module-runtime)))
2864     (home-page "http://search.cpan.org/dist/Import-Into")
2865     (synopsis "Import packages into other packages")
2866     (description "Writing exporters is a pain.  Some use Exporter, some use
2867 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
2868 some things are pragmas.  Exporting on someone else's behalf is harder.  The
2869 exporters don't provide a consistent API for this, and pragmas need to have
2870 their import method called directly, since they effect the current unit of
2871 compilation.  Import::Into provides global methods to make this painless.")
2872     (license (package-license perl))))
2874 (define-public perl-inc-latest
2875   (package
2876     (name "perl-inc-latest")
2877     (version "0.500")
2878     (source
2879      (origin
2880        (method url-fetch)
2881        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
2882                            "inc-latest-" version ".tar.gz"))
2883        (sha256
2884         (base32
2885          "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
2886     (build-system perl-build-system)
2887     (home-page "http://search.cpan.org/dist/inc-latest")
2888     (synopsis "Use modules in inc/ if newer than installed")
2889     (description "The inc::latest module helps bootstrap configure-time
2890 dependencies for CPAN distributions.  These dependencies get bundled into the
2891 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
2892     (license asl2.0)))
2894 (define-public perl-io-captureoutput
2895   (package
2896     (name "perl-io-captureoutput")
2897     (version "1.1104")
2898     (source
2899      (origin
2900        (method url-fetch)
2901        (uri (string-append
2902              "mirror://cpan/authors/id/D/DA/DAGOLDEN/IO-CaptureOutput-"
2903              version
2904              ".tar.gz"))
2905        (sha256
2906         (base32
2907          "0c437zvzpqi8f0h3nmblwdi2bvsb92b7g30fndr7my9qnky35izw"))))
2908     (build-system perl-build-system)
2909     (home-page "http://search.cpan.org/dist/IO-CaptureOutput")
2910     (synopsis "Capture STDOUT and STDERR from Perl code, subprocesses or XS")
2911     (description "@code{IO::CaptureOutput} provides routines for capturing
2912 @code{STDOUT} and @code{STDERR} from perl subroutines, forked system
2913 calls (e.g. @code{system()}, @code{fork()}) and from XS or C modules.
2915 This module is no longer recommended by its maintainer.  Users are advised to
2916 try @code{Capture::Tiny} instead.")
2917     (license (package-license perl))))
2919 (define-public perl-io-interactive
2920   (package
2921     (name "perl-io-interactive")
2922     (version "0.0.6")
2923     (source
2924      (origin
2925        (method url-fetch)
2926        (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
2927                            "IO-Interactive-" version ".tar.gz"))
2928        (sha256
2929         (base32
2930          "1303q6rbcf2cag5z08pq3d1y91wls5q51jrpw4kh0l2bv75idh4w"))))
2931     (build-system perl-build-system)
2932     (home-page "http://search.cpan.org/dist/IO-Interactive")
2933     (synopsis "Utilities for interactive I/O")
2934     (description "This module provides three utility subroutines that make it
2935 easier to develop interactive applications: is_interactive(), interactive(),
2936 and busy().")
2937     (license (package-license perl))))
2939 (define-public perl-io-string
2940   (package
2941     (name "perl-io-string")
2942     (version "1.08")
2943     (source
2944      (origin
2945        (method url-fetch)
2946        (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
2947                            "IO-String-" version ".tar.gz"))
2948        (sha256
2949         (base32
2950          "18755m410yl70s17rgq3m0hyxl8r5mr47vsq1rw7141d8kc4lgra"))))
2951     (build-system perl-build-system)
2952     (home-page "http://search.cpan.org/~gaas/IO-String-1.08/")
2953     (synopsis "Emulate file interface for in-core strings")
2954     (description "IO::String is an IO::File (and IO::Handle) compatible class
2955 that reads or writes data from in-core strings.")
2956     (license (package-license perl))))
2958 (define-public perl-io-stringy
2959   (package
2960     (name "perl-io-stringy")
2961     (version "2.110")
2962     (source
2963      (origin
2964        (method url-fetch)
2965        (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
2966                            "IO-stringy-" version ".tar.gz"))
2967        (sha256
2968         (base32
2969          "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
2970     (build-system perl-build-system)
2971     (home-page "http://search.cpan.org/dist/IO-stringy")
2972     (synopsis "IO:: interface for reading/writing an array of lines")
2973     (description "This toolkit primarily provides modules for performing both
2974 traditional and object-oriented i/o) on things *other* than normal
2975 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
2976     (license (package-license perl))))
2978 (define-public perl-io-tty
2979   (package
2980     (name "perl-io-tty")
2981     (version "1.11")
2982     (source (origin
2983               (method url-fetch)
2984               (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
2985                                   version ".tar.gz"))
2986               (sha256
2987                (base32
2988                 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
2989     (build-system perl-build-system)
2990     (home-page "http://search.cpan.org/~toddr/IO-Tty/")
2991     (synopsis "Perl interface to pseudo ttys")
2992     (description
2993      "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
2994 pseudo ttys.")
2995     (license (package-license perl))))
2997 (define-public perl-ipc-run
2998   (package
2999     (name "perl-ipc-run")
3000     (version "0.94")
3001     (source
3002      (origin
3003        (method url-fetch)
3004        (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/"
3005                            "IPC-Run-" version ".tar.gz"))
3006        (sha256
3007         (base32
3008          "0nv0lpw31zaz6vi42q7ihjj3j382j4njicp5k0gsczib3b4kdcrf"))))
3009     (build-system perl-build-system)
3010     (propagated-inputs
3011      `(("perl-io-tty" ,perl-io-tty)))
3012     (arguments
3013      `(#:phases (modify-phases %standard-phases
3014                   (add-before
3015                    'check 'disable-w32-test
3016                    (lambda _
3017                      ;; This test fails, and we're not really interested in
3018                      ;; it, so disable it.
3019                      (delete-file "t/win32_compile.t"))))))
3020     (home-page "http://search.cpan.org/dist/IPC-Run")
3021     (synopsis "Run system() and background procs w/ piping, redirs, ptys")
3022     (description "IPC::Run allows you run and interact with child processes
3023 using files, pipes, and pseudo-ttys.  Both system()-style and scripted usages
3024 are supported and may be mixed.  Likewise, functional and OO API styles are
3025 both supported and may be mixed.")
3026     (license (package-license perl))))
3028 (define-public perl-ipc-run3
3029   (package
3030     (name "perl-ipc-run3")
3031     (version "0.048")
3032     (source (origin
3033               (method url-fetch)
3034               (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3035                                   "IPC-Run3-" version ".tar.gz"))
3036               (sha256
3037                (base32
3038                 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
3039     (build-system perl-build-system)
3040     (synopsis "Run a subprocess with input/output redirection")
3041     (description
3042      "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
3043 stdout, and/or stderr to files and perl data structures.  It aims to satisfy
3044 99% of the need for using system, qx, and open3 with a simple, extremely
3045 Perlish API and none of the bloat and rarely used features of IPC::Run.")
3046     (home-page (string-append "http://search.cpan.org/~rjbs/"
3047                               "IPC-Run3-" version))
3048     ;; "You may use this module under the terms of the BSD, Artistic, or GPL
3049     ;; licenses, any version."
3050     (license (list bsd-3 gpl3+))))
3052 (define-public perl-ipc-sharelite
3053   (package
3054     (name "perl-ipc-sharelite")
3055     (version "0.17")
3056     (source
3057      (origin
3058        (method url-fetch)
3059        (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
3060                            "IPC-ShareLite-" version ".tar.gz"))
3061        (sha256
3062         (base32
3063          "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
3064     (build-system perl-build-system)
3065     (home-page "http://search.cpan.org/dist/IPC-ShareLite")
3066     (synopsis "Lightweight interface to shared memory")
3067     (description "IPC::ShareLite provides a simple interface to shared memory,
3068 allowing data to be efficiently communicated between processes.")
3069     (license (package-license perl))))
3071 (define-public perl-ipc-system-simple
3072   (package
3073     (name "perl-ipc-system-simple")
3074     (version "1.25")
3075     (source (origin
3076               (method url-fetch)
3077               (uri (string-append
3078                     "mirror://cpan/authors/id/P/PJ/PJF/IPC-System-Simple-"
3079                     version ".tar.gz"))
3080               (sha256
3081                (base32
3082                 "0fsdb81shjj4hifyyzvj7vpkhq5jrfhlcpw2xbjfi1mqz8fsmdpi"))))
3083     (build-system perl-build-system)
3084     (home-page "http://search.cpan.org/dist/IPC-System-Simple")
3085     (synopsis "Run commands simply, with detailed diagnostics")
3086     (description "Calling Perl's in-built @code{system} function is easy,
3087 determining if it was successful is hard.  Let's face it, @code{$?} isn't the
3088 nicest variable in the world to play with, and even if you do check it,
3089 producing a well-formatted error string takes a lot of work.
3091 @code{IPC::System::Simple} takes the hard work out of calling external
3092 commands.")
3093     (license (package-license perl))))
3095 (define-public perl-json
3096   (package
3097     (name "perl-json")
3098     (version "2.90")
3099     (source
3100      (origin
3101        (method url-fetch)
3102        (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
3103                            "JSON-" version ".tar.gz"))
3104        (sha256
3105         (base32
3106          "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
3107     (build-system perl-build-system)
3108     (propagated-inputs
3109      `(("perl-json-xs" ,perl-json-xs))) ;recommended
3110     (home-page "http://search.cpan.org/dist/JSON")
3111     (synopsis "JSON encoder/decoder for Perl")
3112     (description "This module converts Perl data structures to JSON and vice
3113 versa using either JSON::XS or JSON::PP.")
3114     (license (package-license perl))))
3116 (define-public perl-json-any
3117   (package
3118     (name "perl-json-any")
3119     (version "1.38")
3120     (source
3121      (origin
3122        (method url-fetch)
3123        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3124                            "JSON-Any-" version ".tar.gz"))
3125        (sha256
3126         (base32
3127          "0mk6shg82i7y852bvj5d0qqma1d9k0jh10k4mg62hbgr800gb2m4"))))
3128     (build-system perl-build-system)
3129     (native-inputs
3130      `(("perl-test-fatal" ,perl-test-fatal)
3131        ("perl-test-requires" ,perl-test-requires)
3132        ("perl-test-warnings" ,perl-test-warnings)
3133        ("perl-test-without-module" ,perl-test-without-module)))
3134     (propagated-inputs
3135      `(("perl-namespace-clean" ,perl-namespace-clean)))
3136     (home-page "http://search.cpan.org/dist/JSON-Any")
3137     (synopsis "Wrapper for Perl JSON classes")
3138     (description
3139      "This module tries to provide a coherent API to bring together the
3140 various JSON modules currently on CPAN.  This module will allow you to code to
3141 any JSON API and have it work regardless of which JSON module is actually
3142 installed.")
3143     (license (package-license perl))))
3145 (define-public perl-json-maybexs
3146   (package
3147     (name "perl-json-maybexs")
3148     (version "1.003003")
3149     (source
3150      (origin
3151        (method url-fetch)
3152        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3153                            "JSON-MaybeXS-" version ".tar.gz"))
3154        (sha256
3155         (base32
3156          "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
3157     (build-system perl-build-system)
3158     (native-inputs
3159      `(("perl-test-without-module" ,perl-test-without-module)))
3160     (inputs
3161      `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
3162     (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
3163     (synopsis "Cpanel::JSON::XS with fallback")
3164     (description "This module first checks to see if either Cpanel::JSON::XS
3165 or JSON::XS is already loaded, in which case it uses that module.  Otherwise
3166 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
3167 either uses the first module it finds or throws an error.")
3168     (license (package-license perl))))
3170 (define-public perl-json-xs
3171   (package
3172     (name "perl-json-xs")
3173     (version "3.01")
3174     (source
3175      (origin
3176        (method url-fetch)
3177        (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
3178                            "JSON-XS-" version ".tar.gz"))
3179        (sha256
3180         (base32
3181          "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
3182     (build-system perl-build-system)
3183     (propagated-inputs
3184      `(("perl-common-sense" ,perl-common-sense)
3185        ("perl-types-serialiser" ,perl-types-serialiser)))
3186     (home-page "http://search.cpan.org/dist/JSON-XS")
3187     (synopsis "JSON serialising/deserialising for Perl")
3188     (description "This module converts Perl data structures to JSON and vice
3189 versa.")
3190     (license (package-license perl))))
3192 (define-public perl-log-any
3193   (package
3194     (name "perl-log-any")
3195     (version "1.040")
3196     (source
3197      (origin
3198        (method url-fetch)
3199        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-"
3200                            version ".tar.gz"))
3201        (sha256
3202         (base32
3203          "0r1q7cclgwl24gzdnjzvd8y0r7j17dngjk492x35w198zhdj2ncp"))))
3204     (build-system perl-build-system)
3205     (home-page "http://search.cpan.org/dist/Log-Any")
3206     (synopsis "Bringing loggers and listeners together")
3207     (description "@code{Log::Any} provides a standard log production API for
3208 modules.  @code{Log::Any::Adapter} allows applications to choose the mechanism
3209 for log consumption, whether screen, file or another logging mechanism like
3210 @code{Log::Dispatch} or @code{Log::Log4perl}.
3212 A CPAN module uses @code{Log::Any} to get a log producer object.  An
3213 application, in turn, may choose one or more logging mechanisms via
3214 @code{Log::Any::Adapter}, or none at all.
3216 @code{Log::Any} has a very tiny footprint and no dependencies beyond Perl
3217 itself, which makes it appropriate for even small CPAN modules to use.  It
3218 defaults to 'null' logging activity, so a module can safely log without
3219 worrying about whether the application has chosen (or will ever choose) a
3220 logging mechanism.")
3221     (license (package-license perl))))
3223 (define-public perl-log-any-adapter-log4perl
3224   (package
3225     (name "perl-log-any-adapter-log4perl")
3226     (version "0.08")
3227     (source
3228      (origin
3229        (method url-fetch)
3230        (uri (string-append
3231              "mirror://cpan/authors/id/D/DA/DAGOLDEN/Log-Any-Adapter-Log4perl-"
3232              version
3233              ".tar.gz"))
3234        (sha256
3235         (base32
3236          "0xf4fnrsznvg0hf36q481124ja1hp3lybki1xjgnk82z9990jmxn"))))
3237     (build-system perl-build-system)
3238     (propagated-inputs
3239      `(("perl-log-any" ,perl-log-any)
3240        ("perl-log-log4perl" ,perl-log-log4perl)))
3241     (home-page
3242      "http://search.cpan.org/dist/Log-Any-Adapter-Log4perl")
3243     (synopsis "Log::Any adapter for Log::Log4perl")
3244     (description "@code{Log::Any::Adapter::Log4perl} provides a
3245 @code{Log::Any} adapter using @code{Log::Log4perl} for logging.")
3246     (license (package-license perl))))
3248 (define-public perl-log-log4perl
3249   (package
3250     (name "perl-log-log4perl")
3251     (version "1.47")
3252     (source
3253      (origin
3254        (method url-fetch)
3255        (uri (string-append
3256              "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-"
3257              version
3258              ".tar.gz"))
3259        (sha256
3260         (base32
3261          "0vxraq9navx5mgf8y8g6l5rbl3dv2ml8bishka5m69hj07nxs0ch"))))
3262     (build-system perl-build-system)
3263     (home-page
3264      "http://search.cpan.org/dist/Log-Log4perl")
3265     (synopsis "Log4j implementation for Perl")
3266     (description "@code{Log::Log4perl} lets you remote-control and fine-tune
3267 the logging behaviour of your system from the outside.  It implements the
3268 widely popular (Java-based) Log4j logging package in pure Perl.")
3269     (license (package-license perl))))
3271 (define-public perl-log-report-optional
3272   (package
3273     (name "perl-log-report-optional")
3274     (version "1.01")
3275     (source (origin
3276               (method url-fetch)
3277               (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3278                                   "Log-Report-Optional-" version ".tar.gz"))
3279               (sha256
3280                (base32
3281                 "1f4yi4dgzqjc79vrh4f2phdj57xxgk8hd2psx77214i4m5av408f"))))
3282     (build-system perl-build-system)
3283     (propagated-inputs
3284      `(("perl-string-print" ,perl-string-print)))
3285     (home-page "http://search.cpan.org/dist/Log-Report-Optional")
3286     (synopsis "Log::Report in the lightest form")
3287     (description
3288      "This module allows libraries to have a dependency to a small module
3289 instead of the full Log-Report distribution.  The full power of
3290 @code{Log::Report} is only released when the main program uses that module.
3291 In that case, the module using the 'Optional' will also use the full
3292 @code{Log::Report}, otherwise the dressed-down @code{Log::Report::Minimal}
3293 version.")
3294     (license (package-license perl))))
3296 (define-public perl-log-report
3297   (package
3298     (name "perl-log-report")
3299     (version "1.10")
3300     (source (origin
3301               (method url-fetch)
3302               (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3303                                   "Log-Report-" version ".tar.gz"))
3304               (sha256
3305                (base32
3306                 "1jjx1ari3a7ixsyan91b6n7lmjq6dy5223k3x2ah18qbxvw4caap"))))
3307     (build-system perl-build-system)
3308     (propagated-inputs
3309      `(("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3310        ("perl-log-report-optional" ,perl-log-report-optional)
3311        ("perl-string-print" ,perl-string-print)))
3312     (home-page "http://search.cpan.org/dist/Log-Report")
3313     (synopsis "Get messages to users and logs")
3314     (description
3315      "@code{Log::Report} combines three tasks which are closely related in
3316 one: logging, exceptions, and translations.")
3317     (license (package-license perl))))
3319 (define-public perl-list-allutils
3320   (package
3321     (name "perl-list-allutils")
3322     (version "0.09")
3323     (source
3324      (origin
3325        (method url-fetch)
3326        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3327                            "List-AllUtils-" version ".tar.gz"))
3328        (sha256
3329         (base32
3330          "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
3331     (build-system perl-build-system)
3332     (native-inputs
3333      `(("perl-test-warnings" ,perl-test-warnings)))
3334     (propagated-inputs
3335      `(("perl-list-moreutils" ,perl-list-moreutils)
3336        ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
3337     (home-page "http://search.cpan.org/dist/List-AllUtils")
3338     (synopsis "Combination of List::Util and List::MoreUtils")
3339     (description "This module exports all of the functions that either
3340 List::Util or List::MoreUtils defines, with preference to List::Util.")
3341     (license (package-license perl))))
3343 (define-public perl-list-compare
3344   (package
3345     (name "perl-list-compare")
3346     (version "0.53")
3347     (source
3348      (origin
3349        (method url-fetch)
3350        (uri (string-append
3351              "mirror://cpan/authors/id/J/JK/JKEENAN/List-Compare-"
3352              version
3353              ".tar.gz"))
3354        (sha256
3355         (base32
3356          "0l451yqhx1hlm7f2c3bjsl3n8w6l1jngrxzyfm2d8d9iggv4zgzx"))))
3357     (build-system perl-build-system)
3358     (native-inputs
3359      `(("perl-io-captureoutput" ,perl-io-captureoutput)))
3360     (home-page "http://search.cpan.org/dist/List-Compare")
3361     (synopsis "Compare elements of two or more lists")
3362     (description "@code{List::Compare} provides a module to perform
3363 comparative operations on two or more lists.  Provided operations include
3364 intersections, unions, unique elements, complements and many more.")
3365     (license (package-license perl))))
3367 (define-public perl-list-moreutils
3368   (package
3369     (name "perl-list-moreutils")
3370     (version "0.402")
3371     (source
3372      (origin
3373        (method url-fetch)
3374        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
3375                            "List-MoreUtils-" version ".tar.gz"))
3376        (sha256
3377         (base32
3378          "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
3379     (build-system perl-build-system)
3380     (native-inputs
3381      `(("perl-config-autoconf" ,perl-config-autoconf)
3382        ("perl-inc-latest" ,perl-inc-latest)
3383        ("perl-test-writevariants" ,perl-test-writevariants)))
3384     (propagated-inputs
3385      `(("perl-exporter-tiny" ,perl-exporter-tiny)))
3386     (home-page "http://search.cpan.org/dist/List-MoreUtils")
3387     (synopsis "Provide the stuff missing in List::Util")
3388     (description "List::MoreUtils provides some trivial but commonly needed
3389 functionality on lists which is not going to go into List::Util.")
3390     (license (package-license perl))))
3392 (define-public perl-list-someutils
3393   (package
3394     (name "perl-list-someutils")
3395     (version "0.52")
3396     (source
3397      (origin
3398        (method url-fetch)
3399        (uri (string-append
3400              "mirror://cpan/authors/id/D/DR/DROLSKY/List-SomeUtils-"
3401              version
3402              ".tar.gz"))
3403        (sha256
3404         (base32
3405          "1b450jyxaa6q2yl0cdhknr3c2a5s7b9b18ccnwac625c681r130y"))))
3406     (build-system perl-build-system)
3407     (native-inputs
3408      `(("perl-test-leaktrace" ,perl-test-leaktrace)))
3409     (inputs
3410      `(("perl-exporter-tiny" ,perl-exporter-tiny)
3411        ("perl-module-implementation"
3412         ,perl-module-implementation)))
3413     (home-page "http://search.cpan.org/dist/List-SomeUtils")
3414     (synopsis "Provide the stuff missing in List::Util")
3415     (description "@code{List::SomeUtils} provides some trivial but commonly
3416 needed functionality on lists which is not going to go into @code{List::Util}.
3418 All of the below functions are implementable in only a couple of lines of Perl
3419 code.  Using the functions from this module however should give slightly
3420 better performance as everything is implemented in C.  The pure-Perl
3421 implementation of these functions only serves as a fallback in case the C
3422 portions of this module couldn't be compiled on this machine.")
3423     (license (package-license perl))))
3425 (define-public perl-memoize-expirelru
3426   (package
3427     (name "perl-memoize-expirelru")
3428     (version "0.55")
3429     (source
3430      (origin
3431        (method url-fetch)
3432        (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
3433                            "Memoize-ExpireLRU-" version ".tar.gz"))
3434        (sha256
3435         (base32
3436          "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
3437     (build-system perl-build-system)
3438     (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
3439     (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
3440     (description "This module implements an expiry policy for Memoize that
3441 follows LRU semantics, that is, the last n results, where n is specified as
3442 the argument to the CACHESIZE parameter, will be cached.")
3443     (license (package-license perl))))
3445 (define-public perl-mime-charset
3446   (package
3447     (name "perl-mime-charset")
3448     (version "1.012")
3449     (source (origin
3450               (method url-fetch)
3451               (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
3452                                   "MIME-Charset-" version ".tar.gz"))
3453               (sha256
3454                (base32
3455                 "1kfc5p4g1x9c0ffhg125wvhravcviny3alwrgnhnrm2a33ad3rff"))))
3456     (build-system perl-build-system)
3457     (home-page "http://search.cpan.org/dist/MIME-Charset")
3458     (synopsis "Charset information for MIME messages")
3459     (description
3460      "@code{MIME::Charset} provides information about character sets used for
3461 MIME messages on Internet.")
3462     (license (package-license perl))))
3464 (define-public perl-mime-types
3465   (package
3466     (name "perl-mime-types")
3467     (version "2.09")
3468     (source
3469      (origin
3470        (method url-fetch)
3471        (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
3472                            "MIME-Types-" version ".tar.gz"))
3473        (sha256
3474         (base32
3475          "0s7s2z9xc1nc2l59rk80iaa04r36k0y95231212kz5p3ln7szk1c"))))
3476     (build-system perl-build-system)
3477     (home-page "http://search.cpan.org/dist/MIME-Types")
3478     (synopsis "Definition of MIME types")
3479     (description "This module provides a list of known mime-types, combined
3480 from various sources.  For instance, it contains all IANA types and the
3481 knowledge of Apache.")
3482     (license (package-license perl))))
3484 (define-public perl-mixin-linewise
3485   (package
3486     (name "perl-mixin-linewise")
3487     (version "0.108")
3488     (source (origin
3489               (method url-fetch)
3490               (uri (string-append
3491                     "mirror://cpan/authors/id/R/RJ/RJBS/Mixin-Linewise-"
3492                     version ".tar.gz"))
3493               (sha256
3494                (base32
3495                 "1wmfr19w9y8qys7b32mnj1vmps7qwdahqas71a9p62ac8xw0dwkx"))))
3496     (build-system perl-build-system)
3497     (inputs
3498      `(("perl-perlio-utf8_strict" ,perl-perlio-utf8_strict)
3499        ("perl-sub-exporter" ,perl-sub-exporter)))
3500     (home-page "http://search.cpan.org/dist/Mixin-Linewise")
3501     (synopsis "Write your linewise code for handles; this does the rest")
3502     (description "It's boring to deal with opening files for IO, converting
3503 strings to handle-like objects, and all that.  With
3504 @code{Mixin::Linewise::Readers} and @code{Mixin::Linewise::Writers}, you can
3505 just write a method to handle handles, and methods for handling strings and
3506 file names are added for you.")
3507     (license (package-license perl))))
3509 (define-public perl-modern-perl
3510   (package
3511     (name "perl-modern-perl")
3512     (version "1.20150127")
3513     (source
3514      (origin
3515        (method url-fetch)
3516        (uri (string-append
3517              "mirror://cpan/authors/id/C/CH/CHROMATIC/Modern-Perl-"
3518              version
3519              ".tar.gz"))
3520        (sha256
3521         (base32
3522          "0iv2crfxl3xh6mq36g1gv9fr8iqq3kpbj8afxy5qi60hh7v3xhcl"))))
3523     (build-system perl-build-system)
3524     (native-inputs
3525      `(("perl-module-build" ,perl-module-build)))
3526     (home-page
3527      "http://search.cpan.org/dist/Modern-Perl")
3528     (synopsis
3529      "Enable all of the features of Modern Perl with one import")
3530     (description "@code{Modern::Perl} provides a simple way to enable
3531 multiple, by now, standard libraries in a Perl program.")
3532     (license (package-license perl))))
3534 (define-public perl-module-build-tiny
3535   (package
3536     (name "perl-module-build-tiny")
3537     (version "0.039")
3538     (source
3539      (origin
3540        (method url-fetch)
3541        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3542                            "Module-Build-Tiny-" version ".tar.gz"))
3543        (sha256
3544         (base32
3545          "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
3546     (build-system perl-build-system)
3547     (native-inputs
3548      `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
3549        ("perl-extutils-config" ,perl-extutils-config)
3550        ("perl-extutils-helpers" ,perl-extutils-helpers)
3551        ("perl-test-harness" ,perl-test-harness)))
3552     (propagated-inputs
3553      `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
3554        ("perl-extutils-config" ,perl-extutils-config)
3555        ("perl-extutils-helpers" ,perl-extutils-helpers)
3556        ("perl-test-harness" ,perl-test-harness)))
3557     (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
3558     (synopsis "Tiny replacement for Module::Build")
3559     (description "Many Perl distributions use a Build.PL file instead of a
3560 Makefile.PL file to drive distribution configuration, build, test and
3561 installation.  Traditionally, Build.PL uses Module::Build as the underlying
3562 build system.  This module provides a simple, lightweight, drop-in
3563 replacement.  Whereas Module::Build has over 6,700 lines of code; this module
3564 has less than 120, yet supports the features needed by most distributions.")
3565     (license (package-license perl))))
3567 (define-public perl-module-find
3568   (package
3569     (name "perl-module-find")
3570     (version "0.12")
3571     (source
3572      (origin
3573        (method url-fetch)
3574        (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
3575                            "Module-Find-" version ".tar.gz"))
3576        (sha256
3577         (base32
3578          "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
3579     (build-system perl-build-system)
3580     (home-page "http://search.cpan.org/dist/Module-Find")
3581     (synopsis "Find and use installed modules in a (sub)category")
3582     (description "Module::Find lets you find and use modules in categories.
3583 This can be useful for auto-detecting driver or plugin modules.  You can
3584 differentiate between looking in the category itself or in all
3585 subcategories.")
3586     (license (package-license perl))))
3588 (define-public perl-module-implementation
3589   (package
3590     (name "perl-module-implementation")
3591     (version "0.09")
3592     (source
3593      (origin
3594        (method url-fetch)
3595        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3596                            "Module-Implementation-" version ".tar.gz"))
3597        (sha256
3598         (base32
3599          "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
3600     (build-system perl-build-system)
3601     (native-inputs
3602      `(("perl-test-fatal" ,perl-test-fatal)
3603        ("perl-test-requires" ,perl-test-requires)))
3604     (propagated-inputs
3605      `(("perl-module-runtime" ,perl-module-runtime)
3606        ("perl-try-tiny" ,perl-try-tiny)))
3607     (home-page "http://search.cpan.org/dist/Module-Implementation")
3608     (synopsis "Loads alternate underlying implementations for a module")
3609     (description "This module abstracts out the process of choosing one of
3610 several underlying implementations for a module.  This can be used to provide
3611 XS and pure Perl implementations of a module, or it could be used to load an
3612 implementation for a given OS or any other case of needing to provide multiple
3613 implementations.")
3614     (license artistic2.0)))
3616 (define-public perl-module-install
3617   (package
3618     (name "perl-module-install")
3619     (version "1.14")
3620     (source
3621      (origin
3622        (method url-fetch)
3623        (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
3624                            "Module-Install-" version ".tar.gz"))
3625        (sha256
3626         (base32
3627          "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
3628     (build-system perl-build-system)
3629     (native-inputs
3630      `(("perl-yaml-tiny" ,perl-yaml-tiny)))
3631     (propagated-inputs
3632      `(("perl-archive-zip" ,perl-archive-zip)
3633        ("perl-file-homedir" ,perl-file-homedir)
3634        ("perl-file-remove" ,perl-file-remove)
3635        ("perl-json" ,perl-json)
3636        ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
3637        ;; would cause a circular dependency with (gnu packages web), so we
3638        ;; leave it out.  It may be resolved at runtime, however.
3639        ;("perl-libwww-perl" ,perl-libwww-perl)
3640        ("perl-module-scandeps" ,perl-module-scandeps)
3641        ("perl-par-dist" ,perl-par-dist)
3642        ("perl-yaml-tiny" ,perl-yaml-tiny)))
3643     ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
3644     ;; character handling.
3645     (arguments `(#:tests? #f))
3646     (home-page "http://search.cpan.org/dist/Module-Install")
3647     (synopsis "Standalone, extensible Perl module installer")
3648     (description "Module::Install is a package for writing installers for
3649 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
3650 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
3651 installation version 5.005 or newer.")
3652     (license (package-license perl))))
3654 (define-public perl-module-pluggable
3655   (package
3656     (name "perl-module-pluggable")
3657     (version "5.2")
3658     (source
3659      (origin
3660        (method url-fetch)
3661        (uri (string-append "mirror://cpan/authors/id/S/SI/SIMONW/"
3662                            "Module-Pluggable-" version ".tar.gz"))
3663        (sha256
3664         (base32
3665          "1px6qmszmfc69v36vd8d92av4nkrif6xf4nrj3xv647xwi2svwmk"))
3666        (patches (search-patches "perl-module-pluggable-search.patch"))))
3667     (build-system perl-build-system)
3668     (home-page "http://search.cpan.org/dist/Module-Pluggable")
3669     (synopsis "Give your Perl module the ability to have plugins")
3670     (description "This module provides a simple but extensible way of having
3671 'plugins' for your Perl module.")
3672     (license (package-license perl))))
3674 (define-public perl-module-runtime
3675   (package
3676     (name "perl-module-runtime")
3677     (version "0.014")
3678     (source
3679      (origin
3680        (method url-fetch)
3681        (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
3682                            "Module-Runtime-" version ".tar.gz"))
3683        (sha256
3684         (base32
3685          "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
3686     (build-system perl-build-system)
3687     (native-inputs `(("perl-module-build" ,perl-module-build)))
3688     (home-page "http://search.cpan.org/dist/Module-Runtime")
3689     (synopsis "Perl runtime module handling")
3690     (description "The functions exported by this module deal with runtime
3691 handling of Perl modules, which are normally handled at compile time.")
3692     (license (package-license perl))))
3694 (define-public perl-module-runtime-conflicts
3695   (package
3696     (name "perl-module-runtime-conflicts")
3697     (version "0.001")
3698     (source
3699      (origin
3700        (method url-fetch)
3701        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3702                            "Module-Runtime-Conflicts-" version ".tar.gz"))
3703        (sha256
3704         (base32
3705          "0pz23ch78lbpn4kdbm04icgsmbr7jvmxwq1p5m4x2pap8qwd0wqg"))))
3706     (build-system perl-build-system)
3707     (native-inputs
3708      `(("perl-module-build" ,perl-module-build)))
3709     (propagated-inputs
3710      `(("perl-module-runtime" ,perl-module-runtime)
3711        ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
3712     (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
3713     (synopsis "Provide information on conflicts for Module::Runtime")
3714     (description "This module provides conflicts checking for Module::Runtime,
3715 which had a recent release that broke some versions of Moose.  It is called
3716 from Moose::Conflicts and moose-outdated.")
3717     (license (package-license perl))))
3719 (define-public perl-module-scandeps
3720   (package
3721     (name "perl-module-scandeps")
3722     (version "1.18")
3723     (source
3724      (origin
3725        (method url-fetch)
3726        (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
3727                            "Module-ScanDeps-" version ".tar.gz"))
3728        (sha256
3729         (base32
3730          "17mbyqwd8c20nqw01hjshl524vkw8pq6y2lwndmw36xkqr945npz"))))
3731     (build-system perl-build-system)
3732     (native-inputs
3733      `(("perl-test-requires" ,perl-test-requires)))
3734     (home-page "http://search.cpan.org/dist/Module-ScanDeps")
3735     (synopsis "Recursively scan Perl code for dependencies")
3736     (description "Module::ScanDeps is a module to recursively scan Perl
3737 programs for dependencies.")
3738     (license (package-license perl))))
3740 (define-public perl-module-util
3741   (package
3742     (name "perl-module-util")
3743     (version "1.09")
3744     (source
3745      (origin
3746        (method url-fetch)
3747        (uri (string-append "mirror://cpan/authors/id/M/MA/MATTLAW/"
3748                            "Module-Util-" version ".tar.gz"))
3749        (sha256
3750         (base32
3751          "1ip2yg3x517gg8c48crhd52ba864vmyimvm0ibn4ci068mmcpyvc"))))
3752     (build-system perl-build-system)
3753     (native-inputs
3754      `(("perl-module-build" ,perl-module-build))) ; >= 0.40
3755     (home-page "http://search.cpan.org/dist/Module-Util")
3756     (synopsis "Module name tools and transformations")
3757     (description "This module provides a few useful functions for manipulating
3758 module names.  Its main aim is to centralise some of the functions commonly
3759 used by modules that manipulate other modules in some way, like converting
3760 module names to relative paths.")
3761     (license (package-license perl))))
3763 (define-public perl-moo
3764   (package
3765     (name "perl-moo")
3766     (version "1.007000")
3767     (source
3768      (origin
3769        (method url-fetch)
3770        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3771                            "Moo-" version ".tar.gz"))
3772        (sha256
3773         (base32
3774          "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
3775     (build-system perl-build-system)
3776     (native-inputs
3777      `(("perl-test-fatal" ,perl-test-fatal)))
3778     (propagated-inputs
3779      `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
3780        ("perl-class-xsaccessor" ,perl-class-xsaccessor)
3781        ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3782        ("perl-import-into" ,perl-import-into)
3783        ("perl-module-runtime" ,perl-module-runtime)
3784        ("perl-role-tiny" ,perl-role-tiny)
3785        ("perl-strictures" ,perl-strictures)))
3786     (home-page "http://search.cpan.org/dist/Moo")
3787     (synopsis "Minimalist Object Orientation (with Moose compatibility)")
3788     (description "Moo is an extremely light-weight Object Orientation system.
3789 It allows one to concisely define objects and roles with a convenient syntax
3790 that avoids the details of Perl's object system.  Moo contains a subset of
3791 Moose and is optimised for rapid startup.")
3792     (license (package-license perl))))
3794 (define-public perl-moose
3795   (package
3796     (name "perl-moose")
3797     (version "2.1403")
3798     (source (origin
3799               (method url-fetch)
3800               (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3801                                   "Moose-" version ".tar.gz"))
3802               (sha256
3803                (base32
3804                 "16iaazikbnq2jjjac84jrdpfzm4qwqg1nbfgs11jlwn84q4jp1n3"))))
3805     (build-system perl-build-system)
3806     (native-inputs
3807      `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
3808        ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
3809        ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
3810        ("perl-test-fatal" ,perl-test-fatal)
3811        ("perl-test-requires" ,perl-test-requires)
3812        ("perl-test-warnings" ,perl-test-warnings)))
3813     ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
3814     ;; # === Other Modules ===
3815     ;; #
3816     ;; #     Module                       Want    Have
3817     ;; #     ---------------------------- ---- -------
3818     ;; #     Algorithm::C3                 any missing
3819     ;; #     DBM::Deep                     any missing
3820     ;; #     DateTime                      any missing
3821     ;; #     DateTime::Calendar::Mayan     any missing
3822     ;; #     DateTime::Format::MySQL       any missing
3823     ;; #     Declare::Constraints::Simple  any missing
3824     ;; #     Dist::CheckConflicts          any    0.11
3825     ;; #     HTTP::Headers                 any missing
3826     ;; #     IO::File                      any    1.16
3827     ;; #     IO::String                    any missing
3828     ;; #     Locale::US                    any missing
3829     ;; #     Module::Refresh               any missing
3830     ;; #     MooseX::NonMoose              any missing
3831     ;; #     Params::Coerce                any missing
3832     ;; #     Regexp::Common                any missing
3833     ;; #     SUPER                         any missing
3834     ;; #     Test::Deep                    any missing
3835     ;; #     Test::DependentModules        any missing
3836     ;; #     Test::LeakTrace               any missing
3837     ;; #     Test::Output                  any missing
3838     ;; #     URI                           any missing
3839     (propagated-inputs
3840      `(("perl-class-load" ,perl-class-load)
3841        ("perl-class-load-xs" ,perl-class-load-xs)
3842        ("perl-data-optlist" ,perl-data-optlist)
3843        ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
3844        ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
3845        ("perl-devel-partialdump" ,perl-devel-partialdump)
3846        ("perl-devel-stacktrace" ,perl-devel-stacktrace)
3847        ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
3848        ("perl-eval-closure" ,perl-eval-closure)
3849        ("perl-list-moreutils" ,perl-list-moreutils)
3850        ("perl-module-runtime" ,perl-module-runtime)
3851        ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
3852        ("perl-mro-compat" ,perl-mro-compat)
3853        ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
3854        ("perl-package-stash" ,perl-package-stash)
3855        ("perl-package-stash-xs" ,perl-package-stash-xs)
3856        ("perl-params-util" ,perl-params-util)
3857        ("perl-parent" ,perl-parent)
3858        ("perl-scalar-list-utils" ,perl-scalar-list-utils)
3859        ("perl-sub-exporter" ,perl-sub-exporter)
3860        ("perl-sub-name" ,perl-sub-name)
3861        ("perl-task-weaken" ,perl-task-weaken)
3862        ("perl-try-tiny" ,perl-try-tiny)))
3863     (home-page "http://search.cpan.org/dist/Moose")
3864     (synopsis "Postmodern object system for Perl 5")
3865     (description
3866      "Moose is a complete object system for Perl 5.  It provides keywords for
3867 attribute declaration, object construction, inheritance, and maybe more.  With
3868 Moose, you define your class declaratively, without needing to know about
3869 blessed hashrefs, accessor methods, and so on.  You can concentrate on the
3870 logical structure of your classes, focusing on \"what\" rather than \"how\".
3871 A class definition with Moose reads like a list of very concise English
3872 sentences.")
3873     (license (package-license perl))))
3875 (define-public perl-moosex-emulate-class-accessor-fast
3876   (package
3877     (name "perl-moosex-emulate-class-accessor-fast")
3878     (version "0.00903")
3879     (source
3880      (origin
3881        (method url-fetch)
3882        (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
3883                            "MooseX-Emulate-Class-Accessor-Fast-"
3884                            version ".tar.gz"))
3885        (sha256
3886         (base32
3887          "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
3888     (build-system perl-build-system)
3889     (native-inputs
3890      `(("perl-test-exception" ,perl-test-exception)))
3891     (propagated-inputs
3892      `(("perl-moose" ,perl-moose)))
3893     (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
3894     (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
3895     (description "This module attempts to emulate the behavior of
3896 Class::Accessor::Fast as accurately as possible using the Moose attribute
3897 system.  The public API of Class::Accessor::Fast is wholly supported, but the
3898 private methods are not.")
3899     (license (package-license perl))))
3901 (define-public perl-moosex-getopt
3902   (package
3903     (name "perl-moosex-getopt")
3904     (version "0.65")
3905     (source
3906      (origin
3907        (method url-fetch)
3908        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3909                            "MooseX-Getopt-" version ".tar.gz"))
3910        (sha256
3911         (base32
3912          "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
3913     (build-system perl-build-system)
3914     (native-inputs
3915      `(("perl-module-build" ,perl-module-build)
3916        ("perl-test-deep" ,perl-test-deep)
3917        ("perl-test-fatal" ,perl-test-fatal)
3918        ("perl-test-requires" ,perl-test-requires)
3919        ("perl-test-trap" ,perl-test-trap)
3920        ("perl-test-warnings" ,perl-test-warnings)))
3921     (propagated-inputs
3922      `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
3923        ("perl-moose" ,perl-moose)
3924        ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
3925        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3926     (home-page "http://search.cpan.org/dist/MooseX-Getopt")
3927     (synopsis "Moose role for processing command line options")
3928     (description "This is a Moose role which provides an alternate constructor
3929 for creating objects using parameters passed in from the command line.")
3930     (license (package-license perl))))
3932 (define-public perl-moosex-markasmethods
3933   (package
3934     (name "perl-moosex-markasmethods")
3935     (version "0.15")
3936     (source
3937      (origin
3938        (method url-fetch)
3939        (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
3940                            "MooseX-MarkAsMethods-" version ".tar.gz"))
3941        (sha256
3942         (base32
3943          "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
3944     (build-system perl-build-system)
3945     (inputs
3946      `(("perl-moose" ,perl-moose)
3947        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3948     (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
3949     (synopsis "Mark overload code symbols as methods")
3950     (description "MooseX::MarkAsMethods allows one to easily mark certain
3951 functions as Moose methods.  This will allow other packages such as
3952 namespace::autoclean to operate without blowing away your overloads.  After
3953 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
3954 being methods, and class extension as well as composition from roles with
3955 overloads will \"just work\".")
3956     (license lgpl2.1)))
3958 (define-public perl-moosex-methodattributes
3959   (package
3960     (name "perl-moosex-methodattributes")
3961     (version "0.29")
3962     (source
3963      (origin
3964        (method url-fetch)
3965        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3966                            "MooseX-MethodAttributes-" version ".tar.gz"))
3967        (sha256
3968         (base32
3969          "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
3970     (build-system perl-build-system)
3971     (native-inputs
3972      `(("perl-module-build-tiny" ,perl-module-build-tiny)
3973        ("perl-test-fatal" ,perl-test-fatal)
3974        ("perl-test-requires" ,perl-test-requires)))
3975     (propagated-inputs
3976      `(("perl-moose" ,perl-moose)
3977        ("perl-moosex-types" ,perl-moosex-types)
3978        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
3979     (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
3980     (synopsis "Code attribute introspection")
3981     (description "This module allows code attributes of methods to be
3982 introspected using Moose meta method objects.")
3983     (license (package-license perl))))
3985 (define-public perl-moosex-nonmoose
3986 (package
3987   (name "perl-moosex-nonmoose")
3988   (version "0.26")
3989   (source
3990     (origin
3991       (method url-fetch)
3992       (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3993                           "MooseX-NonMoose-" version ".tar.gz"))
3994       (sha256
3995         (base32
3996           "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
3997   (build-system perl-build-system)
3998   (native-inputs
3999     `(("perl-moose" ,perl-moose)
4000       ("perl-test-fatal" ,perl-test-fatal)))
4001   (propagated-inputs
4002     `(("perl-list-moreutils" ,perl-list-moreutils)
4003       ("perl-module-runtime" ,perl-module-runtime)
4004       ("perl-moose" ,perl-moose)
4005       ("perl-try-tiny" ,perl-try-tiny)))
4006   (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
4007   (synopsis "Subclassing of non-Moose classes")
4008   (description "MooseX::NonMoose allows for easily subclassing non-Moose
4009 classes with Moose, taking care of the details connected with doing this, such
4010 as setting up proper inheritance from Moose::Object and installing (and
4011 inlining, at make_immutable time) a constructor that makes sure things like
4012 BUILD methods are called.  It tries to be as non-intrusive as possible.")
4013   (license (package-license perl))))
4015 (define-public perl-moosex-params-validate
4016   (package
4017     (name "perl-moosex-params-validate")
4018     (version "0.19")
4019     (source
4020      (origin
4021        (method url-fetch)
4022        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4023                            "MooseX-Params-Validate-" version ".tar.gz"))
4024        (sha256
4025         (base32
4026          "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
4027     (build-system perl-build-system)
4028     (native-inputs
4029      `(("perl-moose" ,perl-moose)
4030        ("perl-test-fatal" ,perl-test-fatal)))
4031     (propagated-inputs
4032      `(("perl-devel-caller" ,perl-devel-caller)
4033        ("perl-moose" ,perl-moose)
4034        ("perl-params-validate" ,perl-params-validate)
4035        ("perl-sub-exporter" ,perl-sub-exporter)))
4036     (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
4037     (synopsis "Extension of Params::Validate using Moose's types")
4038     (description "This module fills a gap in Moose by adding method parameter
4039 validation to Moose.")
4040     (license (package-license perl))))
4042 (define-public perl-moosex-relatedclassroles
4043   (package
4044     (name "perl-moosex-relatedclassroles")
4045     (version "0.004")
4046     (source
4047      (origin
4048        (method url-fetch)
4049        (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
4050                            "MooseX-RelatedClassRoles-" version ".tar.gz"))
4051        (sha256
4052         (base32
4053          "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
4054     (build-system perl-build-system)
4055     (propagated-inputs
4056      `(("perl-moose" ,perl-moose)
4057        ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
4058     (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
4059     (synopsis "Apply roles to a related Perl class")
4060     (description "This module applies roles to make a subclass instead of
4061 manually setting up a subclass.")
4062     (license (package-license perl))))
4064 (define-public perl-moosex-role-parameterized
4065   (package
4066     (name "perl-moosex-role-parameterized")
4067     (version "1.08")
4068     (source
4069      (origin
4070        (method url-fetch)
4071        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4072                            "MooseX-Role-Parameterized-" version ".tar.gz"))
4073        (sha256
4074         (base32
4075          "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
4076     (build-system perl-build-system)
4077     (native-inputs
4078      `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
4079        ("perl-module-build" ,perl-module-build)
4080        ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
4081        ("perl-test-fatal" ,perl-test-fatal)
4082        ("perl-test-requires" ,perl-test-requires)))
4083     (propagated-inputs
4084      `(("perl-moose" ,perl-moose)
4085        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4086     (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
4087     (synopsis "Moose roles with composition parameters")
4088     (description "Because Moose roles serve many different masters, they
4089 usually provide only the least common denominator of functionality.  To
4090 empower roles further, more configurability than -alias and -excludes is
4091 required.  Perhaps your role needs to know which method to call when it is
4092 done processing, or what default value to use for its url attribute.
4093 Parameterized roles offer a solution to these (and other) kinds of problems.")
4094     (license (package-license perl))))
4096 (define-public perl-moosex-role-withoverloading
4097   (package
4098     (name "perl-moosex-role-withoverloading")
4099     (version "0.16")
4100     (source
4101      (origin
4102        (method url-fetch)
4103        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4104                            "MooseX-Role-WithOverloading-" version ".tar.gz"))
4105        (sha256
4106         (base32
4107          "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
4108     (build-system perl-build-system)
4109     (propagated-inputs
4110      `(("perl-aliased" ,perl-aliased)
4111        ("perl-moose" ,perl-moose)
4112        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4113     (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
4114     (synopsis "Roles which support overloading")
4115     (description "MooseX::Role::WithOverloading allows you to write a
4116 Moose::Role which defines overloaded operators and allows those overload
4117 methods to be composed into the classes/roles/instances it's compiled to,
4118 where plain Moose::Roles would lose the overloading.")
4119     (license (package-license perl))))
4121 (define-public perl-moosex-semiaffordanceaccessor
4122   (package
4123     (name "perl-moosex-semiaffordanceaccessor")
4124     (version "0.10")
4125     (source
4126      (origin
4127        (method url-fetch)
4128        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4129                            "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
4130        (sha256
4131         (base32
4132          "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
4133     (build-system perl-build-system)
4134     (propagated-inputs
4135      `(("perl-moose" ,perl-moose)))
4136     (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
4137     (synopsis "Name your accessors foo() and set_foo()")
4138     (description "This module does not provide any methods.  Simply loading it
4139 changes the default naming policy for the loading class so that accessors are
4140 separated into get and set methods.  The get methods have the same name as the
4141 accessor, while set methods are prefixed with \"_set_\".")
4142     (license artistic2.0)))
4144 (define-public perl-moosex-strictconstructor
4145   (package
4146     (name "perl-moosex-strictconstructor")
4147     (version "0.19")
4148     (source
4149      (origin
4150        (method url-fetch)
4151        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4152                            "MooseX-StrictConstructor-" version ".tar.gz"))
4153        (sha256
4154         (base32
4155          "0ccawja1kabgglrkdw5v82m1pbw189a0mnd33l43rs01d70p6ra8"))))
4156     (build-system perl-build-system)
4157     (native-inputs
4158      `(("perl-moose" ,perl-moose)
4159        ("perl-test-fatal" ,perl-test-fatal)))
4160     (propagated-inputs
4161      `(("perl-moose" ,perl-moose)
4162        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4163     (home-page "http://search.cpan.org/dist/MooseX-StrictConstructor")
4164     (synopsis "Strict object constructors for Moose")
4165     (description "Simply loading this module makes your constructors
4166 \"strict\".  If your constructor is called with an attribute init argument
4167 that your class does not declare, then it calls Moose->throw_error().")
4168     (license artistic2.0)))
4170 (define-public perl-moosex-traits-pluggable
4171   (package
4172     (name "perl-moosex-traits-pluggable")
4173     (version "0.12")
4174     (source
4175      (origin
4176        (method url-fetch)
4177        (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
4178                            "MooseX-Traits-Pluggable-" version ".tar.gz"))
4179        (sha256
4180         (base32
4181          "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
4182     (build-system perl-build-system)
4183     (native-inputs
4184      `(("perl-moose" ,perl-moose)
4185        ("perl-test-exception" ,perl-test-exception)))
4186     (propagated-inputs
4187      `(("perl-class-load" ,perl-class-load)
4188        ("perl-list-moreutils" ,perl-list-moreutils)
4189        ("perl-moose" ,perl-moose)
4190        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4191     (home-page
4192      "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
4193     (synopsis "Trait loading and resolution for Moose")
4194     (description "Adds support on top of MooseX::Traits for class precedence
4195 search for traits and some extra attributes.")
4196     (license (package-license perl))))
4198 (define-public perl-moosex-types
4199   (package
4200     (name "perl-moosex-types")
4201     (version "0.45")
4202     (source
4203      (origin
4204        (method url-fetch)
4205        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4206                            "MooseX-Types-" version ".tar.gz"))
4207        (sha256
4208         (base32
4209          "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
4210     (build-system perl-build-system)
4211     (native-inputs
4212      `(("perl-module-build" ,perl-module-build)
4213        ("perl-test-fatal" ,perl-test-fatal)
4214        ("perl-test-requires" ,perl-test-requires)))
4215     (propagated-inputs
4216      `(("perl-carp-clan" ,perl-carp-clan)
4217        ("perl-moose" ,perl-moose)
4218        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4219     (home-page "http://search.cpan.org/dist/MooseX-Types")
4220     (synopsis "Organise your Moose types in libraries")
4221     (description "This package lets you declare types using short names, but
4222 behind the scenes it namespaces all your type declarations, effectively
4223 prevent name clashes between packages.")
4224     (license (package-license perl))))
4226 (define-public perl-moosex-types-datetime
4227   (package
4228     (name "perl-moosex-types-datetime")
4229     (version "0.10")
4230     (source
4231      (origin
4232        (method url-fetch)
4233        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4234                            "MooseX-Types-DateTime-" version ".tar.gz"))
4235        (sha256
4236         (base32
4237          "03p66rx0qj2p23n2i2rj7c7x41621jzzaxscrpg95mb3mqmravc0"))))
4238     (build-system perl-build-system)
4239     (native-inputs
4240      `(("perl-module-build-tiny" ,perl-module-build-tiny)
4241        ("perl-moose" ,perl-moose)
4242        ("perl-test-fatal" ,perl-test-fatal)
4243        ("perl-test-simple" ,perl-test-simple)))
4244     (propagated-inputs
4245      `(("perl-datetime" ,perl-datetime)
4246        ("perl-datetime-locale" ,perl-datetime-locale)
4247        ("perl-datetime-timezone" ,perl-datetime-timezone)
4248        ("perl-moose" ,perl-moose)
4249        ("perl-moosex-types" ,perl-moosex-types)
4250        ("perl-namespace-clean" ,perl-namespace-clean)))
4251     (home-page "http://search.cpan.org/dist/MooseX-Types-DateTime")
4252     (synopsis "DateTime related constraints and coercions for Moose")
4253     (description "This module packages several Moose::Util::TypeConstraints
4254 with coercions, designed to work with the DateTime suite of objects.")
4255     (license (package-license perl))))
4257 (define-public perl-moosex-types-datetime-morecoercions
4258   (package
4259     (name "perl-moosex-types-datetime-morecoercions")
4260     (version "0.14")
4261     (source
4262      (origin
4263        (method url-fetch)
4264        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4265                            "MooseX-Types-DateTime-MoreCoercions-"
4266                            version ".tar.gz"))
4267        (sha256
4268         (base32
4269          "0888ns6fmvpcj5vh86n8mra9anq8jak7gf0b1z5hvww4birki6dn"))))
4270     (build-system perl-build-system)
4271     (native-inputs
4272      `(("perl-module-build-tiny" ,perl-module-build-tiny)
4273        ("perl-test-fatal" ,perl-test-fatal)
4274        ("perl-test-simple" ,perl-test-simple)))
4275     (propagated-inputs
4276      `(("perl-datetime" ,perl-datetime)
4277        ("perl-datetimex-easy" ,perl-datetimex-easy)
4278        ("perl-moose" ,perl-moose)
4279        ("perl-moosex-types" ,perl-moosex-types)
4280        ("perl-moosex-types-datetime" ,perl-moosex-types-datetime)
4281        ("perl-namespace-clean" ,perl-namespace-clean)
4282        ("perl-time-duration-parse" ,perl-time-duration-parse)))
4283     (home-page
4284      "http://search.cpan.org/dist/MooseX-Types-DateTime-MoreCoercions")
4285     (synopsis "Extensions to MooseX::Types::DateTime")
4286     (description "This module builds on MooseX::Types::DateTime to add
4287 additional custom types and coercions.  Since it builds on an existing type,
4288 all coercions and constraints are inherited.")
4289     (license (package-license perl))))
4291 (define-public perl-moosex-types-loadableclass
4292   (package
4293     (name "perl-moosex-types-loadableclass")
4294     (version "0.013")
4295     (source
4296      (origin
4297        (method url-fetch)
4298        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4299                            "MooseX-Types-LoadableClass-" version ".tar.gz"))
4300        (sha256
4301         (base32
4302          "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
4303     (build-system perl-build-system)
4304     (native-inputs
4305      `(("perl-module-build-tiny" ,perl-module-build-tiny)
4306        ("perl-namespace-clean" ,perl-namespace-clean)
4307        ("perl-moose" ,perl-moose)
4308        ("perl-test-fatal" ,perl-test-fatal)
4309        ("perl-class-load" ,perl-class-load)))
4310     (propagated-inputs
4311      `(("perl-module-runtime" ,perl-module-runtime)
4312        ("perl-moosex-types" ,perl-moosex-types)
4313        ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
4314     (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
4315     (synopsis "ClassName type constraints for Moose")
4316     (description "MooseX::Types::LoadableClass provides a ClassName type
4317 constraint with coercion to load the class.")
4318     (license (package-license perl))))
4320 (define-public perl-moox-types-mooselike
4321   (package
4322     (name "perl-moox-types-mooselike")
4323     (version "0.28")
4324     (source
4325      (origin
4326        (method url-fetch)
4327        (uri (string-append "mirror://cpan/authors/id/M/MA/MATEU/"
4328                            "MooX-Types-MooseLike-" version ".tar.gz"))
4329        (sha256
4330         (base32
4331          "15af2xmpari4vwjwxn1m9yzjfffkr2aiisqqfij31gxcdk15fpk3"))))
4332     (build-system perl-build-system)
4333     (native-inputs
4334      `(("perl-moo" ,perl-moo)
4335        ("perl-test-fatal" ,perl-test-fatal)))
4336     (propagated-inputs
4337      `(("perl-module-runtime" ,perl-module-runtime)
4338        ("perl-strictures" ,perl-strictures)))
4339     (home-page "http://search.cpan.org/dist/MooX-Types-MooseLike")
4340     (synopsis "Moosish types and type builder")
4341     (description "MooX::Types::MooseLike provides a possibility to build your
4342 own set of Moose-like types.  These custom types can then be used to describe
4343 fields in Moo-based classes.")
4344     (license (package-license perl))))
4346 (define-public perl-mro-compat
4347   (package
4348     (name "perl-mro-compat")
4349     (version "0.12")
4350     (source
4351      (origin
4352        (method url-fetch)
4353        (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
4354                            "MRO-Compat-" version ".tar.gz"))
4355        (sha256
4356         (base32
4357          "1mhma2g83ih9f8nkmg2k9l0x6izhhbb6k5lli4rpllxad4wbk9dv"))))
4358     (build-system perl-build-system)
4359     (home-page "http://search.cpan.org/dist/MRO-Compat")
4360     (synopsis "MRO interface compatibility for Perls < 5.9.5")
4361     (description "The \"mro\" namespace provides several utilities for dealing
4362 with method resolution order and method caching in general in Perl 5.9.5 and
4363 higher.  This module provides those interfaces for earlier versions of
4364 Perl (back to 5.6.0).")
4365     (license (package-license perl))))
4367 (define-public perl-namespace-autoclean
4368   (package
4369     (name "perl-namespace-autoclean")
4370     (version "0.24")
4371     (source
4372      (origin
4373        (method url-fetch)
4374        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4375                            "namespace-autoclean-" version ".tar.gz"))
4376        (sha256
4377         (base32
4378          "0msggbg2zbixxjq1fda19h0yygavxndfzc4j4pq11nfghmawjsb0"))))
4379     (build-system perl-build-system)
4380     (native-inputs
4381      `(("perl-module-build" ,perl-module-build)
4382        ("perl-test-requires" ,perl-test-requires)))
4383     (propagated-inputs
4384      `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
4385        ("perl-namespace-clean" ,perl-namespace-clean)
4386        ("perl-sub-identify" ,perl-sub-identify)))
4387     (home-page "http://search.cpan.org/dist/namespace-autoclean")
4388     (synopsis "Keep imports out of your namespace")
4389     (description "The namespace::autoclean pragma will remove all imported
4390 symbols at the end of the current package's compile cycle.  Functions called
4391 in the package itself will still be bound by their name, but they won't show
4392 up as methods on your class or instances.  It is very similar to
4393 namespace::clean, except it will clean all imported functions, no matter if
4394 you imported them before or after you used the pragma.  It will also not touch
4395 anything that looks like a method.")
4396     (license (package-license perl))))
4398 (define-public perl-namespace-clean
4399   (package
4400     (name "perl-namespace-clean")
4401     (version "0.25")
4402     (source
4403      (origin
4404        (method url-fetch)
4405        (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
4406                            "namespace-clean-" version ".tar.gz"))
4407        (sha256
4408         (base32
4409          "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
4410     (build-system perl-build-system)
4411     (propagated-inputs
4412      `(("perl-package-stash" ,perl-package-stash)
4413        ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
4414     (home-page "http://search.cpan.org/dist/namespace-clean")
4415     (synopsis "Keep imports and functions out of your namespace")
4416     (description "The namespace::clean pragma will remove all previously
4417 declared or imported symbols at the end of the current package's compile
4418 cycle.  Functions called in the package itself will still be bound by their
4419 name, but they won't show up as methods on your class or instances.")
4420     (license (package-license perl))))
4422 (define-public perl-net-statsd
4423   (package
4424    (name "perl-net-statsd")
4425    (version "0.12")
4426    (source
4427     (origin
4428       (method url-fetch)
4429       (uri (string-append
4430             "mirror://cpan/authors/id/C/CO/COSIMO/Net-Statsd-"
4431             version
4432             ".tar.gz"))
4433       (sha256
4434        (base32
4435         "0p2nhrwamic2fyj094y583q088ixv9gbb82c3invqrd17mh57r33"))))
4436    (build-system perl-build-system)
4437    (home-page
4438     "http://search.cpan.org/dist/Net-Statsd")
4439    (synopsis "Perl client for Etsy's statsd daemon")
4440    (description "This module implement a UDP client for the statsd statistics
4441 collector daemon in use at Etsy.com.")
4442    (license (package-license perl))))
4444 (define-public perl-number-compare
4445   (package
4446     (name "perl-number-compare")
4447     (version "0.03")
4448     (source
4449      (origin
4450        (method url-fetch)
4451        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4452                            "Number-Compare-" version ".tar.gz"))
4453        (sha256
4454         (base32
4455          "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
4456     (build-system perl-build-system)
4457     (home-page "http://search.cpan.org/dist/Number-Compare")
4458     (synopsis "Numeric comparisons")
4459     (description "Number::Compare compiles a simple comparison to an anonymous
4460 subroutine, which you can call with a value to be tested against.")
4461     (license (package-license perl))))
4463 (define-public perl-object-signature
4464   (package
4465     (name "perl-object-signature")
4466     (version "1.07")
4467     (source
4468      (origin
4469        (method url-fetch)
4470        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
4471                            "Object-Signature-" version ".tar.gz"))
4472        (sha256
4473         (base32
4474          "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
4475     (build-system perl-build-system)
4476     (home-page "http://search.cpan.org/dist/Object-Signature")
4477     (synopsis "Generate cryptographic signatures for objects")
4478     (description "Object::Signature is an abstract base class that you can
4479 inherit from in order to allow your objects to generate unique cryptographic
4480 signatures.")
4481     (license (package-license perl))))
4483 (define-public perl-package-anon
4484   (package
4485     (name "perl-package-anon")
4486     (version "0.05")
4487     (source
4488      (origin
4489        (method url-fetch)
4490        (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
4491                            "Package-Anon-" version ".tar.gz"))
4492        (sha256
4493         (base32
4494          "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
4495     (build-system perl-build-system)
4496     (propagated-inputs
4497      `(("perl-sub-exporter" ,perl-sub-exporter)
4498        ("perl-params-util" ,perl-params-util)))
4499     (home-page "http://search.cpan.org/dist/Package-Anon")
4500     (synopsis "Anonymous packages")
4501     (description "This module allows for anonymous packages that are
4502 independent of the main namespace and only available through an object
4503 instance, not by name.")
4504     (license (package-license perl))))
4506 (define-public perl-package-deprecationmanager
4507   (package
4508     (name "perl-package-deprecationmanager")
4509     (version "0.13")
4510     (source
4511      (origin
4512        (method url-fetch)
4513        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4514                            "Package-DeprecationManager-" version ".tar.gz"))
4515        (sha256
4516         (base32
4517          "0fkvq3xxwc3l5hg64dr9sj3l12dl59i44cg407qx9sd6r51j3qfi"))))
4518     (build-system perl-build-system)
4519     (native-inputs
4520      `(("perl-test-fatal" ,perl-test-fatal)
4521        ("perl-test-requires" ,perl-test-requires)
4522        ("perl-test-output" ,perl-test-output)))
4523     (propagated-inputs
4524      `(("perl-list-moreutils" ,perl-list-moreutils)
4525        ("perl-params-util" ,perl-params-util)
4526        ("perl-sub-install" ,perl-sub-install)))
4527     (arguments `(#:tests? #f))          ;XXX: Failing for some reason...
4528     (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
4529     (synopsis "Manage deprecation warnings for your distribution")
4530     (description "This module allows you to manage a set of deprecations for
4531 one or more modules.")
4532     (license artistic2.0)))
4534 (define-public perl-package-stash
4535   (package
4536     (name "perl-package-stash")
4537     (version "0.37")
4538     (source
4539      (origin
4540        (method url-fetch)
4541        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4542                            "Package-Stash-" version ".tar.gz"))
4543        (sha256
4544         (base32
4545          "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
4546     (build-system perl-build-system)
4547     (native-inputs
4548      `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4549        ("perl-test-fatal" ,perl-test-fatal)
4550        ("perl-test-requires" ,perl-test-requires)
4551        ("perl-package-anon" ,perl-package-anon)))
4552     (propagated-inputs
4553      `(("perl-module-implementation" ,perl-module-implementation)
4554        ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
4555        ("perl-package-stash-xs" ,perl-package-stash-xs)))
4556     (home-page "http://search.cpan.org/dist/Package-Stash")
4557     (synopsis "Routines for manipulating stashes")
4558     (description "Manipulating stashes (Perl's symbol tables) is occasionally
4559 necessary, but incredibly messy, and easy to get wrong.  This module hides all
4560 of that behind a simple API.")
4561     (license (package-license perl))))
4563 (define-public perl-package-stash-xs
4564   (package
4565     (name "perl-package-stash-xs")
4566     (version "0.28")
4567     (source
4568      (origin
4569        (method url-fetch)
4570        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4571                            "Package-Stash-XS-" version ".tar.gz"))
4572        (sha256
4573         (base32
4574          "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
4575     (build-system perl-build-system)
4576     (native-inputs
4577      `(("perl-test-fatal" ,perl-test-fatal)
4578        ("perl-test-requires" ,perl-test-requires)
4579        ("perl-package-anon" ,perl-package-anon)))
4580     (home-page "http://search.cpan.org/dist/Package-Stash-XS")
4581     (synopsis "Faster implementation of the Package::Stash API")
4582     (description "This is a backend for Package::Stash, which provides the
4583 functionality in a way that's less buggy and much faster.  It will be used by
4584 default if it's installed, and should be preferred in all environments with a
4585 compiler.")
4586     (license (package-license perl))))
4588 (define-public perl-padwalker
4589   (package
4590     (name "perl-padwalker")
4591     (version "2.0")
4592     (source
4593      (origin
4594        (method url-fetch)
4595        (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
4596                            "PadWalker-" version ".tar.gz"))
4597        (sha256
4598         (base32
4599          "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
4600     (build-system perl-build-system)
4601     (home-page "http://search.cpan.org/dist/PadWalker")
4602     (synopsis "Play with other peoples' lexical variables")
4603     (description "PadWalker is a module which allows you to inspect (and even
4604 change) lexical variables in any subroutine which called you.  It will only
4605 show those variables which are in scope at the point of the call.  PadWalker
4606 is particularly useful for debugging.")
4607     (license (package-license perl))))
4609 (define-public perl-params-util
4610   (package
4611     (name "perl-params-util")
4612     (version "1.07")
4613     (source
4614      (origin
4615        (method url-fetch)
4616        (uri (string-append
4617              "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
4618              version ".tar.gz"))
4619        (sha256
4620         (base32
4621          "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
4622     (build-system perl-build-system)
4623     (home-page "http://search.cpan.org/dist/Params-Util")
4624     (synopsis "Simple, compact and correct param-checking functions")
4625     (description
4626      "Params::Util provides a basic set of importable functions that makes
4627 checking parameters easier.")
4628     (license (package-license perl))))
4630 (define-public perl-params-validate
4631   (package
4632     (name "perl-params-validate")
4633     (version "1.17")
4634     (source
4635      (origin
4636        (method url-fetch)
4637        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4638                            "Params-Validate-" version ".tar.gz"))
4639        (sha256
4640         (base32
4641          "1wh23i9kkma6493c0q1kvy6wmahd6spg6xm3xbp2ar1iy1xhks5l"))))
4642     (build-system perl-build-system)
4643     (native-inputs
4644      `(("perl-module-build" ,perl-module-build)
4645        ("perl-test-fatal" ,perl-test-fatal)
4646        ("perl-test-requires" ,perl-test-requires)))
4647     (propagated-inputs
4648      `(("perl-module-implementation" ,perl-module-implementation)))
4649     (home-page "http://search.cpan.org/dist/Params-Validate")
4650     (synopsis "Validate method/function parameters")
4651     (description "The Params::Validate module allows you to validate method or
4652 function call parameters to an arbitrary level of specificity.")
4653     (license artistic2.0)))
4655 (define-public perl-par-dist
4656   (package
4657     (name "perl-par-dist")
4658     (version "0.49")
4659     (source
4660      (origin
4661        (method url-fetch)
4662        (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
4663                            "PAR-Dist-" version ".tar.gz"))
4664        (sha256
4665         (base32
4666          "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
4667     (build-system perl-build-system)
4668     (home-page "http://search.cpan.org/dist/PAR-Dist")
4669     (synopsis "Create and manipulate PAR distributions")
4670     (description "PAR::Dist is a toolkit to create and manipulate PAR
4671 distributions.")
4672     (license (package-license perl))))
4674 (define-public perl-parent
4675   (package
4676     (name "perl-parent")
4677     (version "0.228")
4678     (source
4679      (origin
4680        (method url-fetch)
4681        (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
4682                            "parent-" version ".tar.gz"))
4683        (sha256
4684         (base32
4685          "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
4686     (build-system perl-build-system)
4687     (home-page "http://search.cpan.org/dist/parent")
4688     (synopsis "Establish an ISA relationship with base classes at compile time")
4689     (description "Allows you to both load one or more modules, while setting
4690 up inheritance from those modules at the same time.")
4691     (license (package-license perl))))
4693 (define-public perl-path-class
4694   (package
4695     (name "perl-path-class")
4696     (version "0.35")
4697     (source
4698      (origin
4699        (method url-fetch)
4700        (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
4701                            "Path-Class-" version ".tar.gz"))
4702        (sha256
4703         (base32
4704          "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
4705     (build-system perl-build-system)
4706     (native-inputs `(("perl-module-build" ,perl-module-build)))
4707     (home-page "http://search.cpan.org/dist/Path-Class")
4708     (synopsis "Path specification manipulation")
4709     (description "Path::Class is a module for manipulation of file and
4710 directory specifications in a cross-platform manner.")
4711     (license (package-license perl))))
4713 (define-public perl-path-tiny
4714   (package
4715     (name "perl-path-tiny")
4716     (version "0.096")
4717     (source (origin
4718               (method url-fetch)
4719               (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4720                                   "Path-Tiny-" version ".tar.gz"))
4721               (sha256
4722                (base32
4723                 "08dmr6ijjg3dp7h9dxix0nmad0fw16c6qzs4qc0hdz500gd64sr2"))))
4724     (build-system perl-build-system)
4725     (arguments
4726      `(#:tests? #f)) ; Tests require additional test modules to be packaged
4727     ;; (native-inputs
4728     ;;  `(("perl-test-failwarnings" ,perl-test-failwarnings)
4729     ;;    ("perl-test-mockrandom" ,perl-test-mockrandom)))
4730     (inputs
4731      `(("perl-unicode-utf8" ,perl-unicode-utf8)))
4732     (home-page "http://search.cpan.org/dist/Path-Tiny")
4733     (synopsis "File path utility")
4734     (description "This module provides a small, fast utility for working
4735 with file paths.")
4736     (license asl2.0)))
4738 (define-public perl-perlio-utf8_strict
4739   (package
4740     (name "perl-perlio-utf8-strict")
4741     (version "0.006")
4742     (source (origin
4743               (method url-fetch)
4744               (uri (string-append
4745                     "mirror://cpan/authors/id/L/LE/LEONT/PerlIO-utf8_strict-"
4746                     version ".tar.gz"))
4747               (sha256
4748                (base32
4749                 "0qnmiflirfq10jkmrxyy81ch6hzyndfzxqf8maif0fy44kk1004q"))))
4750     (build-system perl-build-system)
4751     (native-inputs
4752      `(("perl-test-exception" ,perl-test-exception)))
4753     (home-page
4754      "http://search.cpan.org/dist/PerlIO-utf8_strict")
4755     (synopsis "Fast and correct UTF-8 IO")
4756     (description "@code{PerlIO::utf8_strict} provides a fast and correct UTF-8
4757 PerlIO layer.  Unlike Perl's default @code{:utf8} layer it checks the input
4758 for correctness.")
4759     (license (package-license perl))))
4761 (define-public perl-pod-coverage
4762   (package
4763     (name "perl-pod-coverage")
4764     (version "0.23")
4765     (source
4766      (origin
4767        (method url-fetch)
4768        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4769                            "Pod-Coverage-" version ".tar.gz"))
4770        (sha256
4771         (base32
4772          "01xifj83dv492lxixijmg6va02rf3ydlxly0a9slmx22r6qa1drh"))))
4773     (build-system perl-build-system)
4774     (propagated-inputs
4775      `(("perl-devel-symdump" ,perl-devel-symdump)))
4776     (home-page "http://search.cpan.org/dist/Pod-Coverage")
4777     (synopsis "Check for comprehensive documentation of a module")
4778     (description "This module provides a mechanism for determining if the pod
4779 for a given module is comprehensive.")
4780     (license (package-license perl))))
4782 (define-public perl-pod-simple
4783   (package
4784     (name "perl-pod-simple")
4785     (version "3.31")
4786     (source (origin
4787               (method url-fetch)
4788               (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/"
4789                                   "Pod-Simple-" version ".tar.gz"))
4790               (sha256
4791                (base32
4792                 "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l"))))
4793     (build-system perl-build-system)
4794     (home-page "http://search.cpan.org/dist/Pod-Simple/")
4795     (synopsis "Parsing library for text in Pod format")
4796     (description "Pod::Simple is a Perl library for parsing text in
4797 the Pod (plain old documentation) markup language that is typically
4798 used for writing documentation for Perl and for Perl modules.")
4799     (license (package-license perl))))
4801 (define-public perl-posix-strftime-compiler
4802   (package
4803     (name "perl-posix-strftime-compiler")
4804     (version "0.41")
4805     (source
4806      (origin
4807        (method url-fetch)
4808        (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
4809                            "POSIX-strftime-Compiler-" version ".tar.gz"))
4810        (sha256
4811         (base32
4812          "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
4813     (build-system perl-build-system)
4814     (native-inputs `(("perl-module-build" ,perl-module-build)))
4815     (arguments `(#:tests? #f))          ;TODO: Timezone test failures
4816     (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
4817     (synopsis "GNU C library compatible strftime for loggers and servers")
4818     (description "POSIX::strftime::Compiler provides GNU C library compatible
4819 strftime(3).  But this module is not affected by the system locale.  This
4820 feature is useful when you want to write loggers, servers, and portable
4821 applications.")
4822     (license (package-license perl))))
4824 (define-public perl-probe-perl
4825   (package
4826     (name "perl-probe-perl")
4827     (version "0.03")
4828     (source (origin
4829               (method url-fetch)
4830               (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
4831                                   "Probe-Perl-" version ".tar.gz"))
4832               (sha256
4833                (base32
4834                 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
4835     (build-system perl-build-system)
4836     (synopsis "Information about the currently running perl")
4837     (description
4838      "Probe::Perl provides methods for obtaining information about the
4839 currently running perl interpreter.  It originally began life as code in the
4840 Module::Build project, but has been externalized here for general use.")
4841     (home-page (string-append "http://search.cpan.org/~kwilliams/"
4842                               "Probe-Perl-" version))
4843     (license (package-license perl))))
4845 (define-public perl-readonly
4846   (package
4847     (name "perl-readonly")
4848     (version "2.00")
4849     (source
4850      (origin
4851        (method url-fetch)
4852        (uri (string-append "mirror://cpan/authors/id/S/SA/SANKO/"
4853                            "Readonly-" version ".tar.gz"))
4854        (sha256
4855         (base32
4856          "165zcf9lpijdpkx82za0g9rx8ckjnhipmcivdkyzshl8jmp1bl4v"))))
4857     (build-system perl-build-system)
4858     (native-inputs `(("perl-module-build" ,perl-module-build)))
4859     (home-page "http://search.cpan.org/dist/Readonly")
4860     (synopsis "Create read-only scalars, arrays, hashes")
4861     (description "This module provides a facility for creating non-modifiable
4862 variables in Perl.  This is useful for configuration files, headers, etc.  It
4863 can also be useful as a development and debugging tool for catching updates to
4864 variables that should not be changed.")
4865     (license (package-license perl))))
4867 (define-public perl-regexp-common
4868   (package
4869     (name "perl-regexp-common")
4870     (version "2013031301")
4871     (source (origin
4872               (method url-fetch)
4873               (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
4874                                   "Regexp-Common-" version ".tar.gz"))
4875               (sha256
4876                (base32
4877                 "112wybsm0vr8yfannx6sdfvgp5vza28gjgr3pgn69ak4sac836kj"))))
4878     (build-system perl-build-system)
4879     (synopsis "Provide commonly requested regular expressions")
4880     (description
4881      "This module exports a single hash (`%RE') that stores or generates
4882 commonly needed regular expressions.  Patterns currently provided include:
4883 balanced parentheses and brackets, delimited text (with escapes), integers and
4884 floating-point numbers in any base (up to 36), comments in 44 languages,
4885 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
4886 codes.")
4887     (home-page (string-append "http://search.cpan.org/~abigail/"
4888                               "Regexp-Common-" version))
4889     ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
4890     (license (list (package-license perl) x11 bsd-3))))
4892 (define-public perl-role-tiny
4893   (package
4894     (name "perl-role-tiny")
4895     (version "1.003004")
4896     (source
4897      (origin
4898        (method url-fetch)
4899        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
4900                            "Role-Tiny-" version ".tar.gz"))
4901        (sha256
4902         (base32
4903          "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
4904     (build-system perl-build-system)
4905     (native-inputs
4906      `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
4907        ("perl-test-fatal" ,perl-test-fatal)))
4908     (propagated-inputs
4909      `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
4910     (home-page "http://search.cpan.org/dist/Role-Tiny")
4911     (synopsis "Roles, as a slice of Moose")
4912     (description "Role::Tiny is a minimalist role composition tool.")
4913     (license (package-license perl))))
4915 (define-public perl-safe-isa
4916   (package
4917     (name "perl-safe-isa")
4918     (version "1.000005")
4919     (source
4920      (origin
4921        (method url-fetch)
4922        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4923                            "Safe-Isa-" version ".tar.gz"))
4924        (sha256
4925         (base32
4926          "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
4927     (build-system perl-build-system)
4928     (home-page "http://search.cpan.org/dist/Safe-Isa")
4929     (synopsis "Call isa, can, does, and DOES safely")
4930     (description "This module allows you to call isa, can, does, and DOES
4931 safely on things that may not be objects.")
4932     (license (package-license perl))))
4934 (define-public perl-scope-guard
4935   (package
4936     (name "perl-scope-guard")
4937     (version "0.20")
4938     (source
4939      (origin
4940        (method url-fetch)
4941        (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
4942                            "Scope-Guard-" version ".tar.gz"))
4943        (sha256
4944         (base32
4945          "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
4946     (build-system perl-build-system)
4947     (home-page "http://search.cpan.org/dist/Scope-Guard")
4948     (synopsis "Lexically-scoped resource management")
4949     (description "This module provides a convenient way to perform cleanup or
4950 other forms of resource management at the end of a scope.  It is particularly
4951 useful when dealing with exceptions: the Scope::Guard constructor takes a
4952 reference to a subroutine that is guaranteed to be called even if the thread
4953 of execution is aborted prematurely.  This effectively allows lexically-scoped
4954 \"promises\" to be made that are automatically honoured by perl's garbage
4955 collector.")
4956     (license (package-license perl))))
4958 (define-public perl-set-infinite
4959   (package
4960     (name "perl-set-infinite")
4961     (version "0.65")
4962     (source
4963      (origin
4964        (method url-fetch)
4965        (uri (string-append "mirror://cpan/authors/id/F/FG/FGLOCK/"
4966                            "Set-Infinite-" version ".tar.gz"))
4967        (sha256
4968         (base32
4969          "07vyp0jpndcxkbyjk432nillxxk22wrmm2rs985y8ba96h3qig07"))))
4970     (build-system perl-build-system)
4971     (home-page "http://search.cpan.org/dist/Set-Infinite")
4972     (synopsis "Infinite sets")
4973     (description "Set::Infinite is a set theory module for infinite sets.")
4974     (license (package-license perl))))
4976 (define-public perl-set-object
4977   (package
4978     (name "perl-set-object")
4979     (version "1.35")
4980     (source
4981      (origin
4982        (method url-fetch)
4983        (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
4984                            "Set-Object-" version ".tar.gz"))
4985        (sha256
4986         (base32
4987          "1rqf11274s3h17jgbimmg47k4fmayifajqwaa6lgm0z5qdy4v6hq"))))
4988     (build-system perl-build-system)
4989     (propagated-inputs
4990      `(("perl-moose" ,perl-moose)
4991        ("perl-test-leaktrace" ,perl-test-leaktrace)))
4992     (home-page "http://search.cpan.org/dist/Set-Object")
4993     (synopsis "Unordered collections of Perl Objects")
4994     (description "Set::Object provides efficient sets, unordered collections
4995 of Perl objects without duplicates for scalars and references.")
4996     (license artistic2.0)))
4998 (define-public perl-set-scalar
4999   (package
5000     (name "perl-set-scalar")
5001     (version "1.29")
5002     (source
5003      (origin
5004        (method url-fetch)
5005        (uri (string-append "mirror://cpan/authors/id/D/DA/DAVIDO/"
5006                            "Set-Scalar-" version ".tar.gz"))
5007        (sha256
5008         (base32
5009          "07aiqkyi1p22drpcyrrmv7f8qq6fhrxh007achy2vryxyck1bp53"))))
5010     (build-system perl-build-system)
5011     (home-page "http://search.cpan.org/dist/Set-Scalar")
5012     (synopsis "Set operations for Perl")
5013     (description "The first priority of Set::Scalar is to be a convenient
5014 interface to sets (as in: unordered collections of Perl scalars).  While not
5015 designed to be slow or big, neither has it been designed to be fast or
5016 compact.")
5017     (license (package-license perl))))
5019 (define-public perl-spiffy
5020   (package
5021     (name "perl-spiffy")
5022     (version "0.46")
5023     (source
5024      (origin
5025        (method url-fetch)
5026        (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
5027                            "Spiffy-" version ".tar.gz"))
5028        (sha256
5029         (base32
5030          "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
5031     (build-system perl-build-system)
5032     (home-page "http://search.cpan.org/dist/Spiffy")
5033     (synopsis "Spiffy Perl Interface Framework For You")
5034     (description "Spiffy is a framework and methodology for doing object
5035 oriented (OO) programming in Perl.  Spiffy combines the best parts of
5036 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
5037 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
5038 straightforward and (perhaps someday) standard way.  Spiffy borrows ideas from
5039 other OO languages like Python, Ruby, Java and Perl 6.")
5040     (license (package-license perl))))
5042 (define-public perl-stream-buffered
5043   (package
5044     (name "perl-stream-buffered")
5045     (version "0.03")
5046     (source
5047      (origin
5048        (method url-fetch)
5049        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
5050                            "Stream-Buffered-" version ".tar.gz"))
5051        (sha256
5052         (base32
5053          "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
5054     (build-system perl-build-system)
5055     (home-page "http://search.cpan.org/dist/Stream-Buffered")
5056     (synopsis "Temporary buffer to save bytes")
5057     (description "Stream::Buffered is a buffer class to store arbitrary length
5058 of byte strings and then get a seekable filehandle once everything is
5059 buffered.  It uses PerlIO and/or temporary file to save the buffer depending
5060 on the length of the size.")
5061     (license (package-license perl))))
5063 (define-public perl-strictures
5064   (package
5065     (name "perl-strictures")
5066     (version "1.005005")
5067     (source
5068      (origin
5069        (method url-fetch)
5070        (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
5071                            "strictures-" version ".tar.gz"))
5072        (sha256
5073         (base32
5074          "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
5075     (build-system perl-build-system)
5076     (home-page "http://search.cpan.org/dist/strictures")
5077     (synopsis "Turn on strict and make all warnings fatal")
5078     (description "Strictures turns on strict and make all warnings fatal when
5079 run from within a source-controlled directory.")
5080     (license (package-license perl))))
5082 (define-public perl-string-camelcase
5083   (package
5084     (name "perl-string-camelcase")
5085     (version "0.02")
5086     (source
5087      (origin
5088        (method url-fetch)
5089        (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
5090                            "String-CamelCase-" version ".tar.gz"))
5091        (sha256
5092         (base32
5093          "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
5094     (build-system perl-build-system)
5095     (home-page "http://search.cpan.org/dist/String-CamelCase")
5096     (synopsis "Camelcase and de-camelcase")
5097     (description "This module may be used to convert from under_score text to
5098 CamelCase and back again.")
5099     (license (package-license perl))))
5101 (define-public perl-string-rewriteprefix
5102   (package
5103     (name "perl-string-rewriteprefix")
5104     (version "0.007")
5105     (source
5106      (origin
5107        (method url-fetch)
5108        (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5109                            "String-RewritePrefix-" version ".tar.gz"))
5110        (sha256
5111         (base32
5112          "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
5113     (build-system perl-build-system)
5114     (propagated-inputs
5115      `(("perl-sub-exporter" ,perl-sub-exporter)))
5116     (home-page "http://search.cpan.org/dist/String-RewritePrefix")
5117     (synopsis "Rewrite strings based on a set of known prefixes")
5118     (description "This module allows you to rewrite strings based on a set of
5119 known prefixes.")
5120     (license (package-license perl))))
5122 (define-public perl-string-print
5123   (package
5124     (name "perl-string-print")
5125     (version "0.15")
5126     (source (origin
5127               (method url-fetch)
5128               (uri (string-append "mirror://cpan/authors/id/M/MA/MARKOV/"
5129                                   "String-Print-" version ".tar.gz"))
5130               (sha256
5131                (base32
5132                 "1n9lc5dr66sg89hym47764fyfms7vrxrhwvdps2x8x8gxly7rsdl"))))
5133     (build-system perl-build-system)
5134     (propagated-inputs
5135      `(("perl-unicode-linebreak" ,perl-unicode-linebreak)))
5136     (home-page "http://search.cpan.org/dist/String-Print")
5137     (synopsis "String printing alternatives to printf")
5138     (description
5139      "This module inserts values into (translated) strings.  It provides
5140 @code{printf} and @code{sprintf} alternatives via both an object-oriented and
5141 a functional interface.")
5142     (license (package-license perl))))
5144 (define-public perl-sub-exporter
5145   (package
5146     (name "perl-sub-exporter")
5147     (version "0.987")
5148     (source
5149      (origin
5150        (method url-fetch)
5151        (uri (string-append
5152              "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
5153              version ".tar.gz"))
5154        (sha256
5155         (base32
5156          "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
5157     (build-system perl-build-system)
5158     (propagated-inputs
5159      `(("perl-data-optlist" ,perl-data-optlist)
5160        ("perl-params-util" ,perl-params-util)))
5161     (home-page "http://search.cpan.org/dist/Sub-Exporter")
5162     (synopsis "Sophisticated exporter for custom-built routines")
5163     (description
5164      "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
5165 custom-built routines.")
5166     (license (package-license perl))))
5168 (define-public perl-sub-exporter-progressive
5169   (package
5170     (name "perl-sub-exporter-progressive")
5171     (version "0.001011")
5172     (source
5173      (origin
5174        (method url-fetch)
5175        (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
5176                            "Sub-Exporter-Progressive-" version ".tar.gz"))
5177        (sha256
5178         (base32
5179          "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
5180     (build-system perl-build-system)
5181     (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
5182     (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
5183     (synopsis "Only use Sub::Exporter if you need it")
5184     (description "Sub::Exporter is an incredibly powerful module, but with
5185 that power comes great responsibility, as well as some runtime penalties.
5186 This module is a \"Sub::Exporter\" wrapper that will let your users just use
5187 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
5188 if your users try to use \"Sub::Exporter\"'s more advanced features, like
5189 renaming exports, if they try to use them.")
5190     (license (package-license perl))))
5192 (define-public perl-sub-identify
5193   (package
5194     (name "perl-sub-identify")
5195     (version "0.10")
5196     (source
5197      (origin
5198        (method url-fetch)
5199        (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
5200                            "Sub-Identify-" version ".tar.gz"))
5201        (sha256
5202         (base32
5203          "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
5204     (build-system perl-build-system)
5205     (home-page "http://search.cpan.org/dist/Sub-Identify")
5206     (synopsis "Retrieve names of code references")
5207     (description "Sub::Identify allows you to retrieve the real name of code
5208 references.")
5209     (license (package-license perl))))
5211 (define-public perl-sub-install
5212   (package
5213     (name "perl-sub-install")
5214     (version "0.928")
5215     (source
5216      (origin
5217        (method url-fetch)
5218        (uri (string-append
5219              "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
5220              version ".tar.gz"))
5221        (sha256
5222         (base32
5223          "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
5224     (build-system perl-build-system)
5225     (home-page "http://search.cpan.org/dist/Sub-Install")
5226     (synopsis "Install subroutines into packages easily")
5227     (description
5228      "Sub::Install makes it easy to install subroutines into packages without
5229 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
5230 can see them.")
5231     (license (package-license perl))))
5233 (define-public perl-sub-name
5234   (package
5235     (name "perl-sub-name")
5236     (version "0.12")
5237     (source
5238      (origin
5239        (method url-fetch)
5240        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5241                            "Sub-Name-" version ".tar.gz"))
5242        (sha256
5243         (base32
5244          "1sdlc8pv7vyyc48gzh70hbwzn0hzwl3zbcy2dkmfw8vjzgya5i06"))))
5245     (build-system perl-build-system)
5246     (native-inputs
5247      `(("perl-devel-checkbin" ,perl-devel-checkbin)))
5248     (home-page "http://search.cpan.org/dist/Sub-Name")
5249     (synopsis "(Re)name a sub")
5250     (description "Assigns a new name to referenced sub.  If package
5251 specification is omitted in the name, then the current package is used.  The
5252 return value is the sub.")
5253     (license (package-license perl))))
5255 (define-public perl-sub-uplevel
5256   (package
5257     (name "perl-sub-uplevel")
5258     (version "0.24")
5259     (source
5260      (origin
5261        (method url-fetch)
5262        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
5263                            "Sub-Uplevel-" version ".tar.gz"))
5264        (sha256
5265         (base32
5266          "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
5267     (build-system perl-build-system)
5268     (home-page "http://search.cpan.org/dist/Sub-Uplevel")
5269     (synopsis "Apparently run a function in a higher stack frame")
5270     (description "Like Tcl's uplevel() function, but not quite so dangerous.
5271 The idea is just to fool caller().  All the really naughty bits of Tcl's
5272 uplevel() are avoided.")
5273     (license (package-license perl))))
5275 (define-public perl-svg
5276   (package
5277     (name "perl-svg")
5278     (version "2.63")
5279     (source
5280      (origin
5281        (method url-fetch)
5282        (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
5283                            version ".tar.gz"))
5284        (sha256
5285         (base32
5286          "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
5287     (build-system perl-build-system)
5288     (home-page "http://search.cpan.org/dist/SVG")
5289     (synopsis "Perl extension for generating SVG documents")
5290     (description "SVG is a Perl module which generates a nested data structure
5291 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
5292 Using SVG, you can generate SVG objects, embed other SVG instances into it,
5293 access the DOM object, create and access Javascript, and generate SMIL
5294 animation content.")
5295     (license (package-license perl))))
5297 (define-public perl-sys-cpu
5298   (package
5299     (name "perl-sys-cpu")
5300     (version "0.61")
5301     (source (origin
5302               (method url-fetch)
5303               (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
5304                                   "Sys-CPU-" version ".tar.gz"))
5305               (sha256
5306                (base32
5307                 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
5308     (build-system perl-build-system)
5309     (synopsis "Perl extension for getting CPU information")
5310     (description
5311      "In responce to a post on perlmonks.org, a module for counting the number
5312 of CPU's on a system.  Support has now also been added for type of CPU and
5313 clock speed.")
5314     (home-page (string-append "http://search.cpan.org/~mzsanford/"
5315                               "Sys-CPU-" version))
5316     (license (package-license perl))))
5318 (define-public perl-sys-hostname-long
5319   (package
5320     (name "perl-sys-hostname-long")
5321     (version "1.5")
5322     (source
5323      (origin
5324        (method url-fetch)
5325        (uri (string-append "mirror://cpan/authors/id/S/SC/SCOTT/"
5326                            "Sys-Hostname-Long-" version ".tar.gz"))
5327        (sha256
5328         (base32
5329          "1jv5n8jv48c1p8svjsigyxndv1ygsq8wgwj9c7ypx1vaf3rns679"))))
5330     (build-system perl-build-system)
5331     (arguments `(#:tests? #f))          ;no `hostname' during build
5332     (home-page "http://search.cpan.org/dist/Sys-Hostname-Long")
5333     (synopsis "Get full hostname in Perl")
5334     (description "Sys::Hostname::Long tries very hard to get the full hostname
5335 of a system.")
5336     (license (package-license perl))))
5338 (define-public perl-task-weaken
5339   (package
5340     (name "perl-task-weaken")
5341     (version "1.04")
5342     (source
5343      (origin
5344        (method url-fetch)
5345        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5346                            "Task-Weaken-" version ".tar.gz"))
5347        (sha256
5348         (base32
5349          "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
5350     (build-system perl-build-system)
5351     (home-page "http://search.cpan.org/dist/Task-Weaken")
5352     (synopsis "Ensure that a platform has weaken support")
5353     (description "One recurring problem in modules that use Scalar::Util's
5354 weaken function is that it is not present in the pure-perl variant.  If
5355 Scalar::Util is not available at all, it will issue a normal dependency on the
5356 module.  However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
5357 module does not have weaken, the install will bail out altogether with a long
5358 error encouraging the user to seek support.")
5359     (license (package-license perl))))
5361 (define-public perl-template-toolkit
5362   (package
5363     (name "perl-template-toolkit")
5364     (version "2.26")
5365     (source
5366      (origin
5367        (method url-fetch)
5368        (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
5369                            "Template-Toolkit-" version ".tar.gz"))
5370        (sha256
5371         (base32
5372          "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
5373     (build-system perl-build-system)
5374     (propagated-inputs
5375      `(("perl-appconfig" ,perl-appconfig)
5376        ("perl-test-leaktrace" ,perl-test-leaktrace)))
5377     (home-page "http://search.cpan.org/dist/Template-Toolkit")
5378     (synopsis "Template processing system for Perl")
5379     (description "The Template Toolkit is a collection of modules which
5380 implement an extensible template processing system.  It was originally
5381 designed and remains primarily useful for generating dynamic web content, but
5382 it can be used equally well for processing any other kind of text based
5383 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
5384     (license (package-license perl))))
5386 (define-public perl-template-timer
5387   (package
5388     (name "perl-template-timer")
5389     (version "1.00")
5390     (source
5391      (origin
5392        (method url-fetch)
5393        (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
5394                            "Template-Timer-" version ".tar.gz"))
5395        (sha256
5396         (base32
5397          "1d3pbcx1kz73ncg8s8lx3ifwphz838qy0m40gdar7790cnrlqcdp"))))
5398     (build-system perl-build-system)
5399     (propagated-inputs
5400      `(("perl-template-toolkit" ,perl-template-toolkit)))
5401     (home-page "http://search.cpan.org/dist/Template-Timer")
5402     (synopsis "Profiling for Template Toolkit")
5403     (description "Template::Timer provides inline profiling of the template
5404 processing in Perl code.")
5405     (license (list gpl3 artistic2.0))))
5407 (define-public perl-term-encoding
5408   (package
5409     (name "perl-term-encoding")
5410     (version "0.02")
5411     (source
5412      (origin
5413        (method url-fetch)
5414        (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
5415                            "Term-Encoding-" version ".tar.gz"))
5416        (sha256
5417         (base32
5418          "1k6g4q7snxggv5fdqnzw29al4mwbwg0hl0skzfnczh508qiyfx7j"))))
5419     (build-system perl-build-system)
5420     (home-page "http://search.cpan.org/dist/Term-Encoding")
5421     (synopsis "Detect encoding of the current terminal")
5422     (description "Term::Encoding is a simple module to detect the encoding of
5423 the current terminal expects in various ways.")
5424     (license (package-license perl))))
5426 (define-public perl-term-progressbar
5427   (package
5428     (name "perl-term-progressbar")
5429     (version "2.17")
5430     (source
5431      (origin
5432        (method url-fetch)
5433        (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
5434                            "Term-ProgressBar-" version ".tar.gz"))
5435        (sha256
5436         (base32
5437          "15pn42zf793dplpfnmawh7v7xc4qm38s1jhvn1agx4cafcn61q61"))))
5438     (build-system perl-build-system)
5439     (native-inputs
5440      `(("perl-capture-tiny" ,perl-capture-tiny)
5441        ("perl-test-exception" ,perl-test-exception)))
5442     (propagated-inputs
5443      `(("perl-class-methodmaker" ,perl-class-methodmaker)
5444        ("perl-term-readkey" ,perl-term-readkey)))
5445     (home-page "http://search.cpan.org/dist/Term-ProgressBar")
5446     (synopsis "Progress meter on a standard terminal")
5447     (description "Term::ProgressBar provides a simple progress bar on the
5448 terminal, to let the user know that something is happening, roughly how much
5449 stuff has been done, and maybe an estimate at how long remains.")
5450     (license (package-license perl))))
5452 (define-public perl-term-progressbar-quiet
5453   (package
5454     (name "perl-term-progressbar-quiet")
5455     (version "0.31")
5456     (source
5457      (origin
5458        (method url-fetch)
5459        (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
5460                            "Term-ProgressBar-Quiet-" version ".tar.gz"))
5461        (sha256
5462         (base32
5463          "19l4476iinwz19vh360k3rss38m9gmkg633i5v9jkg48yn954rr5"))))
5464     (build-system perl-build-system)
5465     (propagated-inputs
5466      `(("perl-io-interactive" ,perl-io-interactive)
5467        ("perl-term-progressbar" ,perl-term-progressbar)
5468        ("perl-test-mockobject" ,perl-test-mockobject)))
5469     (home-page "http://search.cpan.org/dist/Term-ProgressBar-Quiet")
5470     (synopsis "Progress meter if run interactively")
5471     (description "Term::ProgressBar is a wonderful module for showing progress
5472 bars on the terminal.  This module acts very much like that module when it is
5473 run interactively.  However, when it is not run interactively (for example, as
5474 a cron job) then it does not show the progress bar.")
5475     (license (package-license perl))))
5477 (define-public perl-term-progressbar-simple
5478   (package
5479     (name "perl-term-progressbar-simple")
5480     (version "0.03")
5481     (source
5482      (origin
5483        (method url-fetch)
5484        (uri (string-append "mirror://cpan/authors/id/E/EV/EVDB/"
5485                            "Term-ProgressBar-Simple-" version ".tar.gz"))
5486        (sha256
5487         (base32
5488          "19kr6l2aflwv9yph5xishkpag038qb8wd4mkzb0x1psvgp3b63d2"))))
5489     (build-system perl-build-system)
5490     (propagated-inputs
5491      `(("perl-term-progressbar-quiet" ,perl-term-progressbar-quiet)))
5492     (home-page "http://search.cpan.org/dist/Term-ProgressBar-Simple")
5493     (synopsis "Simple progress bars")
5494     (description "Term::ProgressBar::Simple tells you how much work has been
5495 done, how much is left to do, and estimate how long it will take.")
5496     (license (package-license perl))))
5498 (define-public perl-term-readkey
5499   (package
5500     (name "perl-term-readkey")
5501     (version "2.32")
5502     (source
5503      (origin
5504        (method url-fetch)
5505        (uri (string-append "mirror://cpan/authors/id/J/JS/JSTOWE/"
5506                            "TermReadKey-" version ".tar.gz"))
5507        (sha256
5508         (base32
5509          "1y79w5cj98w0a1nqxjhmaw01p2hfhzfw340m2qxd11p6124hxfaq"))))
5510     (build-system perl-build-system)
5511     (home-page "http://search.cpan.org/dist/TermReadKey")
5512     (synopsis "Simple terminal control")
5513     (description "This module, ReadKey, provides ioctl control for terminals
5514 so the input modes can be changed (thus allowing reads of a single character
5515 at a time), and also provides non-blocking reads of stdin, as well as several
5516 other terminal related features, including retrieval/modification of the
5517 screen size, and retrieval/modification of the control characters.")
5518     (license (package-license perl))))
5520 (define-public perl-test-base
5521   (package
5522     (name "perl-test-base")
5523     (version "0.88")
5524     (source
5525      (origin
5526        (method url-fetch)
5527        (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
5528                            "Test-Base-" version ".tar.gz"))
5529        (sha256
5530         (base32
5531          "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
5532     (build-system perl-build-system)
5533     (native-inputs
5534      `(("perl-algorithm-diff" ,perl-algorithm-diff)
5535        ("perl-text-diff" ,perl-text-diff)))
5536     (propagated-inputs
5537      `(("perl-spiffy" ,perl-spiffy)
5538        ("perl-test-deep" ,perl-test-deep)))
5539     (home-page "http://search.cpan.org/dist/Test-Base")
5540     (synopsis "Data-driven testing framework for Perl")
5541     (description "Test::Base gives a way to trivially write your own test
5542 framework base class.  It concentrates on offering reusable data driven
5543 patterns, so that you can write tests with a minimum of code.")
5544     (license (package-license perl))))
5546 (define-public perl-test-class
5547   (package
5548     (name "perl-test-class")
5549     (version "0.50")
5550     (source
5551      (origin
5552        (method url-fetch)
5553        (uri (string-append
5554              "https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Class-"
5555              version
5556              ".tar.gz"))
5557        (sha256
5558         (base32
5559          "0l0kk5jvxjkic2jkf1r7v41irb344aasnzr3f5ygjgxgiknm9489"))))
5560     (build-system perl-build-system)
5561     (native-inputs
5562      `(("perl-test-exception" ,perl-test-exception)))
5563     (inputs
5564      `(("perl-module-runtime" ,perl-module-runtime)
5565        ("perl-mro-compat" ,perl-mro-compat)
5566        ("perl-try-tiny" ,perl-try-tiny)))
5567     (home-page "http://search.cpan.org/dist/Test-Class")
5568     (synopsis "Easily create test classes in an xUnit/JUnit style")
5569     (description "@code{Test::Class} provides a simple way of creating classes
5570 and objects to test your code in an xUnit style.
5572 Built using @code{Test::Builder}, it was designed to work with other
5573 @code{Test::Builder} based modules (@code{Test::More},
5574 @code{Test::Differences}, @code{Test::Exception}, etc.).")
5575     (license (package-license perl))))
5577 (define-public perl-test-class-most
5578   (package
5579     (name "perl-test-class-most")
5580     (version "0.08")
5581     (source
5582      (origin
5583        (method url-fetch)
5584        (uri (string-append
5585              "mirror://cpan/authors/id/O/OV/OVID/Test-Class-Most-"
5586              version
5587              ".tar.gz"))
5588        (sha256
5589         (base32
5590          "1zvx9hil0mg0pnb8xfa4m0xgjpvh8s5gnbyprq3xwpdsdgcdwk33"))))
5591     (build-system perl-build-system)
5592     (native-inputs
5593      `(("perl-module-build" ,perl-module-build)))
5594     (inputs
5595      `(("perl-test-class" ,perl-test-class)
5596        ("perl-test-most" ,perl-test-most)
5597        ("perl-module-runtime" ,perl-module-runtime)
5598        ("perl-try-tiny" ,perl-try-tiny)
5599        ("perl-mro-compat" ,perl-mro-compat)))
5600     (home-page "http://search.cpan.org/dist/Test-Class-Most")
5601     (synopsis "Test classes the easy way")
5602     (description "@code{Test::Class::Most} provides some more convenience when
5603 using @code{Test::Class}.")
5604     (license (package-license perl))))
5606 (define-public perl-test-cleannamespaces
5607   (package
5608     (name "perl-test-cleannamespaces")
5609     (version "0.16")
5610     (source
5611      (origin
5612        (method url-fetch)
5613        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
5614                            "Test-CleanNamespaces-" version ".tar.gz"))
5615        (sha256
5616         (base32
5617          "1ynrds515gcq954z34zm03rgcx0dskiaz7qj0k7k5gmrjj1kfycp"))))
5618     (build-system perl-build-system)
5619     (native-inputs
5620      `(("perl-test-requires" ,perl-test-requires)
5621        ("perl-test-deep" ,perl-test-deep)
5622        ("perl-test-warnings" ,perl-test-warnings)
5623        ("perl-test-tester" ,perl-test-tester)))
5624     (propagated-inputs
5625      `(("perl-namespace-clean" ,perl-namespace-clean)
5626        ("perl-package-stash" ,perl-package-stash)
5627        ("perl-sub-identify" ,perl-sub-identify)
5628        ("perl-sub-exporter" ,perl-sub-exporter)
5629        ("perl-file-find-rule" ,perl-file-find-rule)
5630        ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
5631     (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
5632     (synopsis "Check for uncleaned imports")
5633     (description "This module lets you check your module's namespaces for
5634 imported functions you might have forgotten to remove with
5635 namespace::autoclean or namespace::clean and are therefore available to be
5636 called as methods, which usually isn't want you want.")
5637     (license (package-license perl))))
5639 (define-public perl-test-deep
5640   (package
5641     (name "perl-test-deep")
5642     (version "1.120")
5643     (source (origin
5644               (method url-fetch)
5645               (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5646                                   "Test-Deep-" version ".tar.gz"))
5647               (sha256
5648                (base32
5649                 "1kdy06r0yg7zwarqglc9163vbfb0sfc4s6ld4pw5q7i9f7mghzi0"))))
5650     (build-system perl-build-system)
5651     (inputs `(("perl-test-tester" ,perl-test-tester)
5652               ("perl-test-nowarnings" ,perl-test-nowarnings)))
5653     (synopsis "Flexible deep comparison for the Test::Builder framework")
5654     (description
5655      "Test::Deep compares two structures by going through each level, ensuring
5656 that the values match, that arrays and hashes have the same elements and that
5657 references are blessed into the correct class.  It also handles circular data
5658 structures without getting caught in an infinite loop.")
5659     (home-page "http://search.cpan.org/dist/Test-Deep")
5660     (license gpl1+)))  ; or "Artistic License"
5662 (define-public perl-test-differences
5663   (package
5664     (name "perl-test-differences")
5665     (version "0.63")
5666     (source
5667      (origin
5668        (method url-fetch)
5669        (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
5670                            "Test-Differences-" version ".tar.gz"))
5671        (sha256
5672         (base32
5673          "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
5674     (build-system perl-build-system)
5675     (native-inputs
5676      `(("perl-module-build" ,perl-module-build)))
5677     (propagated-inputs
5678      `(("perl-text-diff" ,perl-text-diff)
5679        ("perl-capture-tiny" ,perl-capture-tiny)))
5680     (home-page "http://search.cpan.org/dist/Test-Differences")
5681     (synopsis "Test strings and data structures and show differences")
5682     (description "This module exports three test functions and four diff-style
5683 functions.")
5684     ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
5685     ;; license, any version, ..."
5686     (license gpl3+)))
5688 (define-public perl-test-directory
5689   (package
5690     (name "perl-test-directory")
5691     (version "0.041")
5692     (source
5693      (origin
5694        (method url-fetch)
5695        (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
5696                            "Test-Directory-" version ".tar.gz"))
5697        (sha256
5698         (base32
5699          "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
5700     (build-system perl-build-system)
5701     (native-inputs `(("perl-test-exception" ,perl-test-exception)))
5702     (home-page "http://search.cpan.org/dist/Test-Directory")
5703     (synopsis "Perl extension for maintaining test directories")
5704     (description "Testing code can involve making sure that files are created
5705 and deleted as expected.  Doing this manually can be error prone, as it's easy
5706 to forget a file, or miss that some unexpected file was added.  This module
5707 simplifies maintaining test directories by tracking their status as they are
5708 modified or tested with this API, making it simple to test both individual
5709 files, as well as to verify that there are no missing or unknown files.")
5710     (license (package-license perl))))
5712 (define-public perl-test-exception
5713   (package
5714     (name "perl-test-exception")
5715     (version "0.36")
5716     (source
5717      (origin
5718        (method url-fetch)
5719        (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
5720                            "Test-Exception-" version ".tar.gz"))
5721        (sha256
5722         (base32
5723          "1zpwimspbq11wjrli481qk17aabzxab15cnnryflx45nzn3za2xk"))))
5724     (build-system perl-build-system)
5725     (native-inputs
5726      `(("perl-module-build" ,perl-module-build)))
5727     (propagated-inputs
5728      `(("perl-sub-uplevel" ,perl-sub-uplevel)))
5729     (home-page "http://search.cpan.org/dist/Test-Exception")
5730     (synopsis "Test exception based code")
5731     (description "This module provides a few convenience methods for testing
5732 exception based code.  It is built with Test::Builder and plays happily with
5733 Test::More and friends.")
5734     (license (package-license perl))))
5736 (define-public perl-test-fatal
5737   (package
5738     (name "perl-test-fatal")
5739     (version "0.014")
5740     (source
5741      (origin
5742        (method url-fetch)
5743        (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
5744                            "Test-Fatal-" version ".tar.gz"))
5745        (sha256
5746         (base32
5747          "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
5748     (build-system perl-build-system)
5749     (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
5750     (home-page "http://search.cpan.org/dist/Test-Fatal")
5751     (synopsis "Simple helpers for testing code with exceptions")
5752     (description "Test::Fatal is an alternative to the popular
5753 Test::Exception.  It does much less, but should allow greater flexibility in
5754 testing exception-throwing code with about the same amount of typing.")
5755     (license (package-license perl))))
5757 (define-public perl-test-files
5758   (package
5759     (name "perl-test-files")
5760     (version "0.14")
5761     (source
5762      (origin
5763        (method url-fetch)
5764        (uri (string-append
5765              "mirror://cpan/authors/id/P/PH/PHILCROW/Test-Files-"
5766              version
5767              ".tar.gz"))
5768        (sha256
5769         (base32
5770          "1zn33yigznq7i1jr4yjr4lxvc6bn7znkbqdzj7slhc146pqapkln"))))
5771     (build-system perl-build-system)
5772     (propagated-inputs
5773      `(("perl-algorithm-diff" ,perl-algorithm-diff)
5774        ("perl-text-diff" ,perl-text-diff)))
5775     (home-page "http://search.cpan.org/dist/Test-Files")
5776     (synopsis "Ease software testing with files and directories")
5777     (description "This library provides functions to enable testing of files
5778 and directories.  For instance, the @code{file_ok} helper can test whether the
5779 contents of a file is equal to a particular string.")
5780     (license (package-license perl))))
5782 (define-public perl-test-harness
5783   (package
5784     (name "perl-test-harness")
5785     (version "3.36")
5786     (source
5787      (origin
5788        (method url-fetch)
5789        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
5790                            "Test-Harness-" version ".tar.gz"))
5791        (sha256
5792         (base32
5793          "0gmnjss0hjkyiwvgby50nl5nzv254pn7fjqqdysjil21n09nymp7"))))
5794     (build-system perl-build-system)
5795     (arguments
5796      `(#:phases (alist-cons-before
5797                  'check 'patch-test
5798                  (lambda* (#:key inputs #:allow-other-keys)
5799                    ;; This test looks for "#!/usr/bin/perl" in some source.
5800                    ;; Patch what the test looks for.
5801                    (substitute* "t/source.t"
5802                      (("#!/usr/bin/perl")
5803                       (string-append "#!" (assoc-ref inputs "perl")
5804                                      "/bin/perl"))))
5805                  %standard-phases)))
5806     (home-page "http://search.cpan.org/dist/Test-Harness")
5807     (synopsis "Run Perl standard test scripts with statistics")
5808     (description "Simple test harness which allows tests to be run and results
5809 automatically aggregated and output to STDOUT.")
5810     (license (package-license perl))))
5812 (define-public perl-test-leaktrace
5813   (package
5814     (name "perl-test-leaktrace")
5815     (version "0.15")
5816     (source
5817      (origin
5818        (method url-fetch)
5819        (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
5820                            "Test-LeakTrace-" version ".tar.gz"))
5821        (sha256
5822         (base32
5823          "0pp6ip012c474ibw0mwd7jgig34gf98bb8xlqk4wdvw1d65vbf7g"))))
5824     (build-system perl-build-system)
5825     (home-page "http://search.cpan.org/dist/Test-LeakTrace")
5826     (synopsis "Traces memory leaks in Perl")
5827     (description "Test::LeakTrace provides several functions that trace memory
5828 leaks.  This module scans arenas, the memory allocation system, so it can
5829 detect any leaked SVs in given blocks.")
5830     (license (package-license perl))))
5832 (define-public perl-test-longstring
5833   (package
5834     (name "perl-test-longstring")
5835     (version "0.17")
5836     (source
5837      (origin
5838        (method url-fetch)
5839        (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
5840                            "Test-LongString-" version ".tar.gz"))
5841        (sha256
5842         (base32
5843          "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
5844     (build-system perl-build-system)
5845     (home-page "http://search.cpan.org/dist/Test-LongString")
5846     (synopsis "Tests strings for equality, with more helpful failures")
5847     (description "This module provides some drop-in replacements for the
5848 string comparison functions of Test::More, but which are more suitable when
5849 you test against long strings.")
5850     (license (package-license perl))))
5852 (define-public perl-test-manifest
5853   (package
5854     (name "perl-test-manifest")
5855     (version "2.02")
5856     (source (origin
5857               (method url-fetch)
5858               (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5859                                   "Test-Manifest-" version ".tar.gz"))
5860               (sha256
5861                (base32
5862                 "15ik52l9macrrfizf4y6wj71d4lx7w590h2dfajnkmbxmz786iq6"))))
5863     (build-system perl-build-system)
5864     (native-inputs
5865      `(("perl-test-pod" ,perl-test-pod)
5866        ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
5867     (home-page "http://search.cpan.org/dist/Test-Manifest")
5868     (synopsis "Interact with a t/test_manifest file")
5869     (description "@code{Test::Manifest} overrides the default test file order.  Instead of
5870 running all of the t/*.t files in ASCII-betical order, it looks in the t/test_manifest
5871 file to find out which tests you want to run and the order in which you want to run them.
5872 It constructs the right value for the build system to do the right thing.")
5873     (license (package-license perl))))
5875 (define-public perl-test-mockobject
5876   (package
5877     (name "perl-test-mockobject")
5878     (version "1.20150527")
5879     (source
5880      (origin
5881        (method url-fetch)
5882        (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
5883                            "Test-MockObject-" version ".tar.gz"))
5884        (sha256
5885         (base32
5886          "160xvhbpwqjaff4fgckvldknldzcbn1z3jvyzybs7cqlj1x3bwdd"))))
5887     (build-system perl-build-system)
5888     (native-inputs
5889      `(("perl-test-exception" ,perl-test-exception)
5890        ("perl-test-warn" ,perl-test-warn)))
5891     (propagated-inputs
5892      `(("perl-test-exception" ,perl-test-exception)
5893        ("perl-test-warn" ,perl-test-warn)
5894        ("perl-universal-can" ,perl-universal-can)
5895        ("perl-universal-isa" ,perl-universal-isa)))
5896     (arguments `(#:tests? #f))          ;TODO: tests require perl-cgi
5897     (home-page "http://search.cpan.org/dist/Test-MockObject")
5898     (synopsis "Emulate troublesome interfaces in Perl")
5899     (description "Test::MockObject allows you to create objects that conform
5900 to particular interfaces with very little code.  You don't have to reimplement
5901 the behavior, just the input and the output.")
5902     (license (package-license perl))))
5904 (define-public perl-test-mocktime
5905   (package
5906     (name "perl-test-mocktime")
5907     (version "0.13")
5908     (source
5909      (origin
5910        (method url-fetch)
5911        (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
5912                            "Test-MockTime-" version ".tar.gz"))
5913        (sha256
5914         (base32
5915          "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
5916     (build-system perl-build-system)
5917     (home-page "http://search.cpan.org/dist/Test-MockTime")
5918     (synopsis "Replaces actual time with simulated time")
5919     (description "This module was created to enable test suites to test code
5920 at specific points in time.  Specifically it overrides localtime, gmtime and
5921 time at compile time and then relies on the user supplying a mock time via
5922 set_relative_time, set_absolute_time or set_fixed_time to alter future calls
5923 to gmtime,time or localtime.")
5924     (license (package-license perl))))
5926 (define-public perl-test-most
5927   (package
5928     (name "perl-test-most")
5929     (version "0.34")
5930     (source
5931      (origin
5932        (method url-fetch)
5933        (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
5934                            "Test-Most-" version ".tar.gz"))
5935        (sha256
5936         (base32
5937          "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
5938     (build-system perl-build-system)
5939     (propagated-inputs
5940      `(("perl-test-differences" ,perl-test-differences)
5941        ("perl-test-warn" ,perl-test-warn)
5942        ("perl-exception-class" ,perl-exception-class)
5943        ("perl-test-deep" ,perl-test-deep)
5944        ("perl-test-exception" ,perl-test-exception)))
5945     (home-page "http://search.cpan.org/dist/Test-Most")
5946     (synopsis "Most commonly needed test functions and features")
5947     (description "This module provides the most commonly used testing
5948 functions, along with automatically turning on strict and warning and gives a
5949 bit more fine-grained control over test suites.")
5950     (license (package-license perl))))
5952 (define-public perl-test-nowarnings
5953   (package
5954     (name "perl-test-nowarnings")
5955     (version "1.04")
5956     (source (origin
5957               (method url-fetch)
5958               (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
5959                                   "Test-NoWarnings-" version ".tar.gz"))
5960               (sha256
5961                (base32
5962                 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
5963     (build-system perl-build-system)
5964     (inputs `(("perl-test-tester" ,perl-test-tester)))
5965     (synopsis "Ensure no warnings are produced while testing")
5966     (description
5967      "This modules causes any warnings during testing to be captured and
5968 stored.  It automatically adds an extra test that will run when your script
5969 ends to check that there were no warnings.  If there were any warnings, the
5970 test will fail and output diagnostics of where, when and what the warning was,
5971 including a stack trace of what was going on when it occurred.")
5972     (home-page (string-append "http://search.cpan.org/~adamk/"
5973                               "Test-NoWarnings-" version))
5974     (license lgpl2.1)))
5976 (define-public perl-test-output
5977   (package
5978     (name "perl-test-output")
5979     (version "1.03")
5980     (source (origin
5981               (method url-fetch)
5982               (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
5983                                   "Test-Output-" version ".tar.gz"))
5984               (sha256
5985                (base32
5986                 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
5987     (build-system perl-build-system)
5988     (propagated-inputs
5989      `(("perl-capture-tiny" ,perl-capture-tiny)
5990        ("perl-test-tester" ,perl-test-tester)
5991        ("perl-sub-exporter" ,perl-sub-exporter)))
5992     (synopsis "Utilities to test STDOUT and STDERR messages")
5993     (description
5994      "Test::Output provides a simple interface for testing output sent to
5995 STDOUT or STDERR.  A number of different utilities are included to try and be
5996 as flexible as possible to the tester.")
5997     (home-page (string-append "http://search.cpan.org/~bdfoy/"
5998                               "Test-Output-" version))
5999     (license (package-license perl))))
6001 (define-public perl-test-pod
6002   (package
6003     (name "perl-test-pod")
6004     (version "1.48")
6005     (source
6006      (origin
6007        (method url-fetch)
6008        (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
6009                            "Test-Pod-" version ".tar.gz"))
6010        (sha256
6011         (base32
6012          "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
6013     (build-system perl-build-system)
6014     (native-inputs `(("perl-module-build" ,perl-module-build)))
6015     (home-page "http://search.cpan.org/dist/Test-Pod")
6016     (synopsis "Check for POD errors in files")
6017     (description "Check POD files for errors or warnings in a test file, using
6018 Pod::Simple to do the heavy lifting.")
6019     (license (package-license perl))))
6021 (define-public perl-test-pod-coverage
6022   (package
6023     (name "perl-test-pod-coverage")
6024     (version "1.10")
6025     (source
6026      (origin
6027        (method url-fetch)
6028        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6029                            "Test-Pod-Coverage-" version ".tar.gz"))
6030        (sha256
6031         (base32
6032          "1m203mhgfilz7iqc8mxaw4lw02fz391mni3n25sfx7nryylwrja8"))))
6033     (build-system perl-build-system)
6034     (propagated-inputs
6035      `(("perl-pod-coverage" ,perl-pod-coverage)))
6036     (home-page "http://search.cpan.org/dist/Test-Pod-Coverage")
6037     (synopsis "Check for pod coverage")
6038     (description "This module adds a test to your Perl distribution which
6039 checks for pod coverage of all appropriate files.")
6040     (license artistic2.0)))
6042 (define-public perl-test-requires
6043   (package
6044     (name "perl-test-requires")
6045     (version "0.08")
6046     (source
6047      (origin
6048        (method url-fetch)
6049        (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
6050                            "Test-Requires-" version ".tar.gz"))
6051        (sha256
6052         (base32
6053          "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
6054     (build-system perl-build-system)
6055     (home-page "http://search.cpan.org/dist/Test-Requires")
6056     (synopsis "Checks to see if the module can be loaded")
6057     (description "Test::Requires checks to see if the module can be loaded.
6058 If this fails, then rather than failing tests this skips all tests.")
6059     (license (package-license perl))))
6061 (define-public perl-test-script
6062   (package
6063     (name "perl-test-script")
6064     (version "1.07")
6065     (source (origin
6066               (method url-fetch)
6067               (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6068                                   "Test-Script-" version ".tar.gz"))
6069               (sha256
6070                (base32
6071                 "15pb4zzsnm33msc1syhig2bk05xqc0pckmfyahdwbd177bj5w7p2"))))
6072     (build-system perl-build-system)
6073     (propagated-inputs
6074      `(("probe-perl" ,perl-probe-perl)
6075        ("ipc-run3"   ,perl-ipc-run3)))
6076     (synopsis "Basic cross-platform tests for scripts")
6077     (description
6078      "The intent of the Test::Script module is to provide a series of basic
6079 tests for 80% of the testing you will need to do for scripts in the script (or
6080 bin as is also commonly used) paths of your Perl distribution.")
6081     (home-page (string-append "http://search.cpan.org/~adamk/"
6082                               "Test-Script-" version))
6083     (license (package-license perl))))
6085 (define-public perl-test-sharedfork
6086   (package
6087     (name "perl-test-sharedfork")
6088     (version "0.29")
6089     (source
6090      (origin
6091        (method url-fetch)
6092        (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
6093                            "Test-SharedFork-" version ".tar.gz"))
6094        (sha256
6095         (base32
6096          "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
6097     (build-system perl-build-system)
6098     (native-inputs
6099      `(("perl-test-requires" ,perl-test-requires)))
6100     (home-page "http://search.cpan.org/dist/Test-SharedFork")
6101     (synopsis "Fork test in Perl")
6102     (description "Test::SharedFork is a utility module for Test::Builder.  It
6103 makes fork(2) safe to use in test cases.")
6104     (license (package-license perl))))
6106 (define-public perl-test-simple
6107   (package
6108     (name "perl-test-simple")
6109     (version "1.302062")
6110     (source (origin
6111               (method url-fetch)
6112               (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
6113                                   "Test-Simple-" version ".tar.gz"))
6114               (sha256
6115                (base32
6116                 "1sjny65iwnin35lvc203pb07gyx9wrp3gmn6lfrjsbmi986hcab7"))))
6117     (build-system perl-build-system)
6118     (synopsis "Basic utilities for writing tests")
6119     (description
6120      "Test::Simple contains basic utilities for writing tests.")
6121     (home-page (string-append "http://search.cpan.org/~exodist/"
6122                               "Test-Simple-" version))
6123     (license (package-license perl))))
6125 (define-public perl-test-tester
6126   (package
6127     (name "perl-test-tester")
6128     (version "0.109")
6129     (source (origin
6130               (method url-fetch)
6131               (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
6132                                   "Test-Tester-" version ".tar.gz"))
6133               (sha256
6134                (base32
6135                 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
6136     (build-system perl-build-system)
6137     (synopsis "Simplify running Test::Builder tests")
6138     (description
6139      "Test::Tester allows testing of test modules based on Test::Builder with
6140 a minimum of effort.")
6141     (home-page (string-append "http://search.cpan.org/~fdaly/"
6142                               "Test-Tester-" version))
6143     ;; "Under the same license as Perl itself"
6144     (license (package-license perl))))
6146 (define-public perl-test-trap
6147   (package
6148     (name "perl-test-trap")
6149     (version "v0.3.0")
6150     (source
6151      (origin
6152        (method url-fetch)
6153        (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
6154                            "Test-Trap-" version ".tar.gz"))
6155        (sha256
6156         (base32
6157          "05b4zc4087imwphls4yksg4chzx9yavbri301gaxas9kv1yhx13w"))))
6158     (build-system perl-build-system)
6159     (native-inputs
6160      `(("perl-module-build" ,perl-module-build)))
6161     (propagated-inputs
6162      `(("perl-test-tester" ,perl-test-tester)
6163        ("perl-data-dump" ,perl-data-dump)))
6164     (home-page "http://search.cpan.org/dist/Test-Trap")
6165     (synopsis "Trap exit codes, exceptions, output, and so on")
6166     (description "This module is primarily (but not exclusively) for use in
6167 test scripts: A block eval configurable and extensible but by default trapping
6168 STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
6169 from boxed blocks of test code.")
6170     (license (package-license perl))))
6172 (define-public perl-test-utf8
6173   (package
6174     (name "perl-test-utf8")
6175     (version "1.01")
6176     (source
6177      (origin
6178        (method url-fetch)
6179        (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
6180                            "Test-utf8-" version ".tar.gz"))
6181        (sha256
6182         (base32
6183          "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
6184     (build-system perl-build-system)
6185     (home-page "http://search.cpan.org/dist/Test-utf8")
6186     (synopsis "UTF-8 testing in Perl")
6187     (description "This module is a collection of tests useful for dealing with
6188 UTF-8 strings in Perl.  This module has two types of tests: The validity tests
6189 check if a string is valid and not corrupt, whereas the characteristics tests
6190 will check that string has a given set of characteristics.")
6191     (license (package-license perl))))
6193 (define-public perl-test-warn
6194   (package
6195     (name "perl-test-warn")
6196     (version "0.30")
6197     (source
6198      (origin
6199        (method url-fetch)
6200        (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
6201                            "Test-Warn-" version ".tar.gz"))
6202        (sha256
6203         (base32
6204          "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
6205     (build-system perl-build-system)
6206     (propagated-inputs
6207      `(("perl-sub-uplevel" ,perl-sub-uplevel)))
6208     (home-page "http://search.cpan.org/dist/Test-Warn")
6209     (synopsis "Perl extension to test methods for warnings")
6210     (description "This module provides a few convenience methods for testing
6211 warning based code.")
6212     (license (package-license perl))))
6214 (define-public perl-test-warnings
6215   (package
6216     (name "perl-test-warnings")
6217     (version "0.020")
6218     (source
6219      (origin
6220        (method url-fetch)
6221        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6222                            "Test-Warnings-" version ".tar.gz"))
6223        (sha256
6224         (base32
6225          "1x262kybrdnbiiw53m1axp4zyh4lsfb9mm2shmpm8lwf7sp30isi"))))
6226     (build-system perl-build-system)
6227     (home-page "http://search.cpan.org/dist/Test-Warnings")
6228     (synopsis "Test for warnings and the lack of them")
6229     (description "This module is intended to be used as a drop-in replacement
6230 for Test::NoWarnings.  It also adds an extra test, but runs this test before
6231 done_testing calculates the test count, rather than after.  It does this by
6232 hooking into done_testing as well as via an END block.  You can declare a
6233 plan, or not, and things will still Just Work.")
6234     (license (package-license perl))))
6236 (define-public perl-test-without-module
6237   (package
6238     (name "perl-test-without-module")
6239     (version "0.18")
6240     (source
6241      (origin
6242        (method url-fetch)
6243        (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
6244                            "Test-Without-Module-" version ".tar.gz"))
6245        (sha256
6246         (base32
6247          "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
6248     (build-system perl-build-system)
6249     (home-page "http://search.cpan.org/dist/Test-Without-Module")
6250     (synopsis "Test fallback behaviour in absence of modules")
6251     (description "This module allows you to deliberately hide modules from a
6252 program even though they are installed.  This is mostly useful for testing
6253 modules that have a fallback when a certain dependency module is not
6254 installed.")
6255     (license (package-license perl))))
6257 (define-public perl-test-writevariants
6258   (package
6259     (name "perl-test-writevariants")
6260     (version "0.010")
6261     (source
6262      (origin
6263        (method url-fetch)
6264        (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
6265                            "Test-WriteVariants-" version ".tar.gz"))
6266        (sha256
6267         (base32
6268          "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
6269     (build-system perl-build-system)
6270     (native-inputs
6271      `(("perl-test-most" ,perl-test-most)
6272        ("perl-test-directory" ,perl-test-directory)))
6273     (propagated-inputs
6274      `(("perl-data-tumbler" ,perl-data-tumbler)
6275        ("perl-file-homedir" ,perl-file-homedir)
6276        ("perl-module-pluggable" ,perl-module-pluggable)))
6277     (home-page "http://search.cpan.org/dist/Test-WriteVariants")
6278     (synopsis "Dynamic generation of tests")
6279     (description "The Test::WriteVariants module provides for the dynamic
6280 generation of tests in nested combinations of contexts.")
6281     (license (package-license perl))))  ;See LICENSE
6283 (define-public perl-test-yaml
6284   (package
6285     (name "perl-test-yaml")
6286     (version "1.05")
6287     (source
6288      (origin
6289        (method url-fetch)
6290        (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6291                            "Test-YAML-" version ".tar.gz"))
6292        (sha256
6293         (base32
6294          "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
6295     (build-system perl-build-system)
6296     (propagated-inputs
6297      `(("perl-test-base" ,perl-test-base)))
6298     (home-page "http://search.cpan.org/dist/Test-YAML")
6299     (synopsis "Testing module for YAML implementations")
6300     (description "Test::YAML is a subclass of Test::Base with YAML specific
6301 support.")
6302     (license (package-license perl))))
6304 (define-public perl-text-aligner
6305   (package
6306     (name "perl-text-aligner")
6307     (version "0.12")
6308     (source
6309      (origin
6310        (method url-fetch)
6311        (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
6312                            "Text-Aligner-" version ".tar.gz"))
6313        (sha256
6314         (base32
6315          "0a6zkchc0apvzkch6z18cx6h97xfiv50r7n4xhg90x8dvk75qzcs"))))
6316     (build-system perl-build-system)
6317     (native-inputs `(("perl-module-build" ,perl-module-build)))
6318     (home-page "http://search.cpan.org/dist/Text-Aligner")
6319     (synopsis "Align text")
6320     (description "Text::Aligner exports a single function, align(), which is
6321 used to justify strings to various alignment styles.")
6322     (license x11)))
6324 (define-public perl-text-balanced
6325   (package
6326     (name "perl-text-balanced")
6327     (version "2.02")
6328     (source
6329      (origin
6330        (method url-fetch)
6331        (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
6332                            "Text-Balanced-" version ".tar.gz"))
6333        (sha256
6334         (base32
6335          "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
6336     (build-system perl-build-system)
6337     (home-page "http://search.cpan.org/dist/Text-Balanced")
6338     (synopsis "Extract delimited text sequences from strings")
6339     (description "The Text::Balanced module can be used to extract delimited
6340 text sequences from strings.")
6341     (license (package-license perl))))
6343 (define-public perl-text-csv
6344   (package
6345     (name "perl-text-csv")
6346     (version "1.33")
6347     (source
6348      (origin
6349        (method url-fetch)
6350        (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
6351                            "Text-CSV-" version ".tar.gz"))
6352        (sha256
6353         (base32
6354          "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
6355     (build-system perl-build-system)
6356     (home-page "http://search.cpan.org/dist/Text-CSV")
6357     (synopsis "Manipulate comma-separated values")
6358     (description "Text::CSV provides facilities for the composition and
6359 decomposition of comma-separated values.  An instance of the Text::CSV class
6360 can combine fields into a CSV string and parse a CSV string into fields.")
6361     (license (package-license perl))))
6363 (define-public perl-text-diff
6364   (package
6365     (name "perl-text-diff")
6366     (version "1.44")
6367     (source
6368      (origin
6369        (method url-fetch)
6370        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6371                            "Text-Diff-" version ".tar.gz"))
6372        (sha256
6373         (base32
6374          "041v92zla2acdc433f47giridf6p820sdczs7x5d71fhsyza1xsp"))))
6375     (build-system perl-build-system)
6376     (propagated-inputs
6377      `(("perl-algorithm-diff" ,perl-algorithm-diff)))
6378     (home-page "http://search.cpan.org/dist/Text-Diff")
6379     (synopsis "Perform diffs on files and record sets")
6380     (description "Text::Diff provides a basic set of services akin to the GNU
6381 diff utility.  It is not anywhere near as feature complete as GNU diff, but it
6382 is better integrated with Perl and available on all platforms.  It is often
6383 faster than shelling out to a system's diff executable for small files, and
6384 generally slower on larger files.")
6385     (license (package-license perl))))
6387 (define-public perl-text-glob
6388   (package
6389     (name "perl-text-glob")
6390     (version "0.09")
6391     (source
6392      (origin
6393        (method url-fetch)
6394        (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
6395                            "Text-Glob-" version ".tar.gz"))
6396        (sha256
6397         (base32
6398          "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
6399     (build-system perl-build-system)
6400     (native-inputs `(("perl-module-build" ,perl-module-build)))
6401     (home-page "http://search.cpan.org/dist/Text-Glob")
6402     (synopsis "Match globbing patterns against text")
6403     (description "Text::Glob implements glob(3) style matching that can be
6404 used to match against text, rather than fetching names from a file system.  If
6405 you want to do full file globbing use the File::Glob module instead.")
6406     (license (package-license perl))))
6408 (define-public perl-text-neattemplate
6409   (package
6410     (name "perl-text-neattemplate")
6411     (version "0.1101")
6412     (source
6413      (origin
6414        (method url-fetch)
6415        (uri (string-append
6416              "https://cpan.metacpan.org/authors/id/R/RU/RUBYKAT/"
6417              "Text-NeatTemplate-" version ".tar.gz"))
6418        (sha256
6419         (base32
6420          "129msa57jzxxi2x7z9hgzi48r48y65w77ycfk1w733zz2m8nr8y3"))))
6421     (build-system perl-build-system)
6422     (native-inputs
6423      `(("perl-module-build" ,perl-module-build)))
6424     (home-page
6425      "http://search.cpan.org/dist/Text-NeatTemplate")
6426     (synopsis "Fast, middleweight template engine")
6427     (description
6428      "Text::NeatTemplate provides a simple, middleweight but fast
6429 template engine, for when you need speed rather than complex features,
6430 yet need more features than simple variable substitution.")
6431     (license (package-license perl))))
6433 (define-public perl-text-simpletable
6434   (package
6435     (name "perl-text-simpletable")
6436     (version "2.03")
6437     (source
6438      (origin
6439        (method url-fetch)
6440        (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
6441                            "Text-SimpleTable-" version ".tar.gz"))
6442        (sha256
6443         (base32
6444          "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
6445     (build-system perl-build-system)
6446     (home-page "http://search.cpan.org/dist/Text-SimpleTable")
6447     (synopsis "Simple ASCII tables")
6448     (description "Text::SimpleTable draws simple ASCII tables.")
6449     (license artistic2.0)))
6451 (define-public perl-text-table
6452   (package
6453     (name "perl-text-table")
6454     (version "1.130")
6455     (source
6456      (origin
6457        (method url-fetch)
6458        (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
6459                            "Text-Table-" version ".tar.gz"))
6460        (sha256
6461         (base32
6462          "02c8v38k639r23dgxwgvsy4myjjzvgdb238kpiffsiz25ab3xp5j"))))
6463     (build-system perl-build-system)
6464     (native-inputs
6465      `(("perl-module-build" ,perl-module-build)))
6466     (propagated-inputs
6467      `(("perl-text-aligner" ,perl-text-aligner)))
6468     (home-page "http://search.cpan.org/dist/Text-Table")
6469     (synopsis "Organize Data in Tables")
6470     (description "Text::Table renders plaintext tables.")
6471     (license x11)))
6473 (define-public perl-text-unidecode
6474   (package
6475     (name "perl-text-unidecode")
6476     (version "1.23")
6477     (source
6478      (origin
6479        (method url-fetch)
6480        (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
6481                            "Text-Unidecode-" version ".tar.gz"))
6482        (sha256
6483         (base32
6484          "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
6485     (build-system perl-build-system)
6486     (home-page "http://search.cpan.org/dist/Text-Unidecode")
6487     (synopsis "Provide plain ASCII transliterations of Unicode text")
6488     (description "Text::Unidecode provides a function, unidecode(...) that
6489 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
6490 universally displayable characters between 0x00 and 0x7F).  The representation
6491 is almost always an attempt at transliteration-- i.e., conveying, in Roman
6492 letters, the pronunciation expressed by the text in some other writing
6493 system.")
6494     (license (package-license perl))))
6496 (define-public perl-throwable
6497   (package
6498     (name "perl-throwable")
6499     (version "0.200012")
6500     (source
6501      (origin
6502        (method url-fetch)
6503        (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
6504                            "Throwable-" version ".tar.gz"))
6505        (sha256
6506         (base32
6507          "0cy8kza9pd9y5m7k5385asf4xqm54vdqnqm0am10z6j2mrxwr527"))))
6508     (build-system perl-build-system)
6509     (native-inputs
6510      `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
6511     (propagated-inputs
6512      `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
6513        ("perl-module-runtime" ,perl-module-runtime)
6514        ("perl-moo" ,perl-moo)))
6515     (home-page "http://search.cpan.org/dist/Throwable")
6516     (synopsis "Role for classes that can be thrown")
6517     (description "Throwable is a role for classes that are meant to be thrown
6518 as exceptions to standard program flow.")
6519     (license (package-license perl))))
6521 (define-public perltidy
6522   (package
6523     (name "perltidy")
6524     (version "20160302")
6525     (source (origin
6526               (method url-fetch)
6527               (uri (string-append "mirror://sourceforge/perltidy/" version
6528                                   "/Perl-Tidy-" version ".tar.gz"))
6529               (sha256
6530                (base32
6531                 "19yw63yh5s3pq7k3nkw6nsamg5b8vvwyhgbizslgxg0mqgc4xl3d"))))
6532     (build-system perl-build-system)
6533     (home-page "http://perltidy.sourceforge.net/")
6534     (synopsis "Perl script tidier")
6535     (description "This package contains a Perl script which indents and
6536 reformats Perl scripts to make them easier to read.   The formatting can be
6537 controlled with command line parameters.  The default parameter settings
6538 approximately follow the suggestions in the Perl Style Guide.")
6539     (license gpl2+)))
6541 (define-public perl-tie-ixhash
6542   (package
6543   (name "perl-tie-ixhash")
6544   (version "1.23")
6545   (source
6546     (origin
6547       (method url-fetch)
6548       (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
6549                           "Tie-IxHash-" version ".tar.gz"))
6550       (sha256
6551         (base32
6552           "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
6553   (build-system perl-build-system)
6554   (native-inputs `(("perl-module-build" ,perl-module-build)))
6555   (home-page "http://search.cpan.org/dist/Tie-IxHash")
6556   (synopsis "Ordered associative arrays for Perl")
6557   (description "This Perl module implements Perl hashes that preserve the
6558 order in which the hash elements were added.  The order is not affected when
6559 values corresponding to existing keys in the IxHash are changed.  The elements
6560 can also be set to any arbitrary supplied order.  The familiar perl array
6561 operations can also be performed on the IxHash.")
6562   (license (package-license perl))))
6564 (define-public perl-tie-toobject
6565   (package
6566     (name "perl-tie-toobject")
6567     (version "0.03")
6568     (source
6569      (origin
6570        (method url-fetch)
6571        (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
6572                            "Tie-ToObject-" version ".tar.gz"))
6573        (sha256
6574         (base32
6575          "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
6576     (build-system perl-build-system)
6577     (propagated-inputs
6578      `(("perl-test-simple" ,perl-test-simple)))
6579     (home-page "http://search.cpan.org/dist/Tie-ToObject")
6580     (synopsis "Tie to an existing Perl object")
6581     (description "This class provides a tie constructor that returns the
6582 object it was given as it's first argument.  This way side effects of calling
6583 $object->TIEHASH are avoided.")
6584     (license (package-license perl))))
6586 (define-public perl-time-duration
6587   (package
6588     (name "perl-time-duration")
6589     (version "1.1")
6590     (source
6591      (origin
6592        (method url-fetch)
6593        (uri (string-append "mirror://cpan/authors/id/A/AV/AVIF/"
6594                            "Time-Duration-" version ".tar.gz"))
6595        (sha256
6596         (base32
6597          "0klg33yzb7pr9ra76s6gj5k7nravqnw2lbh022x1xwlj92f43756"))))
6598     (build-system perl-build-system)
6599     (native-inputs
6600      `(("perl-test-pod" ,perl-test-pod)
6601        ("perl-test-pod-coverage" ,perl-test-pod-coverage)))
6602     (home-page "http://search.cpan.org/dist/Time-Duration")
6603     (synopsis "English expression of durations")
6604     (description "This module provides functions for expressing durations in
6605 rounded or exact terms.")
6606     (license (package-license perl))))
6608 (define-public perl-time-duration-parse
6609   (package
6610     (name "perl-time-duration-parse")
6611     (version "0.11")
6612     (source
6613      (origin
6614        (method url-fetch)
6615        (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
6616                            "Time-Duration-Parse-" version ".tar.gz"))
6617        (sha256
6618         (base32
6619          "1yk4cqkldwzkfy9y9ngqrj7p7sbsrsfa26mrm8f70z5n5m8q31x0"))))
6620     (build-system perl-build-system)
6621     (native-inputs
6622      `(("perl-time-duration" ,perl-time-duration)))
6623     (propagated-inputs
6624      `(("perl-exporter-lite" ,perl-exporter-lite)))
6625     (home-page "http://search.cpan.org/dist/Time-Duration-Parse")
6626     (synopsis "Parse time duration strings")
6627     (description "Time::Duration::Parse is a module to parse human readable
6628 duration strings like \"2 minutes\" and \"3 seconds\" to seconds.")
6629     (license (package-license perl))))
6631 (define-public perl-time-local
6632   (package
6633     (name "perl-time-local")
6634     (version "1.2300")
6635     (source
6636      (origin
6637        (method url-fetch)
6638        (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
6639                            "Time-Local-" version ".tar.gz"))
6640        (sha256
6641         (base32
6642          "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
6643     (build-system perl-build-system)
6644     (home-page "http://search.cpan.org/dist/Time-Local")
6645     (synopsis "Efficiently compute time from local and GMT time")
6646     (description "This module provides functions that are the inverse of
6647 built-in perl functions localtime() and gmtime().  They accept a date as a
6648 six-element array, and return the corresponding time(2) value in seconds since
6649 the system epoch.")
6650     (license (package-license perl))))
6652 (define-public perl-timedate
6653   (package
6654     (name "perl-timedate")
6655     (version "2.30")
6656     (source
6657      (origin
6658        (method url-fetch)
6659        (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
6660                            "TimeDate-" version ".tar.gz"))
6661        (sha256
6662         (base32
6663          "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
6664     (build-system perl-build-system)
6665     (home-page "http://search.cpan.org/dist/TimeDate")
6666     (synopsis "Date parsing/formatting subroutines")
6667     (description "This module provides routines for parsing date string into
6668 time values and formatting dates into ASCII strings.")
6669     (license (package-license perl))))
6671 (define-public perl-time-mock
6672   (package
6673     (name "perl-time-mock")
6674     (version "v0.0.2")
6675     (source
6676      (origin
6677        (method url-fetch)
6678        (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
6679                            "Time-Mock-" version ".tar.gz"))
6680        (sha256
6681         (base32
6682          "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
6683     (build-system perl-build-system)
6684     (native-inputs
6685      `(("perl-module-build" ,perl-module-build)))
6686     (propagated-inputs
6687      `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
6688     (home-page "http://search.cpan.org/dist/Time-Mock")
6689     (synopsis "Shift and scale time")
6690     (description "This module allows you to speed up your sleep(), alarm(),
6691 and time() calls.")
6692     (license (package-license perl))))
6694 (define-public perl-tree-simple
6695   (package
6696     (name "perl-tree-simple")
6697     (version "1.25")
6698     (source
6699      (origin
6700        (method url-fetch)
6701        (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
6702                            "Tree-Simple-" version ".tgz"))
6703        (sha256
6704         (base32
6705          "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
6706     (build-system perl-build-system)
6707     (native-inputs
6708      `(("perl-module-build" ,perl-module-build)
6709        ("perl-test-exception" ,perl-test-exception)))
6710     (propagated-inputs
6711      `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
6712     (home-page "http://search.cpan.org/dist/Tree-Simple")
6713     (synopsis "Simple tree object")
6714     (description "This module in a fully object-oriented implementation of a
6715 simple n-ary tree.")
6716     (license (package-license perl))))
6718 (define-public perl-tree-simple-visitorfactory
6719   (package
6720     (name "perl-tree-simple-visitorfactory")
6721     (version "0.12")
6722     (source
6723      (origin
6724        (method url-fetch)
6725        (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
6726                            "Tree-Simple-VisitorFactory-" version ".tgz"))
6727        (sha256
6728         (base32
6729          "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
6730     (build-system perl-build-system)
6731     (native-inputs
6732      `(("perl-module-build" ,perl-module-build)
6733        ("perl-test-exception" ,perl-test-exception)))
6734     (propagated-inputs
6735      `(("perl-tree-simple" ,perl-tree-simple)
6736        ("perl-base" ,perl-base)))
6737     (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
6738     (synopsis "Factory object for dispensing Visitor objects")
6739     (description "This module is a factory for dispensing
6740 Tree::Simple::Visitor::* objects.")
6741     (license (package-license perl))))
6743 (define-public perl-try-tiny
6744   (package
6745     (name "perl-try-tiny")
6746     (version "0.22")
6747     (source
6748      (origin
6749        (method url-fetch)
6750        (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
6751                            "Try-Tiny-" version ".tar.gz"))
6752        (sha256
6753         (base32
6754          "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
6755     (build-system perl-build-system)
6756     (home-page "http://search.cpan.org/dist/Try-Tiny")
6757     (synopsis "Minimal try/catch with proper preservation of $@")
6758     (description "This module provides bare bones try/catch/finally statements
6759 that are designed to minimize common mistakes with eval blocks, and nothing
6760 else.")
6761     (license x11)))
6763 (define-public perl-types-serialiser
6764   (package
6765     (name "perl-types-serialiser")
6766     (version "1.0")
6767     (source
6768      (origin
6769        (method url-fetch)
6770        (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
6771                            "Types-Serialiser-" version ".tar.gz"))
6772        (sha256
6773         (base32
6774          "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
6775     (build-system perl-build-system)
6776     (propagated-inputs
6777      `(("perl-common-sense" ,perl-common-sense)))
6778     (home-page "http://search.cpan.org/dist/Types-Serialiser")
6779     (synopsis "Data types for common serialisation formats")
6780     (description "This module provides some extra datatypes that are used by
6781 common serialisation formats such as JSON or CBOR.")
6782     (license (package-license perl))))
6784 (define-public perl-unicode-linebreak
6785   (package
6786     (name "perl-unicode-linebreak")
6787     (version "2015.12")
6788     (source (origin
6789               (method url-fetch)
6790               (uri (string-append "mirror://cpan/authors/id/N/NE/NEZUMI/"
6791                                   "Unicode-LineBreak-" version ".tar.gz"))
6792               (sha256
6793                (base32
6794                 "1d0nnc97irfpab4d3b2lvq22hac118k7zbfrj0lnxkbfwx7122cm"))))
6795     (build-system perl-build-system)
6796     (propagated-inputs
6797      `(("perl-mime-charset" ,perl-mime-charset)))
6798     (home-page "http://search.cpan.org/dist/Unicode-LineBreak")
6799     (synopsis "Unicode line breaking algorithm")
6800     (description
6801      "@code{Unicode::LineBreak} implements the line breaking algorithm
6802 described in Unicode Standard Annex #14.  The @code{East_Asian_Width} property
6803 defined by Annex #11 is used to determine breaking positions.")
6804     (license (package-license perl))))
6806 (define-public perl-unicode-utf8
6807   (package
6808     (name "perl-unicode-utf8")
6809     (version "0.60")
6810     (source (origin
6811               (method url-fetch)
6812               (uri (string-append "mirror://cpan/authors/id/C/CH/CHANSEN/"
6813                                   "Unicode-UTF8-" version ".tar.gz"))
6814               (sha256
6815                (base32
6816                 "1g3fp47slsk7wbz3189kpg342lfs7lpsy570jxnx7s9v59dg5k7n"))))
6817     (build-system perl-build-system)
6818     (native-inputs
6819      `(("perl-test-fatal" ,perl-test-fatal)
6820        ("perl-test-leaktrace" ,perl-test-leaktrace)
6821        ("perl-variable-magic" ,perl-variable-magic)
6822        ("perl-test-pod" ,perl-test-pod)))
6823     (home-page "http://search.cpan.org/dist/Unicode-UTF8")
6824     (synopsis "Encoding and decoding of UTF-8 encoding form")
6825     (description
6826      "This module provides functions to encode and decode UTF-8 encoding form
6827 as specified by Unicode and ISO/IEC 10646:2011.")
6828     (license (package-license perl))))
6830 (define-public perl-universal-can
6831   (package
6832     (name "perl-universal-can")
6833     (version "1.20140328")
6834     (source
6835      (origin
6836        (method url-fetch)
6837        (uri (string-append "mirror://cpan/authors/id/C/CH/CHROMATIC/"
6838                            "UNIVERSAL-can-" version ".tar.gz"))
6839        (sha256
6840         (base32
6841          "03wr25zznbfn1g8zmmq3g6a6288xr30priwvm75y4vvqfkrajbaj"))))
6842     (build-system perl-build-system)
6843     (home-page "http://search.cpan.org/dist/UNIVERSAL-can")
6844     (synopsis "UNIVERSAL::can() reimplementation")
6845     (description "This module attempts to work around people calling
6846 UNIVERSAL::can() as a function, which it is not.")
6847     (license (package-license perl))))
6849 (define-public perl-universal-isa
6850   (package
6851     (name "perl-universal-isa")
6852     (version "1.20140927")
6853     (source
6854      (origin
6855        (method url-fetch)
6856        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6857                            "UNIVERSAL-isa-" version ".tar.gz"))
6858        (sha256
6859         (base32
6860          "0ryqk58nkzhdq26si7mh49h8wand1wlmyf4m78qgiyn8ib6989bb"))))
6861     (build-system perl-build-system)
6862     (native-inputs
6863      `(("perl-module-build-tiny" ,perl-module-build-tiny)))
6864     (home-page "http://search.cpan.org/dist/UNIVERSAL-isa")
6865     (synopsis "UNIVERSAL::isa() reimplementation")
6866     (description "This module attempts to recover from people calling
6867 UNIVERSAL::isa as a function.")
6868     (license (package-license perl))))
6870 (define-public perl-variable-magic
6871   (package
6872     (name "perl-variable-magic")
6873     (version "0.55")
6874     (source
6875      (origin
6876        (method url-fetch)
6877        (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
6878                            "Variable-Magic-" version ".tar.gz"))
6879        (sha256
6880         (base32
6881          "0xzh2vy45ph80bp09j5fcjy8ydgn8yaxsa0fj831q6p1spvyniwg"))))
6882     (build-system perl-build-system)
6883     (home-page "http://search.cpan.org/dist/Variable-Magic")
6884     (synopsis "Associate user-defined magic to variables from Perl")
6885     (description "Magic is Perl's way of enhancing variables.  This mechanism
6886 lets the user add extra data to any variable and hook syntactical
6887 operations (such as access, assignment or destruction) that can be applied to
6888 it.  With this module, you can add your own magic to any variable without
6889 having to write a single line of XS.")
6890     (license (package-license perl))))
6892 (define-public perl-xml-writer
6893   (package
6894     (name "perl-xml-writer")
6895     (version "0.625")
6896     (source
6897      (origin
6898        (method url-fetch)
6899        (uri (string-append
6900              "mirror://cpan/authors/id/J/JO/JOSEPHW/XML-Writer-"
6901              version
6902              ".tar.gz"))
6903        (sha256
6904         (base32
6905          "1gjzs570i67ywbv967g8ylb5sg59clwmyrl2yix3jl70dhn55070"))))
6906     (build-system perl-build-system)
6907     (home-page "http://search.cpan.org/dist/XML-Writer")
6908     (synopsis "Easily generate well-formed, namespace-aware XML")
6909     (description "@code{XML::Writer} is a simple Perl module for writing XML
6910 documents: it takes care of constructing markup and escaping data correctly.
6911 By default, it also performs a significant amount of well-formedness checking
6912 on the output to make certain (for example) that start and end tags match,
6913 that there is exactly one document element, and that there are not duplicate
6914 attribute names.")
6915     ;; Redistribution and use in source and compiled forms, with or without
6916     ;; modification, are permitted under any circumstances.  No warranty.
6917     (license public-domain)))
6919 (define-public perl-yaml
6920   (package
6921     (name "perl-yaml")
6922     (version "1.14")
6923     (source
6924      (origin
6925        (method url-fetch)
6926        (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
6927                            "YAML-" version ".tar.gz"))
6928        (sha256
6929         (base32
6930          "0sswbkyisgny7ksw34n7zdaxrhsbbn7dgjb9gjybpzhcnml476kc"))))
6931     (build-system perl-build-system)
6932     (native-inputs
6933      `(("perl-test-yaml" ,perl-test-yaml)))
6934     (home-page "http://search.cpan.org/dist/YAML")
6935     (synopsis "YAML for Perl")
6936     (description "The YAML.pm module implements a YAML Loader and Dumper based
6937 on the YAML 1.0 specification.")
6938     (license (package-license perl))))
6940 (define-public perl-yaml-tiny
6941   (package
6942     (name "perl-yaml-tiny")
6943     (version "1.66")
6944     (source
6945      (origin
6946        (method url-fetch)
6947        (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
6948                            "YAML-Tiny-" version ".tar.gz"))
6949        (sha256
6950         (base32
6951          "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
6952     (build-system perl-build-system)
6953     (native-inputs
6954      `(("perl-json-maybexs" ,perl-json-maybexs)
6955        ("perl-module-build-tiny" ,perl-module-build-tiny)))
6956     (arguments
6957      `(#:tests? #f))                    ;requires Test::More >= 0.99
6958     (home-page "http://search.cpan.org/dist/YAML-Tiny")
6959     (synopsis "Read/Write YAML files")
6960     (description "YAML::Tiny is a perl class for reading and writing
6961 YAML-style files, written with as little code as possible, reducing load time
6962 and memory overhead.")
6963     (license (package-license perl))))
6965 (define-public perl-parse-yapp
6966   (package
6967     (name "perl-parse-yapp")
6968     (version "1.05")
6969     (source
6970      (origin
6971        (method url-fetch)
6972        (uri (string-append
6973              "mirror://cpan/authors/id/F/FD/FDESAR/Parse-Yapp-"
6974              version
6975              ".tar.gz"))
6976        (sha256
6977         (base32
6978          "0azjqqf4m7nkfgmmj4q77vy9sdgg01wn8xxv40bq3pis93xnr2i2"))))
6979     (build-system perl-build-system)
6980     (home-page "http://search.cpan.org/dist/Parse-Yapp")
6981     (synopsis "Generate and use LALR parsers")
6982     (description "This package compiles yacc-like @dfn{Look Ahead LR} (LALR)
6983 grammars to generate Perl object oriented parser modules.")
6984     (license (package-license perl))))
6987 ;;; Some packaged modules need versions of core modules that are newer than
6988 ;;; those in our perl 5.16.1.
6990 (define-public perl-cpan-meta
6991   (package
6992     (name "perl-cpan-meta")
6993     (version "2.143240")
6994     (source
6995      (origin
6996        (method url-fetch)
6997        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
6998                            "CPAN-Meta-" version ".tar.gz"))
6999        (sha256
7000         (base32
7001          "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
7002     (build-system perl-build-system)
7003     (propagated-inputs
7004      `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
7005        ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
7006        ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
7007     (home-page "http://search.cpan.org/dist/CPAN-Meta")
7008     (synopsis "Distribution metadata for a CPAN dist")
7009     (description "Software distributions released to the CPAN include a
7010 META.json or, for older distributions, META.yml, which describes the
7011 distribution, its contents, and the requirements for building and installing
7012 the distribution.  The data structure stored in the META.json file is
7013 described in CPAN::Meta::Spec.  CPAN::Meta provides a simple class to
7014 represent this distribution metadata (or distmeta), along with some helpful
7015 methods for interrogating that data.")
7016     (license (package-license perl))))
7018 (define-public perl-cpan-meta-requirements
7019   (package
7020     (name "perl-cpan-meta-requirements")
7021     (version "2.131")
7022     (source
7023      (origin
7024        (method url-fetch)
7025        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7026                            "CPAN-Meta-Requirements-" version ".tar.gz"))
7027        (sha256
7028         (base32
7029          "12p5s7w3cwcrbpcrxzanvpr0syswhwlqzbaki6m044c45jix2fss"))))
7030     (build-system perl-build-system)
7031     (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
7032     (synopsis "Set of version requirements for a CPAN dist")
7033     (description "A CPAN::Meta::Requirements object models a set of version
7034 constraints like those specified in the META.yml or META.json files in CPAN
7035 distributions, and as defined by CPAN::Meta::Spec.  It can be built up by
7036 adding more and more constraints, and will reduce them to the simplest
7037 representation.")
7038     (license (package-license perl))))
7040 (define-public perl-cpan-meta-yaml
7041   (package
7042     (name "perl-cpan-meta-yaml")
7043     (version "0.012")
7044     (source
7045      (origin
7046        (method url-fetch)
7047        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7048                            "CPAN-Meta-YAML-" version ".tar.gz"))
7049        (sha256
7050         (base32
7051          "0a0d62w8d81kkas4j1h48znk0f0vrpibl31gvz9r8hm77dbqqwkw"))))
7052     (build-system perl-build-system)
7053     (arguments
7054      `(#:tests? #f))                    ;Tests require Test::More >= 0.99
7055     (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
7056     (synopsis "Read and write a subset of YAML for CPAN Meta files")
7057     (description "This module implements a subset of the YAML specification
7058 for use in reading and writing CPAN metadata files like META.yml and
7059 MYMETA.yml.")
7060     (license (package-license perl))))
7062 (define-public perl-module-build
7063   (package
7064     (name "perl-module-build")
7065     (version "0.4220")
7066     (source
7067      (origin
7068        (method url-fetch)
7069        (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
7070                            "Module-Build-" version ".tar.gz"))
7071        (sha256
7072         (base32
7073          "18mm6k7d7cmj9l6na1c50vbc8hc1pwsz38yxi9x6ydlrwz3hf4pv"))))
7074     (build-system perl-build-system)
7075     (propagated-inputs
7076      `(("perl-cpan-meta" ,perl-cpan-meta)))
7077     (home-page "http://search.cpan.org/dist/Module-Build")
7078     (synopsis "Build and install Perl modules")
7079     (description "@code{Module::Build} is a system for building, testing, and
7080 installing Perl modules; it used to be part of Perl itself until version 5.22,
7081 which dropped it.  It is meant to be an alternative to
7082 @code{ExtUtils::MakeMaker}.  Developers may alter the behavior of the module
7083 through subclassing in a much more straightforward way than with
7084 @code{MakeMaker}.  It also does not require a @command{make} on your
7085 system---most of the @code{Module::Build} code is pure-Perl.")
7086     (license (package-license perl))))
7088 (define-public perl-parse-cpan-meta
7089   (package
7090     (name "perl-parse-cpan-meta")
7091     (version "1.4414")
7092     (source
7093      (origin
7094        (method url-fetch)
7095        (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
7096                            "Parse-CPAN-Meta-" version ".tar.gz"))
7097        (sha256
7098         (base32
7099          "06ya2rg599qanqb1fxiyrd489mvmdgzbw4ph23hwjwpv9lahhxnd"))))
7100     (build-system perl-build-system)
7101     (propagated-inputs
7102      `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
7103     (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
7104     (synopsis "Parse META.yml and META.json CPAN metadata files")
7105     (description "Parse::CPAN::Meta is a parser for META.json and META.yml
7106 files, using JSON::PP and/or CPAN::Meta::YAML.")
7107     (license (package-license perl))))
7109 (define-public perl-scalar-list-utils
7110   (package
7111     (name "perl-scalar-list-utils")
7112     (version "1.41")
7113     (source
7114      (origin
7115        (method url-fetch)
7116        (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
7117                            "Scalar-List-Utils-" version ".tar.gz"))
7118        (sha256
7119         (base32
7120          "04l1q4hps9n8b1hk9kpgpc1cryim7pl9sfdyb7fz5nq4gmz307j7"))))
7121     (build-system perl-build-system)
7122     (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
7123     (synopsis "Common Scalar and List utility subroutines")
7124     (description "This package contains a selection of subroutines that people
7125 have expressed would be nice to have in the perl core, but the usage would not
7126 really be high enough to warrant the use of a keyword, and the size so small
7127 such that being individual extensions would be wasteful.")
7128     (license (package-license perl))))
7130 (define-public perl-shell-command
7131   (package
7132     (name "perl-shell-command")
7133     (version "0.06")
7134     (source
7135       (origin
7136         (method url-fetch)
7137         (uri (string-append
7138                "mirror://cpan/authors/id/F/FL/FLORA/Shell-Command-"
7139                version
7140                ".tar.gz"))
7141         (sha256
7142           (base32
7143             "1lgc2rb3b5a4lxvbq0cbg08qk0n2i88srxbsz93bwi3razpxxr7k"))))
7144     (build-system perl-build-system)
7145     (home-page
7146       "http://search.cpan.org/dist/Shell-Command")
7147     (synopsis
7148       "Cross-platform functions emulating common shell commands")
7149     (description
7150       "Shell::Command is a thin wrapper around ExtUtils::Command.")
7151     (license (package-license perl))))
7153 ;;; END: Core module overrides
7155 (define-public perl-file-find-object
7156  (package
7157   (name "perl-file-find-object")
7158   (version "v0.2.13")
7159   (source
7160     (origin
7161       (method url-fetch)
7162       (uri (string-append
7163              "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-"
7164              version
7165              ".tar.gz"))
7166       (sha256
7167         (base32
7168           "0gf13b76b824s73r5rp00v8xrd6dnb5yi5jjavfc394scqv6ldh4"))))
7169   (build-system perl-build-system)
7170   (native-inputs
7171     `(("perl-module-build" ,perl-module-build)))
7172   (inputs
7173     `(("perl-class-xsaccessor" ,perl-class-xsaccessor)))
7174   (home-page
7175     "http://search.cpan.org/dist/File-Find-Object")
7176   (synopsis
7177     "Object-oriented File::Find replacement in Perl")
7178   (description "File::Find::Object is an object-oriented
7179 File::Find replacement in Perl.")
7180   (license artistic2.0)))
7182 (define-public perl-file-find-object-rule
7183  (package
7184   (name "perl-file-find-object-rule")
7185   (version "0.0305")
7186   (source
7187     (origin
7188       (method url-fetch)
7189       (uri (string-append
7190              "mirror://cpan/authors/id/S/SH/SHLOMIF/File-Find-Object-Rule-"
7191              version
7192              ".tar.gz"))
7193       (sha256
7194         (base32
7195           "0hs4n3w99q4ylkhg3qhzcwkxqn7zblfj1zjdgl06ca30afkk4cv6"))))
7196   (build-system perl-build-system)
7197   (native-inputs
7198     `(("perl-module-build" ,perl-module-build)))
7199   (inputs
7200     `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
7201       ("perl-file-find-object" ,perl-file-find-object)
7202       ("perl-number-compare" ,perl-number-compare)
7203       ("perl-text-glob" ,perl-text-glob)))
7204   (home-page
7205     "http://search.cpan.org/dist/File-Find-Object-Rule")
7206   (synopsis
7207     "Alternative interface to File::Find::Object")
7208   (description "File::Find::Object::Rule is an alternative Perl
7209 interface to File::Find::Object.")
7210   (license (package-license perl))))
7212 (define-public perl-test-trailingspace
7213  (package
7214   (name "perl-test-trailingspace")
7215   (version "0.0300")
7216   (source
7217     (origin
7218       (method url-fetch)
7219       (uri (string-append
7220              "mirror://cpan/authors/id/S/SH/SHLOMIF/Test-TrailingSpace-"
7221              version
7222              ".tar.gz"))
7223       (sha256
7224         (base32
7225           "01slmrcjfq38mpdg3hlb7lnnbgsqbn26958y3hzx0zwrif40pigr"))))
7226   (build-system perl-build-system)
7227   (native-inputs
7228     `(("perl-module-build" ,perl-module-build)
7229       ("perl-file-find-object" ,perl-file-find-object)
7230       ("perl-class-xsaccessor" ,perl-class-xsaccessor)))
7231   (inputs
7232     `(("perl-file-find-object-rule" ,perl-file-find-object-rule)
7233       ("perl-text-glob" ,perl-text-glob)
7234       ("perl-number-compare" ,perl-number-compare)))
7235   (home-page
7236     "http://search.cpan.org/dist/Test-TrailingSpace")
7237   (synopsis
7238     "Test for trailing space in Perl source files")
7239   (description "Test::TrailingSpace tests for trailing spaces
7240 in Perl source files.")
7241   (license x11)))
7243 (define-public perl-encode-detect
7244  (package
7245   (name "perl-encode-detect")
7246   (version "1.01")
7247   (source
7248     (origin
7249       (method url-fetch)
7250       (uri (string-append
7251              "mirror://cpan/authors/id/J/JG/JGMYERS/Encode-Detect-"
7252              version
7253              ".tar.gz"))
7254       (sha256
7255         (base32
7256           "1wdv9ffgs4xyfh5dnh09dqkmmlbf5m1hxgdgb3qy6v6vlwx8jkc3"))))
7257   (build-system perl-build-system)
7258   (inputs
7259     `(("perl-module-build" ,perl-module-build)))
7260   (home-page
7261     "http://search.cpan.org/dist/Encode-Detect")
7262   (synopsis
7263     "Perl Encode::Encoding subclass that detects the encoding of data")
7264   (description "Encode::Detect detects the encoding of data for Perl.")
7265   (license mpl1.1)))