1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
;;; tojo-tokyo-guix-config --- Guix Channel for git.tojo.tokyo's package
;;; Copyright © 2023 Masaya Tojo <masaya@tojo.tokyo>
;;;
;;; This file is part of tojo-tokyo-guix-channel.
;;;
;;; tojo-tokyo-guix-config 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.
;;;
;;; tojo-tokyo-guix-config 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 extract-green-color. If not, see
;;; <http://www.gnu.org/licenses/>.
(define-module (tojo-tokyo packages lisp-xyz)
#:use-module (guix packages)
#:use-module (guix gexp)
#:use-module (guix utils)
#:use-module (guix git-download)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix build-system asdf)
#:use-module (gnu packages)
#:use-module (gnu packages lisp)
#:use-module (gnu packages lisp-xyz))
(define-public sbcl-clack-next
(let ((commit "488cfb36381a4f4c56ad7f1184ea64b6ebcc2cee")
(revision "1"))
(package
(inherit sbcl-clack)
(version (git-version "2.1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fukamachi/clack")
(commit commit)))
(file-name (git-file-name "cl-clack" version))
(sha256
(base32 "1xvxgzzd8jv0ig2hwq4yaxsshs5j55v144c34wqyva3c56j3640i"))))
(inputs
`(("alexandria" ,sbcl-alexandria)
("bordeaux-threads" ,sbcl-bordeaux-threads)
("cl-fastcgi" ,sbcl-cl-fastcgi)
("flexi-streams" ,sbcl-flexi-streams)
("hunchentoot" ,sbcl-hunchentoot)
("lack" ,sbcl-lack-next)
("split-sequence" ,sbcl-split-sequence)
("usocket" ,sbcl-usocket)
("quri" ,sbcl-quri)
("sbcl-slime-swank" ,sbcl-slime-swank)))
(license license:x11))))
(define-public sbcl-lack-next
(let ((commit "c2edb842247ced0071dc21987f97629575667fe8")
(revision "1"))
(package
(inherit sbcl-lack)
(name "sbcl-lack")
(version (git-version "0.2.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/fukamachi/lack")
(commit commit)))
(file-name (git-file-name "lack" version))
(sha256
(base32 "0dad6gb9vai3rhw3xsn1ks82xmd1gmpy457ik30vyv5b6c38c5xz"))))
(arguments
'(#:asd-systems '("lack"
"lack-request"
"lack-response"
"lack-component"
"lack-util"
"lack-util-writer-stream"
"lack-middleware-backtrace"
"lack-middleware-static")
;; XXX: Component :CLACK not found
#:tests? #f))
(inputs
`(("circular-streams" ,sbcl-circular-streams)
("http-body" ,sbcl-http-body)
("ironclad" ,sbcl-ironclad)
("local-time" ,sbcl-local-time)
("quri" ,sbcl-quri)
("trivial-mimes" ,sbcl-trivial-mimes)
("sbcl-cl-isaac" ,sbcl-cl-isaac)
("sbcl-trivial-rfc-1123" ,sbcl-trivial-rfc-1123)))
(license license:x11))))
(define-public sbcl-clog-1.7
(package
(inherit sbcl-clog)
(version "1.7")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/rabbibotton/clog")
(commit (string-append "v" version))))
(file-name (git-file-name "cl-clog" version))
(sha256
(base32 "19sf25nhsmjbc21qwp2qlp1hr03l7kc4kppzwhrbqv8rxd73zs9l"))))
(arguments
'(#:asd-systems '("clog" "clog/docs")))
(inputs
(list sbcl-3bmd
sbcl-alexandria
sbcl-atomics
sbcl-bordeaux-threads
sbcl-cl-isaac
sbcl-cl-pass
sbcl-cl-ppcre
sbcl-cl-sqlite
sbcl-cl-template
sbcl-clack-next
sbcl-closer-mop
sbcl-colorize
sbcl-dbi
sbcl-hunchentoot
sbcl-lack-next
sbcl-mgl-pax
sbcl-parse-float
sbcl-quri
sbcl-trivial-open-browser
sbcl-websocket-driver))))
|