;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2016 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu packages perl-web) #:use-module ((guix licenses) #:prefix license:) #:use-module (gnu packages) #:use-module (guix packages) #:use-module (guix download) #:use-module (guix build-system perl)) (define-public perl-mojolicious (package (name "perl-mojolicious") (version "7.10") (source (origin (method url-fetch) (uri (string-append "mirror://cpan/authors/id/S/SR/SRI/Mojolicious-" version ".tar.gz")) (sha256 (base32 "0811f3wajgf71y02dr2khqnaswjh582pcvhv93k101qpg61syihn")))) (build-system perl-build-system) (home-page "http://mojolicious.org/") (synopsis "Real-time web framework") (description "Back in the early days of the web, many people learned Perl because of a wonderful Perl library called @code{CGI}. It was simple enough to get started without knowing much about the language and powerful enough to keep you going, learning by doing was much fun. While most of the techniques used are outdated now, the idea behind it is not. Mojolicious is a new endeavor to implement this idea using modern technologies.") (license license:artistic2.0))) alue='search'/>
AgeCommit message (Expand)Author
2018-03-27gnu: Use invoke and return #t from all builders....Mark H Weaver
2018-02-16gnu: Use HTTPS for supported nongnu.org home pages....Tobias Geerinckx-Rice
2017-12-20gnu: microscheme: Fix home page....Ricardo Wurmus
2017-09-22gnu: Use xxd instead of vim....Ricardo Wurmus
2017-06-20gnu: Move contents of zip module into compression module....Arun Isaac
2017-05-24gnu: avr-gcc-4.9: Use gcc-4.9 as base compiler....Ricardo Wurmus
2017-05-24gnu: Allow overriding of xgcc package in cross-gcc....Ricardo Wurmus