[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/22: gnu: Add lack-request.
From: |
guix-commits |
Subject: |
12/22: gnu: Add lack-request. |
Date: |
Sun, 7 Apr 2019 02:10:26 -0400 (EDT) |
iyzsong pushed a commit to branch master
in repository guix.
commit d98d14856780f4385899459b8a7182361f13b09f
Author: Katherine Cox-Buday <address@hidden>
Date: Fri Mar 29 16:20:14 2019 -0500
gnu: Add lack-request.
* gnu/packages/lisp.scm (sbcl-lack-request, cl-lack-request): New variables.
Signed-off-by: 宋文武 <address@hidden>
---
gnu/packages/lisp.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
index c502040..30740f6 100644
--- a/gnu/packages/lisp.scm
+++ b/gnu/packages/lisp.scm
@@ -4805,3 +4805,43 @@ reset to 0 and you're able to read it again.")
(define-public cl-circular-streams
(sbcl-package->cl-source-package sbcl-circular-streams))
+
+(define-public sbcl-lack-request
+ (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
+ (revision "1"))
+ (package
+ (name "sbcl-lack-request")
+ (version (git-version "0.1.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/fukamachi/lack.git")
+ (commit commit)))
+ (sha256
+ (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
+ (build-system asdf-build-system/sbcl)
+ (arguments
+ '(#:asd-file "lack-request.asd"
+ #:asd-system-name "lack-request"
+ #:test-asd-file "t-lack-request.asd"
+ ;; XXX: Component :CLACK-TEST not found
+ #:tests? #f))
+ (native-inputs
+ `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
+ ("sbcl-prove" ,sbcl-prove)))
+ (inputs
+ `(("sbcl-quri" ,sbcl-quri)
+ ("sbcl-http-body" ,sbcl-http-body)
+ ("sbcl-circular-streams" ,sbcl-circular-streams)))
+ (home-page "https://github.com/fukamachi/lack")
+ (synopsis "Lack, the core of Clack")
+ (description
+ "Lack is a Common Lisp library which allows web applications to be
+constructed of modular components. It was originally a part of Clack, however
+it's going to be rewritten as an individual project since Clack v2 with
+performance and simplicity in mind.")
+ (license license:llgpl))))
+
+(define-public cl-lack-request
+ (sbcl-package->cl-source-package sbcl-lack-request))
- 02/22: gnu: Add smart-buffer., (continued)
- 02/22: gnu: Add smart-buffer., guix-commits, 2019/04/07
- 03/22: gnu: Add fast-http., guix-commits, 2019/04/07
- 01/22: gnu: Add xsubseq., guix-commits, 2019/04/07
- 06/22: gnu: Add checkl., guix-commits, 2019/04/07
- 10/22: gnu: Add http-body., guix-commits, 2019/04/07
- 14/22: gnu: Add lack-response., guix-commits, 2019/04/07
- 05/22: gnu: Add marshal., guix-commits, 2019/04/07
- 07/22: gnu: Add fast-io., guix-commits, 2019/04/07
- 08/22: gnu: Add jonathan., guix-commits, 2019/04/07
- 11/22: gnu: Add circular-streams., guix-commits, 2019/04/07
- 12/22: gnu: Add lack-request.,
guix-commits <=
- 09/22: gnu: Keep the 'cl-' name prefix for sbcl packages., guix-commits, 2019/04/07
- 13/22: gnu: Add local-time., guix-commits, 2019/04/07
- 15/22: gnu: Add lack-component., guix-commits, 2019/04/07
- 20/22: gnu: Add lack., guix-commits, 2019/04/07
- 19/22: gnu: Add lack-middleware-static., guix-commits, 2019/04/07
- 17/22: gnu: Add lack-middleware-backtrace., guix-commits, 2019/04/07
- 22/22: gnu: Add clack., guix-commits, 2019/04/07
- 16/22: gnu: Add lack-util., guix-commits, 2019/04/07
- 18/22: gnu: Add trivial-mimes., guix-commits, 2019/04/07
- 21/22: gnu: Add ningle., guix-commits, 2019/04/07