Merge branch 'master' into core-updates
[jackhill/guix/guix.git] / gnu / packages / web.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2013, 2015 Andreas Enge <andreas@enge.fr>
3 ;;; Copyright © 2013 Aljosha Papsch <misc@rpapsch.de>
4 ;;; Copyright © 2014, 2015 Ludovic Courtès <ludo@gnu.org>
5 ;;; Copyright © 2014, 2015 Mark H Weaver <mhw@netris.org>
6 ;;; Copyright © 2015 Ricardo Wurmus <rekado@elephly.net>
7 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
8 ;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
9 ;;;
10 ;;; This file is part of GNU Guix.
11 ;;;
12 ;;; GNU Guix is free software; you can redistribute it and/or modify it
13 ;;; under the terms of the GNU General Public License as published by
14 ;;; the Free Software Foundation; either version 3 of the License, or (at
15 ;;; your option) any later version.
16 ;;;
17 ;;; GNU Guix is distributed in the hope that it will be useful, but
18 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;;; GNU General Public License for more details.
21 ;;;
22 ;;; You should have received a copy of the GNU General Public License
23 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
24
25 (define-module (gnu packages web)
26 #:use-module (ice-9 match)
27 #:use-module ((guix licenses) #:prefix l:)
28 #:use-module (guix packages)
29 #:use-module (guix download)
30 #:use-module (guix git-download)
31 #:use-module (guix cvs-download)
32 #:use-module (guix build-system gnu)
33 #:use-module (guix build-system perl)
34 #:use-module (guix build-system cmake)
35 #:use-module (gnu packages)
36 #:use-module (gnu packages apr)
37 #:use-module (gnu packages asciidoc)
38 #:use-module (gnu packages docbook)
39 #:use-module (gnu packages autotools)
40 #:use-module (gnu packages compression)
41 #:use-module (gnu packages cyrus-sasl)
42 #:use-module (gnu packages databases)
43 #:use-module (gnu packages mit-krb5)
44 #:use-module (gnu packages gd)
45 #:use-module (gnu packages gettext)
46 #:use-module (gnu packages icu4c)
47 #:use-module (gnu packages lua)
48 #:use-module (gnu packages base)
49 #:use-module (gnu packages python)
50 #:use-module (gnu packages pcre)
51 #:use-module (gnu packages pkg-config)
52 #:use-module (gnu packages xml)
53 #:use-module (gnu packages curl)
54 #:use-module (gnu packages perl)
55 #:use-module (gnu packages texinfo)
56 #:use-module (gnu packages tls))
57
58 (define-public httpd
59 (package
60 (name "httpd")
61 (version "2.4.12")
62 (source (origin
63 (method url-fetch)
64 (uri (string-append "mirror://apache/httpd/httpd-"
65 version ".tar.bz2"))
66 (sha256
67 (base32
68 "1r7a63ka41vlswrqbb21vall6sc7svwgd497kb6dh8a6zvnkjvdd"))))
69 (build-system gnu-build-system)
70 (inputs `(("apr" ,apr)
71 ("apr-util" ,apr-util)
72 ("openssl" ,openssl)
73 ("pcre" ,pcre)
74 ("perl" ,perl))) ; needed to run bin/apxs
75 (arguments
76 `(#:test-target "test"
77 #:configure-flags (list "--enable-rewrite"
78 "--enable-userdir"
79 "--enable-vhost-alias"
80 "--enable-ssl"
81 "--enable-mime-magic"
82 (string-append "--sysconfdir="
83 (assoc-ref %outputs "out")
84 "/etc/httpd"))))
85 (synopsis "Featureful HTTP server")
86 (description
87 "The Apache HTTP Server Project is a collaborative software development
88 effort aimed at creating a robust, commercial-grade, featureful, and
89 freely-available source code implementation of an HTTP (Web) server. The
90 project is jointly managed by a group of volunteers located around the world,
91 using the Internet and the Web to communicate, plan, and develop the server
92 and its related documentation.")
93 (license l:asl2.0)
94 (home-page "https://httpd.apache.org/")))
95
96 (define-public nginx
97 (package
98 (name "nginx")
99 (version "1.8.0")
100 (source (origin
101 (method url-fetch)
102 (uri (string-append "http://nginx.org/download/nginx-"
103 version ".tar.gz"))
104 (sha256
105 (base32
106 "1mgkkmmwkhmpn68sdvbd73ssv6lpqhh864fsyvc1ij4hk4is3k13"))))
107 (build-system gnu-build-system)
108 (inputs `(("pcre" ,pcre)
109 ("openssl" ,openssl)
110 ("zlib" ,zlib)))
111 (arguments
112 `(#:tests? #f ; no test target
113 #:phases
114 (modify-phases %standard-phases
115 (add-before 'configure 'patch-/bin/sh
116 (lambda _
117 (substitute* "auto/feature"
118 (("/bin/sh") (which "bash")))))
119 (replace 'configure
120 (lambda* (#:key outputs #:allow-other-keys)
121 (let ((flags
122 (list (string-append "--prefix=" (assoc-ref outputs "out"))
123 "--with-http_ssl_module"
124 "--with-pcre-jit"
125 "--with-ipv6"
126 "--with-debug"
127 ;; Even when not cross-building, we pass the
128 ;; --crossbuild option to avoid customizing for the
129 ;; kernel version on the build machine.
130 ,(let ((system "Linux") ; uname -s
131 (release "2.6.32") ; uname -r
132 ;; uname -m
133 (machine (match (or (%current-target-system)
134 (%current-system))
135 ("x86_64-linux" "x86_64")
136 ("i686-linux" "i686")
137 ("mips64el-linux" "mips64")
138 ;; Prevent errors when querying
139 ;; this package on unsupported
140 ;; platforms, e.g. when running
141 ;; "guix package --search="
142 (_ "UNSUPPORTED"))))
143 (string-append "--crossbuild="
144 system ":" release ":" machine)))))
145 (setenv "CC" "gcc")
146 (format #t "environment variable `CC' set to `gcc'~%")
147 (format #t "configure flags: ~s~%" flags)
148 (zero? (apply system* "./configure" flags)))))
149 (add-after 'install 'fix-root-dirs
150 (lambda* (#:key outputs #:allow-other-keys)
151 ;; 'make install' puts things in strange places, so we need to
152 ;; clean it up ourselves.
153 (let* ((out (assoc-ref outputs "out"))
154 (share (string-append out "/share/nginx")))
155 ;; This directory is empty, so get rid of it.
156 (rmdir (string-append out "/logs"))
157 ;; Example configuration and HTML files belong in
158 ;; /share.
159 (mkdir-p share)
160 (rename-file (string-append out "/conf")
161 (string-append share "/conf"))
162 (rename-file (string-append out "/html")
163 (string-append share "/html"))))))))
164 (home-page "http://nginx.org")
165 (synopsis "HTTP and reverse proxy server")
166 (description
167 "Nginx (\"engine X\") is a high-performance web and reverse proxy server
168 created by Igor Sysoev. It can be used both as a standalone web server
169 and as a proxy to reduce the load on back-end HTTP or mail servers.")
170 ;; Almost all of nginx is distributed under the bsd-2 license.
171 ;; The exceptions are:
172 ;; * The 'nginx-http-push' module is covered by the expat license.
173 ;; * The 'nginx-development-kit' module is mostly covered by bsd-3,
174 ;; except for two source files which are bsd-4 licensed.
175 (license (list l:bsd-2 l:expat l:bsd-3 l:bsd-4))))
176
177 (define-public starman
178 (package
179 (name "starman")
180 (version "0.4011")
181 (source
182 (origin
183 (method url-fetch)
184 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
185 "Starman-" version ".tar.gz"))
186 (sha256
187 (base32
188 "1337zhi6v1sg4gd9rs3giybc7g1ysw8ak2da0vy098k4dacxyb57"))))
189 (build-system perl-build-system)
190 (native-inputs
191 `(("perl-libwww" ,perl-libwww)
192 ("perl-module-build-tiny" ,perl-module-build-tiny)
193 ("perl-test-requires" ,perl-test-requires)))
194 (propagated-inputs
195 `(("perl-data-dump" ,perl-data-dump)
196 ("perl-http-date" ,perl-http-date)
197 ("perl-http-message" ,perl-http-message)
198 ("perl-http-parser-xs" ,perl-http-parser-xs)
199 ("perl-net-server" ,perl-net-server)
200 ("perl-plack" ,perl-plack)
201 ("perl-test-tcp" ,perl-test-tcp)))
202 (home-page "http://search.cpan.org/dist/Starman")
203 (synopsis "PSGI/Plack web server")
204 (description "Starman is a PSGI perl web server that has unique features
205 such as high performance, preforking, signal support, superdaemon awareness,
206 and UNIX socket support.")
207 (license (package-license perl))))
208
209 (define-public jansson
210 (package
211 (name "jansson")
212 (version "2.7")
213 (source (origin
214 (method url-fetch)
215 (uri
216 (string-append "http://www.digip.org/jansson/releases/jansson-"
217 version ".tar.gz"))
218 (sha256
219 (base32
220 "1mvq9p85khsl818i4vbszyfab0fd45mdrwrxjkzw05mk1xcyc1br"))))
221 (build-system gnu-build-system)
222 (home-page "http://www.digip.org/jansson/")
223 (synopsis "JSON C library")
224 (description
225 "Jansson is a C library for encoding, decoding and manipulating JSON
226 data.")
227 (license l:expat)))
228
229 (define-public json-c
230 (package
231 (name "json-c")
232 (version "0.12")
233 (source (origin
234 (method url-fetch)
235 (uri (string-append "https://s3.amazonaws.com/json-c_releases/releases/json-c-"
236 version ".tar.gz"))
237 (sha256
238 (base32
239 "0gwzic3ifg2d0w32ya3agpxh8i083cgvf7kmc51cnbgqnfr02300"))
240 (modules '((guix build utils)))
241 (snippet
242 '(begin
243 ;; Somehow 'config.h.in' is older than
244 ;; 'aclocal.m4', which would trigger a rule to
245 ;; run 'autoheader'.
246 (set-file-time "config.h.in"
247 (stat "aclocal.m4"))
248
249 ;; Don't try to build with -Werror.
250 (substitute* (find-files "." "Makefile\\.in")
251 (("-Werror") ""))))))
252 (build-system gnu-build-system)
253 (arguments '(#:parallel-build? #f
254 #:parallel-tests? #f))
255 (home-page "https://github.com/json-c/json-c/wiki")
256 (synopsis "JSON implementation in C")
257 (description
258 "JSON-C implements a reference counting object model that allows you to
259 easily construct JSON objects in C, output them as JSON formatted strings and
260 parse JSON formatted strings back into the C representation of JSON objects.")
261 (license l:x11)))
262
263 (define-public rapidjson
264 (package
265 (name "rapidjson")
266 (version "1.0.2")
267 (source (origin
268 (method url-fetch)
269 (uri (string-append
270 "https://github.com/miloyip/rapidjson/archive/v"
271 version ".tar.gz"))
272 (file-name (string-append name "-" version ".tar.gz"))
273 (sha256
274 (base32
275 "0rl6s0vg5y1dhh9vfl1lqay3sxf69sxjh0czxrjmasn7ng91wwf3"))
276 (modules '((guix build utils)))
277 (snippet
278 ;; Building with GCC 4.8 with -Werror was fine, but 4.9.3
279 ;; complains in new ways, so turn of -Werror.
280 '(substitute* (find-files "." "^CMakeLists\\.txt$")
281 (("-Werror") "")))))
282 (build-system cmake-build-system)
283 (home-page "https://github.com/miloyip/rapidjson")
284 (synopsis "JSON parser/generator for C++ with both SAX/DOM style API")
285 (description
286 "RapidJSON is a fast JSON parser/generator for C++ with both SAX/DOM
287 style API.")
288 (license l:expat)))
289
290 (define-public libwebsockets
291 (package
292 (name "libwebsockets")
293 (version "1.3")
294 (source (origin
295 ;; The project does not publish tarballs, so we have to take
296 ;; things from Git.
297 (method git-fetch)
298 (uri (git-reference
299 (url "git://git.libwebsockets.org/libwebsockets")
300 (commit (string-append "v" version
301 "-chrome37-firefox30"))))
302 (sha256
303 (base32
304 "12fqh2d2098mgf0ls19p9lzibpsqhv7mc5rn1yvrbfnazmcr40g4"))
305 (file-name (string-append name "-" version))))
306
307 (build-system cmake-build-system)
308 (arguments
309 ;; XXX: The thing lacks a 'make test' target, because CMakeLists.txt
310 ;; doesn't use 'add_test', and it's unclear how to run the test suite.
311 '(#:tests? #f))
312
313 (native-inputs `(("perl" ,perl))) ; to build the HTML doc
314 (inputs `(("zlib" ,zlib)
315 ("openssl" ,openssl)))
316 (synopsis "WebSockets library written in C")
317 (description
318 "Libwebsockets is a library that allows C programs to establish client
319 and server WebSockets connections---a protocol layered above HTTP that allows
320 for efficient socket-like bidirectional reliable communication channels.")
321 (home-page "http://libwebsockets.org/")
322
323 ;; This is LGPLv2.1-only with extra exceptions specified in 'LICENSE'.
324 (license l:lgpl2.1)))
325
326 (define-public libpsl
327 (package
328 (name "libpsl")
329 (version "0.7.1")
330 (source (origin
331 (method url-fetch)
332 (uri (string-append "https://github.com/rockdaboot/libpsl/"
333 "archive/libpsl-" version ".tar.gz"))
334 (sha256
335 (base32
336 "1k0klj668c9v0r4993vfs3kq773mzdz61vsigqw6v1mjcwnf1si3"))))
337 (build-system gnu-build-system)
338 (inputs `(("icu4c" ,icu4c)))
339 ;; The release tarball lacks the generated files.
340 (native-inputs `(("autoconf" ,autoconf)
341 ("automake" ,automake)
342 ("gettext" ,gnu-gettext)
343 ("which" ,which)
344 ("libtool" ,libtool)
345 ("pkg-config" ,pkg-config)))
346 (arguments
347 `(#:phases (alist-cons-after
348 'unpack 'bootstrap
349 (lambda _
350 (zero? (system* "sh" "autogen.sh")))
351 %standard-phases)))
352 (home-page "https://github.com/rockdaboot/libpsl")
353 (synopsis "C library for the Publix Suffix List")
354 (description
355 "A \"public suffix\" is a domain name under which Internet users can
356 directly register own names.
357
358 Browsers and other web clients can use it to avoid privacy-leaking
359 \"supercookies\", avoid privacy-leaking \"super domain\" certificates, domain
360 highlighting parts of the domain in a user interface, and sorting domain lists
361 by site.
362
363 Libpsl has built-in PSL data for fast access, allows to load PSL data from
364 files, checks if a given domain is a public suffix, provides immediate cookie
365 domain verification, finds the longest public part of a given domain, finds
366 the shortest private part of a given domain, works with international
367 domains (UTF-8 and IDNA2008 Punycode), is thread-safe, and handles IDNA2008
368 UTS#46.")
369 (license l:x11)))
370
371 (define-public tidy
372 (package
373 (name "tidy")
374 (version "20091223")
375 (source (origin
376 (method cvs-fetch)
377 (uri (cvs-reference
378 (root-directory
379 ":pserver:anonymous@tidy.cvs.sourceforge.net:/cvsroot/tidy")
380 (module "tidy")
381 (revision "2009-12-23")))
382 (sha256
383 (base32
384 "14dsnmirjcrvwsffqp3as70qr6bbfaig2fv3zvs5g7005jrsbvpb"))))
385 (build-system gnu-build-system)
386 (arguments
387 '(#:phases (alist-cons-after
388 'unpack 'bootstrap
389 (lambda* (#:key inputs #:allow-other-keys)
390 ;; configure.in and Makefile.am aren't in the root of the
391 ;; source tree.
392 (copy-recursively "build/gnuauto" ".")
393 (setenv "AUTOMAKE" "automake --foreign")
394 (zero? (system* "autoreconf" "-vfi")))
395 %standard-phases)))
396 (native-inputs
397 `(("automake" ,automake)
398 ("autoconf" ,autoconf)
399 ("libtool" ,libtool)))
400 (synopsis "HTML validator and tidier")
401 (description "HTML Tidy is a command-line tool and C library that can be
402 used to validate and fix HTML data.")
403 (home-page "http://tidy.sourceforge.net/")
404 (license (l:x11-style "file:///include/tidy.h"))))
405
406 (define-public tinyproxy
407 (package
408 (name "tinyproxy")
409 (version "1.8.3")
410 (source (origin
411 (method url-fetch)
412 (uri (string-append
413 "http://www.samba.org/~obnox/" name "/download/"
414 name "-" version ".tar.bz2"))
415 (sha256
416 (base32
417 "0vl9igw7vm924rs6d6bkib7zfclxnlf9s8rmml1sfwj7xda9nmdy"))))
418 (build-system gnu-build-system)
419 (arguments
420 `(#:configure-flags
421 (list
422 ;; For the log file, etc.
423 "--localstatedir=/var")
424 #:phases
425 (alist-cons-before
426 'build 'pre-build
427 (lambda* (#:key inputs #:allow-other-keys #:rest args)
428 ;; Uncommenting the next two lines may assist in debugging
429 ;; (substitute* "docs/man5/Makefile" (("a2x") "a2x -v"))
430 ;; (setenv "XML_DEBUG_CATALOG" "1")
431 #t)
432 %standard-phases)))
433 ;; All of the below are used to generate the documentation
434 ;; (Should they be propagated inputs of asciidoc ??)
435 (native-inputs `(("asciidoc" ,asciidoc)
436 ("libxml2" ,libxml2)
437 ("docbook-xml" ,docbook-xml)
438 ("docbook-xsl" ,docbook-xsl)
439 ("libxslt" ,libxslt)))
440 (home-page "https://banu.com/tinyproxy/")
441 (synopsis "Light-weight HTTP/HTTPS proxy daemon")
442 (description "Tinyproxy is a light-weight HTTP/HTTPS proxy
443 daemon. Designed from the ground up to be fast and yet small, it is an ideal
444 solution for use cases such as embedded deployments where a full featured HTTP
445 proxy is required, but the system resources for a larger proxy are
446 unavailable.")
447 (license l:gpl2+)))
448
449 (define-public polipo
450 (package
451 (name "polipo")
452 (version "1.1.1")
453 (source
454 (origin
455 (method url-fetch)
456 (uri (string-append
457 "http://www.pps.univ-paris-diderot.fr/~jch/software/files/polipo/polipo-"
458 version ".tar.gz"))
459 (sha256
460 (base32
461 "05g09sg9qkkhnc2mxldm1w1xkxzs2ylybkjzs28w8ydbjc3pand2"))))
462 (native-inputs `(("texinfo" ,texinfo)))
463 (build-system gnu-build-system)
464 (arguments
465 `(#:phases
466 (alist-delete 'configure %standard-phases)
467 #:make-flags (let ((out (assoc-ref %outputs "out")))
468 (list (string-append "PREFIX=" out)
469 (string-append "LOCAL_ROOT="
470 out "/share/polipo/www")
471 "CC=gcc"))
472 ;; No 'check' target.
473 #:tests? #f))
474 (home-page "http://www.pps.univ-paris-diderot.fr/~jch/software/polipo/")
475 (synopsis "Small caching web proxy")
476 (description
477 "Polipo is a small caching web proxy (web cache, HTTP proxy, and proxy
478 server). It was primarily designed to be used by one person or a small group
479 of people.")
480 (license l:expat)))
481
482 (define-public libyaml
483 (package
484 (name "libyaml")
485 (version "0.1.5")
486 (source
487 (origin
488 (method url-fetch)
489 (uri (string-append
490 "http://pyyaml.org/download/libyaml/yaml-"
491 version ".tar.gz"))
492 (sha256
493 (base32
494 "1vrv5ly58bkmcyc049ad180f2m8iav6l9h3v8l2fqdmrny7yx1zs"))))
495 (build-system gnu-build-system)
496 (home-page "http://pyyaml.org/wiki/LibYAML")
497 (synopsis "YAML 1.1 parser and emitter written in C")
498 (description
499 "LibYAML is a YAML 1.1 parser and emitter written in C.")
500 (license l:expat)))
501
502 (define-public libquvi-scripts
503 (package
504 (name "libquvi-scripts")
505 (version "0.4.21")
506 (source
507 (origin
508 (method url-fetch)
509 (uri (string-append
510 "mirror://sourceforge/quvi/libquvi-scripts-" version ".tar.xz"))
511 (sha256
512 (base32 "0d0giry6bb57pnidymvdl7i5x9bq3ljk3g4bs294hcr5mj3cq0kw"))))
513 (build-system gnu-build-system)
514 (home-page "http://quvi.sourceforge.net/")
515 (synopsis "Media stream URL parser")
516 (description "This package contains support scripts called by libquvi to
517 parse media stream properties.")
518 (license l:lgpl2.1+)))
519
520 (define-public libquvi
521 (package
522 (name "libquvi")
523 (version "0.4.1")
524 (source
525 (origin
526 (method url-fetch)
527 (uri (string-append
528 "mirror://sourceforge/quvi/libquvi-" version ".tar.xz"))
529 (sha256
530 (base32 "00x9gbmzc5cns0gnfag0hsphcr3cb33vbbb9s7ppvvd6bxz2z1mm"))))
531 (build-system gnu-build-system)
532 (native-inputs `(("pkg-config" ,pkg-config)))
533 (inputs
534 `(("curl" ,curl)
535 ("cyrus-sasl" ,cyrus-sasl)
536 ("libquvi-scripts" ,libquvi-scripts)
537 ("lua" ,lua-5.1)
538 ("openssl" ,openssl)
539 ("zlib" ,zlib)))
540 (arguments
541 ;; Lua provides no .pc file, so add CFLAGS/LIBS manually.
542 '(#:configure-flags
543 (let ((lua (assoc-ref %build-inputs "lua")))
544 (list
545 (string-append "liblua_CFLAGS=-I" lua "/include")
546 (string-append "liblua_LIBS=-L" lua "/libs -llua")))))
547 (home-page "http://quvi.sourceforge.net/")
548 (synopsis "Media stream URL parser")
549 (description "libquvi is a library with a C API for parsing media stream
550 URLs and extracting their actual media files.")
551 (license l:lgpl2.1+)))
552
553 (define-public quvi
554 (package
555 (name "quvi")
556 (version "0.4.2")
557 (source
558 (origin
559 (method url-fetch)
560 (uri (string-append
561 "mirror://sourceforge/quvi/quvi-" version ".tar.xz"))
562 (sha256
563 (base32 "09lhl6dv5zpryasx7yjslfrcdcqlsbwapvd5lg7w6sm5x5n3k8ci"))))
564 (build-system gnu-build-system)
565 (native-inputs `(("pkg-config" ,pkg-config)))
566 (inputs
567 `(("curl" ,curl)
568 ("libquvi" ,libquvi)))
569 (home-page "http://quvi.sourceforge.net/")
570 (synopsis "Media stream URL parser")
571 (description "quvi is a command-line-tool suite to extract media files
572 from streaming URLs. It is a command-line wrapper for the libquvi library.")
573 (license l:lgpl2.1+)))
574
575 (define-public serf
576 (package
577 (name "serf")
578 (version "1.3.8")
579 (source
580 (origin
581 (method url-fetch)
582 (uri (string-append "http://serf.googlecode.com/svn/src_releases/serf-"
583 version ".tar.bz2"))
584 (sha256
585 (base32 "14155g48gamcv5s0828bzij6vr14nqmbndwq8j8f9g6vcph0nl70"))
586 (patches (map search-patch '("serf-comment-style-fix.patch"
587 "serf-deflate-buckets-test-fix.patch")))
588 (patch-flags '("-p0"))))
589 (build-system gnu-build-system)
590 (native-inputs
591 `(("scons" ,scons)
592 ("python" ,python-2)))
593 (propagated-inputs
594 `(("apr" ,apr)
595 ("apr-util" ,apr-util)
596 ("openssl" ,openssl)))
597 (inputs
598 `(;; TODO: Fix build with gss.
599 ;;("gss" ,gss)
600 ("zlib" ,zlib)))
601 (arguments
602 `(#:phases
603 ;; TODO: Add scons-build-system and use it here.
604 (modify-phases %standard-phases
605 (delete 'configure)
606 (add-after 'unpack 'scons-propagate-environment
607 (lambda _
608 ;; By design, SCons does not, by default, propagate
609 ;; environment variables to subprocesses. See:
610 ;; <http://comments.gmane.org/gmane.linux.distributions.nixos/4969>
611 ;; Here, we modify the SConstruct file to arrange for
612 ;; environment variables to be propagated.
613 (substitute* "SConstruct"
614 (("^env = Environment\\(")
615 "env = Environment(ENV=os.environ, "))))
616 (replace 'build
617 (lambda* (#:key inputs outputs #:allow-other-keys)
618 (let ((out (assoc-ref outputs "out"))
619 (apr (assoc-ref inputs "apr"))
620 (apr-util (assoc-ref inputs "apr-util"))
621 (openssl (assoc-ref inputs "openssl"))
622 ;;(gss (assoc-ref inputs "gss"))
623 (zlib (assoc-ref inputs "zlib")))
624 (zero? (system* "scons"
625 (string-append "APR=" apr)
626 (string-append "APU=" apr-util)
627 (string-append "OPENSSL=" openssl)
628 ;;(string-append "GSSAPI=" gss)
629 (string-append "ZLIB=" zlib)
630 (string-append "PREFIX=" out))))))
631 (replace 'check (lambda _ (zero? (system* "scons" "check"))))
632 (replace 'install (lambda _ (zero? (system* "scons" "install")))))))
633 (home-page "https://code.google.com/p/serf/")
634 (synopsis "High-performance asynchronous HTTP client library")
635 (description
636 "serf is a C-based HTTP client library built upon the Apache Portable
637 Runtime (APR) library. It multiplexes connections, running the read/write
638 communication asynchronously. Memory copies and transformations are kept to a
639 minimum to provide high performance operation.")
640 ;; Most of the code is covered by the Apache License, Version 2.0, but the
641 ;; bundled CuTest framework uses a different non-copyleft license.
642 (license (list l:asl2.0 (l:non-copyleft "file://test/CuTest-README.txt")))))
643
644 \f
645 (define-public perl-apache-logformat-compiler
646 (package
647 (name "perl-apache-logformat-compiler")
648 (version "0.32")
649 (source
650 (origin
651 (method url-fetch)
652 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZEBURO/"
653 "Apache-LogFormat-Compiler-" version ".tar.gz"))
654 (sha256
655 (base32
656 "0zyx4r2bxc6d48m70fhcq80nw0q9wnfz6qgn1g0r6bigqgdjq4dw"))))
657 (build-system perl-build-system)
658 (native-inputs
659 `(("perl-http-message" ,perl-http-message)
660 ("perl-test-mocktime" ,perl-test-mocktime)
661 ("perl-try-tiny" ,perl-try-tiny)
662 ("perl-uri" ,perl-uri)))
663 (propagated-inputs
664 `(("perl-posix-strftime-compiler" ,perl-posix-strftime-compiler)))
665 (arguments `(#:tests? #f)) ;TODO: Timezone test failures
666 (home-page "http://search.cpan.org/dist/Apache-LogFormat-Compiler")
667 (synopsis "Compile a log format string to perl-code")
668 (description "This module provides methods to compile a log format string
669 to perl-code, for faster generation of access_log lines.")
670 (license (package-license perl))))
671
672 (define-public perl-authen-sasl
673 (package
674 (name "perl-authen-sasl")
675 (version "2.16")
676 (source
677 (origin
678 (method url-fetch)
679 (uri (string-append "mirror://cpan/authors/id/G/GB/GBARR/"
680 "Authen-SASL-" version ".tar.gz"))
681 (sha256
682 (base32
683 "02afhlrdq5hh5g8b32fa79fqq5i76qzwfqqvfi9zi57h31szl536"))))
684 (build-system perl-build-system)
685 (propagated-inputs
686 `(("perl-digest-hmac" ,perl-digest-hmac)
687 ("perl-gssapi" ,perl-gssapi)))
688 (home-page "http://search.cpan.org/dist/Authen-SASL")
689 (synopsis "SASL authentication framework")
690 (description "Authen::SASL provides an SASL authentication framework.")
691 (license (package-license perl))))
692
693 (define-public perl-catalyst-action-renderview
694 (package
695 (name "perl-catalyst-action-renderview")
696 (version "0.16")
697 (source
698 (origin
699 (method url-fetch)
700 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
701 "Catalyst-Action-RenderView-"
702 version ".tar.gz"))
703 (sha256
704 (base32
705 "0j1rrld13cjk7ks92b5hv3xw4rfm2lvmksb4rlzd8mx0a0wj0rc5"))))
706 (build-system perl-build-system)
707 (native-inputs
708 `(("perl-http-request-ascgi" ,perl-http-request-ascgi)))
709 (propagated-inputs
710 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
711 ("perl-data-visitor" ,perl-data-visitor)
712 ("perl-mro-compat" ,perl-mro-compat)))
713 (home-page "http://search.cpan.org/dist/Catalyst-Action-RenderView")
714 (synopsis "Sensible default Catalyst action")
715 (description "This Catalyst action implements a sensible default end
716 action, which will forward to the first available view.")
717 (license (package-license perl))))
718
719 (define-public perl-catalyst-action-rest
720 (package
721 (name "perl-catalyst-action-rest")
722 (version "1.17")
723 (source (origin
724 (method url-fetch)
725 (uri (string-append "mirror://cpan/authors/id/F/FR/FREW/"
726 "Catalyst-Action-REST-" version ".tar.gz"))
727 (sha256
728 (base32
729 "1rnxmsd9dsqz4xc0g9ynafxi934jwp0nixbg92q3bc2h46xcccy8"))))
730 (build-system perl-build-system)
731 (native-inputs
732 `(("perl-test-requires" ,perl-test-requires)))
733 (propagated-inputs
734 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
735 ("perl-class-inspector" ,perl-class-inspector)
736 ("perl-libwww" ,perl-libwww)
737 ("perl-moose" ,perl-moose)
738 ("perl-mro-compat" ,perl-mro-compat)
739 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
740 ("perl-params-validate" ,perl-params-validate)
741 ("perl-uri-find" ,perl-uri-find)))
742 (home-page "http://search.cpan.org/dist/Catalyst-Action-REST")
743 (synopsis "Automated REST Method Dispatching")
744 (description "This Action handles doing automatic method dispatching for
745 REST requests. It takes a normal Catalyst action, and changes the dispatch to
746 append an underscore and method name. First it will try dispatching to an
747 action with the generated name, and failing that it will try to dispatch to a
748 regular method.")
749 (license (package-license perl))))
750
751 (define-public perl-catalyst-authentication-store-dbix-class
752 (package
753 (name "perl-catalyst-authentication-store-dbix-class")
754 (version "0.1506")
755 (source
756 (origin
757 (method url-fetch)
758 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
759 "Catalyst-Authentication-Store-DBIx-Class-"
760 version ".tar.gz"))
761 (sha256
762 (base32
763 "0i5ja7690fs9nhxcij6lw51j804sm8s06m5mvk1n8pi8jljrymvw"))))
764 (build-system perl-build-system)
765 (native-inputs
766 `(("perl-catalyst-plugin-authorization-roles"
767 ,perl-catalyst-plugin-authorization-roles)
768 ("perl-catalyst-plugin-session-state-cookie"
769 ,perl-catalyst-plugin-session-state-cookie)
770 ("perl-dbd-sqlite" ,perl-dbd-sqlite)
771 ("perl-test-www-mechanize-catalyst" ,perl-test-www-mechanize-catalyst)))
772 (propagated-inputs
773 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
774 ("perl-catalyst-plugin-authentication"
775 ,perl-catalyst-plugin-authentication)
776 ("perl-dbix-class" ,perl-dbix-class)
777 ("perl-catalyst-model-dbic-schema" ,perl-catalyst-model-dbic-schema)))
778 (home-page
779 "http://search.cpan.org/dist/Catalyst-Authentication-Store-DBIx-Class")
780 (synopsis "Storage class for Catalyst authentication using DBIx::Class")
781 (description "The Catalyst::Authentication::Store::DBIx::Class class
782 provides access to authentication information stored in a database via
783 DBIx::Class.")
784 (license (package-license perl))))
785
786 (define-public perl-catalyst-component-instancepercontext
787 (package
788 (name "perl-catalyst-component-instancepercontext")
789 (version "0.001001")
790 (source
791 (origin
792 (method url-fetch)
793 (uri (string-append "mirror://cpan/authors/id/G/GR/GRODITI/"
794 "Catalyst-Component-InstancePerContext-"
795 version ".tar.gz"))
796 (sha256
797 (base32
798 "0wfj4vnn2cvk6jh62amwlg050p37fcwdgrn9amcz24z6w4qgjqvz"))))
799 (build-system perl-build-system)
800 (propagated-inputs
801 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
802 ("perl-moose" ,perl-moose)))
803 (home-page
804 "http://search.cpan.org/dist/Catalyst-Component-InstancePerContext")
805 (synopsis "Create only one instance of Moose component per context")
806 (description "Catalyst::Component::InstancePerContext returns a new
807 instance of a component on each request.")
808 (license (package-license perl))))
809
810 (define-public perl-catalyst-devel
811 (package
812 (name "perl-catalyst-devel")
813 (version "1.39")
814 (source
815 (origin
816 (method url-fetch)
817 (uri (string-append "mirror://cpan/authors/id/I/IL/ILMARI/"
818 "Catalyst-Devel-" version ".tar.gz"))
819 (sha256
820 (base32
821 "12m50bbkggjmpxihv3wnvr0g2qng0zwhlzi5ygppjz8wh2x73qxw"))))
822 (build-system perl-build-system)
823 (native-inputs
824 `(("perl-test-fatal" ,perl-test-fatal)))
825 (propagated-inputs
826 `(("perl-catalyst-action-renderview" ,perl-catalyst-action-renderview)
827 ("perl-catalyst-plugin-configloader" ,perl-catalyst-plugin-configloader)
828 ("perl-catalyst-plugin-static-simple" ,perl-catalyst-plugin-static-simple)
829 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
830 ("perl-config-general" ,perl-config-general)
831 ("perl-file-changenotify" ,perl-file-changenotify)
832 ("perl-file-copy-recursive" ,perl-file-copy-recursive)
833 ("perl-file-sharedir" ,perl-file-sharedir)
834 ("perl-module-install" ,perl-module-install)
835 ("perl-moose" ,perl-moose)
836 ("perl-moosex-emulate-class-accessor-fast"
837 ,perl-moosex-emulate-class-accessor-fast)
838 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
839 ("perl-namespace-clean" ,perl-namespace-clean)
840 ("perl-path-class" ,perl-path-class)
841 ("perl-template-toolkit" ,perl-template-toolkit)))
842 (home-page "http://search.cpan.org/dist/Catalyst-Devel")
843 (synopsis "Catalyst Development Tools")
844 (description "The Catalyst-Devel distribution includes a variety of
845 modules useful for the development of Catalyst applications, but not required
846 to run them. Catalyst-Devel includes the Catalyst::Helper system, which
847 autogenerates scripts and tests; Module::Install::Catalyst, a Module::Install
848 extension for Catalyst; and requirements for a variety of development-related
849 modules.")
850 (license (package-license perl))))
851
852 (define-public perl-catalyst-dispatchtype-regex
853 (package
854 (name "perl-catalyst-dispatchtype-regex")
855 (version "5.90035")
856 (source
857 (origin
858 (method url-fetch)
859 (uri (string-append "mirror://cpan/authors/id/M/MG/MGRIMES/"
860 "Catalyst-DispatchType-Regex-" version ".tar.gz"))
861 (sha256
862 (base32
863 "06jq1lmpq88rmp9zik5gqczg234xac0hiyc3l698iif7zsgcyb80"))))
864 (build-system perl-build-system)
865 (native-inputs
866 `(("perl-module-build" ,perl-module-build) ;needs Module::Build >= 0.4004
867 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
868 ("perl-catalyst-runtime" ,perl-catalyst-runtime)))
869 (propagated-inputs
870 `(("perl-moose" ,perl-moose)
871 ("perl-text-simpletable" ,perl-text-simpletable)))
872 (home-page "http://search.cpan.org/dist/Catalyst-DispatchType-Regex")
873 (synopsis "Regex DispatchType for Catalyst")
874 (description "Dispatch type managing path-matching behaviour using
875 regexes. Regex dispatch types have been deprecated and removed from Catalyst
876 core. It is recommend that you use Chained methods or other techniques
877 instead. As part of the refactoring, the dispatch priority of Regex vs Regexp
878 vs LocalRegex vs LocalRegexp may have changed. Priority is now influenced by
879 when the dispatch type is first seen in your application.")
880 (license (package-license perl))))
881
882 (define-public perl-catalyst-model-dbic-schema
883 (package
884 (name "perl-catalyst-model-dbic-schema")
885 (version "0.65")
886 (source
887 (origin
888 (method url-fetch)
889 (uri (string-append "mirror://cpan/authors/id/G/GB/GBJK/"
890 "Catalyst-Model-DBIC-Schema-"
891 version ".tar.gz"))
892 (sha256
893 (base32
894 "1spfjcjc0b9dv3k2gbanqj1m1cqzyxb32p76dhdwizzpbvpi3a96"))))
895 (build-system perl-build-system)
896 (native-inputs
897 `(("perl-dbd-sqlite" ,perl-dbd-sqlite)
898 ("perl-test-exception" ,perl-test-exception)
899 ("perl-test-requires" ,perl-test-requires)))
900 (propagated-inputs
901 `(("perl-carp-clan" ,perl-carp-clan)
902 ("perl-catalyst-component-instancepercontext"
903 ,perl-catalyst-component-instancepercontext)
904 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
905 ("perl-catalystx-component-traits" ,perl-catalystx-component-traits)
906 ("perl-dbix-class" ,perl-dbix-class)
907 ("perl-dbix-class-cursor-cached" ,perl-dbix-class-cursor-cached)
908 ("perl-dbix-class-schema-loader" ,perl-dbix-class-schema-loader)
909 ("perl-hash-merge" ,perl-hash-merge)
910 ("perl-list-moreutils" ,perl-list-moreutils)
911 ("perl-module-runtime" ,perl-module-runtime)
912 ("perl-moose" ,perl-moose)
913 ("perl-moosex-markasmethods" ,perl-moosex-markasmethods)
914 ("perl-moosex-nonmoose" ,perl-moosex-nonmoose)
915 ("perl-moosex-types" ,perl-moosex-types)
916 ("perl-moosex-types-loadableclass" ,perl-moosex-types-loadableclass)
917 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
918 ("perl-namespace-clean" ,perl-namespace-clean)
919 ("perl-tie-ixhash" ,perl-tie-ixhash)
920 ("perl-try-tiny" ,perl-try-tiny)))
921 (home-page "http://search.cpan.org/dist/Catalyst-Model-DBIC-Schema")
922 (synopsis "DBIx::Class::Schema Model Class")
923 (description "This is a Catalyst Model for DBIx::Class::Schema-based
924 Models.")
925 (license (package-license perl))))
926
927 (define-public perl-catalyst-plugin-accesslog
928 (package
929 (name "perl-catalyst-plugin-accesslog")
930 (version "1.05")
931 (source
932 (origin
933 (method url-fetch)
934 (uri (string-append "mirror://cpan/authors/id/A/AR/ARODLAND/"
935 "Catalyst-Plugin-AccessLog-" version ".tar.gz"))
936 (sha256
937 (base32
938 "0hqvckaw91q5yc25a33bp0d4qqxlgkp7rxlvi8n8svxd1406r55s"))))
939 (build-system perl-build-system)
940 (propagated-inputs
941 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
942 ("perl-datetime" ,perl-datetime)
943 ("perl-moose" ,perl-moose)
944 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
945 (arguments `(#:tests? #f)) ;Unexpected http responses
946 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-AccessLog")
947 (synopsis "Request logging from within Catalyst")
948 (description "This Catalyst plugin enables you to create \"access logs\"
949 from within a Catalyst application instead of requiring a webserver to do it
950 for you. It will work even with Catalyst debug logging turned off.")
951 (license (package-license perl))))
952
953 (define-public perl-catalyst-plugin-authentication
954 (package
955 (name "perl-catalyst-plugin-authentication")
956 (version "0.10023")
957 (source
958 (origin
959 (method url-fetch)
960 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
961 "Catalyst-Plugin-Authentication-"
962 version ".tar.gz"))
963 (sha256
964 (base32
965 "0v6hb4r1wv3djrnqvnjcn3xx1scgqzx8nyjdg9lfc1ybvamrl0rn"))))
966 (build-system perl-build-system)
967 (propagated-inputs
968 `(("perl-catalyst-plugin-session" ,perl-catalyst-plugin-session)
969 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
970 ("perl-class-inspector" ,perl-class-inspector)
971 ("perl-moose" ,perl-moose)
972 ("perl-moosex-emulate-class-accessor-fast"
973 ,perl-moosex-emulate-class-accessor-fast)
974 ("perl-mro-compat" ,perl-mro-compat)
975 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
976 ("perl-string-rewriteprefix" ,perl-string-rewriteprefix)
977 ("perl-test-exception" ,perl-test-exception)
978 ("perl-try-tiny" ,perl-try-tiny)))
979 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-Authentication")
980 (synopsis "Infrastructure plugin for the Catalyst authentication framework")
981 (description "The authentication plugin provides generic user support for
982 Catalyst apps. It is the basis for both authentication (checking the user is
983 who they claim to be), and authorization (allowing the user to do what the
984 system authorises them to do).")
985 (license (package-license perl))))
986
987 (define-public perl-catalyst-plugin-authorization-roles
988 (package
989 (name "perl-catalyst-plugin-authorization-roles")
990 (version "0.09")
991 (source
992 (origin
993 (method url-fetch)
994 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
995 "Catalyst-Plugin-Authorization-Roles-"
996 version ".tar.gz"))
997 (sha256
998 (base32
999 "0l83lkwmq0lngwh8b1rv3r719pn8w1gdbyhjqm74rnd0wbjl8h7f"))))
1000 (build-system perl-build-system)
1001 (native-inputs
1002 `(("perl-test-exception" ,perl-test-exception)))
1003 (propagated-inputs
1004 `(("perl-catalyst-plugin-authentication"
1005 ,perl-catalyst-plugin-authentication)
1006 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
1007 ("perl-set-object" ,perl-set-object)
1008 ("perl-universal-isa" ,perl-universal-isa)))
1009 (home-page
1010 "http://search.cpan.org/dist/Catalyst-Plugin-Authorization-Roles")
1011 (synopsis "Role-based authorization for Catalyst")
1012 (description "Catalyst::Plugin::Authorization::Roles provides role-based
1013 authorization for Catalyst based on Catalyst::Plugin::Authentication.")
1014 (license (package-license perl))))
1015
1016 (define-public perl-catalyst-plugin-captcha
1017 (package
1018 (name "perl-catalyst-plugin-captcha")
1019 (version "0.04")
1020 (source
1021 (origin
1022 (method url-fetch)
1023 (uri (string-append "mirror://cpan/authors/id/D/DI/DIEGOK/"
1024 "Catalyst-Plugin-Captcha-" version ".tar.gz"))
1025 (sha256
1026 (base32
1027 "0llyj3v5nx9cx46jdbbvxf1lc9s9cxq5ml22xmx3wkb201r5qgaa"))))
1028 (build-system perl-build-system)
1029 (propagated-inputs
1030 `(("perl-catalyst-plugin-session" ,perl-catalyst-plugin-session)
1031 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
1032 ("perl-gd-securityimage" ,perl-gd-securityimage)
1033 ("perl-http-date" ,perl-http-date)))
1034 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-Captcha")
1035 (synopsis "Captchas for Catalyst")
1036 (description "This plugin creates and validates Captcha images for
1037 Catalyst.")
1038 (license (package-license perl))))
1039
1040 (define-public perl-catalyst-plugin-configloader
1041 (package
1042 (name "perl-catalyst-plugin-configloader")
1043 (version "0.34")
1044 (source
1045 (origin
1046 (method url-fetch)
1047 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
1048 "Catalyst-Plugin-ConfigLoader-"
1049 version ".tar.gz"))
1050 (sha256
1051 (base32
1052 "19j7p4v7mbx6wrmpvmrnd974apx7hdl2s095ga3b9zcbdrl77h5q"))))
1053 (build-system perl-build-system)
1054 (native-inputs
1055 `(("perl-path-class" ,perl-path-class)))
1056 (propagated-inputs
1057 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1058 ("perl-config-any" ,perl-config-any)
1059 ("perl-data-visitor" ,perl-data-visitor)
1060 ("perl-mro-compat" ,perl-mro-compat)))
1061 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-ConfigLoader")
1062 (synopsis "Load config files of various types")
1063 (description "This module will attempt to load find and load configuration
1064 files of various types. Currently it supports YAML, JSON, XML, INI and Perl
1065 formats.")
1066 (license (package-license perl))))
1067
1068 (define-public perl-catalyst-plugin-session
1069 (package
1070 (name "perl-catalyst-plugin-session")
1071 (version "0.39")
1072 (source
1073 (origin
1074 (method url-fetch)
1075 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
1076 "Catalyst-Plugin-Session-" version ".tar.gz"))
1077 (sha256
1078 (base32
1079 "0m4a003qgz7848iyckwbigg2vw3kmfxggh1razrnzxrbz3n6x5gi"))))
1080 (build-system perl-build-system)
1081 (native-inputs
1082 `(("perl-test-deep" ,perl-test-deep)
1083 ("perl-test-exception" ,perl-test-exception)))
1084 (propagated-inputs
1085 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1086 ("perl-moose" ,perl-moose)
1087 ("perl-moosex-emulate-class-accessor-fast"
1088 ,perl-moosex-emulate-class-accessor-fast)
1089 ("perl-namespace-clean" ,perl-namespace-clean)
1090 ("perl-object-signature" ,perl-object-signature)
1091 ("perl-test-www-mechanize-psgi" ,perl-test-www-mechanize-psgi)))
1092 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-Session")
1093 (synopsis "Catalyst generic session plugin")
1094 (description "This plugin links the two pieces required for session
1095 management in web applications together: the state, and the store.")
1096 (license (package-license perl))))
1097
1098 (define-public perl-catalyst-plugin-session-state-cookie
1099 (package
1100 (name "perl-catalyst-plugin-session-state-cookie")
1101 (version "0.17")
1102 (source
1103 (origin
1104 (method url-fetch)
1105 (uri (string-append "mirror://cpan/authors/id/M/MS/MSTROUT/"
1106 "Catalyst-Plugin-Session-State-Cookie-"
1107 version ".tar.gz"))
1108 (sha256
1109 (base32
1110 "1rvxbfnpf9x2pc2zgpazlcgdlr2dijmxgmcs0m5nazs0w6xikssb"))))
1111 (build-system perl-build-system)
1112 (propagated-inputs
1113 `(("perl-catalyst-plugin-session" ,perl-catalyst-plugin-session)
1114 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
1115 ("perl-moose" ,perl-moose)
1116 ("perl-mro-compat" ,perl-mro-compat)
1117 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
1118 (home-page
1119 "http://search.cpan.org/dist/Catalyst-Plugin-Session-State-Cookie")
1120 (synopsis "Maintain session IDs using cookies")
1121 (description "In order for Catalyst::Plugin::Session to work, the session
1122 ID needs to be stored on the client, and the session data needs to be stored
1123 on the server. This plugin stores the session ID on the client using the
1124 cookie mechanism.")
1125 (license (package-license perl))))
1126
1127 (define-public perl-catalyst-plugin-session-store-fastmmap
1128 (package
1129 (name "perl-catalyst-plugin-session-store-fastmmap")
1130 (version "0.16")
1131 (source
1132 (origin
1133 (method url-fetch)
1134 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
1135 "Catalyst-Plugin-Session-Store-FastMmap-"
1136 version ".tar.gz"))
1137 (sha256
1138 (base32
1139 "0x3j6zv3wr41jlwr6yb2jpmcx019ibyn11y8653ffnwhpzbpzsxs"))))
1140 (build-system perl-build-system)
1141 (propagated-inputs
1142 `(("perl-cache-fastmmap" ,perl-cache-fastmmap)
1143 ("perl-catalyst-plugin-session" ,perl-catalyst-plugin-session)
1144 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
1145 ("perl-moosex-emulate-class-accessor-fast"
1146 ,perl-moosex-emulate-class-accessor-fast)
1147 ("perl-mro-compat" ,perl-mro-compat)
1148 ("perl-path-class" ,perl-path-class)))
1149 (home-page
1150 "http://search.cpan.org/dist/Catalyst-Plugin-Session-Store-FastMmap")
1151 (synopsis "FastMmap session storage backend")
1152 (description "Catalyst::Plugin::Session::Store::FastMmap is a fast session
1153 storage plugin for Catalyst that uses an mmap'ed file to act as a shared
1154 memory interprocess cache. It is based on Cache::FastMmap.")
1155 (license (package-license perl))))
1156
1157 (define-public perl-catalyst-plugin-stacktrace
1158 (package
1159 (name "perl-catalyst-plugin-stacktrace")
1160 (version "0.12")
1161 (source
1162 (origin
1163 (method url-fetch)
1164 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
1165 "Catalyst-Plugin-StackTrace-" version ".tar.gz"))
1166 (sha256
1167 (base32
1168 "1b2ksz74cpigxqzf63rddar3vfmnbpwpdcbs11v0ml89pb8ar79j"))))
1169 (build-system perl-build-system)
1170 (propagated-inputs
1171 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1172 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
1173 ("perl-mro-compat" ,perl-mro-compat)))
1174 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-StackTrace")
1175 (synopsis "Stack trace on the Catalyst debug screen")
1176 (description "This plugin enhances the standard Catalyst debug screen by
1177 including a stack trace of your appliation up to the point where the error
1178 occurred. Each stack frame is displayed along with the package name, line
1179 number, file name, and code context surrounding the line number.")
1180 (license (package-license perl))))
1181
1182 (define-public perl-catalyst-plugin-static-simple
1183 (package
1184 (name "perl-catalyst-plugin-static-simple")
1185 (version "0.33")
1186 (source
1187 (origin
1188 (method url-fetch)
1189 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
1190 "Catalyst-Plugin-Static-Simple-" version ".tar.gz"))
1191 (sha256
1192 (base32
1193 "1h8f12bhzh0ssq9gs8r9g3hqn8zn2k0q944vc1vm8j81bns16msy"))))
1194 (build-system perl-build-system)
1195 (propagated-inputs
1196 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1197 ("perl-mime-types" ,perl-mime-types)
1198 ("perl-moose" ,perl-moose)
1199 ("perl-moosex-types" ,perl-moosex-types)
1200 ("perl-namespace-autoclean" ,perl-namespace-autoclean)))
1201 (home-page "http://search.cpan.org/dist/Catalyst-Plugin-Static-Simple")
1202 (synopsis "Simple serving of static pages")
1203 (description "The Static::Simple plugin is designed to make serving static
1204 content in your application during development quick and easy, without
1205 requiring a single line of code from you. This plugin detects static files by
1206 looking at the file extension in the URL (such as .css or .png or .js). The
1207 plugin uses the lightweight MIME::Types module to map file extensions to
1208 IANA-registered MIME types, and will serve your static files with the correct
1209 MIME type directly to the browser, without being processed through Catalyst.")
1210 (license (package-license perl))))
1211
1212 (define-public perl-catalyst-runtime
1213 (package
1214 (name "perl-catalyst-runtime")
1215 (version "5.90082")
1216 (source
1217 (origin
1218 (method url-fetch)
1219 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
1220 "Catalyst-Runtime-" version ".tar.gz"))
1221 (sha256
1222 (base32
1223 "1gs70nq4rikpq6siwds9disb1z03vwjzf979xi9kf7saa1drfncs"))))
1224 (build-system perl-build-system)
1225 (native-inputs
1226 `(("perl-test-fatal" ,perl-test-fatal)))
1227 (propagated-inputs
1228 `(("perl-cgi-simple" ,perl-cgi-simple)
1229 ("perl-cgi-struct" ,perl-cgi-struct)
1230 ("perl-class-c3-adopt-next" ,perl-class-c3-adopt-next)
1231 ("perl-class-data-inheritable" ,perl-class-data-inheritable)
1232 ("perl-class-date" ,perl-class-date)
1233 ("perl-class-load" ,perl-class-load)
1234 ("perl-data-dump" ,perl-data-dump)
1235 ("perl-http-body" ,perl-http-body)
1236 ("perl-http-message" ,perl-http-message)
1237 ("perl-http-request-ascgi" ,perl-http-request-ascgi)
1238 ("perl-io-stringy" ,perl-io-stringy)
1239 ("perl-json-maybexs" ,perl-json-maybexs)
1240 ("perl-libwww" ,perl-libwww)
1241 ("perl-moose" ,perl-moose)
1242 ("perl-moosex-emulate-class-accessor-fast"
1243 ,perl-moosex-emulate-class-accessor-fast)
1244 ("perl-moosex-getopt" ,perl-moosex-getopt)
1245 ("perl-moosex-methodattributes" ,perl-moosex-methodattributes)
1246 ("perl-moosex-role-withoverloading" ,perl-moosex-role-withoverloading)
1247 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1248 ("perl-namespace-clean" ,perl-namespace-clean)
1249 ("perl-path-class" ,perl-path-class)
1250 ("perl-plack" ,perl-plack)
1251 ("perl-plack-middleware-fixmissingbodyinredirect"
1252 ,perl-plack-middleware-fixmissingbodyinredirect)
1253 ("perl-plack-middleware-methodoverride"
1254 ,perl-plack-middleware-methodoverride)
1255 ("perl-plack-middleware-removeredundantbody"
1256 ,perl-plack-middleware-removeredundantbody)
1257 ("perl-plack-middleware-reverseproxy"
1258 ,perl-plack-middleware-reverseproxy)
1259 ("perl-plack-test-externalserver" ,perl-plack-test-externalserver)
1260 ("perl-safe-isa" ,perl-safe-isa)
1261 ("perl-string-rewriteprefix" ,perl-string-rewriteprefix)
1262 ("perl-text-simpletable" ,perl-text-simpletable)
1263 ("perl-tree-simple" ,perl-tree-simple)
1264 ("perl-tree-simple-visitorfactory" ,perl-tree-simple-visitorfactory)
1265 ("perl-try-tiny" ,perl-try-tiny)
1266 ("perl-uri" ,perl-uri)
1267 ("perl-uri-ws" ,perl-uri-ws)))
1268 (home-page "http://search.cpan.org/dist/Catalyst-Runtime")
1269 (synopsis "The Catalyst Framework Runtime")
1270 (description "Catalyst is a modern framework for making web applications.
1271 It is designed to make it easy to manage the various tasks you need to do to
1272 run an application on the web, either by doing them itself, or by letting you
1273 \"plug in\" existing Perl modules that do what you need.")
1274 (license (package-license perl))))
1275
1276 (define-public perl-catalyst-traitfor-request-proxybase
1277 (package
1278 (name "perl-catalyst-traitfor-request-proxybase")
1279 (version "0.000005")
1280 (source
1281 (origin
1282 (method url-fetch)
1283 (uri (string-append "mirror://cpan/authors/id/B/BO/BOBTFISH/"
1284 "Catalyst-TraitFor-Request-ProxyBase-"
1285 version ".tar.gz"))
1286 (sha256
1287 (base32
1288 "02kir63d5cs2ipj3fn1qlmmx3gqi1xqzrxfr4pv5vjhjgsm0zgx7"))))
1289 (build-system perl-build-system)
1290 (native-inputs
1291 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1292 ("perl-catalystx-roleapplicator" ,perl-catalystx-roleapplicator)
1293 ("perl-http-message" ,perl-http-message)))
1294 (propagated-inputs
1295 `(("perl-moose" ,perl-moose)
1296 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1297 ("perl-uri" ,perl-uri)))
1298 (home-page
1299 "http://search.cpan.org/dist/Catalyst-TraitFor-Request-ProxyBase")
1300 (synopsis "Replace request base with value passed by HTTP proxy")
1301 (description "This module is a Moose::Role which allows you more
1302 flexibility in your application's deployment configurations when deployed
1303 behind a proxy. Using this module, the request base ($c->req->base) is
1304 replaced with the contents of the X-Request-Base header.")
1305 (license (package-license perl))))
1306
1307 (define-public perl-catalyst-view-download
1308 (package
1309 (name "perl-catalyst-view-download")
1310 (version "0.09")
1311 (source
1312 (origin
1313 (method url-fetch)
1314 (uri (string-append "mirror://cpan/authors/id/G/GA/GAUDEON/"
1315 "Catalyst-View-Download-" version ".tar.gz"))
1316 (sha256
1317 (base32
1318 "1qgq6y9iwfbhbkbgpw9czang2ami6z8jk1zlagrzdisy4igqzkvs"))))
1319 (build-system perl-build-system)
1320 (native-inputs
1321 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1322 ("perl-test-simple" ,perl-test-simple)
1323 ("perl-test-www-mechanize-catalyst" ,perl-test-www-mechanize-catalyst)
1324 ("perl-text-csv" ,perl-text-csv)
1325 ("perl-xml-simple" ,perl-xml-simple)))
1326 (home-page "http://search.cpan.org/dist/Catalyst-View-Download")
1327 (synopsis "Download data in many formats")
1328 (description "The purpose of this module is to provide a method for
1329 downloading data into many supportable formats. For example, downloading a
1330 table based report in a variety of formats (CSV, HTML, etc.).")
1331 (license (package-license perl))))
1332
1333 (define-public perl-catalyst-view-json
1334 (package
1335 (name "perl-catalyst-view-json")
1336 (version "0.35")
1337 (source
1338 (origin
1339 (method url-fetch)
1340 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
1341 "Catalyst-View-JSON-" version ".tar.gz"))
1342 (sha256
1343 (base32
1344 "184pyghlrkl7p387bnyvswi2d9myvdg4v3lax6xrd59shskvpmkm"))))
1345 (build-system perl-build-system)
1346 (native-inputs
1347 `(("perl-yaml" ,perl-yaml)))
1348 (inputs
1349 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1350 ("perl-json-maybexs" ,perl-json-maybexs)
1351 ("perl-mro-compat" ,perl-mro-compat)))
1352 (home-page "http://search.cpan.org/dist/Catalyst-View-JSON")
1353 (synopsis "Catalyst JSON view")
1354 (description "Catalyst::View::JSON is a Catalyst View handler that returns
1355 stash data in JSON format.")
1356 (license (package-license perl))))
1357
1358 (define-public perl-catalyst-view-tt
1359 (package
1360 (name "perl-catalyst-view-tt")
1361 (version "0.42")
1362 (source
1363 (origin
1364 (method url-fetch)
1365 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
1366 "Catalyst-View-TT-" version ".tar.gz"))
1367 (sha256
1368 (base32
1369 "18ciik9fqaqjfasa9wicbjrsl3gjhjc15xzaj3rif57an25cl178"))))
1370 (build-system perl-build-system)
1371 (propagated-inputs
1372 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1373 ("perl-class-accessor" ,perl-class-accessor)
1374 ("perl-mro-compat" ,perl-mro-compat)
1375 ("perl-path-class" ,perl-path-class)
1376 ("perl-template-timer" ,perl-template-timer)
1377 ("perl-template-toolkit" ,perl-template-toolkit)))
1378 (home-page "http://search.cpan.org/dist/Catalyst-View-TT")
1379 (synopsis "Template View Class")
1380 (description "This module is a Catalyst view class for the Template
1381 Toolkit.")
1382 (license (package-license perl))))
1383
1384 (define-public perl-catalystx-component-traits
1385 (package
1386 (name "perl-catalystx-component-traits")
1387 (version "0.19")
1388 (source
1389 (origin
1390 (method url-fetch)
1391 (uri (string-append "mirror://cpan/authors/id/R/RK/RKITOVER/"
1392 "CatalystX-Component-Traits-" version ".tar.gz"))
1393 (sha256
1394 (base32
1395 "0iq4ci8m6g2c4g01fvdl568y7pjz28f3widk986v3pyhr7ll8j88"))))
1396 (build-system perl-build-system)
1397 (native-inputs
1398 `(("perl-moose" ,perl-moose)
1399 ("perl-catalyst-runtime" ,perl-catalyst-runtime)
1400 ("perl-moosex-methodattributes" ,perl-moosex-methodattributes)))
1401 (propagated-inputs
1402 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1403 ("perl-class-load" ,perl-class-load)
1404 ("perl-moose" ,perl-moose)
1405 ("perl-moosex-traits-pluggable" ,perl-moosex-traits-pluggable)
1406 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1407 ("perl-list-moreutils" ,perl-list-moreutils)))
1408 (home-page "http://search.cpan.org/dist/CatalystX-Component-Traits")
1409 (synopsis "Trait Loading and Resolution for Catalyst Components")
1410 (description "Adds a \"COMPONENT\" in Catalyst::Component method to your
1411 Catalyst component base class that reads the optional \"traits\" parameter
1412 from app and component config and instantiates the component subclass with
1413 those traits using \"new_with_traits\" in MooseX::Traits from
1414 MooseX::Traits::Pluggable.")
1415 (license (package-license perl))))
1416
1417 (define-public perl-catalystx-roleapplicator
1418 (package
1419 (name "perl-catalystx-roleapplicator")
1420 (version "0.005")
1421 (source
1422 (origin
1423 (method url-fetch)
1424 (uri (string-append "mirror://cpan/authors/id/H/HD/HDP/"
1425 "CatalystX-RoleApplicator-" version ".tar.gz"))
1426 (sha256
1427 (base32
1428 "0vwaapxn8g5hs2xp63c4dwv9jmapmji4272fakssvgc9frklg3p2"))))
1429 (build-system perl-build-system)
1430 (propagated-inputs
1431 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1432 ("perl-moose" ,perl-moose)
1433 ("perl-moosex-relatedclassroles" ,perl-moosex-relatedclassroles)))
1434 (home-page "http://search.cpan.org/dist/CatalystX-RoleApplicator")
1435 (synopsis "Apply roles to Catalyst classes")
1436 (description "CatalystX::RoleApplicator applies roles to Catalyst
1437 application classes.")
1438 (license (package-license perl))))
1439
1440 (define-public perl-catalystx-script-server-starman
1441 (package
1442 (name "perl-catalystx-script-server-starman")
1443 (version "0.02")
1444 (source
1445 (origin
1446 (method url-fetch)
1447 (uri (string-append "mirror://cpan/authors/id/A/AB/ABRAXXA/"
1448 "CatalystX-Script-Server-Starman-"
1449 version ".tar.gz"))
1450 (sha256
1451 (base32
1452 "0h02mpkc4cmi3jpvcd7iw7xyzx55bqvvl1qkf967gqkvpklm0qx5"))))
1453 (build-system perl-build-system)
1454 (native-inputs
1455 `(("perl-test-www-mechanize-catalyst" ,perl-test-www-mechanize-catalyst)))
1456 (propagated-inputs
1457 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
1458 ("perl-moose" ,perl-moose)
1459 ("perl-namespace-autoclean" ,perl-namespace-autoclean)
1460 ("starman" ,starman)))
1461 (home-page "http://search.cpan.org/dist/CatalystX-Script-Server-Starman")
1462 (synopsis "Catalyst development server with Starman")
1463 (description "This module provides a Catalyst extension to replace the
1464 development server with Starman.")
1465 (license (package-license perl))))
1466
1467 (define-public perl-cgi-simple
1468 (package
1469 (name "perl-cgi-simple")
1470 (version "1.115")
1471 (source
1472 (origin
1473 (method url-fetch)
1474 (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
1475 "CGI-Simple-" version ".tar.gz"))
1476 (sha256
1477 (base32
1478 "1nkyb1m1g5r47xykflf68dplanih5p15njv82frbgbsms34kp1sg"))))
1479 (build-system perl-build-system)
1480 (native-inputs
1481 `(("perl-io-stringy" ,perl-io-stringy))) ;for IO::Scalar
1482 (home-page "http://search.cpan.org/dist/CGI-Simple")
1483 (synopsis "CGI interface that is CGI.pm compliant")
1484 (description "CGI::Simple provides a relatively lightweight drop in
1485 replacement for CGI.pm. It shares an identical OO interface to CGI.pm for
1486 parameter parsing, file upload, cookie handling and header generation.")
1487 (license (package-license perl))))
1488
1489 (define-public perl-cgi-struct
1490 (package
1491 (name "perl-cgi-struct")
1492 (version "1.21")
1493 (source
1494 (origin
1495 (method url-fetch)
1496 (uri (string-append "mirror://cpan/authors/id/F/FU/FULLERMD/"
1497 "CGI-Struct-" version ".tar.gz"))
1498 (sha256
1499 (base32
1500 "0v4xq2qpryr7i6jngw1wpn8yr2kiib10yxp4aih90vfdznkqsgfi"))))
1501 (build-system perl-build-system)
1502 (native-inputs
1503 `(("perl-test-deep" ,perl-test-deep)))
1504 (home-page "http://search.cpan.org/dist/CGI-Struct")
1505 (synopsis "Build structures from CGI data")
1506 (description "This is a module for building structured data from CGI
1507 inputs, in a manner reminiscent of how PHP does.")
1508 (license l:bsd-2)))
1509
1510 (define-public perl-datetime-format-http
1511 (package
1512 (name "perl-datetime-format-http")
1513 (version "0.42")
1514 (source
1515 (origin
1516 (method url-fetch)
1517 (uri (string-append "mirror://cpan/authors/id/C/CK/CKRAS/"
1518 "DateTime-Format-HTTP-" version ".tar.gz"))
1519 (sha256
1520 (base32
1521 "0h6qqdg1yzqkdxp7hqlp0qa7d1y64nilgimxs79dys2ryjfpcknh"))))
1522 (build-system perl-build-system)
1523 (propagated-inputs
1524 `(("perl-datetime" ,perl-datetime)
1525 ("perl-http-date" ,perl-http-date)))
1526 (home-page "http://search.cpan.org/dist/DateTime-Format-HTTP")
1527 (synopsis "Date conversion routines")
1528 (description "This module provides functions that deal with the date
1529 formats used by the HTTP protocol.")
1530 (license (package-license perl))))
1531
1532 (define-public perl-digest-md5-file
1533 (package
1534 (name "perl-digest-md5-file")
1535 (version "0.08")
1536 (source
1537 (origin
1538 (method url-fetch)
1539 (uri (string-append "mirror://cpan/authors/id/D/DM/DMUEY/"
1540 "Digest-MD5-File-" version ".tar.gz"))
1541 (sha256
1542 (base32
1543 "060jzf45dlwysw5wsm7av1wvpl06xgk415kwwpvv89r6wda3md5d"))))
1544 (build-system perl-build-system)
1545 (propagated-inputs
1546 `(("perl-libwww" ,perl-libwww)))
1547 (home-page "http://search.cpan.org/dist/Digest-MD5-File")
1548 (synopsis "MD5 sums for files and urls")
1549 (description "Digest::MD5::File is a Perl extension for getting MD5 sums
1550 for files and urls.")
1551 (license (package-license perl))))
1552
1553 (define-public perl-encode-locale
1554 (package
1555 (name "perl-encode-locale")
1556 (version "1.03")
1557 (source (origin
1558 (method url-fetch)
1559 (uri (string-append
1560 "mirror://cpan/authors/id/G/GA/GAAS/Encode-Locale-"
1561 version ".tar.gz"))
1562 (sha256
1563 (base32
1564 "0m9d1vdphlyzybgmdanipwd9ndfvyjgk3hzw250r299jjgh3fqzp"))))
1565 (build-system perl-build-system)
1566 (license (package-license perl))
1567 (synopsis "Perl locale encoding determination")
1568 (description
1569 "The POSIX locale system is used to specify both the language
1570 conventions requested by the user and the preferred character set to
1571 consume and output. The Encode::Locale module looks up the charset and
1572 encoding (called a CODESET in the locale jargon) and arranges for the
1573 Encode module to know this encoding under the name \"locale\". It means
1574 bytes obtained from the environment can be converted to Unicode strings
1575 by calling Encode::encode(locale => $bytes) and converted back again
1576 with Encode::decode(locale => $string).")
1577 (home-page "http://search.cpan.org/~gaas/Encode-Locale/")))
1578
1579 (define-public perl-file-listing
1580 (package
1581 (name "perl-file-listing")
1582 (version "6.04")
1583 (source (origin
1584 (method url-fetch)
1585 (uri (string-append
1586 "mirror://cpan/authors/id/G/GA/GAAS/File-Listing-"
1587 version ".tar.gz"))
1588 (sha256
1589 (base32
1590 "1xcwjlnxaiwwpn41a5yi6nz95ywh3szq5chdxiwj36kqsvy5000y"))))
1591 (build-system perl-build-system)
1592 (propagated-inputs
1593 `(("perl-http-date" ,perl-http-date)))
1594 (license (package-license perl))
1595 (synopsis "Perl directory listing parser")
1596 (description
1597 "The File::Listing module exports a single function called parse_dir(),
1598 which can be used to parse directory listings.")
1599 (home-page "http://search.cpan.org/~gaas/File-Listing/")))
1600
1601 (define-public perl-gssapi
1602 (package
1603 (name "perl-gssapi")
1604 (version "0.28")
1605 (source
1606 (origin
1607 (method url-fetch)
1608 (uri (string-append "mirror://cpan/authors/id/A/AG/AGROLMS/"
1609 "GSSAPI-" version ".tar.gz"))
1610 (sha256
1611 (base32
1612 "1mkhwxjjlhr58pd770i9gnf7zy7jj092iv6jfbnb8bvnc5xjr3vx"))))
1613 (build-system perl-build-system)
1614 (inputs `(("gssapi" ,mit-krb5)))
1615 (arguments
1616 `(#:make-maker-flags
1617 `(,(string-append "--gssapiimpl=" (assoc-ref %build-inputs "gssapi")))))
1618 (home-page "http://search.cpan.org/dist/GSSAPI")
1619 (synopsis "Perl extension providing access to the GSSAPIv2 library")
1620 (description "This is a Perl extension for using GSSAPI C bindings as
1621 described in RFC 2744.")
1622 (license (package-license perl))))
1623
1624 (define-public perl-html-form
1625 (package
1626 (name "perl-html-form")
1627 (version "6.03")
1628 (source
1629 (origin
1630 (method url-fetch)
1631 (uri (string-append "mirror://cpan/authors/id/G/GA/GAAS/"
1632 "HTML-Form-" version ".tar.gz"))
1633 (sha256
1634 (base32
1635 "0dpwr7yz6hjc3bcqgcbdzjjk9l58ycdjmbam9nfcmm85y2a1vh38"))))
1636 (build-system perl-build-system)
1637 (propagated-inputs
1638 `(("perl-html-parser" ,perl-html-parser)
1639 ("perl-html-tagset" ,perl-html-tagset)
1640 ("perl-http-message" ,perl-http-message)
1641 ("perl-lwp-mediatypes" ,perl-lwp-mediatypes)
1642 ("perl-uri" ,perl-uri)))
1643 (home-page "http://search.cpan.org/dist/HTML-Form")
1644 (synopsis "Perl class representing an HTML form element")
1645 (description "Objects of the HTML::Form class represents a single HTML
1646 <form> ... </form> instance.")
1647 (license (package-license perl))))
1648
1649 (define-public perl-html-lint
1650 (package
1651 (name "perl-html-lint")
1652 (version "2.20")
1653 (source
1654 (origin
1655 (method url-fetch)
1656 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
1657 "HTML-Lint-" version ".tar.gz"))
1658 (sha256
1659 (base32
1660 "15vrqjnlb0f8rib1kqdf4islqy6i33h08wy7b1bkgd550p7lfjwk"))))
1661 (build-system perl-build-system)
1662 (propagated-inputs
1663 `(("perl-html-parser" ,perl-html-parser)
1664 ("perl-html-tagset" ,perl-html-tagset)
1665 ("perl-libwww" ,perl-libwww)))
1666 (home-page "http://search.cpan.org/dist/HTML-Lint")
1667 (synopsis "Check for HTML errors in a string or file")
1668 (description "HTML::Lint is a pure-Perl HTML parser and checker for
1669 syntactic legitmacy.")
1670 (license l:artistic2.0)))
1671
1672 (define-public perl-html-tree
1673 (package
1674 (name "perl-html-tree")
1675 (version "5.03")
1676 (source
1677 (origin
1678 (method url-fetch)
1679 (uri (string-append "mirror://cpan/authors/id/C/CJ/CJM/"
1680 "HTML-Tree-" version ".tar.gz"))
1681 (sha256
1682 (base32
1683 "13qlqbpixw470gnck0xgny8hyjj576m8y24bba2p9ai2lvy76vbx"))))
1684 (build-system perl-build-system)
1685 (native-inputs
1686 `(("perl-test-fatal" ,perl-test-fatal)))
1687 (propagated-inputs
1688 `(("perl-html-parser" ,perl-html-parser)
1689 ("perl-html-tagset" ,perl-html-tagset)
1690 ("perl-libwww" ,perl-libwww)))
1691 (home-page "http://search.cpan.org/dist/HTML-Tree")
1692 (synopsis "Work with HTML in a DOM-like tree structure")
1693 (description "This distribution contains a suite of modules for
1694 representing, creating, and extracting information from HTML syntax trees.")
1695 (license (package-license perl))))
1696
1697 (define-public perl-html-parser
1698 (package
1699 (name "perl-html-parser")
1700 (version "3.71")
1701 (source (origin
1702 (method url-fetch)
1703 (uri (string-append
1704 "mirror://cpan/authors/id/G/GA/GAAS/HTML-Parser-"
1705 version ".tar.gz"))
1706 (sha256
1707 (base32
1708 "00nqzdgl7c3jilx7mil19k5jwcw3as14pvkjgxi97zyk94vqp4dy"))))
1709 (build-system perl-build-system)
1710 (inputs
1711 `(("perl-html-tagset" ,perl-html-tagset)))
1712 (license (package-license perl))
1713 (synopsis "Perl HTML parser class")
1714 (description
1715 "Objects of the HTML::Parser class will recognize markup and separate
1716 it from plain text (alias data content) in HTML documents. As different
1717 kinds of markup and text are recognized, the corresponding event handlers
1718 are invoked.")
1719 (home-page "http://search.cpan.org/~gaas/HTML-Parser/")))
1720
1721 (define-public perl-html-tagset
1722 (package
1723 (name "perl-html-tagset")
1724 (version "3.20")
1725 (source (origin
1726 (method url-fetch)
1727 (uri (string-append
1728 "mirror://cpan/authors/id/P/PE/PETDANCE/HTML-Tagset-"
1729 version ".tar.gz"))
1730 (sha256
1731 (base32
1732 "1qh8249wgr4v9vgghq77zh1d2zs176bir223a8gh3k9nksn7vcdd"))))
1733 (build-system perl-build-system)
1734 (license (package-license perl))
1735 (synopsis "Perl data tables useful in parsing HTML")
1736 (description
1737 "The HTML::Tagset module contains several data tables useful in various
1738 kinds of HTML parsing operations.")
1739 (home-page "http://search.cpan.org/dist/HTML-Tagset/")))
1740
1741 (define-public perl-http-body
1742 (package
1743 (name "perl-http-body")
1744 (version "1.19")
1745 (source
1746 (origin
1747 (method url-fetch)
1748 (uri (string-append "mirror://cpan/authors/id/G/GE/GETTY/"
1749 "HTTP-Body-" version ".tar.gz"))
1750 (sha256
1751 (base32
1752 "0ahhksj0zg6wq6glpjkxdr3byd5riwvq2f5aw21n1jcsl71nll01"))))
1753 (build-system perl-build-system)
1754 (native-inputs
1755 `(("perl-test-deep" ,perl-test-deep)))
1756 (propagated-inputs
1757 `(("perl-file-temp" ,perl-file-temp)
1758 ("perl-http-message" ,perl-http-message))) ;For HTTP::Headers
1759 (home-page "http://search.cpan.org/dist/HTTP-Body")
1760 (synopsis "HTTP Body Parser")
1761 (description "HTTP::Body parses chunks of HTTP POST data and supports
1762 application/octet-stream, application/json, application/x-www-form-urlencoded,
1763 and multipart/form-data.")
1764 (license (package-license perl))))
1765
1766 (define-public perl-http-cookiejar
1767 (package
1768 (name "perl-http-cookiejar")
1769 (version "0.006")
1770 (source
1771 (origin
1772 (method url-fetch)
1773 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
1774 "HTTP-CookieJar-" version ".tar.gz"))
1775 (sha256
1776 (base32
1777 "0c7l29ak6ba2j006ca00vnkxpyc1fvpikydjvsb24s50zf1mv7b2"))))
1778 (build-system perl-build-system)
1779 (native-inputs
1780 `(("perl-test-deep" ,perl-test-deep)
1781 ("perl-test-requires" ,perl-test-requires)
1782 ("perl-time-mock" ,perl-time-mock)))
1783 (inputs
1784 `(("perl-time-local" ,perl-time-local)
1785 ("perl-http-date" ,perl-http-date)))
1786 (home-page "http://search.cpan.org/dist/HTTP-CookieJar")
1787 (synopsis "Minimalist HTTP user agent cookie jar")
1788 (description "This module implements a minimalist HTTP user agent cookie
1789 jar in conformance with RFC 6265 <http://tools.ietf.org/html/rfc6265>.")
1790 (license l:asl2.0)))
1791
1792 (define-public perl-http-cookies
1793 (package
1794 (name "perl-http-cookies")
1795 (version "6.01")
1796 (source (origin
1797 (method url-fetch)
1798 (uri (string-append
1799 "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Cookies-"
1800 version ".tar.gz"))
1801 (sha256
1802 (base32
1803 "087bqmg22dg3vj7gssh3pcsh9y1scimkbl5h1kc8jqyfhgisvlzm"))))
1804 (build-system perl-build-system)
1805 (propagated-inputs
1806 `(("perl-http-message" ,perl-http-message)))
1807 (license (package-license perl))
1808 (synopsis "Perl HTTP cookie jars")
1809 (description
1810 "The HTTP::Cookies class is for objects that represent a cookie jar,
1811 that is, a database of all the HTTP cookies that a given LWP::UserAgent
1812 object knows about.")
1813 (home-page "http://search.cpan.org/~gaas/HTTP-Cookies/")))
1814
1815 (define-public perl-http-daemon
1816 (package
1817 (name "perl-http-daemon")
1818 (version "6.01")
1819 (source (origin
1820 (method url-fetch)
1821 (uri (string-append
1822 "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Daemon-"
1823 version ".tar.gz"))
1824 (sha256
1825 (base32
1826 "1hmd2isrkilf0q0nkxms1q64kikjmcw9imbvrjgky6kh89vqdza3"))))
1827 (build-system perl-build-system)
1828 (propagated-inputs
1829 `(("perl-http-message" ,perl-http-message)
1830 ("perl-lwp-mediatypes" ,perl-lwp-mediatypes)))
1831 (license (package-license perl))
1832 (synopsis "Perl simple http server class")
1833 (description
1834 "Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen
1835 on a socket for incoming requests. The HTTP::Daemon is a subclass of
1836 IO::Socket::INET, so you can perform socket operations directly on it too.")
1837 (home-page "http://search.cpan.org/~gaas/HTTP-Daemon/")))
1838
1839 (define-public perl-http-date
1840 (package
1841 (name "perl-http-date")
1842 (version "6.02")
1843 (source (origin
1844 (method url-fetch)
1845 (uri (string-append
1846 "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Date-"
1847 version ".tar.gz"))
1848 (sha256
1849 (base32
1850 "0cz357kafhhzw7w59iyi0wvhw7rlh5g1lh38230ckw7rl0fr9fg8"))))
1851 (build-system perl-build-system)
1852 (license (package-license perl))
1853 (synopsis "Perl date conversion routines")
1854 (description
1855 "The HTTP::Date module provides functions that deal with date formats
1856 used by the HTTP protocol (and then some more).")
1857 (home-page "http://search.cpan.org/~gaas/HTTP-Date/")))
1858
1859 (define-public perl-http-message
1860 (package
1861 (name "perl-http-message")
1862 (version "6.06")
1863 (source (origin
1864 (method url-fetch)
1865 (uri (string-append
1866 "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Message-"
1867 version ".tar.gz"))
1868 (sha256
1869 (base32
1870 "0qxdrcak97azjvqyx1anpb2ky6vp6vc37x0wcfjdqfajkh09fzh8"))))
1871 (build-system perl-build-system)
1872 (propagated-inputs
1873 `(("perl-http-date" ,perl-http-date)
1874 ("perl-io-html" ,perl-io-html)
1875 ("perl-lwp-mediatypes" ,perl-lwp-mediatypes)
1876 ("perl-uri" ,perl-uri)))
1877 (license (package-license perl))
1878 (synopsis "Perl HTTP style message")
1879 (description
1880 "An HTTP::Message object contains some headers and a content body.")
1881 (home-page "http://search.cpan.org/~gaas/HTTP-Message/")))
1882
1883 (define-public perl-http-negotiate
1884 (package
1885 (name "perl-http-negotiate")
1886 (version "6.01")
1887 (source (origin
1888 (method url-fetch)
1889 (uri (string-append
1890 "mirror://cpan/authors/id/G/GA/GAAS/HTTP-Negotiate-"
1891 version ".tar.gz"))
1892 (sha256
1893 (base32
1894 "05p053vjs5g91v5cmjnny7a3xzddz5k7vnjw81wfh01ilqg9qwhw"))))
1895 (build-system perl-build-system)
1896 (propagated-inputs
1897 `(("perl-http-message" ,perl-http-message)))
1898 (license (package-license perl))
1899 (synopsis "Perl http content negotiation")
1900 (description
1901 "The HTTP::Negotiate module provides a complete implementation of the
1902 HTTP content negotiation algorithm specified in
1903 draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for
1904 the selection of a preferred content representation based upon attributes
1905 of the negotiable variants and the value of the various Accept* header
1906 fields in the request.")
1907 (home-page "http://search.cpan.org/~gaas/HTTP-Negotiate/")))
1908
1909 (define-public perl-http-parser
1910 (package
1911 (name "perl-http-parser")
1912 (version "0.06")
1913 (source
1914 (origin
1915 (method url-fetch)
1916 (uri (string-append "mirror://cpan/authors/id/E/ED/EDECA/"
1917 "HTTP-Parser-" version ".tar.gz"))
1918 (sha256
1919 (base32
1920 "0idwq3jk595xil65lmxz128ha7s3r2n5zknisddpgwnqrghs3igq"))))
1921 (build-system perl-build-system)
1922 (propagated-inputs
1923 `(("perl-http-message" ,perl-http-message)
1924 ("perl-uri" ,perl-uri)))
1925 (home-page "http://search.cpan.org/dist/HTTP-Parser")
1926 (synopsis "Parse HTTP/1.1 requests")
1927 (description "This is an HTTP request parser. It takes chunks of text as
1928 received and returns a 'hint' as to what is required, or returns the
1929 HTTP::Request when a complete request has been read. HTTP/1.1 chunking is
1930 supported.")
1931 (license (package-license perl))))
1932
1933 (define-public perl-http-parser-xs
1934 (package
1935 (name "perl-http-parser-xs")
1936 (version "0.17")
1937 (source
1938 (origin
1939 (method url-fetch)
1940 (uri (string-append "mirror://cpan/authors/id/K/KA/KAZUHO/"
1941 "HTTP-Parser-XS-" version ".tar.gz"))
1942 (sha256
1943 (base32
1944 "02d84xq1mm53c7jl33qyb7v5w4372vydp74z6qj0vc96wcrnhkkr"))))
1945 (build-system perl-build-system)
1946 (home-page "http://search.cpan.org/dist/HTTP-Parser-XS")
1947 (synopsis "Fast HTTP request parser")
1948 (description "HTTP::Parser::XS is a fast, primitive HTTP request/response
1949 parser.")
1950 (license (package-license perl))))
1951
1952 (define-public perl-http-request-ascgi
1953 (package
1954 (name "perl-http-request-ascgi")
1955 (version "1.2")
1956 (source
1957 (origin
1958 (method url-fetch)
1959 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
1960 "HTTP-Request-AsCGI-" version ".tar.gz"))
1961 (sha256
1962 (base32
1963 "1smwmiarwcgq7vjdblnb6ldi2x1s5sk5p15p7xvm5byiqq3znnwl"))))
1964 (build-system perl-build-system)
1965 (propagated-inputs
1966 `(("perl-class-accessor" ,perl-class-accessor)
1967 ("perl-http-message" ,perl-http-message)))
1968 (home-page "http://search.cpan.org/dist/HTTP-Request-AsCGI")
1969 (synopsis "Set up a CGI environment from an HTTP::Request")
1970 (description "This module provides a convenient way to set up a CGI
1971 environment from an HTTP::Request.")
1972 (license (package-license perl))))
1973
1974 (define-public perl-http-server-simple
1975 (package
1976 (name "perl-http-server-simple")
1977 (version "0.44")
1978 (source
1979 (origin
1980 (method url-fetch)
1981 (uri (string-append "mirror://cpan/authors/id/J/JE/JESSE/"
1982 "HTTP-Server-Simple-" version ".tar.gz"))
1983 (sha256
1984 (base32
1985 "05klpfkss2a6i5ihmvcm27fyar0f2v4ispg2f49agab3va1gix6g"))))
1986 (build-system perl-build-system)
1987 (arguments
1988 ;; See the discussion of a related tests issue at
1989 ;; https://lists.gnu.org/archive/html/guix-devel/2015-01/msg00346.html
1990 `(#:tests? #f))
1991 (home-page "http://search.cpan.org/dist/HTTP-Server-Simple")
1992 (synopsis "Lightweight HTTP server")
1993 (description "HTTP::Server::Simple is a simple standalone HTTP daemon with
1994 no non-core module dependencies. It can be used for building a standalone
1995 http-based UI to your existing tools.")
1996 (license (package-license perl))))
1997
1998 (define-public perl-http-tiny
1999 (package
2000 (name "perl-http-tiny")
2001 (version "0.053")
2002 (source
2003 (origin
2004 (method url-fetch)
2005 (uri (string-append "mirror://cpan/authors/id/D/DA/DAGOLDEN/"
2006 "HTTP-Tiny-" version ".tar.gz"))
2007 (sha256
2008 (base32
2009 "1bwy31xrcz5zfx1n3vc50vj1aqvzn5ccr7lgacl8wmi03a6w2af2"))))
2010 (build-system perl-build-system)
2011 (inputs
2012 `(("perl-http-cookiejar" ,perl-http-cookiejar)
2013 ("perl-io-socket-ip" ,perl-io-socket-ip)
2014 ("perl-io-socket-ssl" ,perl-io-socket-ssl)
2015 ("perl-net-ssleay" ,perl-net-ssleay)))
2016 (home-page "http://search.cpan.org/dist/HTTP-Tiny")
2017 (synopsis "HTTP/1.1 client")
2018 (description "This is a very simple HTTP/1.1 client, designed for doing
2019 simple requests without the overhead of a large framework like LWP::UserAgent.
2020 It supports proxies and redirection. It also correctly resumes after EINTR.")
2021 (license (package-license perl))))
2022
2023 (define-public perl-io-html
2024 (package
2025 (name "perl-io-html")
2026 (version "1.00")
2027 (source (origin
2028 (method url-fetch)
2029 (uri (string-append
2030 "mirror://cpan/authors/id/C/CJ/CJM/IO-HTML-"
2031 version ".tar.gz"))
2032 (sha256
2033 (base32
2034 "06nj3a0xgp5jxwxx6ayglfk2v7npf5a7gwkqsjlkapjkybarzqh4"))))
2035 (build-system perl-build-system)
2036 (license (package-license perl))
2037 (synopsis "Perl module to open an HTML file with automatic charset detection")
2038 (description
2039 "IO::HTML provides an easy way to open a file containing HTML while
2040 automatically determining its encoding. It uses the HTML5 encoding sniffing
2041 algorithm specified in section 8.2.2.1 of the draft standard.")
2042 (home-page "http://search.cpan.org/~cjm/IO-HTML/")))
2043
2044 (define-public perl-io-socket-ip
2045 (package
2046 (name "perl-io-socket-ip")
2047 (version "0.36")
2048 (source
2049 (origin
2050 (method url-fetch)
2051 (uri (string-append "mirror://cpan/authors/id/P/PE/PEVANS/"
2052 "IO-Socket-IP-" version ".tar.gz"))
2053 (sha256
2054 (base32
2055 "0ky20hmln6waipzqikizyw04vpszf70fgpshz7ib8zv8480ri456"))))
2056 (build-system perl-build-system)
2057 (home-page "http://search.cpan.org/dist/IO-Socket-IP")
2058 (synopsis "Family-neutral IP socket supporting both IPv4 and IPv6")
2059 (description "This module provides a protocol-independent way to use IPv4
2060 and IPv6 sockets, intended as a replacement for IO::Socket::INET.")
2061 (license (package-license perl))))
2062
2063 (define-public perl-io-socket-ssl
2064 (package
2065 (name "perl-io-socket-ssl")
2066 (version "2.002")
2067 (source (origin
2068 (method url-fetch)
2069 (uri (string-append "mirror://cpan/authors/id/S/SU/SULLR/"
2070 "IO-Socket-SSL-" version ".tar.gz"))
2071 (sha256
2072 (base32
2073 "1mph52lw6x5v44wf8mw00llzi8pp6k5c4jnrnrvlacrlfv260jb8"))))
2074 (build-system perl-build-system)
2075 (propagated-inputs `(("perl-net-ssleay" ,perl-net-ssleay)))
2076 (synopsis "Nearly transparent SSL encapsulation for IO::Socket::INET")
2077 (description
2078 "IO::Socket::SSL makes using SSL/TLS much easier by wrapping the
2079 necessary functionality into the familiar IO::Socket interface and providing
2080 secure defaults whenever possible. This way existing applications can be made
2081 SSL-aware without much effort, at least if you do blocking I/O and don't use
2082 select or poll.")
2083 (license (package-license perl))
2084 (home-page "https://github.com/noxxi/p5-io-socket-ssl")))
2085
2086 (define-public perl-libwww
2087 (package
2088 (name "perl-libwww")
2089 (version "6.13")
2090 (source (origin
2091 (method url-fetch)
2092 (uri (string-append
2093 "mirror://cpan/authors/id/E/ET/ETHER/libwww-perl-"
2094 version ".tar.gz"))
2095 (sha256
2096 (base32
2097 "1cpqjl59viw50bnbdyn8xzrwzg7g54b2rszw0fifacqrppp17gaz"))))
2098 (build-system perl-build-system)
2099 (propagated-inputs
2100 `(("perl-encode-locale" ,perl-encode-locale)
2101 ("perl-file-listing" ,perl-file-listing)
2102 ("perl-html-parser" ,perl-html-parser)
2103 ("perl-http-cookies" ,perl-http-cookies)
2104 ("perl-http-daemon" ,perl-http-daemon)
2105 ("perl-http-negotiate" ,perl-http-negotiate)
2106 ("perl-net-http" ,perl-net-http)
2107 ("perl-www-robotrules" ,perl-www-robotrules)))
2108 (license (package-license perl))
2109 (synopsis "Perl modules for the WWW")
2110 (description
2111 "The libwww-perl collection is a set of Perl modules which provides a
2112 simple and consistent application programming interface to the
2113 World-Wide Web. The main focus of the library is to provide classes
2114 and functions that allow you to write WWW clients. The library also
2115 contains modules that are of more general use and even classes that
2116 help you implement simple HTTP servers.")
2117 (home-page "http://search.cpan.org/dist/libwww-perl/")))
2118
2119 (define-public perl-lwp-mediatypes
2120 (package
2121 (name "perl-lwp-mediatypes")
2122 (version "6.02")
2123 (source (origin
2124 (method url-fetch)
2125 (uri (string-append
2126 "mirror://cpan/authors/id/G/GA/GAAS/LWP-MediaTypes-"
2127 version ".tar.gz"))
2128 (sha256
2129 (base32
2130 "0xmnblp962qy02akah30sji8bxrqcyqlff2w95l199ghql60ny8q"))))
2131 (build-system perl-build-system)
2132 (license (package-license perl))
2133 (synopsis "Perl module to guess the media type for a file or a URL")
2134 (description
2135 "The LWP::MediaTypes module provides functions for handling media (also
2136 known as MIME) types and encodings. The mapping from file extensions to
2137 media types is defined by the media.types file. If the ~/.media.types file
2138 exists it is used instead.")
2139 (home-page "http://search.cpan.org/~gaas/LWP-MediaTypes/")))
2140
2141 (define-public perl-lwp-protocol-https
2142 (package
2143 (name "perl-lwp-protocol-https")
2144 (version "6.06")
2145 (source
2146 (origin
2147 (method url-fetch)
2148 (uri (string-append "mirror://cpan/authors/id/M/MS/MSCHILLI/"
2149 "LWP-Protocol-https-" version ".tar.gz"))
2150 (sha256
2151 (base32
2152 "1vxdjqj4bwq56m9h1bqqwkk3c6jr76f2zqzvwa26yjng3p686v5q"))))
2153 (build-system perl-build-system)
2154 (propagated-inputs
2155 `(("perl-io-socket-ssl" ,perl-io-socket-ssl)
2156 ("perl-libwww" ,perl-libwww)
2157 ;; Users should instead make sure SSL_ca_path is set properly.
2158 ;; ("perl-mozilla-ca" ,perl-mozilla-ca)
2159 ("perl-net-http" ,perl-net-http)))
2160 (home-page "http://search.cpan.org/dist/LWP-Protocol-https")
2161 (synopsis "HTTPS support for LWP::UserAgent")
2162 (description "The LWP::Protocol::https module provides support for using
2163 https schemed URLs with LWP.")
2164 (license (package-license perl))))
2165
2166 (define-public perl-lwp-useragent-determined
2167 (package
2168 (name "perl-lwp-useragent-determined")
2169 (version "1.07")
2170 (source
2171 (origin
2172 (method url-fetch)
2173 (uri (string-append "mirror://cpan/authors/id/A/AL/ALEXMV/"
2174 "LWP-UserAgent-Determined-" version ".tar.gz"))
2175 (sha256
2176 (base32
2177 "0lyvbpjng7yfvyha9rp2y2c6liz5hhplmd2grc8jlsfkih7dbn06"))))
2178 (build-system perl-build-system)
2179 (propagated-inputs
2180 `(("perl-libwww" ,perl-libwww)))
2181 (home-page "http://search.cpan.org/dist/LWP-UserAgent-Determined")
2182 (synopsis "Virtual browser that retries errors")
2183 (description "LWP::UserAgent::Determined works just like LWP::UserAgent,
2184 except that when you use it to get a web page but run into a
2185 possibly-temporary error (like a DNS lookup timeout), it'll wait a few seconds
2186 and retry a few times.")
2187 (license (package-license perl))))
2188
2189 (define-public perl-net-amazon-s3
2190 (package
2191 (name "perl-net-amazon-s3")
2192 (version "0.60")
2193 (source
2194 (origin
2195 (method url-fetch)
2196 (uri (string-append "mirror://cpan/authors/id/P/PF/PFIG/"
2197 "Net-Amazon-S3-" version ".tar.gz"))
2198 (sha256
2199 (base32
2200 "10dcsq4s2kc9cb1vccx17r187c81drirc3s1hbxh3rb8489kg2b2"))
2201 (patches (list
2202 (search-patch "perl-net-amazon-s3-moose-warning.patch")))))
2203 (build-system perl-build-system)
2204 (native-inputs
2205 `(("perl-libwww" ,perl-libwww)
2206 ("perl-test-exception" ,perl-test-exception)))
2207 (propagated-inputs
2208 `(("perl-data-stream-bulk" ,perl-data-stream-bulk)
2209 ("perl-datetime-format-http" ,perl-datetime-format-http)
2210 ("perl-digest-hmac" ,perl-digest-hmac)
2211 ("perl-digest-md5-file" ,perl-digest-md5-file)
2212 ("perl-file-find-rule" ,perl-file-find-rule)
2213 ("perl-http-date" ,perl-http-date)
2214 ("perl-http-message" ,perl-http-message)
2215 ("perl-lwp-useragent-determined" ,perl-lwp-useragent-determined)
2216 ("perl-mime-types" ,perl-mime-types)
2217 ("perl-moose" ,perl-moose)
2218 ("perl-moosex-strictconstructor" ,perl-moosex-strictconstructor)
2219 ("perl-moosex-types-datetime-morecoercions"
2220 ,perl-moosex-types-datetime-morecoercions)
2221 ("perl-path-class" ,perl-path-class)
2222 ("perl-regexp-common" ,perl-regexp-common)
2223 ("perl-term-encoding" ,perl-term-encoding)
2224 ("perl-term-progressbar-simple" ,perl-term-progressbar-simple)
2225 ("perl-uri" ,perl-uri)
2226 ("perl-xml-libxml" ,perl-xml-libxml)))
2227 (home-page "http://search.cpan.org/dist/Net-Amazon-S3")
2228 (synopsis "Perl interface to Amazon S3")
2229 (description "This module provides a Perlish interface to Amazon S3.")
2230 (license (package-license perl))))
2231
2232 (define-public perl-net-http
2233 (package
2234 (name "perl-net-http")
2235 (version "6.07")
2236 (source (origin
2237 (method url-fetch)
2238 (uri (string-append
2239 "mirror://cpan/authors/id/M/MS/MSCHILLI/Net-HTTP-"
2240 version ".tar.gz"))
2241 (sha256
2242 (base32
2243 "0r034hhci0yqbrkrh1gv6vi5g3i0kpd1k84z62nk02asb8rf0ccz"))))
2244 (build-system perl-build-system)
2245 (propagated-inputs
2246 `(("perl-io-socket-ssl" ,perl-io-socket-ssl)
2247 ("perl-uri" ,perl-uri)))
2248 (license (package-license perl))
2249 (synopsis "Perl low-level HTTP connection (client)")
2250 (description
2251 "The Net::HTTP class is a low-level HTTP client. An instance of the
2252 Net::HTTP class represents a connection to an HTTP server. The HTTP protocol
2253 is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and
2254 HTTP/1.1.")
2255 (home-page "http://search.cpan.org/dist/Net-HTTP")))
2256
2257 (define-public perl-net-server
2258 (package
2259 (name "perl-net-server")
2260 (version "2.008")
2261 (source
2262 (origin
2263 (method url-fetch)
2264 (uri (string-append "mirror://cpan/authors/id/R/RH/RHANDOM/"
2265 "Net-Server-" version ".tar.gz"))
2266 (sha256
2267 (base32
2268 "182gfikn7r40kmm3d35m2qc6r8g0y1j8gxbn9ffaawf8xmm0a889"))))
2269 (build-system perl-build-system)
2270 (home-page "http://search.cpan.org/dist/Net-Server")
2271 (synopsis "Extensible Perl server engine")
2272 (description "Net::Server is an extensible, generic Perl server engine.
2273 It attempts to be a generic server as in Net::Daemon and NetServer::Generic.
2274 It includes with it the ability to run as an inetd
2275 process (Net::Server::INET), a single connection server (Net::Server or
2276 Net::Server::Single), a forking server (Net::Server::Fork), a preforking
2277 server which maintains a constant number of preforked
2278 children (Net::Server::PreForkSimple), or as a managed preforking server which
2279 maintains the number of children based on server load (Net::Server::PreFork).
2280 In all but the inetd type, the server provides the ability to connect to one
2281 or to multiple server ports.")
2282 (license (package-license perl))))
2283
2284 (define-public perl-net-smtp-ssl
2285 (package
2286 (name "perl-net-smtp-ssl")
2287 (version "1.03")
2288 (source
2289 (origin
2290 (method url-fetch)
2291 (uri (string-append "https://cpan.metacpan.org/authors/id/R/RJ/RJBS/"
2292 "Net-SMTP-SSL-" version ".tar.gz"))
2293 (sha256
2294 (base32
2295 "05y94mb1vdw32mvwb0cp2h4ggh32f8j8nwwfjb8kjwxvfkfhyp9h"))))
2296 (build-system perl-build-system)
2297 (propagated-inputs
2298 `(("perl-io-socket-ssl" ,perl-io-socket-ssl)))
2299 (home-page "http://search.cpan.org/dist/Net-SMTP-SSL")
2300 (synopsis "SSL support for Net::SMTP")
2301 (description "SSL support for Net::SMTP.")
2302 (license (package-license perl))))
2303
2304 (define-public perl-plack
2305 (package
2306 (name "perl-plack")
2307 (version "1.0033")
2308 (source
2309 (origin
2310 (method url-fetch)
2311 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2312 "Plack-" version ".tar.gz"))
2313 (sha256
2314 (base32
2315 "081jg0xddzpg2anmqi9i6d7vs6c8z7k557bf8xl6vgb3h95pin5w"))))
2316 (build-system perl-build-system)
2317 (native-inputs
2318 `(("perl-test-requires" ,perl-test-requires)
2319 ("perl-file-sharedir-install" ,perl-file-sharedir-install)))
2320 (propagated-inputs
2321 `(("perl-apache-logformat-compiler" ,perl-apache-logformat-compiler)
2322 ("perl-devel-stacktrace" ,perl-devel-stacktrace)
2323 ("perl-devel-stacktrace-ashtml" ,perl-devel-stacktrace-ashtml)
2324 ("perl-file-sharedir" ,perl-file-sharedir)
2325 ("perl-hash-multivalue" ,perl-hash-multivalue)
2326 ("perl-http-body" ,perl-http-body)
2327 ("perl-http-message" ,perl-http-message)
2328 ("perl-http-tiny" ,perl-http-tiny)
2329 ("perl-libwww" ,perl-libwww)
2330 ("perl-stream-buffered" ,perl-stream-buffered)
2331 ("perl-test-tcp" ,perl-test-tcp)
2332 ("perl-try-tiny" ,perl-try-tiny)
2333 ("perl-uri" ,perl-uri)))
2334 (home-page "http://search.cpan.org/dist/Plack")
2335 (synopsis "Perl Superglue for Web frameworks and servers (PSGI toolkit)")
2336 (description "Plack is a set of tools for using the PSGI stack. It
2337 contains middleware components, a reference server, and utilities for Web
2338 application frameworks. Plack is like Ruby's Rack or Python's Paste for
2339 WSGI.")
2340 (license (package-license perl))))
2341
2342 (define-public perl-plack-middleware-fixmissingbodyinredirect
2343 (package
2344 (name "perl-plack-middleware-fixmissingbodyinredirect")
2345 (version "0.12")
2346 (source
2347 (origin
2348 (method url-fetch)
2349 (uri (string-append "mirror://cpan/authors/id/S/SW/SWEETKID/"
2350 "Plack-Middleware-FixMissingBodyInRedirect-"
2351 version ".tar.gz"))
2352 (sha256
2353 (base32
2354 "14dkrmccq7a5vpymx5dv8032gfcvhsw2i6v5sh3c4ym5ymlx08kc"))))
2355 (build-system perl-build-system)
2356 (native-inputs
2357 `(("perl-html-parser" ,perl-html-parser) ;for HTML::Entities
2358 ("perl-http-message" ,perl-http-message)
2359 ("perl-plack" ,perl-plack))) ;for Plack::Test
2360 (home-page
2361 "http://search.cpan.org/dist/Plack-Middleware-FixMissingBodyInRedirect")
2362 (synopsis "Plack::Middleware which sets body for redirect response")
2363 (description "This module sets the body in redirect response, if it's not
2364 already set.")
2365 (license (package-license perl))))
2366
2367 (define-public perl-plack-middleware-methodoverride
2368 (package
2369 (name "perl-plack-middleware-methodoverride")
2370 (version "0.11")
2371 (source
2372 (origin
2373 (method url-fetch)
2374 (uri (string-append "mirror://cpan/authors/id/D/DW/DWHEELER/"
2375 "Plack-Middleware-MethodOverride-"
2376 version ".tar.gz"))
2377 (sha256
2378 (base32
2379 "1hb8dx7i4vs74n0p737wrvpdnnw6argxrjpr6kj6432zabp8325z"))))
2380 (build-system perl-build-system)
2381 (propagated-inputs
2382 `(("perl-plack" ,perl-plack)))
2383 (home-page "http://search.cpan.org/dist/Plack-Middleware-MethodOverride")
2384 (synopsis "Override REST methods to Plack apps via POST")
2385 (description "This middleware allows for POST requests that pretend to be
2386 something else: by adding either a header named X-HTTP-Method-Override to the
2387 request, or a query parameter named x-tunneled-method to the URI, the client
2388 can say what method it actually meant.")
2389 (license (package-license perl))))
2390
2391 (define-public perl-plack-middleware-removeredundantbody
2392 (package
2393 (name "perl-plack-middleware-removeredundantbody")
2394 (version "0.05")
2395 (source
2396 (origin
2397 (method url-fetch)
2398 (uri (string-append "mirror://cpan/authors/id/S/SW/SWEETKID/"
2399 "Plack-Middleware-RemoveRedundantBody-"
2400 version ".tar.gz"))
2401 (sha256
2402 (base32
2403 "1n3wm0zi8dnk54jx937asl951lslj3jvw0fry4jpzsibg4f6wrx0"))))
2404 (build-system perl-build-system)
2405 (propagated-inputs
2406 `(("perl-plack" ,perl-plack)))
2407 (home-page
2408 "http://search.cpan.org/dist/Plack-Middleware-RemoveRedundantBody")
2409 (synopsis "Plack::Middleware which removes body for HTTP response")
2410 (description "This module removes the body in an HTTP response if it's not
2411 required.")
2412 (license (package-license perl))))
2413
2414 (define-public perl-plack-middleware-reverseproxy
2415 (package
2416 (name "perl-plack-middleware-reverseproxy")
2417 (version "0.15")
2418 (source
2419 (origin
2420 (method url-fetch)
2421 (uri (string-append "mirror://cpan/authors/id/M/MI/MIYAGAWA/"
2422 "Plack-Middleware-ReverseProxy-"
2423 version ".tar.gz"))
2424 (sha256
2425 (base32
2426 "1zmsccdy6wr5hxzj07r1nsmaymyibk87p95z0wzknjw10lwmqs9f"))))
2427 (build-system perl-build-system)
2428 (propagated-inputs
2429 `(("perl-plack" ,perl-plack)))
2430 (home-page "http://search.cpan.org/dist/Plack-Middleware-ReverseProxy")
2431 (synopsis "Supports app to run as a reverse proxy backend")
2432 (description "Plack::Middleware::ReverseProxy resets some HTTP headers,
2433 which are changed by reverse-proxy. You can specify the reverse proxy address
2434 and stop fake requests using 'enable_if' directive in your app.psgi.")
2435 (license (package-license perl))))
2436
2437 (define-public perl-plack-test-externalserver
2438 (package
2439 (name "perl-plack-test-externalserver")
2440 (version "0.01")
2441 (source
2442 (origin
2443 (method url-fetch)
2444 (uri (string-append "mirror://cpan/authors/id/F/FL/FLORA/"
2445 "Plack-Test-ExternalServer-" version ".tar.gz"))
2446 (sha256
2447 (base32
2448 "1dbg1p3rgvvbkkpvca5jlc2mzx8iqyiybk88al93pvbca65h1g7h"))))
2449 (build-system perl-build-system)
2450 (propagated-inputs
2451 `(("perl-plack" ,perl-plack)))
2452 (home-page "http://search.cpan.org/dist/Plack-Test-ExternalServer")
2453 (synopsis "Run HTTP tests on external live servers")
2454 (description "This module allows your to run your Plack::Test tests
2455 against an external server instead of just against a local application through
2456 either mocked HTTP or a locally spawned server.")
2457 (license (package-license perl))))
2458
2459 (define-public perl-test-tcp
2460 (package
2461 (name "perl-test-tcp")
2462 (version "2.06")
2463 (source
2464 (origin
2465 (method url-fetch)
2466 (uri (string-append "mirror://cpan/authors/id/T/TO/TOKUHIROM/"
2467 "Test-TCP-" version ".tar.gz"))
2468 (sha256
2469 (base32
2470 "0acjwm21y2an4f3fasci9qa0isakh9cgp74fk0bzcdi506xmcjbi"))))
2471 (build-system perl-build-system)
2472 (propagated-inputs
2473 `(("perl-test-sharedfork" ,perl-test-sharedfork)))
2474 (arguments `(#:tests? #f)) ;related to signaling in t/05_sigint.t
2475 (home-page "http://search.cpan.org/dist/Test-TCP")
2476 (synopsis "Testing TCP programs")
2477 (description "Test::TCP is test utilities for TCP/IP programs.")
2478 (license (package-license perl))))
2479
2480 (define-public perl-test-www-mechanize
2481 (package
2482 (name "perl-test-www-mechanize")
2483 (version "1.44")
2484 (source
2485 (origin
2486 (method url-fetch)
2487 (uri (string-append "mirror://cpan/authors/id/P/PE/PETDANCE/"
2488 "Test-WWW-Mechanize-" version ".tar.gz"))
2489 (sha256
2490 (base32
2491 "062pj242vsc73bw11jqpap92ax9wzc9f2m4xhyp1wzrwkfchpl2q"))))
2492 (build-system perl-build-system)
2493 (native-inputs
2494 `(("perl-test-exception" ,perl-test-exception)))
2495 (propagated-inputs
2496 `(("perl-carp-assert-more" ,perl-carp-assert-more)
2497 ("perl-html-form" ,perl-html-form)
2498 ("perl-html-lint" ,perl-html-lint)
2499 ("perl-html-tree" ,perl-html-tree)
2500 ("perl-http-server-simple" ,perl-http-server-simple)
2501 ("perl-libwww" ,perl-libwww)
2502 ("perl-test-longstring" ,perl-test-longstring)
2503 ("perl-www-mechanize" ,perl-www-mechanize)))
2504 (home-page "http://search.cpan.org/dist/Test-WWW-Mechanize")
2505 (synopsis "Testing-specific WWW::Mechanize subclass")
2506 (description "Test::WWW::Mechanize is a subclass of the Perl module
2507 WWW::Mechanize that incorporates features for web application testing.")
2508 (license l:artistic2.0)))
2509
2510 (define-public perl-test-www-mechanize-catalyst
2511 (package
2512 (name "perl-test-www-mechanize-catalyst")
2513 (version "0.60")
2514 (source
2515 (origin
2516 (method url-fetch)
2517 (uri (string-append "mirror://cpan/authors/id/J/JJ/JJNAPIORK/"
2518 "Test-WWW-Mechanize-Catalyst-" version ".tar.gz"))
2519 (sha256
2520 (base32
2521 "0nhhfrrai3ndziz873vpa1j0vljjnib4wqafd6yyvkf58ad7v0lv"))))
2522 (build-system perl-build-system)
2523 (native-inputs
2524 `(("perl-catalyst-plugin-session" ,perl-catalyst-plugin-session)
2525 ("perl-catalyst-plugin-session-state-cookie"
2526 ,perl-catalyst-plugin-session-state-cookie)
2527 ("perl-test-exception" ,perl-test-exception)
2528 ("perl-test-pod" ,perl-test-pod)
2529 ("perl-test-utf8" ,perl-test-utf8)))
2530 (propagated-inputs
2531 `(("perl-catalyst-runtime" ,perl-catalyst-runtime)
2532 ("perl-class-load" ,perl-class-load)
2533 ("perl-libwww" ,perl-libwww)
2534 ("perl-moose" ,perl-moose)
2535 ("perl-namespace-clean" ,perl-namespace-clean)
2536 ("perl-test-www-mechanize" ,perl-test-www-mechanize)
2537 ("perl-www-mechanize" ,perl-www-mechanize)))
2538 (home-page "http://search.cpan.org/dist/Test-WWW-Mechanize-Catalyst")
2539 (synopsis "Test::WWW::Mechanize for Catalyst")
2540 (description "The Test::WWW::Mechanize::Catalyst module meshes the
2541 Test::WWW:Mechanize module and the Catalyst web application framework to allow
2542 testing of Catalyst applications without needing to start up a web server.")
2543 (license (package-license perl))))
2544
2545 (define-public perl-test-www-mechanize-psgi
2546 (package
2547 (name "perl-test-www-mechanize-psgi")
2548 (version "0.35")
2549 (source
2550 (origin
2551 (method url-fetch)
2552 (uri (string-append "mirror://cpan/authors/id/L/LB/LBROCARD/"
2553 "Test-WWW-Mechanize-PSGI-" version ".tar.gz"))
2554 (sha256
2555 (base32
2556 "1hih8s49zf38bisvhnhzrrj0zwyiivkrbs7nmmdqm1qqy27wv7pc"))))
2557 (build-system perl-build-system)
2558 (native-inputs
2559 `(("perl-test-pod" ,perl-test-pod)))
2560 (propagated-inputs
2561 `(("perl-plack" ,perl-plack)
2562 ("perl-test-www-mechanize" ,perl-test-www-mechanize)))
2563 (home-page "http://search.cpan.org/dist/Test-WWW-Mechanize-PSGI")
2564 (synopsis "Test PSGI programs using WWW::Mechanize")
2565 (description "PSGI is a specification to decouple web server environments
2566 from web application framework code. Test::WWW::Mechanize is a subclass of
2567 WWW::Mechanize that incorporates features for web application testing. The
2568 Test::WWW::Mechanize::PSGI module meshes the two to allow easy testing of PSGI
2569 applications.")
2570 (license (package-license perl))))
2571
2572 (define-public perl-uri
2573 (package
2574 (name "perl-uri")
2575 (version "1.67")
2576 (source (origin
2577 (method url-fetch)
2578 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2579 "URI-" version ".tar.gz"))
2580 (sha256
2581 (base32
2582 "0ki7i830gs0cwwwjsyv3s6yy1l76ym8pfqp0lp7vw0j9bwyx923h"))))
2583 (build-system perl-build-system)
2584 (license (package-license perl))
2585 (synopsis "Perl Uniform Resource Identifiers (absolute and relative)")
2586 (description
2587 "The URI module implements the URI class. Objects of this class
2588 represent \"Uniform Resource Identifier references\" as specified in RFC 2396
2589 and updated by RFC 2732.")
2590 (home-page "http://search.cpan.org/dist/URI/")))
2591
2592 (define-public perl-uri-find
2593 (package
2594 (name "perl-uri-find")
2595 (version "20140709")
2596 (source
2597 (origin
2598 (method url-fetch)
2599 (uri (string-append "mirror://cpan/authors/id/M/MS/MSCHWERN/"
2600 "URI-Find-" version ".tar.gz"))
2601 (sha256
2602 (base32
2603 "0czc4h182s7sx3k123m7qlg7yybnwxgh369hap3c3b6xgrglrhy0"))))
2604 (build-system perl-build-system)
2605 (propagated-inputs
2606 `(("perl-uri" ,perl-uri)))
2607 (home-page "http://search.cpan.org/dist/URI-Find")
2608 (synopsis "Find URIs in arbitrary text")
2609 (description "This module finds URIs and URLs (according to what URI.pm
2610 considers a URI) in plain text. It only finds URIs which include a
2611 scheme (http:// or the like), for something a bit less strict, consider
2612 URI::Find::Schemeless. For a command-line interface, urifind is provided.")
2613 (license (package-license perl))))
2614
2615 (define-public perl-uri-ws
2616 (package
2617 (name "perl-uri-ws")
2618 (version "0.03")
2619 (source
2620 (origin
2621 (method url-fetch)
2622 (uri (string-append "mirror://cpan/authors/id/P/PL/PLICEASE/"
2623 "URI-ws-" version ".tar.gz"))
2624 (sha256
2625 (base32
2626 "1vs1wm80sq685944g1l4a0fxcbccc00c0f9648yabdmcf90hwsvf"))))
2627 (build-system perl-build-system)
2628 (propagated-inputs
2629 `(("perl-uri" ,perl-uri)))
2630 (home-page "http://search.cpan.org/dist/URI-ws")
2631 (synopsis "WebSocket support for URI package")
2632 (description "With this module, the URI package provides the same set of
2633 methods for WebSocket URIs as it does for HTTP URIs.")
2634 (license (package-license perl))))
2635
2636 (define-public perl-www-curl
2637 (package
2638 (name "perl-www-curl")
2639 (version "4.17")
2640 (source (origin
2641 (method url-fetch)
2642 (uri (string-append
2643 "mirror://cpan/authors/id/S/SZ/SZBALINT/WWW-Curl-"
2644 version".tar.gz"))
2645 (sha256
2646 (base32
2647 "1fmp9aib1kaps9vhs4dwxn7b15kgnlz9f714bxvqsd1j1q8spzsj"))))
2648 (build-system perl-build-system)
2649 (arguments
2650 '(#:tests? #f)) ;XXX: tests require network access
2651 (inputs `(("curl" ,curl)))
2652 (synopsis "Perl extension interface for libcurl")
2653 (description
2654 "This is a Perl extension interface for the libcurl file downloading
2655 library.")
2656 (license (package-license perl))
2657 (home-page "http://search.cpan.org/~szbalint/WWW-Curl-4.17/lib/WWW/Curl.pm")))
2658
2659 (define-public perl-www-mechanize
2660 (package
2661 (name "perl-www-mechanize")
2662 (version "1.73")
2663 (source
2664 (origin
2665 (method url-fetch)
2666 (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/"
2667 "WWW-Mechanize-" version ".tar.gz"))
2668 (sha256
2669 (base32
2670 "1zrw8aadhwy48q51x2z2rqlkwf17bya4j4h3hy89mw783j96rmg9"))))
2671 (build-system perl-build-system)
2672 (propagated-inputs
2673 `(("perl-html-form" ,perl-html-form)
2674 ("perl-html-parser" ,perl-html-parser)
2675 ("perl-http-message" ,perl-http-message)
2676 ("perl-http-server-simple" ,perl-http-server-simple)
2677 ("perl-libwww" ,perl-libwww)
2678 ("perl-test-warn" ,perl-test-warn)
2679 ("perl-uri" ,perl-uri)))
2680 (home-page "http://search.cpan.org/dist/WWW-Mechanize")
2681 (synopsis "Web browsing in a Perl object")
2682 (description "WWW::Mechanize is a Perl module for stateful programmatic
2683 web browsing, used for automating interaction with websites.")
2684 (license (package-license perl))))
2685
2686 (define-public perl-www-robotrules
2687 (package
2688 (name "perl-www-robotrules")
2689 (version "6.02")
2690 (source (origin
2691 (method url-fetch)
2692 (uri (string-append
2693 "mirror://cpan/authors/id/G/GA/GAAS/WWW-RobotRules-"
2694 version ".tar.gz"))
2695 (sha256
2696 (base32
2697 "07m50dp5n5jxv3m93i55qvnd67a6g7cvbvlik115kmc8lbkh5da6"))))
2698 (build-system perl-build-system)
2699 (propagated-inputs
2700 `(("perl-uri" ,perl-uri)))
2701 (license (package-license perl))
2702 (synopsis "Perl database of robots.txt-derived permissions")
2703 (description
2704 "The WWW::RobotRules module parses /robots.txt files as specified in
2705 \"A Standard for Robot Exclusion\", at
2706 <http://www.robotstxt.org/wc/norobots.html>. Webmasters can use the
2707 /robots.txt file to forbid conforming robots from accessing parts of
2708 their web site.")
2709 (home-page "http://search.cpan.org/~gaas/WWW-RobotRules/")))