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