guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/40: gnu: Add CGI-Simple.


From: Eric Bavier
Subject: 04/40: gnu: Add CGI-Simple.
Date: Thu, 12 Mar 2015 20:55:56 +0000

bavier pushed a commit to branch master
in repository guix.

commit 0148aa55cf05bbdbd9146fea4483d06cffaae533
Author: Eric Bavier <address@hidden>
Date:   Wed Mar 11 16:25:58 2015 -0500

    gnu: Add CGI-Simple.
    
    * gnu/packages/web.scm (perl-cgi-simple): New variable.
---
 gnu/packages/web.scm |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm
index 7bf1642..698380e 100644
--- a/gnu/packages/web.scm
+++ b/gnu/packages/web.scm
@@ -523,6 +523,28 @@ from streaming URLs.  It is a command-line wrapper for the 
libquvi library.")
 to perl-code, for faster generation of access_log lines.")
     (license (package-license perl))))
 
+(define-public perl-cgi-simple
+  (package
+    (name "perl-cgi-simple")
+    (version "1.115")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/S/SZ/SZABGAB/"
+                           "CGI-Simple-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1nkyb1m1g5r47xykflf68dplanih5p15njv82frbgbsms34kp1sg"))))
+    (build-system perl-build-system)
+    (native-inputs
+     `(("perl-io-stringy" ,perl-io-stringy))) ;for IO::Scalar
+    (home-page "http://search.cpan.org/dist/CGI-Simple";)
+    (synopsis "CGI interface that is CGI.pm compliant")
+    (description "CGI::Simple provides a relatively lightweight drop in
+replacement for CGI.pm.  It shares an identical OO interface to CGI.pm for
+parameter parsing, file upload, cookie handling and header generation.")
+    (license (package-license perl))))
+
 (define-public perl-encode-locale
   (package
     (name "perl-encode-locale")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]