gnu: python-pandas: Fix build on 32-bit.
[jackhill/guix/guix.git] / gnu / packages / perl-web.scm
CommitLineData
d4ba9a5f
RW
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19(define-module (gnu packages perl-web)
20 #:use-module ((guix licenses) #:prefix license:)
21 #:use-module (gnu packages)
22 #:use-module (guix packages)
23 #:use-module (guix download)
24 #:use-module (guix build-system perl))
25
26(define-public perl-mojolicious
27 (package
28 (name "perl-mojolicious")
29 (version "7.10")
30 (source
31 (origin
32 (method url-fetch)
33 (uri (string-append "mirror://cpan/authors/id/S/SR/SRI/Mojolicious-"
34 version ".tar.gz"))
35 (sha256
36 (base32
37 "0811f3wajgf71y02dr2khqnaswjh582pcvhv93k101qpg61syihn"))))
38 (build-system perl-build-system)
39 (home-page "http://mojolicious.org/")
40 (synopsis "Real-time web framework")
41 (description "Back in the early days of the web, many people learned Perl
42because of a wonderful Perl library called @code{CGI}. It was simple enough
43to get started without knowing much about the language and powerful enough to
44keep you going, learning by doing was much fun. While most of the techniques
45used are outdated now, the idea behind it is not. Mojolicious is a new
46endeavor to implement this idea using modern technologies.")
47 (license license:artistic2.0)))