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