gnu: Add lack-request.

* gnu/packages/lisp.scm (sbcl-lack-request, cl-lack-request): New variables.

Signed-off-by: 宋文武 <iyzsong@member.fsf.org>
master
Katherine Cox-Buday 2019-03-29 16:20:14 -05:00 committed by 宋文武
parent a2c4a05567
commit d98d148567
No known key found for this signature in database
GPG Key ID: 26525665AE727D37
1 changed files with 40 additions and 0 deletions

View File

@ -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))