unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ricardo Wurmus <rekado@elephly.net>
To: guix-devel@gnu.org
Subject: [PATCH 01/29] gnu: Add perl-mojolicious.
Date: Wed, 23 Nov 2016 22:34:54 +0100	[thread overview]
Message-ID: <20161123213522.2923-2-rekado@elephly.net> (raw)
In-Reply-To: <20161123213522.2923-1-rekado@elephly.net>

* gnu/packages/perl-web.scm: New file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
---
 gnu/local.mk              |  1 +
 gnu/packages/perl-web.scm | 47 +++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)
 create mode 100644 gnu/packages/perl-web.scm

diff --git a/gnu/local.mk b/gnu/local.mk
index 4913727..8f6069b 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -294,6 +294,7 @@ GNU_SYSTEM_MODULES =				\
   %D%/packages/pdf.scm				\
   %D%/packages/pem.scm				\
   %D%/packages/perl.scm				\
+  %D%/packages/perl-web.scm			\
   %D%/packages/photo.scm			\
   %D%/packages/php.scm				\
   %D%/packages/pkg-config.scm			\
diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm
new file mode 100644
index 0000000..9c92a95
--- /dev/null
+++ b/gnu/packages/perl-web.scm
@@ -0,0 +1,47 @@
+;;; GNU Guix --- Functional package management for GNU
+;;; Copyright © 2016 Ricardo Wurmus <rekado@elephly.net>
+;;;
+;;; 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 <http://www.gnu.org/licenses/>.
+
+(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)))
-- 
2.10.2

  reply	other threads:[~2016-11-23 21:35 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-23 21:34 [PATCH 00/29] Add Biber Ricardo Wurmus
2016-11-23 21:34 ` Ricardo Wurmus [this message]
2016-11-23 21:34 ` [PATCH 02/29] gnu: Add perl-autovivification Ricardo Wurmus
2016-11-23 21:34 ` [PATCH 03/29] gnu: Add perl-business-isbn-data Ricardo Wurmus
2016-11-23 21:34 ` [PATCH 04/29] gnu: Add perl-business-isbn Ricardo Wurmus
2016-11-23 21:34 ` [PATCH 05/29] gnu: Add perl-business-issn Ricardo Wurmus
2016-11-23 21:34 ` [PATCH 06/29] gnu: Add perl-tie-cycle Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 07/29] gnu: Add perl-business-ismn Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 08/29] gnu: Add perl-data-compare Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 09/29] gnu: Add perl-data-uniqid Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 10/29] gnu: Add perl-date-simple Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 11/29] gnu: Add perl-datetime-calendar-julian Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 12/29] gnu: perl-encode-detect: Move to alphabetical position Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 13/29] gnu: Add perl-encode-eucjpascii Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 14/29] gnu: Add perl-encode-jis2k Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 15/29] gnu: Add perl-encode-hanextra Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 16/29] gnu: Add perl-extutils-libbuilder Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 17/29] gnu: Add perl-ipc-cmd Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 18/29] gnu: Add perl-lingua-translit Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 19/29] gnu: Add perl-mozilla-ca Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 20/29] gnu: Add perl-sort-key Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 21/29] gnu: Add perl-text-csv-xs Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 22/29] gnu: Add perl-text-roman Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 23/29] gnu: Add perl-unicode-normalize Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 24/29] gnu: Add perl-unicode-collate Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 25/29] gnu: perl-unicode-linebreak: Update to 2016.003 Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 26/29] gnu: Add perl-xml-libxslt Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 27/29] gnu: Add perl-text-bibtex Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 28/29] gnu: Add biber Ricardo Wurmus
2016-11-23 21:35 ` [PATCH 29/29] gnu: Add biber-2.5 Ricardo Wurmus
2016-11-26 17:46 ` [PATCH 00/29] Add Biber Leo Famulari
2016-11-26 22:45   ` Ricardo Wurmus
2016-11-27  9:29   ` Ricardo Wurmus

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161123213522.2923-2-rekado@elephly.net \
    --to=rekado@elephly.net \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).