Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / packages / perl.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2012, 2013, 2014 Ludovic Courtès <ludo@gnu.org>
3 ;;; Copyright © 2013 Andreas Enge <andreas@enge.fr>
4 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
5 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
6 ;;;
7 ;;; This file is part of GNU Guix.
8 ;;;
9 ;;; GNU Guix is free software; you can redistribute it and/or modify it
10 ;;; under the terms of the GNU General Public License as published by
11 ;;; the Free Software Foundation; either version 3 of the License, or (at
12 ;;; your option) any later version.
13 ;;;
14 ;;; GNU Guix is distributed in the hope that it will be useful, but
15 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
16 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 ;;; GNU General Public License for more details.
18 ;;;
19 ;;; You should have received a copy of the GNU General Public License
20 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
21
22 (define-module (gnu packages perl)
23 #:use-module (guix licenses)
24 #:use-module (gnu packages)
25 #:use-module (guix packages)
26 #:use-module (guix download)
27 #:use-module (guix build-system gnu)
28 #:use-module (guix build-system perl))
29
30 ;;;
31 ;;; Please: Try to add new module packages in alphabetic order.
32 ;;;
33
34 \f
35 (define-public perl
36 ;; Yeah, Perl... It is required early in the bootstrap process by Linux.
37 (package
38 (name "perl")
39 (version "5.16.1")
40 (source (origin
41 (method url-fetch)
42 (uri (string-append "http://www.cpan.org/src/5.0/perl-"
43 version ".tar.gz"))
44 (sha256
45 (base32
46 "15qxzba3a50c9nik5ydgyfp62x7h9vxxn12yd1jgl93hb1wj96km"))
47 (patches (list (search-patch "perl-no-sys-dirs.patch")))))
48 (build-system gnu-build-system)
49 (arguments
50 '(#:tests? #f
51 #:phases
52 (alist-replace
53 'configure
54 (lambda* (#:key inputs outputs #:allow-other-keys)
55 (let ((out (assoc-ref outputs "out"))
56 (libc (assoc-ref inputs "libc")))
57 ;; Use the right path for `pwd'.
58 (substitute* "dist/Cwd/Cwd.pm"
59 (("/bin/pwd")
60 (which "pwd")))
61
62 (zero?
63 (system* "./Configure"
64 (string-append "-Dprefix=" out)
65 (string-append "-Dman1dir=" out "/share/man/man1")
66 (string-append "-Dman3dir=" out "/share/man/man3")
67 "-de" "-Dcc=gcc"
68 "-Uinstallusrbinperl"
69 "-Dinstallstyle=lib/perl5"
70 "-Duseshrplib"
71 (string-append "-Dlocincpth=" libc "/include")
72 (string-append "-Dloclibpth=" libc "/lib")))))
73 %standard-phases)))
74 (native-search-paths (list (search-path-specification
75 (variable "PERL5LIB")
76 (files '("lib/perl5/site_perl")))))
77 (synopsis "Implementation of the Perl programming language")
78 (description
79 "Perl 5 is a highly capable, feature-rich programming language with over
80 24 years of development.")
81 (home-page "http://www.perl.org/")
82 (license gpl1+))) ; or "Artistic"
83
84 (define-public perl-algorithm-c3
85 (package
86 (name "perl-algorithm-c3")
87 (version "0.10")
88 (source
89 (origin
90 (method url-fetch)
91 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
92 "Algorithm-C3-" version ".tar.gz"))
93 (sha256
94 (base32
95 "01hlcaxndls86bl92rkd3fvf9pfa3inxqaimv88bxs95803kmkss"))))
96 (build-system perl-build-system)
97 (home-page "http://search.cpan.org/dist/Algorithm-C3")
98 (synopsis "Module for merging hierarchies using the C3 algorithm")
99 (description "This module implements the C3 algorithm, which aims to
100 provide a sane method resolution order under multiple inheritance.")
101 (license (package-license perl))))
102
103 (define-public perl-algorithm-diff
104 (package
105 (name "perl-algorithm-diff")
106 (version "1.1903")
107 (source
108 (origin
109 (method url-fetch)
110 (uri (string-append "mirror://cpan/authors/id/T/TY/TYEMQ/"
111 "Algorithm-Diff-" version ".tar.gz"))
112 (sha256
113 (base32
114 "0l8pk7ziz72d022hsn4xldhhb9f5649j5cgpjdibch0xng24ms1h"))))
115 (build-system perl-build-system)
116 (home-page "http://search.cpan.org/dist/Algorithm-Diff")
117 (synopsis "Compute differences between two files or lists")
118 (description "This is a module for computing the difference between two
119 files, two strings, or any other two lists of things. It uses an intelligent
120 algorithm similar to (or identical to) the one used by the Unix \"diff\"
121 program. It is guaranteed to find the *smallest possible* set of
122 differences.")
123 (license (package-license perl))))
124
125 (define-public perl-aliased
126 (package
127 (name "perl-aliased")
128 (version "0.34")
129 (source
130 (origin
131 (method url-fetch)
132 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
133 "aliased-" version ".tar.gz"))
134 (sha256
135 (base32
136 "1syyqzy462501kn5ma9gl6xbmcahqcn4qpafhsmpz0nd0x2m4l63"))))
137 (build-system perl-build-system)
138 (home-page "http://search.cpan.org/dist/aliased")
139 (synopsis "Use shorter versions of class names")
140 (description "The alias module loads the class you specify and exports
141 into your namespace a subroutine that returns the class name. You can
142 explicitly alias the class to another name or, if you prefer, you can do so
143 implicitly.")
144 (license (package-license perl))))
145
146 (define-public perl-appconfig
147 (package
148 (name "perl-appconfig")
149 (version "1.71")
150 (source
151 (origin
152 (method url-fetch)
153 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
154 "AppConfig-" version ".tar.gz"))
155 (sha256
156 (base32
157 "03vvi3mk4833mx2c6dkm9zhvakf02mb2b7wz9pk9xc7c4mq04xqi"))))
158 (build-system perl-build-system)
159 (native-inputs
160 `(("perl-test-pod" ,perl-test-pod)))
161 (home-page "http://search.cpan.org/dist/AppConfig")
162 (synopsis "Configuration files and command line parsing")
163 (description "AppConfig is a bundle of Perl5 modules for reading
164 configuration files and parsing command line arguments.")
165 (license (package-license perl))))
166
167 (define-public perl-archive-zip
168 (package
169 (name "perl-archive-zip")
170 (version "1.30")
171 (source
172 (origin
173 (method url-fetch)
174 (uri (string-append
175 "mirror://cpan/authors/id/A/AD/ADAMK/Archive-Zip-"
176 version ".tar.gz"))
177 (sha256
178 (base32
179 "0633zah5z9njiqnvy3vh42fjymncmil1jdfb7d18w8xpfzzp5d7q"))))
180 (build-system perl-build-system)
181 (synopsis "Perl API to zip files")
182 (description "The Archive::Zip module allows a Perl program to create,
183 manipulate, read, and write Zip archive files.")
184 (home-page "http://search.cpan.org/~phred/Archive-Zip-1.37/lib/Archive/Zip.pm")
185 (license (package-license perl))))
186
187 (define-public perl-base
188 (package
189 (name "perl-base")
190 (version "2.18")
191 (source
192 (origin
193 (method url-fetch)
194 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
195 "base-" version ".tar.gz"))
196 (sha256
197 (base32
198 "01n3l5ifmn2wd0aadpnzya27b75imibj9zdivkfzcpnviqgx5c2m"))))
199 (build-system perl-build-system)
200 (home-page "http://search.cpan.org/dist/base")
201 (synopsis "Establish an ISA relationship with base classes at compile time")
202 (description "Allows you to both load one or more modules, while setting
203 up inheritance from those modules at the same time. Unless you are using the
204 fields pragma, consider this module discouraged in favor of the lighter-weight
205 parent.")
206 (license (package-license perl)))) ;See README
207
208 (define-public perl-b-hooks-endofscope
209 (package
210 (name "perl-b-hooks-endofscope")
211 (version "0.13")
212 (source
213 (origin
214 (method url-fetch)
215 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
216 "B-Hooks-EndOfScope-" version ".tar.gz"))
217 (sha256
218 (base32
219 "1f5d0lbkwf23dfjn60g6fynmjhy5rxdyxcpdfb07srm73qpg2zpi"))))
220 (build-system perl-build-system)
221 (propagated-inputs
222 `(("perl-module-runtime" ,perl-module-runtime)
223 ("perl-module-implementation" ,perl-module-implementation)
224 ("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)
225 ("perl-variable-magic" ,perl-variable-magic)))
226 (home-page "http://search.cpan.org/dist/B-Hooks-EndOfScope")
227 (synopsis "Execute code after a scope finished compilation")
228 (description "This module allows you to execute code when perl finished
229 compiling the surrounding scope.")
230 (license (package-license perl))))
231
232 (define-public perl-benchmark-timer
233 (package
234 (name "perl-benchmark-timer")
235 (version "0.7102")
236 (source (origin
237 (method url-fetch)
238 (uri (string-append "mirror://cpan/authors/id/D/DC/DCOPPIT/"
239 "Benchmark-Timer-" version ".tar.gz"))
240 (sha256
241 (base32
242 "1gl9ybm9hgia3ld5s11b7bv2p2hmx5rss5hxcfy6rmbzrjcnci01"))))
243 (build-system perl-build-system)
244 ;; The optional input module Statistics::PointEstimation (from
245 ;; Statistics-TTest) lists no license.
246 (synopsis "Benchmarking with statistical confidence")
247 (description
248 "The Benchmark::Timer class allows you to time portions of code
249 conveniently, as well as benchmark code by allowing timings of repeated
250 trials. It is perfect for when you need more precise information about the
251 running time of portions of your code than the Benchmark module will give you,
252 but don't want to go all out and profile your code.")
253 (home-page (string-append "http://search.cpan.org/~dcoppit/"
254 "Benchmark-Timer-" version))
255 (license gpl2)))
256
257 (define-public perl-cache-cache
258 (package
259 (name "perl-cache-cache")
260 (version "1.08")
261 (source (origin
262 (method url-fetch)
263 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
264 "Cache-Cache-" version ".tar.gz"))
265 (sha256
266 (base32
267 "1s6i670dc3yb6ngvdk48y6szdk5n1f4icdcjv2vi1l2xp9fzviyj"))))
268 (build-system perl-build-system)
269 (propagated-inputs
270 `(("perl-digest-sha1" ,perl-digest-sha1)
271 ("perl-error" ,perl-error)
272 ("perl-ipc-sharelite" ,perl-ipc-sharelite)))
273 (home-page "http://search.cpan.org/dist/Cache-Cache")
274 (synopsis "Cache interface for Perl")
275 (description "The Cache modules are designed to assist a developer in
276 persisting data for a specified period of time. Often these modules are used
277 in web applications to store data locally to save repeated and redundant
278 expensive calls to remote machines or databases. People have also been known
279 to use Cache::Cache for its straightforward interface in sharing data between
280 runs of an application or invocations of a CGI-style script or simply as an
281 easy to use abstraction of the filesystem or shared memory.")
282 (license (package-license perl))))
283
284 (define-public perl-cache-fastmmap
285 (package
286 (name "perl-cache-fastmmap")
287 (version "1.40")
288 (source
289 (origin
290 (method url-fetch)
291 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBM/"
292 "Cache-FastMmap-" version ".tar.gz"))
293 (sha256
294 (base32
295 "0h3ckr04cdn6dvl40m4m97vl5ybf30v1lwhw3jvkr92kpksvq4hd"))))
296 (build-system perl-build-system)
297 (home-page "http://search.cpan.org/dist/Cache-FastMmap")
298 (synopsis "Shared memory interprocess cache via mmap")
299 (description "A shared memory cache through an mmap'ed file. It's core is
300 written in C for performance. It uses fcntl locking to ensure multiple
301 processes can safely access the cache at the same time. It uses a basic LRU
302 algorithm to keep the most used entries in the cache.")
303 (license (package-license perl))))
304
305 (define-public perl-capture-tiny
306 (package
307 (name "perl-capture-tiny")
308 (version "0.28")
309 (source
310 (origin
311 (method url-fetch)
312 (uri (string-append
313 "mirror://cpan/authors/id/D/DA/DAGOLDEN/Capture-Tiny-"
314 version ".tar.gz"))
315 (sha256
316 (base32
317 "117gmwipql1y5xnw9jil3lhdsrf2wsm9wjdzqj66x971n3fwm573"))))
318 (build-system perl-build-system)
319 (home-page "http://search.cpan.org/dist/Capture-Tiny")
320 (synopsis "Capture STDOUT and STDERR from Perl, XS or external programs")
321 (description
322 "Capture::Tiny provides a simple, portable way to capture almost anything
323 sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS
324 code or from an external program. Optionally, output can be teed so that it
325 is captured while being passed through to the original file handles.")
326 (license asl2.0)))
327
328 (define-public perl-carp-assert
329 (package
330 (name "perl-carp-assert")
331 (version "0.21")
332 (source
333 (origin
334 (method url-fetch)
335 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
336 "Carp-Assert-" version ".tar.gz"))
337 (sha256
338 (base32
339 "0km5fc6r6whxh6h5yd7g1j0bi96sgk0gkda6cardicrw9qmqwkwj"))))
340 (build-system perl-build-system)
341 (home-page "http://search.cpan.org/dist/Carp-Assert")
342 (synopsis "Executable comments for Perl")
343 (description "Carp::Assert is intended for a purpose like the ANSI C
344 library assert.h.")
345 (license (package-license perl))))
346
347 (define-public perl-carp-assert-more
348 (package
349 (name "perl-carp-assert-more")
350 (version "1.14")
351 (source
352 (origin
353 (method url-fetch)
354 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
355 "Carp-Assert-More-" version ".tar.gz"))
356 (sha256
357 (base32
358 "0cq7qk4qbhqppm4raby5k24b5mx5qjgy1884nrddhxillnzlq01z"))))
359 (build-system perl-build-system)
360 (native-inputs
361 `(("perl-test-exception" ,perl-test-exception)))
362 (propagated-inputs
363 `(("perl-carp-assert" ,perl-carp-assert)))
364 (home-page "http://search.cpan.org/dist/Carp-Assert-More")
365 (synopsis "Convenience wrappers around Carp::Assert")
366 (description "Carp::Assert::More is a set of handy assertion functions for
367 Perl.")
368 (license artistic2.0)))
369
370 (define-public perl-carp-clan
371 (package
372 (name "perl-carp-clan")
373 (version "6.04")
374 (source
375 (origin
376 (method url-fetch)
377 (uri (string-append "mirror://cpan/authors/id/S/ST/STBEY/"
378 "Carp-Clan-" version ".tar.gz"))
379 (sha256
380 (base32
381 "1v71k8s1pi16l5y579gnrg372c6pdvy6qqm6iddm8h1dx7n16bjl"))))
382 (build-system perl-build-system)
383 (native-inputs
384 `(("perl-test-exception" ,perl-test-exception)))
385 (home-page "http://search.cpan.org/dist/Carp-Clan")
386 (synopsis "Report errors from a \"clan\" of modules")
387 (description "This module allows errors from a clan (or family) of modules
388 to appear to originate from the caller of the clan. This is necessary in
389 cases where the clan modules are not classes derived from each other, and thus
390 the Carp.pm module doesn't help.")
391 (license (package-license perl))))
392
393 (define-public perl-class-accessor
394 (package
395 (name "perl-class-accessor")
396 (version "0.34")
397 (source
398 (origin
399 (method url-fetch)
400 (uri (string-append "mirror://cpan/authors/id/K/KA/KASEI/"
401 "Class-Accessor-" version ".tar.gz"))
402 (sha256
403 (base32
404 "1z6fqg0yz8gay15r1iasslv8f1n1mzjkrhs47fvbj3rqz36y1cfd"))))
405 (build-system perl-build-system)
406 (native-inputs
407 `(("perl-sub-name" ,perl-sub-name)))
408 (propagated-inputs
409 `(("perl-base" ,perl-base)))
410 (home-page "http://search.cpan.org/dist/Class-Accessor")
411 (synopsis "Automated accessor generation")
412 (description "This module automagically generates accessors/mutators for
413 your class.")
414 (license (package-license perl))))
415
416 (define-public perl-class-accessor-chained
417 (package
418 (name "perl-class-accessor-chained")
419 (version "0.01")
420 (source
421 (origin
422 (method url-fetch)
423 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
424 "Class-Accessor-Chained-" version ".tar.gz"))
425 (sha256
426 (base32
427 "1lilrjy1s0q5hyr0888kf0ifxjyl2iyk4vxil4jsv0sgh39lkgx5"))))
428 (build-system perl-build-system)
429 (propagated-inputs
430 `(("perl-class-accessor" ,perl-class-accessor)))
431 (home-page "http://search.cpan.org/dist/Class-Accessor-Chained")
432 (synopsis "Faster, but less expandable, chained accessors")
433 (description "A chained accessor is one that always returns the object
434 when called with parameters (to set), and the value of the field when called
435 with no arguments. This module subclasses Class::Accessor in order to provide
436 the same mk_accessors interface.")
437 (license (package-license perl))))
438
439 (define-public perl-class-accessor-grouped
440 (package
441 (name "perl-class-accessor-grouped")
442 (version "0.10012")
443 (source
444 (origin
445 (method url-fetch)
446 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
447 "Class-Accessor-Grouped-" version ".tar.gz"))
448 (sha256
449 (base32
450 "1zp74yv023q3macrf4rv3i82z8pkffqyhh7xk9xg8fbr63ikwqf4"))))
451 (build-system perl-build-system)
452 (native-inputs
453 `(("perl-test-exception" ,perl-test-exception)))
454 (propagated-inputs
455 `(("perl-class-xsaccessor" ,perl-class-xsaccessor)
456 ("perl-module-runtime" ,perl-module-runtime)
457 ("perl-sub-name" ,perl-sub-name)))
458 (home-page "http://search.cpan.org/dist/Class-Accessor-Grouped")
459 (synopsis "Build groups of accessors")
460 (description "This class lets you build groups of accessors that will call
461 different getters and setters.")
462 (license (package-license perl))))
463
464 (define-public perl-class-c3
465 (package
466 (name "perl-class-c3")
467 (version "0.27")
468 (source
469 (origin
470 (method url-fetch)
471 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
472 "Class-C3-" version ".tar.gz"))
473 (sha256
474 (base32
475 "185jdpr4applrkvh71ks9ildx5kdymhqr4hilsqxwqny1wr56qss"))))
476 (build-system perl-build-system)
477 (propagated-inputs
478 `(("perl-algorithm-c3" ,perl-algorithm-c3)))
479 (home-page "http://search.cpan.org/dist/Class-C3")
480 (synopsis "Pragma to use the C3 method resolution order algorithm")
481 (description "This is pragma to change Perl 5's standard method resolution
482 order from depth-first left-to-right (a.k.a - pre-order) to the more
483 sophisticated C3 method resolution order.")
484 (license (package-license perl))))
485
486 (define-public perl-class-c3-adopt-next
487 (package
488 (name "perl-class-c3-adopt-next")
489 (version "0.13")
490 (source
491 (origin
492 (method url-fetch)
493 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
494 "Class-C3-Adopt-NEXT-" version ".tar.gz"))
495 (sha256
496 (base32
497 "1rwgbx6dsy4rpas94p8wakzj7hrla1p15jnbm24kwhsv79gp91ld"))))
498 (build-system perl-build-system)
499 (native-inputs
500 `(("perl-test-exception" ,perl-test-exception)))
501 (propagated-inputs
502 `(("perl-list-moreutils" ,perl-list-moreutils)
503 ("perl-mro-compat" ,perl-mro-compat)))
504 (home-page "http://search.cpan.org/dist/Class-C3-Adopt-NEXT")
505 (synopsis "Drop-in replacement for NEXT")
506 (description "This module is intended as a drop-in replacement for NEXT,
507 supporting the same interface, but using Class::C3 to do the hard work.")
508 (license (package-license perl))))
509
510 (define-public perl-class-c3-componentised
511 (package
512 (name "perl-class-c3-componentised")
513 (version "1.001000")
514 (source
515 (origin
516 (method url-fetch)
517 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
518 "Class-C3-Componentised-" version ".tar.gz"))
519 (sha256
520 (base32
521 "1nzav8arxll0rya7r2vp032s3acliihbb9mjlfa13rywhh77bzvl"))))
522 (build-system perl-build-system)
523 (native-inputs
524 `(("perl-test-exception" ,perl-test-exception)))
525 (propagated-inputs
526 `(("perl-class-c3" ,perl-class-c3)
527 ("perl-class-inspector" ,perl-class-inspector)
528 ("perl-mro-compat" ,perl-mro-compat)))
529 (home-page "http://search.cpan.org/dist/Class-C3-Componentised")
530 (synopsis "Load mix-ins or components to your C3-based class")
531 (description "This module will inject base classes to your module using
532 the Class::C3 method resolution order.")
533 (license (package-license perl))))
534
535 (define-public perl-class-data-inheritable
536 (package
537 (name "perl-class-data-inheritable")
538 (version "0.08")
539 (source
540 (origin
541 (method url-fetch)
542 (uri (string-append "mirror://cpan/authors/id/T/TM/TMTM/"
543 "Class-Data-Inheritable-" version ".tar.gz"))
544 (sha256
545 (base32
546 "0jpi38wy5xh6p1mg2cbyjjw76vgbccqp46685r27w8hmxb7gwrwr"))))
547 (build-system perl-build-system)
548 (home-page "http://search.cpan.org/dist/Class-Data-Inheritable")
549 (synopsis "Inheritable, overridable class data")
550 (description "Class::Data::Inheritable is for creating accessor/mutators
551 to class data. That is, if you want to store something about your class as a
552 whole (instead of about a single object). This data is then inherited by your
553 subclasses and can be overriden.")
554 (license (package-license perl))))
555
556 (define-public perl-class-date
557 (package
558 (name "perl-class-date")
559 (version "1.1.15")
560 (source
561 (origin
562 (method url-fetch)
563 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
564 "Class-Date-" version ".tar.gz"))
565 (sha256
566 (base32
567 "0dd707sq8ix2dqbnp7ga77ba69r3vsn0cd6scnkn13s0gm2g4b00"))))
568 (build-system perl-build-system)
569 (arguments `(#:tests? #f)) ;timezone tests in chroot
570 (home-page "http://search.cpan.org/dist/Class-Date")
571 (synopsis "Class for easy date and time manipulation")
572 (description "This module provides a general-purpose date and datetime
573 type for perl.")
574 (license (package-license perl))))
575
576 (define-public perl-class-inspector
577 (package
578 (name "perl-class-inspector")
579 (version "1.28")
580 (source
581 (origin
582 (method url-fetch)
583 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
584 "Class-Inspector-" version ".tar.gz"))
585 (sha256
586 (base32
587 "04iij8dbcgaim7g109frpyf7mh4ydsd8zh53r53chk0zxnivg91w"))))
588 (build-system perl-build-system)
589 (home-page "http://search.cpan.org/dist/Class-Inspector")
590 (synopsis "Get information about a class and its structure")
591 (description "Class::Inspector allows you to get information about a
592 loaded class.")
593 (license (package-license perl))))
594
595 (define-public perl-class-load
596 (package
597 (name "perl-class-load")
598 (version "0.22")
599 (source
600 (origin
601 (method url-fetch)
602 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
603 "Class-Load-" version ".tar.gz"))
604 (sha256
605 (base32
606 "049i285yj8hwgzj7nncjbs2bhxvpdk88wmx1d0nh0rdmh5hdnlmy"))))
607 (build-system perl-build-system)
608 (native-inputs
609 `(("perl-module-build-tiny" ,perl-module-build-tiny)
610 ("perl-test-fatal" ,perl-test-fatal)
611 ("perl-test-requires" ,perl-test-requires)))
612 (propagated-inputs
613 `(("perl-package-stash" ,perl-package-stash)
614 ("perl-data-optlist" ,perl-data-optlist)
615 ("perl-namespace-clean" ,perl-namespace-clean)
616 ("perl-module-runtime" ,perl-module-runtime)
617 ("perl-module-implementation" ,perl-module-implementation)))
618 (home-page "http://search.cpan.org/dist/Class-Load")
619 (synopsis "Working (require \"Class::Name\") and more")
620 (description "\"require EXPR\" only accepts Class/Name.pm style module
621 names, not Class::Name. For that, this module provides \"load_class
622 'Class::Name'\".")
623 (license (package-license perl))))
624
625 (define-public perl-class-load-xs
626 (package
627 (name "perl-class-load-xs")
628 (version "0.09")
629 (source
630 (origin
631 (method url-fetch)
632 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
633 "Class-Load-XS-" version ".tar.gz"))
634 (sha256
635 (base32
636 "1aivalms81s3a2cj053ncgnmkpgl7vspna8ajlkqir7rdn8kpv5v"))))
637 (build-system perl-build-system)
638 (native-inputs
639 `(("perl-test-fatal" ,perl-test-fatal)
640 ("perl-test-requires" ,perl-test-requires)))
641 (inputs `(("perl-class-load" ,perl-class-load)))
642 (home-page "http://search.cpan.org/dist/Class-Load-XS")
643 (synopsis "XS implementation of parts of Class::Load")
644 (description "This module provides an XS implementation for portions of
645 Class::Load")
646 (license artistic2.0)))
647
648 (define-public perl-class-method-modifiers
649 (package
650 (name "perl-class-method-modifiers")
651 (version "2.11")
652 (source
653 (origin
654 (method url-fetch)
655 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
656 "Class-Method-Modifiers-" version ".tar.gz"))
657 (sha256
658 (base32
659 "14nk2gin9cjwpysakli7f0gs4q1w220sn73xzv35rhlspngrggyy"))))
660 (build-system perl-build-system)
661 (native-inputs
662 `(("perl-test-fatal" ,perl-test-fatal)
663 ("perl-test-requires" ,perl-test-requires)))
664 (home-page "http://search.cpan.org/dist/Class-Method-Modifiers")
665 (synopsis "Moose-like method modifiers")
666 (description "Class::Method::Modifiers provides three modifiers: before,
667 around, and after. before and after are run just before and after the method
668 they modify, but can not really affect that original method. around is run in
669 place of the original method, with a hook to easily call that original
670 method.")
671 (license (package-license perl))))
672
673 (define-public perl-class-singleton
674 (package
675 (name "perl-class-singleton")
676 (version "1.5")
677 (source
678 (origin
679 (method url-fetch)
680 (uri (string-append "mirror://cpan/authors/id/S/SH/SHAY/"
681 "Class-Singleton-" version ".tar.gz"))
682 (sha256
683 (base32
684 "0y7ngrjf551bjgmijp5rsidbkq6c8hb5lmy2jcqq0fify020s8iq"))))
685 (build-system perl-build-system)
686 (home-page "http://search.cpan.org/dist/Class-Singleton")
687 (synopsis "Implementation of a singleton class for Perl")
688 (description "This module implements a Singleton class from which other
689 classes can be derived. By itself, the Class::Singleton module does very
690 little other than manage the instantiation of a single object.")
691 (license (package-license perl))))
692
693 (define-public perl-class-tiny
694 (package
695 (name "perl-class-tiny")
696 (version "1.000")
697 (source
698 (origin
699 (method url-fetch)
700 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
701 "Class-Tiny-" version ".tar.gz"))
702 (sha256
703 (base32
704 "0jll90byj0nl16hwpf28k54i4n53jidjsj1bnlbx72v0n56qfpb2"))))
705 (build-system perl-build-system)
706 (home-page "http://search.cpan.org/dist/Class-Tiny")
707 (synopsis "Minimalist class construction")
708 (description "This module offers a minimalist class construction kit. It
709 uses no non-core modules for any recent Perl.")
710 (license asl2.0)))
711
712 (define-public perl-class-unload
713 (package
714 (name "perl-class-unload")
715 (version "0.08")
716 (source
717 (origin
718 (method url-fetch)
719 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
720 "Class-Unload-" version ".tar.gz"))
721 (sha256
722 (base32
723 "097gr3r2jgnm1175m4lpg4a97hv2mxrn9r0b2c6bn1x9xdhkywgh"))))
724 (build-system perl-build-system)
725 (propagated-inputs
726 `(("perl-class-inspector" ,perl-class-inspector)))
727 (home-page "http://search.cpan.org/dist/Class-Unload")
728 (synopsis "Unload a class")
729 (description "Class:Unload unloads a given class by clearing out its
730 symbol table and removing it from %INC.")
731 (license (package-license perl))))
732
733 (define-public perl-class-xsaccessor
734 (package
735 (name "perl-class-xsaccessor")
736 (version "1.19")
737 (source
738 (origin
739 (method url-fetch)
740 (uri (string-append "mirror://cpan/authors/id/S/SM/SMUELLER/"
741 "Class-XSAccessor-" version ".tar.gz"))
742 (sha256
743 (base32
744 "1wm6013il899jnm0vn50a7iv9v6r4nqywbqzj0csyf8jbwwnpicr"))))
745 (build-system perl-build-system)
746 (home-page "http://search.cpan.org/dist/Class-XSAccessor")
747 (synopsis "Generate fast XS accessors without runtime compilation")
748 (description "Class::XSAccessor implements fast read, write, and
749 read/write accessors in XS. Additionally, it can provide predicates such as
750 \"has_foo()\" for testing whether the attribute \"foo\" is defined in the
751 object. It only works with objects that are implemented as ordinary hashes.
752 Class::XSAccessor::Array implements the same interface for objects that use
753 arrays for their internal representation.")
754 (license (package-license perl))))
755
756 (define-public perl-clone
757 (package
758 (name "perl-clone")
759 (version "0.37")
760 (source (origin
761 (method url-fetch)
762 (uri (string-append "mirror://cpan/authors/id/G/GA/GARU/"
763 "Clone-" version ".tar.gz"))
764 (sha256
765 (base32
766 "17fdhxpzrq2nwim3zkcrz4m9gjixp0i886yz54ysrshxy3k53wnr"))))
767 (build-system perl-build-system)
768 (synopsis "Recursively copy Perl datatypes")
769 (description
770 "This module provides a clone() method which makes recursive copies of
771 nested hash, array, scalar and reference types, including tied variables and
772 objects.")
773 (home-page (string-append "http://search.cpan.org/~garu/"
774 "Clone-" version))
775 (license (package-license perl))))
776
777 (define-public perl-common-sense
778 (package
779 (name "perl-common-sense")
780 (version "3.73")
781 (source
782 (origin
783 (method url-fetch)
784 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
785 "common-sense-" version ".tar.gz"))
786 (sha256
787 (base32
788 "047xwgpn5611zrhk4c8vk9pzcbk1q7n3q0lfiwhhq7k4fbjca441"))))
789 (build-system perl-build-system)
790 (home-page "http://search.cpan.org/dist/common-sense")
791 (synopsis "Sane defaults for Perl programs")
792 (description "This module implements some sane defaults for Perl programs,
793 as defined by two typical specimens of Perl coders.")
794 (license (package-license perl))))
795
796 (define-public perl-config-any
797 (package
798 (name "perl-config-any")
799 (version "0.24")
800 (source
801 (origin
802 (method url-fetch)
803 (uri (string-append "mirror://cpan/authors/id/B/BR/BRICAS/"
804 "Config-Any-" version ".tar.gz"))
805 (sha256
806 (base32
807 "06n6jn3q3xhk57icwip0ihzqixxav6sgp6rrb35hahj1z748y3vi"))))
808 (build-system perl-build-system)
809 (home-page "http://search.cpan.org/dist/Config-Any")
810 (synopsis "Load configuration from different file formats")
811 (description "Config::Any provides a facility for Perl applications and
812 libraries to load configuration data from multiple different file formats. It
813 supports XML, YAML, JSON, Apache-style configuration, and Perl code.")
814 (license (package-license perl))))
815
816 (define-public perl-config-autoconf
817 (package
818 (name "perl-config-autoconf")
819 (version "0.309")
820 (source
821 (origin
822 (method url-fetch)
823 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
824 "Config-AutoConf-" version ".tar.gz"))
825 (sha256
826 (base32
827 "1nqc7calfny12dwfhz7ylsvx55nf69kirdc5dbyvh3sjsqj8yvdq"))))
828 (build-system perl-build-system)
829 (propagated-inputs
830 `(("perl-capture-tiny" ,perl-capture-tiny)))
831 (home-page "http://search.cpan.org/dist/Config-AutoConf")
832 (synopsis "Module to implement some AutoConf macros in Perl")
833 (description "Config::AutoConf is intended to provide the same
834 opportunities to Perl developers as GNU Autoconf does for Shell developers.")
835 (license (package-license perl))))
836
837 (define-public perl-config-general
838 (package
839 (name "perl-config-general")
840 (version "2.56")
841 (source
842 (origin
843 (method url-fetch)
844 (uri (string-append "mirror://cpan/authors/id/T/TL/TLINDEN/"
845 "Config-General-" version ".tar.gz"))
846 (sha256
847 (base32
848 "0szxxaihz71pr0r2jp9wvbrfc3hrsxi9xrd9vnyrxlrax8sci5h9"))))
849 (build-system perl-build-system)
850 (home-page "http://search.cpan.org/dist/Config-General")
851 (synopsis "Generic Config Module")
852 (description "This module opens a config file and parses its contents for
853 you. The format of config files supported by Config::General is inspired by
854 the well known Apache config format and is 100% compatible with Apache
855 configs, but you can also just use simple name/value pairs in your config
856 files. In addition to the capabilities of an Apache config file it supports
857 some enhancements such as here-documents, C-style comments, and multiline
858 options.")
859 (license (package-license perl))))
860
861 (define-public perl-context-preserve
862 (package
863 (name "perl-context-preserve")
864 (version "0.01")
865 (source
866 (origin
867 (method url-fetch)
868 (uri (string-append "mirror://cpan/authors/id/J/JR/JROCKWAY/"
869 "Context-Preserve-" version ".tar.gz"))
870 (sha256
871 (base32
872 "0gssillawjknqks81x7fg7w2x94bnyklgd8ry2pr1k6ifkjhwz46"))))
873 (build-system perl-build-system)
874 (native-inputs
875 `(("perl-test-exception" ,perl-test-exception)
876 ("perl-test-simple" ,perl-test-simple)))
877 (home-page "http://search.cpan.org/dist/Context-Preserve")
878 (synopsis "Preserve context during subroutine call")
879 (description "This module runs code after a subroutine call, preserving
880 the context the subroutine would have seen if it were the last statement in
881 the caller.")
882 (license (package-license perl))))
883
884 (define-public perl-cpan-meta-check
885 (package
886 (name "perl-cpan-meta-check")
887 (version "0.009")
888 (source
889 (origin
890 (method url-fetch)
891 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
892 "CPAN-Meta-Check-" version ".tar.gz"))
893 (sha256
894 (base32
895 "0qbk5dwvhd78qgq5x6nim2n0l78pylvlklpbrm56w9yss6pl6bgb"))))
896 (build-system perl-build-system)
897 (native-inputs `(("perl-test-deep" ,perl-test-deep)))
898 (propagated-inputs `(("perl-cpan-meta" ,perl-cpan-meta)))
899 (home-page "http://search.cpan.org/dist/CPAN-Meta-Check")
900 (synopsis "Verify requirements in a CPAN::Meta object")
901 (description "This module verifies if requirements described in a
902 CPAN::Meta object are present.")
903 (license (package-license perl))))
904
905 (define-public perl-cpanel-json-xs
906 (package
907 (name "perl-cpanel-json-xs")
908 (version "3.0114")
909 (source
910 (origin
911 (method url-fetch)
912 (uri (string-append "mirror://cpan/authors/id/R/RU/RURBAN/"
913 "Cpanel-JSON-XS-" version ".tar.gz"))
914 (sha256
915 (base32
916 "0jhi1v0631x4d14a7cpfnpjqhs34zkygxjn1nwvvr927awx5jx71"))))
917 (build-system perl-build-system)
918 (propagated-inputs
919 `(("perl-common-sense" ,perl-common-sense)))
920 (home-page "http://search.cpan.org/dist/Cpanel-JSON-XS")
921 (synopsis "JSON::XS for Cpanel")
922 (description "This module converts Perl data structures to JSON and vice
923 versa.")
924 (license (package-license perl))))
925
926 (define-public perl-data-dump
927 (package
928 (name "perl-data-dump")
929 (version "1.22")
930 (source
931 (origin
932 (method url-fetch)
933 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
934 "Data-Dump-" version ".tar.gz"))
935 (sha256
936 (base32
937 "1ciqlwsy1q35s94dry9bjy1pwanbq6b7q4rhxm9z8prgkzbslg2k"))))
938 (build-system perl-build-system)
939 (home-page "http://search.cpan.org/dist/Data-Dump")
940 (synopsis "Pretty printing of data structures")
941 (description "This module provide functions that takes a list of values as
942 their argument and produces a string as its result. The string contains Perl
943 code that, when \"eval\"ed, produces a deep copy of the original arguments.")
944 (license (package-license perl))))
945
946 (define-public perl-data-dumper-concise
947 (package
948 (name "perl-data-dumper-concise")
949 (version "2.022")
950 (source
951 (origin
952 (method url-fetch)
953 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
954 "Data-Dumper-Concise-" version ".tar.gz"))
955 (sha256
956 (base32
957 "0z7vxgk1f2kw2zpiimdsyf7jq9f4s5dhh3dlimq5yrirypnk03sc"))))
958 (build-system perl-build-system)
959 (home-page "http://search.cpan.org/dist/Data-Dumper-Concise")
960 (synopsis "Concise data dumper")
961 (description "Data::Dumper::Concise provides a dumper with Less
962 indentation and newlines plus sub deparsing.")
963 (license (package-license perl))))
964
965 (define-public perl-data-optlist
966 (package
967 (name "perl-data-optlist")
968 (version "0.109")
969 (source
970 (origin
971 (method url-fetch)
972 (uri (string-append
973 "mirror://cpan/authors/id/R/RJ/RJBS/Data-OptList-"
974 version ".tar.gz"))
975 (sha256
976 (base32
977 "1j44rm2spprlq3bc80cxni3dzs3gfjiqv1qc9q7820n1qj0wgmqw"))))
978 (build-system perl-build-system)
979 (propagated-inputs
980 `(("perl-sub-install" ,perl-sub-install)
981 ("perl-params-util" ,perl-params-util)))
982 (home-page "http://search.cpan.org/dist/Data-OptList")
983 (synopsis "Parse and validate simple name/value option pairs")
984 (description
985 "Data::OptList provides a simple syntax for name/value option pairs.")
986 (license (package-license perl))))
987
988 (define-public perl-data-page
989 (package
990 (name "perl-data-page")
991 (version "2.02")
992 (source
993 (origin
994 (method url-fetch)
995 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
996 "Data-Page-" version ".tar.gz"))
997 (sha256
998 (base32
999 "1hvi92c4h2angryc6pngw7gbm3ysc2jfmyxk2wh9ia4vdwpbs554"))))
1000 (build-system perl-build-system)
1001 (native-inputs
1002 `(("perl-test-exception" ,perl-test-exception)))
1003 (propagated-inputs
1004 `(("perl-class-accessor-chained" ,perl-class-accessor-chained)))
1005 (home-page "http://search.cpan.org/dist/Data-Page")
1006 (synopsis "Help when paging through sets of results")
1007 (description "When searching through large amounts of data, it is often
1008 the case that a result set is returned that is larger than we want to display
1009 on one page. This results in wanting to page through various pages of data.
1010 The maths behind this is unfortunately fiddly, hence this module.")
1011 (license (package-license perl))))
1012
1013 (define-public perl-data-tumbler
1014 (package
1015 (name "perl-data-tumbler")
1016 (version "0.008")
1017 (source
1018 (origin
1019 (method url-fetch)
1020 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1021 "Data-Tumbler-" version ".tar.gz"))
1022 (sha256
1023 (base32
1024 "13kww2xj30rkk8w9h50h4blypdb689zgils0zyah587kip0z6509"))))
1025 (build-system perl-build-system)
1026 (native-inputs
1027 `(("perl-test-most" ,perl-test-most)))
1028 (propagated-inputs
1029 `(("perl-file-homedir" ,perl-file-homedir)))
1030 (home-page "http://search.cpan.org/dist/Data-Tumbler")
1031 (synopsis "Dynamic generation of nested combinations of variants")
1032 (description "Data::Tumbler - Dynamic generation of nested combinations of
1033 variants")
1034 (license (package-license perl))))
1035
1036 (define-public perl-data-visitor
1037 (package
1038 (name "perl-data-visitor")
1039 (version "0.30")
1040 (source
1041 (origin
1042 (method url-fetch)
1043 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1044 "Data-Visitor-" version ".tar.gz"))
1045 (sha256
1046 (base32
1047 "0m7d1505af9z2hj5aw020grcmjjlvnkjpvjam457d7k5qfy4m8lf"))))
1048 (build-system perl-build-system)
1049 (native-inputs
1050 `(("perl-test-requires" ,perl-test-requires)))
1051 (propagated-inputs
1052 `(("perl-class-load" ,perl-class-load)
1053 ("perl-moose" ,perl-moose)
1054 ("perl-namespace-clean" ,perl-namespace-clean)
1055 ("perl-task-weaken" ,perl-task-weaken)
1056 ("perl-tie-toobject" ,perl-tie-toobject)))
1057 (home-page "http://search.cpan.org/dist/Data-Visitor")
1058 (synopsis "Visitor style traversal of Perl data structures")
1059 (description "This module is a simple visitor implementation for Perl
1060 values. It has a main dispatcher method, visit, which takes a single perl
1061 value and then calls the methods appropriate for that value. It can
1062 recursively map (cloning as necessary) or just traverse most structures, with
1063 support for per-object behavior, circular structures, visiting tied
1064 structures, and all ref types (hashes, arrays, scalars, code, globs).")
1065 (license (package-license perl))))
1066
1067 (define-public perl-datetime
1068 (package
1069 (name "perl-datetime")
1070 (version "1.18")
1071 (source
1072 (origin
1073 (method url-fetch)
1074 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1075 "DateTime-" version ".tar.gz"))
1076 (sha256
1077 (base32
1078 "0fli1ls298qa8nfki15myxqqqfpxvslxk4j5r3vjk577wfgjrnms"))))
1079 (build-system perl-build-system)
1080 (native-inputs
1081 `(("perl-test-fatal" ,perl-test-fatal)
1082 ("perl-test-warnings" ,perl-test-warnings)))
1083 (propagated-inputs
1084 `(("perl-datetime-locale" ,perl-datetime-locale)
1085 ("perl-datetime-timezone" ,perl-datetime-timezone)
1086 ("perl-params-validate" ,perl-params-validate)
1087 ("perl-try-tiny" ,perl-try-tiny)))
1088 (home-page "http://search.cpan.org/dist/DateTime")
1089 (synopsis "Date and time object for Perl")
1090 (description "DateTime is a class for the representation of date/time
1091 combinations. It represents the Gregorian calendar, extended backwards in
1092 time before its creation (in 1582).")
1093 (license artistic2.0)))
1094
1095 (define-public perl-datetime-locale
1096 (package
1097 (name "perl-datetime-locale")
1098 (version "0.45")
1099 (source
1100 (origin
1101 (method url-fetch)
1102 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1103 "DateTime-Locale-" version ".tar.gz"))
1104 (sha256
1105 (base32
1106 "175grkrxiv012n6ch3z1sip4zprcili6m5zqi3njdk5c1gdvi8ca"))))
1107 (build-system perl-build-system)
1108 (propagated-inputs
1109 `(("perl-list-moreutils" ,perl-list-moreutils)
1110 ("perl-params-validate" ,perl-params-validate)))
1111 (home-page "http://search.cpan.org/dist/DateTime-Locale")
1112 (synopsis "Localization support for DateTime.pm")
1113 (description "The DateTime::Locale modules provide localization data for
1114 the DateTime.pm class.")
1115 (license (package-license perl))))
1116
1117 (define-public perl-datetime-timezone
1118 (package
1119 (name "perl-datetime-timezone")
1120 (version "1.86")
1121 (source
1122 (origin
1123 (method url-fetch)
1124 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1125 "DateTime-TimeZone-" version ".tar.gz"))
1126 (sha256
1127 (base32
1128 "1aj5liy9as7yci2s9cqv9gqna5wggah8yg2jqrc89dnrin25s26z"))))
1129 (build-system perl-build-system)
1130 (native-inputs
1131 `(("perl-test-fatal" ,perl-test-fatal)
1132 ("perl-test-requires" ,perl-test-requires)))
1133 (propagated-inputs
1134 `(("perl-class-singleton" ,perl-class-singleton)
1135 ("perl-list-allutils" ,perl-list-allutils)
1136 ("perl-module-runtime" ,perl-module-runtime)
1137 ("perl-params-validate" ,perl-params-validate)
1138 ("perl-try-tiny" ,perl-try-tiny)))
1139 (home-page "http://search.cpan.org/dist/DateTime-TimeZone")
1140 (synopsis "Time zone object for Perl")
1141 (description "This class is the base class for all time zone objects. A
1142 time zone is represented internally as a set of observances, each of which
1143 describes the offset from GMT for a given time period. Note that without the
1144 DateTime module, this module does not do much. It's primary interface is
1145 through a DateTime object, and most users will not need to directly use
1146 DateTime::TimeZone methods.")
1147 (license (package-license perl))))
1148
1149 (define-public perl-devel-caller
1150 (package
1151 (name "perl-devel-caller")
1152 (version "2.06")
1153 (source
1154 (origin
1155 (method url-fetch)
1156 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1157 "Devel-Caller-" version ".tar.gz"))
1158 (sha256
1159 (base32
1160 "1pxpimifzmnjnvf4icclx77myc15ahh0k56sj1djad1855mawwva"))))
1161 (build-system perl-build-system)
1162 (propagated-inputs
1163 `(("perl-padwalker" ,perl-padwalker)))
1164 (home-page "http://search.cpan.org/dist/Devel-Caller")
1165 (synopsis "Meatier version of caller")
1166 (description "Devel::Caller provides meatier version of caller.")
1167 (license (package-license perl))))
1168
1169 (define-public perl-devel-checkbin
1170 (package
1171 (name "perl-devel-checkbin")
1172 (version "0.02")
1173 (source
1174 (origin
1175 (method url-fetch)
1176 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
1177 "Devel-CheckBin-" version ".tar.gz"))
1178 (sha256
1179 (base32
1180 "0g71sma9jy0fjm619hcrcsb9spg2y03vjxx36y8k1xpa2553sr7m"))))
1181 (build-system perl-build-system)
1182 (home-page "http://search.cpan.org/dist/Devel-CheckBin")
1183 (synopsis "Check that a command is available")
1184 (description "Devel::CheckBin is a perl module that checks whether a
1185 particular command is available.")
1186 (license (package-license perl))))
1187
1188 (define-public perl-devel-globaldestruction
1189 (package
1190 (name "perl-devel-globaldestruction")
1191 (version "0.13")
1192 (source
1193 (origin
1194 (method url-fetch)
1195 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
1196 "Devel-GlobalDestruction-" version ".tar.gz"))
1197 (sha256
1198 (base32
1199 "0qn4iszgylnxjdkb6430f6a3ci7bcx9ih1az6bd5cbij1pf2965j"))))
1200 (build-system perl-build-system)
1201 (propagated-inputs
1202 `(("perl-sub-exporter-progressive" ,perl-sub-exporter-progressive)))
1203 (home-page "http://search.cpan.org/dist/Devel-GlobalDestruction")
1204 (synopsis "Provides equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls")
1205 (description "Devel::GlobalDestruction provides a function returning the
1206 equivalent of \"${^GLOBAL_PHASE} eq 'DESTRUCT'\" for older perls.")
1207 (license (package-license perl))))
1208
1209 (define-public perl-devel-lexalias
1210 (package
1211 (name "perl-devel-lexalias")
1212 (version "0.05")
1213 (source
1214 (origin
1215 (method url-fetch)
1216 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1217 "Devel-LexAlias-" version ".tar.gz"))
1218 (sha256
1219 (base32
1220 "0wpfpjqlrncslnmxa37494sfdy0901510kj2ds2k6q167vadj2jy"))))
1221 (build-system perl-build-system)
1222 (propagated-inputs
1223 `(("perl-devel-caller" ,perl-devel-caller)))
1224 (home-page "http://search.cpan.org/dist/Devel-LexAlias")
1225 (synopsis "Alias lexical variables")
1226 (description "Devel::LexAlias provides the ability to alias a lexical
1227 variable in a subroutines scope to one of your choosing.")
1228 (license (package-license perl))))
1229
1230 (define-public perl-devel-overloadinfo
1231 (package
1232 (name "perl-devel-overloadinfo")
1233 (version "0.002")
1234 (source
1235 (origin
1236 (method url-fetch)
1237 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
1238 "Devel-OverloadInfo-" version ".tar.gz"))
1239 (sha256
1240 (base32
1241 "14gzjlsqhypqp0szqj6152qfn69snzydgk1yk6bji5zimzv86qyy"))))
1242 (build-system perl-build-system)
1243 (propagated-inputs
1244 `(("perl-package-stash" ,perl-package-stash)
1245 ("perl-sub-identify" ,perl-sub-identify)
1246 ("perl-mro-compat" ,perl-mro-compat)))
1247 (home-page "http://search.cpan.org/dist/Devel-OverloadInfo")
1248 (synopsis "Introspect overloaded operators")
1249 (description "Devel::OverloadInfo returns information about overloaded
1250 operators for a given class (or object), including where in the inheritance
1251 hierarchy the overloads are declared and where the code implementing it is.")
1252 (license (package-license perl))))
1253
1254 (define-public perl-devel-partialdump
1255 (package
1256 (name "perl-devel-partialdump")
1257 (version "0.17")
1258 (source
1259 (origin
1260 (method url-fetch)
1261 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1262 "Devel-PartialDump-" version ".tar.gz"))
1263 (sha256
1264 (base32
1265 "0nr3qa68x4yp219kd17j1ks9c95qc9agfvz7ddnpn8p78f3kgwfn"))))
1266 (build-system perl-build-system)
1267 (native-inputs
1268 `(("perl-module-build-tiny" ,perl-module-build-tiny)
1269 ("perl-test-warn" ,perl-test-warn)
1270 ("perl-test-simple" ,perl-test-simple)))
1271 (propagated-inputs
1272 `(("perl-class-tiny" ,perl-class-tiny)
1273 ("perl-sub-exporter" ,perl-sub-exporter)
1274 ("perl-namespace-clean" ,perl-namespace-clean)))
1275 (home-page "http://search.cpan.org/dist/Devel-PartialDump")
1276 (synopsis "Partial dumping of data structures")
1277 (description "This module is a data dumper optimized for logging of
1278 arbitrary parameters.")
1279 (license (package-license perl))))
1280
1281 (define-public perl-devel-stacktrace
1282 (package
1283 (name "perl-devel-stacktrace")
1284 (version "2.00")
1285 (source
1286 (origin
1287 (method url-fetch)
1288 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1289 "Devel-StackTrace-" version ".tar.gz"))
1290 (sha256
1291 (base32
1292 "1r65iq5i11xh0r0kp3pdycydnd3kxpdmxnp0hq9hx9lr60kygsqx"))))
1293 (build-system perl-build-system)
1294 (home-page "http://search.cpan.org/dist/Devel-StackTrace")
1295 (synopsis "Object representing a stack trace")
1296 (description "The Devel::StackTrace module contains two classes,
1297 Devel::StackTrace and Devel::StackTrace::Frame. These objects encapsulate the
1298 information that can be retrieved via Perl's caller() function, as well as
1299 providing a simple interface to this data.")
1300 (license artistic2.0)))
1301
1302 (define-public perl-devel-stacktrace-ashtml
1303 (package
1304 (name "perl-devel-stacktrace-ashtml")
1305 (version "0.14")
1306 (source
1307 (origin
1308 (method url-fetch)
1309 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
1310 "Devel-StackTrace-AsHTML-" version ".tar.gz"))
1311 (sha256
1312 (base32
1313 "0yl296y0qfwybwjgqjzd4j2w2bj5a2nz342qqgxchnf5bqynl1c9"))))
1314 (build-system perl-build-system)
1315 (propagated-inputs
1316 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)))
1317 (home-page "http://search.cpan.org/dist/Devel-StackTrace-AsHTML")
1318 (synopsis "Displays stack trace in HTML")
1319 (description "Devel::StackTrace::AsHTML adds as_html method to
1320 Devel::StackTrace which displays the stack trace in beautiful HTML, with code
1321 snippet context and function parameters. If you call it on an instance of
1322 Devel::StackTrace::WithLexicals, you even get to see the lexical variables of
1323 each stack frame.")
1324 (license (package-license perl))))
1325
1326 (define-public perl-digest-sha1
1327 (package
1328 (name "perl-digest-sha1")
1329 (version "2.13")
1330 (source (origin
1331 (method url-fetch)
1332 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1333 "Digest-SHA1-" version ".tar.gz"))
1334 (sha256
1335 (base32
1336 "1k23p5pjk42vvzg8xcn4iwdii47i0qm4awdzgbmz08bl331dmhb8"))))
1337 (build-system perl-build-system)
1338 (synopsis "Perl implementation of the SHA-1 message digest algorithm")
1339 (description
1340 "This package provides 'Digest::SHA1', an implementation of the NIST
1341 SHA-1 message digest algorithm for use by Perl programs.")
1342 (home-page (string-append "http://search.cpan.org/~gaas/Digest-SHA1-"
1343 version "/SHA1.pm"))
1344 (license (package-license perl))))
1345
1346 (define-public perl-dist-checkconflicts
1347 (package
1348 (name "perl-dist-checkconflicts")
1349 (version "0.11")
1350 (source (origin
1351 (method url-fetch)
1352 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1353 "Dist-CheckConflicts-" version ".tar.gz"))
1354 (sha256
1355 (base32
1356 "1i7dr9jpdiy2nijl2p4q5zg2q2s9ckbj2hs4kmnnckf9hsb4p17a"))))
1357 (build-system perl-build-system)
1358 (native-inputs `(("perl-test-fatal" ,perl-test-fatal)))
1359 (propagated-inputs
1360 `(("perl-module-runtime" ,perl-module-runtime)))
1361 (home-page "http://search.cpan.org/dist/Dist-CheckConflicts")
1362 (synopsis "Declare version conflicts for your dist")
1363 (description "This module allows you to specify conflicting versions of
1364 modules separately and deal with them after the module is done installing.")
1365 (license (package-license perl))))
1366
1367 (define-public perl-error
1368 (package
1369 (name "perl-error")
1370 (version "0.17023")
1371 (source (origin
1372 (method url-fetch)
1373 (uri (string-append "mirror://cpan/authors/id/S/SH/SHLOMIF/"
1374 "Error-" version ".tar.gz"))
1375 (sha256
1376 (base32
1377 "0dsxic78mxy30qvbbdzfyp501hbkwhnbmafqfxipr0yqfy8f2j5g"))))
1378 (build-system perl-build-system)
1379 (home-page "http://search.cpan.org/dist/Error")
1380 (synopsis "OO-ish Error/Exception handling for Perl")
1381 (description "The Error package provides two interfaces. Firstly Error
1382 provides a procedural interface to exception handling. Secondly Error is a
1383 base class for errors/exceptions that can either be thrown, for subsequent
1384 catch, or can simply be recorded.")
1385 (license (package-license perl))))
1386
1387 (define-public perl-eval-closure
1388 (package
1389 (name "perl-eval-closure")
1390 (version "0.12")
1391 (source
1392 (origin
1393 (method url-fetch)
1394 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
1395 "Eval-Closure-" version ".tar.gz"))
1396 (sha256
1397 (base32
1398 "0ssvlgx3y1y28wrrp0lmmffzqxfrwb2lb3p60b8cjvxsf1c3jbfv"))))
1399 (build-system perl-build-system)
1400 (native-inputs
1401 `(("perl-test-fatal" ,perl-test-fatal)
1402 ("perl-test-requires" ,perl-test-requires)))
1403 (propagated-inputs
1404 `(("perl-devel-lexalias" ,perl-devel-lexalias)))
1405 (home-page "http://search.cpan.org/dist/Eval-Closure")
1406 (synopsis "Safely and cleanly create closures via string eval")
1407 (description "String eval is often used for dynamic code generation. For
1408 instance, Moose uses it heavily, to generate inlined versions of accessors and
1409 constructors, which speeds code up at runtime by a significant amount. String
1410 eval is not without its issues however - it's difficult to control the scope
1411 it's used in (which determines which variables are in scope inside the eval),
1412 and it's easy to miss compilation errors, since eval catches them and sticks
1413 them in $@ instead. This module attempts to solve these problems. It
1414 provides an eval_closure function, which evals a string in a clean
1415 environment, other than a fixed list of specified variables. Compilation
1416 errors are rethrown automatically.")
1417 (license (package-license perl))))
1418
1419 (define-public perl-exception-class
1420 (package
1421 (name "perl-exception-class")
1422 (version "1.39")
1423 (source
1424 (origin
1425 (method url-fetch)
1426 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1427 "Exception-Class-" version ".tar.gz"))
1428 (sha256
1429 (base32
1430 "10r06v6568s33p6h9f9ml0iabc07id86mjkf74gy7ld6d5m7b741"))))
1431 (build-system perl-build-system)
1432 (propagated-inputs
1433 `(("perl-devel-stacktrace" ,perl-devel-stacktrace)
1434 ("perl-class-data-inheritable" ,perl-class-data-inheritable)))
1435 (home-page "http://search.cpan.org/dist/Exception-Class")
1436 (synopsis "Allows you to declare real exception classes in Perl")
1437 (description "Exception::Class allows you to declare exception hierarchies
1438 in your modules in a \"Java-esque\" manner.")
1439 (license (package-license perl))))
1440
1441 (define-public perl-exporter-lite
1442 (package
1443 (name "perl-exporter-lite")
1444 (version "0.06")
1445 (source (origin
1446 (method url-fetch)
1447 (uri (string-append "mirror://cpan/authors/id/N/NE/NEILB/"
1448 "Exporter-Lite-" version ".tar.gz"))
1449 (sha256
1450 (base32
1451 "0k4gkvid4fr8yvwj0axdx5111mzfw2iipls3qllxr364fqhmclpj"))))
1452 (build-system perl-build-system)
1453 (synopsis "Lightweight exporting of functions and variables")
1454 (description
1455 "Exporter::Lite is an alternative to Exporter, intended to provide a
1456 lightweight subset of the most commonly-used functionality. It supports
1457 import(), @EXPORT and @EXPORT_OK and not a whole lot else.")
1458 (home-page (string-append "http://search.cpan.org/~neilb/"
1459 "Exporter-Lite-" version))
1460 (license (package-license perl))))
1461
1462 (define-public perl-exporter-tiny
1463 (package
1464 (name "perl-exporter-tiny")
1465 (version "0.042")
1466 (source
1467 (origin
1468 (method url-fetch)
1469 (uri (string-append "mirror://cpan/authors/id/T/TO/TOBYINK/"
1470 "Exporter-Tiny-" version ".tar.gz"))
1471 (sha256
1472 (base32
1473 "0gq2ia8c6n84gdrlc73vab61djs8gs8zf7fqx8cxbg5zxg2j45lg"))))
1474 (build-system perl-build-system)
1475 (home-page "http://search.cpan.org/dist/Exporter-Tiny")
1476 (synopsis "Exporter with the features of Sub::Exporter but only core dependencies")
1477 (description "Exporter::Tiny supports many of Sub::Exporter's
1478 external-facing features including renaming imported functions with the `-as`,
1479 `-prefix` and `-suffix` options; explicit destinations with the `into` option;
1480 and alternative installers with the `installler` option. But it's written in
1481 only about 40% as many lines of code and with zero non-core dependencies.")
1482 (license (package-license perl))))
1483
1484 (define-public perl-extutils-installpaths
1485 (package
1486 (name "perl-extutils-installpaths")
1487 (version "0.010")
1488 (source
1489 (origin
1490 (method url-fetch)
1491 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1492 "ExtUtils-InstallPaths-" version ".tar.gz"))
1493 (sha256
1494 (base32
1495 "0mi1px42in7i442jqncg3gmxd5zn7sw5b2s85h690rz433qvyk6i"))))
1496 (build-system perl-build-system)
1497 (propagated-inputs
1498 `(("perl-extutils-config" ,perl-extutils-config)))
1499 (home-page "http://search.cpan.org/dist/ExtUtils-InstallPaths")
1500 (synopsis "Build.PL install path logic made easy")
1501 (description "This module tries to make install path resolution as easy as
1502 possible.")
1503 (license (package-license perl))))
1504
1505 (define-public perl-extutils-config
1506 (package
1507 (name "perl-extutils-config")
1508 (version "0.008")
1509 (source
1510 (origin
1511 (method url-fetch)
1512 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1513 "ExtUtils-Config-" version ".tar.gz"))
1514 (sha256
1515 (base32
1516 "130s5zk4krrymbynqxx62g13jynnb7xi7vdpg65cw3b56kv08ldf"))))
1517 (build-system perl-build-system)
1518 (home-page "http://search.cpan.org/dist/ExtUtils-Config")
1519 (synopsis "Wrapper for perl's configuration")
1520 (description "ExtUtils::Config is an abstraction around the %Config hash.
1521 By itself it is not a particularly interesting module by any measure, however
1522 it ties together a family of modern toolchain modules.")
1523 (license (package-license perl))))
1524
1525 (define-public perl-extutils-helpers
1526 (package
1527 (name "perl-extutils-helpers")
1528 (version "0.022")
1529 (source
1530 (origin
1531 (method url-fetch)
1532 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
1533 "ExtUtils-Helpers-" version ".tar.gz"))
1534 (sha256
1535 (base32
1536 "15dalfwmpfmifw312i5pwiai8134pxf7b2804shlqhdk1xqczy6k"))))
1537 (build-system perl-build-system)
1538 (home-page "http://search.cpan.org/dist/ExtUtils-Helpers")
1539 (synopsis "Various portability utilities for module builders")
1540 (description "This module provides various portable helper functions for
1541 module building modules.")
1542 (license (package-license perl))))
1543
1544 (define-public perl-file-changenotify
1545 (package
1546 (name "perl-file-changenotify")
1547 (version "0.24")
1548 (source
1549 (origin
1550 (method url-fetch)
1551 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
1552 "File-ChangeNotify-" version ".tar.gz"))
1553 (sha256
1554 (base32
1555 "090i265f73jlcl5rv250791vw32j9vvl4nd5abc7myg0klb8109w"))))
1556 (build-system perl-build-system)
1557 (native-inputs
1558 `(("perl-test-exception" ,perl-test-exception)))
1559 (propagated-inputs
1560 `(("perl-class-load" ,perl-class-load)
1561 ("perl-list-moreutils" ,perl-list-moreutils)
1562 ("perl-moose" ,perl-moose)
1563 ("perl-moosex-params-validate" ,perl-moosex-params-validate)
1564 ("perl-moosex-semiaffordanceaccessor"
1565 ,perl-moosex-semiaffordanceaccessor)
1566 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
1567 (home-page "http://search.cpan.org/dist/File-ChangeNotify")
1568 (synopsis "Watch for changes to files")
1569 (description "This module provides a class to monitor a directory for
1570 changes made to any file.")
1571 (license artistic2.0)))
1572
1573 (define-public perl-file-copy-recursive
1574 (package
1575 (name "perl-file-copy-recursive")
1576 (version "0.38")
1577 (source
1578 (origin
1579 (method url-fetch)
1580 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
1581 "File-Copy-Recursive-" version ".tar.gz"))
1582 (sha256
1583 (base32
1584 "1syyyvylr51iicialdmv0dw06q49xzv8zrkb5cn8ma4l73gvvk44"))))
1585 (build-system perl-build-system)
1586 (home-page "http://search.cpan.org/dist/File-Copy-Recursive")
1587 (synopsis "Recursively copy files and directories")
1588 (description "This module has 3 functions: one to copy files only, one to
1589 copy directories only, and one to do either depending on the argument's
1590 type.")
1591 (license (package-license perl))))
1592
1593 (define-public perl-file-find-rule
1594 (package
1595 (name "perl-file-find-rule")
1596 (version "0.33")
1597 (source
1598 (origin
1599 (method url-fetch)
1600 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
1601 "File-Find-Rule-" version ".tar.gz"))
1602 (sha256
1603 (base32
1604 "0w73b4jr2fcrd74a1w3b2jryq3mqzc8z5mk7ia9p85xn3qmpa5r4"))))
1605 (build-system perl-build-system)
1606 (propagated-inputs
1607 `(("perl-text-glob" ,perl-text-glob)
1608 ("perl-number-compare" ,perl-number-compare)))
1609 (home-page "http://search.cpan.org/dist/File-Find-Rule")
1610 (synopsis "Alternative interface to File::Find")
1611 (description "File::Find::Rule is a friendlier interface to File::Find.
1612 It allows you to build rules which specify the desired files and
1613 directories.")
1614 (license (package-license perl))))
1615
1616 (define-public perl-file-find-rule-perl
1617 (package
1618 (name "perl-file-find-rule-perl")
1619 (version "1.13")
1620 (source
1621 (origin
1622 (method url-fetch)
1623 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
1624 "File-Find-Rule-Perl-" version ".tar.gz"))
1625 (sha256
1626 (base32
1627 "0xi4ppqr6r57l5xlkwxpvkvpb9p7dvz053d76v2m9pwdfxqb5v6j"))))
1628 (build-system perl-build-system)
1629 (propagated-inputs
1630 `(("perl-file-find-rule" ,perl-file-find-rule)
1631 ("perl-params-util" ,perl-params-util)
1632 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
1633 (home-page "http://search.cpan.org/dist/File-Find-Rule-Perl")
1634 (synopsis "Common rules for searching for Perl things")
1635 (description "File::Find::Rule::Perl provides methods for finding various
1636 types Perl-related files, or replicating search queries run on a distribution
1637 in various parts of the CPAN ecosystem.")
1638 (license (package-license perl))))
1639
1640 (define-public perl-file-homedir
1641 (package
1642 (name "perl-file-homedir")
1643 (version "1.00")
1644 (source
1645 (origin
1646 (method url-fetch)
1647 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
1648 "File-HomeDir-" version ".tar.gz"))
1649 (sha256
1650 (base32
1651 "0hvihydd0y4gdxafi8dpybk9ll8q35bz5ycibfic0gh92cslzfc5"))))
1652 (build-system perl-build-system)
1653 (propagated-inputs
1654 `(("perl-file-which" ,perl-file-which)
1655 ("perl-file-temp" ,perl-file-temp)))
1656 (arguments `(#:tests? #f)) ;Not appropriate for chroot
1657 (home-page "http://search.cpan.org/dist/File-HomeDir")
1658 (synopsis "Find your home and other directories on any platform")
1659 (description "File::HomeDir is a module for locating the directories that
1660 are \"owned\" by a user (typicaly your user) and to solve the various issues
1661 that arise trying to find them consistently across a wide variety of
1662 platforms.")
1663 (license (package-license perl))))
1664
1665 (define-public perl-file-list
1666 (package
1667 (name "perl-file-list")
1668 (version "0.3.1")
1669 (source (origin
1670 (method url-fetch)
1671 (uri (string-append
1672 "mirror://cpan/authors/id/D/DO/DOPACKI/File-List-"
1673 version ".tar.gz"))
1674 (sha256
1675 (base32
1676 "00m5ax4aq59hdvav6yc4g63vhx3a57006rglyypagvrzfxjvm8s8"))))
1677 (build-system perl-build-system)
1678 (arguments
1679 `(#:phases
1680 (alist-cons-after
1681 'unpack 'cd
1682 (lambda* _
1683 (chdir "List"))
1684 %standard-phases)))
1685 (license (package-license perl))
1686 (synopsis "Perl extension for crawling directory trees and compiling
1687 lists of files")
1688 (description
1689 "The File::List module crawls the directory tree starting at the
1690 provided base directory and can return files (and/or directories if desired)
1691 matching a regular expression.")
1692 (home-page "http://search.cpan.org/~dopacki/File-List/")))
1693
1694 (define-public perl-file-remove
1695 (package
1696 (name "perl-file-remove")
1697 (version "1.52")
1698 (source
1699 (origin
1700 (method url-fetch)
1701 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
1702 "File-Remove-" version ".tar.gz"))
1703 (sha256
1704 (base32
1705 "1p8bal9qhwkjbghivxn1d5m3qdj2qwm1agrjbmakm6la9dbxqm21"))))
1706 (build-system perl-build-system)
1707 (home-page "http://search.cpan.org/dist/File-Remove")
1708 (synopsis "Remove files and directories in Perl")
1709 (description "File::Remove::remove removes files and directories. It acts
1710 like /bin/rm, for the most part. Although \"unlink\" can be given a list of
1711 files, it will not remove directories; this module remedies that. It also
1712 accepts wildcards, * and ?, as arguments for filenames.")
1713 (license (package-license perl))))
1714
1715 (define-public perl-file-sharedir
1716 (package
1717 (name "perl-file-sharedir")
1718 (version "1.102")
1719 (source
1720 (origin
1721 (method url-fetch)
1722 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1723 "File-ShareDir-" version ".tar.gz"))
1724 (sha256
1725 (base32
1726 "04blqn4cms9zjmhlfvwyx6mrglaaq1mmy4xwv7xqf9c8fjwk8wvw"))))
1727 (build-system perl-build-system)
1728 (native-inputs
1729 `(("perl-file-sharedir-install" ,perl-file-sharedir-install)))
1730 (propagated-inputs
1731 `(("perl-class-inspector" ,perl-class-inspector)))
1732 (home-page "http://search.cpan.org/dist/File-ShareDir")
1733 (synopsis "Locate per-dist and per-module shared files")
1734 (description "The intent of File::ShareDir is to provide a companion to
1735 Class::Inspector and File::HomeDir. Quite often you want or need your Perl
1736 module to have access to a large amount of read-only data that is stored on
1737 the file-system at run-time. Once the files have been installed to the
1738 correct directory, you can use File::ShareDir to find your files again after
1739 the installation.")
1740 (license (package-license perl))))
1741
1742 (define-public perl-file-sharedir-install
1743 (package
1744 (name "perl-file-sharedir-install")
1745 (version "0.10")
1746 (source
1747 (origin
1748 (method url-fetch)
1749 (uri (string-append "mirror://cpan/authors/id/G/GW/GWYN/"
1750 "File-ShareDir-Install-" version ".tar.gz"))
1751 (sha256
1752 (base32
1753 "1xz60bi7x8755lq24rx7y1jkyk3icssn7s55z665mysdxhfzg2kh"))))
1754 (build-system perl-build-system)
1755 (home-page "http://search.cpan.org/dist/File-ShareDir-Install")
1756 (synopsis "Install shared files")
1757 (description "File::ShareDir::Install allows you to install read-only data
1758 files from a distribution. It is a companion module to File::ShareDir, which
1759 allows you to locate these files after installation.")
1760 (license (package-license perl))))
1761
1762 (define-public perl-file-temp
1763 (package
1764 (name "perl-file-temp")
1765 (version "0.2304")
1766 (source
1767 (origin
1768 (method url-fetch)
1769 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1770 "File-Temp-" version ".tar.gz"))
1771 (sha256
1772 (base32
1773 "1b11scbw77924awwdf5yw8sk8z0s2hskvpyyxws9yz4gwhim6h8k"))))
1774 (build-system perl-build-system)
1775 (propagated-inputs
1776 `(("perl-parent" ,perl-parent)))
1777 (home-page "http://search.cpan.org/dist/File-Temp")
1778 (synopsis "Return name and handle of a temporary file safely")
1779 (description "File::Temp can be used to create and open temporary files in
1780 a safe way.")
1781 (license (package-license perl))))
1782
1783 (define-public perl-file-which
1784 (package
1785 (name "perl-file-which")
1786 (version "1.09")
1787 (source (origin
1788 (method url-fetch)
1789 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
1790 "File-Which-" version ".tar.gz"))
1791 (sha256
1792 (base32
1793 "1hxjyh9yrv32f3g8vrnr8iylzprajsac14vjm75kf1qnj1jyqbxp"))))
1794 (build-system perl-build-system)
1795 (native-inputs `(("test-script" ,perl-test-script)))
1796 (synopsis "Portable implementation of the `which' utility")
1797 (description
1798 "File::Which was created to be able to get the paths to executable
1799 programs on systems under which the `which' program wasn't implemented in the
1800 shell.")
1801 (home-page (string-append "http://search.cpan.org/~adamk/"
1802 "File-Which-" version))
1803 (license (package-license perl))))
1804
1805 (define-public perl-getopt-long-descriptive
1806 (package
1807 (name "perl-getopt-long-descriptive")
1808 (version "0.098")
1809 (source
1810 (origin
1811 (method url-fetch)
1812 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1813 "Getopt-Long-Descriptive-" version ".tar.gz"))
1814 (sha256
1815 (base32
1816 "08lphvqshcajvvd6z4rvcda6rx5kz8pysrsip4nfv2mbks95p9ma"))))
1817 (build-system perl-build-system)
1818 (native-inputs
1819 `(("perl-test-fatal" ,perl-test-fatal)
1820 ("perl-test-warnings" ,perl-test-warnings)))
1821 (propagated-inputs
1822 `(("perl-params-validate" ,perl-params-validate)
1823 ("perl-sub-exporter" ,perl-sub-exporter)))
1824 (home-page "http://search.cpan.org/dist/Getopt-Long-Descriptive")
1825 (synopsis "Getopt::Long, but simpler and more powerful")
1826 (description "Getopt::Long::Descriptive is yet another Getopt library.
1827 It's built atop Getopt::Long, and gets a lot of its features, but tries to
1828 avoid making you think about its huge array of options. It also provides
1829 usage (help) messages, data validation, and a few other useful features.")
1830 (license (package-license perl))))
1831
1832 (define-public perl-getopt-tabular
1833 (package
1834 (name "perl-getopt-tabular")
1835 (version "0.3")
1836 (source (origin
1837 (method url-fetch)
1838 (uri (string-append "mirror://cpan/authors/id/G/GW/GWARD/"
1839 "Getopt-Tabular-" version ".tar.gz"))
1840 (sha256
1841 (base32
1842 "0xskl9lcj07sdfx5dkma5wvhhgf5xlsq0khgh8kk34dm6dv0dpwv"))))
1843 (build-system perl-build-system)
1844 (synopsis "Table-driven argument parsing for Perl")
1845 (description
1846 "Getopt::Tabular is a Perl 5 module for table-driven argument parsing,
1847 vaguely inspired by John Ousterhout's Tk_ParseArgv.")
1848 (home-page (string-append "http://search.cpan.org/~gward/"
1849 "Getopt-Tabular-" version))
1850 (license (package-license perl))))
1851
1852 (define-public perl-hash-merge
1853 (package
1854 (name "perl-hash-merge")
1855 (version "0.200")
1856 (source
1857 (origin
1858 (method url-fetch)
1859 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
1860 "Hash-Merge-" version ".tar.gz"))
1861 (sha256
1862 (base32
1863 "0r1a2axz85wn6573zrl9rk8mkfl2cvf1gp9vwya5qndp60rz1ya7"))))
1864 (build-system perl-build-system)
1865 (home-page "http://search.cpan.org/dist/Hash-Merge")
1866 (synopsis "Merge arbitrarily deep hashes into a single hash")
1867 (description "Hash::Merge merges two arbitrarily deep hashes into a single
1868 hash. That is, at any level, it will add non-conflicting key-value pairs from
1869 one hash to the other, and follows a set of specific rules when there are key
1870 value conflicts. The hash is followed recursively, so that deeply nested
1871 hashes that are at the same level will be merged when the parent hashes are
1872 merged.")
1873 (license (package-license perl))))
1874
1875 (define-public perl-hash-multivalue
1876 (package
1877 (name "perl-hash-multivalue")
1878 (version "0.15")
1879 (source
1880 (origin
1881 (method url-fetch)
1882 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
1883 "Hash-MultiValue-" version ".tar.gz"))
1884 (sha256
1885 (base32
1886 "1jc37kwpa1fl88va8bd1p95h0vjv1gsvmn7pc2pxj62ga6x0wpc0"))))
1887 (build-system perl-build-system)
1888 (home-page "http://search.cpan.org/dist/Hash-MultiValue")
1889 (synopsis "Store multiple values per key")
1890 (description "Hash::MultiValue is an object (and a plain hash reference)
1891 that may contain multiple values per key, inspired by MultiDict of WebOb.")
1892 (license (package-license perl))))
1893
1894 (define-public perl-import-into
1895 (package
1896 (name "perl-import-into")
1897 (version "1.002004")
1898 (source
1899 (origin
1900 (method url-fetch)
1901 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
1902 "Import-Into-" version ".tar.gz"))
1903 (sha256
1904 (base32
1905 "110hifk3cj14lxgjq2vaa2qfja21gll4lpn8vbimy0gzqadjbjyy"))))
1906 (build-system perl-build-system)
1907 (propagated-inputs
1908 `(("perl-module-runtime" ,perl-module-runtime)))
1909 (home-page "http://search.cpan.org/dist/Import-Into")
1910 (synopsis "Import packages into other packages")
1911 (description "Writing exporters is a pain. Some use Exporter, some use
1912 Sub::Exporter, some use Moose::Exporter, some use Exporter::Declare ... and
1913 some things are pragmas. Exporting on someone else's behalf is harder. The
1914 exporters don't provide a consistent API for this, and pragmas need to have
1915 their import method called directly, since they effect the current unit of
1916 compilation. Import::Into provides global methods to make this painless.")
1917 (license (package-license perl))))
1918
1919 (define-public perl-inc-latest
1920 (package
1921 (name "perl-inc-latest")
1922 (version "0.500")
1923 (source
1924 (origin
1925 (method url-fetch)
1926 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1927 "inc-latest-" version ".tar.gz"))
1928 (sha256
1929 (base32
1930 "04f6qf6ll2hkdsr9aglykg3wlgsnf0w4f264nzg4i9y6cgrhbafs"))))
1931 (build-system perl-build-system)
1932 (home-page "http://search.cpan.org/dist/inc-latest")
1933 (synopsis "Use modules in inc/ if newer than installed")
1934 (description "The inc::latest module helps bootstrap configure-time
1935 dependencies for CPAN distributions. These dependencies get bundled into the
1936 inc directory within a distribution and are used by Makefile.PL or Build.PL.")
1937 (license asl2.0)))
1938
1939 (define-public perl-io-stringy
1940 (package
1941 (name "perl-io-stringy")
1942 (version "2.110")
1943 (source
1944 (origin
1945 (method url-fetch)
1946 (uri (string-append "mirror://cpan/authors/id/D/DS/DSKOLL/"
1947 "IO-stringy-" version ".tar.gz"))
1948 (sha256
1949 (base32
1950 "1vh4n0k22hx20rwvf6h7lp25wb7spg0089shrf92d2lkncwg8g3y"))))
1951 (build-system perl-build-system)
1952 (home-page "http://search.cpan.org/dist/IO-stringy")
1953 (synopsis "IO:: interface for reading/writing an array of lines")
1954 (description "This toolkit primarily provides modules for performing both
1955 traditional and object-oriented i/o) on things *other* than normal
1956 filehandles; in particular, IO::Scalar, IO::ScalarArray, and IO::Lines.")
1957 (license (package-license perl))))
1958
1959 (define-public perl-io-tty
1960 (package
1961 (name "perl-io-tty")
1962 (version "1.11")
1963 (source (origin
1964 (method url-fetch)
1965 (uri (string-append "mirror://cpan/authors/id/T/TO/TODDR/IO-Tty-"
1966 version ".tar.gz"))
1967 (sha256
1968 (base32
1969 "0lgd9xcbi4gf4gw1ka6fj94my3w1f3k1zamb4pfln0qxz45zlxx4"))))
1970 (build-system perl-build-system)
1971 (home-page "http://search.cpan.org/~toddr/IO-Tty/")
1972 (synopsis "Perl interface to pseudo ttys")
1973 (description
1974 "This package provides the 'IO::Pty' and 'IO::Tty' Perl interfaces to
1975 pseudo ttys.")
1976 (license (package-license perl))))
1977
1978 (define-public perl-ipc-run3
1979 (package
1980 (name "perl-ipc-run3")
1981 (version "0.048")
1982 (source (origin
1983 (method url-fetch)
1984 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
1985 "IPC-Run3-" version ".tar.gz"))
1986 (sha256
1987 (base32
1988 "0r9m8q78bg7yycpixd7738jm40yz71p2q7inm766kzsw3g6c709x"))))
1989 (build-system perl-build-system)
1990 (synopsis "Run a subprocess with input/ouput redirection")
1991 (description
1992 "The IPC::Run3 module allows you to run a subprocess and redirect stdin,
1993 stdout, and/or stderr to files and perl data structures. It aims to satisfy
1994 99% of the need for using system, qx, and open3 with a simple, extremely
1995 Perlish API and none of the bloat and rarely used features of IPC::Run.")
1996 (home-page (string-append "http://search.cpan.org/~rjbs/"
1997 "IPC-Run3-" version))
1998 ;; "You may use this module under the terms of the BSD, Artistic, or GPL
1999 ;; licenses, any version."
2000 (license (list bsd-3 gpl3+))))
2001
2002 (define-public perl-ipc-sharelite
2003 (package
2004 (name "perl-ipc-sharelite")
2005 (version "0.17")
2006 (source
2007 (origin
2008 (method url-fetch)
2009 (uri (string-append "mirror://cpan/authors/id/A/AN/ANDYA/"
2010 "IPC-ShareLite-" version ".tar.gz"))
2011 (sha256
2012 (base32
2013 "1gz7dbwxrzbzdsjv11kb49jlf9q6lci2va6is0hnavd93nwhdm0l"))))
2014 (build-system perl-build-system)
2015 (home-page "http://search.cpan.org/dist/IPC-ShareLite")
2016 (synopsis "Lightweight interface to shared memory")
2017 (description "IPC::ShareLite provides a simple interface to shared memory,
2018 allowing data to be efficiently communicated between processes.")
2019 (license (package-license perl))))
2020
2021 (define-public perl-json
2022 (package
2023 (name "perl-json")
2024 (version "2.90")
2025 (source
2026 (origin
2027 (method url-fetch)
2028 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
2029 "JSON-" version ".tar.gz"))
2030 (sha256
2031 (base32
2032 "127yppvr17qik9pkd1vy901hs4l13kg6rhp76jdgcyask35v7nsd"))))
2033 (build-system perl-build-system)
2034 (propagated-inputs
2035 `(("perl-json-xs" ,perl-json-xs))) ;recommended
2036 (home-page "http://search.cpan.org/dist/JSON")
2037 (synopsis "JSON encoder/decoder for Perl")
2038 (description "This module converts Perl data structures to JSON and vice
2039 versa using either JSON::XS or JSON::PP.")
2040 (license (package-license perl))))
2041
2042 (define-public perl-json-maybexs
2043 (package
2044 (name "perl-json-maybexs")
2045 (version "1.003003")
2046 (source
2047 (origin
2048 (method url-fetch)
2049 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2050 "JSON-MaybeXS-" version ".tar.gz"))
2051 (sha256
2052 (base32
2053 "0q21wzz87drrvblxcm2py8fcvkzwx1hxzfybynz8ln7wv66vbx3f"))))
2054 (build-system perl-build-system)
2055 (native-inputs
2056 `(("perl-test-without-module" ,perl-test-without-module)))
2057 (inputs
2058 `(("perl-cpanel-json-xs" ,perl-cpanel-json-xs)))
2059 (home-page "http://search.cpan.org/dist/JSON-MaybeXS")
2060 (synopsis "Cpanel::JSON::XS with fallback")
2061 (description "This module first checks to see if either Cpanel::JSON::XS
2062 or JSON::XS is already loaded, in which case it uses that module. Otherwise
2063 it tries to load Cpanel::JSON::XS, then JSON::XS, then JSON::PP in order, and
2064 either uses the first module it finds or throws an error.")
2065 (license (package-license perl))))
2066
2067 (define-public perl-json-xs
2068 (package
2069 (name "perl-json-xs")
2070 (version "3.01")
2071 (source
2072 (origin
2073 (method url-fetch)
2074 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
2075 "JSON-XS-" version ".tar.gz"))
2076 (sha256
2077 (base32
2078 "1aviik480m61ykwvyix83grywzbk828wvfz19hqfvaasd8jz73af"))))
2079 (build-system perl-build-system)
2080 (propagated-inputs
2081 `(("perl-common-sense" ,perl-common-sense)
2082 ("perl-types-serialiser" ,perl-types-serialiser)))
2083 (home-page "http://search.cpan.org/dist/JSON-XS")
2084 (synopsis "JSON serialising/deserialising for Perl")
2085 (description "This module converts Perl data structures to JSON and vice
2086 versa.")
2087 (license (package-license perl))))
2088
2089 (define-public perl-list-allutils
2090 (package
2091 (name "perl-list-allutils")
2092 (version "0.09")
2093 (source
2094 (origin
2095 (method url-fetch)
2096 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2097 "List-AllUtils-" version ".tar.gz"))
2098 (sha256
2099 (base32
2100 "1qmfpmly0pghc94k6ifnd1vwzlv8nks27qkqs6h4p7vcricn7zjc"))))
2101 (build-system perl-build-system)
2102 (native-inputs
2103 `(("perl-test-warnings" ,perl-test-warnings)))
2104 (propagated-inputs
2105 `(("perl-list-moreutils" ,perl-list-moreutils)
2106 ("perl-scalar-list-utils" ,perl-scalar-list-utils)))
2107 (home-page "http://search.cpan.org/dist/List-AllUtils")
2108 (synopsis "Combination of List::Util and List::MoreUtils")
2109 (description "This module exports all of the functions that either
2110 List::Util or List::MoreUtils defines, with preference to List::Util.")
2111 (license (package-license perl))))
2112
2113 (define-public perl-list-moreutils
2114 (package
2115 (name "perl-list-moreutils")
2116 (version "0.402")
2117 (source
2118 (origin
2119 (method url-fetch)
2120 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
2121 "List-MoreUtils-" version ".tar.gz"))
2122 (sha256
2123 (base32
2124 "1i0k7kqg1m9nf2xvq9l4lyf38fxvi9952vmmvhcdaf3qa95pxb24"))))
2125 (build-system perl-build-system)
2126 (native-inputs
2127 `(("perl-config-autoconf" ,perl-config-autoconf)
2128 ("perl-inc-latest" ,perl-inc-latest)
2129 ("perl-test-writevariants" ,perl-test-writevariants)))
2130 (propagated-inputs
2131 `(("perl-exporter-tiny" ,perl-exporter-tiny)))
2132 (home-page "http://search.cpan.org/dist/List-MoreUtils")
2133 (synopsis "Provide the stuff missing in List::Util")
2134 (description "List::MoreUtils provides some trivial but commonly needed
2135 functionality on lists which is not going to go into List::Util.")
2136 (license (package-license perl))))
2137
2138 (define-public perl-memoize-expirelru
2139 (package
2140 (name "perl-memoize-expirelru")
2141 (version "0.55")
2142 (source
2143 (origin
2144 (method url-fetch)
2145 (uri (string-append "mirror://cpan/authors/id/B/BP/BPOWERS/"
2146 "Memoize-ExpireLRU-" version ".tar.gz"))
2147 (sha256
2148 (base32
2149 "0klk0vj78lr259mnv1rbxib8gzf2cfp4zhkhbcxyhadkkl73myvj"))))
2150 (build-system perl-build-system)
2151 (home-page "http://search.cpan.org/dist/Memoize-ExpireLRU")
2152 (synopsis "Expiry plug-in for Memoize that adds LRU cache expiration")
2153 (description "This module implements an expiry policy for Memoize that
2154 follows LRU semantics, that is, the last n results, where n is specified as
2155 the argument to the CACHESIZE parameter, will be cached.")
2156 (license (package-license perl))))
2157
2158 (define-public perl-module-build-tiny
2159 (package
2160 (name "perl-module-build-tiny")
2161 (version "0.039")
2162 (source
2163 (origin
2164 (method url-fetch)
2165 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
2166 "Module-Build-Tiny-" version ".tar.gz"))
2167 (sha256
2168 (base32
2169 "077ijxbvamybph4ymamy1i9q2993xb46vf1npxaybjz0mkv0yn3x"))))
2170 (build-system perl-build-system)
2171 (native-inputs
2172 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
2173 ("perl-extutils-config" ,perl-extutils-config)
2174 ("perl-extutils-helpers" ,perl-extutils-helpers)
2175 ("perl-test-harness" ,perl-test-harness)))
2176 (propagated-inputs
2177 `(("perl-extutils-installpaths" ,perl-extutils-installpaths)
2178 ("perl-extutils-config" ,perl-extutils-config)
2179 ("perl-extutils-helpers" ,perl-extutils-helpers)
2180 ("perl-test-harness" ,perl-test-harness)))
2181 (home-page "http://search.cpan.org/dist/Module-Build-Tiny")
2182 (synopsis "Tiny replacement for Module::Build")
2183 (description "Many Perl distributions use a Build.PL file instead of a
2184 Makefile.PL file to drive distribution configuration, build, test and
2185 installation. Traditionally, Build.PL uses Module::Build as the underlying
2186 build system. This module provides a simple, lightweight, drop-in
2187 replacement. Whereas Module::Build has over 6,700 lines of code; this module
2188 has less than 120, yet supports the features needed by most distributions.")
2189 (license (package-license perl))))
2190
2191 (define-public perl-module-find
2192 (package
2193 (name "perl-module-find")
2194 (version "0.12")
2195 (source
2196 (origin
2197 (method url-fetch)
2198 (uri (string-append "mirror://cpan/authors/id/C/CR/CRENZ/"
2199 "Module-Find-" version ".tar.gz"))
2200 (sha256
2201 (base32
2202 "1lc33jdv4pgmm7nkr9bff0lhwjhhw91kaf6iiy2n7i7mw8dfv47l"))))
2203 (build-system perl-build-system)
2204 (home-page "http://search.cpan.org/dist/Module-Find")
2205 (synopsis "Find and use installed modules in a (sub)category")
2206 (description "Module::Find lets you find and use modules in categories.
2207 This can be useful for auto-detecting driver or plugin modules. You can
2208 differentiate between looking in the category itself or in all
2209 subcategories.")
2210 (license (package-license perl))))
2211
2212 (define-public perl-module-implementation
2213 (package
2214 (name "perl-module-implementation")
2215 (version "0.09")
2216 (source
2217 (origin
2218 (method url-fetch)
2219 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2220 "Module-Implementation-" version ".tar.gz"))
2221 (sha256
2222 (base32
2223 "0vfngw4dbryihqhi7g9ks360hyw8wnpy3hpkzyg0q4y2y091lpy1"))))
2224 (build-system perl-build-system)
2225 (native-inputs
2226 `(("perl-test-fatal" ,perl-test-fatal)
2227 ("perl-test-requires" ,perl-test-requires)))
2228 (propagated-inputs
2229 `(("perl-module-runtime" ,perl-module-runtime)
2230 ("perl-try-tiny" ,perl-try-tiny)))
2231 (home-page "http://search.cpan.org/dist/Module-Implementation")
2232 (synopsis "Loads alternate underlying implementations for a module")
2233 (description "This module abstracts out the process of choosing one of
2234 several underlying implementations for a module. This can be used to provide
2235 XS and pure Perl implementations of a module, or it could be used to load an
2236 implementation for a given OS or any other case of needing to provide multiple
2237 implementations.")
2238 (license artistic2.0)))
2239
2240 (define-public perl-module-install
2241 (package
2242 (name "perl-module-install")
2243 (version "1.14")
2244 (source
2245 (origin
2246 (method url-fetch)
2247 (uri (string-append "mirror://cpan/authors/id/B/BI/BINGOS/"
2248 "Module-Install-" version ".tar.gz"))
2249 (sha256
2250 (base32
2251 "0j8dz87k60i1khd9xadd8kl6bgm9s5s5zl86rzsz5bq36siz00iz"))))
2252 (build-system perl-build-system)
2253 (native-inputs
2254 `(("perl-yaml-tiny" ,perl-yaml-tiny)))
2255 (propagated-inputs
2256 `(("perl-archive-zip" ,perl-archive-zip)
2257 ("perl-file-homedir" ,perl-file-homedir)
2258 ("perl-file-remove" ,perl-file-remove)
2259 ("perl-json" ,perl-json)
2260 ;; The LWP::Simple and LWP::UserAgent modules are recommended, but
2261 ;; would cause a circular dependency with (gnu packages web), so we
2262 ;; leave it out. It may be resolved at runtime, however.
2263 ;("perl-libwww-perl" ,perl-libwww-perl)
2264 ("perl-module-scandeps" ,perl-module-scandeps)
2265 ("perl-par-dist" ,perl-par-dist)
2266 ("perl-yaml-tiny" ,perl-yaml-tiny)))
2267 ;; TODO: One test requires Test::More >= 0.99, another fails with unicode
2268 ;; character handling.
2269 (arguments `(#:tests? #f))
2270 (home-page "http://search.cpan.org/dist/Module-Install")
2271 (synopsis "Standalone, extensible Perl module installer")
2272 (description "Module::Install is a package for writing installers for
2273 CPAN (or CPAN-like) distributions that are clean, simple, minimalist, act in a
2274 strictly correct manner with ExtUtils::MakeMaker, and will run on any Perl
2275 installation version 5.005 or newer.")
2276 (license (package-license perl))))
2277
2278 (define-public perl-module-runtime
2279 (package
2280 (name "perl-module-runtime")
2281 (version "0.014")
2282 (source
2283 (origin
2284 (method url-fetch)
2285 (uri (string-append "mirror://cpan/authors/id/Z/ZE/ZEFRAM/"
2286 "Module-Runtime-" version ".tar.gz"))
2287 (sha256
2288 (base32
2289 "19326f094jmjs6mgpwkyisid54k67w34br8yfh0gvaaml87gwi2c"))))
2290 (build-system perl-build-system)
2291 (home-page "http://search.cpan.org/dist/Module-Runtime")
2292 (synopsis "Perl runtime module handling")
2293 (description "The functions exported by this module deal with runtime
2294 handling of Perl modules, which are normally handled at compile time.")
2295 (license (package-license perl))))
2296
2297 (define-public perl-module-runtime-conflicts
2298 (package
2299 (name "perl-module-runtime-conflicts")
2300 (version "0.001")
2301 (source
2302 (origin
2303 (method url-fetch)
2304 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2305 "Module-Runtime-Conflicts-" version ".tar.gz"))
2306 (sha256
2307 (base32
2308 "0pz23ch78lbpn4kdbm04icgsmbr7jvmxwq1p5m4x2pap8qwd0wqg"))))
2309 (build-system perl-build-system)
2310 (propagated-inputs
2311 `(("perl-module-runtime" ,perl-module-runtime)
2312 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)))
2313 (home-page "http://search.cpan.org/dist/Module-Runtime-Conflicts")
2314 (synopsis "Provide information on conflicts for Module::Runtime")
2315 (description "This module provides conflicts checking for Module::Runtime,
2316 which had a recent release that broke some versions of Moose. It is called
2317 from Moose::Conflicts and moose-outdated.")
2318 (license (package-license perl))))
2319
2320 (define-public perl-module-scandeps
2321 (package
2322 (name "perl-module-scandeps")
2323 (version "1.18")
2324 (source
2325 (origin
2326 (method url-fetch)
2327 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
2328 "Module-ScanDeps-" version ".tar.gz"))
2329 (sha256
2330 (base32
2331 "17mbyqwd8c20nqw01hjshl524vkw8pq6y2lwndmw36xkqr945npz"))))
2332 (build-system perl-build-system)
2333 (native-inputs
2334 `(("perl-test-requires" ,perl-test-requires)))
2335 (home-page "http://search.cpan.org/dist/Module-ScanDeps")
2336 (synopsis "Recursively scan Perl code for dependencies")
2337 (description "Module::ScanDeps is a module to recursively scan Perl
2338 programs for dependencies.")
2339 (license (package-license perl))))
2340
2341 (define-public perl-moo
2342 (package
2343 (name "perl-moo")
2344 (version "1.007000")
2345 (source
2346 (origin
2347 (method url-fetch)
2348 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
2349 "Moo-" version ".tar.gz"))
2350 (sha256
2351 (base32
2352 "0y9s6s9jjd519wgal6lwc9id4sadrvfn8gjb51dl602d0kk0l7n5"))))
2353 (build-system perl-build-system)
2354 (native-inputs
2355 `(("perl-test-fatal" ,perl-test-fatal)))
2356 (propagated-inputs
2357 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)
2358 ("perl-class-xsaccessor" ,perl-class-xsaccessor)
2359 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
2360 ("perl-import-into" ,perl-import-into)
2361 ("perl-module-runtime" ,perl-module-runtime)
2362 ("perl-role-tiny" ,perl-role-tiny)
2363 ("perl-strictures" ,perl-strictures)))
2364 (home-page "http://search.cpan.org/dist/Moo")
2365 (synopsis "Minimalist Object Orientation (with Moose compatibility)")
2366 (description "Moo is an extremely light-weight Object Orientation system.
2367 It allows one to concisely define objects and roles with a convenient syntax
2368 that avoids the details of Perl's object system. Moo contains a subset of
2369 Moose and is optimised for rapid startup.")
2370 (license (package-license perl))))
2371
2372 (define-public perl-moose
2373 (package
2374 (name "perl-moose")
2375 (version "2.1403")
2376 (source (origin
2377 (method url-fetch)
2378 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2379 "Moose-" version ".tar.gz"))
2380 (sha256
2381 (base32
2382 "16iaazikbnq2jjjac84jrdpfzm4qwqg1nbfgs11jlwn84q4jp1n3"))))
2383 (build-system perl-build-system)
2384 (native-inputs
2385 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2386 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
2387 ("perl-test-cleannamespaces" ,perl-test-cleannamespaces)
2388 ("perl-test-fatal" ,perl-test-fatal)
2389 ("perl-test-requires" ,perl-test-requires)
2390 ("perl-test-warnings" ,perl-test-warnings)))
2391 ;; XXX::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
2392 ;; # === Other Modules ===
2393 ;; #
2394 ;; # Module Want Have
2395 ;; # ---------------------------- ---- -------
2396 ;; # Algorithm::C3 any missing
2397 ;; # DBM::Deep any missing
2398 ;; # DateTime any missing
2399 ;; # DateTime::Calendar::Mayan any missing
2400 ;; # DateTime::Format::MySQL any missing
2401 ;; # Declare::Constraints::Simple any missing
2402 ;; # Dist::CheckConflicts any 0.11
2403 ;; # HTTP::Headers any missing
2404 ;; # IO::File any 1.16
2405 ;; # IO::String any missing
2406 ;; # Locale::US any missing
2407 ;; # Module::Refresh any missing
2408 ;; # MooseX::NonMoose any missing
2409 ;; # Params::Coerce any missing
2410 ;; # Regexp::Common any missing
2411 ;; # SUPER any missing
2412 ;; # Test::Deep any missing
2413 ;; # Test::DependentModules any missing
2414 ;; # Test::LeakTrace any missing
2415 ;; # Test::Output any missing
2416 ;; # URI any missing
2417 (propagated-inputs
2418 `(("perl-class-load" ,perl-class-load)
2419 ("perl-class-load-xs" ,perl-class-load-xs)
2420 ("perl-data-optlist" ,perl-data-optlist)
2421 ("perl-devel-globaldestruction" ,perl-devel-globaldestruction)
2422 ("perl-devel-overloadinfo" ,perl-devel-overloadinfo)
2423 ("perl-devel-partialdump" ,perl-devel-partialdump)
2424 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
2425 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
2426 ("perl-eval-closure" ,perl-eval-closure)
2427 ("perl-list-moreutils" ,perl-list-moreutils)
2428 ("perl-module-runtime" ,perl-module-runtime)
2429 ("perl-module-runtime-conflicts" ,perl-module-runtime-conflicts)
2430 ("perl-mro-compat" ,perl-mro-compat)
2431 ("perl-package-deprecationmanager" ,perl-package-deprecationmanager)
2432 ("perl-package-stash" ,perl-package-stash)
2433 ("perl-package-stash-xs" ,perl-package-stash-xs)
2434 ("perl-params-util" ,perl-params-util)
2435 ("perl-parent" ,perl-parent)
2436 ("perl-scalar-list-utils" ,perl-scalar-list-utils)
2437 ("perl-sub-exporter" ,perl-sub-exporter)
2438 ("perl-sub-name" ,perl-sub-name)
2439 ("perl-task-weaken" ,perl-task-weaken)
2440 ("perl-try-tiny" ,perl-try-tiny)))
2441 (home-page "http://search.cpan.org/dist/Moose")
2442 (synopsis "Postmodern object system for Perl 5")
2443 (description
2444 "Moose is a complete object system for Perl 5. It provides keywords for
2445 attribute declaration, object construction, inheritance, and maybe more. With
2446 Moose, you define your class declaratively, without needing to know about
2447 blessed hashrefs, accessor methods, and so on. You can concentrate on the
2448 logical structure of your classes, focusing on \"what\" rather than \"how\".
2449 A class definition with Moose reads like a list of very concise English
2450 sentences.")
2451 (license (package-license perl))))
2452
2453 (define-public perl-moosex-emulate-class-accessor-fast
2454 (package
2455 (name "perl-moosex-emulate-class-accessor-fast")
2456 (version "0.00903")
2457 (source
2458 (origin
2459 (method url-fetch)
2460 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
2461 "MooseX-Emulate-Class-Accessor-Fast-"
2462 version ".tar.gz"))
2463 (sha256
2464 (base32
2465 "1lkn1h4sxr1483jicsgsgzclbfw63g2i2c3m4v4j9ar75yrb0kh8"))))
2466 (build-system perl-build-system)
2467 (native-inputs
2468 `(("perl-test-exception" ,perl-test-exception)))
2469 (propagated-inputs
2470 `(("perl-moose" ,perl-moose)))
2471 (home-page "http://search.cpan.org/dist/MooseX-Emulate-Class-Accessor-Fast")
2472 (synopsis "Emulate Class::Accessor::Fast behavior using Moose attributes")
2473 (description "This module attempts to emulate the behavior of
2474 Class::Accessor::Fast as accurately as possible using the Moose attribute
2475 system. The public API of Class::Accessor::Fast is wholly supported, but the
2476 private methods are not.")
2477 (license (package-license perl))))
2478
2479 (define-public perl-moosex-getopt
2480 (package
2481 (name "perl-moosex-getopt")
2482 (version "0.65")
2483 (source
2484 (origin
2485 (method url-fetch)
2486 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2487 "MooseX-Getopt-" version ".tar.gz"))
2488 (sha256
2489 (base32
2490 "1nkzvbsiwldmpn6207ns7rinh860djnw098h6cnvywf429rjnz60"))))
2491 (build-system perl-build-system)
2492 (native-inputs
2493 `(("perl-test-deep" ,perl-test-deep)
2494 ("perl-test-fatal" ,perl-test-fatal)
2495 ("perl-test-requires" ,perl-test-requires)
2496 ("perl-test-trap" ,perl-test-trap)
2497 ("perl-test-warnings" ,perl-test-warnings)))
2498 (propagated-inputs
2499 `(("perl-getopt-long-descriptive" ,perl-getopt-long-descriptive)
2500 ("perl-moose" ,perl-moose)
2501 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)
2502 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2503 (home-page "http://search.cpan.org/dist/MooseX-Getopt")
2504 (synopsis "Moose role for processing command line options")
2505 (description "This is a Moose role which provides an alternate constructor
2506 for creating objects using parameters passed in from the command line.")
2507 (license (package-license perl))))
2508
2509 (define-public perl-moosex-markasmethods
2510 (package
2511 (name "perl-moosex-markasmethods")
2512 (version "0.15")
2513 (source
2514 (origin
2515 (method url-fetch)
2516 (uri (string-append "mirror://cpan/authors/id/R/RS/RSRCHBOY/"
2517 "MooseX-MarkAsMethods-" version ".tar.gz"))
2518 (sha256
2519 (base32
2520 "1y3yxwcjjajm66pvca54cv9fax7a6dy36xqr92x7vzyhfqrw3v69"))))
2521 (build-system perl-build-system)
2522 (inputs
2523 `(("perl-moose" ,perl-moose)
2524 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2525 (home-page "http://search.cpan.org/dist/MooseX-MarkAsMethods")
2526 (synopsis "Mark overload code symbols as methods")
2527 (description "MooseX::MarkAsMethods allows one to easily mark certain
2528 functions as Moose methods. This will allow other packages such as
2529 namespace::autoclean to operate without blowing away your overloads. After
2530 using MooseX::MarkAsMethods your overloads will be recognized by Class::MOP as
2531 being methods, and class extension as well as composition from roles with
2532 overloads will \"just work\".")
2533 (license lgpl2.1)))
2534
2535 (define-public perl-moosex-methodattributes
2536 (package
2537 (name "perl-moosex-methodattributes")
2538 (version "0.29")
2539 (source
2540 (origin
2541 (method url-fetch)
2542 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2543 "MooseX-MethodAttributes-" version ".tar.gz"))
2544 (sha256
2545 (base32
2546 "1pz3i67gadfmgzj87m1xp2ilcg3yhppdylcng2h6c11dy0a06hdk"))))
2547 (build-system perl-build-system)
2548 (native-inputs
2549 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2550 ("perl-test-fatal" ,perl-test-fatal)
2551 ("perl-test-requires" ,perl-test-requires)))
2552 (propagated-inputs
2553 `(("perl-moose" ,perl-moose)
2554 ("perl-moosex-types" ,perl-moosex-types)
2555 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2556 (home-page "http://search.cpan.org/dist/MooseX-MethodAttributes")
2557 (synopsis "Code attribute introspection")
2558 (description "This module allows code attributes of methods to be
2559 introspected using Moose meta method objects.")
2560 (license (package-license perl))))
2561
2562 (define-public perl-moosex-nonmoose
2563 (package
2564 (name "perl-moosex-nonmoose")
2565 (version "0.26")
2566 (source
2567 (origin
2568 (method url-fetch)
2569 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2570 "MooseX-NonMoose-" version ".tar.gz"))
2571 (sha256
2572 (base32
2573 "0zdaiphc45s5xj0ax5mkijf5d8v6w6yccb3zplgj6f30y7n55gnb"))))
2574 (build-system perl-build-system)
2575 (native-inputs
2576 `(("perl-moose" ,perl-moose)
2577 ("perl-test-fatal" ,perl-test-fatal)))
2578 (propagated-inputs
2579 `(("perl-list-moreutils" ,perl-list-moreutils)
2580 ("perl-module-runtime" ,perl-module-runtime)
2581 ("perl-moose" ,perl-moose)
2582 ("perl-try-tiny" ,perl-try-tiny)))
2583 (home-page "http://search.cpan.org/dist/MooseX-NonMoose")
2584 (synopsis "Subclassing of non-Moose classes")
2585 (description "MooseX::NonMoose allows for easily subclassing non-Moose
2586 classes with Moose, taking care of the details connected with doing this, such
2587 as setting up proper inheritance from Moose::Object and installing (and
2588 inlining, at make_immutable time) a constructor that makes sure things like
2589 BUILD methods are called. It tries to be as non-intrusive as possible.")
2590 (license (package-license perl))))
2591
2592 (define-public perl-moosex-params-validate
2593 (package
2594 (name "perl-moosex-params-validate")
2595 (version "0.19")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2600 "MooseX-Params-Validate-" version ".tar.gz"))
2601 (sha256
2602 (base32
2603 "16isvyfsnzp63qr9cwsn094hasb6m7rzldmzav6spk7rih4mxdwk"))))
2604 (build-system perl-build-system)
2605 (native-inputs
2606 `(("perl-moose" ,perl-moose)
2607 ("perl-test-fatal" ,perl-test-fatal)))
2608 (propagated-inputs
2609 `(("perl-devel-caller" ,perl-devel-caller)
2610 ("perl-moose" ,perl-moose)
2611 ("perl-params-validate" ,perl-params-validate)
2612 ("perl-sub-exporter" ,perl-sub-exporter)))
2613 (home-page "http://search.cpan.org/dist/MooseX-Params-Validate")
2614 (synopsis "Extension of Params::Validate using Moose's types")
2615 (description "This module fills a gap in Moose by adding method parameter
2616 validation to Moose.")
2617 (license (package-license perl))))
2618
2619 (define-public perl-moosex-relatedclassroles
2620 (package
2621 (name "perl-moosex-relatedclassroles")
2622 (version "0.004")
2623 (source
2624 (origin
2625 (method url-fetch)
2626 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
2627 "MooseX-RelatedClassRoles-" version ".tar.gz"))
2628 (sha256
2629 (base32
2630 "17vynkf6m5d039qkr4in1c9lflr8hnwp1fgzdwhj4q6jglipmnrh"))))
2631 (build-system perl-build-system)
2632 (propagated-inputs
2633 `(("perl-moose" ,perl-moose)
2634 ("perl-moosex-role-parameterized" ,perl-moosex-role-parameterized)))
2635 (home-page "http://search.cpan.org/dist/MooseX-RelatedClassRoles")
2636 (synopsis "Apply roles to a related Perl class")
2637 (description "This module applies roles to make a subclass instead of
2638 manually setting up a subclass.")
2639 (license (package-license perl))))
2640
2641 (define-public perl-moosex-role-parameterized
2642 (package
2643 (name "perl-moosex-role-parameterized")
2644 (version "1.08")
2645 (source
2646 (origin
2647 (method url-fetch)
2648 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2649 "MooseX-Role-Parameterized-" version ".tar.gz"))
2650 (sha256
2651 (base32
2652 "12s2nmq13ri126yv02bx9h30j760zpal27i470z85ayw9s7il4jq"))))
2653 (build-system perl-build-system)
2654 (native-inputs
2655 `(("perl-cpan-meta-check" ,perl-cpan-meta-check)
2656 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
2657 ("perl-test-fatal" ,perl-test-fatal)
2658 ("perl-test-requires" ,perl-test-requires)))
2659 (propagated-inputs
2660 `(("perl-moose" ,perl-moose)
2661 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2662 (home-page "http://search.cpan.org/dist/MooseX-Role-Parameterized")
2663 (synopsis "Moose roles with composition parameters")
2664 (description "Because Moose roles serve many different masters, they
2665 usually provide only the least common denominator of functionality. To
2666 empower roles further, more configurability than -alias and -excludes is
2667 required. Perhaps your role needs to know which method to call when it is
2668 done processing, or what default value to use for its url attribute.
2669 Parameterized roles offer a solution to these (and other) kinds of problems.")
2670 (license (package-license perl))))
2671
2672 (define-public perl-moosex-role-withoverloading
2673 (package
2674 (name "perl-moosex-role-withoverloading")
2675 (version "0.16")
2676 (source
2677 (origin
2678 (method url-fetch)
2679 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2680 "MooseX-Role-WithOverloading-" version ".tar.gz"))
2681 (sha256
2682 (base32
2683 "0kfs203ip44vsxh282kshia8wqkwklz4i7fs2ngsbj6frv00nqdv"))))
2684 (build-system perl-build-system)
2685 (propagated-inputs
2686 `(("perl-aliased" ,perl-aliased)
2687 ("perl-moose" ,perl-moose)
2688 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2689 (home-page "http://search.cpan.org/dist/MooseX-Role-WithOverloading")
2690 (synopsis "Roles which support overloading")
2691 (description "MooseX::Role::WithOverloading allows you to write a
2692 Moose::Role which defines overloaded operators and allows those overload
2693 methods to be composed into the classes/roles/instances it's compiled to,
2694 where plain Moose::Roles would lose the overloading.")
2695 (license (package-license perl))))
2696
2697 (define-public perl-moosex-semiaffordanceaccessor
2698 (package
2699 (name "perl-moosex-semiaffordanceaccessor")
2700 (version "0.10")
2701 (source
2702 (origin
2703 (method url-fetch)
2704 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2705 "MooseX-SemiAffordanceAccessor-" version ".tar.gz"))
2706 (sha256
2707 (base32
2708 "1mdil9ckgmgr78z59p8wfa35ixn5855ndzx14y01dvfxpiv5gf55"))))
2709 (build-system perl-build-system)
2710 (propagated-inputs
2711 `(("perl-moose" ,perl-moose)))
2712 (home-page "http://search.cpan.org/dist/MooseX-SemiAffordanceAccessor")
2713 (synopsis "Name your accessors foo() and set_foo()")
2714 (description "This module does not provide any methods. Simply loading it
2715 changes the default naming policy for the loading class so that accessors are
2716 separated into get and set methods. The get methods have the same name as the
2717 accessor, while set methods are prefixed with \"_set_\".")
2718 (license artistic2.0)))
2719
2720 (define-public perl-moosex-traits-pluggable
2721 (package
2722 (name "perl-moosex-traits-pluggable")
2723 (version "0.12")
2724 (source
2725 (origin
2726 (method url-fetch)
2727 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
2728 "MooseX-Traits-Pluggable-" version ".tar.gz"))
2729 (sha256
2730 (base32
2731 "1jjqmcidy4kdgp5yffqqwxrsab62mbhbpvnzdy1rpwnb1savg5mb"))))
2732 (build-system perl-build-system)
2733 (native-inputs
2734 `(("perl-moose" ,perl-moose)
2735 ("perl-test-exception" ,perl-test-exception)))
2736 (propagated-inputs
2737 `(("perl-class-load" ,perl-class-load)
2738 ("perl-list-moreutils" ,perl-list-moreutils)
2739 ("perl-moose" ,perl-moose)
2740 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2741 (home-page
2742 "http://search.cpan.org/dist/MooseX-Traits-Pluggable")
2743 (synopsis "Trait loading and resolution for Moose")
2744 (description "Adds support on top of MooseX::Traits for class precedence
2745 search for traits and some extra attributes")
2746 (license (package-license perl))))
2747
2748 (define-public perl-moosex-types
2749 (package
2750 (name "perl-moosex-types")
2751 (version "0.45")
2752 (source
2753 (origin
2754 (method url-fetch)
2755 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2756 "MooseX-Types-" version ".tar.gz"))
2757 (sha256
2758 (base32
2759 "1iq90s1f0xbmr194q0mhnp9wxqxwwilkbdml040ibqbqvfiz87yh"))))
2760 (build-system perl-build-system)
2761 (native-inputs
2762 `(("perl-test-fatal" ,perl-test-fatal)
2763 ("perl-test-requires" ,perl-test-requires)))
2764 (propagated-inputs
2765 `(("perl-carp-clan" ,perl-carp-clan)
2766 ("perl-moose" ,perl-moose)
2767 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2768 (home-page "http://search.cpan.org/dist/MooseX-Types")
2769 (synopsis "Organise your Moose types in libraries")
2770 (description "This package lets you declare types using short names, but
2771 behind the scenes it namespaces all your type declarations, effectively
2772 prevent name clashes between packages.")
2773 (license (package-license perl))))
2774
2775 (define-public perl-moosex-types-loadableclass
2776 (package
2777 (name "perl-moosex-types-loadableclass")
2778 (version "0.013")
2779 (source
2780 (origin
2781 (method url-fetch)
2782 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2783 "MooseX-Types-LoadableClass-" version ".tar.gz"))
2784 (sha256
2785 (base32
2786 "13v2hn3xr6adx15qik8b6966fbbw77ik1v4sxx24f766la10w2mq"))))
2787 (build-system perl-build-system)
2788 (native-inputs
2789 `(("perl-module-build-tiny" ,perl-module-build-tiny)
2790 ("perl-namespace-clean" ,perl-namespace-clean)
2791 ("perl-moose" ,perl-moose)
2792 ("perl-test-fatal" ,perl-test-fatal)
2793 ("perl-class-load" ,perl-class-load)))
2794 (propagated-inputs
2795 `(("perl-module-runtime" ,perl-module-runtime)
2796 ("perl-moosex-types" ,perl-moosex-types)
2797 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
2798 (home-page "http://search.cpan.org/dist/MooseX-Types-LoadableClass")
2799 (synopsis "ClassName type constraints for Moose")
2800 (description "MooseX::Types::LoadableClass provides a ClassName type
2801 constraint with coercion to load the class.")
2802 (license (package-license perl))))
2803
2804 (define-public perl-mro-compat
2805 (package
2806 (name "perl-mro-compat")
2807 (version "0.12")
2808 (source
2809 (origin
2810 (method url-fetch)
2811 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
2812 "MRO-Compat-" version ".tar.gz"))
2813 (sha256
2814 (base32
2815 "1mhma2g83ih9f8nkmg2k9l0x6izhhbb6k5lli4rpllxad4wbk9dv"))))
2816 (build-system perl-build-system)
2817 (home-page "http://search.cpan.org/dist/MRO-Compat")
2818 (synopsis "MRO interface compatibility for Perls < 5.9.5")
2819 (description "The \"mro\" namespace provides several utilities for dealing
2820 with method resolution order and method caching in general in Perl 5.9.5 and
2821 higher. This module provides those interfaces for earlier versions of
2822 Perl (back to 5.6.0).")
2823 (license (package-license perl))))
2824
2825 (define-public perl-namespace-autoclean
2826 (package
2827 (name "perl-namespace-autoclean")
2828 (version "0.24")
2829 (source
2830 (origin
2831 (method url-fetch)
2832 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2833 "namespace-autoclean-" version ".tar.gz"))
2834 (sha256
2835 (base32
2836 "0msggbg2zbixxjq1fda19h0yygavxndfzc4j4pq11nfghmawjsb0"))))
2837 (build-system perl-build-system)
2838 (native-inputs
2839 `(("perl-test-requires" ,perl-test-requires)))
2840 (propagated-inputs
2841 `(("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)
2842 ("perl-namespace-clean" ,perl-namespace-clean)
2843 ("perl-sub-identify" ,perl-sub-identify)))
2844 (home-page "http://search.cpan.org/dist/namespace-autoclean")
2845 (synopsis "Keep imports out of your namespace")
2846 (description "The namespace::autoclean pragma will remove all imported
2847 symbols at the end of the current package's compile cycle. Functions called
2848 in the package itself will still be bound by their name, but they won't show
2849 up as methods on your class or instances. It is very similar to
2850 namespace::clean, except it will clean all imported functions, no matter if
2851 you imported them before or after you used the pragma. It will also not touch
2852 anything that looks like a method.")
2853 (license (package-license perl))))
2854
2855 (define-public perl-namespace-clean
2856 (package
2857 (name "perl-namespace-clean")
2858 (version "0.25")
2859 (source
2860 (origin
2861 (method url-fetch)
2862 (uri (string-append "mirror://cpan/authors/id/R/RI/RIBASUSHI/"
2863 "namespace-clean-" version ".tar.gz"))
2864 (sha256
2865 (base32
2866 "016dds70ql1mp18b07chkxiy4drn976ibnbshqc2hmhrh9xjnsll"))))
2867 (build-system perl-build-system)
2868 (propagated-inputs
2869 `(("perl-package-stash" ,perl-package-stash)
2870 ("perl-b-hooks-endofscope" ,perl-b-hooks-endofscope)))
2871 (home-page "http://search.cpan.org/dist/namespace-clean")
2872 (synopsis "Keep imports and functions out of your namespace")
2873 (description "The namespace::clean pragma will remove all previously
2874 declared or imported symbols at the end of the current package's compile
2875 cycle. Functions called in the package itself will still be bound by their
2876 name, but they won't show up as methods on your class or instances.")
2877 (license (package-license perl))))
2878
2879 (define-public perl-number-compare
2880 (package
2881 (name "perl-number-compare")
2882 (version "0.03")
2883 (source
2884 (origin
2885 (method url-fetch)
2886 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
2887 "Number-Compare-" version ".tar.gz"))
2888 (sha256
2889 (base32
2890 "09q8i0mxvr7q9vajwlgawsi0hlpc119gnhq4hc933d03x0vkfac3"))))
2891 (build-system perl-build-system)
2892 (home-page "http://search.cpan.org/dist/Number-Compare")
2893 (synopsis "Numeric comparisons")
2894 (description "Number::Compare compiles a simple comparison to an anonymous
2895 subroutine, which you can call with a value to be tested against.")
2896 (license (package-license perl))))
2897
2898 (define-public perl-object-signature
2899 (package
2900 (name "perl-object-signature")
2901 (version "1.07")
2902 (source
2903 (origin
2904 (method url-fetch)
2905 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
2906 "Object-Signature-" version ".tar.gz"))
2907 (sha256
2908 (base32
2909 "0c8l7195bjvx0v6zmkgdnxvwg7yj2zq8hi7xd25a3iikd12dc4f6"))))
2910 (build-system perl-build-system)
2911 (home-page "http://search.cpan.org/dist/Object-Signature")
2912 (synopsis "Generate cryptographic signatures for objects")
2913 (description "Object::Signature is an abstract base class that you can
2914 inherit from in order to allow your objects to generate unique cryptographic
2915 signatures.")
2916 (license (package-license perl))))
2917
2918 (define-public perl-package-anon
2919 (package
2920 (name "perl-package-anon")
2921 (version "0.05")
2922 (source
2923 (origin
2924 (method url-fetch)
2925 (uri (string-append "mirror://cpan/authors/id/A/AU/AUGGY/"
2926 "Package-Anon-" version ".tar.gz"))
2927 (sha256
2928 (base32
2929 "1fj1fakkfklf2iwzsl64vfgshya3jgm6vhxiphw12wlac9g2il0m"))))
2930 (build-system perl-build-system)
2931 (propagated-inputs
2932 `(("perl-sub-exporter" ,perl-sub-exporter)
2933 ("perl-params-util" ,perl-params-util)))
2934 (home-page "http://search.cpan.org/dist/Package-Anon")
2935 (synopsis "Anonymous packages")
2936 (description "This module allows for anonymous packages that are
2937 independent of the main namespace and only available through an object
2938 instance, not by name.")
2939 (license (package-license perl))))
2940
2941 (define-public perl-package-deprecationmanager
2942 (package
2943 (name "perl-package-deprecationmanager")
2944 (version "0.13")
2945 (source
2946 (origin
2947 (method url-fetch)
2948 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
2949 "Package-DeprecationManager-" version ".tar.gz"))
2950 (sha256
2951 (base32
2952 "0fkvq3xxwc3l5hg64dr9sj3l12dl59i44cg407qx9sd6r51j3qfi"))))
2953 (build-system perl-build-system)
2954 (native-inputs
2955 `(("perl-test-fatal" ,perl-test-fatal)
2956 ("perl-test-requires" ,perl-test-requires)
2957 ("perl-test-output" ,perl-test-output)))
2958 (propagated-inputs
2959 `(("perl-list-moreutils" ,perl-list-moreutils)
2960 ("perl-params-util" ,perl-params-util)
2961 ("perl-sub-install" ,perl-sub-install)))
2962 (arguments `(#:tests? #f)) ;XXX: Failing for some reason...
2963 (home-page "http://search.cpan.org/dist/Package-DeprecationManager")
2964 (synopsis "Manage deprecation warnings for your distribution")
2965 (description "This module allows you to manage a set of deprecations for
2966 one or more modules.")
2967 (license artistic2.0)))
2968
2969 (define-public perl-package-stash
2970 (package
2971 (name "perl-package-stash")
2972 (version "0.37")
2973 (source
2974 (origin
2975 (method url-fetch)
2976 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
2977 "Package-Stash-" version ".tar.gz"))
2978 (sha256
2979 (base32
2980 "0b3vg2nbzmz1m5qla4123rmfzmpfmwxkw78fghvwsc4iiww0baq6"))))
2981 (build-system perl-build-system)
2982 (native-inputs
2983 `(("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
2984 ("perl-test-fatal" ,perl-test-fatal)
2985 ("perl-test-requires" ,perl-test-requires)
2986 ("perl-package-anon" ,perl-package-anon)))
2987 (propagated-inputs
2988 `(("perl-module-implementation" ,perl-module-implementation)
2989 ("perl-dist-checkconflicts" ,perl-dist-checkconflicts)
2990 ("perl-package-stash-xs" ,perl-package-stash-xs)))
2991 (home-page "http://search.cpan.org/dist/Package-Stash")
2992 (synopsis "Routines for manipulating stashes")
2993 (description "Manipulating stashes (Perl's symbol tables) is occasionally
2994 necessary, but incredibly messy, and easy to get wrong. This module hides all
2995 of that behind a simple API.")
2996 (license (package-license perl))))
2997
2998 (define-public perl-package-stash-xs
2999 (package
3000 (name "perl-package-stash-xs")
3001 (version "0.28")
3002 (source
3003 (origin
3004 (method url-fetch)
3005 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3006 "Package-Stash-XS-" version ".tar.gz"))
3007 (sha256
3008 (base32
3009 "11nl69n8i56p91pd0ia44ip0vpv2cxwpbfakrv01vvv8az1cbn13"))))
3010 (build-system perl-build-system)
3011 (native-inputs
3012 `(("perl-test-fatal" ,perl-test-fatal)
3013 ("perl-test-requires" ,perl-test-requires)
3014 ("perl-package-anon" ,perl-package-anon)))
3015 (home-page "http://search.cpan.org/dist/Package-Stash-XS")
3016 (synopsis "Faster implementation of the Package::Stash API")
3017 (description "This is a backend for Package::Stash, which provides the
3018 functionality in a way that's less buggy and much faster. It will be used by
3019 default if it's installed, and should be preferred in all environments with a
3020 compiler.")
3021 (license (package-license perl))))
3022
3023 (define-public perl-padwalker
3024 (package
3025 (name "perl-padwalker")
3026 (version "2.0")
3027 (source
3028 (origin
3029 (method url-fetch)
3030 (uri (string-append "mirror://cpan/authors/id/R/RO/ROBIN/"
3031 "PadWalker-" version ".tar.gz"))
3032 (sha256
3033 (base32
3034 "058l78rkr6px3rqcv2sdf9sqimdq1nc6py5yb9rrg3wmva7crw84"))))
3035 (build-system perl-build-system)
3036 (home-page "http://search.cpan.org/dist/PadWalker")
3037 (synopsis "Play with other peoples' lexical variables")
3038 (description "PadWalker is a module which allows you to inspect (and even
3039 change) lexical variables in any subroutine which called you. It will only
3040 show those variables which are in scope at the point of the call. PadWalker
3041 is particularly useful for debugging.")
3042 (license (package-license perl))))
3043
3044 (define-public perl-params-util
3045 (package
3046 (name "perl-params-util")
3047 (version "1.07")
3048 (source
3049 (origin
3050 (method url-fetch)
3051 (uri (string-append
3052 "mirror://cpan/authors/id/A/AD/ADAMK/Params-Util-"
3053 version ".tar.gz"))
3054 (sha256
3055 (base32
3056 "0v67sx93yhn7xa0nh9mnbf8mixf54czk6wzrjsp6dzzr5hzyrw9h"))))
3057 (build-system perl-build-system)
3058 (home-page "http://search.cpan.org/dist/Params-Util")
3059 (synopsis "Simple, compact and correct param-checking functions")
3060 (description
3061 "Params::Util provides a basic set of importable functions that makes
3062 checking parameters easier.")
3063 (license (package-license perl))))
3064
3065 (define-public perl-params-validate
3066 (package
3067 (name "perl-params-validate")
3068 (version "1.17")
3069 (source
3070 (origin
3071 (method url-fetch)
3072 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
3073 "Params-Validate-" version ".tar.gz"))
3074 (sha256
3075 (base32
3076 "1wh23i9kkma6493c0q1kvy6wmahd6spg6xm3xbp2ar1iy1xhks5l"))))
3077 (build-system perl-build-system)
3078 (native-inputs
3079 `(("perl-test-fatal" ,perl-test-fatal)
3080 ("perl-test-requires" ,perl-test-requires)))
3081 (propagated-inputs
3082 `(("perl-module-implementation" ,perl-module-implementation)))
3083 (home-page "http://search.cpan.org/dist/Params-Validate")
3084 (synopsis "Validate method/function parameters")
3085 (description "The Params::Validate module allows you to validate method or
3086 function call parameters to an arbitrary level of specificity.")
3087 (license artistic2.0)))
3088
3089 (define-public perl-par-dist
3090 (package
3091 (name "perl-par-dist")
3092 (version "0.49")
3093 (source
3094 (origin
3095 (method url-fetch)
3096 (uri (string-append "mirror://cpan/authors/id/R/RS/RSCHUPP/"
3097 "PAR-Dist-" version ".tar.gz"))
3098 (sha256
3099 (base32
3100 "078ycyn8pw3rba4k3qwcqrqfcym5c1pivymwa0bvs9sab45j4iwy"))))
3101 (build-system perl-build-system)
3102 (home-page "http://search.cpan.org/dist/PAR-Dist")
3103 (synopsis "Create and manipulate PAR distributions")
3104 (description "PAR::Dist is a toolkit to create and manipulate PAR
3105 distributions.")
3106 (license (package-license perl))))
3107
3108 (define-public perl-parent
3109 (package
3110 (name "perl-parent")
3111 (version "0.228")
3112 (source
3113 (origin
3114 (method url-fetch)
3115 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
3116 "parent-" version ".tar.gz"))
3117 (sha256
3118 (base32
3119 "0w0i02y4z8465z050kml57mvhv7c5gl8w8ivplhr3cms0zbaq87b"))))
3120 (build-system perl-build-system)
3121 (home-page "http://search.cpan.org/dist/parent")
3122 (synopsis "Establish an ISA relationship with base classes at compile time")
3123 (description "Allows you to both load one or more modules, while setting
3124 up inheritance from those modules at the same time.")
3125 (license (package-license perl))))
3126
3127 (define-public perl-path-class
3128 (package
3129 (name "perl-path-class")
3130 (version "0.35")
3131 (source
3132 (origin
3133 (method url-fetch)
3134 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
3135 "Path-Class-" version ".tar.gz"))
3136 (sha256
3137 (base32
3138 "1viaj8jyshcj135la0kgfgzalaw06xnbsg9h54jx09v1342v69lj"))))
3139 (build-system perl-build-system)
3140 (home-page "http://search.cpan.org/dist/Path-Class")
3141 (synopsis "Path specification manipulation")
3142 (description "Path::Class is a module for manipulation of file and
3143 directory specifications in a cross-platform manner.")
3144 (license (package-license perl))))
3145
3146 (define-public perl-posix-strftime-compiler
3147 (package
3148 (name "perl-posix-strftime-compiler")
3149 (version "0.41")
3150 (source
3151 (origin
3152 (method url-fetch)
3153 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
3154 "POSIX-strftime-Compiler-" version ".tar.gz"))
3155 (sha256
3156 (base32
3157 "0f9p3hx0vqx8zg5v24pz0s4zc8ln100c7c91ks681wq02phqj2v7"))))
3158 (build-system perl-build-system)
3159 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
3160 (home-page "http://search.cpan.org/dist/POSIX-strftime-Compiler")
3161 (synopsis "GNU C library compatible strftime for loggers and servers")
3162 (description "POSIX::strftime::Compiler provides GNU C library compatible
3163 strftime(3). But this module is not affected by the system locale. This
3164 feature is useful when you want to write loggers, servers, and portable
3165 applications.")
3166 (license (package-license perl))))
3167
3168 (define-public perl-probe-perl
3169 (package
3170 (name "perl-probe-perl")
3171 (version "0.03")
3172 (source (origin
3173 (method url-fetch)
3174 (uri (string-append "mirror://cpan/authors/id/K/KW/KWILLIAMS/"
3175 "Probe-Perl-" version ".tar.gz"))
3176 (sha256
3177 (base32
3178 "0c9wiaz0mqqknafr4jdr0g2gdzxnn539182z0icqaqvp5qgd5r6r"))))
3179 (build-system perl-build-system)
3180 (synopsis "Information about the currently running perl")
3181 (description
3182 "Probe::Perl provides methods for obtaining information about the
3183 currently running perl interpreter. It originally began life as code in the
3184 Module::Build project, but has been externalized here for general use.")
3185 (home-page (string-append "http://search.cpan.org/~kwilliams/"
3186 "Probe-Perl-" version))
3187 (license (package-license perl))))
3188
3189 (define-public perl-regexp-common
3190 (package
3191 (name "perl-regexp-common")
3192 (version "2013031301")
3193 (source (origin
3194 (method url-fetch)
3195 (uri (string-append "mirror://cpan/authors/id/A/AB/ABIGAIL/"
3196 "Regexp-Common-" version ".tar.gz"))
3197 (sha256
3198 (base32
3199 "112wybsm0vr8yfannx6sdfvgp5vza28gjgr3pgn69ak4sac836kj"))))
3200 (build-system perl-build-system)
3201 (synopsis "Provide commonly requested regular expressions")
3202 (description
3203 "This module exports a single hash (`%RE') that stores or generates
3204 commonly needed regular expressions. Patterns currently provided include:
3205 balanced parentheses and brackets, delimited text (with escapes), integers and
3206 floating-point numbers in any base (up to 36), comments in 44 languages,
3207 offensive language, lists of any pattern, IPv4 addresses, URIs, and Zip
3208 codes.")
3209 (home-page (string-append "http://search.cpan.org/~abigail/"
3210 "Regexp-Common-" version))
3211 ;; Quad-licensed: Perl Artistic, Perl Artistic 2.0, X11, and BSD.
3212 (license (list (package-license perl) x11 bsd-3))))
3213
3214 (define-public perl-role-tiny
3215 (package
3216 (name "perl-role-tiny")
3217 (version "1.003004")
3218 (source
3219 (origin
3220 (method url-fetch)
3221 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3222 "Role-Tiny-" version ".tar.gz"))
3223 (sha256
3224 (base32
3225 "0ak60hakn0ixmsiw403si0lf5pagq5r6wjgl7p0pr979nlcikfmd"))))
3226 (build-system perl-build-system)
3227 (native-inputs
3228 `(("perl-namespace-autoclean" ,perl-namespace-autoclean)
3229 ("perl-test-fatal" ,perl-test-fatal)))
3230 (propagated-inputs
3231 `(("perl-class-method-modifiers" ,perl-class-method-modifiers)))
3232 (home-page "http://search.cpan.org/dist/Role-Tiny")
3233 (synopsis "Roles, as a slice of Moose")
3234 (description "Role::Tiny is a minimalist role composition tool.")
3235 (license (package-license perl))))
3236
3237 (define-public perl-safe-isa
3238 (package
3239 (name "perl-safe-isa")
3240 (version "1.000005")
3241 (source
3242 (origin
3243 (method url-fetch)
3244 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3245 "Safe-Isa-" version ".tar.gz"))
3246 (sha256
3247 (base32
3248 "1vib54cp64dy3ic4n73skadp1pl4gn8s9qpxmzvi078dm3mpnbcw"))))
3249 (build-system perl-build-system)
3250 (home-page "http://search.cpan.org/dist/Safe-Isa")
3251 (synopsis "Call isa, can, does, and DOES safely")
3252 (description "This module allows you to call isa, can, does, and DOES
3253 safely on things that may not be objects.")
3254 (license (package-license perl))))
3255
3256 (define-public perl-scope-guard
3257 (package
3258 (name "perl-scope-guard")
3259 (version "0.20")
3260 (source
3261 (origin
3262 (method url-fetch)
3263 (uri (string-append "mirror://cpan/authors/id/C/CH/CHOCOLATE/"
3264 "Scope-Guard-" version ".tar.gz"))
3265 (sha256
3266 (base32
3267 "1lsagnz6pli035zvx5c1x4qm9fabi773vns86yd8lzfpldhfv3sv"))))
3268 (build-system perl-build-system)
3269 (home-page "http://search.cpan.org/dist/Scope-Guard")
3270 (synopsis "Lexically-scoped resource management")
3271 (description "This module provides a convenient way to perform cleanup or
3272 other forms of resource management at the end of a scope. It is particularly
3273 useful when dealing with exceptions: the Scope::Guard constructor takes a
3274 reference to a subroutine that is guaranteed to be called even if the thread
3275 of execution is aborted prematurely. This effectively allows lexically-scoped
3276 \"promises\" to be made that are automatically honoured by perl's garbage
3277 collector.")
3278 (license (package-license perl))))
3279
3280 (define-public perl-spiffy
3281 (package
3282 (name "perl-spiffy")
3283 (version "0.46")
3284 (source
3285 (origin
3286 (method url-fetch)
3287 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
3288 "Spiffy-" version ".tar.gz"))
3289 (sha256
3290 (base32
3291 "18qxshrjh0ibpzjm2314157mxlibh3smyg64nr4mq990hh564n4g"))))
3292 (build-system perl-build-system)
3293 (home-page "http://search.cpan.org/dist/Spiffy")
3294 (synopsis "Spiffy Perl Interface Framework For You")
3295 (description "Spiffy is a framework and methodology for doing object
3296 oriented (OO) programming in Perl. Spiffy combines the best parts of
3297 Exporter.pm, base.pm, mixin.pm and SUPER.pm into one magic foundation class.
3298 It attempts to fix all the nits and warts of traditional Perl OO, in a clean,
3299 straightforward and (perhaps someday) standard way. Spiffy borrows ideas from
3300 other OO languages like Python, Ruby, Java and Perl 6.")
3301 (license (package-license perl))))
3302
3303 (define-public perl-stream-buffered
3304 (package
3305 (name "perl-stream-buffered")
3306 (version "0.03")
3307 (source
3308 (origin
3309 (method url-fetch)
3310 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
3311 "Stream-Buffered-" version ".tar.gz"))
3312 (sha256
3313 (base32
3314 "0fs2n9zw6isfkha2kbqrvl9mwg572x1x0jlfaps0qsyynn846bcv"))))
3315 (build-system perl-build-system)
3316 (home-page "http://search.cpan.org/dist/Stream-Buffered")
3317 (synopsis "Temporary buffer to save bytes")
3318 (description "Stream::Buffered is a buffer class to store arbitrary length
3319 of byte strings and then get a seekable filehandle once everything is
3320 buffered. It uses PerlIO and/or temporary file to save the buffer depending
3321 on the length of the size.")
3322 (license (package-license perl))))
3323
3324 (define-public perl-strictures
3325 (package
3326 (name "perl-strictures")
3327 (version "1.005005")
3328 (source
3329 (origin
3330 (method url-fetch)
3331 (uri (string-append "mirror://cpan/authors/id/H/HA/HAARG/"
3332 "strictures-" version ".tar.gz"))
3333 (sha256
3334 (base32
3335 "1bmpv8wr9jbc1lfj634xhq3y42nm28hh01jfsyzxhqhqf6dkdz59"))))
3336 (build-system perl-build-system)
3337 (home-page "http://search.cpan.org/dist/strictures")
3338 (synopsis "Turn on strict and make all warnings fatal")
3339 (description "Strictures turns on strict and make all warnings fatal when
3340 run from within a source-controlled directory.")
3341 (license (package-license perl))))
3342
3343 (define-public perl-string-camelcase
3344 (package
3345 (name "perl-string-camelcase")
3346 (version "0.02")
3347 (source
3348 (origin
3349 (method url-fetch)
3350 (uri (string-append "mirror://cpan/authors/id/H/HI/HIO/"
3351 "String-CamelCase-" version ".tar.gz"))
3352 (sha256
3353 (base32
3354 "17kh8nap2z5g5rqcvw0m7mvbai7wr7h0al39w8l827zhqad8ss42"))))
3355 (build-system perl-build-system)
3356 (home-page "http://search.cpan.org/dist/String-CamelCase")
3357 (synopsis "Camelcase and de-camelcase")
3358 (description "This module may be used to convert from under_score text to
3359 CamelCase and back again.")
3360 (license (package-license perl))))
3361
3362 (define-public perl-string-rewriteprefix
3363 (package
3364 (name "perl-string-rewriteprefix")
3365 (version "0.007")
3366 (source
3367 (origin
3368 (method url-fetch)
3369 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3370 "String-RewritePrefix-" version ".tar.gz"))
3371 (sha256
3372 (base32
3373 "18nxl1vgkcx0r7ifkmbl9fp73f8ihiqhqqf3vq6sj5b3cgawrfsw"))))
3374 (build-system perl-build-system)
3375 (propagated-inputs
3376 `(("perl-sub-exporter" ,perl-sub-exporter)))
3377 (home-page "http://search.cpan.org/dist/String-RewritePrefix")
3378 (synopsis "Rewrite strings based on a set of known prefixes")
3379 (description "This module allows you to rewrite strings based on a set of
3380 known pprefixes.")
3381 (license (package-license perl))))
3382
3383 (define-public perl-sub-exporter
3384 (package
3385 (name "perl-sub-exporter")
3386 (version "0.987")
3387 (source
3388 (origin
3389 (method url-fetch)
3390 (uri (string-append
3391 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Exporter-"
3392 version ".tar.gz"))
3393 (sha256
3394 (base32
3395 "1ml3n1ck4ln9qjm2mcgkczj1jb5n1fkscz9c4x23v4db0glb4g2l"))))
3396 (build-system perl-build-system)
3397 (propagated-inputs
3398 `(("perl-data-optlist" ,perl-data-optlist)
3399 ("perl-params-util" ,perl-params-util)))
3400 (home-page "http://search.cpan.org/dist/Sub-Exporter")
3401 (synopsis "Sophisticated exporter for custom-built routines")
3402 (description
3403 "Sub::Exporter provides a sophisticated alternative to Exporter.pm for
3404 custom-built routines.")
3405 (license (package-license perl))))
3406
3407 (define-public perl-sub-exporter-progressive
3408 (package
3409 (name "perl-sub-exporter-progressive")
3410 (version "0.001011")
3411 (source
3412 (origin
3413 (method url-fetch)
3414 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
3415 "Sub-Exporter-Progressive-" version ".tar.gz"))
3416 (sha256
3417 (base32
3418 "01kwzbqwdhvadpphnczid03nlyj0h4cxaq3m3v2401bckkkcc606"))))
3419 (build-system perl-build-system)
3420 (native-inputs `(("perl-sub-exporter" ,perl-sub-exporter)))
3421 (home-page "http://search.cpan.org/dist/Sub-Exporter-Progressive")
3422 (synopsis "Only use Sub::Exporter if you need it")
3423 (description "Sub::Exporter is an incredibly powerful module, but with
3424 that power comes great responsibility, as well as some runtime penalties.
3425 This module is a \"Sub::Exporter\" wrapper that will let your users just use
3426 Exporter if all they are doing is picking exports, but use \"Sub::Exporter\"
3427 if your users try to use \"Sub::Exporter\"'s more advanced features, like
3428 renaming exports, if they try to use them.")
3429 (license (package-license perl))))
3430
3431 (define-public perl-sub-identify
3432 (package
3433 (name "perl-sub-identify")
3434 (version "0.10")
3435 (source
3436 (origin
3437 (method url-fetch)
3438 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
3439 "Sub-Identify-" version ".tar.gz"))
3440 (sha256
3441 (base32
3442 "087fjcg6w576w47i1slj6mjfd3gl1b0airgddmn3prn0nff6nn2m"))))
3443 (build-system perl-build-system)
3444 (home-page "http://search.cpan.org/dist/Sub-Identify")
3445 (synopsis "Retrieve names of code references")
3446 (description "Sub::Identify allows you to retrieve the real name of code
3447 references.")
3448 (license (package-license perl))))
3449
3450 (define-public perl-sub-install
3451 (package
3452 (name "perl-sub-install")
3453 (version "0.928")
3454 (source
3455 (origin
3456 (method url-fetch)
3457 (uri (string-append
3458 "mirror://cpan/authors/id/R/RJ/RJBS/Sub-Install-"
3459 version ".tar.gz"))
3460 (sha256
3461 (base32
3462 "03zgk1yh128gciyx3q77zxzxg9kf8yy2gm46gdxqi24mcykngrb1"))))
3463 (build-system perl-build-system)
3464 (home-page "http://search.cpan.org/dist/Sub-Install")
3465 (synopsis "Install subroutines into packages easily")
3466 (description
3467 "Sub::Install makes it easy to install subroutines into packages without
3468 the unsightly mess of C<no strict> or typeglobs lying about where just anyone
3469 can see them.")
3470 (license (package-license perl))))
3471
3472 (define-public perl-sub-name
3473 (package
3474 (name "perl-sub-name")
3475 (version "0.12")
3476 (source
3477 (origin
3478 (method url-fetch)
3479 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3480 "Sub-Name-" version ".tar.gz"))
3481 (sha256
3482 (base32
3483 "1sdlc8pv7vyyc48gzh70hbwzn0hzwl3zbcy2dkmfw8vjzgya5i06"))))
3484 (build-system perl-build-system)
3485 (native-inputs
3486 `(("perl-devel-checkbin" ,perl-devel-checkbin)))
3487 (home-page "http://search.cpan.org/dist/Sub-Name")
3488 (synopsis "(Re)name a sub")
3489 (description "Assigns a new name to referenced sub. If package
3490 specification is omitted in the name, then the current package is used. The
3491 return value is the sub.")
3492 (license (package-license perl))))
3493
3494 (define-public perl-sub-uplevel
3495 (package
3496 (name "perl-sub-uplevel")
3497 (version "0.24")
3498 (source
3499 (origin
3500 (method url-fetch)
3501 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
3502 "Sub-Uplevel-" version ".tar.gz"))
3503 (sha256
3504 (base32
3505 "1yzxqsim8vpavzqm2wfksh8dpmy6qbr9s3hdqqicp38br3lzd4qg"))))
3506 (build-system perl-build-system)
3507 (home-page "http://search.cpan.org/dist/Sub-Uplevel")
3508 (synopsis "Apparently run a function in a higher stack frame")
3509 (description "Like Tcl's uplevel() function, but not quite so dangerous.
3510 The idea is just to fool caller(). All the really naughty bits of Tcl's
3511 uplevel() are avoided.")
3512 (license (package-license perl))))
3513
3514 (define-public perl-svg
3515 (package
3516 (name "perl-svg")
3517 (version "2.63")
3518 (source
3519 (origin
3520 (method url-fetch)
3521 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/SVG-"
3522 version ".tar.gz"))
3523 (sha256
3524 (base32
3525 "12cbncsfxbwg1w3p1qmymfbqdb22kmyajxzdnxnxbq5xjl6yncha"))))
3526 (build-system perl-build-system)
3527 (home-page "http://search.cpan.org/dist/SVG")
3528 (synopsis "Perl extension for generating SVG documents")
3529 (description "SVG is a Perl module which generates a nested data structure
3530 containing the DOM representation of an SVG (Scalable Vector Graphics) image.
3531 Using SVG, you can generate SVG objects, embed other SVG instances into it,
3532 access the DOM object, create and access Javascript, and generate SMIL
3533 animation content.")
3534 (license (package-license perl))))
3535
3536 (define-public perl-sys-cpu
3537 (package
3538 (name "perl-sys-cpu")
3539 (version "0.61")
3540 (source (origin
3541 (method url-fetch)
3542 (uri (string-append "mirror://cpan/authors/id/M/MZ/MZSANFORD/"
3543 "Sys-CPU-" version ".tar.gz"))
3544 (sha256
3545 (base32
3546 "1r6976bs86j7zp51m5vh42xlyah951jgdlkimv202413kjvqc2i5"))))
3547 (build-system perl-build-system)
3548 (synopsis "Perl extension for getting CPU information")
3549 (description
3550 "In responce to a post on perlmonks.org, a module for counting the number
3551 of CPU's on a system. Support has now also been added for type of CPU and
3552 clock speed.")
3553 (home-page (string-append "http://search.cpan.org/~mzsanford/"
3554 "Sys-CPU-" version))
3555 (license (package-license perl))))
3556
3557 (define-public perl-task-weaken
3558 (package
3559 (name "perl-task-weaken")
3560 (version "1.04")
3561 (source
3562 (origin
3563 (method url-fetch)
3564 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3565 "Task-Weaken-" version ".tar.gz"))
3566 (sha256
3567 (base32
3568 "1i7kd9v8fjsqyhr4rx4a1jv7n5vfjjm1v4agb24pizh0b72p3qk7"))))
3569 (build-system perl-build-system)
3570 (home-page "http://search.cpan.org/dist/Task-Weaken")
3571 (synopsis "Ensure that a platform has weaken support")
3572 (description "One recurring problem in modules that use Scalar::Util's
3573 weaken function is that it is not present in the pure-perl variant. If
3574 Scalar::Util is not available at all, it will issue a normal dependency on the
3575 module. However, if Scalar::Util is relatively new ( it is >= 1.19 ) and the
3576 module does not have weaken, the install will bail out altogether with a long
3577 error encouraging the user to seek support.")
3578 (license (package-license perl))))
3579
3580 (define-public perl-template-toolkit
3581 (package
3582 (name "perl-template-toolkit")
3583 (version "2.26")
3584 (source
3585 (origin
3586 (method url-fetch)
3587 (uri (string-append "mirror://cpan/authors/id/A/AB/ABW/"
3588 "Template-Toolkit-" version ".tar.gz"))
3589 (sha256
3590 (base32
3591 "1gknrm8hdci5ryg67p4y23lsy7lynczqmq9kh9nzj7kg08vczqg7"))))
3592 (build-system perl-build-system)
3593 (propagated-inputs
3594 `(("perl-appconfig" ,perl-appconfig)
3595 ("perl-test-leaktrace" ,perl-test-leaktrace)))
3596 (home-page "http://search.cpan.org/dist/Template-Toolkit")
3597 (synopsis "Template processing system for Perl")
3598 (description "The Template Toolkit is a collection of modules which
3599 implement an extensible template processing system. It was originally
3600 designed and remains primarily useful for generating dynamic web content, but
3601 it can be used equally well for processing any other kind of text based
3602 documents: HTML, XML, POD, PostScript, LaTeX, and so on.")
3603 (license (package-license perl))))
3604
3605 (define-public perl-test-base
3606 (package
3607 (name "perl-test-base")
3608 (version "0.88")
3609 (source
3610 (origin
3611 (method url-fetch)
3612 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
3613 "Test-Base-" version ".tar.gz"))
3614 (sha256
3615 (base32
3616 "0fch1cvivnszbnwhpfmwv1rin04j5xkj1n1ylfmlxg6bm72qqdjj"))))
3617 (build-system perl-build-system)
3618 (native-inputs
3619 `(("perl-algorithm-diff" ,perl-algorithm-diff)
3620 ("perl-text-diff" ,perl-text-diff)))
3621 (propagated-inputs
3622 `(("perl-spiffy" ,perl-spiffy)
3623 ("perl-test-deep" ,perl-test-deep)))
3624 (home-page "http://search.cpan.org/dist/Test-Base")
3625 (synopsis "Data-driven testing framework for Perl")
3626 (description "Test::Base gives a way to trivially write your own test
3627 framework base class. It concentrates on offering reusable data driven
3628 patterns, so that you can write tests with a minimum of code.")
3629 (license (package-license perl))))
3630
3631 (define-public perl-test-cleannamespaces
3632 (package
3633 (name "perl-test-cleannamespaces")
3634 (version "0.16")
3635 (source
3636 (origin
3637 (method url-fetch)
3638 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
3639 "Test-CleanNamespaces-" version ".tar.gz"))
3640 (sha256
3641 (base32
3642 "1ynrds515gcq954z34zm03rgcx0dskiaz7qj0k7k5gmrjj1kfycp"))))
3643 (build-system perl-build-system)
3644 (native-inputs
3645 `(("perl-test-requires" ,perl-test-requires)
3646 ("perl-test-deep" ,perl-test-deep)
3647 ("perl-test-warnings" ,perl-test-warnings)
3648 ("perl-test-tester" ,perl-test-tester)))
3649 (propagated-inputs
3650 `(("perl-namespace-clean" ,perl-namespace-clean)
3651 ("perl-package-stash" ,perl-package-stash)
3652 ("perl-sub-identify" ,perl-sub-identify)
3653 ("perl-sub-exporter" ,perl-sub-exporter)
3654 ("perl-file-find-rule" ,perl-file-find-rule)
3655 ("perl-file-find-rule-perl" ,perl-file-find-rule-perl)))
3656 (home-page "http://search.cpan.org/dist/Test-CleanNamespaces")
3657 (synopsis "Check for uncleaned imports")
3658 (description "This module lets you check your module's namespaces for
3659 imported functions you might have forgotten to remove with
3660 namespace::autoclean or namespace::clean and are therefore available to be
3661 called as methods, which usually isn't want you want.")
3662 (license (package-license perl))))
3663
3664 (define-public perl-test-deep
3665 (package
3666 (name "perl-test-deep")
3667 (version "0.114")
3668 (source (origin
3669 (method url-fetch)
3670 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3671 "Test-Deep-" version ".tar.gz"))
3672 (sha256
3673 (base32
3674 "09yr47vw7vj27sdik312x08938higcij8ybyq8k67mlccx8cpqf0"))))
3675 (build-system perl-build-system)
3676 (inputs `(("perl-test-tester" ,perl-test-tester)
3677 ("perl-test-nowarnings" ,perl-test-nowarnings)))
3678 (synopsis "Flexible deep comparison for the Test::Builder framework")
3679 (description
3680 "Test::Deep compares two structures by going through each level, ensuring
3681 that the values match, that arrays and hashes have the same elements and that
3682 references are blessed into the correct class. It also handles circular data
3683 structures without getting caught in an infinite loop.")
3684 (home-page (string-append "http://search.cpan.org/~rjbs/"
3685 "Test-Deep-" version))
3686 (license gpl1+))) ; or "Artistic License"
3687
3688 (define-public perl-test-differences
3689 (package
3690 (name "perl-test-differences")
3691 (version "0.63")
3692 (source
3693 (origin
3694 (method url-fetch)
3695 (uri (string-append "mirror://cpan/authors/id/D/DC/DCANTRELL/"
3696 "Test-Differences-" version ".tar.gz"))
3697 (sha256
3698 (base32
3699 "0rhs4q6qn64ji06ns7lwl6iiiw3mggvd9xk9nkiqvx1jihbplrbw"))))
3700 (build-system perl-build-system)
3701 (propagated-inputs
3702 `(("perl-text-diff" ,perl-text-diff)
3703 ("perl-capture-tiny" ,perl-capture-tiny)))
3704 (home-page "http://search.cpan.org/dist/Test-Differences")
3705 (synopsis "Test strings and data structures and show differences")
3706 (description "This module exports three test functions and four diff-style
3707 functions")
3708 ;; See LICENSE section of Test/Differences.pm, which reads "... GNU public
3709 ;; license, any version, ..."
3710 (license gpl3+)))
3711
3712 (define-public perl-test-directory
3713 (package
3714 (name "perl-test-directory")
3715 (version "0.041")
3716 (source
3717 (origin
3718 (method url-fetch)
3719 (uri (string-append "mirror://cpan/authors/id/S/SA/SANBEG/"
3720 "Test-Directory-" version ".tar.gz"))
3721 (sha256
3722 (base32
3723 "1ncql08cizhicbxwd753b4czns8nlcnlw0zfjcfrbdd41x4j6hqr"))))
3724 (build-system perl-build-system)
3725 (native-inputs `(("perl-test-exception" ,perl-test-exception)))
3726 (home-page "http://search.cpan.org/dist/Test-Directory")
3727 (synopsis "Perl extension for maintaining test directories")
3728 (description "Testing code can involve making sure that files are created
3729 and deleted as expected. Doing this manually can be error prone, as it's easy
3730 to forget a file, or miss that some unexpected file was added. This module
3731 simplifies maintaining test directories by tracking their status as they are
3732 modified or tested with this API, making it simple to test both individual
3733 files, as well as to verify that there are no missing or unknown files.")
3734 (license (package-license perl))))
3735
3736 (define-public perl-test-exception
3737 (package
3738 (name "perl-test-exception")
3739 (version "0.36")
3740 (source
3741 (origin
3742 (method url-fetch)
3743 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
3744 "Test-Exception-" version ".tar.gz"))
3745 (sha256
3746 (base32
3747 "1zpwimspbq11wjrli481qk17aabzxab15cnnryflx45nzn3za2xk"))))
3748 (build-system perl-build-system)
3749 (native-inputs
3750 `(("perl-module-build" ,perl-module-build)))
3751 (propagated-inputs
3752 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
3753 (home-page "http://search.cpan.org/dist/Test-Exception")
3754 (synopsis "Test exception based code")
3755 (description "This module provides a few convenience methods for testing
3756 exception based code. It is built with Test::Builder and plays happily with
3757 Test::More and friends.")
3758 (license (package-license perl))))
3759
3760 (define-public perl-test-fatal
3761 (package
3762 (name "perl-test-fatal")
3763 (version "0.014")
3764 (source
3765 (origin
3766 (method url-fetch)
3767 (uri (string-append "mirror://cpan/authors/id/R/RJ/RJBS/"
3768 "Test-Fatal-" version ".tar.gz"))
3769 (sha256
3770 (base32
3771 "1c6bs68mss4q7cyapkv2c0jn66i21050p0faxf3s3417gdffzp5w"))))
3772 (build-system perl-build-system)
3773 (propagated-inputs `(("perl-try-tiny" ,perl-try-tiny)))
3774 (home-page "http://search.cpan.org/dist/Test-Fatal")
3775 (synopsis "Simple helpers for testing code with exceptions")
3776 (description "Test::Fatal is an alternative to the popular
3777 Test::Exception. It does much less, but should allow greater flexibility in
3778 testing exception-throwing code with about the same amount of typing.")
3779 (license (package-license perl))))
3780
3781 (define-public perl-test-harness
3782 (package
3783 (name "perl-test-harness")
3784 (version "3.35")
3785 (source
3786 (origin
3787 (method url-fetch)
3788 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
3789 "Test-Harness-" version ".tar.gz"))
3790 (sha256
3791 (base32
3792 "06l29y1bpizb9vd9g49lgi0wzj1xy4rsk42ahdj3fpgqnvb9wp05"))))
3793 (build-system perl-build-system)
3794 (arguments
3795 `(#:phases (alist-cons-before
3796 'check 'patch-test
3797 (lambda* (#:key inputs #:allow-other-keys)
3798 ;; This test looks for "#!/usr/bin/perl" in some source.
3799 ;; Patch what the test looks for.
3800 (substitute* "t/source.t"
3801 (("#!/usr/bin/perl")
3802 (string-append "#!" (assoc-ref inputs "perl")
3803 "/bin/perl"))))
3804 %standard-phases)))
3805 (home-page "http://search.cpan.org/dist/Test-Harness")
3806 (synopsis "Run Perl standard test scripts with statistics")
3807 (description "Simple test harness which allows tests to be run and results
3808 automatically aggregated and output to STDOUT.")
3809 (license (package-license perl))))
3810
3811 (define-public perl-test-leaktrace
3812 (package
3813 (name "perl-test-leaktrace")
3814 (version "0.15")
3815 (source
3816 (origin
3817 (method url-fetch)
3818 (uri (string-append "mirror://cpan/authors/id/G/GF/GFUJI/"
3819 "Test-LeakTrace-" version ".tar.gz"))
3820 (sha256
3821 (base32
3822 "0pp6ip012c474ibw0mwd7jgig34gf98bb8xlqk4wdvw1d65vbf7g"))))
3823 (build-system perl-build-system)
3824 (home-page "http://search.cpan.org/dist/Test-LeakTrace")
3825 (synopsis "Traces memory leaks in Perl")
3826 (description "Test::LeakTrace provides several functions that trace memory
3827 leaks. This module scans arenas, the memory allocation system, so it can
3828 detect any leaked SVs in given blocks.")
3829 (license (package-license perl))))
3830
3831 (define-public perl-test-longstring
3832 (package
3833 (name "perl-test-longstring")
3834 (version "0.17")
3835 (source
3836 (origin
3837 (method url-fetch)
3838 (uri (string-append "mirror://cpan/authors/id/R/RG/RGARCIA/"
3839 "Test-LongString-" version ".tar.gz"))
3840 (sha256
3841 (base32
3842 "0kwp7rfr1i2amz4ckigkv13ah7jr30q6l5k4wk0vxl84myg39i5b"))))
3843 (build-system perl-build-system)
3844 (home-page "http://search.cpan.org/dist/Test-LongString")
3845 (synopsis "Tests strings for equality, with more helpful failures")
3846 (description "This module provides some drop-in replacements for the
3847 string comparison functions of Test::More, but which are more suitable when
3848 you test against long strings.")
3849 (license (package-license perl))))
3850
3851 (define-public perl-test-mocktime
3852 (package
3853 (name "perl-test-mocktime")
3854 (version "0.13")
3855 (source
3856 (origin
3857 (method url-fetch)
3858 (uri (string-append "mirror://cpan/authors/id/D/DD/DDICK/"
3859 "Test-MockTime-" version ".tar.gz"))
3860 (sha256
3861 (base32
3862 "0yrqmjg33akannwz2f99rfm7dvvxpzsdj23lsvlvfi4qslrlqfvw"))))
3863 (build-system perl-build-system)
3864 (home-page "http://search.cpan.org/dist/Test-MockTime")
3865 (synopsis "Replaces actual time with simulated time")
3866 (description "This module was created to enable test suites to test code
3867 at specific points in time. Specifically it overrides localtime, gmtime and
3868 time at compile time and then relies on the user supplying a mock time via
3869 set_relative_time, set_absolute_time or set_fixed_time to alter future calls
3870 to gmtime,time or localtime.")
3871 (license (package-license perl))))
3872
3873 (define-public perl-test-most
3874 (package
3875 (name "perl-test-most")
3876 (version "0.34")
3877 (source
3878 (origin
3879 (method url-fetch)
3880 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
3881 "Test-Most-" version ".tar.gz"))
3882 (sha256
3883 (base32
3884 "0i72aih3pakm8gh73wx1n4dwq8lbx6dvxhla46gsapszws6hr0n2"))))
3885 (build-system perl-build-system)
3886 (propagated-inputs
3887 `(("perl-test-differences" ,perl-test-differences)
3888 ("perl-test-warn" ,perl-test-warn)
3889 ("perl-exception-class" ,perl-exception-class)
3890 ("perl-test-deep" ,perl-test-deep)
3891 ("perl-test-exception" ,perl-test-exception)))
3892 (home-page "http://search.cpan.org/dist/Test-Most")
3893 (synopsis "Most commonly needed test functions and features")
3894 (description "This module provides the most commonly used testing
3895 functions, along with automatically turning on strict and warning and gives a
3896 bit more fine-grained control over test suites.")
3897 (license (package-license perl))))
3898
3899 (define-public perl-test-nowarnings
3900 (package
3901 (name "perl-test-nowarnings")
3902 (version "1.04")
3903 (source (origin
3904 (method url-fetch)
3905 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3906 "Test-NoWarnings-" version ".tar.gz"))
3907 (sha256
3908 (base32
3909 "0v385ch0hzz9naqwdw2az3zdqi15gka76pmiwlgsy6diiijmg2k3"))))
3910 (build-system perl-build-system)
3911 (inputs `(("perl-test-tester" ,perl-test-tester)))
3912 (synopsis "Ensure no warnings are produced while testing")
3913 (description
3914 "This modules causes any warnings during testing to be captured and
3915 stored. It automatically adds an extra test that will run when your script
3916 ends to check that there were no warnings. If there were any warings, the
3917 test will fail and output diagnostics of where, when and what the warning was,
3918 including a stack trace of what was going on when it occurred.")
3919 (home-page (string-append "http://search.cpan.org/~adamk/"
3920 "Test-NoWarnings-" version))
3921 (license lgpl2.1)))
3922
3923 (define-public perl-test-output
3924 (package
3925 (name "perl-test-output")
3926 (version "1.03")
3927 (source (origin
3928 (method url-fetch)
3929 (uri (string-append "mirror://cpan/authors/id/B/BD/BDFOY/"
3930 "Test-Output-" version ".tar.gz"))
3931 (sha256
3932 (base32
3933 "12991jnzj4cbw9whhprmqvnzd1ayii84g2mh8vxbjngwqrjsy41i"))))
3934 (build-system perl-build-system)
3935 (propagated-inputs
3936 `(("perl-capture-tiny" ,perl-capture-tiny)
3937 ("perl-test-tester" ,perl-test-tester)
3938 ("perl-sub-exporter" ,perl-sub-exporter)))
3939 (synopsis "Utilities to test STDOUT and STDERR messages")
3940 (description
3941 "Test::Output provides a simple interface for testing output sent to
3942 STDOUT or STDERR. A number of different utilities are included to try and be
3943 as flexible as possible to the tester.")
3944 (home-page (string-append "http://search.cpan.org/~bdfoy/"
3945 "Test-Output-" version))
3946 (license (package-license perl))))
3947
3948 (define-public perl-test-pod
3949 (package
3950 (name "perl-test-pod")
3951 (version "1.48")
3952 (source
3953 (origin
3954 (method url-fetch)
3955 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
3956 "Test-Pod-" version ".tar.gz"))
3957 (sha256
3958 (base32
3959 "1hmwwhabyng4jrnll926b4ab73r40w3pfchlrvs0yx6kh6kwwy14"))))
3960 (build-system perl-build-system)
3961 (home-page "http://search.cpan.org/dist/Test-Pod")
3962 (synopsis "Check for POD errors in files")
3963 (description "Check POD files for errors or warnings in a test file, using
3964 Pod::Simple to do the heavy lifting.")
3965 (license (package-license perl))))
3966
3967 (define-public perl-test-requires
3968 (package
3969 (name "perl-test-requires")
3970 (version "0.08")
3971 (source
3972 (origin
3973 (method url-fetch)
3974 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
3975 "Test-Requires-" version ".tar.gz"))
3976 (sha256
3977 (base32
3978 "08c29m0dn34384mmmpqqlbb899zpbkkc01c2lsp31mch1frv9cg7"))))
3979 (build-system perl-build-system)
3980 (home-page "http://search.cpan.org/dist/Test-Requires")
3981 (synopsis "Checks to see if the module can be loaded")
3982 (description "Test::Requires checks to see if the module can be loaded.
3983 If this fails, then rather than failing tests this skips all tests.")
3984 (license (package-license perl))))
3985
3986 (define-public perl-test-script
3987 (package
3988 (name "perl-test-script")
3989 (version "1.07")
3990 (source (origin
3991 (method url-fetch)
3992 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
3993 "Test-Script-" version ".tar.gz"))
3994 (sha256
3995 (base32
3996 "15pb4zzsnm33msc1syhig2bk05xqc0pckmfyahdwbd177bj5w7p2"))))
3997 (build-system perl-build-system)
3998 (propagated-inputs
3999 `(("probe-perl" ,perl-probe-perl)
4000 ("ipc-run3" ,perl-ipc-run3)))
4001 (synopsis "Basic cross-platform tests for scripts")
4002 (description
4003 "The intent of the Test::Script module is to provide a series of basic
4004 tests for 80% of the testing you will need to do for scripts in the script (or
4005 bin as is also commonly used) paths of your Perl distribution.")
4006 (home-page (string-append "http://search.cpan.org/~adamk/"
4007 "Test-Script-" version))
4008 (license (package-license perl))))
4009
4010 (define-public perl-test-sharedfork
4011 (package
4012 (name "perl-test-sharedfork")
4013 (version "0.29")
4014 (source
4015 (origin
4016 (method url-fetch)
4017 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
4018 "Test-SharedFork-" version ".tar.gz"))
4019 (sha256
4020 (base32
4021 "0vlak10q4gcf0ch0rfcb9lvddav6r8h15iipzbkbgf9mrj47gbv3"))))
4022 (build-system perl-build-system)
4023 (native-inputs
4024 `(("perl-test-requires" ,perl-test-requires)))
4025 (home-page "http://search.cpan.org/dist/Test-SharedFork")
4026 (synopsis "Fork test in Perl")
4027 (description "Test::SharedFork is a utility module for Test::Builder. It
4028 makes fork(2) safe to use in test cases.")
4029 (license (package-license perl))))
4030
4031 (define-public perl-test-simple
4032 (package
4033 (name "perl-test-simple")
4034 (version "1.001014")
4035 (source (origin
4036 (method url-fetch)
4037 (uri (string-append "mirror://cpan/authors/id/E/EX/EXODIST/"
4038 "Test-Simple-" version ".tar.gz"))
4039 (sha256
4040 (base32
4041 "0szi95shwwdvc4nqykzgx05g2m1001mjhvqqhjg5wypbi771992m"))))
4042 (build-system perl-build-system)
4043 (synopsis "Basic utilities for writing tests")
4044 (description
4045 "Test::Simple contains basic utilities for writing tests.")
4046 (home-page (string-append "http://search.cpan.org/~exodist/"
4047 "Test-Simple-" version))
4048 (license (package-license perl))))
4049
4050 (define-public perl-test-tester
4051 (package
4052 (name "perl-test-tester")
4053 (version "0.109")
4054 (source (origin
4055 (method url-fetch)
4056 (uri (string-append "mirror://cpan/authors/id/F/FD/FDALY/"
4057 "Test-Tester-" version ".tar.gz"))
4058 (sha256
4059 (base32
4060 "0m9n28z09kq455r5nydj1bnr85lvmbfpcbjdkjfbpmfb5xgciiyk"))))
4061 (build-system perl-build-system)
4062 (synopsis "Simplify running Test::Builder tests")
4063 (description
4064 "Test::Tester allows testing of test modules based on Test::Builder with
4065 a minimum of effort.")
4066 (home-page (string-append "http://search.cpan.org/~fdaly/"
4067 "Test-Tester-" version))
4068 ;; "Under the same license as Perl itself"
4069 (license (package-license perl))))
4070
4071 (define-public perl-test-trap
4072 (package
4073 (name "perl-test-trap")
4074 (version "v0.3.0")
4075 (source
4076 (origin
4077 (method url-fetch)
4078 (uri (string-append "mirror://cpan/authors/id/E/EB/EBHANSSEN/"
4079 "Test-Trap-" version ".tar.gz"))
4080 (sha256
4081 (base32
4082 "05b4zc4087imwphls4yksg4chzx9yavbri301gaxas9kv1yhx13w"))))
4083 (build-system perl-build-system)
4084 (propagated-inputs
4085 `(("perl-test-tester" ,perl-test-tester)
4086 ("perl-data-dump" ,perl-data-dump)))
4087 (home-page "http://search.cpan.org/dist/Test-Trap")
4088 (synopsis "Trap exit codes, exceptions, output, etc.")
4089 (description "This module is primarily (but not exclusively) for use in
4090 test scripts: A block eval configurable and extensible but by default trapping
4091 STDOUT, STDERR, warnings, exceptions, would-be exit codes, and return values
4092 from boxed blocks of test code.")
4093 (license (package-license perl))))
4094
4095 (define-public perl-test-utf8
4096 (package
4097 (name "perl-test-utf8")
4098 (version "1.01")
4099 (source
4100 (origin
4101 (method url-fetch)
4102 (uri (string-append "mirror://cpan/authors/id/M/MA/MARKF/"
4103 "Test-utf8-" version ".tar.gz"))
4104 (sha256
4105 (base32
4106 "0yhvf735v334qqvp9zg7i66qyk6r4cbk5s2psv93d3fdd4bindzg"))))
4107 (build-system perl-build-system)
4108 (home-page "http://search.cpan.org/dist/Test-utf8")
4109 (synopsis "UTF-8 testing in Perl")
4110 (description "This module is a collection of tests useful for dealing with
4111 UTF-8 strings in Perl. This module has two types of tests: The validity tests
4112 check if a string is valid and not corrupt, whereas the characteristics tests
4113 will check that string has a given set of characteristics.")
4114 (license (package-license perl))))
4115
4116 (define-public perl-test-warn
4117 (package
4118 (name "perl-test-warn")
4119 (version "0.30")
4120 (source
4121 (origin
4122 (method url-fetch)
4123 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
4124 "Test-Warn-" version ".tar.gz"))
4125 (sha256
4126 (base32
4127 "0haf2ii7br5z0psmkvlvmx2z2q9qz1c70gx0969r378qjidmb5w1"))))
4128 (build-system perl-build-system)
4129 (propagated-inputs
4130 `(("perl-sub-uplevel" ,perl-sub-uplevel)))
4131 (home-page "http://search.cpan.org/dist/Test-Warn")
4132 (synopsis "Perl extension to test methods for warnings")
4133 (description "This module provides a few convenience methods for testing
4134 warning based code.")
4135 (license (package-license perl))))
4136
4137 (define-public perl-test-warnings
4138 (package
4139 (name "perl-test-warnings")
4140 (version "0.020")
4141 (source
4142 (origin
4143 (method url-fetch)
4144 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4145 "Test-Warnings-" version ".tar.gz"))
4146 (sha256
4147 (base32
4148 "1x262kybrdnbiiw53m1axp4zyh4lsfb9mm2shmpm8lwf7sp30isi"))))
4149 (build-system perl-build-system)
4150 (home-page "http://search.cpan.org/dist/Test-Warnings")
4151 (synopsis "Test for warnings and the lack of them")
4152 (description "This module is intended to be used as a drop-in replacement
4153 for Test::NoWarnings. It also adds an extra test, but runs this test before
4154 done_testing calculates the test count, rather than after. It does this by
4155 hooking into done_testing as well as via an END block. You can declare a
4156 plan, or not, and things will still Just Work.")
4157 (license (package-license perl))))
4158
4159 (define-public perl-test-without-module
4160 (package
4161 (name "perl-test-without-module")
4162 (version "0.18")
4163 (source
4164 (origin
4165 (method url-fetch)
4166 (uri (string-append "mirror://cpan/authors/id/C/CO/CORION/"
4167 "Test-Without-Module-" version ".tar.gz"))
4168 (sha256
4169 (base32
4170 "0zwc2dk5srd02j4p049w77m89iw5nbff381rmhcbaz8x2w5kdhz2"))))
4171 (build-system perl-build-system)
4172 (home-page "http://search.cpan.org/dist/Test-Without-Module")
4173 (synopsis "Test fallback behaviour in absence of modules")
4174 (description "This module allows you to deliberately hide modules from a
4175 program even though they are installed. This is mostly useful for testing
4176 modules that have a fallback when a certain dependency module is not
4177 installed.")
4178 (license (package-license perl))))
4179
4180 (define-public perl-test-writevariants
4181 (package
4182 (name "perl-test-writevariants")
4183 (version "0.010")
4184 (source
4185 (origin
4186 (method url-fetch)
4187 (uri (string-append "mirror://cpan/authors/id/R/RE/REHSACK/"
4188 "Test-WriteVariants-" version ".tar.gz"))
4189 (sha256
4190 (base32
4191 "0kklp05fj98yiq8znyfx9lx1vmjay2ypfb868qdwv3kf93m5zjwr"))))
4192 (build-system perl-build-system)
4193 (native-inputs
4194 `(("perl-test-most" ,perl-test-most)
4195 ("perl-test-directory" ,perl-test-directory)))
4196 (propagated-inputs
4197 `(("perl-data-tumbler" ,perl-data-tumbler)
4198 ("perl-file-homedir" ,perl-file-homedir)))
4199 (home-page "http://search.cpan.org/dist/Test-WriteVariants")
4200 (synopsis "Dynamic generation of tests")
4201 (description "The Test::WriteVariants module provides for the dynamic
4202 generation of tests in nested combinations of contexts.")
4203 (license (package-license perl)))) ;See LICENSE
4204
4205 (define-public perl-test-yaml
4206 (package
4207 (name "perl-test-yaml")
4208 (version "1.05")
4209 (source
4210 (origin
4211 (method url-fetch)
4212 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
4213 "Test-YAML-" version ".tar.gz"))
4214 (sha256
4215 (base32
4216 "079nayc0fp2fwjv8s2yr069bdffln699j6z3lqr5dpx1v2qg82ck"))))
4217 (build-system perl-build-system)
4218 (propagated-inputs
4219 `(("perl-test-base" ,perl-test-base)))
4220 (home-page "http://search.cpan.org/dist/Test-YAML")
4221 (synopsis "Testing module for YAML implementations")
4222 (description "Test::YAML is a subclass of Test::Base with YAML specific
4223 support.")
4224 (license (package-license perl))))
4225
4226 (define-public perl-text-balanced
4227 (package
4228 (name "perl-text-balanced")
4229 (version "2.02")
4230 (source
4231 (origin
4232 (method url-fetch)
4233 (uri (string-append "mirror://cpan/authors/id/A/AD/ADAMK/"
4234 "Text-Balanced-" version ".tar.gz"))
4235 (sha256
4236 (base32
4237 "1d3mba2sjpp044h16pkf231cksa34ripaz6rmgxp0ygpl917az57"))))
4238 (build-system perl-build-system)
4239 (home-page "http://search.cpan.org/dist/Text-Balanced")
4240 (synopsis "Extract delimited text sequences from strings")
4241 (description "The Text::Balanced module can be used to extract delimited
4242 text sequences from strings.")
4243 (license (package-license perl))))
4244
4245 (define-public perl-text-csv
4246 (package
4247 (name "perl-text-csv")
4248 (version "1.33")
4249 (source
4250 (origin
4251 (method url-fetch)
4252 (uri (string-append "mirror://cpan/authors/id/M/MA/MAKAMAKA/"
4253 "Text-CSV-" version ".tar.gz"))
4254 (sha256
4255 (base32
4256 "05a1nayxv04n0hx7y3m8327ijm34k9nhngrbxl18zmgzpawqynww"))))
4257 (build-system perl-build-system)
4258 (home-page "http://search.cpan.org/dist/Text-CSV")
4259 (synopsis "Manipulate comma-separated values")
4260 (description "Text::CSV provides facilities for the composition and
4261 decomposition of comma-separated values. An instance of the Text::CSV class
4262 can combine fields into a CSV string and parse a CSV string into fields.")
4263 (license (package-license perl))))
4264
4265 (define-public perl-text-diff
4266 (package
4267 (name "perl-text-diff")
4268 (version "1.41")
4269 (source
4270 (origin
4271 (method url-fetch)
4272 (uri (string-append "mirror://cpan/authors/id/O/OV/OVID/"
4273 "Text-Diff-" version ".tar.gz"))
4274 (sha256
4275 (base32
4276 "1ynjsa4sr1yvyh65sdfvahaafglibz70j8b6rj01cg1iisj50zx6"))))
4277 (build-system perl-build-system)
4278 (propagated-inputs
4279 `(("perl-algorithm-diff" ,perl-algorithm-diff)))
4280 (home-page "http://search.cpan.org/dist/Text-Diff")
4281 (synopsis "Perform diffs on files and record sets")
4282 (description "Text::Diff provides a basic set of services akin to the GNU
4283 diff utility. It is not anywhere near as feature complete as GNU diff, but it
4284 is better integrated with Perl and available on all platforms. It is often
4285 faster than shelling out to a system's diff executable for small files, and
4286 generally slower on larger files.")
4287 (license (package-license perl))))
4288
4289 (define-public perl-text-glob
4290 (package
4291 (name "perl-text-glob")
4292 (version "0.09")
4293 (source
4294 (origin
4295 (method url-fetch)
4296 (uri (string-append "mirror://cpan/authors/id/R/RC/RCLAMP/"
4297 "Text-Glob-" version ".tar.gz"))
4298 (sha256
4299 (base32
4300 "0lr76wrsj8wcxrq4wi8z1640w4dmdbkznp06q744rg3g0bd238d5"))))
4301 (build-system perl-build-system)
4302 (home-page "http://search.cpan.org/dist/Text-Glob")
4303 (synopsis "Match globbing patterns against text")
4304 (description "Text::Glob implements glob(3) style matching that can be
4305 used to match against text, rather than fetching names from a filesystem. If
4306 you want to do full file globbing use the File::Glob module instead.")
4307 (license (package-license perl))))
4308
4309 (define-public perl-text-simpletable
4310 (package
4311 (name "perl-text-simpletable")
4312 (version "2.03")
4313 (source
4314 (origin
4315 (method url-fetch)
4316 (uri (string-append "mirror://cpan/authors/id/M/MR/MRAMBERG/"
4317 "Text-SimpleTable-" version ".tar.gz"))
4318 (sha256
4319 (base32
4320 "15hpry9jwrf1vbjyk21s65rllxrdvp2fdzzv9gsvczggby2yyzfs"))))
4321 (build-system perl-build-system)
4322 (home-page "http://search.cpan.org/dist/Text-SimpleTable")
4323 (synopsis "Simple ASCII tables")
4324 (description "Text::SimpleTable draws simple ASCII tables.")
4325 (license artistic2.0)))
4326
4327 (define-public perl-text-unidecode
4328 (package
4329 (name "perl-text-unidecode")
4330 (version "1.23")
4331 (source
4332 (origin
4333 (method url-fetch)
4334 (uri (string-append "mirror://cpan/authors/id/S/SB/SBURKE/"
4335 "Text-Unidecode-" version ".tar.gz"))
4336 (sha256
4337 (base32
4338 "1mnnq57amh0bs6z2ggkmgnn4hz8mqc9lfhr66xv2bsnlvhg7c7fb"))))
4339 (build-system perl-build-system)
4340 (home-page "http://search.cpan.org/dist/Text-Unidecode")
4341 (synopsis "Provide plain ASCII transliterations of Unicode text")
4342 (description "Text::Unidecode provides a function, unidecode(...) that
4343 takes Unicode data and tries to represent it in US-ASCII characters (i.e., the
4344 universally displayable characters between 0x00 and 0x7F). The representation
4345 is almost always an attempt at transliteration-- i.e., conveying, in Roman
4346 letters, the pronunciation expressed by the text in some other writing
4347 system.")
4348 (license (package-license perl))))
4349
4350 (define-public perl-tie-ixhash
4351 (package
4352 (name "perl-tie-ixhash")
4353 (version "1.23")
4354 (source
4355 (origin
4356 (method url-fetch)
4357 (uri (string-append "mirror://cpan/authors/id/C/CH/CHORNY/"
4358 "Tie-IxHash-" version ".tar.gz"))
4359 (sha256
4360 (base32
4361 "0mmg9iyh42syal3z1p2pn9airq65yrkfs66cnqs9nz76jy60pfzs"))))
4362 (build-system perl-build-system)
4363 (home-page "http://search.cpan.org/dist/Tie-IxHash")
4364 (synopsis "Ordered associative arrays for Perl")
4365 (description "This Perl module implements Perl hashes that preserve the
4366 order in which the hash elements were added. The order is not affected when
4367 values corresponding to existing keys in the IxHash are changed. The elements
4368 can also be set to any arbitrary supplied order. The familiar perl array
4369 operations can also be performed on the IxHash.")
4370 (license (package-license perl))))
4371
4372 (define-public perl-tie-toobject
4373 (package
4374 (name "perl-tie-toobject")
4375 (version "0.03")
4376 (source
4377 (origin
4378 (method url-fetch)
4379 (uri (string-append "mirror://cpan/authors/id/N/NU/NUFFIN/"
4380 "Tie-ToObject-" version ".tar.gz"))
4381 (sha256
4382 (base32
4383 "1x1smn1kw383xc5h9wajxk9dlx92bgrbf7gk4abga57y6120s6m3"))))
4384 (build-system perl-build-system)
4385 (propagated-inputs
4386 `(("perl-test-simple" ,perl-test-simple)))
4387 (home-page "http://search.cpan.org/dist/Tie-ToObject")
4388 (synopsis "Tie to an existing Perl object")
4389 (description "This class provides a tie constructor that returns the
4390 object it was given as it's first argument. This way side effects of calling
4391 $object->TIEHASH are avoided.")
4392 (license (package-license perl))))
4393
4394 (define-public perl-time-local
4395 (package
4396 (name "perl-time-local")
4397 (version "1.2300")
4398 (source
4399 (origin
4400 (method url-fetch)
4401 (uri (string-append "mirror://cpan/authors/id/D/DR/DROLSKY/"
4402 "Time-Local-" version ".tar.gz"))
4403 (sha256
4404 (base32
4405 "0jgvd6v93hlrcmy56yxbm4yrhzi8yvrq8c3xffpgh28af01wmb5j"))))
4406 (build-system perl-build-system)
4407 (home-page "http://search.cpan.org/dist/Time-Local")
4408 (synopsis "Efficiently compute time from local and GMT time")
4409 (description "This module provides functions that are the inverse of
4410 built-in perl functions localtime() and gmtime(). They accept a date as a
4411 six-element array, and return the corresponding time(2) value in seconds since
4412 the system epoch")
4413 (license (package-license perl))))
4414
4415 (define-public perl-timedate
4416 (package
4417 (name "perl-timedate")
4418 (version "2.30")
4419 (source
4420 (origin
4421 (method url-fetch)
4422 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
4423 "TimeDate-" version ".tar.gz"))
4424 (sha256
4425 (base32
4426 "11lf54akr9nbivqkjrhvkmfdgkbhw85sq0q4mak56n6bf542bgbm"))))
4427 (build-system perl-build-system)
4428 (home-page "http://search.cpan.org/dist/TimeDate")
4429 (synopsis "Date parsing/formating subroutines")
4430 (description "This module provides routines for parsing date string into
4431 time values and formating dates into ASCII strings.")
4432 (license (package-license perl))))
4433
4434 (define-public perl-time-mock
4435 (package
4436 (name "perl-time-mock")
4437 (version "v0.0.2")
4438 (source
4439 (origin
4440 (method url-fetch)
4441 (uri (string-append "mirror://cpan/authors/id/E/EW/EWILHELM/"
4442 "Time-Mock-" version ".tar.gz"))
4443 (sha256
4444 (base32
4445 "0bwqyg8z98m8cjw1qcm4wg502n225k33j2fp8ywxkgfjdd1zgllv"))))
4446 (build-system perl-build-system)
4447 (propagated-inputs
4448 `(("perl-timedate" ,perl-timedate))) ;For Date::Parse
4449 (home-page "http://search.cpan.org/dist/Time-Mock")
4450 (synopsis "Shift and scale time")
4451 (description "This module allows you to speed up your sleep(), alarm(),
4452 and time() calls.")
4453 (license (package-license perl))))
4454
4455 (define-public perl-tree-simple
4456 (package
4457 (name "perl-tree-simple")
4458 (version "1.25")
4459 (source
4460 (origin
4461 (method url-fetch)
4462 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
4463 "Tree-Simple-" version ".tgz"))
4464 (sha256
4465 (base32
4466 "1xj1n70v4qbx7m9k01bj9aixk77yssliavgvfds3xj755hcan0nr"))))
4467 (build-system perl-build-system)
4468 (native-inputs
4469 `(("perl-module-build" ,perl-module-build)
4470 ("perl-test-exception" ,perl-test-exception)))
4471 (propagated-inputs
4472 `(("perl-scalar-list-utils" ,perl-scalar-list-utils)))
4473 (home-page "http://search.cpan.org/dist/Tree-Simple")
4474 (synopsis "Simple tree object")
4475 (description "This module in a fully object-oriented implementation of a
4476 simple n-ary tree.")
4477 (license (package-license perl))))
4478
4479 (define-public perl-tree-simple-visitorfactory
4480 (package
4481 (name "perl-tree-simple-visitorfactory")
4482 (version "0.12")
4483 (source
4484 (origin
4485 (method url-fetch)
4486 (uri (string-append "mirror://cpan/authors/id/R/RS/RSAVAGE/"
4487 "Tree-Simple-VisitorFactory-" version ".tgz"))
4488 (sha256
4489 (base32
4490 "1g27xl48q1vr7aikhxg4vvcsj1si8allxz59vmnks61wsw4by7vg"))))
4491 (build-system perl-build-system)
4492 (native-inputs
4493 `(("perl-test-exception" ,perl-test-exception)))
4494 (propagated-inputs
4495 `(("perl-tree-simple" ,perl-tree-simple)
4496 ("perl-base" ,perl-base)))
4497 (home-page "http://search.cpan.org/dist/Tree-Simple-VisitorFactory")
4498 (synopsis "Factory object for dispensing Visitor objects")
4499 (description "This module is a factory for dispensing
4500 Tree::Simple::Visitor::* objects.")
4501 (license (package-license perl))))
4502
4503 (define-public perl-try-tiny
4504 (package
4505 (name "perl-try-tiny")
4506 (version "0.22")
4507 (source
4508 (origin
4509 (method url-fetch)
4510 (uri (string-append "mirror://cpan/authors/id/D/DO/DOY/"
4511 "Try-Tiny-" version ".tar.gz"))
4512 (sha256
4513 (base32
4514 "068vdbpacfawc3lkfs0b82xxl27h3l0gj14iada3vlwk8rps9yv0"))))
4515 (build-system perl-build-system)
4516 (home-page "http://search.cpan.org/dist/Try-Tiny")
4517 (synopsis "Minimal try/catch with proper preservation of $@")
4518 (description "This module provides bare bones try/catch/finally statements
4519 that are designed to minimize common mistakes with eval blocks, and nothing
4520 else.")
4521 (license x11)))
4522
4523 (define-public perl-types-serialiser
4524 (package
4525 (name "perl-types-serialiser")
4526 (version "1.0")
4527 (source
4528 (origin
4529 (method url-fetch)
4530 (uri (string-append "mirror://cpan/authors/id/M/ML/MLEHMANN/"
4531 "Types-Serialiser-" version ".tar.gz"))
4532 (sha256
4533 (base32
4534 "03bk0hm5ys8k7265dkap825ybn2zmzb1hl0kf1jdm8yq95w39lvs"))))
4535 (build-system perl-build-system)
4536 (propagated-inputs
4537 `(("perl-common-sense" ,perl-common-sense)))
4538 (home-page "http://search.cpan.org/dist/Types-Serialiser")
4539 (synopsis "Data types for common serialisation formats")
4540 (description "This module provides some extra datatypes that are used by
4541 common serialisation formats such as JSON or CBOR.")
4542 (license (package-license perl))))
4543
4544 (define-public perl-variable-magic
4545 (package
4546 (name "perl-variable-magic")
4547 (version "0.55")
4548 (source
4549 (origin
4550 (method url-fetch)
4551 (uri (string-append "mirror://cpan/authors/id/V/VP/VPIT/"
4552 "Variable-Magic-" version ".tar.gz"))
4553 (sha256
4554 (base32
4555 "0xzh2vy45ph80bp09j5fcjy8ydgn8yaxsa0fj831q6p1spvyniwg"))))
4556 (build-system perl-build-system)
4557 (home-page "http://search.cpan.org/dist/Variable-Magic")
4558 (synopsis "Associate user-defined magic to variables from Perl")
4559 (description "Magic is Perl's way of enhancing variables. This mechanism
4560 lets the user add extra data to any variable and hook syntactical
4561 operations (such as access, assignment or destruction) that can be applied to
4562 it. With this module, you can add your own magic to any variable without
4563 having to write a single line of XS.")
4564 (license (package-license perl))))
4565
4566 (define-public perl-yaml
4567 (package
4568 (name "perl-yaml")
4569 (version "1.14")
4570 (source
4571 (origin
4572 (method url-fetch)
4573 (uri (string-append "mirror://cpan/authors/id/I/IN/INGY/"
4574 "YAML-" version ".tar.gz"))
4575 (sha256
4576 (base32
4577 "0sswbkyisgny7ksw34n7zdaxrhsbbn7dgjb9gjybpzhcnml476kc"))))
4578 (build-system perl-build-system)
4579 (native-inputs
4580 `(("perl-test-yaml" ,perl-test-yaml)))
4581 (home-page "http://search.cpan.org/dist/YAML")
4582 (synopsis "YAML for Perl")
4583 (description "The YAML.pm module implements a YAML Loader and Dumper based
4584 on the YAML 1.0 specification.")
4585 (license (package-license perl))))
4586
4587 (define-public perl-yaml-tiny
4588 (package
4589 (name "perl-yaml-tiny")
4590 (version "1.66")
4591 (source
4592 (origin
4593 (method url-fetch)
4594 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
4595 "YAML-Tiny-" version ".tar.gz"))
4596 (sha256
4597 (base32
4598 "0c17l8pvpraznpb31ncmr4wxlyww8sg8dhvp3s3q02yqll3cnygv"))))
4599 (build-system perl-build-system)
4600 (native-inputs
4601 `(("perl-json-maybexs" ,perl-json-maybexs)
4602 ("perl-module-build-tiny" ,perl-module-build-tiny)))
4603 (arguments
4604 `(#:tests? #f)) ;requires Test::More >= 0.99
4605 (home-page "http://search.cpan.org/dist/YAML-Tiny")
4606 (synopsis "Read/Write YAML files")
4607 (description "YAML::Tiny is a perl class for reading and writing
4608 YAML-style files, written with as little code as possible, reducing load time
4609 and memory overhead.")
4610 (license (package-license perl))))
4611
4612 \f
4613 ;;; Some packaged modules need versions of core modules that are newer than
4614 ;;; those in our perl 5.16.1.
4615
4616 (define-public perl-cpan-meta
4617 (package
4618 (name "perl-cpan-meta")
4619 (version "2.143240")
4620 (source
4621 (origin
4622 (method url-fetch)
4623 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4624 "CPAN-Meta-" version ".tar.gz"))
4625 (sha256
4626 (base32
4627 "1d80bxphpp5dq7fx5ipxszn7j8q9d85w6fnapdrbym21k1vsmlf6"))))
4628 (build-system perl-build-system)
4629 (propagated-inputs
4630 `(("perl-cpan-meta-requirements" ,perl-cpan-meta-requirements)
4631 ("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)
4632 ("perl-parse-cpan-meta" ,perl-parse-cpan-meta)))
4633 (home-page "http://search.cpan.org/dist/CPAN-Meta")
4634 (synopsis "Distribution metadata for a CPAN dist")
4635 (description "Software distributions released to the CPAN include a
4636 META.json or, for older distributions, META.yml, which describes the
4637 distribution, its contents, and the requirements for building and installing
4638 the distribution. The data structure stored in the META.json file is
4639 described in CPAN::Meta::Spec. CPAN::Meta provides a simple class to
4640 represent this distribution metadata (or distmeta), along with some helpful
4641 methods for interrogating that data.")
4642 (license (package-license perl))))
4643
4644 (define-public perl-cpan-meta-requirements
4645 (package
4646 (name "perl-cpan-meta-requirements")
4647 (version "2.131")
4648 (source
4649 (origin
4650 (method url-fetch)
4651 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4652 "CPAN-Meta-Requirements-" version ".tar.gz"))
4653 (sha256
4654 (base32
4655 "12p5s7w3cwcrbpcrxzanvpr0syswhwlqzbaki6m044c45jix2fss"))))
4656 (build-system perl-build-system)
4657 (home-page "http://search.cpan.org/dist/CPAN-Meta-Requirements")
4658 (synopsis "Set of version requirements for a CPAN dist")
4659 (description "A CPAN::Meta::Requirements object models a set of version
4660 constraints like those specified in the META.yml or META.json files in CPAN
4661 distributions, and as defined by CPAN::Meta::Spec. It can be built up by
4662 adding more and more constraints, and will reduce them to the simplest
4663 representation.")
4664 (license (package-license perl))))
4665
4666 (define-public perl-cpan-meta-yaml
4667 (package
4668 (name "perl-cpan-meta-yaml")
4669 (version "0.012")
4670 (source
4671 (origin
4672 (method url-fetch)
4673 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4674 "CPAN-Meta-YAML-" version ".tar.gz"))
4675 (sha256
4676 (base32
4677 "0a0d62w8d81kkas4j1h48znk0f0vrpibl31gvz9r8hm77dbqqwkw"))))
4678 (build-system perl-build-system)
4679 (arguments
4680 `(#:tests? #f)) ;Tests require Test::More >= 0.99
4681 (home-page "http://search.cpan.org/dist/CPAN-Meta-YAML")
4682 (synopsis "Read and write a subset of YAML for CPAN Meta files")
4683 (description "This module implements a subset of the YAML specification
4684 for use in reading and writing CPAN metadata files like META.yml and
4685 MYMETA.yml.")
4686 (license (package-license perl))))
4687
4688 (define-public perl-module-build
4689 (package
4690 (name "perl-module-build")
4691 (version "0.4211")
4692 (source
4693 (origin
4694 (method url-fetch)
4695 (uri (string-append "mirror://cpan/authors/id/L/LE/LEONT/"
4696 "Module-Build-" version ".tar.gz"))
4697 (sha256
4698 (base32
4699 "1c5hfhajr963w4mdjivsc7yz4vf4pz1rrfch5a93fbac1x2mr58h"))))
4700 (build-system perl-build-system)
4701 (propagated-inputs
4702 `(("perl-cpan-meta" ,perl-cpan-meta)))
4703 (home-page "http://search.cpan.org/dist/Module-Build")
4704 (synopsis "Build and install Perl modules")
4705 (description "\"Module::Build\" is a system for building, testing, and
4706 installing Perl modules. It is meant to be an alternative to
4707 \"ExtUtils::MakeMaker\". Developers may alter the behavior of the module
4708 through subclassing in a much more straightforward way than with
4709 \"MakeMaker\". It also does not require a \"make\" on your system - most of
4710 the \"Module::Build\" code is pure-perl and written in a cross-platform way.")
4711 (license (package-license perl))))
4712
4713 (define-public perl-parse-cpan-meta
4714 (package
4715 (name "perl-parse-cpan-meta")
4716 (version "1.4414")
4717 (source
4718 (origin
4719 (method url-fetch)
4720 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
4721 "Parse-CPAN-Meta-" version ".tar.gz"))
4722 (sha256
4723 (base32
4724 "06ya2rg599qanqb1fxiyrd489mvmdgzbw4ph23hwjwpv9lahhxnd"))))
4725 (build-system perl-build-system)
4726 (propagated-inputs
4727 `(("perl-cpan-meta-yaml" ,perl-cpan-meta-yaml)))
4728 (home-page "http://search.cpan.org/dist/Parse-CPAN-Meta")
4729 (synopsis "Parse META.yml and META.json CPAN metadata files")
4730 (description "Parse::CPAN::Meta is a parser for META.json and META.yml
4731 files, using JSON::PP and/or CPAN::Meta::YAML.")
4732 (license (package-license perl))))
4733
4734 (define-public perl-scalar-list-utils
4735 (package
4736 (name "perl-scalar-list-utils")
4737 (version "1.41")
4738 (source
4739 (origin
4740 (method url-fetch)
4741 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
4742 "Scalar-List-Utils-" version ".tar.gz"))
4743 (sha256
4744 (base32
4745 "04l1q4hps9n8b1hk9kpgpc1cryim7pl9sfdyb7fz5nq4gmz307j7"))))
4746 (build-system perl-build-system)
4747 (home-page "http://search.cpan.org/dist/Scalar-List-Utils")
4748 (synopsis "Common Scalar and List utility subroutines")
4749 (description "This package contains a selection of subroutines that people
4750 have expressed would be nice to have in the perl core, but the usage would not
4751 really be high enough to warrant the use of a keyword, and the size so small
4752 such that being individual extensions would be wasteful.")
4753 (license (package-license perl))))
4754
4755 ;;; END: Core module overrides