[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/06: gnu: Add cl-fastcgi.
From: |
guix-commits |
Subject: |
04/06: gnu: Add cl-fastcgi. |
Date: |
Wed, 2 Sep 2020 06:44:26 -0400 (EDT) |
ambrevar pushed a commit to branch master
in repository guix.
commit 0d1c7c97fcd616fa1cdf21dcd31d16056d112303
Author: Pierre Neidhardt <mail@ambrevar.xyz>
AuthorDate: Wed Sep 2 09:55:39 2020 +0200
gnu: Add cl-fastcgi.
* gnu/packages/lisp-xyz.scm (cl-fastcgi, ecl-fastcgi, sbcl-fastcgi): New
variables.
---
gnu/packages/lisp-xyz.scm | 46 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 46 insertions(+)
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm
index e8928ba..62df4aa 100644
--- a/gnu/packages/lisp-xyz.scm
+++ b/gnu/packages/lisp-xyz.scm
@@ -71,6 +71,7 @@
#:use-module (gnu packages sqlite)
#:use-module (gnu packages tcl)
#:use-module (gnu packages tls)
+ #:use-module (gnu packages web)
#:use-module (gnu packages webkit)
#:use-module (gnu packages xdisorg)
#:use-module (ice-9 match)
@@ -4927,6 +4928,51 @@ performance and simplicity in mind.")
(define-public cl-ningle
(sbcl-package->cl-source-package sbcl-ningle))
+(define-public sbcl-cl-fastcgi
+ (let ((commit "d576d20eeb12f225201074b28934ba395b15781a")
+ (revision "1"))
+ (package
+ (name "sbcl-cl-fastcgi")
+ (version (git-version "0.2" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/KDr2/cl-fastcgi/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "02mvzzyn0k960s38rbxaqqmdkwcfmyhf8dx6ynz8xyxflmp0s5zv"))))
+ (build-system asdf-build-system/sbcl)
+ (inputs
+ `(("usocket" ,sbcl-usocket)
+ ("cffi" ,sbcl-cffi)
+ ("fcgi" ,fcgi)))
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ (add-after 'unpack 'fix-paths
+ (lambda* (#:key inputs #:allow-other-keys)
+ (substitute* "cl-fastcgi.lisp"
+ (("\"libfcgi.so\"")
+ (string-append
+ "\""
+ (assoc-ref inputs "fcgi") "/lib/libfcgi.so\""))))))))
+ (home-page "https://kdr2.com/project/cl-fastcgi.html")
+ (synopsis "FastCGI wrapper for Common Lisp")
+ (description
+ "CL-FastCGI is a generic version of SB-FastCGI, targeting to run on
+mostly Common Lisp implementation.")
+ ;; TODO: Upstream on specifies "BSD license":
+ ;; https://github.com/KDr2/cl-fastcgi/issues/4
+ (license license:bsd-2))))
+
+(define-public cl-fastcgi
+ (sbcl-package->cl-source-package sbcl-cl-fastcgi))
+
+(define-public ecl-cl-fastcgi
+ (sbcl-package->ecl-package sbcl-cl-fastcgi))
+
(define-public sbcl-clack
(let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
(revision "1"))
- branch master updated (d8c71fd -> f30e739), guix-commits, 2020/09/02
- 01/06: gnu: sbcl-cl-sqlite: Update to 0.2.1., guix-commits, 2020/09/02
- 02/06: gnu: sbcl-dbi: Update to 20200518., guix-commits, 2020/09/02
- 03/06: gnu: sbcl-mito: Remove spurious comment., guix-commits, 2020/09/02
- 04/06: gnu: Add cl-fastcgi.,
guix-commits <=
- 05/06: gnu: Add clack-handler-fcgi., guix-commits, 2020/09/02
- 06/06: gnu: Add sbcl-clack-handler-hunchentoot., guix-commits, 2020/09/02