gnu: sbcl-graph: Fix build.
[jackhill/guix/guix.git] / gnu / packages / lisp-xyz.scm
1 ;;; GNU Guix --- Functional package management for GNU
2 ;;; Copyright © 2014 John Darrington <jmd@gnu.org>
3 ;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
4 ;;; Copyright © 2015 Mark H Weaver <mhw@netris.org>
5 ;;; Copyright © 2016 Federico Beffa <beffa@fbengineering.ch>
6 ;;; Copyright © 2016, 2017 ng0 <ng0@n0.is>
7 ;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca>
8 ;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
9 ;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
10 ;;; Copyright © 2017, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
11 ;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
12 ;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
13 ;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
14 ;;; Copyright © 2018, 2019 Pierre Langlois <pierre.langlois@gmx.com>
15 ;;; Copyright © 2019, 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
16 ;;; Copyright © 2019 Jesse Gildersleve <jessejohngildersleve@protonmail.com>
17 ;;; Copyright © 2019, 2020 Guillaume Le Vaillant <glv@posteo.net>
18 ;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
19 ;;;
20 ;;; This file is part of GNU Guix.
21 ;;;
22 ;;; GNU Guix is free software; you can redistribute it and/or modify it
23 ;;; under the terms of the GNU General Public License as published by
24 ;;; the Free Software Foundation; either version 3 of the License, or (at
25 ;;; your option) any later version.
26 ;;;
27 ;;; GNU Guix is distributed in the hope that it will be useful, but
28 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
29 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
30 ;;; GNU General Public License for more details.
31 ;;;
32 ;;; You should have received a copy of the GNU General Public License
33 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
34
35 ;;; This file only contains Common Lisp libraries.
36 ;;; Common Lisp compilers and tooling go to lisp.scm.
37 ;;; Common Lisp applications should go to the most appropriate file,
38 ;;; e.g. StumpWM is in wm.scm.
39
40 (define-module (gnu packages lisp-xyz)
41 #:use-module (gnu packages)
42 #:use-module ((guix licenses) #:prefix license:)
43 #:use-module (guix packages)
44 #:use-module (guix download)
45 #:use-module (guix git-download)
46 #:use-module (guix hg-download)
47 #:use-module (guix utils)
48 #:use-module (guix build-system asdf)
49 #:use-module (guix build-system trivial)
50 #:use-module (gnu packages c)
51 #:use-module (gnu packages compression)
52 #:use-module (gnu packages glib)
53 #:use-module (gnu packages gtk)
54 #:use-module (gnu packages imagemagick)
55 #:use-module (gnu packages libevent)
56 #:use-module (gnu packages libffi)
57 #:use-module (gnu packages lisp)
58 #:use-module (gnu packages maths)
59 #:use-module (gnu packages pkg-config)
60 #:use-module (gnu packages python)
61 #:use-module (gnu packages python-xyz)
62 #:use-module (gnu packages sqlite)
63 #:use-module (gnu packages tcl)
64 #:use-module (gnu packages tls)
65 #:use-module (gnu packages webkit)
66 #:use-module (gnu packages xdisorg)
67 #:use-module (ice-9 match)
68 #:use-module (srfi srfi-19))
69
70 (define-public sbcl-alexandria
71 (let ((revision "1")
72 (commit "3b849bc0116ea70f215ee6b2fbf354e862aaa9dd"))
73 (package
74 (name "sbcl-alexandria")
75 (version (git-version "1.0.0" revision commit))
76 (source
77 (origin
78 (method git-fetch)
79 (uri (git-reference
80 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
81 (commit commit)))
82 (sha256
83 (base32
84 "04amwvx2vl691f0plcfbqqwxgib9zimih7jrn5zl7mbwvrxy022b"))
85 (file-name (git-file-name name version))))
86 (build-system asdf-build-system/sbcl)
87 (native-inputs
88 `(("rt" ,sbcl-rt)))
89 (synopsis "Collection of portable utilities for Common Lisp")
90 (description
91 "Alexandria is a collection of portable utilities. It does not contain
92 conceptual extensions to Common Lisp. It is conservative in scope, and
93 portable between implementations.")
94 (home-page "https://common-lisp.net/project/alexandria/")
95 (license license:public-domain))))
96
97 (define-public cl-alexandria
98 (sbcl-package->cl-source-package sbcl-alexandria))
99
100 (define-public ecl-alexandria
101 (sbcl-package->ecl-package sbcl-alexandria))
102
103 (define-public sbcl-net.didierverna.asdf-flv
104 (package
105 (name "sbcl-net.didierverna.asdf-flv")
106 (version "2.1")
107 (source
108 (origin
109 (method git-fetch)
110 (uri (git-reference
111 (url "https://github.com/didierverna/asdf-flv")
112 (commit (string-append "version-" version))))
113 (file-name (git-file-name "asdf-flv" version))
114 (sha256
115 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
116 (build-system asdf-build-system/sbcl)
117 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
118 (description "ASDF-FLV provides support for file-local variables through
119 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
120 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
121 dynamic binding is created before processing the file, so that any
122 modification to the variable becomes essentially file-local.
123
124 In order to make one or several variables file-local, use the macros
125 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
126 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
127 (license (license:non-copyleft
128 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
129 "GNU All-Permissive License"))))
130
131 (define-public cl-net.didierverna.asdf-flv
132 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
133
134 (define-public ecl-net.didierverna.asdf-flv
135 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
136
137 (define-public sbcl-fiveam
138 (package
139 (name "sbcl-fiveam")
140 (version "1.4.1")
141 (source
142 (origin
143 (method git-fetch)
144 (uri (git-reference
145 (url "https://github.com/sionescu/fiveam.git")
146 (commit (string-append "v" version))))
147 (file-name (git-file-name "fiveam" version))
148 (sha256
149 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
150 (inputs
151 `(("alexandria" ,sbcl-alexandria)
152 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
153 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
154 (build-system asdf-build-system/sbcl)
155 (synopsis "Common Lisp testing framework")
156 (description "FiveAM is a simple (as far as writing and running tests
157 goes) regression testing framework. It has been designed with Common Lisp's
158 interactive development model in mind.")
159 (home-page "https://common-lisp.net/project/fiveam/")
160 (license license:bsd-3)))
161
162 (define-public cl-fiveam
163 (sbcl-package->cl-source-package sbcl-fiveam))
164
165 (define-public ecl-fiveam
166 (sbcl-package->ecl-package sbcl-fiveam))
167
168 (define-public sbcl-bordeaux-threads
169 (let ((commit "5dce49fbc829f4d136a734f5ef4f5d599660984f")
170 (revision "1"))
171 (package
172 (name "sbcl-bordeaux-threads")
173 (version (git-version "0.8.6" revision commit))
174 (source (origin
175 (method git-fetch)
176 (uri (git-reference
177 (url "https://github.com/sionescu/bordeaux-threads.git")
178 (commit commit)))
179 (sha256
180 (base32 "1gkh9rz7zw57n3110ikcf4835950wr4hgp8l79id5ai6nd86x7wv"))
181 (file-name
182 (git-file-name "bordeaux-threads" version))))
183 (inputs `(("alexandria" ,sbcl-alexandria)))
184 (native-inputs `(("fiveam" ,sbcl-fiveam)))
185 (build-system asdf-build-system/sbcl)
186 (synopsis "Portable shared-state concurrency library for Common Lisp")
187 (description "BORDEAUX-THREADS is a proposed standard for a minimal
188 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
189 support.")
190 (home-page "https://common-lisp.net/project/bordeaux-threads/")
191 (license license:x11))))
192
193 (define-public cl-bordeaux-threads
194 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
195
196 (define-public ecl-bordeaux-threads
197 (sbcl-package->ecl-package sbcl-bordeaux-threads))
198
199 (define-public sbcl-trivial-gray-streams
200 (let ((revision "1")
201 (commit "0483ade330508b4b2edeabdb47d16ec9437ee1cb"))
202 (package
203 (name "sbcl-trivial-gray-streams")
204 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
205 (source
206 (origin
207 (method git-fetch)
208 (uri
209 (git-reference
210 (url "https://github.com/trivial-gray-streams/trivial-gray-streams.git")
211 (commit commit)))
212 (sha256
213 (base32 "0m3rpf2x0zmdk3nf1qfa01j6a55vj7gkwhyw78qslcgbjlgh8p4d"))
214 (file-name
215 (string-append "trivial-gray-streams-" version "-checkout"))))
216 (build-system asdf-build-system/sbcl)
217 (synopsis "Compatibility layer for Gray streams implementations")
218 (description "Gray streams is an interface proposed for inclusion with
219 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
220 popular CL implementations implement it. This package provides an extremely
221 thin compatibility layer for gray streams.")
222 (home-page "http://www.cliki.net/trivial-gray-streams")
223 (license license:x11))))
224
225 (define-public cl-trivial-gray-streams
226 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
227
228 (define-public ecl-trivial-gray-streams
229 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
230
231 (define-public sbcl-fiasco
232 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
233 (revision "1"))
234 (package
235 (name "sbcl-fiasco")
236 (version (git-version "0.0.1" revision commit))
237 (source
238 (origin
239 (method git-fetch)
240 (uri (git-reference
241 (url "https://github.com/joaotavora/fiasco.git")
242 (commit commit)))
243 (file-name (git-file-name "fiasco" version))
244 (sha256
245 (base32
246 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
247 (build-system asdf-build-system/sbcl)
248 (inputs
249 `(("alexandria" ,sbcl-alexandria)
250 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
251 (synopsis "Simple and powerful test framework for Common Lisp")
252 (description "A Common Lisp test framework that treasures your failures,
253 logical continuation of Stefil. It focuses on interactive debugging.")
254 (home-page "https://github.com/joaotavora/fiasco")
255 ;; LICENCE specifies this is public-domain unless the legislation
256 ;; doesn't allow or recognize it. In that case it falls back to a
257 ;; permissive licence.
258 (license (list license:public-domain
259 (license:x11-style "file://LICENCE"))))))
260
261 (define-public cl-fiasco
262 (sbcl-package->cl-source-package sbcl-fiasco))
263
264 (define-public ecl-fiasco
265 (sbcl-package->ecl-package sbcl-fiasco))
266
267 (define-public sbcl-flexi-streams
268 (package
269 (name "sbcl-flexi-streams")
270 (version "1.0.16")
271 (source
272 (origin
273 (method git-fetch)
274 (uri (git-reference
275 (url "https://github.com/edicl/flexi-streams.git")
276 (commit (string-append "v" version))))
277 (file-name (git-file-name "flexi-streams" version))
278 (sha256
279 (base32 "0gvykjlmja060zqq6nn6aqxlshh6r6ijahmmgf20q0d839rwpgxc"))))
280 (build-system asdf-build-system/sbcl)
281 (arguments
282 `(#:phases
283 (modify-phases %standard-phases
284 (add-after 'unpack 'make-git-checkout-writable
285 (lambda _
286 (for-each make-file-writable (find-files "."))
287 #t)))))
288 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
289 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
290 (description "Flexi-streams is an implementation of \"virtual\" bivalent
291 streams that can be layered atop real binary or bivalent streams and that can
292 be used to read and write character data in various single- or multi-octet
293 encodings which can be changed on the fly. It also supplies in-memory binary
294 streams which are similar to string streams.")
295 (home-page "http://weitz.de/flexi-streams/")
296 (license license:bsd-3)))
297
298 (define-public cl-flexi-streams
299 (sbcl-package->cl-source-package sbcl-flexi-streams))
300
301 (define-public ecl-flexi-streams
302 (sbcl-package->ecl-package sbcl-flexi-streams))
303
304 (define-public sbcl-cl-ppcre
305 (package
306 (name "sbcl-cl-ppcre")
307 (version "2.0.11")
308 (source
309 (origin
310 (method git-fetch)
311 (uri (git-reference
312 (url "https://github.com/edicl/cl-ppcre.git")
313 (commit (string-append "v" version))))
314 (file-name (git-file-name "cl-ppcre" version))
315 (sha256
316 (base32 "0q3iany07vgqm144lw6pj0af2d3vsikpbkwcxr30fci3kzsq4f49"))))
317 (build-system asdf-build-system/sbcl)
318 (native-inputs `(("flexi-streams" ,sbcl-flexi-streams)))
319 (synopsis "Portable regular expression library for Common Lisp")
320 (description "CL-PPCRE is a portable regular expression library for Common
321 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
322 compatible with ANSI-compliant Common Lisp implementations.")
323 (home-page "http://weitz.de/cl-ppcre/")
324 (license license:bsd-2)))
325
326 (define-public cl-ppcre
327 (sbcl-package->cl-source-package sbcl-cl-ppcre))
328
329 (define-public ecl-cl-ppcre
330 (sbcl-package->ecl-package sbcl-cl-ppcre))
331
332 (define sbcl-cl-unicode-base
333 (let ((revision "1")
334 (commit "9fcd06fba1ddc9e66aed2f2d6c32dc9b764f03ea"))
335 (package
336 (name "sbcl-cl-unicode-base")
337 (version (string-append "0.1.5-" revision "." (string-take commit 7)))
338 (source (origin
339 (method git-fetch)
340 (uri (git-reference
341 (url "https://github.com/edicl/cl-unicode.git")
342 (commit commit)))
343 (file-name (string-append "cl-unicode-" version "-checkout"))
344 (sha256
345 (base32
346 "1jicprb5b3bv57dy1kg03572gxkcaqdjhak00426s76g0plmx5ki"))))
347 (build-system asdf-build-system/sbcl)
348 (arguments
349 '(#:asd-file "cl-unicode.asd"
350 #:asd-system-name "cl-unicode/base"))
351 (inputs
352 `(("cl-ppcre" ,sbcl-cl-ppcre)))
353 (home-page "http://weitz.de/cl-unicode/")
354 (synopsis "Portable Unicode library for Common Lisp")
355 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
356 is compatible with perl. It is pretty fast, thread-safe, and compatible with
357 ANSI-compliant Common Lisp implementations.")
358 (license license:bsd-2))))
359
360 (define-public sbcl-cl-unicode
361 (package
362 (inherit sbcl-cl-unicode-base)
363 (name "sbcl-cl-unicode")
364 (inputs
365 `(("cl-unicode/base" ,sbcl-cl-unicode-base)
366 ,@(package-inputs sbcl-cl-unicode-base)))
367 (native-inputs
368 `(("flexi-streams" ,sbcl-flexi-streams)))
369 (arguments '())))
370
371 (define-public ecl-cl-unicode
372 (sbcl-package->ecl-package sbcl-cl-unicode))
373
374 (define-public cl-unicode
375 (sbcl-package->cl-source-package sbcl-cl-unicode))
376
377 (define-public sbcl-zpb-ttf
378 (package
379 (name "sbcl-zpb-ttf")
380 (version "1.0.3")
381 (source
382 (origin
383 (method git-fetch)
384 (uri (git-reference
385 (url "https://github.com/xach/zpb-ttf.git")
386 (commit (string-append "release-" version))))
387 (file-name (git-file-name name version))
388 (sha256
389 (base32
390 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
391 (build-system asdf-build-system/sbcl)
392 (home-page "https://github.com/xach/zpb-ttf")
393 (synopsis "TrueType font file access for Common Lisp")
394 (description
395 "ZPB-TTF is a TrueType font file parser that provides an interface for
396 reading typographic metrics, glyph outlines, and other information from the
397 file.")
398 (license license:bsd-2)))
399
400 (define-public ecl-zpb-ttf
401 (sbcl-package->ecl-package sbcl-zpb-ttf))
402
403 (define-public cl-zpb-ttf
404 (sbcl-package->cl-source-package sbcl-zpb-ttf))
405
406 (define-public sbcl-cl-aa
407 (package
408 (name "sbcl-cl-aa")
409 (version "0.1.5")
410 (source
411 (origin
412 (method url-fetch)
413 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
414 "files/cl-vectors-" version ".tar.gz"))
415 (sha256
416 (base32
417 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
418 (build-system asdf-build-system/sbcl)
419 (arguments '(#:asd-file "cl-aa.asd"))
420 (home-page "http://projects.tuxee.net/cl-vectors/")
421 (synopsis "Polygon rasterizer")
422 (description
423 "This is a Common Lisp library implementing the AA polygon rasterization
424 algorithm from the @url{http://antigrain.com, Antigrain} project.")
425 (license license:expat)))
426
427 (define-public ecl-cl-aa
428 (sbcl-package->ecl-package sbcl-cl-aa))
429
430 (define-public cl-aa
431 (sbcl-package->cl-source-package sbcl-cl-aa))
432
433 (define-public sbcl-cl-paths
434 (package
435 (inherit sbcl-cl-aa)
436 (name "sbcl-cl-paths")
437 (arguments '(#:asd-file "cl-paths.asd"))
438 (synopsis "Facilities to create and manipulate vectorial paths")
439 (description
440 "This package provides facilities to create and manipulate vectorial
441 paths.")))
442
443 (define-public ecl-cl-paths
444 (sbcl-package->ecl-package sbcl-cl-paths))
445
446 (define-public cl-paths
447 (sbcl-package->cl-source-package sbcl-cl-paths))
448
449 (define-public sbcl-cl-paths-ttf
450 (package
451 (inherit sbcl-cl-aa)
452 (name "sbcl-cl-paths-ttf")
453 (arguments '(#:asd-file "cl-paths-ttf.asd"))
454 (inputs
455 `(("cl-paths" ,sbcl-cl-paths)
456 ("zpb-ttf" ,sbcl-zpb-ttf)))
457 (synopsis "Facilities to create and manipulate vectorial paths")
458 (description
459 "This package provides facilities to create and manipulate vectorial
460 paths.")))
461
462 (define-public ecl-cl-paths-ttf
463 (sbcl-package->ecl-package sbcl-cl-paths-ttf))
464
465 (define-public cl-paths-ttf
466 (sbcl-package->cl-source-package sbcl-cl-paths-ttf))
467
468 (define-public sbcl-cl-vectors
469 (package
470 (inherit sbcl-cl-aa)
471 (name "sbcl-cl-vectors")
472 (arguments '(#:asd-file "cl-vectors.asd"))
473 (inputs
474 `(("cl-aa" ,sbcl-cl-aa)
475 ("cl-paths" ,sbcl-cl-paths)))
476 (synopsis "Create, transform and render anti-aliased vectorial paths")
477 (description
478 "This is a pure Common Lisp library to create, transform and render
479 anti-aliased vectorial paths.")))
480
481 (define-public ecl-cl-vectors
482 (sbcl-package->ecl-package sbcl-cl-vectors))
483
484 (define-public cl-vectors
485 (sbcl-package->cl-source-package sbcl-cl-vectors))
486
487 (define-public sbcl-spatial-trees
488 ;; There have been no releases.
489 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
490 (revision "1"))
491 (package
492 (name "sbcl-spatial-trees")
493 (version (git-version "0" revision commit))
494 (source
495 (origin
496 (method git-fetch)
497 (uri (git-reference
498 (url "https://github.com/rpav/spatial-trees.git")
499 (commit commit)))
500 (file-name (git-file-name name version))
501 (sha256
502 (base32
503 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
504 (build-system asdf-build-system/sbcl)
505 (arguments
506 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
507 #:asd-file "spatial-trees.asd"
508 #:test-asd-file "spatial-trees.test.asd"))
509 (native-inputs
510 `(("fiveam" ,sbcl-fiveam)))
511 (home-page "https://github.com/rpav/spatial-trees")
512 (synopsis "Dynamic index data structures for spatially-extended data")
513 (description
514 "Spatial-trees is a set of dynamic index data structures for
515 spatially-extended data.")
516 (license license:bsd-3))))
517
518 (define-public ecl-spatial-trees
519 (sbcl-package->ecl-package sbcl-spatial-trees))
520
521 (define-public cl-spatial-trees
522 (sbcl-package->cl-source-package sbcl-spatial-trees))
523
524 (define-public sbcl-flexichain
525 ;; There are no releases.
526 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
527 (revision "1"))
528 (package
529 (name "sbcl-flexichain")
530 (version "1.5.1")
531 (source
532 (origin
533 (method git-fetch)
534 (uri (git-reference
535 (url "https://github.com/robert-strandh/Flexichain.git")
536 (commit commit)))
537 (file-name (git-file-name name version))
538 (sha256
539 (base32
540 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
541 (build-system asdf-build-system/sbcl)
542 (home-page "https://github.com/robert-strandh/Flexichain.git")
543 (synopsis "Dynamically add elements to or remove them from sequences")
544 (description
545 "This package provides an implementation of the flexichain protocol,
546 allowing client code to dynamically add elements to, and delete elements from
547 a sequence (or chain) of such elements.")
548 (license license:lgpl2.1+))))
549
550 (define-public ecl-flexichain
551 (sbcl-package->ecl-package sbcl-flexichain))
552
553 (define-public cl-flexichain
554 (sbcl-package->cl-source-package sbcl-flexichain))
555
556 (define-public sbcl-cl-pdf
557 ;; There are no releases
558 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
559 (revision "1"))
560 (package
561 (name "sbcl-cl-pdf")
562 (version (git-version "0" revision commit))
563 (source
564 (origin
565 (method git-fetch)
566 (uri (git-reference
567 (url "https://github.com/mbattyani/cl-pdf.git")
568 (commit commit)))
569 (file-name (git-file-name name version))
570 (sha256
571 (base32
572 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
573 (build-system asdf-build-system/sbcl)
574 (inputs
575 `(("iterate" ,sbcl-iterate)
576 ("zpb-ttf" ,sbcl-zpb-ttf)))
577 (home-page "https://github.com/mbattyani/cl-pdf")
578 (synopsis "Common Lisp library for generating PDF files")
579 (description
580 "CL-PDF is a cross-platform Common Lisp library for generating PDF
581 files.")
582 (license license:bsd-2))))
583
584 (define-public ecl-cl-pdf
585 (sbcl-package->ecl-package sbcl-cl-pdf))
586
587 (define-public cl-pdf
588 (sbcl-package->cl-source-package sbcl-cl-pdf))
589
590 (define-public sbcl-clx
591 (package
592 (name "sbcl-clx")
593 (version "0.7.5")
594 (source
595 (origin
596 (method git-fetch)
597 (uri
598 (git-reference
599 (url "https://github.com/sharplispers/clx.git")
600 (commit version)))
601 (sha256
602 (base32
603 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
604 (file-name (string-append "clx-" version))))
605 (build-system asdf-build-system/sbcl)
606 (native-inputs
607 `(("fiasco" ,sbcl-fiasco)))
608 (home-page "http://www.cliki.net/portable-clx")
609 (synopsis "X11 client library for Common Lisp")
610 (description "CLX is an X11 client library for Common Lisp. The code was
611 originally taken from a CMUCL distribution, was modified somewhat in order to
612 make it compile and run under SBCL, then a selection of patches were added
613 from other CLXes around the net.")
614 (license license:x11)))
615
616 (define-public cl-clx
617 (sbcl-package->cl-source-package sbcl-clx))
618
619 (define-public ecl-clx
620 (sbcl-package->ecl-package sbcl-clx))
621
622 (define-public sbcl-cl-ppcre-unicode
623 (package (inherit sbcl-cl-ppcre)
624 (name "sbcl-cl-ppcre-unicode")
625 (arguments
626 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
627 #:asd-file "cl-ppcre-unicode.asd"))
628 (inputs
629 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
630 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))))
631
632 ;; The slynk that users expect to install includes all of slynk's contrib
633 ;; modules. Therefore, we build the base module and all contribs first; then
634 ;; we expose the union of these as `sbcl-slynk'. The following variable
635 ;; describes the base module.
636 (define sbcl-slynk-boot0
637 (let ((revision "2")
638 (commit "cbf84c36c4eca8b032e3fd16177a7bc02df3ec4c"))
639 (package
640 (name "sbcl-slynk-boot0")
641 (version (string-append "1.0.0-beta-" revision "." (string-take commit 7)))
642 (source
643 (origin
644 (method git-fetch)
645 (uri
646 (git-reference
647 (url "https://github.com/joaotavora/sly.git")
648 (commit commit)))
649 (sha256
650 (base32 "13dyhsravn591p7g6is01mp2ynzjnnj7pwgi57r6xqmd4611y9vh"))
651 (file-name (string-append "slynk-" version "-checkout"))
652 (modules '((guix build utils)
653 (ice-9 ftw)))
654 (snippet
655 '(begin
656 ;; Move the contribs into the main source directory for easier
657 ;; access
658 (substitute* "slynk/slynk.asd"
659 (("\\.\\./contrib")
660 "contrib")
661 (("\\(defsystem :slynk/util")
662 "(defsystem :slynk/util :depends-on (:slynk)")
663 ((":depends-on \\(:slynk :slynk/util\\)")
664 ":depends-on (:slynk :slynk-util)"))
665 (substitute* "contrib/slynk-trace-dialog.lisp"
666 (("\\(slynk::reset-inspector\\)") ; Causes problems on load
667 "nil"))
668 (substitute* "contrib/slynk-profiler.lisp"
669 (("slynk:to-line")
670 "slynk-pprint-to-line"))
671 (substitute* "contrib/slynk-fancy-inspector.lisp"
672 (("slynk/util") "slynk-util")
673 ((":compile-toplevel :load-toplevel") ""))
674 (rename-file "contrib" "slynk/contrib")
675 ;; Move slynk's contents into the base directory for easier
676 ;; access
677 (for-each (lambda (file)
678 (unless (string-prefix? "." file)
679 (rename-file (string-append "slynk/" file)
680 (string-append "./" (basename file)))))
681 (scandir "slynk"))
682 #t))))
683 (build-system asdf-build-system/sbcl)
684 (arguments
685 `(#:tests? #f ; No test suite
686 #:asd-system-name "slynk"))
687 (synopsis "Common Lisp IDE for Emacs")
688 (description "SLY is a fork of SLIME, an IDE backend for Common Lisp.
689 It also features a completely redesigned REPL based on Emacs's own
690 full-featured comint.el, live code annotations, and a consistent interactive
691 button interface. Everything can be copied to the REPL. One can create
692 multiple inspectors with independent history.")
693 (home-page "https://github.com/joaotavora/sly")
694 (license license:public-domain)
695 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
696
697 (define-public cl-slynk
698 (package
699 (inherit (sbcl-package->cl-source-package sbcl-slynk-boot0))
700 (name "cl-slynk")))
701
702 (define ecl-slynk-boot0
703 (sbcl-package->ecl-package sbcl-slynk-boot0))
704
705 (define sbcl-slynk-arglists
706 (package
707 (inherit sbcl-slynk-boot0)
708 (name "sbcl-slynk-arglists")
709 (inputs `(("slynk" ,sbcl-slynk-boot0)))
710 (arguments
711 (substitute-keyword-arguments (package-arguments sbcl-slynk-boot0)
712 ((#:asd-file _ "") "slynk.asd")
713 ((#:asd-system-name _ #f) "slynk/arglists")))))
714
715 (define ecl-slynk-arglists
716 (sbcl-package->ecl-package sbcl-slynk-arglists))
717
718 (define sbcl-slynk-util
719 (package
720 (inherit sbcl-slynk-boot0)
721 (name "sbcl-slynk-util")
722 (inputs `(("slynk" ,sbcl-slynk-boot0)))
723 (arguments
724 (substitute-keyword-arguments (package-arguments sbcl-slynk-boot0)
725 ((#:asd-file _ "") "slynk.asd")
726 ((#:asd-system-name _ #f) "slynk/util")))))
727
728 (define ecl-slynk-util
729 (sbcl-package->ecl-package sbcl-slynk-util))
730
731 (define sbcl-slynk-fancy-inspector
732 (package
733 (inherit sbcl-slynk-arglists)
734 (name "sbcl-slynk-fancy-inspector")
735 (inputs `(("slynk-util" ,sbcl-slynk-util)
736 ,@(package-inputs sbcl-slynk-arglists)))
737 (arguments
738 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
739 ((#:asd-system-name _ #f) "slynk/fancy-inspector")))))
740
741 (define ecl-slynk-fancy-inspector
742 (sbcl-package->ecl-package sbcl-slynk-fancy-inspector))
743
744 (define sbcl-slynk-package-fu
745 (package
746 (inherit sbcl-slynk-arglists)
747 (name "sbcl-slynk-package-fu")
748 (arguments
749 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
750 ((#:asd-system-name _ #f) "slynk/package-fu")))))
751
752 (define ecl-slynk-package-fu
753 (sbcl-package->ecl-package sbcl-slynk-package-fu))
754
755 (define sbcl-slynk-mrepl
756 (package
757 (inherit sbcl-slynk-fancy-inspector)
758 (name "sbcl-slynk-mrepl")
759 (arguments
760 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
761 ((#:asd-system-name _ #f) "slynk/mrepl")))))
762
763 (define ecl-slynk-mrepl
764 (sbcl-package->ecl-package sbcl-slynk-mrepl))
765
766 (define sbcl-slynk-trace-dialog
767 (package
768 (inherit sbcl-slynk-arglists)
769 (name "sbcl-slynk-trace-dialog")
770 (arguments
771 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
772 ((#:asd-system-name _ #f) "slynk/trace-dialog")))))
773
774 (define ecl-slynk-trace-dialog
775 (sbcl-package->ecl-package sbcl-slynk-trace-dialog))
776
777 (define sbcl-slynk-profiler
778 (package
779 (inherit sbcl-slynk-arglists)
780 (name "sbcl-slynk-profiler")
781 (arguments
782 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
783 ((#:asd-system-name _ #f) "slynk/profiler")))))
784
785 (define ecl-slynk-profiler
786 (sbcl-package->ecl-package sbcl-slynk-profiler))
787
788 (define sbcl-slynk-stickers
789 (package
790 (inherit sbcl-slynk-arglists)
791 (name "sbcl-slynk-stickers")
792 (arguments
793 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
794 ((#:asd-system-name _ #f) "slynk/stickers")))))
795
796 (define ecl-slynk-stickers
797 (sbcl-package->ecl-package sbcl-slynk-stickers))
798
799 (define sbcl-slynk-indentation
800 (package
801 (inherit sbcl-slynk-arglists)
802 (name "sbcl-slynk-indentation")
803 (arguments
804 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
805 ((#:asd-system-name _ #f) "slynk/indentation")))))
806
807 (define ecl-slynk-indentation
808 (sbcl-package->ecl-package sbcl-slynk-indentation))
809
810 (define sbcl-slynk-retro
811 (package
812 (inherit sbcl-slynk-arglists)
813 (name "sbcl-slynk-retro")
814 (arguments
815 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
816 ((#:asd-system-name _ #f) "slynk/retro")))))
817
818 (define ecl-slynk-retro
819 (sbcl-package->ecl-package sbcl-slynk-retro))
820
821 (define slynk-systems
822 '("slynk"
823 "slynk-util"
824 "slynk-arglists"
825 "slynk-fancy-inspector"
826 "slynk-package-fu"
827 "slynk-mrepl"
828 "slynk-profiler"
829 "slynk-trace-dialog"
830 "slynk-stickers"
831 "slynk-indentation"
832 "slynk-retro"))
833
834 (define-public sbcl-slynk
835 (package
836 (inherit sbcl-slynk-boot0)
837 (name "sbcl-slynk")
838 (inputs
839 `(("slynk" ,sbcl-slynk-boot0)
840 ("slynk-util" ,sbcl-slynk-util)
841 ("slynk-arglists" ,sbcl-slynk-arglists)
842 ("slynk-fancy-inspector" ,sbcl-slynk-fancy-inspector)
843 ("slynk-package-fu" ,sbcl-slynk-package-fu)
844 ("slynk-mrepl" ,sbcl-slynk-mrepl)
845 ("slynk-profiler" ,sbcl-slynk-profiler)
846 ("slynk-trace-dialog" ,sbcl-slynk-trace-dialog)
847 ("slynk-stickers" ,sbcl-slynk-stickers)
848 ("slynk-indentation" ,sbcl-slynk-indentation)
849 ("slynk-retro" ,sbcl-slynk-retro)))
850 (native-inputs `(("sbcl" ,sbcl)))
851 (build-system trivial-build-system)
852 (source #f)
853 (outputs '("out" "image"))
854 (arguments
855 `(#:modules ((guix build union)
856 (guix build utils)
857 (guix build lisp-utils))
858 #:builder
859 (begin
860 (use-modules (ice-9 match)
861 (srfi srfi-1)
862 (guix build union)
863 (guix build lisp-utils))
864
865 (union-build
866 (assoc-ref %outputs "out")
867 (filter-map
868 (match-lambda
869 ((name . path)
870 (if (string-prefix? "slynk" name) path #f)))
871 %build-inputs))
872
873 (prepend-to-source-registry
874 (string-append (assoc-ref %outputs "out") "//"))
875
876 (parameterize ((%lisp-type "sbcl")
877 (%lisp (string-append (assoc-ref %build-inputs "sbcl")
878 "/bin/sbcl")))
879 (build-image (string-append
880 (assoc-ref %outputs "image")
881 "/bin/slynk")
882 %outputs
883 #:dependencies ',slynk-systems))
884 #t)))))
885
886 (define-public ecl-slynk
887 (package
888 (inherit sbcl-slynk)
889 (name "ecl-slynk")
890 (inputs
891 (map (match-lambda
892 ((name pkg . _)
893 (list name (sbcl-package->ecl-package pkg))))
894 (package-inputs sbcl-slynk)))
895 (native-inputs '())
896 (outputs '("out"))
897 (arguments
898 '(#:modules ((guix build union))
899 #:builder
900 (begin
901 (use-modules (ice-9 match)
902 (guix build union))
903 (match %build-inputs
904 (((names . paths) ...)
905 (union-build (assoc-ref %outputs "out")
906 paths)
907 #t)))))))
908
909 (define-public sbcl-parse-js
910 (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6")
911 (revision "1"))
912 (package
913 (name "sbcl-parse-js")
914 (version (string-append "0.0.0-" revision "." (string-take commit 9)))
915 (source
916 (origin
917 (method git-fetch)
918 (uri (git-reference
919 (url "http://marijn.haverbeke.nl/git/parse-js")
920 (commit commit)))
921 (file-name (string-append name "-" commit "-checkout"))
922 (sha256
923 (base32
924 "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39"))))
925 (build-system asdf-build-system/sbcl)
926 (home-page "http://marijnhaverbeke.nl/parse-js/")
927 (synopsis "Parse JavaScript")
928 (description "Parse-js is a Common Lisp package for parsing
929 JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
930 (license license:zlib))))
931
932 (define-public cl-parse-js
933 (sbcl-package->cl-source-package sbcl-parse-js))
934
935 (define-public sbcl-parse-number
936 (package
937 (name "sbcl-parse-number")
938 (version "1.7")
939 (source
940 (origin
941 (method git-fetch)
942 (uri (git-reference
943 (url "https://github.com/sharplispers/parse-number/")
944 (commit (string-append "v" version))))
945 (file-name (git-file-name name version))
946 (sha256
947 (base32
948 "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"))))
949 (build-system asdf-build-system/sbcl)
950 (home-page "http://www.cliki.net/PARSE-NUMBER")
951 (synopsis "Parse numbers")
952 (description "@code{parse-number} is a library of functions for parsing
953 strings into one of the standard Common Lisp number types without using the
954 reader. @code{parse-number} accepts an arbitrary string and attempts to parse
955 the string into one of the standard Common Lisp number types, if possible, or
956 else @code{parse-number} signals an error of type @code{invalid-number}.")
957 (license license:bsd-3)))
958
959 (define-public cl-parse-number
960 (sbcl-package->cl-source-package sbcl-parse-number))
961
962 (define-public sbcl-iterate
963 (package
964 (name "sbcl-iterate")
965 ;; The latest official release (1.4.3) fails to build so we have to take
966 ;; the current darcs tarball from quicklisp.
967 (version "20160825")
968 (source
969 (origin
970 (method url-fetch)
971 (uri (string-append "http://beta.quicklisp.org/archive/iterate/"
972 "2016-08-25/iterate-"
973 version "-darcs.tgz"))
974 (sha256
975 (base32
976 "0kvz16gnxnkdz0fy1x8y5yr28nfm7i2qpvix7mgwccdpjmsb4pgm"))))
977 (build-system asdf-build-system/sbcl)
978 (native-inputs
979 `(("rt" ,sbcl-rt)))
980 (home-page "https://common-lisp.net/project/iterate/")
981 (synopsis "Iteration construct for Common Lisp")
982 (description "@code{iterate} is an iteration construct for Common Lisp.
983 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
984
985 @itemize
986 @item it is extensible,
987 @item it helps editors like Emacs indent iterate forms by having a more
988 lisp-like syntax, and
989 @item it isn't part of the ANSI standard for Common Lisp.
990 @end itemize\n")
991 (license license:expat)))
992
993 (define-public cl-iterate
994 (sbcl-package->cl-source-package sbcl-iterate))
995
996 (define-public ecl-iterate
997 (sbcl-package->ecl-package sbcl-iterate))
998
999 (define-public sbcl-cl-uglify-js
1000 ;; There have been many bug fixes since the 2010 release.
1001 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
1002 (revision "1"))
1003 (package
1004 (name "sbcl-cl-uglify-js")
1005 (version (string-append "0.1-" revision "." (string-take commit 9)))
1006 (source
1007 (origin
1008 (method git-fetch)
1009 (uri (git-reference
1010 (url "https://github.com/mishoo/cl-uglify-js.git")
1011 (commit commit)))
1012 (file-name (git-file-name name version))
1013 (sha256
1014 (base32
1015 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1016 (build-system asdf-build-system/sbcl)
1017 (inputs
1018 `(("sbcl-parse-js" ,sbcl-parse-js)
1019 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1020 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1021 ("sbcl-parse-number" ,sbcl-parse-number)
1022 ("sbcl-iterate" ,sbcl-iterate)))
1023 (home-page "https://github.com/mishoo/cl-uglify-js")
1024 (synopsis "JavaScript compressor library for Common Lisp")
1025 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1026 compressor. It works on data produced by @code{parse-js} to generate a
1027 @dfn{minified} version of the code. Currently it can:
1028
1029 @itemize
1030 @item reduce variable names (usually to single letters)
1031 @item join consecutive @code{var} statements
1032 @item resolve simple binary expressions
1033 @item group most consecutive statements using the @code{sequence} operator (comma)
1034 @item remove unnecessary blocks
1035 @item convert @code{IF} expressions in various ways that result in smaller code
1036 @item remove some unreachable code
1037 @end itemize\n")
1038 (license license:zlib))))
1039
1040 (define-public cl-uglify-js
1041 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1042
1043 (define-public uglify-js
1044 (package
1045 (inherit sbcl-cl-uglify-js)
1046 (name "uglify-js")
1047 (build-system trivial-build-system)
1048 (arguments
1049 `(#:modules ((guix build utils))
1050 #:builder
1051 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1052 (script (string-append bin "uglify-js")))
1053 (use-modules (guix build utils))
1054 (mkdir-p bin)
1055 (with-output-to-file script
1056 (lambda _
1057 (format #t "#!~a/bin/sbcl --script
1058 (require :asdf)
1059 (push (truename \"~a/lib/sbcl\") asdf:*central-registry*)"
1060 (assoc-ref %build-inputs "sbcl")
1061 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1062 ;; FIXME: cannot use progn here because otherwise it fails to
1063 ;; find cl-uglify-js.
1064 (for-each
1065 write
1066 '(;; Quiet, please!
1067 (let ((*standard-output* (make-broadcast-stream))
1068 (*error-output* (make-broadcast-stream)))
1069 (asdf:load-system :cl-uglify-js))
1070 (let ((file (cadr *posix-argv*)))
1071 (if file
1072 (format t "~a"
1073 (cl-uglify-js:ast-gen-code
1074 (cl-uglify-js:ast-mangle
1075 (cl-uglify-js:ast-squeeze
1076 (with-open-file (in file)
1077 (parse-js:parse-js in))))
1078 :beautify nil))
1079 (progn
1080 (format *error-output*
1081 "Please provide a JavaScript file.~%")
1082 (sb-ext:exit :code 1))))))))
1083 (chmod script #o755)
1084 #t)))
1085 (inputs
1086 `(("sbcl" ,sbcl)
1087 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1088 (synopsis "JavaScript compressor")))
1089
1090 (define-public sbcl-cl-strings
1091 (let ((revision "1")
1092 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1093 (package
1094 (name "sbcl-cl-strings")
1095 (version (git-version "0.0.0" revision commit))
1096 (source
1097 (origin
1098 (method git-fetch)
1099 (uri (git-reference
1100 (url "https://github.com/diogoalexandrefranco/cl-strings")
1101 (commit commit)))
1102 (sha256
1103 (base32
1104 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1105 (file-name (string-append "cl-strings-" version "-checkout"))))
1106 (build-system asdf-build-system/sbcl)
1107 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1108 (description
1109 "@command{cl-strings} is a small, portable, dependency-free set of
1110 utilities that make it even easier to manipulate text in Common Lisp. It has
1111 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1112 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1113 (license license:expat))))
1114
1115 (define-public cl-strings
1116 (sbcl-package->cl-source-package sbcl-cl-strings))
1117
1118 (define-public ecl-cl-strings
1119 (sbcl-package->ecl-package sbcl-cl-strings))
1120
1121 (define-public sbcl-trivial-features
1122 (package
1123 (name "sbcl-trivial-features")
1124 (version "0.8")
1125 (source
1126 (origin
1127 (method git-fetch)
1128 (uri (git-reference
1129 (url "https://github.com/trivial-features/trivial-features.git")
1130 (commit (string-append "v" version))))
1131 (file-name (git-file-name "trivial-features" version))
1132 (sha256
1133 (base32 "0ccv7dqyrk55xga78i5vzlic7mdwp28in3g1a8fqhlk6626scsq9"))))
1134 (build-system asdf-build-system/sbcl)
1135 (arguments '(#:tests? #f))
1136 (home-page "http://cliki.net/trivial-features")
1137 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1138 (description "Trivial-features ensures that @code{*FEATURES*} is
1139 consistent across multiple Common Lisp implementations.")
1140 (license license:expat)))
1141
1142 (define-public cl-trivial-features
1143 (sbcl-package->cl-source-package sbcl-trivial-features))
1144
1145 (define-public ecl-trivial-features
1146 (sbcl-package->ecl-package sbcl-trivial-features))
1147
1148 (define-public sbcl-hu.dwim.asdf
1149 (package
1150 (name "sbcl-hu.dwim.asdf")
1151 (version "20190521")
1152 (source
1153 (origin
1154 (method url-fetch)
1155 (uri (string-append "http://beta.quicklisp.org/archive/hu.dwim.asdf/"
1156 "2019-05-21/hu.dwim.asdf-" version "-darcs.tgz"))
1157 (sha256
1158 (base32
1159 "0rsbv71vyszy8w35yjwb5h6zcmknjq223hkzir79y72qdsc6sabn"))))
1160 (build-system asdf-build-system/sbcl)
1161 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1162 (synopsis "Extensions to ASDF")
1163 (description "Various ASDF extensions such as attached test and
1164 documentation system, explicit development support, etc.")
1165 (license license:public-domain)))
1166
1167 (define-public cl-hu.dwim.asdf
1168 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1169
1170 (define-public ecl-hu.dwim.asdf
1171 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1172
1173 (define-public sbcl-hu.dwim.stefil
1174 (let ((commit "ab6d1aa8995878a1b66d745dfd0ba021090bbcf9"))
1175 (package
1176 (name "sbcl-hu.dwim.stefil")
1177 (version (git-version "0.0.0" "1" commit))
1178 (source
1179 (origin
1180 (method git-fetch)
1181 (uri
1182 (git-reference
1183 (url "https://gitlab.common-lisp.net/xcvb/hu.dwim.stefil.git")
1184 (commit commit)))
1185 (sha256
1186 (base32 "1d8yccw65zj3zh46cbi3x6nmn1dwdb76s9d0av035077mvyirqqp"))
1187 (file-name (git-file-name "hu.dwim.stefil" version))))
1188 (build-system asdf-build-system/sbcl)
1189 (native-inputs
1190 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1191 (inputs
1192 `(("sbcl-alexandria" ,sbcl-alexandria)))
1193 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.stefil")
1194 (synopsis "Simple test framework")
1195 (description "Stefil is a simple test framework for Common Lisp,
1196 with a focus on interactive development.")
1197 (license license:public-domain))))
1198
1199 (define-public cl-hu.dwim.stefil
1200 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1201
1202 (define-public ecl-hu.dwim.stefil
1203 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1204
1205 (define-public sbcl-babel
1206 (package
1207 (name "sbcl-babel")
1208 (version "0.5.0")
1209 (source
1210 (origin
1211 (method git-fetch)
1212 (uri (git-reference
1213 (url "https://github.com/cl-babel/babel.git")
1214 (commit (string-append "v" version))))
1215 (file-name (git-file-name "babel" version))
1216 (sha256
1217 (base32 "139a8rn2gnhj082n8jg01gc8fyr63hkj57hgrnmb3d1r327yc77f"))))
1218 (build-system asdf-build-system/sbcl)
1219 (native-inputs
1220 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1221 (inputs
1222 `(("sbcl-alexandria" ,sbcl-alexandria)
1223 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1224 (home-page "https://common-lisp.net/project/babel/")
1225 (synopsis "Charset encoding and decoding library")
1226 (description "Babel is a charset encoding and decoding library, not unlike
1227 GNU libiconv, but completely written in Common Lisp.")
1228 (license license:expat)))
1229
1230 (define-public cl-babel
1231 (sbcl-package->cl-source-package sbcl-babel))
1232
1233 (define-public ecl-babel
1234 (sbcl-package->ecl-package sbcl-babel))
1235
1236 (define-public sbcl-cl-yacc
1237 (package
1238 (name "sbcl-cl-yacc")
1239 (version "0.3")
1240 (source
1241 (origin
1242 (method git-fetch)
1243 (uri (git-reference
1244 (url "https://github.com/jech/cl-yacc")
1245 (commit (string-append "cl-yacc-" version))))
1246 (sha256
1247 (base32
1248 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1249 (file-name (string-append "cl-yacc-" version "-checkout"))))
1250 (build-system asdf-build-system/sbcl)
1251 (arguments
1252 `(#:asd-file "yacc.asd"
1253 #:asd-system-name "yacc"))
1254 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1255 (description
1256 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1257 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1258
1259 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1260 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1261 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1262 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1263 (license license:expat)))
1264
1265 (define-public cl-yacc
1266 (sbcl-package->cl-source-package sbcl-cl-yacc))
1267
1268 (define-public ecl-cl-yacc
1269 (sbcl-package->ecl-package sbcl-cl-yacc))
1270
1271 (define-public sbcl-jpl-util
1272 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1273 (package
1274 (name "sbcl-jpl-util")
1275 (version "20151005")
1276 (source
1277 (origin
1278 (method git-fetch)
1279 (uri (git-reference
1280 ;; Quicklisp uses this fork.
1281 (url "https://github.com/hawkir/cl-jpl-util")
1282 (commit commit)))
1283 (file-name
1284 (git-file-name "jpl-util" version))
1285 (sha256
1286 (base32
1287 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1288 (build-system asdf-build-system/sbcl)
1289 (synopsis "Collection of Common Lisp utility functions and macros")
1290 (description
1291 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1292 and macros, primarily for software projects written in CL by the author.")
1293 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1294 (license license:isc))))
1295
1296 (define-public cl-jpl-util
1297 (sbcl-package->cl-source-package sbcl-jpl-util))
1298
1299 (define-public ecl-jpl-util
1300 (sbcl-package->ecl-package sbcl-jpl-util))
1301
1302 (define-public sbcl-jpl-queues
1303 (package
1304 (name "sbcl-jpl-queues")
1305 (version "0.1")
1306 (source
1307 (origin
1308 (method url-fetch)
1309 (uri (string-append
1310 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1311 version
1312 ".tar.gz"))
1313 (sha256
1314 (base32
1315 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1316 (build-system asdf-build-system/sbcl)
1317 (inputs
1318 `(("jpl-util" ,sbcl-jpl-util)
1319 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1320 (arguments
1321 ;; Tests seem to be broken.
1322 `(#:tests? #f))
1323 (synopsis "Common Lisp library implementing a few different kinds of queues")
1324 (description
1325 "A Common Lisp library implementing a few different kinds of queues:
1326
1327 @itemize
1328 @item Bounded and unbounded FIFO queues.
1329 @item Lossy bounded FIFO queues that drop elements when full.
1330 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1331 @end itemize
1332
1333 Additionally, a synchronization wrapper is provided to make any queue
1334 conforming to the @command{jpl-queues} API thread-safe for lightweight
1335 multithreading applications. (See Calispel for a more sophisticated CL
1336 multithreaded message-passing library with timeouts and alternation among
1337 several blockable channels.)")
1338 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1339 (license license:isc)))
1340
1341 (define-public cl-jpl-queues
1342 (sbcl-package->cl-source-package sbcl-jpl-queues))
1343
1344 (define-public ecl-jpl-queues
1345 (sbcl-package->ecl-package sbcl-jpl-queues))
1346
1347 (define-public sbcl-eos
1348 (let ((commit "b0faca83781ead9a588661e37bd47f90362ccd94"))
1349 (package
1350 (name "sbcl-eos")
1351 (version (git-version "0.0.0" "1" commit))
1352 (source
1353 (origin
1354 (method git-fetch)
1355 (uri (git-reference
1356 (url "https://github.com/adlai/Eos")
1357 (commit commit)))
1358 (sha256
1359 (base32
1360 "1bq8cfg087iyxmxi1mwgx5cfgy3b8ydrf81xljcis8qbgb2vszph"))
1361 (file-name (git-file-name "eos" version))))
1362 (build-system asdf-build-system/sbcl)
1363 (synopsis "Unit Testing for Common Lisp")
1364 (description
1365 "Eos was a unit testing library for Common Lisp.
1366 It began as a fork of FiveAM; however, FiveAM development has continued, while
1367 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1368 (home-page "https://github.com/adlai/Eos")
1369 (license license:expat))))
1370
1371 (define-public cl-eos
1372 (sbcl-package->cl-source-package sbcl-eos))
1373
1374 (define-public ecl-eos
1375 (sbcl-package->ecl-package sbcl-eos))
1376
1377 (define-public sbcl-esrap
1378 (let ((commit "133be8b05c2aae48696fe5b739eea2fa573fa48d"))
1379 (package
1380 (name "sbcl-esrap")
1381 (version (git-version "0.0.0" "1" commit))
1382 (source
1383 (origin
1384 (method git-fetch)
1385 (uri (git-reference
1386 (url "https://github.com/nikodemus/esrap")
1387 (commit commit)))
1388 (sha256
1389 (base32
1390 "02d5clihsdryhf7pix8c5di2571fdsffh75d40fkzhws90r5mksl"))
1391 (file-name (git-file-name "esrap" version))))
1392 (build-system asdf-build-system/sbcl)
1393 (native-inputs
1394 `(("eos" ,sbcl-eos))) ;For testing only.
1395 (inputs
1396 `(("alexandria" ,sbcl-alexandria)))
1397 (synopsis "Common Lisp packrat parser")
1398 (description
1399 "A packrat parser for Common Lisp.
1400 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1401
1402 @itemize
1403 @item dynamic redefinition of nonterminals
1404 @item inline grammars
1405 @item semantic predicates
1406 @item introspective facilities (describing grammars, tracing, setting breaks)
1407 @end itemize\n")
1408 (home-page "https://nikodemus.github.io/esrap/")
1409 (license license:expat))))
1410
1411 (define-public cl-esrap
1412 (sbcl-package->cl-source-package sbcl-esrap))
1413
1414 (define-public ecl-esrap
1415 (sbcl-package->ecl-package sbcl-esrap))
1416
1417 (define-public sbcl-split-sequence
1418 (package
1419 (name "sbcl-split-sequence")
1420 (version "1.4.1")
1421 (source
1422 (origin
1423 (method git-fetch)
1424 (uri (git-reference
1425 (url "https://github.com/sharplispers/split-sequence")
1426 (commit (string-append "v" version))))
1427 (sha256
1428 (base32
1429 "0c3zp6b7fmmp93sfhq112ind4zkld49ycw68z409xpnz3gc0wpf0"))
1430 (file-name (git-file-name "split-sequence" version))))
1431 (build-system asdf-build-system/sbcl)
1432 (arguments
1433 ;; TODO: Tests seem to be broken.
1434 ;; https://github.com/sharplispers/split-sequence/issues/8
1435 `(#:tests? #f))
1436 (synopsis "Member of the Common Lisp Utilities family of programs")
1437 (description
1438 "Splits sequence into a list of subsequences delimited by objects
1439 satisfying the test.")
1440 (home-page "https://cliki.net/split-sequence")
1441 (license license:expat)))
1442
1443 (define-public cl-split-sequence
1444 (sbcl-package->cl-source-package sbcl-split-sequence))
1445
1446 (define-public ecl-split-sequence
1447 (sbcl-package->ecl-package sbcl-split-sequence))
1448
1449 (define-public sbcl-html-encode
1450 (package
1451 (name "sbcl-html-encode")
1452 (version "1.2")
1453 (source
1454 (origin
1455 (method url-fetch)
1456 (uri (string-append
1457 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1458 version ".tgz"))
1459 (sha256
1460 (base32
1461 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1462 (file-name (string-append "colorize" version "-checkout"))))
1463 (build-system asdf-build-system/sbcl)
1464 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1465 (description
1466 "A library for encoding text in various web-savvy encodings.")
1467 (home-page "http://quickdocs.org/html-encode/")
1468 (license license:expat)))
1469
1470 (define-public cl-html-encode
1471 (sbcl-package->cl-source-package sbcl-html-encode))
1472
1473 (define-public ecl-html-encode
1474 (sbcl-package->ecl-package sbcl-html-encode))
1475
1476 (define-public sbcl-colorize
1477 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1478 (package
1479 (name "sbcl-colorize")
1480 (version (git-version "0.0.0" "1" commit))
1481 (source
1482 (origin
1483 (method git-fetch)
1484 (uri (git-reference
1485 (url "https://github.com/kingcons/colorize")
1486 (commit commit)))
1487 (sha256
1488 (base32
1489 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1490 (file-name (git-file-name "colorize" version))))
1491 (build-system asdf-build-system/sbcl)
1492 (inputs
1493 `(("alexandria" ,sbcl-alexandria)
1494 ("split-sequence" ,sbcl-split-sequence)
1495 ("html-encode" ,sbcl-html-encode)))
1496 (synopsis "Common Lisp for syntax highlighting")
1497 (description
1498 "@command{colorize} is a Lisp library for syntax highlighting
1499 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1500 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1501 (home-page "https://github.com/kingcons/colorize")
1502 ;; TODO: Missing license?
1503 (license license:expat))))
1504
1505 (define-public cl-colorize
1506 (sbcl-package->cl-source-package sbcl-colorize))
1507
1508 (define-public ecl-colorize
1509 (sbcl-package->ecl-package sbcl-colorize))
1510
1511 (define-public sbcl-3bmd
1512 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1513 (package
1514 (name "sbcl-3bmd")
1515 (version (git-version "0.0.0" "1" commit))
1516 (source
1517 (origin
1518 (method git-fetch)
1519 (uri (git-reference
1520 (url "https://github.com/3b/3bmd")
1521 (commit commit)))
1522 (sha256
1523 (base32
1524 "1rgv3gi7wf963ikmmpk132wgn0icddf226gq3bmcnk1fr3v9gf2f"))
1525 (file-name (git-file-name "3bmd" version))))
1526 (build-system asdf-build-system/sbcl)
1527 (arguments
1528 ;; FIXME: We need to specify the name because the build-system thinks
1529 ;; "3" is a version marker.
1530 `(#:asd-system-name "3bmd"))
1531 (inputs
1532 `(("esrap" ,sbcl-esrap)
1533 ("split-sequence" ,sbcl-split-sequence)))
1534 (synopsis "Markdown processor in Command Lisp using esrap parser")
1535 (description
1536 "Common Lisp Markdown -> HTML converter, using @command{esrap} for
1537 parsing, and grammar based on @command{peg-markdown}.")
1538 (home-page "https://github.com/3b/3bmd")
1539 (license license:expat))))
1540
1541 (define-public cl-3bmd
1542 (sbcl-package->cl-source-package sbcl-3bmd))
1543
1544 (define-public ecl-3bmd
1545 (sbcl-package->ecl-package sbcl-3bmd))
1546
1547 (define-public sbcl-3bmd-ext-code-blocks
1548 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1549 (package
1550 (inherit sbcl-3bmd)
1551 (name "sbcl-3bmd-ext-code-blocks")
1552 (arguments
1553 `(#:asd-system-name "3bmd-ext-code-blocks"
1554 #:asd-file "3bmd-ext-code-blocks.asd"))
1555 (inputs
1556 `(("3bmd" ,sbcl-3bmd)
1557 ("colorize" ,sbcl-colorize)))
1558 (synopsis "3bmd extension which adds support for GitHub-style fenced
1559 code blocks")
1560 (description
1561 "3bmd extension which adds support for GitHub-style fenced code blocks,
1562 with @command{colorize} support."))))
1563
1564 (define-public cl-3bmd-ext-code-blocks
1565 (sbcl-package->cl-source-package sbcl-3bmd-ext-code-blocks))
1566
1567 (define-public ecl-3bmd-ext-code-blocks
1568 (sbcl-package->ecl-package sbcl-3bmd-ext-code-blocks))
1569
1570 (define-public sbcl-cl-fad
1571 (package
1572 (name "sbcl-cl-fad")
1573 (version "0.7.5")
1574 (source
1575 (origin
1576 (method git-fetch)
1577 (uri (git-reference
1578 (url "https://github.com/edicl/cl-fad/")
1579 (commit (string-append "v" version))))
1580 (sha256
1581 (base32
1582 "1l1qmk9z57q84bz5r04sxsksggsnd7dgkxlybzh9imz6ma7sm52m"))
1583 (file-name (string-append "cl-fad" version "-checkout"))))
1584 (build-system asdf-build-system/sbcl)
1585 (inputs
1586 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
1587 (synopsis "Portable pathname library for Common Lisp")
1588 (description
1589 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
1590 Lisp's standard pathname functions. It is intended to provide some
1591 unification between current CL implementations on Windows, OS X, Linux, and
1592 Unix. Most of the code was written by Peter Seibel for his book Practical
1593 Common Lisp.")
1594 (home-page "https://edicl.github.io/cl-fad/")
1595 (license license:bsd-2)))
1596
1597 (define-public cl-fad
1598 (sbcl-package->cl-source-package sbcl-cl-fad))
1599
1600 (define-public ecl-cl-fad
1601 (sbcl-package->ecl-package sbcl-cl-fad))
1602
1603 (define-public sbcl-rt
1604 (package
1605 (name "sbcl-rt")
1606 (version "1990.12.19")
1607 (source
1608 (origin
1609 (method url-fetch)
1610 (uri (string-append "http://beta.quicklisp.org/archive/rt/2010-10-06/rt-"
1611 "20101006-git" ".tgz"))
1612 (sha256
1613 (base32
1614 "1jncar0xwkqk8yrc2dln389ivvgzs7ijdhhs3zpfyi5d21f0qa1v"))))
1615 (build-system asdf-build-system/sbcl)
1616 (synopsis "MIT Regression Tester")
1617 (description
1618 "RT provides a framework for writing regression test suites.")
1619 (home-page "https://github.com/sharplispers/nibbles")
1620 (license license:unlicense)))
1621
1622 (define-public cl-rt
1623 (sbcl-package->cl-source-package sbcl-rt))
1624
1625 (define-public ecl-rt
1626 (sbcl-package->ecl-package sbcl-rt))
1627
1628 (define-public sbcl-nibbles
1629 (package
1630 (name "sbcl-nibbles")
1631 (version "0.14")
1632 (source
1633 (origin
1634 (method git-fetch)
1635 (uri (git-reference
1636 (url "https://github.com/sharplispers/nibbles/")
1637 (commit (string-append "v" version))))
1638 (sha256
1639 (base32
1640 "1v7qfgpvdr6nz7v63dj69d26dis0kff3rd8xamr1llfdvza2pm8f"))
1641 (file-name (git-file-name "nibbles" version))))
1642 (build-system asdf-build-system/sbcl)
1643 (native-inputs
1644 ;; Tests only.
1645 `(("rt" ,sbcl-rt)))
1646 (synopsis "Common Lisp library for accessing octet-addressed blocks of data")
1647 (description
1648 "When dealing with network protocols and file formats, it's common to
1649 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
1650 flavors. Common Lisp sort of supports this by specifying :element-type for
1651 streams, but that facility is underspecified and there's nothing similar for
1652 read/write from octet vectors. What most people wind up doing is rolling their
1653 own small facility for their particular needs and calling it a day.
1654
1655 This library attempts to be comprehensive and centralize such
1656 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
1657 vectors in signed or unsigned flavors are provided; these functions are also
1658 SETFable. Since it's sometimes desirable to read/write directly from streams,
1659 functions for doing so are also provided. On some implementations,
1660 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
1661 also be supported.")
1662 (home-page "https://github.com/sharplispers/nibbles")
1663 (license license:bsd-3)))
1664
1665 (define-public cl-nibbles
1666 (sbcl-package->cl-source-package sbcl-nibbles))
1667
1668 (define-public ecl-nibbles
1669 (sbcl-package->ecl-package sbcl-nibbles))
1670
1671 (define-public sbcl-ironclad
1672 (package
1673 (name "sbcl-ironclad")
1674 (version "0.48")
1675 (source
1676 (origin
1677 (method git-fetch)
1678 (uri (git-reference
1679 (url "https://github.com/sharplispers/ironclad/")
1680 (commit (string-append "v" version))))
1681 (sha256
1682 (base32
1683 "1wzczpgvgjc5h8ghz75kxi7iykmqxqchdhgdhkif9j99kyqvbyam"))
1684 (file-name (git-file-name name version))))
1685 (build-system asdf-build-system/sbcl)
1686 (native-inputs
1687 ;; Tests only.
1688 `(("rt" ,sbcl-rt)))
1689 (inputs
1690 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1691 ("flexi-streams" ,sbcl-flexi-streams)))
1692 (synopsis "Cryptographic toolkit written in Common Lisp")
1693 (description
1694 "Ironclad is a cryptography library written entirely in Common Lisp.
1695 It includes support for several popular ciphers, digests, MACs and public key
1696 cryptography algorithms. For several implementations that support Gray
1697 streams, support is included for convenient stream wrappers.")
1698 (home-page "https://github.com/sharplispers/ironclad")
1699 (license license:bsd-3)))
1700
1701 (define-public cl-ironclad
1702 (sbcl-package->cl-source-package sbcl-ironclad))
1703
1704 (define-public ecl-ironclad
1705 (sbcl-package->ecl-package sbcl-ironclad))
1706
1707 (define-public sbcl-named-readtables
1708 (let ((commit "4dfb89fa1af6b305b6492b8af042f5190c11e9fc")
1709 (revision "1"))
1710 (package
1711 (name "sbcl-named-readtables")
1712 (version (string-append "0.9-" revision "." (string-take commit 7)))
1713 (source
1714 (origin
1715 (method git-fetch)
1716 (uri (git-reference
1717 (url "https://github.com/melisgl/named-readtables.git")
1718 (commit commit)))
1719 (sha256
1720 (base32 "083kgh5462iqbb4px6kq8s7sggvpvkm36hx4qi9rnaw53b6ilqkk"))
1721 (file-name (git-file-name "named-readtables" version))))
1722 (build-system asdf-build-system/sbcl)
1723 (arguments
1724 ;; Tests seem to be broken.
1725 `(#:tests? #f))
1726 (home-page "https://github.com/melisgl/named-readtables/")
1727 (synopsis "Library that creates a namespace for named readtables")
1728 (description "Named readtables is a library that creates a namespace for
1729 named readtables, which is akin to package namespacing in Common Lisp.")
1730 (license license:bsd-3))))
1731
1732 (define-public cl-named-readtables
1733 (sbcl-package->cl-source-package sbcl-named-readtables))
1734
1735 (define-public ecl-named-readtables
1736 (sbcl-package->ecl-package sbcl-named-readtables))
1737
1738 (define-public sbcl-pythonic-string-reader
1739 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
1740 (package
1741 (name "sbcl-pythonic-string-reader")
1742 (version (git-version "0.0.0" "1" commit))
1743 (source
1744 (origin
1745 (method git-fetch)
1746 (uri (git-reference
1747 (url "https://github.com/smithzvk/pythonic-string-reader/")
1748 (commit commit)))
1749 (sha256
1750 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
1751 (file-name (git-file-name "pythonic-string-reader" version))))
1752 (build-system asdf-build-system/sbcl)
1753 (inputs
1754 `(("named-readtables" ,sbcl-named-readtables)))
1755 (home-page "https://github.com/smithzvk/pythonic-string-reader")
1756 (synopsis "Read table modification inspired by Python's three quote strings")
1757 (description "This piece of code sets up some reader macros that make it
1758 simpler to input string literals which contain backslashes and double quotes
1759 This is very useful for writing complicated docstrings and, as it turns out,
1760 writing code that contains string literals that contain code themselves.")
1761 (license license:bsd-3))))
1762
1763 (define-public cl-pythonic-string-reader
1764 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
1765
1766 (define-public ecl-pythonic-string-reader
1767 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
1768
1769 ;; SLIME does not have a ASDF system definition to build all of Swank. As a
1770 ;; result, the asdf-build-system/sbcl will produce an almost empty package.
1771 ;; Some work was done to fix this at
1772 ;; https://github.com/sionescu/slime/tree/swank-asdf but it was never merged
1773 ;; and is now lagging behind. Building SBCL fasls might not be worth the
1774 ;; hassle, so let's just ship the source then.
1775 (define-public cl-slime-swank
1776 (package
1777 (name "cl-slime-swank")
1778 (version "2.24")
1779 (source
1780 (origin
1781 (file-name (string-append name "-" version ".tar.gz"))
1782 (method git-fetch)
1783 (uri (git-reference
1784 (url "https://github.com/slime/slime/")
1785 (commit (string-append "v" version))))
1786 (sha256
1787 (base32
1788 "0js24x42m7b5iymb4rxz501dff19vav5pywnzv50b673rbkaaqvh"))))
1789 (build-system asdf-build-system/source)
1790 (home-page "https://github.com/slime/slime")
1791 (synopsis "Common Lisp Swank server")
1792 (description
1793 "This is only useful if you want to start a Swank server in a Lisp
1794 processes that doesn't run under Emacs. Lisp processes created by
1795 @command{M-x slime} automatically start the server.")
1796 (license (list license:gpl2+ license:public-domain))))
1797
1798 (define-public sbcl-slime-swank
1799 (deprecated-package "sbcl-slime-swank" cl-slime-swank))
1800
1801 (define-public sbcl-mgl-pax
1802 (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
1803 (package
1804 (name "sbcl-mgl-pax")
1805 (version (git-version "0.0.0" "1" commit))
1806 (source
1807 (origin
1808 (method git-fetch)
1809 (uri (git-reference
1810 (url "https://github.com/melisgl/mgl-pax")
1811 (commit commit)))
1812 (sha256
1813 (base32
1814 "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
1815 (file-name (git-file-name "mgl-pax" version))))
1816 (build-system asdf-build-system/sbcl)
1817 (inputs
1818 `(("3bmd" ,sbcl-3bmd)
1819 ("3bmd-ext-code-blocks" ,sbcl-3bmd-ext-code-blocks)
1820 ("babel" ,sbcl-babel)
1821 ("cl-fad" ,sbcl-cl-fad)
1822 ("ironclad" ,sbcl-ironclad)
1823 ("named-readtables" ,sbcl-named-readtables)
1824 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)))
1825 (propagated-inputs
1826 ;; Packages having mgl-pax as input complain that it can't find
1827 ;; swank if we put it in inputs, so let's put it in propageted-inputs.
1828 `(("swank" ,cl-slime-swank)))
1829 (synopsis "Exploratory programming environment and documentation generator")
1830 (description
1831 "PAX provides an extremely poor man's Explorable Programming
1832 environment. Narrative primarily lives in so called sections that mix markdown
1833 docstrings with references to functions, variables, etc, all of which should
1834 probably have their own docstrings.
1835
1836 The primary focus is on making code easily explorable by using SLIME's
1837 @command{M-.} (@command{slime-edit-definition}). See how to enable some
1838 fanciness in Emacs Integration. Generating documentation from sections and all
1839 the referenced items in Markdown or HTML format is also implemented.
1840
1841 With the simplistic tools provided, one may accomplish similar effects as with
1842 Literate Programming, but documentation is generated from code, not vice versa
1843 and there is no support for chunking yet. Code is first, code must look
1844 pretty, documentation is code.")
1845 (home-page "http://quotenil.com/")
1846 (license license:expat))))
1847
1848 (define-public cl-mgl-pax
1849 (sbcl-package->cl-source-package sbcl-mgl-pax))
1850
1851 (define-public ecl-mgl-pax
1852 (sbcl-package->ecl-package sbcl-mgl-pax))
1853
1854 (define-public sbcl-lisp-unit
1855 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
1856 (package
1857 (name "sbcl-lisp-unit")
1858 (version (git-version "0.0.0" "1" commit))
1859 (source
1860 (origin
1861 (method git-fetch)
1862 (uri (git-reference
1863 (url "https://github.com/OdonataResearchLLC/lisp-unit")
1864 (commit commit)))
1865 (sha256
1866 (base32
1867 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
1868 (file-name (git-file-name "lisp-unit" version))))
1869 (build-system asdf-build-system/sbcl)
1870 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
1871 (description
1872 "@command{lisp-unit} is a Common Lisp library that supports unit
1873 testing. It is an extension of the library written by Chris Riesbeck.")
1874 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
1875 (license license:expat))))
1876
1877 (define-public cl-lisp-unit
1878 (sbcl-package->cl-source-package sbcl-lisp-unit))
1879
1880 (define-public ecl-lisp-unit
1881 (sbcl-package->ecl-package sbcl-lisp-unit))
1882
1883 (define-public sbcl-anaphora
1884 (package
1885 (name "sbcl-anaphora")
1886 (version "0.9.6")
1887 (source
1888 (origin
1889 (method git-fetch)
1890 (uri (git-reference
1891 (url "https://github.com/tokenrove/anaphora")
1892 (commit version)))
1893 (sha256
1894 (base32
1895 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
1896 (file-name (git-file-name "anaphora" version))))
1897 (build-system asdf-build-system/sbcl)
1898 (native-inputs
1899 `(("rt" ,sbcl-rt)))
1900 (synopsis "The anaphoric macro collection from Hell")
1901 (description
1902 "Anaphora is the anaphoric macro collection from Hell: it includes many
1903 new fiends in addition to old friends like @command{aif} and
1904 @command{awhen}.")
1905 (home-page "https://github.com/tokenrove/anaphora")
1906 (license license:public-domain)))
1907
1908 (define-public cl-anaphora
1909 (sbcl-package->cl-source-package sbcl-anaphora))
1910
1911 (define-public ecl-anaphora
1912 (sbcl-package->ecl-package sbcl-anaphora))
1913
1914 (define-public sbcl-lift
1915 (let ((commit "7d49a66c62759535624037826891152223d4206c"))
1916 (package
1917 (name "sbcl-lift")
1918 (version (git-version "1.7.1" "1" commit))
1919 (source
1920 (origin
1921 (method git-fetch)
1922 (uri (git-reference
1923 (url "https://github.com/gwkkwg/lift")
1924 (commit commit)))
1925 (sha256
1926 (base32
1927 "127v5avpz1i4m0lkaxqrq8hrl69rdazqaxf6s8awf0nd7wj2g4dp"))
1928 (file-name (git-file-name "lift" version))
1929 (modules '((guix build utils)))
1930 (snippet
1931 ;; Don't keep the bundled website
1932 `(begin
1933 (delete-file-recursively "website")
1934 #t))))
1935 (build-system asdf-build-system/sbcl)
1936 (arguments
1937 ;; The tests require a debugger, but we run with the debugger disabled.
1938 '(#:tests? #f))
1939 (synopsis "LIsp Framework for Testing")
1940 (description
1941 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
1942 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
1943 testcases are organized into hierarchical testsuites each of which can have
1944 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
1945 supports randomized testing, benchmarking, profiling, and reporting.")
1946 (home-page "https://github.com/gwkkwg/lift")
1947 (license license:expat))))
1948
1949 (define-public cl-lift
1950 (sbcl-package->cl-source-package sbcl-lift))
1951
1952 (define-public ecl-lift
1953 (sbcl-package->ecl-package sbcl-lift))
1954
1955 (define-public sbcl-let-plus
1956 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
1957 (package
1958 (name "sbcl-let-plus")
1959 (version (git-version "0.0.0" "1" commit))
1960 (source
1961 (origin
1962 (method git-fetch)
1963 (uri (git-reference
1964 (url "https://github.com/sharplispers/let-plus")
1965 (commit commit)))
1966 (sha256
1967 (base32
1968 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
1969 (file-name (git-file-name "let-plus" version))))
1970 (build-system asdf-build-system/sbcl)
1971 (inputs
1972 `(("alexandria" ,sbcl-alexandria)
1973 ("anaphora" ,sbcl-anaphora)))
1974 (native-inputs
1975 `(("lift" ,sbcl-lift)))
1976 (synopsis "Destructuring extension of let*")
1977 (description
1978 "This library implements the let+ macro, which is a dectructuring
1979 extension of let*. It features:
1980
1981 @itemize
1982 @item Clean, consistent syntax and small implementation (less than 300 LOC,
1983 not counting tests)
1984 @item Placeholder macros allow editor hints and syntax highlighting
1985 @item @command{&ign} for ignored values (in forms where that makes sense)
1986 @item Very easy to extend
1987 @end itemize\n")
1988 (home-page "https://github.com/sharplispers/let-plus")
1989 (license license:boost1.0))))
1990
1991 (define-public cl-let-plus
1992 (sbcl-package->cl-source-package sbcl-let-plus))
1993
1994 (define-public ecl-let-plus
1995 (sbcl-package->ecl-package sbcl-let-plus))
1996
1997 (define-public sbcl-cl-colors
1998 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
1999 (package
2000 (name "sbcl-cl-colors")
2001 (version (git-version "0.0.0" "1" commit))
2002 (source
2003 (origin
2004 (method git-fetch)
2005 (uri (git-reference
2006 (url "https://github.com/tpapp/cl-colors")
2007 (commit commit)))
2008 (sha256
2009 (base32
2010 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2011 (file-name (git-file-name "cl-colors" version))))
2012 (build-system asdf-build-system/sbcl)
2013 (inputs
2014 `(("alexandria" ,sbcl-alexandria)
2015 ("let-plus" ,sbcl-let-plus)))
2016 (synopsis "Simple color library for Common Lisp")
2017 (description
2018 "This is a very simple color library for Common Lisp, providing
2019
2020 @itemize
2021 @item Types for representing colors in HSV and RGB spaces.
2022 @item Simple conversion functions between the above types (and also
2023 hexadecimal representation for RGB).
2024 @item Some predefined colors (currently X11 color names – of course the
2025 library does not depend on X11).Because color in your terminal is nice.
2026 @end itemize
2027
2028 This library is no longer supported by its author.")
2029 (home-page "https://github.com/tpapp/cl-colors")
2030 (license license:boost1.0))))
2031
2032 (define-public cl-colors
2033 (sbcl-package->cl-source-package sbcl-cl-colors))
2034
2035 (define-public ecl-cl-colors
2036 (sbcl-package->ecl-package sbcl-cl-colors))
2037
2038 (define-public sbcl-cl-ansi-text
2039 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2040 (package
2041 (name "sbcl-cl-ansi-text")
2042 (version (git-version "1.0.0" "1" commit))
2043 (source
2044 (origin
2045 (method git-fetch)
2046 (uri (git-reference
2047 (url "https://github.com/pnathan/cl-ansi-text")
2048 (commit commit)))
2049 (sha256
2050 (base32
2051 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2052 (file-name (git-file-name "cl-ansi-text" version))))
2053 (build-system asdf-build-system/sbcl)
2054 (inputs
2055 `(("alexandria" ,sbcl-alexandria)
2056 ("cl-colors" ,sbcl-cl-colors)))
2057 (native-inputs
2058 `(("fiveam" ,sbcl-fiveam)))
2059 (synopsis "ANSI terminal color implementation for Common Lisp")
2060 (description
2061 "@command{cl-ansi-text} provides utilities which enable printing to an
2062 ANSI terminal with colored text. It provides the macro @command{with-color}
2063 which causes everything printed in the body to be displayed with the provided
2064 color. It further provides functions which will print the argument with the
2065 named color.")
2066 (home-page "https://github.com/pnathan/cl-ansi-text")
2067 (license license:llgpl))))
2068
2069 (define-public cl-ansi-text
2070 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2071
2072 (define-public ecl-cl-ansi-text
2073 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2074
2075 (define-public sbcl-prove-asdf
2076 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2077 (package
2078 (name "sbcl-prove-asdf")
2079 (version (git-version "1.0.0" "1" commit))
2080 (source
2081 (origin
2082 (method git-fetch)
2083 (uri (git-reference
2084 (url "https://github.com/fukamachi/prove")
2085 (commit commit)))
2086 (sha256
2087 (base32
2088 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2089 (file-name (git-file-name "prove" version))))
2090 (build-system asdf-build-system/sbcl)
2091 (arguments
2092 `(#:asd-file "prove-asdf.asd"))
2093 (synopsis "Test requirement for the Common Lisp 'prove' library")
2094 (description
2095 "Test requirement for the Common Lisp @command{prove} library.")
2096 (home-page "https://github.com/fukamachi/prove")
2097 (license license:expat))))
2098
2099 (define-public cl-prove-asdf
2100 (sbcl-package->cl-source-package sbcl-prove-asdf))
2101
2102 (define-public ecl-prove-asdf
2103 (sbcl-package->ecl-package sbcl-prove-asdf))
2104
2105 (define-public sbcl-prove
2106 (package
2107 (inherit sbcl-prove-asdf)
2108 (name "sbcl-prove")
2109 (inputs
2110 `(("alexandria" ,sbcl-alexandria)
2111 ("cl-ppcre" ,sbcl-cl-ppcre)
2112 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2113 (native-inputs
2114 `(("prove-asdf" ,sbcl-prove-asdf)))
2115 (arguments
2116 `(#:asd-file "prove.asd"))
2117 (synopsis "Yet another unit testing framework for Common Lisp")
2118 (description
2119 "This project was originally called @command{cl-test-more}.
2120 @command{prove} is yet another unit testing framework for Common Lisp. The
2121 advantages of @command{prove} are:
2122
2123 @itemize
2124 @item Various simple functions for testing and informative error messages
2125 @item ASDF integration
2126 @item Extensible test reporters
2127 @item Colorizes the report if it's available (note for SLIME)
2128 @item Reports test durations
2129 @end itemize\n")))
2130
2131 (define-public cl-prove
2132 (sbcl-package->cl-source-package sbcl-prove))
2133
2134 (define-public ecl-prove
2135 (sbcl-package->ecl-package sbcl-prove))
2136
2137 (define-public sbcl-proc-parse
2138 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2139 (package
2140 (name "sbcl-proc-parse")
2141 (version (git-version "0.0.0" "1" commit))
2142 (source
2143 (origin
2144 (method git-fetch)
2145 (uri (git-reference
2146 (url "https://github.com/fukamachi/proc-parse")
2147 (commit commit)))
2148 (sha256
2149 (base32
2150 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2151 (file-name (git-file-name "proc-parse" version))))
2152 (build-system asdf-build-system/sbcl)
2153 (inputs
2154 `(("alexandria" ,sbcl-alexandria)
2155 ("babel" ,sbcl-babel)))
2156 (native-inputs
2157 `(("prove" ,sbcl-prove)
2158 ("prove-asdf" ,sbcl-prove-asdf)))
2159 (arguments
2160 ;; TODO: Tests don't find "proc-parse-test", why?
2161 `(#:tests? #f))
2162 (synopsis "Procedural vector parser")
2163 (description
2164 "This is a string/octets parser library for Common Lisp with speed and
2165 readability in mind. Unlike other libraries, the code is not a
2166 pattern-matching-like, but a char-by-char procedural parser.")
2167 (home-page "https://github.com/fukamachi/proc-parse")
2168 (license license:bsd-2))))
2169
2170 (define-public cl-proc-parse
2171 (sbcl-package->cl-source-package sbcl-proc-parse))
2172
2173 (define-public ecl-proc-parse
2174 (sbcl-package->ecl-package sbcl-proc-parse))
2175
2176 (define-public sbcl-parse-float
2177 (let ((commit "2aae569f2a4b2eb3bfb5401a959425dcf151b09c"))
2178 (package
2179 (name "sbcl-parse-float")
2180 (version (git-version "0.0.0" "1" commit))
2181 (source
2182 (origin
2183 (method git-fetch)
2184 (uri (git-reference
2185 (url "https://github.com/soemraws/parse-float")
2186 (commit commit)))
2187 (sha256
2188 (base32
2189 "08xw8cchhmqcc0byng69m3f5a2izc9y2290jzz2k0qrbibp1fdk7"))
2190 (file-name (git-file-name "proc-parse" version))))
2191 (build-system asdf-build-system/sbcl)
2192 (inputs
2193 `(("alexandria" ,sbcl-alexandria)
2194 ("babel" ,sbcl-babel)))
2195 (native-inputs
2196 `(("prove" ,sbcl-prove)
2197 ("prove-asdf" ,sbcl-prove-asdf)))
2198 (arguments
2199 ;; TODO: Tests don't find "proc-parse-test", why?
2200 `(#:tests? #f))
2201 (synopsis "Parse a floating point value from a string in Common Lisp")
2202 (description
2203 "This package exports the following function to parse floating-point
2204 values from a string in Common Lisp.")
2205 (home-page "https://github.com/soemraws/parse-float")
2206 (license license:public-domain))))
2207
2208 (define-public cl-parse-float
2209 (sbcl-package->cl-source-package sbcl-parse-float))
2210
2211 (define-public ecl-parse-float
2212 (sbcl-package->ecl-package sbcl-parse-float))
2213
2214 (define-public sbcl-ascii-strings
2215 (let ((revision "1")
2216 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2217 (package
2218 (name "sbcl-ascii-strings")
2219 (version (string-append "0-" revision "." (string-take changeset 7)))
2220 (source
2221 (origin
2222 (method hg-fetch)
2223 (uri (hg-reference
2224 (url "https://bitbucket.org/vityok/cl-string-match/")
2225 (changeset changeset)))
2226 (sha256
2227 (base32
2228 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2229 (file-name (git-file-name "cl-string-match" version))))
2230 (build-system asdf-build-system/sbcl)
2231 (inputs
2232 `(("alexandria" ,sbcl-alexandria)
2233 ("babel" ,sbcl-babel)))
2234 (arguments
2235 `(#:asd-file "ascii-strings.asd"))
2236 (synopsis "Operations on ASCII strings")
2237 (description
2238 "Operations on ASCII strings. Essentially this can be any kind of
2239 single-byte encoded strings.")
2240 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2241 (license license:bsd-3))))
2242
2243 (define-public cl-ascii-strings
2244 (sbcl-package->cl-source-package sbcl-ascii-strings))
2245
2246 (define-public ecl-ascii-strings
2247 (sbcl-package->ecl-package sbcl-ascii-strings))
2248
2249 (define-public sbcl-simple-scanf
2250 (package
2251 (inherit sbcl-ascii-strings)
2252 (name "sbcl-simple-scanf")
2253 (inputs
2254 `(("alexandria" ,sbcl-alexandria)
2255 ("iterate" ,sbcl-iterate)
2256 ("proc-parse" ,sbcl-proc-parse)
2257 ("parse-float" ,sbcl-parse-float)))
2258 (arguments
2259 `(#:asd-file "simple-scanf.asd"))
2260 (synopsis "Simple scanf-like functionality implementation")
2261 (description
2262 "A simple scanf-like functionality implementation.")))
2263
2264 (define-public cl-simple-scanf
2265 (sbcl-package->cl-source-package sbcl-simple-scanf))
2266
2267 (define-public ecl-simple-scanf
2268 (sbcl-package->ecl-package sbcl-simple-scanf))
2269
2270 (define-public sbcl-cl-string-match
2271 (package
2272 (inherit sbcl-ascii-strings)
2273 (name "sbcl-cl-string-match")
2274 (inputs
2275 `(("alexandria" ,sbcl-alexandria)
2276 ("ascii-strings" ,sbcl-ascii-strings)
2277 ("yacc" ,sbcl-cl-yacc)
2278 ("jpl-util" ,sbcl-jpl-util)
2279 ("jpl-queues" ,sbcl-jpl-queues)
2280 ("mgl-pax" ,sbcl-mgl-pax)
2281 ("iterate" ,sbcl-iterate)))
2282 ;; TODO: Tests are not evaluated properly.
2283 (native-inputs
2284 ;; For testing:
2285 `(("lisp-unit" ,sbcl-lisp-unit)
2286 ("simple-scanf" ,sbcl-simple-scanf)))
2287 (arguments
2288 `(#:tests? #f
2289 #:asd-file "cl-string-match.asd"))
2290 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
2291 (description
2292 "@command{cl-strings} is a small, portable, dependency-free set of
2293 utilities that make it even easier to manipulate text in Common Lisp. It has
2294 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")))
2295
2296 (define-public cl-string-match
2297 (sbcl-package->cl-source-package sbcl-cl-string-match))
2298
2299 (define-public ecl-cl-string-match
2300 (sbcl-package->ecl-package sbcl-cl-string-match))
2301
2302 (define-public sbcl-ptester
2303 (package
2304 (name "sbcl-ptester")
2305 (version "20160929")
2306 (source
2307 (origin
2308 (method url-fetch)
2309 (uri (string-append "http://beta.quicklisp.org/archive/ptester/"
2310 (date->string (string->date version "~Y~m~d") "~Y-~m-~d")
2311 "/ptester-"
2312 version
2313 "-git.tgz"))
2314 (sha256
2315 (base32
2316 "04rlq1zljhxc65pm31bah3sq3as24l0sdivz440s79qlnnyh13hz"))))
2317 (build-system asdf-build-system/sbcl)
2318 (home-page "http://quickdocs.org/ptester/")
2319 (synopsis "Portable test harness package")
2320 (description
2321 "@command{ptester} is a portable testing framework based on Franz's
2322 tester module.")
2323 (license license:lgpl3+)))
2324
2325 (define-public cl-ptester
2326 (sbcl-package->cl-source-package sbcl-ptester))
2327
2328 (define-public ecl-ptester
2329 (sbcl-package->ecl-package sbcl-ptester))
2330
2331 (define-public sbcl-puri
2332 (package
2333 (name "sbcl-puri")
2334 (version "20180228")
2335 (source
2336 (origin
2337 (method url-fetch)
2338 (uri (string-append "http://beta.quicklisp.org/archive/puri/"
2339 (date->string (string->date version "~Y~m~d") "~Y-~m-~d")
2340 "/puri-"
2341 version
2342 "-git.tgz"))
2343 (sha256
2344 (base32
2345 "1s4r5adrjy5asry45xbcbklxhdjydvf6n55z897nvyw33bigrnbz"))))
2346 (build-system asdf-build-system/sbcl)
2347 ;; REVIEW: Webiste down?
2348 (native-inputs
2349 `(("ptester" ,sbcl-ptester)))
2350 (home-page "http://files.kpe.io/puri/")
2351 (synopsis "Portable URI Library")
2352 (description
2353 "This is portable Universal Resource Identifier library for Common Lisp
2354 programs. It parses URI according to the RFC 2396 specification")
2355 (license license:lgpl3+)))
2356
2357 (define-public cl-puri
2358 (sbcl-package->cl-source-package sbcl-puri))
2359
2360 (define-public ecl-puri
2361 (sbcl-package->ecl-package sbcl-puri))
2362
2363 (define-public sbcl-queues
2364 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2365 (package
2366 (name "sbcl-queues")
2367 (version (git-version "0.0.0" "1" commit))
2368 (source
2369 (origin
2370 (method git-fetch)
2371 (uri (git-reference
2372 (url "https://github.com/oconnore/queues")
2373 (commit commit)))
2374 (file-name (git-file-name "queues" version))
2375 (sha256
2376 (base32
2377 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2378 (build-system asdf-build-system/sbcl)
2379 (home-page "https://github.com/oconnore/queues")
2380 (synopsis "Common Lisp queue library")
2381 (description
2382 "This is a simple queue library for Common Lisp with features such as
2383 non-consing thread safe queues and fibonacci priority queues.")
2384 (license license:expat))))
2385
2386 (define-public cl-queues
2387 (sbcl-package->cl-source-package sbcl-queues))
2388
2389 (define-public ecl-queues
2390 (sbcl-package->ecl-package sbcl-queues))
2391
2392 (define-public sbcl-queues.simple-queue
2393 (package
2394 (inherit sbcl-queues)
2395 (name "sbcl-queues.simple-queue")
2396 (inputs
2397 `(("sbcl-queues" ,sbcl-queues)))
2398 (arguments
2399 `(#:asd-file "queues.simple-queue.asd"))
2400 (synopsis "Simple queue implementation")
2401 (description
2402 "This is a simple queue library for Common Lisp with features such as
2403 non-consing thread safe queues and fibonacci priority queues.")
2404 (license license:expat)))
2405
2406 (define-public cl-queues.simple-queue
2407 (sbcl-package->cl-source-package sbcl-queues.simple-queue))
2408
2409 (define-public ecl-queues.simple-queue
2410 (sbcl-package->ecl-package sbcl-queues.simple-queue))
2411
2412 (define-public sbcl-queues.simple-cqueue
2413 (package
2414 (inherit sbcl-queues)
2415 (name "sbcl-queues.simple-cqueue")
2416 (inputs
2417 `(("sbcl-queues" ,sbcl-queues)
2418 ("sbcl-queues.simple-queue" ,sbcl-queues.simple-queue)
2419 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2420 (arguments
2421 `(#:asd-file "queues.simple-cqueue.asd"))
2422 (synopsis "Thread safe queue implementation")
2423 (description
2424 "This is a simple queue library for Common Lisp with features such as
2425 non-consing thread safe queues and fibonacci priority queues.")
2426 (license license:expat)))
2427
2428 (define-public cl-queues.simple-cqueue
2429 (sbcl-package->cl-source-package sbcl-queues.simple-cqueue))
2430
2431 (define-public ecl-queues.simple-cqueue
2432 (sbcl-package->ecl-package sbcl-queues.simple-cqueue))
2433
2434 (define-public sbcl-queues.priority-queue
2435 (package
2436 (inherit sbcl-queues)
2437 (name "sbcl-queues.priority-queue")
2438 (inputs
2439 `(("sbcl-queues" ,sbcl-queues)))
2440 (arguments
2441 `(#:asd-file "queues.priority-queue.asd"))
2442 (synopsis "Priority queue (Fibonacci) implementation")
2443 (description
2444 "This is a simple queue library for Common Lisp with features such as
2445 non-consing thread safe queues and fibonacci priority queues.")
2446 (license license:expat)))
2447
2448 (define-public cl-queues.priority-queue
2449 (sbcl-package->cl-source-package sbcl-queues.priority-queue))
2450
2451 (define-public ecl-queues.priority-queue
2452 (sbcl-package->ecl-package sbcl-queues.priority-queue))
2453
2454 (define-public sbcl-queues.priority-cqueue
2455 (package
2456 (inherit sbcl-queues)
2457 (name "sbcl-queues.priority-cqueue")
2458 (inputs
2459 `(("sbcl-queues" ,sbcl-queues)
2460 ("sbcl-queues.priority-queue" ,sbcl-queues.priority-queue)
2461 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2462 (arguments
2463 `(#:asd-file "queues.priority-cqueue.asd"))
2464 (synopsis "Thread safe fibonacci priority queue implementation")
2465 (description
2466 "This is a simple queue library for Common Lisp with features such as
2467 non-consing thread safe queues and fibonacci priority queues.")
2468 (license license:expat)))
2469
2470 (define-public cl-queues.priority-cqueue
2471 (sbcl-package->cl-source-package sbcl-queues.priority-cqueue))
2472
2473 (define-public ecl-queues.priority-cqueue
2474 (sbcl-package->ecl-package sbcl-queues.priority-cqueue))
2475
2476 (define sbcl-cffi-bootstrap
2477 (package
2478 (name "sbcl-cffi-bootstrap")
2479 (version "0.21.0")
2480 (source
2481 (origin
2482 (method git-fetch)
2483 (uri (git-reference
2484 (url "https://github.com/cffi/cffi.git")
2485 (commit (string-append "v" version))))
2486 (file-name (git-file-name "cffi-bootstrap" version))
2487 (sha256
2488 (base32 "1qalargz9bhp850qv60ffwpdqi4xirzar4l3g6qcg8yc6xqf2cjk"))))
2489 (build-system asdf-build-system/sbcl)
2490 (inputs
2491 `(("libffi" ,libffi)
2492 ("alexandria" ,sbcl-alexandria)
2493 ("babel" ,sbcl-babel)
2494 ("trivial-features" ,sbcl-trivial-features)))
2495 (native-inputs
2496 `(("pkg-config" ,pkg-config)))
2497 (arguments
2498 '(#:phases
2499 (modify-phases %standard-phases
2500 (add-after 'unpack 'fix-paths
2501 (lambda* (#:key inputs #:allow-other-keys)
2502 (substitute* "libffi/libffi.lisp"
2503 (("libffi.so.6" all) (string-append
2504 (assoc-ref inputs "libffi")
2505 "/lib/" all)))
2506 (substitute* "toolchain/c-toolchain.lisp"
2507 (("\"cc\"") (format #f "~S" (which "gcc")))))))
2508 #:asd-system-name "cffi"
2509 #:tests? #f))
2510 (home-page "https://common-lisp.net/project/cffi/")
2511 (synopsis "Common Foreign Function Interface for Common Lisp")
2512 (description "The Common Foreign Function Interface (CFFI)
2513 purports to be a portable foreign function interface for Common Lisp.
2514 The CFFI library is composed of a Lisp-implementation-specific backend
2515 in the CFFI-SYS package, and a portable frontend in the CFFI
2516 package.")
2517 (license license:expat)))
2518
2519 (define-public sbcl-cffi-toolchain
2520 (package
2521 (inherit sbcl-cffi-bootstrap)
2522 (name "sbcl-cffi-toolchain")
2523 (inputs
2524 `(("libffi" ,libffi)
2525 ("sbcl-cffi" ,sbcl-cffi-bootstrap)))
2526 (arguments
2527 (substitute-keyword-arguments (package-arguments sbcl-cffi-bootstrap)
2528 ((#:asd-system-name _) #f)
2529 ((#:tests? _) #t)))))
2530
2531 (define-public sbcl-cffi-libffi
2532 (package
2533 (inherit sbcl-cffi-toolchain)
2534 (name "sbcl-cffi-libffi")
2535 (inputs
2536 `(("cffi" ,sbcl-cffi-bootstrap)
2537 ("cffi-grovel" ,sbcl-cffi-grovel)
2538 ("trivial-features" ,sbcl-trivial-features)
2539 ("libffi" ,libffi)))))
2540
2541 (define-public sbcl-cffi-grovel
2542 (package
2543 (inherit sbcl-cffi-toolchain)
2544 (name "sbcl-cffi-grovel")
2545 (inputs
2546 `(("libffi" ,libffi)
2547 ("cffi" ,sbcl-cffi-bootstrap)
2548 ("cffi-toolchain" ,sbcl-cffi-toolchain)
2549 ("alexandria" ,sbcl-alexandria)))
2550 (arguments
2551 (substitute-keyword-arguments (package-arguments sbcl-cffi-toolchain)
2552 ((#:phases phases)
2553 `(modify-phases ,phases
2554 (add-after 'build 'install-headers
2555 (lambda* (#:key outputs #:allow-other-keys)
2556 (install-file "grovel/common.h"
2557 (string-append
2558 (assoc-ref outputs "out")
2559 "/include/grovel"))))))))))
2560
2561 (define-public sbcl-cffi
2562 (package
2563 (inherit sbcl-cffi-toolchain)
2564 (name "sbcl-cffi")
2565 (inputs (package-inputs sbcl-cffi-bootstrap))
2566 (native-inputs
2567 `(("cffi-grovel" ,sbcl-cffi-grovel)
2568 ("cffi-libffi" ,sbcl-cffi-libffi)
2569 ("rt" ,sbcl-rt)
2570 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2571 ,@(package-native-inputs sbcl-cffi-bootstrap)))))
2572
2573 (define-public cl-cffi
2574 (sbcl-package->cl-source-package sbcl-cffi))
2575
2576 (define-public sbcl-cl-sqlite
2577 (let ((commit "c738e66d4266ef63a1debc4ef4a1b871a068c112"))
2578 (package
2579 (name "sbcl-cl-sqlite")
2580 (version (git-version "0.2" "1" commit))
2581 (source
2582 (origin
2583 (method git-fetch)
2584 (uri (git-reference
2585 (url "https://github.com/dmitryvk/cl-sqlite")
2586 (commit commit)))
2587 (file-name (git-file-name "cl-sqlite" version))
2588 (sha256
2589 (base32
2590 "1ng45k1hdb84sqjryrfx93g66bsbybmpy301wd0fdybnc5jzr36q"))))
2591 (build-system asdf-build-system/sbcl)
2592 (inputs
2593 `(("iterate" ,sbcl-iterate)
2594 ("cffi" ,sbcl-cffi)
2595 ("sqlite" ,sqlite)))
2596 (native-inputs
2597 `(("fiveam" ,sbcl-fiveam)
2598 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2599 (arguments
2600 `(#:tests? #f ; Upstream seems to have issues with tests: https://github.com/dmitryvk/cl-sqlite/issues/7
2601 #:asd-file "sqlite.asd"
2602 #:asd-system-name "sqlite"
2603 #:phases
2604 (modify-phases %standard-phases
2605 (add-after 'unpack 'fix-paths
2606 (lambda* (#:key inputs #:allow-other-keys)
2607 (substitute* "sqlite-ffi.lisp"
2608 (("libsqlite3" all) (string-append
2609 (assoc-ref inputs "sqlite")"/lib/" all))))))))
2610 (home-page "https://common-lisp.net/project/cl-sqlite/")
2611 (synopsis "Common Lisp binding for SQLite")
2612 (description
2613 "The @command{cl-sqlite} package is an interface to the SQLite embedded
2614 relational database engine.")
2615 (license license:public-domain))))
2616
2617 (define-public cl-sqlite
2618 (sbcl-package->cl-source-package sbcl-cl-sqlite))
2619
2620 (define-public sbcl-parenscript
2621 (let ((commit "061d8e286c81c3f45c84fb2b11ee7d83f590a8f8"))
2622 (package
2623 (name "sbcl-parenscript")
2624 (version (git-version "2.6" "1" commit))
2625 (source
2626 (origin
2627 (method git-fetch)
2628 (uri (git-reference
2629 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
2630 (commit commit)))
2631 (file-name (git-file-name "parenscript" version))
2632 (sha256
2633 (base32
2634 "1kbhgsjbikc73m5cwdp4d4fdafyqcr1b7b630qjrziql0nh6mi3k"))))
2635 (build-system asdf-build-system/sbcl)
2636 (inputs
2637 `(("cl-ppcre" ,sbcl-cl-ppcre)
2638 ("anaphora" ,sbcl-anaphora)
2639 ("named-readtables" ,sbcl-named-readtables)))
2640 (home-page "https://common-lisp.net/project/parenscript/")
2641 (synopsis "Translator from a subset of Common Lisp to JavaScript")
2642 (description
2643 "Parenscript is a translator from an extended subset of Common Lisp to
2644 JavaScript. Parenscript code can run almost identically on both the
2645 browser (as JavaScript) and server (as Common Lisp).
2646
2647 Parenscript code is treated the same way as Common Lisp code, making the full
2648 power of Lisp macros available for JavaScript. This provides a web
2649 development environment that is unmatched in its ability to reduce code
2650 duplication and provide advanced meta-programming facilities to web
2651 developers.
2652
2653 At the same time, Parenscript is different from almost all other \"language
2654 X\" to JavaScript translators in that it imposes almost no overhead:
2655
2656 @itemize
2657 @item No run-time dependencies: Any piece of Parenscript code is runnable
2658 as-is. There are no JavaScript files to include.
2659 @item Native types: Parenscript works entirely with native JavaScript data
2660 types. There are no new types introduced, and object prototypes are not
2661 touched.
2662 @item Native calling convention: Any JavaScript code can be called without the
2663 need for bindings. Likewise, Parenscript can be used to make efficient,
2664 self-contained JavaScript libraries.
2665 @item Readable code: Parenscript generates concise, formatted, idiomatic
2666 JavaScript code. Identifier names are preserved. This enables seamless
2667 debugging in tools like Firebug.
2668 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
2669 Lisp features. The generated code is almost as fast as hand-written
2670 JavaScript.
2671 @end itemize\n")
2672 (license license:bsd-3))))
2673
2674 (define-public cl-parenscript
2675 (sbcl-package->cl-source-package sbcl-parenscript))
2676
2677 (define-public ecl-parenscript
2678 (sbcl-package->ecl-package sbcl-parenscript))
2679
2680 (define-public sbcl-cl-json
2681 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
2682 (package
2683 (name "sbcl-cl-json")
2684 (version (git-version "0.5" "1" commit))
2685 (source
2686 (origin
2687 (method git-fetch)
2688 (uri (git-reference
2689 (url "https://github.com/hankhero/cl-json")
2690 (commit commit)))
2691 (file-name (git-file-name "cl-json" version))
2692 (sha256
2693 (base32
2694 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
2695 (build-system asdf-build-system/sbcl)
2696 (native-inputs
2697 `(("fiveam" ,sbcl-fiveam)))
2698 (home-page "https://github.com/hankhero/cl-json")
2699 (synopsis "JSON encoder and decoder for Common-Lisp")
2700 (description
2701 "@command{cl-json} provides an encoder of Lisp objects to JSON format
2702 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
2703 and the decoder are highly customizable; at the same time, the default
2704 settings ensure a very simple mode of operation, similar to that provided by
2705 @command{yason} or @command{st-json}.")
2706 (license license:expat))))
2707
2708 (define-public cl-json
2709 (sbcl-package->cl-source-package sbcl-cl-json))
2710
2711 (define-public ecl-cl-json
2712 (sbcl-package->ecl-package sbcl-cl-json))
2713
2714 (define-public sbcl-unix-opts
2715 (package
2716 (name "sbcl-unix-opts")
2717 (version "0.1.7")
2718 (source
2719 (origin
2720 (method git-fetch)
2721 (uri (git-reference
2722 (url "https://github.com/libre-man/unix-opts")
2723 (commit version)))
2724 (file-name (git-file-name "unix-opts" version))
2725 (sha256
2726 (base32
2727 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
2728 (build-system asdf-build-system/sbcl)
2729 (home-page "https://github.com/hankhero/cl-json")
2730 (synopsis "Unix-style command line options parser")
2731 (description
2732 "This is a minimalistic parser of command line options. The main
2733 advantage of the library is the ability to concisely define command line
2734 options once and then use this definition for parsing and extraction of
2735 command line arguments, as well as printing description of command line
2736 options (you get --help for free). This way you don't need to repeat
2737 yourself. Also, @command{unix-opts} doesn't depend on anything and allows to
2738 precisely control behavior of the parser via Common Lisp restarts.")
2739 (license license:expat)))
2740
2741 (define-public cl-unix-opts
2742 (sbcl-package->cl-source-package sbcl-unix-opts))
2743
2744 (define-public ecl-unix-opts
2745 (sbcl-package->ecl-package sbcl-unix-opts))
2746
2747 (define-public sbcl-trivial-garbage
2748 (package
2749 (name "sbcl-trivial-garbage")
2750 (version "0.21")
2751 (source
2752 (origin
2753 (method git-fetch)
2754 (uri (git-reference
2755 (url "https://github.com/trivial-garbage/trivial-garbage.git")
2756 (commit (string-append "v" version))))
2757 (file-name (git-file-name "trivial-garbage" version))
2758 (sha256
2759 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
2760 (build-system asdf-build-system/sbcl)
2761 (native-inputs
2762 `(("rt" ,sbcl-rt)))
2763 (home-page "https://common-lisp.net/project/trivial-garbage/")
2764 (synopsis "Portable GC-related APIs for Common Lisp")
2765 (description "@command{trivial-garbage} provides a portable API to
2766 finalizers, weak hash-tables and weak pointers on all major implementations of
2767 the Common Lisp programming language.")
2768 (license license:public-domain)))
2769
2770 (define-public cl-trivial-garbage
2771 (sbcl-package->cl-source-package sbcl-trivial-garbage))
2772
2773 (define-public ecl-trivial-garbage
2774 (sbcl-package->ecl-package sbcl-trivial-garbage))
2775
2776 (define-public sbcl-closer-mop
2777 (let ((commit "fac29ce90e3a46e1fc6cf182190e193526fa9dbc"))
2778 (package
2779 (name "sbcl-closer-mop")
2780 (version (git-version "1.0.0" "1" commit))
2781 (source
2782 (origin
2783 (method git-fetch)
2784 (uri (git-reference
2785 (url "https://github.com/pcostanza/closer-mop")
2786 (commit commit)))
2787 (sha256
2788 (base32 "0hvh77y869h8fg9di5snyg85fxq6fdh9gj1igmx1g6j6j5x915dl"))
2789 (file-name (git-file-name "closer-mop" version ))))
2790 (build-system asdf-build-system/sbcl)
2791 (home-page "https://github.com/pcostanza/closer-mop")
2792 (synopsis "Rectifies absent or incorrect CLOS MOP features")
2793 (description "Closer to MOP is a compatibility layer that rectifies many
2794 of the absent or incorrect CLOS MOP features across a broad range of Common
2795 Lisp implementations.")
2796 (license license:expat))))
2797
2798 (define-public cl-closer-mop
2799 (sbcl-package->cl-source-package sbcl-closer-mop))
2800
2801 (define-public ecl-closer-mop
2802 (sbcl-package->ecl-package sbcl-closer-mop))
2803
2804 (define sbcl-cl-cffi-gtk-boot0
2805 (let ((commit "29443c5aaca975709df8025c4649366d882033cb"))
2806 (package
2807 (name "sbcl-cl-cffi-gtk-boot0")
2808 (version (git-version "0.11.2" "1" commit))
2809 (source
2810 (origin
2811 (method git-fetch)
2812 (uri (git-reference
2813 (url "https://github.com/Ferada/cl-cffi-gtk/")
2814 (commit commit)))
2815 (file-name (git-file-name "cl-cffi-gtk" version))
2816 (sha256
2817 (base32
2818 "0f6s92sf8xyzh1yksqx8bsy1sv0zmy0c13j3b8bavaba5hlxpxah"))))
2819 (build-system asdf-build-system/sbcl)
2820 (inputs
2821 `(("iterate" ,sbcl-iterate)
2822 ("cffi" ,sbcl-cffi)
2823 ("trivial-features" ,sbcl-trivial-features)))
2824 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
2825 (synopsis "Common Lisp binding for GTK+3")
2826 (description
2827 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
2828 is a library for creating graphical user interfaces.")
2829 (license license:lgpl3))))
2830
2831 (define-public sbcl-cl-cffi-gtk-glib
2832 (package
2833 (inherit sbcl-cl-cffi-gtk-boot0)
2834 (name "sbcl-cl-cffi-gtk-glib")
2835 (inputs
2836 `(("glib" ,glib)
2837 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2838 (arguments
2839 `(#:asd-file "glib/cl-cffi-gtk-glib.asd"
2840 #:phases
2841 (modify-phases %standard-phases
2842 (add-after 'unpack 'fix-paths
2843 (lambda* (#:key inputs #:allow-other-keys)
2844 (substitute* "glib/glib.init.lisp"
2845 (("libglib|libgthread" all) (string-append
2846 (assoc-ref inputs "glib") "/lib/" all))))))))))
2847
2848 (define-public sbcl-cl-cffi-gtk-gobject
2849 (package
2850 (inherit sbcl-cl-cffi-gtk-boot0)
2851 (name "sbcl-cl-cffi-gtk-gobject")
2852 (inputs
2853 `(("glib" ,glib)
2854 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2855 ("trivial-garbage" ,sbcl-trivial-garbage)
2856 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2857 ("closer-mop" ,sbcl-closer-mop)
2858 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2859 (arguments
2860 `(#:asd-file "gobject/cl-cffi-gtk-gobject.asd"
2861 #:phases
2862 (modify-phases %standard-phases
2863 (add-after 'unpack 'fix-paths
2864 (lambda* (#:key inputs #:allow-other-keys)
2865 (substitute* "gobject/gobject.init.lisp"
2866 (("libgobject" all) (string-append
2867 (assoc-ref inputs "glib") "/lib/" all))))))))))
2868
2869 (define-public sbcl-cl-cffi-gtk-gio
2870 (package
2871 (inherit sbcl-cl-cffi-gtk-boot0)
2872 (name "sbcl-cl-cffi-gtk-gio")
2873 (inputs
2874 `(("glib" ,glib)
2875 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2876 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2877 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2878 (arguments
2879 `(#:asd-file "gio/cl-cffi-gtk-gio.asd"
2880 #:phases
2881 (modify-phases %standard-phases
2882 (add-after 'unpack 'fix-paths
2883 (lambda* (#:key inputs #:allow-other-keys)
2884 (substitute* "gio/gio.init.lisp"
2885 (("libgio" all)
2886 (string-append
2887 (assoc-ref inputs "glib") "/lib/" all))))))))))
2888
2889 (define-public sbcl-cl-cffi-gtk-cairo
2890 (package
2891 (inherit sbcl-cl-cffi-gtk-boot0)
2892 (name "sbcl-cl-cffi-gtk-cairo")
2893 (inputs
2894 `(("cairo" ,cairo)
2895 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2896 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2897 (arguments
2898 `(#:asd-file "cairo/cl-cffi-gtk-cairo.asd"
2899 #:phases
2900 (modify-phases %standard-phases
2901 (add-after 'unpack 'fix-paths
2902 (lambda* (#:key inputs #:allow-other-keys)
2903 (substitute* "cairo/cairo.init.lisp"
2904 (("libcairo" all)
2905 (string-append
2906 (assoc-ref inputs "cairo") "/lib/" all))))))))))
2907
2908 (define-public sbcl-cl-cffi-gtk-pango
2909 (package
2910 (inherit sbcl-cl-cffi-gtk-boot0)
2911 (name "sbcl-cl-cffi-gtk-pango")
2912 (inputs
2913 `(("pango" ,pango)
2914 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2915 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2916 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
2917 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2918 (arguments
2919 `(#:asd-file "pango/cl-cffi-gtk-pango.asd"
2920 #:phases
2921 (modify-phases %standard-phases
2922 (add-after 'unpack 'fix-paths
2923 (lambda* (#:key inputs #:allow-other-keys)
2924 (substitute* "pango/pango.init.lisp"
2925 (("libpango" all)
2926 (string-append
2927 (assoc-ref inputs "pango") "/lib/" all))))))))))
2928
2929 (define-public sbcl-cl-cffi-gtk-gdk-pixbuf
2930 (package
2931 (inherit sbcl-cl-cffi-gtk-boot0)
2932 (name "sbcl-cl-cffi-gtk-gdk-pixbuf")
2933 (inputs
2934 `(("gdk-pixbuf" ,gdk-pixbuf)
2935 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2936 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2937 (arguments
2938 `(#:asd-file "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
2939 #:phases
2940 (modify-phases %standard-phases
2941 (add-after 'unpack 'fix-paths
2942 (lambda* (#:key inputs #:allow-other-keys)
2943 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
2944 (("libgdk_pixbuf" all)
2945 (string-append
2946 (assoc-ref inputs "gdk-pixbuf") "/lib/" all))))))))))
2947
2948 (define-public sbcl-cl-cffi-gtk-gdk
2949 (package
2950 (inherit sbcl-cl-cffi-gtk-boot0)
2951 (name "sbcl-cl-cffi-gtk-gdk")
2952 (inputs
2953 `(("gtk" ,gtk+)
2954 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2955 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
2956 ("cl-cffi-gtk-gdk-pixbuf" ,sbcl-cl-cffi-gtk-gdk-pixbuf)
2957 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
2958 ("cl-cffi-gtk-pango" ,sbcl-cl-cffi-gtk-pango)
2959 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2960 (arguments
2961 `(#:asd-file "gdk/cl-cffi-gtk-gdk.asd"
2962 #:phases
2963 (modify-phases %standard-phases
2964 (add-after 'unpack 'fix-paths
2965 (lambda* (#:key inputs #:allow-other-keys)
2966 (substitute* "gdk/gdk.init.lisp"
2967 (("libgdk" all)
2968 (string-append
2969 (assoc-ref inputs "gtk") "/lib/" all)))
2970 (substitute* "gdk/gdk.package.lisp"
2971 (("libgtk" all)
2972 (string-append
2973 (assoc-ref inputs "gtk") "/lib/" all))))))))))
2974
2975 (define-public sbcl-cl-cffi-gtk
2976 (package
2977 (inherit sbcl-cl-cffi-gtk-boot0)
2978 (name "sbcl-cl-cffi-gtk")
2979 (inputs
2980 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2981 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2982 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
2983 ("cl-cffi-gtk-gdk" ,sbcl-cl-cffi-gtk-gdk)
2984 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2985 (native-inputs
2986 `(("fiveam" ,sbcl-fiveam)))
2987 (arguments
2988 `(#:asd-file "gtk/cl-cffi-gtk.asd"
2989 #:test-asd-file "test/cl-cffi-gtk-test.asd"
2990 ;; TODO: Tests fail with memory fault.
2991 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
2992 #:tests? #f))))
2993
2994 (define-public cl-cffi-gtk
2995 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
2996
2997 (define-public sbcl-cl-webkit
2998 (let ((commit "cd2a9008e0c152e54755e8a7f07b050fe36bab31"))
2999 (package
3000 (name "sbcl-cl-webkit")
3001 (version (git-version "2.4" "1" commit))
3002 (source
3003 (origin
3004 (method git-fetch)
3005 (uri (git-reference
3006 (url "https://github.com/jmercouris/cl-webkit")
3007 (commit commit)))
3008 (file-name (git-file-name "cl-webkit" version))
3009 (sha256
3010 (base32
3011 "0f5lyn9i7xrn3g1bddga377mcbawkbxydijpg389q4n04gqj0vwf"))))
3012 (build-system asdf-build-system/sbcl)
3013 (inputs
3014 `(("cffi" ,sbcl-cffi)
3015 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3016 ("webkitgtk" ,webkitgtk)))
3017 (arguments
3018 `(#:asd-file "webkit2/cl-webkit2.asd"
3019 #:asd-system-name "cl-webkit2"
3020 #:phases
3021 (modify-phases %standard-phases
3022 (add-after 'unpack 'fix-paths
3023 (lambda* (#:key inputs #:allow-other-keys)
3024 (substitute* "webkit2/webkit2.init.lisp"
3025 (("libwebkit2gtk" all)
3026 (string-append
3027 (assoc-ref inputs "webkitgtk") "/lib/" all))))))))
3028 (home-page "https://github.com/jmercouris/cl-webkit")
3029 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3030 (description
3031 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3032 currently targeting WebKit version 2. The WebKitGTK+ library adds web
3033 browsing capabilities to an application, leveraging the full power of the
3034 WebKit browsing engine.")
3035 (license license:expat))))
3036
3037 (define-public cl-webkit
3038 (sbcl-package->cl-source-package sbcl-cl-webkit))
3039
3040 (define-public sbcl-lparallel
3041 (package
3042 (name "sbcl-lparallel")
3043 (version "2.8.4")
3044 (source
3045 (origin
3046 (method git-fetch)
3047 (uri (git-reference
3048 (url "https://github.com/lmj/lparallel/")
3049 (commit (string-append "lparallel-" version))))
3050 (file-name (git-file-name "lparallel" version))
3051 (sha256
3052 (base32
3053 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3054 (build-system asdf-build-system/sbcl)
3055 (inputs
3056 `(("alexandria" ,sbcl-alexandria)
3057 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3058 ("trivial-garbage" ,sbcl-trivial-garbage)))
3059 (home-page "https://lparallel.org/")
3060 (synopsis "Parallelism for Common Lisp")
3061 (description
3062 "@command{lparallel} is a library for parallel programming in Common
3063 Lisp, featuring:
3064
3065 @itemize
3066 @item a simple model of task submission with receiving queue,
3067 @item constructs for expressing fine-grained parallelism,
3068 @item asynchronous condition handling across thread boundaries,
3069 @item parallel versions of map, reduce, sort, remove, and many others,
3070 @item promises, futures, and delayed evaluation constructs,
3071 @item computation trees for parallelizing interconnected tasks,
3072 @item bounded and unbounded FIFO queues,
3073 @item high and low priority tasks,
3074 @item task killing by category,
3075 @item integrated timeouts.
3076 @end itemize\n")
3077 (license license:expat)))
3078
3079 (define-public cl-lparallel
3080 (sbcl-package->cl-source-package sbcl-lparallel))
3081
3082 (define-public ecl-lparallel
3083 (sbcl-package->ecl-package sbcl-lparallel))
3084
3085 (define-public sbcl-cl-markup
3086 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3087 (package
3088 (name "sbcl-cl-markup")
3089 (version (git-version "0.1" "1" commit))
3090 (source
3091 (origin
3092 (method git-fetch)
3093 (uri (git-reference
3094 (url "https://github.com/arielnetworks/cl-markup/")
3095 (commit commit)))
3096 (file-name (git-file-name "cl-markup" version))
3097 (sha256
3098 (base32
3099 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3100 (build-system asdf-build-system/sbcl)
3101 (home-page "https://github.com/arielnetworks/cl-markup/")
3102 (synopsis "Markup generation library for Common Lisp")
3103 (description
3104 "A modern markup generation library for Common Lisp that features:
3105
3106 @itemize
3107 @item Fast (even faster through compiling the code)
3108 @item Safety
3109 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3110 @item Output with doctype
3111 @item Direct output to stream
3112 @end itemize\n")
3113 (license license:lgpl3+))))
3114
3115 (define-public cl-markup
3116 (sbcl-package->cl-source-package sbcl-cl-markup))
3117
3118 (define-public ecl-cl-markup
3119 (sbcl-package->ecl-package sbcl-cl-markup))
3120
3121 (define-public sbcl-cl-css
3122 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3123 (package
3124 (name "sbcl-cl-css")
3125 (version (git-version "0.1" "1" commit))
3126 (source
3127 (origin
3128 (method git-fetch)
3129 (uri (git-reference
3130 (url "https://github.com/inaimathi/cl-css/")
3131 (commit commit)))
3132 (file-name (git-file-name "cl-css" version))
3133 (sha256
3134 (base32
3135 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3136 (build-system asdf-build-system/sbcl)
3137 (home-page "https://github.com/inaimathi/cl-css/")
3138 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3139 (description
3140 "This is a dead-simple, non validating, inline CSS generator for Common
3141 Lisp. Its goals are axiomatic syntax, simple implementation to support
3142 portability, and boilerplate reduction in CSS.")
3143 (license license:expat))))
3144
3145 (define-public cl-css
3146 (sbcl-package->cl-source-package sbcl-cl-css))
3147
3148 (define-public ecl-cl-css
3149 (sbcl-package->ecl-package sbcl-cl-css))
3150
3151 (define-public sbcl-portable-threads
3152 (let ((commit "c0e61a1faeb0583c80fd3f20b16cc4c555226920"))
3153 (package
3154 (name "sbcl-portable-threads")
3155 (version (git-version "2.3" "1" commit))
3156 (source
3157 (origin
3158 (method git-fetch)
3159 (uri (git-reference
3160 (url "https://github.com/binghe/portable-threads/")
3161 (commit commit)))
3162 (file-name (git-file-name "portable-threads" version))
3163 (sha256
3164 (base32
3165 "03fmxyarc0xf4kavwkfa0a2spkyfrz6hbgbi9y4q7ny5aykdyfaq"))))
3166 (build-system asdf-build-system/sbcl)
3167 (arguments
3168 `(;; Tests seem broken.
3169 #:tests? #f))
3170 (home-page "https://github.com/binghe/portable-threads")
3171 (synopsis "Portable threads (and scheduled and periodic functions) API for Common Lisp")
3172 (description
3173 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3174 Lisp (from GBBopen project).")
3175 (license license:asl2.0))))
3176
3177 (define-public cl-portable-threads
3178 (sbcl-package->cl-source-package sbcl-portable-threads))
3179
3180 (define-public ecl-portable-threada
3181 (sbcl-package->ecl-package sbcl-portable-threads))
3182
3183 (define-public sbcl-usocket-boot0
3184 ;; usocket's test rely on usocket-server which depends on usocket itself.
3185 ;; We break this cyclic dependency with -boot0 that packages usocket.
3186 (let ((commit "86e7efbfe50101931edf4b67cdcfa7e221ecfde9"))
3187 (package
3188 (name "sbcl-usocket-boot0")
3189 (version (git-version "0.7.1" "1" commit))
3190 (source
3191 (origin
3192 (method git-fetch)
3193 (uri (git-reference
3194 (url "https://github.com/usocket/usocket/")
3195 (commit commit)))
3196 (file-name (git-file-name "usocket" version))
3197 (sha256
3198 (base32
3199 "1lk6ipakrib7kdgzw44hrgmls9akp5pz4h35yynw0k5zwmmq6374"))))
3200 (build-system asdf-build-system/sbcl)
3201 (inputs
3202 `(("split-sequence" ,sbcl-split-sequence)))
3203 (arguments
3204 `(#:tests? #f
3205 #:asd-system-name "usocket"))
3206 (home-page "https://common-lisp.net/project/usocket/")
3207 (synopsis "Universal socket library for Common Lisp (server side)")
3208 (description
3209 "This library strives to provide a portable TCP/IP and UDP/IP socket
3210 interface for as many Common Lisp implementations as possible, while keeping
3211 the abstraction and portability layer as thin as possible.")
3212 (license license:expat))))
3213
3214 (define-public sbcl-usocket-server
3215 (package
3216 (inherit sbcl-usocket-boot0)
3217 (name "sbcl-usocket-server")
3218 (inputs
3219 `(("usocket" ,sbcl-usocket-boot0)
3220 ("portable-threads" ,sbcl-portable-threads)))
3221 (arguments
3222 '(#:asd-system-name "usocket-server"))
3223 (synopsis "Universal socket library for Common Lisp (server side)")))
3224
3225 (define-public cl-usocket-server
3226 (sbcl-package->cl-source-package sbcl-usocket-server))
3227
3228 (define-public ecl-socket-server
3229 (sbcl-package->ecl-package sbcl-usocket-server))
3230
3231 (define-public sbcl-usocket
3232 (package
3233 (inherit sbcl-usocket-boot0)
3234 (name "sbcl-usocket")
3235 (arguments
3236 ;; FIXME: Tests need network access?
3237 `(#:tests? #f))
3238 (native-inputs
3239 ;; Testing only.
3240 `(("usocket-server" ,sbcl-usocket-server)
3241 ("rt" ,sbcl-rt)))))
3242
3243 (define-public cl-usocket
3244 (sbcl-package->cl-source-package sbcl-usocket))
3245
3246 (define-public ecl-socket
3247 (sbcl-package->ecl-package sbcl-usocket))
3248
3249 (define-public sbcl-s-xml
3250 (package
3251 (name "sbcl-s-xml")
3252 (version "3")
3253 (source
3254 (origin
3255 (method url-fetch)
3256 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3257 (sha256
3258 (base32
3259 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3260 (build-system asdf-build-system/sbcl)
3261 (home-page "https://common-lisp.net/project/s-xml/")
3262 (synopsis "Simple XML parser implemented in Common Lisp")
3263 (description
3264 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3265 parser implementation has the following features:
3266
3267 @itemize
3268 @item It works (handling many common XML usages).
3269 @item It is very small (the core is about 700 lines of code, including
3270 comments and whitespace).
3271 @item It has a core API that is simple, efficient and pure functional, much
3272 like that from SSAX (see also http://ssax.sourceforge.net).
3273 @item It supports different DOM models: an XSML-based one, an LXML-based one
3274 and a classic xml-element struct based one.
3275 @item It is reasonably time and space efficient (internally avoiding garbage
3276 generatation as much as possible).
3277 @item It does support CDATA.
3278 @item It should support the same character sets as your Common Lisp
3279 implementation.
3280 @item It does support XML name spaces.
3281 @end itemize
3282
3283 This XML parser implementation has the following limitations:
3284
3285 @itemize
3286 @item It does not support any special tags (like processing instructions).
3287 @item It is not validating, even skips DTD's all together.
3288 @end itemize\n")
3289 (license license:lgpl3+)))
3290
3291 (define-public cl-s-xml
3292 (sbcl-package->cl-source-package sbcl-s-xml))
3293
3294 (define-public ecl-s-xml
3295 (sbcl-package->ecl-package sbcl-s-xml))
3296
3297 (define-public sbcl-s-xml-rpc
3298 (package
3299 (name "sbcl-s-xml-rpc")
3300 (version "7")
3301 (source
3302 (origin
3303 (method url-fetch)
3304 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3305 (sha256
3306 (base32
3307 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3308 (build-system asdf-build-system/sbcl)
3309 (inputs
3310 `(("s-xml" ,sbcl-s-xml)))
3311 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3312 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3313 (description
3314 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3315 client and server.")
3316 (license license:lgpl3+)))
3317
3318 (define-public cl-s-xml-rpc
3319 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3320
3321 (define-public ecl-s-xml-rpc
3322 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3323
3324 (define-public sbcl-trivial-clipboard
3325 (let ((commit "5af3415d1484e6d69a1b5c178f24680d9fd01796"))
3326 (package
3327 (name "sbcl-trivial-clipboard")
3328 (version (git-version "0.0.0.0" "2" commit))
3329 (source
3330 (origin
3331 (method git-fetch)
3332 (uri (git-reference
3333 (url "https://github.com/snmsts/trivial-clipboard")
3334 (commit commit)))
3335 (file-name (git-file-name "trivial-clipboard" version))
3336 (sha256
3337 (base32
3338 "1gb515z5yq6h5548pb1fwhmb0hhq1ssyb78pvxh4alq799xipxs9"))))
3339 (build-system asdf-build-system/sbcl)
3340 (inputs
3341 `(("xclip" ,xclip)))
3342 (native-inputs
3343 `(("fiveam" ,sbcl-fiveam)))
3344 (arguments
3345 `(#:phases
3346 (modify-phases %standard-phases
3347 (add-after 'unpack 'fix-paths
3348 (lambda* (#:key inputs #:allow-other-keys)
3349 (substitute* "src/text.lisp"
3350 (("\\(executable-find \"xclip\"\\)")
3351 (string-append "(executable-find \""
3352 (assoc-ref inputs "xclip")
3353 "/bin/xclip\")"))))))))
3354 (home-page "https://github.com/snmsts/trivial-clipboard")
3355 (synopsis "Access system clipboard in Common Lisp")
3356 (description
3357 "@command{trivial-clipboard} gives access to the system clipboard.")
3358 (license license:expat))))
3359
3360 (define-public cl-trivial-clipboard
3361 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3362
3363 (define-public ecl-trivial-clipboard
3364 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3365
3366 (define-public sbcl-trivial-backtrace
3367 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3368 (revision "1"))
3369 (package
3370 (name "sbcl-trivial-backtrace")
3371 (version (git-version "0.0.0" revision commit))
3372 (source
3373 (origin
3374 (method git-fetch)
3375 (uri (git-reference
3376 (url "https://github.com/gwkkwg/trivial-backtrace.git")
3377 (commit commit)))
3378 (file-name (git-file-name "trivial-backtrace" version))
3379 (sha256
3380 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3381 (build-system asdf-build-system/sbcl)
3382 (inputs
3383 `(("sbcl-lift" ,sbcl-lift)))
3384 (arguments
3385 `(#:phases
3386 (modify-phases %standard-phases
3387 (add-after 'check 'delete-test-results
3388 (lambda* (#:key outputs #:allow-other-keys)
3389 (let ((test-results (string-append (assoc-ref outputs "out")
3390 "/share/common-lisp/"
3391 (%lisp-type) "-source"
3392 "/trivial-backtrace"
3393 "/test-results")))
3394 (when (file-exists? test-results)
3395 (delete-file-recursively test-results)))
3396 #t)))))
3397 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3398 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3399 (description
3400 "On of the many things that didn't quite get into the Common Lisp
3401 standard was how to get a Lisp to output its call stack when something has
3402 gone wrong. As such, each Lisp has developed its own notion of what to
3403 display, how to display it, and what sort of arguments can be used to
3404 customize it. @code{trivial-backtrace} is a simple solution to generating a
3405 backtrace portably.")
3406 (license license:expat))))
3407
3408 (define-public cl-trivial-backtrace
3409 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3410
3411 (define-public sbcl-rfc2388
3412 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3413 (revision "1"))
3414 (package
3415 (name "sbcl-rfc2388")
3416 (version (git-version "0.0.0" revision commit))
3417 (source
3418 (origin
3419 (method git-fetch)
3420 (uri (git-reference
3421 (url "https://github.com/jdz/rfc2388.git")
3422 (commit commit)))
3423 (file-name (git-file-name "rfc2388" version))
3424 (sha256
3425 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3426 (build-system asdf-build-system/sbcl)
3427 (home-page "https://github.com/jdz/rfc2388/")
3428 (synopsis "An implementation of RFC 2388 in Common Lisp")
3429 (description
3430 "This package contains an implementation of RFC 2388, which is used to
3431 process form data posted with HTTP POST method using enctype
3432 \"multipart/form-data\".")
3433 (license license:bsd-2))))
3434
3435 (define-public cl-rfc2388
3436 (sbcl-package->cl-source-package sbcl-rfc2388))
3437
3438 (define-public sbcl-md5
3439 (package
3440 (name "sbcl-md5")
3441 (version "2.0.4")
3442 (source
3443 (origin
3444 (method url-fetch)
3445 (uri (string-append
3446 "https://github.com/pmai/md5/archive/release-" version ".tar.gz"))
3447 (sha256
3448 (base32 "19yl9n0pjdz5gw4qi711lka97xcd9f81ylg434hk7jwn9f2s6w11"))))
3449 (build-system asdf-build-system/sbcl)
3450 (home-page "https://github.com/pmai/md5")
3451 (synopsis
3452 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3453 (description
3454 "This package implements The MD5 Message-Digest Algorithm, as defined in
3455 RFC 1321 by R. Rivest, published April 1992.")
3456 (license license:public-domain)))
3457
3458 (define-public cl-md5
3459 (sbcl-package->cl-source-package sbcl-md5))
3460
3461 (define-public sbcl-cl+ssl
3462 (let ((commit "141ae91416bc40f1618dc07e48429b84388aa599")
3463 (revision "1"))
3464 (package
3465 (name "sbcl-cl+ssl")
3466 (version (git-version "0.0.0" revision commit))
3467 (source
3468 (origin
3469 (method git-fetch)
3470 (uri (git-reference
3471 (url "https://github.com/cl-plus-ssl/cl-plus-ssl.git")
3472 (commit commit)))
3473 (file-name (git-file-name "cl+ssl" version))
3474 (sha256
3475 (base32 "1s0hg1h9sf8q89v0yrxmzg5f5sng29rgx3n21r9h9yql8351myan"))))
3476 (build-system asdf-build-system/sbcl)
3477 (arguments
3478 '(#:phases
3479 (modify-phases %standard-phases
3480 (add-after 'unpack 'fix-paths
3481 (lambda* (#:key inputs #:allow-other-keys)
3482 (substitute* "src/reload.lisp"
3483 (("libssl.so" all)
3484 (string-append
3485 (assoc-ref inputs "openssl") "/lib/" all))))))))
3486 (inputs
3487 `(("openssl" ,openssl)
3488 ("sbcl-cffi" ,sbcl-cffi)
3489 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
3490 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3491 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
3492 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
3493 ("sbcl-alexandria" ,sbcl-alexandria)
3494 ("sbcl-trivial-features" ,sbcl-trivial-features)))
3495 (home-page "http://common-lisp.net/project/cl-plus-ssl/")
3496 (synopsis "Common Lisp bindings to OpenSSL")
3497 (description
3498 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
3499 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
3500 Development into CL+SSL was done by David Lichteblau.")
3501 (license license:expat))))
3502
3503 (define-public cl-cl+ssl
3504 (sbcl-package->cl-source-package sbcl-cl+ssl))
3505
3506 (define-public sbcl-kmrcl
3507 (let ((version "1.109.0")
3508 (commit "5260068b2eb735af6796740c2db4955afac21636")
3509 (revision "1"))
3510 (package
3511 (name "sbcl-kmrcl")
3512 (version (git-version version revision commit))
3513 (source
3514 (origin
3515 (method git-fetch)
3516 (uri (git-reference
3517 (url "http://git.kpe.io/kmrcl.git/")
3518 (commit commit)))
3519 (file-name (git-file-name name version))
3520 (sha256
3521 (base32 "1va7xjgzfv674bpsli674i7zj3f7wg5kxic41kz18r6hh4n52dfv"))))
3522 (build-system asdf-build-system/sbcl)
3523 (arguments
3524 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed in a
3525 ;; nested call to ASDF/OPERATE:OPERATE unless identically to toplevel
3526 '(#:tests? #f))
3527 (inputs
3528 `(("sbcl-rt" ,sbcl-rt)))
3529 (home-page "http://files.kpe.io/kmrcl/")
3530 (synopsis "General utilities for Common Lisp programs")
3531 (description
3532 "KMRCL is a collection of utilities used by a number of Kevin
3533 Rosenberg's CL packages.")
3534 (license license:llgpl))))
3535
3536 (define-public cl-kmrcl
3537 (sbcl-package->cl-source-package sbcl-kmrcl))
3538
3539 (define-public sbcl-cl-base64
3540 (let ((version "3.3.3"))
3541 (package
3542 (name "sbcl-cl-base64")
3543 (version version)
3544 (source
3545 (origin
3546 (method git-fetch)
3547 (uri (git-reference
3548 (url "http://git.kpe.io/cl-base64.git")
3549 (commit (string-append "v" version))))
3550 (file-name (git-file-name "cl-base64" version))
3551 (sha256
3552 (base32 "1dw6j7n6gsd2qa0p0rbsjxj00acxx3i9ca1qkgl0liy8lpnwkypl"))))
3553 (build-system asdf-build-system/sbcl)
3554 (arguments
3555 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed
3556 ;; in a nested call to ASDF/OPERATE:OPERATE unless identically
3557 ;; to toplevel
3558 '(#:tests? #f))
3559 (inputs
3560 `(("sbcl-ptester" ,sbcl-ptester)
3561 ("sbcl-kmrcl" ,sbcl-kmrcl)))
3562 (home-page "http://files.kpe.io/cl-base64/")
3563 (synopsis
3564 "Common Lisp package to encode and decode base64 with URI support")
3565 (description
3566 "This package provides highly optimized base64 encoding and decoding.
3567 Besides conversion to and from strings, integer conversions are supported.
3568 Encoding with Uniform Resource Identifiers is supported by using a modified
3569 encoding table that uses only URI-compatible characters.")
3570 (license license:bsd-3))))
3571
3572 (define-public cl-base64
3573 (sbcl-package->cl-source-package sbcl-cl-base64))
3574
3575 (define-public sbcl-chunga
3576 (package
3577 (name "sbcl-chunga")
3578 (version "1.1.7")
3579 (source
3580 (origin
3581 (method git-fetch)
3582 (uri (git-reference
3583 (url "https://github.com/edicl/chunga.git")
3584 (commit (string-append "v" version))))
3585 (file-name (git-file-name name version))
3586 (sha256
3587 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
3588 (build-system asdf-build-system/sbcl)
3589 (inputs
3590 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
3591 (home-page "https://edicl.github.io/chunga/")
3592 (synopsis "Portable chunked streams for Common Lisp")
3593 (description
3594 "Chunga implements streams capable of chunked encoding on demand as
3595 defined in RFC 2616.")
3596 (license license:bsd-2)))
3597
3598 (define-public cl-chunga
3599 (sbcl-package->cl-source-package sbcl-chunga))
3600
3601 (define-public sbcl-cl-who
3602 (let ((version "1.1.4")
3603 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
3604 (revision "1"))
3605 (package
3606 (name "sbcl-cl-who")
3607 (version (git-version version revision commit))
3608 (source
3609 (origin
3610 (method git-fetch)
3611 (uri (git-reference
3612 (url "https://github.com/edicl/cl-who.git")
3613 (commit commit)))
3614 (file-name (git-file-name name version))
3615 (sha256
3616 (base32
3617 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
3618 (build-system asdf-build-system/sbcl)
3619 (native-inputs
3620 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3621 (home-page "https://edicl.github.io/cl-who/")
3622 (synopsis "Yet another Lisp markup language")
3623 (description
3624 "There are plenty of Lisp Markup Languages out there - every Lisp
3625 programmer seems to write at least one during his career - and CL-WHO (where
3626 WHO means \"with-html-output\" for want of a better acronym) is probably just
3627 as good or bad as the next one.")
3628 (license license:bsd-2))))
3629
3630 (define-public cl-cl-who
3631 (sbcl-package->cl-source-package sbcl-cl-who))
3632
3633 (define-public sbcl-chipz
3634 (let ((version "0.8")
3635 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
3636 (revision "1"))
3637 (package
3638 (name "sbcl-chipz")
3639 (version (git-version version revision commit))
3640 (source
3641 (origin
3642 (method git-fetch)
3643 (uri (git-reference
3644 (url "https://github.com/froydnj/chipz.git")
3645 (commit commit)))
3646 (file-name (git-file-name name version))
3647 (sha256
3648 (base32
3649 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
3650 (build-system asdf-build-system/sbcl)
3651 (native-inputs
3652 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3653 (home-page "http://method-combination.net/lisp/chipz/")
3654 (synopsis
3655 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
3656 data")
3657 (description
3658 "DEFLATE data, defined in RFC1951, forms the core of popular
3659 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
3660 Chipz also provides for decompressing data in those formats as well. BZIP2 is
3661 the format used by the popular compression tool bzip2.")
3662 ;; The author describes it as "MIT-like"
3663 (license license:expat))))
3664
3665 (define-public cl-chipz
3666 (sbcl-package->cl-source-package sbcl-chipz))
3667
3668 (define-public sbcl-drakma
3669 (let ((version "2.0.4")
3670 (commit "7647c0ae842ff2058624e53979c7f297760c97a7")
3671 (revision "1"))
3672 (package
3673 (name "sbcl-drakma")
3674 (version (git-version version revision commit))
3675 (source
3676 (origin
3677 (method git-fetch)
3678 (uri (git-reference
3679 (url "https://github.com/edicl/drakma.git")
3680 (commit commit)))
3681 (file-name (git-file-name name version))
3682 (sha256
3683 (base32
3684 "1c4i9wakhj5pxfyyykxshdmv3180sbkrx6fcyynikmc0jd0rh84r"))))
3685 (build-system asdf-build-system/sbcl)
3686 (inputs
3687 `(("sbcl-puri" ,sbcl-puri)
3688 ("sbcl-cl-base64" ,sbcl-cl-base64)
3689 ("sbcl-chunga" ,sbcl-chunga)
3690 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3691 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3692 ("sbcl-chipz" ,sbcl-chipz)
3693 ("sbcl-usocket" ,sbcl-usocket)
3694 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
3695 (native-inputs
3696 `(("sbcl-fiveam" ,sbcl-fiveam)))
3697 (home-page "https://edicl.github.io/drakma/")
3698 (synopsis "HTTP client written in Common Lisp")
3699 (description
3700 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
3701 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
3702 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
3703 (license license:bsd-2))))
3704
3705 (define-public cl-drakma
3706 (sbcl-package->cl-source-package sbcl-drakma))
3707
3708 (define-public sbcl-hunchentoot
3709 (package
3710 (name "sbcl-hunchentoot")
3711 (version "1.2.38")
3712 (source
3713 (origin
3714 (method git-fetch)
3715 (uri (git-reference
3716 (url "https://github.com/edicl/hunchentoot.git")
3717 (commit (string-append "v" version))))
3718 (file-name (git-file-name "hunchentoot" version))
3719 (sha256
3720 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
3721 (build-system asdf-build-system/sbcl)
3722 (native-inputs
3723 `(("sbcl-cl-who" ,sbcl-cl-who)
3724 ("sbcl-drakma" ,sbcl-drakma)))
3725 (inputs
3726 `(("sbcl-chunga" ,sbcl-chunga)
3727 ("sbcl-cl-base64" ,sbcl-cl-base64)
3728 ("sbcl-cl-fad" ,sbcl-cl-fad)
3729 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3730 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3731 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
3732 ("sbcl-md5" ,sbcl-md5)
3733 ("sbcl-rfc2388" ,sbcl-rfc2388)
3734 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
3735 ("sbcl-usocket" ,sbcl-usocket)))
3736 (home-page "https://edicl.github.io/hunchentoot/")
3737 (synopsis "Web server written in Common Lisp")
3738 (description
3739 "Hunchentoot is a web server written in Common Lisp and at the same
3740 time a toolkit for building dynamic websites. As a stand-alone web server,
3741 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
3742 connections (keep-alive), and SSL.")
3743 (license license:bsd-2)))
3744
3745 (define-public cl-hunchentoot
3746 (sbcl-package->cl-source-package sbcl-hunchentoot))
3747
3748 (define-public sbcl-trivial-types
3749 (package
3750 (name "sbcl-trivial-types")
3751 (version "0.0.1")
3752 (source
3753 (origin
3754 (method git-fetch)
3755 (uri (git-reference
3756 (url "https://github.com/m2ym/trivial-types.git")
3757 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
3758 (file-name (git-file-name name version))
3759 (sha256
3760 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
3761 (build-system asdf-build-system/sbcl)
3762 (home-page "https://github.com/m2ym/trivial-types")
3763 (synopsis "Trivial type definitions for Common Lisp")
3764 (description
3765 "TRIVIAL-TYPES provides missing but important type definitions such as
3766 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
3767 (license license:llgpl)))
3768
3769 (define-public cl-trivial-types
3770 (sbcl-package->cl-source-package sbcl-trivial-types))
3771
3772 (define-public sbcl-cl-syntax
3773 (package
3774 (name "sbcl-cl-syntax")
3775 (version "0.0.3")
3776 (source
3777 (origin
3778 (method git-fetch)
3779 (uri (git-reference
3780 (url "https://github.com/m2ym/cl-syntax.git")
3781 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3782 (file-name (git-file-name "cl-syntax" version))
3783 (sha256
3784 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3785 (build-system asdf-build-system/sbcl)
3786 (arguments
3787 '(#:asd-file "cl-syntax.asd"
3788 #:asd-system-name "cl-syntax"))
3789 (inputs `(("sbcl-trivial-types" ,sbcl-trivial-types)
3790 ("sbcl-named-readtables" ,sbcl-named-readtables)))
3791 (home-page "https://github.com/m2ym/cl-syntax")
3792 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3793 (description
3794 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
3795 (license license:llgpl)))
3796
3797 (define-public cl-syntax
3798 (sbcl-package->cl-source-package sbcl-cl-syntax))
3799
3800 (define-public sbcl-cl-annot
3801 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
3802 (revision "1"))
3803 (package
3804 (name "sbcl-cl-annot")
3805 (version (git-version "0.0.0" revision commit))
3806 (source
3807 (origin
3808 (method git-fetch)
3809 (uri (git-reference
3810 (url "https://github.com/m2ym/cl-annot.git")
3811 (commit commit)))
3812 (file-name (git-file-name name version))
3813 (sha256
3814 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
3815 (build-system asdf-build-system/sbcl)
3816 (arguments
3817 '(#:asd-file "cl-annot.asd"
3818 #:asd-system-name "cl-annot"))
3819 (inputs
3820 `(("sbcl-alexandria" ,sbcl-alexandria)))
3821 (home-page "https://github.com/m2ym/cl-annot")
3822 (synopsis "Python-like Annotation Syntax for Common Lisp.")
3823 (description
3824 "@code{cl-annot} is an general annotation library for Common Lisp.")
3825 (license license:llgpl))))
3826
3827 (define-public cl-annot
3828 (sbcl-package->cl-source-package sbcl-cl-annot))
3829
3830 (define-public sbcl-cl-syntax-annot
3831 (package
3832 (name "sbcl-cl-syntax-annot")
3833 (version "0.0.3")
3834 (source
3835 (origin
3836 (method git-fetch)
3837 (uri (git-reference
3838 (url "https://github.com/m2ym/cl-syntax.git")
3839 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3840 (file-name (git-file-name name version))
3841 (sha256
3842 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3843 (build-system asdf-build-system/sbcl)
3844 (arguments
3845 '(#:asd-file "cl-syntax-annot.asd"
3846 #:asd-system-name "cl-syntax-annot"))
3847 (inputs
3848 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
3849 ("sbcl-cl-annot" ,sbcl-cl-annot)))
3850 (home-page "https://github.com/m2ym/cl-syntax")
3851 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3852 (description
3853 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and
3854 SLIME.")
3855 (license license:llgpl)))
3856
3857 (define-public cl-syntax-annot
3858 (sbcl-package->cl-source-package sbcl-cl-syntax-annot))
3859
3860 (define-public sbcl-cl-utilities
3861 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
3862 (revision "1"))
3863 (package
3864 (name "sbcl-cl-utilities")
3865 (version (git-version "0.0.0" revision commit))
3866 (source
3867 (origin
3868 (method url-fetch)
3869 (uri
3870 (string-append
3871 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
3872 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
3873 (sha256
3874 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
3875 (build-system asdf-build-system/sbcl)
3876 (arguments
3877 '(#:asd-file "cl-utilities.asd"
3878 #:asd-system-name "cl-utilities"
3879 #:phases
3880 (modify-phases %standard-phases
3881 (add-after 'unpack 'fix-paths
3882 (lambda* (#:key inputs #:allow-other-keys)
3883 (substitute* "rotate-byte.lisp"
3884 (("in-package :cl-utilities)" all)
3885 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
3886 (home-page "http://common-lisp.net/project/cl-utilities")
3887 (synopsis "A collection of semi-standard utilities")
3888 (description
3889 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
3890 is a collection of Common Lisp Utilities, things that everybody writes since
3891 they're not part of the official standard. There are some very useful things
3892 there; the only problems are that they aren't implemented as well as you'd
3893 like (some aren't implemented at all) and they aren't conveniently packaged
3894 and maintained. It takes quite a bit of work to carefully implement utilities
3895 for common use, commented and documented, with error checking placed
3896 everywhere some dumb user might make a mistake.")
3897 (license license:public-domain))))
3898
3899 (define-public cl-utilities
3900 (sbcl-package->cl-source-package sbcl-cl-utilities))
3901
3902 (define-public sbcl-map-set
3903 (let ((commit "7b4b545b68b8")
3904 (revision "1"))
3905 (package
3906 (name "sbcl-map-set")
3907 (version (git-version "0.0.0" revision commit))
3908 (source
3909 (origin
3910 (method url-fetch)
3911 (uri (string-append
3912 "https://bitbucket.org/tarballs_are_good/map-set/get/"
3913 commit ".tar.gz"))
3914 (sha256
3915 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
3916 (build-system asdf-build-system/sbcl)
3917 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
3918 (synopsis "Set-like data structure")
3919 (description
3920 "Implementation of a set-like data structure with constant time
3921 addition, removal, and random selection.")
3922 (license license:bsd-3))))
3923
3924 (define-public cl-map-set
3925 (sbcl-package->cl-source-package sbcl-map-set))
3926
3927 (define-public sbcl-quri
3928 (let ((commit "76b75103f21ead092c9f715512fa82441ef61185")
3929 (revision "1"))
3930 (package
3931 (name "sbcl-quri")
3932 (version (git-version "0.1.0" revision commit))
3933 (source
3934 (origin
3935 (method git-fetch)
3936 (uri (git-reference
3937 (url "https://github.com/fukamachi/quri.git")
3938 (commit commit)))
3939 (file-name (git-file-name name version))
3940 (sha256
3941 (base32 "1ccbxsgzdibmzq33mmbmmz9vwl6l03xh6nbpsh1hkdvdcl7q0a60"))))
3942 (build-system asdf-build-system/sbcl)
3943 (arguments
3944 ;; Tests fail with: Component QURI-ASD::QURI-TEST not found,
3945 ;; required by #<SYSTEM "quri">. Why?
3946 '(#:tests? #f))
3947 (native-inputs `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
3948 ("sbcl-prove" ,sbcl-prove)))
3949 (inputs `(("sbcl-babel" ,sbcl-babel)
3950 ("sbcl-split-sequence" ,sbcl-split-sequence)
3951 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
3952 ("sbcl-alexandria" ,sbcl-alexandria)))
3953 (home-page "https://github.com/fukamachi/quri")
3954 (synopsis "Yet another URI library for Common Lisp")
3955 (description
3956 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
3957 Lisp. It is intended to be a replacement of PURI.")
3958 (license license:bsd-3))))
3959
3960 (define-public cl-quri
3961 (sbcl-package->cl-source-package sbcl-quri))
3962
3963 (define-public sbcl-myway
3964 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
3965 (revision "1"))
3966 (package
3967 (name "sbcl-myway")
3968 (version (git-version "0.1.0" revision commit))
3969 (source
3970 (origin
3971 (method git-fetch)
3972 (uri (git-reference
3973 (url "https://github.com/fukamachi/myway.git")
3974 (commit commit)))
3975 (file-name (git-file-name "myway" version))
3976 (sha256
3977 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
3978 (build-system asdf-build-system/sbcl)
3979 (arguments
3980 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
3981 ;; by #<SYSTEM "myway">. Why?
3982 '(#:tests? #f))
3983 (native-inputs
3984 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
3985 ("sbcl-prove" ,sbcl-prove)))
3986 (inputs
3987 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3988 ("sbcl-quri" ,sbcl-quri)
3989 ("sbcl-map-set" ,sbcl-map-set)))
3990 (home-page "https://github.com/fukamachi/myway")
3991 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
3992 (description "My Way is a Sinatra-compatible URL routing library.")
3993 (license license:llgpl))))
3994
3995 (define-public cl-myway
3996 (sbcl-package->cl-source-package sbcl-myway))
3997
3998 (define-public sbcl-xsubseq
3999 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
4000 (revision "1"))
4001 (package
4002 (name "sbcl-xsubseq")
4003 (version (git-version "0.0.1" revision commit))
4004 (source
4005 (origin
4006 (method git-fetch)
4007 (uri (git-reference
4008 (url "https://github.com/fukamachi/xsubseq")
4009 (commit commit)))
4010 (file-name (git-file-name name version))
4011 (sha256
4012 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4013 (build-system asdf-build-system/sbcl)
4014 (arguments
4015 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4016 ;; required by #<SYSTEM "xsubseq">. Why?
4017 '(#:tests? #f))
4018 (native-inputs
4019 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4020 ("sbcl-prove" ,sbcl-prove)))
4021 (home-page "https://github.com/fukamachi/xsubseq")
4022 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4023 (description
4024 "XSubseq provides functions to be able to handle \"subseq\"s more
4025 effieiently.")
4026 (license license:bsd-2))))
4027
4028 (define-public cl-xsubseq
4029 (sbcl-package->cl-source-package sbcl-xsubseq))
4030
4031 (define-public sbcl-smart-buffer
4032 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4033 (revision "1"))
4034 (package
4035 (name "sbcl-smart-buffer")
4036 (version (git-version "0.0.1" revision commit))
4037 (source
4038 (origin
4039 (method git-fetch)
4040 (uri (git-reference
4041 (url "https://github.com/fukamachi/smart-buffer")
4042 (commit commit)))
4043 (file-name (git-file-name name version))
4044 (sha256
4045 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4046 (build-system asdf-build-system/sbcl)
4047 (arguments
4048 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4049 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4050 `(#:tests? #f))
4051 (native-inputs
4052 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4053 ("sbcl-prove" ,sbcl-prove)))
4054 (inputs
4055 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4056 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4057 (home-page "https://github.com/fukamachi/smart-buffer")
4058 (synopsis "Smart octets buffer")
4059 (description
4060 "Smart-buffer provides an output buffer which changes the destination
4061 depending on content size.")
4062 (license license:bsd-3))))
4063
4064 (define-public cl-smart-buffer
4065 (sbcl-package->cl-source-package sbcl-smart-buffer))
4066
4067 (define-public sbcl-fast-http
4068 (let ((commit "f9e7597191bae380503e20724fd493a24d024935")
4069 (revision "1"))
4070 (package
4071 (name "sbcl-fast-http")
4072 (version (git-version "0.2.0" revision commit))
4073 (source
4074 (origin
4075 (method git-fetch)
4076 (uri (git-reference
4077 (url "https://github.com/fukamachi/fast-http")
4078 (commit commit)))
4079 (file-name (git-file-name name version))
4080 (sha256
4081 (base32 "0qdmwv2zm0sizxdb8nnclgwl0nfjcbjaimbakavikijw7lr9b4jp"))))
4082 (build-system asdf-build-system/sbcl)
4083 (arguments
4084 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4085 ;; required by #<SYSTEM "fast-http">. Why?
4086 `(#:tests? #f))
4087 (native-inputs
4088 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4089 ("sbcl-prove" ,sbcl-prove)))
4090 (inputs
4091 `(("sbcl-alexandria" ,sbcl-alexandria)
4092 ("sbcl-proc-parse" ,sbcl-proc-parse)
4093 ("sbcl-xsubseq" ,sbcl-xsubseq)
4094 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4095 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4096 (home-page "https://github.com/fukamachi/fast-http")
4097 (synopsis "HTTP request/response parser for Common Lisp")
4098 (description
4099 "@code{fast-http} is a HTTP request/response protocol parser for Common
4100 Lisp.")
4101 ;; Author specified the MIT license
4102 (license license:expat))))
4103
4104 (define-public cl-fast-http
4105 (sbcl-package->cl-source-package sbcl-fast-http))
4106
4107 (define-public sbcl-static-vectors
4108 (let ((commit "0681eac1f49370cde03e64b077251e8abf47d702")
4109 (revision "1"))
4110 (package
4111 (name "sbcl-static-vectors")
4112 (version (git-version "1.8.3" revision commit))
4113 (source
4114 (origin
4115 (method git-fetch)
4116 (uri (git-reference
4117 (url "https://github.com/sionescu/static-vectors.git")
4118 (commit commit)))
4119 (file-name (git-file-name name version))
4120 (sha256
4121 (base32 "138nlsq14hv8785ycjm6jw3i6ablhq8vcwys7q09y80arcgrg6r3"))))
4122 (native-inputs
4123 `(("sbcl-fiveam" ,sbcl-fiveam)))
4124 (inputs
4125 `(("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
4126 ("sbcl-cffi" ,sbcl-cffi)))
4127 (build-system asdf-build-system/sbcl)
4128 (home-page "http://common-lisp.net/projects/iolib/")
4129 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4130 (description
4131 "With @code{static-vectors}, you can create vectors allocated in static
4132 memory.")
4133 (license license:expat))))
4134
4135 (define-public cl-static-vectors
4136 (sbcl-package->cl-source-package sbcl-static-vectors))
4137
4138 (define-public sbcl-marshal
4139 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4140 (revision "1"))
4141 (package
4142 (name "sbcl-marshal")
4143 (version (git-version "1.3.0" revision commit))
4144 (source
4145 (origin
4146 (method git-fetch)
4147 (uri (git-reference
4148 (url "https://github.com/wlbr/cl-marshal.git")
4149 (commit commit)))
4150 (file-name (git-file-name name version))
4151 (sha256
4152 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4153 (build-system asdf-build-system/sbcl)
4154 (home-page "https://github.com/wlbr/cl-marshal")
4155 (synopsis "Simple (de)serialization of Lisp datastructures")
4156 (description
4157 "Simple and fast marshalling of Lisp datastructures. Convert any object
4158 into a string representation, put it on a stream an revive it from there.
4159 Only minimal changes required to make your CLOS objects serializable.")
4160 (license license:expat))))
4161
4162 (define-public cl-marshal
4163 (sbcl-package->cl-source-package sbcl-marshal))
4164
4165 (define-public sbcl-checkl
4166 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4167 (revision "1"))
4168 (package
4169 (name "sbcl-checkl")
4170 (version (git-version "0.0.0" revision commit))
4171 (source
4172 (origin
4173 (method git-fetch)
4174 (uri (git-reference
4175 (url "https://github.com/rpav/CheckL.git")
4176 (commit commit)))
4177 (file-name (git-file-name name version))
4178 (sha256
4179 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4180 (build-system asdf-build-system/sbcl)
4181 (arguments
4182 ;; Error while trying to load definition for system checkl-test from
4183 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4184 ;; is undefined.
4185 '(#:tests? #f))
4186 (native-inputs
4187 `(("sbcl-fiveam" ,sbcl-fiveam)))
4188 (inputs
4189 `(("sbcl-marshal" ,sbcl-marshal)))
4190 (home-page "https://github.com/rpav/CheckL/")
4191 (synopsis "Dynamic testing for Common Lisp")
4192 (description
4193 "CheckL lets you write tests dynamically, it checks resulting values
4194 against the last run.")
4195 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4196 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4197 ;; stronger of the two and so I think only listing this should suffice.
4198 (license license:llgpl))))
4199
4200 (define-public cl-checkl
4201 (sbcl-package->cl-source-package sbcl-checkl))
4202
4203 (define-public sbcl-fast-io
4204 (let ((commit "dc3a71db7e9b756a88781ae9c342fe9d4bbab51c")
4205 (revision "1"))
4206 (package
4207 (name "sbcl-fast-io")
4208 (version (git-version "1.0.0" revision commit))
4209 (source
4210 (origin
4211 (method git-fetch)
4212 (uri (git-reference
4213 (url "https://github.com/rpav/fast-io.git")
4214 (commit commit)))
4215 (file-name (git-file-name name version))
4216 (sha256
4217 (base32 "1jsp6xvi26ln6fdy5j5zi05xvan8jsqdhisv552dy6xg6ws8i1yq"))))
4218 (build-system asdf-build-system/sbcl)
4219 (arguments
4220 ;; Error while trying to load definition for system fast-io-test from
4221 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4222 ;; is undefined.
4223 '(#:tests? #f))
4224 (native-inputs
4225 `(("sbcl-fiveam" ,sbcl-fiveam)
4226 ("sbcl-checkl" ,sbcl-checkl)))
4227 (inputs
4228 `(("sbcl-alexandria" ,sbcl-alexandria)
4229 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4230 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4231 (home-page "https://github.com/rpav/fast-io")
4232 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4233 (description
4234 "Fast-io is about improving performance to octet-vectors and octet
4235 streams (though primarily the former, while wrapping the latter).")
4236 ;; Author specifies this as NewBSD which is an alias
4237 (license license:bsd-3))))
4238
4239 (define-public cl-fast-io
4240 (sbcl-package->cl-source-package sbcl-fast-io))
4241
4242 (define-public sbcl-jonathan
4243 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4244 (revision "1"))
4245 (package
4246 (name "sbcl-jonathan")
4247 (version (git-version "0.1.0" revision commit))
4248 (source
4249 (origin
4250 (method git-fetch)
4251 (uri (git-reference
4252 (url "https://github.com/Rudolph-Miller/jonathan.git")
4253 (commit commit)))
4254 (file-name (git-file-name name version))
4255 (sha256
4256 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4257 (build-system asdf-build-system/sbcl)
4258 (arguments
4259 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4260 ;; required by #<SYSTEM "jonathan">. Why?
4261 `(#:tests? #f))
4262 (native-inputs
4263 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4264 ("sbcl-prove" ,sbcl-prove)))
4265 (inputs
4266 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4267 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4268 ("sbcl-fast-io" ,sbcl-fast-io)
4269 ("sbcl-proc-parse" ,sbcl-proc-parse)
4270 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4271 (home-page "http://rudolph-miller.github.io/jonathan/overview.html")
4272 (synopsis "JSON encoder and decoder")
4273 (description
4274 "High performance JSON encoder and decoder. Currently support: SBCL,
4275 CCL.")
4276 ;; Author specifies the MIT license
4277 (license license:expat))))
4278
4279 (define-public cl-jonathan
4280 (sbcl-package->cl-source-package sbcl-jonathan))
4281
4282 (define-public sbcl-http-body
4283 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4284 (revision "1"))
4285 (package
4286 (name "sbcl-http-body")
4287 (version (git-version "0.1.0" revision commit))
4288 (source
4289 (origin
4290 (method git-fetch)
4291 (uri (git-reference
4292 (url "https://github.com/fukamachi/http-body")
4293 (commit commit)))
4294 (file-name (git-file-name name version))
4295 (sha256
4296 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4297 (build-system asdf-build-system/sbcl)
4298 (arguments
4299 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4300 ;; found, required by #<SYSTEM "http-body">. Why?
4301 `(#:tests? #f))
4302 (native-inputs
4303 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4304 ("sbcl-prove" ,sbcl-prove)))
4305 (inputs
4306 `(("sbcl-fast-http" ,sbcl-fast-http)
4307 ("sbcl-jonathan" ,sbcl-jonathan)
4308 ("sbcl-quri" ,sbcl-quri)))
4309 (home-page "https://github.com/fukamachi/http-body")
4310 (synopsis "HTTP POST data parser")
4311 (description
4312 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4313 supports application/x-www-form-urlencoded, application/json, and
4314 multipart/form-data.")
4315 (license license:bsd-2))))
4316
4317 (define-public cl-http-body
4318 (sbcl-package->cl-source-package sbcl-http-body))
4319
4320 (define-public sbcl-circular-streams
4321 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4322 (revision "1"))
4323 (package
4324 (name "sbcl-circular-streams")
4325 (version (git-version "0.1.0" revision commit))
4326 (source
4327 (origin
4328 (method git-fetch)
4329 (uri (git-reference
4330 (url "https://github.com/fukamachi/circular-streams")
4331 (commit commit)))
4332 (file-name (git-file-name name version))
4333 (sha256
4334 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4335 (build-system asdf-build-system/sbcl)
4336 (arguments
4337 ;; The tests depend on cl-test-more which is now prove. Prove
4338 ;; tests aren't working for some reason.
4339 `(#:tests? #f))
4340 (inputs
4341 `(("sbcl-fast-io" ,sbcl-fast-io)
4342 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4343 (home-page "https://github.com/fukamachi/circular-streams")
4344 (synopsis "Circularly readable streams for Common Lisp")
4345 (description
4346 "Circular-Streams allows you to read streams circularly by wrapping real
4347 streams. Once you reach end-of-file of a stream, it's file position will be
4348 reset to 0 and you're able to read it again.")
4349 (license license:llgpl))))
4350
4351 (define-public cl-circular-streams
4352 (sbcl-package->cl-source-package sbcl-circular-streams))
4353
4354 (define-public sbcl-lack-request
4355 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4356 (revision "1"))
4357 (package
4358 (name "sbcl-lack-request")
4359 (version (git-version "0.1.0" revision commit))
4360 (source
4361 (origin
4362 (method git-fetch)
4363 (uri (git-reference
4364 (url "https://github.com/fukamachi/lack.git")
4365 (commit commit)))
4366 (file-name (git-file-name "lack-request" version))
4367 (sha256
4368 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4369 (build-system asdf-build-system/sbcl)
4370 (arguments
4371 '(#:asd-file "lack-request.asd"
4372 #:asd-system-name "lack-request"
4373 #:test-asd-file "t-lack-request.asd"
4374 ;; XXX: Component :CLACK-TEST not found
4375 #:tests? #f))
4376 (native-inputs
4377 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4378 ("sbcl-prove" ,sbcl-prove)))
4379 (inputs
4380 `(("sbcl-quri" ,sbcl-quri)
4381 ("sbcl-http-body" ,sbcl-http-body)
4382 ("sbcl-circular-streams" ,sbcl-circular-streams)))
4383 (home-page "https://github.com/fukamachi/lack")
4384 (synopsis "Lack, the core of Clack")
4385 (description
4386 "Lack is a Common Lisp library which allows web applications to be
4387 constructed of modular components. It was originally a part of Clack, however
4388 it's going to be rewritten as an individual project since Clack v2 with
4389 performance and simplicity in mind.")
4390 (license license:llgpl))))
4391
4392 (define-public cl-lack-request
4393 (sbcl-package->cl-source-package sbcl-lack-request))
4394
4395 (define-public sbcl-local-time
4396 (let ((commit "beac054eef428552b63d4ae7820c32ffef9a3015")
4397 (revision "1"))
4398 (package
4399 (name "sbcl-local-time")
4400 (version (git-version "1.0.6" revision commit))
4401 (source
4402 (origin
4403 (method git-fetch)
4404 (uri (git-reference
4405 (url "https://github.com/dlowe-net/local-time.git")
4406 (commit commit)))
4407 (file-name (git-file-name name version))
4408 (sha256
4409 (base32 "0xhkmgxh41dg2wwlsp0h2l41jp144xn4gpxhh0lna6kh0560w2cc"))))
4410 (build-system asdf-build-system/sbcl)
4411 (arguments
4412 ;; TODO: Component :STEFIL not found, required by #<SYSTEM
4413 ;; "local-time/test">
4414 '(#:tests? #f))
4415 (native-inputs
4416 `(("stefil" ,sbcl-hu.dwim.stefil)))
4417 (inputs
4418 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4419 (home-page "https://common-lisp.net/project/local-time/")
4420 (synopsis "Time manipulation library for Common Lisp")
4421 (description
4422 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4423 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4424 Long Painful History of Time\".")
4425 (license license:expat))))
4426
4427 (define-public cl-local-time
4428 (sbcl-package->cl-source-package sbcl-local-time))
4429
4430 (define-public sbcl-lack-response
4431 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4432 (revision "1"))
4433 (package
4434 (name "sbcl-lack-response")
4435 (version (git-version "0.1.0" revision commit))
4436 (source
4437 (origin
4438 (method git-fetch)
4439 (uri (git-reference
4440 (url "https://github.com/fukamachi/lack.git")
4441 (commit commit)))
4442 (file-name (git-file-name name version))
4443 (sha256
4444 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4445 (build-system asdf-build-system/sbcl)
4446 (arguments
4447 '(#:asd-file "lack-response.asd"
4448 #:asd-system-name "lack-response"
4449 ;; XXX: no tests for lack-response.
4450 #:tests? #f))
4451 (native-inputs
4452 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4453 ("sbcl-prove" ,sbcl-prove)))
4454 (inputs
4455 `(("sbcl-quri" ,sbcl-quri)
4456 ("sbcl-http-body" ,sbcl-http-body)
4457 ("sbcl-circular-streams" ,sbcl-circular-streams)
4458 ("sbcl-local-time" ,sbcl-local-time)))
4459 (home-page "https://github.com/fukamachi/lack")
4460 (synopsis "Lack, the core of Clack")
4461 (description
4462 "Lack is a Common Lisp library which allows web applications to be
4463 constructed of modular components. It was originally a part of Clack, however
4464 it's going to be rewritten as an individual project since Clack v2 with
4465 performance and simplicity in mind.")
4466 (license license:llgpl))))
4467
4468 (define-public cl-lack-response
4469 (sbcl-package->cl-source-package sbcl-lack-response))
4470
4471 (define-public sbcl-lack-component
4472 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4473 (revision "1"))
4474 (package
4475 (name "sbcl-lack-component")
4476 (version (git-version "0.0.0" revision commit))
4477 (source
4478 (origin
4479 (method git-fetch)
4480 (uri (git-reference
4481 (url "https://github.com/fukamachi/lack.git")
4482 (commit commit)))
4483 (file-name (git-file-name "lack-component" version))
4484 (sha256
4485 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4486 (build-system asdf-build-system/sbcl)
4487 (arguments
4488 '(#:asd-file "lack-component.asd"
4489 #:asd-system-name "lack-component"
4490 #:test-asd-file "t-lack-component.asd"
4491 ;; XXX: Component :LACK-TEST not found
4492 #:tests? #f))
4493 (native-inputs
4494 `(("prove-asdf" ,sbcl-prove-asdf)))
4495 (home-page "https://github.com/fukamachi/lack")
4496 (synopsis "Lack, the core of Clack")
4497 (description
4498 "Lack is a Common Lisp library which allows web applications to be
4499 constructed of modular components. It was originally a part of Clack, however
4500 it's going to be rewritten as an individual project since Clack v2 with
4501 performance and simplicity in mind.")
4502 (license license:llgpl))))
4503
4504 (define-public cl-lack-component
4505 (sbcl-package->cl-source-package sbcl-lack-component))
4506
4507 (define-public sbcl-lack-util
4508 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4509 (revision "1"))
4510 (package
4511 (name "sbcl-lack-util")
4512 (version (git-version "0.1.0" revision commit))
4513 (source
4514 (origin
4515 (method git-fetch)
4516 (uri (git-reference
4517 (url "https://github.com/fukamachi/lack.git")
4518 (commit commit)))
4519 (file-name (git-file-name "lack-util" version))
4520 (sha256
4521 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4522 (build-system asdf-build-system/sbcl)
4523 (arguments
4524 '(#:asd-file "lack-util.asd"
4525 #:asd-system-name "lack-util"
4526 #:test-asd-file "t-lack-util.asd"
4527 ;; XXX: Component :LACK-TEST not found
4528 #:tests? #f))
4529 (native-inputs
4530 `(("prove-asdf" ,sbcl-prove-asdf)))
4531 (inputs
4532 `(("sbcl-ironclad" ,sbcl-ironclad)))
4533 (home-page "https://github.com/fukamachi/lack")
4534 (synopsis "Lack, the core of Clack")
4535 (description
4536 "Lack is a Common Lisp library which allows web applications to be
4537 constructed of modular components. It was originally a part of Clack, however
4538 it's going to be rewritten as an individual project since Clack v2 with
4539 performance and simplicity in mind.")
4540 (license license:llgpl))))
4541
4542 (define-public cl-lack-util
4543 (sbcl-package->cl-source-package sbcl-lack-util))
4544
4545 (define-public sbcl-lack-middleware-backtrace
4546 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4547 (revision "1"))
4548 (package
4549 (name "sbcl-lack-middleware-backtrace")
4550 (version (git-version "0.1.0" revision commit))
4551 (source
4552 (origin
4553 (method git-fetch)
4554 (uri (git-reference
4555 (url "https://github.com/fukamachi/lack.git")
4556 (commit commit)))
4557 (file-name (git-file-name "lack-middleware-backtrace" version))
4558 (sha256
4559 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4560 (build-system asdf-build-system/sbcl)
4561 (arguments
4562 '(#:asd-file "lack-middleware-backtrace.asd"
4563 #:asd-system-name "lack-middleware-backtrace"
4564 #:test-asd-file "t-lack-middleware-backtrace.asd"
4565 ;; XXX: Component :LACK not found
4566 #:tests? #f))
4567 (native-inputs
4568 `(("prove-asdf" ,sbcl-prove-asdf)))
4569 (home-page "https://github.com/fukamachi/lack")
4570 (synopsis "Lack, the core of Clack")
4571 (description
4572 "Lack is a Common Lisp library which allows web applications to be
4573 constructed of modular components. It was originally a part of Clack, however
4574 it's going to be rewritten as an individual project since Clack v2 with
4575 performance and simplicity in mind.")
4576 (license license:llgpl))))
4577
4578 (define-public cl-lack-middleware-backtrace
4579 (sbcl-package->cl-source-package sbcl-lack-middleware-backtrace))
4580
4581 (define-public sbcl-trivial-mimes
4582 (let ((commit "303f8ac0aa6ca0bc139aa3c34822e623c3723fab")
4583 (revision "1"))
4584 (package
4585 (name "sbcl-trivial-mimes")
4586 (version (git-version "1.1.0" revision commit))
4587 (source
4588 (origin
4589 (method git-fetch)
4590 (uri (git-reference
4591 (url "https://github.com/Shinmera/trivial-mimes.git")
4592 (commit commit)))
4593 (file-name (git-file-name name version))
4594 (sha256
4595 (base32 "17jxgl47r695bvsb7wi3n2ws5rp1zzgvw0zii8cy5ggw4b4ayv6m"))))
4596 (build-system asdf-build-system/sbcl)
4597 (arguments
4598 '(#:phases
4599 (modify-phases %standard-phases
4600 (add-after
4601 'unpack 'fix-paths
4602 (lambda* (#:key inputs #:allow-other-keys)
4603 (let ((anchor "#p\"/etc/mime.types\""))
4604 (substitute* "mime-types.lisp"
4605 ((anchor all)
4606 (string-append
4607 anchor "\n"
4608 "(asdf:system-relative-pathname :trivial-mimes "
4609 "\"../../share/common-lisp/" (%lisp-type)
4610 "-source/trivial-mimes/mime.types\")")))))))))
4611 (native-inputs
4612 `(("stefil" ,sbcl-hu.dwim.stefil)))
4613 (inputs
4614 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4615 (home-page "http://shinmera.github.io/trivial-mimes/")
4616 (synopsis "Tiny Common Lisp library to detect mime types in files")
4617 (description
4618 "This is a teensy library that provides some functions to determine the
4619 mime-type of a file.")
4620 (license license:artistic2.0))))
4621
4622 (define-public cl-trivial-mimes
4623 (sbcl-package->cl-source-package sbcl-trivial-mimes))
4624
4625 (define-public ecl-trivial-mimes
4626 (sbcl-package->ecl-package sbcl-trivial-mimes))
4627
4628 (define-public sbcl-lack-middleware-static
4629 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4630 (revision "1"))
4631 (package
4632 (name "sbcl-lack-middleware-static")
4633 (version (git-version "0.1.0" revision commit))
4634 (source
4635 (origin
4636 (method git-fetch)
4637 (uri (git-reference
4638 (url "https://github.com/fukamachi/lack.git")
4639 (commit commit)))
4640 (file-name (git-file-name "lack-middleware-static" version))
4641 (sha256
4642 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4643 (build-system asdf-build-system/sbcl)
4644 (arguments
4645 '(#:asd-file "lack-middleware-static.asd"
4646 #:asd-system-name "lack-middleware-static"
4647 #:test-asd-file "t-lack-middleware-static.asd"
4648 ;; XXX: Component :LACK not found
4649 #:tests? #f))
4650 (native-inputs
4651 `(("prove-asdf" ,sbcl-prove-asdf)))
4652 (inputs
4653 `(("sbcl-ironclad" ,sbcl-ironclad)
4654 ("sbcl-trivial-mimes" ,sbcl-trivial-mimes)
4655 ("sbcl-local-time" ,sbcl-local-time)))
4656 (home-page "https://github.com/fukamachi/lack")
4657 (synopsis "Lack, the core of Clack")
4658 (description
4659 "Lack is a Common Lisp library which allows web applications to be
4660 constructed of modular components. It was originally a part of Clack, however
4661 it's going to be rewritten as an individual project since Clack v2 with
4662 performance and simplicity in mind.")
4663 (license license:llgpl))))
4664
4665 (define-public cl-lack-middleware-static
4666 (sbcl-package->cl-source-package sbcl-lack-middleware-static))
4667
4668 (define-public sbcl-lack
4669 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4670 (revision "1"))
4671 (package
4672 (name "sbcl-lack")
4673 (version (git-version "0.1.0" revision commit))
4674 (source
4675 (origin
4676 (method git-fetch)
4677 (uri (git-reference
4678 (url "https://github.com/fukamachi/lack.git")
4679 (commit commit)))
4680 (file-name (git-file-name "lack" version))
4681 (sha256
4682 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4683 (build-system asdf-build-system/sbcl)
4684 (arguments
4685 '(#:test-asd-file "t-lack.asd"
4686 ;; XXX: Component :CLACK not found
4687 #:tests? #f))
4688 (native-inputs
4689 `(("prove-asdf" ,sbcl-prove-asdf)))
4690 (inputs
4691 `(("sbcl-lack-component" ,sbcl-lack-component)
4692 ("sbcl-lack-util" ,sbcl-lack-util)))
4693 (home-page "https://github.com/fukamachi/lack")
4694 (synopsis "Lack, the core of Clack")
4695 (description
4696 "Lack is a Common Lisp library which allows web applications to be
4697 constructed of modular components. It was originally a part of Clack, however
4698 it's going to be rewritten as an individual project since Clack v2 with
4699 performance and simplicity in mind.")
4700 (license license:llgpl))))
4701
4702 (define-public cl-lack
4703 (sbcl-package->cl-source-package sbcl-lack))
4704
4705 (define-public sbcl-ningle
4706 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
4707 (revision "1"))
4708 (package
4709 (name "sbcl-ningle")
4710 (version (git-version "0.3.0" revision commit))
4711 (source
4712 (origin
4713 (method git-fetch)
4714 (uri (git-reference
4715 (url "https://github.com/fukamachi/ningle.git")
4716 (commit commit)))
4717 (file-name (git-file-name name version))
4718 (sha256
4719 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
4720 (build-system asdf-build-system/sbcl)
4721 (arguments
4722 ;; TODO: pull in clack-test
4723 '(#:tests? #f
4724 #:phases
4725 (modify-phases %standard-phases
4726 (delete 'cleanup-files)
4727 (delete 'cleanup)
4728 (add-before 'cleanup 'combine-fasls
4729 (lambda* (#:key outputs #:allow-other-keys)
4730 (let* ((out (assoc-ref outputs "out"))
4731 (lib (string-append out "/lib/sbcl"))
4732 (ningle-path (string-append lib "/ningle"))
4733 (fasl-files (find-files out "\\.fasl$")))
4734 (mkdir-p ningle-path)
4735 (let ((fasl-path (lambda (name)
4736 (string-append ningle-path
4737 "/"
4738 (basename name)
4739 "--system.fasl"))))
4740 (for-each (lambda (file)
4741 (rename-file file
4742 (fasl-path
4743 (basename file ".fasl"))))
4744 fasl-files))
4745 fasl-files)
4746 #t)))))
4747 (native-inputs
4748 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4749 ("sbcl-prove" ,sbcl-prove)))
4750 (inputs
4751 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4752 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4753 ("sbcl-myway" ,sbcl-myway)
4754 ("sbcl-lack-request" ,sbcl-lack-request)
4755 ("sbcl-lack-response" ,sbcl-lack-response)
4756 ("sbcl-lack-component" ,sbcl-lack-component)
4757 ("sbcl-alexandria" ,sbcl-alexandria)
4758 ("sbcl-babel" ,sbcl-babel)))
4759 (home-page "http://8arrow.org/ningle/")
4760 (synopsis "Super micro framework for Common Lisp")
4761 (description
4762 "Ningle is a lightweight web application framework for Common Lisp.")
4763 (license license:llgpl))))
4764
4765 (define-public cl-ningle
4766 (sbcl-package->cl-source-package sbcl-ningle))
4767
4768 (define-public sbcl-clack
4769 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
4770 (revision "1"))
4771 (package
4772 (name "sbcl-clack")
4773 (version (git-version "2.0.0" revision commit))
4774 (source
4775 (origin
4776 (method git-fetch)
4777 (uri (git-reference
4778 (url "https://github.com/fukamachi/clack.git")
4779 (commit commit)))
4780 (file-name (git-file-name name version))
4781 (sha256
4782 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
4783 (build-system asdf-build-system/sbcl)
4784 (inputs
4785 `(("sbcl-lack" ,sbcl-lack)
4786 ("sbcl-lack-middleware-backtrace" ,sbcl-lack-middleware-backtrace)
4787 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)))
4788 (home-page "https://github.com/fukamachi/clack")
4789 (synopsis "Web Application Environment for Common Lisp")
4790 (description
4791 "Clack is a web application environment for Common Lisp inspired by
4792 Python's WSGI and Ruby's Rack.")
4793 (license license:llgpl))))
4794
4795 (define-public cl-clack
4796 (sbcl-package->cl-source-package sbcl-clack))
4797
4798 (define-public sbcl-log4cl
4799 (let ((commit "611e094458504b938d49de904eab141285328c7c")
4800 (revision "1"))
4801 (package
4802 (name "sbcl-log4cl")
4803 (build-system asdf-build-system/sbcl)
4804 (version "1.1.2")
4805 (source
4806 (origin
4807 (method git-fetch)
4808 (uri (git-reference
4809 (url "https://github.com/sharplispers/log4cl")
4810 (commit commit)))
4811 (file-name (git-file-name name version))
4812 (sha256
4813 (base32
4814 "08jly0s0g26b56hhpfizxsb4j0yvbh946sd205gr42dkzv8l7dsc"))))
4815 ;; FIXME: tests require stefil, sbcl-hu.dwim.stefil wont work
4816 (arguments
4817 `(#:tests? #f))
4818 (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
4819 (synopsis "Common Lisp logging framework, modeled after Log4J")
4820 (home-page "https://github.com/7max/log4cl")
4821 (description "This is a Common Lisp logging framework that can log at
4822 various levels and mix text with expressions.")
4823 (license license:asl2.0))))
4824
4825 (define-public cl-log4cl
4826 (sbcl-package->cl-source-package sbcl-log4cl))
4827
4828 (define-public ecl-log4cl
4829 (sbcl-package->ecl-package sbcl-log4cl))
4830
4831 (define-public sbcl-find-port
4832 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
4833 (revision "1"))
4834 (package
4835 (name "sbcl-find-port")
4836 (build-system asdf-build-system/sbcl)
4837 (version "0.1")
4838 (home-page "https://github.com/eudoxia0/find-port")
4839 (source
4840 (origin
4841 (method git-fetch)
4842 (uri (git-reference
4843 (url home-page)
4844 (commit commit)))
4845 (file-name (git-file-name name version))
4846 (sha256
4847 (base32
4848 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
4849 (native-inputs
4850 `(("fiveam" ,sbcl-fiveam)))
4851 (inputs
4852 `(("sbcl-usocket" ,sbcl-usocket)))
4853 (synopsis "Find open ports programmatically in Common Lisp")
4854 (description "This is a small Common Lisp library that finds an open
4855 port within a range.")
4856 (license license:expat))))
4857
4858 (define-public cl-find-port
4859 (sbcl-package->cl-source-package sbcl-find-port))
4860
4861 (define-public ecl-find-port
4862 (sbcl-package->ecl-package sbcl-find-port))
4863
4864 (define-public sbcl-clunit
4865 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
4866 (revision "1"))
4867 (package
4868 (name "sbcl-clunit")
4869 (version (git-version "0.2.3" revision commit))
4870 (source
4871 (origin
4872 (method git-fetch)
4873 (uri (git-reference
4874 (url "https://github.com/tgutu/clunit.git")
4875 (commit commit)))
4876 (file-name (git-file-name name version))
4877 (sha256
4878 (base32
4879 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
4880 (build-system asdf-build-system/sbcl)
4881 (synopsis "CLUnit is a Common Lisp unit testing framework")
4882 (description
4883 "CLUnit is a Common Lisp unit testing framework. It is designed
4884 to be easy to use so that you can quickly start testing. CLUnit
4885 provides a rich set of features aimed at improving your unit testing
4886 experience.")
4887 (home-page "http://tgutu.github.io/clunit/")
4888 ;; MIT License
4889 (license license:expat))))
4890
4891 (define-public cl-clunit
4892 (sbcl-package->cl-source-package sbcl-clunit))
4893
4894 (define-public ecl-clunit
4895 (sbcl-package->ecl-package sbcl-clunit))
4896
4897 (define-public sbcl-py4cl
4898 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
4899 (revision "1"))
4900 (package
4901 (name "sbcl-py4cl")
4902 (version (git-version "0.0.0" revision commit))
4903 (source
4904 (origin
4905 (method git-fetch)
4906 (uri (git-reference
4907 (url "https://github.com/bendudson/py4cl.git")
4908 (commit commit)))
4909 (file-name (git-file-name name version))
4910 (sha256
4911 (base32
4912 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
4913 (modules '((guix build utils)))))
4914 (build-system asdf-build-system/sbcl)
4915 (native-inputs
4916 `(("sbcl-clunit" ,sbcl-clunit)))
4917 (inputs
4918 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
4919 (propagated-inputs
4920 ;; This package doesn't do anything without python available
4921 `(("python" ,python)
4922 ;; For multi-dimensional array support
4923 ("python-numpy" ,python-numpy)))
4924 (arguments
4925 '(#:phases
4926 (modify-phases %standard-phases
4927 (add-after 'unpack 'replace-*base-directory*-var
4928 (lambda* (#:key outputs #:allow-other-keys)
4929 ;; In the ASD, the author makes an attempt to
4930 ;; programatically determine the location of the
4931 ;; source-code so lisp can call into "py4cl.py". We can
4932 ;; hard-code this since we know where this file will
4933 ;; reside.
4934 (substitute* "src/callpython.lisp"
4935 (("py4cl/config:\\*base-directory\\*")
4936 (string-append
4937 "\""
4938 (assoc-ref outputs "out")
4939 "/share/common-lisp/sbcl-source/py4cl/"
4940 "\""))))))))
4941 (synopsis "Call python from Common Lisp")
4942 (description
4943 "Py4CL is a bridge between Common Lisp and Python, which enables Common
4944 Lisp to interact with Python code. It uses streams to communicate with a
4945 separate python process, the approach taken by cl4py. This is different to
4946 the CFFI approach used by burgled-batteries, but has the same goal.")
4947 (home-page "https://github.com/bendudson/py4cl")
4948 ;; MIT License
4949 (license license:expat))))
4950
4951 (define-public cl-py4cl
4952 (sbcl-package->cl-source-package sbcl-py4cl))
4953
4954 (define-public ecl-py4cl
4955 (sbcl-package->ecl-package sbcl-py4cl))
4956
4957 (define-public sbcl-parse-declarations
4958 (package
4959 (name "sbcl-parse-declarations")
4960 (version "1.0.0")
4961 (source
4962 (origin
4963 (method url-fetch)
4964 (uri (string-append
4965 "http://beta.quicklisp.org/archive/parse-declarations/"
4966 "2010-10-06/parse-declarations-20101006-darcs.tgz"))
4967 (sha256
4968 (base32
4969 "0r85b0jfacd28kr65kw9c13dx4i6id1dpmby68zjy63mqbnyawrd"))))
4970 (build-system asdf-build-system/sbcl)
4971 (arguments
4972 `(#:asd-file "parse-declarations-1.0.asd"
4973 #:asd-system-name "parse-declarations-1.0"))
4974 (home-page "https://common-lisp.net/project/parse-declarations/")
4975 (synopsis "Parse, filter, and build declarations")
4976 (description
4977 "Parse-Declarations is a Common Lisp library to help writing
4978 macros which establish bindings. To be semantically correct, such
4979 macros must take user declarations into account, as these may affect
4980 the bindings they establish. Yet the ANSI standard of Common Lisp does
4981 not provide any operators to work with declarations in a convenient,
4982 high-level way. This library provides such operators.")
4983 ;; MIT License
4984 (license license:expat)))
4985
4986 (define-public cl-parse-declarations
4987 (sbcl-package->cl-source-package sbcl-parse-declarations))
4988
4989 (define-public ecl-parse-declarations
4990 (sbcl-package->ecl-package sbcl-parse-declarations))
4991
4992 (define-public sbcl-cl-quickcheck
4993 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
4994 (revision "1"))
4995 (package
4996 (name "sbcl-cl-quickcheck")
4997 (version (git-version "0.0.4" revision commit))
4998 (source
4999 (origin
5000 (method git-fetch)
5001 (uri (git-reference
5002 (url "https://github.com/mcandre/cl-quickcheck.git")
5003 (commit commit)))
5004 (file-name (git-file-name name version))
5005 (sha256
5006 (base32
5007 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5008 (build-system asdf-build-system/sbcl)
5009 (synopsis
5010 "Common Lisp port of the QuickCheck unit test framework")
5011 (description
5012 "Common Lisp port of the QuickCheck unit test framework")
5013 (home-page "https://github.com/mcandre/cl-quickcheck")
5014 ;; MIT
5015 (license license:expat))))
5016
5017 (define-public cl-cl-quickcheck
5018 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5019
5020 (define-public ecl-cl-quickcheck
5021 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5022
5023 (define-public sbcl-burgled-batteries3
5024 (let ((commit "9c0f6667e1a71ddf77e21793a0bea524710fef6e")
5025 (revision "1"))
5026 (package
5027 (name "sbcl-burgled-batteries3")
5028 (version (git-version "0.0.0" revision commit))
5029 (source
5030 (origin
5031 (method git-fetch)
5032 (uri (git-reference
5033 (url "https://github.com/snmsts/burgled-batteries3.git")
5034 (commit commit)))
5035 (file-name (git-file-name name version))
5036 (sha256
5037 (base32
5038 "0b726kz2xxcg5l930gz035rsdvhxrzmp05iwfwympnb4z4ammicb"))))
5039 (build-system asdf-build-system/sbcl)
5040 (arguments
5041 '(#:tests? #f
5042 #:phases
5043 (modify-phases %standard-phases
5044 (add-after 'unpack 'set-*cpython-include-dir*-var
5045 (lambda* (#:key inputs #:allow-other-keys)
5046 (substitute* "grovel-include-dir.lisp"
5047 (("\\(defparameter \\*cpython-include-dir\\* \\(detect-python\\)\\)")
5048 (string-append
5049 "(defparameter *cpython-include-dir* \""
5050 (assoc-ref inputs "python")
5051 "/include/python3.7m"
5052 "\")")))
5053 (substitute* "ffi-interface.lisp"
5054 (("\\*cpython-lib\\*")
5055 (format #f "'(\"~a/lib/libpython3.so\")"
5056 (assoc-ref inputs "python"))))
5057 #t)))))
5058 (native-inputs
5059 `(("python" ,python)
5060 ("sbcl-cl-fad" ,sbcl-cl-fad)
5061 ("sbcl-lift" ,sbcl-lift)
5062 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5063 (inputs
5064 `(("sbcl-cffi" ,sbcl-cffi)
5065 ("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
5066 ("sbcl-alexandria" , sbcl-alexandria)
5067 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5068 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5069 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5070 (description
5071 "This package provides a shim between Python3 (specifically, the
5072 CPython implementation of Python) and Common Lisp.")
5073 (home-page "https://github.com/snmsts/burgled-batteries3")
5074 ;; MIT
5075 (license license:expat))))
5076
5077 (define-public cl-burgled-batteries3
5078 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5079
5080 (define-public ecl-burgled-batteries3
5081 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5082
5083 (define-public sbcl-metabang-bind
5084 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5085 (revision "1"))
5086 (package
5087 (name "sbcl-metabang-bind")
5088 (version (git-version "0.8.0" revision commit))
5089 (source
5090 (origin
5091 (method git-fetch)
5092 (uri (git-reference
5093 (url "https://github.com/gwkkwg/metabang-bind.git")
5094 (commit commit)))
5095 (file-name (git-file-name name version))
5096 (sha256
5097 (base32
5098 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5099 (build-system asdf-build-system/sbcl)
5100 (native-inputs
5101 `(("sbcl-lift" ,sbcl-lift)))
5102 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5103 (description
5104 "Bind extends the idea of of let and destructing to provide a uniform
5105 syntax for all your accessor needs. It combines @code{let},
5106 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5107 editing, property or association-lists, and @code{multiple-value-bind} and a
5108 whole lot more into a single form.")
5109 (home-page "https://common-lisp.net/project/metabang-bind/")
5110 ;; MIT License
5111 (license license:expat))))
5112
5113 (define-public cl-metabang-bind
5114 (sbcl-package->cl-source-package sbcl-metabang-bind))
5115
5116 (define-public ecl-metabang-bind
5117 (sbcl-package->ecl-package sbcl-metabang-bind))
5118
5119 (define-public sbcl-fare-utils
5120 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5121 (revision "1"))
5122 (package
5123 (name "sbcl-fare-utils")
5124 (version (git-version "1.0.0.5" revision commit))
5125 (source
5126 (origin
5127 (method git-fetch)
5128 (uri
5129 (git-reference
5130 (url
5131 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5132 (commit commit)))
5133 (file-name (git-file-name name version))
5134 (sha256
5135 (base32
5136 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5137 (build-system asdf-build-system/sbcl)
5138 (arguments
5139 `(#:test-asd-file "test/fare-utils-test.asd"))
5140 (native-inputs
5141 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5142 (synopsis "Collection of utilities and data structures")
5143 (description
5144 "fare-utils is a small collection of utilities. It contains a lot of
5145 basic everyday functions and macros.")
5146 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5147 ;; MIT License
5148 (license license:expat))))
5149
5150 (define-public cl-fare-utils
5151 (sbcl-package->cl-source-package sbcl-fare-utils))
5152
5153 (define-public ecl-fare-utils
5154 (sbcl-package->ecl-package sbcl-fare-utils))
5155
5156 (define-public sbcl-trivial-utf-8
5157 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5158 (revision "1"))
5159 (package
5160 (name "sbcl-trivial-utf-8")
5161 (version (git-version "0.0.0" revision commit))
5162 (source
5163 (origin
5164 (method git-fetch)
5165 (uri
5166 (git-reference
5167 (url (string-append "https://gitlab.common-lisp.net/"
5168 "trivial-utf-8/trivial-utf-8.git"))
5169 (commit commit)))
5170 (file-name (git-file-name name version))
5171 (sha256
5172 (base32
5173 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5174 (arguments
5175 ;; Guix incorrectly assumes the "8" is part of the version
5176 ;; number and lobs it off.
5177 `(#:asd-file "trivial-utf-8.asd"
5178 #:asd-system-name "trivial-utf-8"))
5179 (build-system asdf-build-system/sbcl)
5180 (synopsis "UTF-8 input/output library")
5181 (description
5182 "The Babel library solves a similar problem while understanding more
5183 encodings. Trivial UTF-8 was written before Babel existed, but for new
5184 projects you might be better off going with Babel. The one plus that Trivial
5185 UTF-8 has is that it doesn't depend on any other libraries.")
5186 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5187 (license license:bsd-3))))
5188
5189 (define-public cl-trivial-utf-8
5190 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5191
5192 (define-public ecl-trivial-utf-8
5193 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5194
5195 (define-public sbcl-idna
5196 (package
5197 (name "sbcl-idna")
5198 (build-system asdf-build-system/sbcl)
5199 (version "0.2.2")
5200 (home-page "https://github.com/antifuchs/idna")
5201 (source
5202 (origin
5203 (method git-fetch)
5204 (uri (git-reference
5205 (url home-page)
5206 (commit version)))
5207 (file-name (git-file-name name version))
5208 (sha256
5209 (base32
5210 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5211 (inputs
5212 `(("split-sequence" ,sbcl-split-sequence)))
5213 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5214 (description "This Common Lisp library provides string encoding and
5215 decoding routines for IDNA, the International Domain Names in Applications.")
5216 (license license:expat)))
5217
5218 (define-public cl-idna
5219 (sbcl-package->cl-source-package sbcl-idna))
5220
5221 (define-public ecl-idna
5222 (sbcl-package->ecl-package sbcl-idna))
5223
5224 (define-public sbcl-swap-bytes
5225 (package
5226 (name "sbcl-swap-bytes")
5227 (build-system asdf-build-system/sbcl)
5228 (version "1.1")
5229 (home-page "https://github.com/sionescu/swap-bytes")
5230 (source
5231 (origin
5232 (method git-fetch)
5233 (uri (git-reference
5234 (url home-page)
5235 (commit (string-append "v" version))))
5236 (file-name (git-file-name name version))
5237 (sha256
5238 (base32
5239 "1qysbv0jngdfkv53y874qjhcxc4qi8ixaqq6j8bzxh5z0931wv55"))))
5240 (inputs
5241 `(("trivial-features" ,sbcl-trivial-features)))
5242 (native-inputs
5243 `(("fiveam" ,sbcl-fiveam)))
5244 (arguments
5245 ;; TODO: Tests fail, why?
5246 `(#:tests? #f))
5247 (synopsis "Efficient endianness conversion for Common Lisp")
5248 (description "This Common Lisp library provides optimized byte-swapping
5249 primitives. The library can change endianness of unsigned integers of length
5250 1/2/4/8. Very useful in implementing various network protocols and file
5251 formats.")
5252 (license license:expat)))
5253
5254 (define-public cl-swap-bytes
5255 (sbcl-package->cl-source-package sbcl-swap-bytes))
5256
5257 (define-public ecl-swap-bytes
5258 (sbcl-package->ecl-package sbcl-swap-bytes))
5259
5260 (define-public sbcl-iolib.asdf
5261 ;; Latest release is from June 2017.
5262 (let ((commit "81e20614c0d27f9605bf9766214e236fd31b99b4")
5263 (revision "1"))
5264 (package
5265 (name "sbcl-iolib.asdf")
5266 (build-system asdf-build-system/sbcl)
5267 (version "0.8.3")
5268 (home-page "https://github.com/sionescu/iolib")
5269 (source
5270 (origin
5271 (method git-fetch)
5272 (uri (git-reference
5273 (url home-page)
5274 (commit commit)))
5275 (file-name (git-file-name name version))
5276 (sha256
5277 (base32
5278 "1j81r0wm7nfbwl991f26s4npcy7kybzybd3m47rbxy31h0cfcmdm"))))
5279 (inputs
5280 `(("alexandria" ,sbcl-alexandria)))
5281 (arguments
5282 '(#:asd-file "iolib.asdf.asd"))
5283 (synopsis "ASDF component classes for IOLib, a Common Lisp I/O library")
5284 (description "IOlib is to be a better and more modern I/O library than
5285 the standard Common Lisp library. It contains a socket library, a DNS
5286 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5287 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5288 (license license:expat))))
5289
5290 (define-public sbcl-iolib.conf
5291 (package
5292 (inherit sbcl-iolib.asdf)
5293 (name "sbcl-iolib.conf")
5294 (inputs
5295 `(("iolib.asdf" ,sbcl-iolib.asdf)))
5296 (arguments
5297 '(#:asd-file "iolib.conf.asd"))
5298 (synopsis "Compile-time configuration for IOLib, a Common Lisp I/O library")))
5299
5300 (define-public sbcl-iolib.common-lisp
5301 (package
5302 (inherit sbcl-iolib.asdf)
5303 (name "sbcl-iolib.common-lisp")
5304 (inputs
5305 `(("iolib.asdf" ,sbcl-iolib.asdf)
5306 ("iolib.conf" ,sbcl-iolib.conf)))
5307 (arguments
5308 '(#:asd-file "iolib.common-lisp.asd"))
5309 (synopsis "Slightly modified Common Lisp for IOLib, a Common Lisp I/O library")))
5310
5311 (define-public sbcl-iolib.base
5312 (package
5313 (inherit sbcl-iolib.asdf)
5314 (name "sbcl-iolib.base")
5315 (inputs
5316 `(("iolib.asdf" ,sbcl-iolib.asdf)
5317 ("iolib.conf" ,sbcl-iolib.conf)
5318 ("iolib.common-lisp" ,sbcl-iolib.common-lisp)
5319 ("split-sequence" ,sbcl-split-sequence)))
5320 (arguments
5321 '(#:asd-file "iolib.base.asd"))
5322 (synopsis "Base package for IOLib, a Common Lisp I/O library")))
5323
5324 (define-public sbcl-iolib.grovel
5325 (package
5326 (inherit sbcl-iolib.asdf)
5327 (name "sbcl-iolib.grovel")
5328 (inputs
5329 `(("iolib.asdf" ,sbcl-iolib.asdf)
5330 ("iolib.conf" ,sbcl-iolib.conf)
5331 ("iolib.base", sbcl-iolib.base)
5332 ("cffi", sbcl-cffi)))
5333 (arguments
5334 '(#:asd-file "iolib.grovel.asd"
5335 #:phases
5336 (modify-phases %standard-phases
5337 (add-after 'install 'install-header
5338 (lambda* (#:key outputs #:allow-other-keys)
5339 ;; This header is required by sbcl-iolib.
5340 (install-file "src/grovel/grovel-common.h"
5341 (string-append (assoc-ref outputs "out")
5342 "/lib/sbcl"))
5343 #t)))))
5344 (synopsis "CFFI Groveller for IOLib, a Common Lisp I/O library")))
5345
5346 (define-public sbcl-iolib
5347 (package
5348 (inherit sbcl-iolib.asdf)
5349 (name "sbcl-iolib")
5350 (inputs
5351 `(("iolib.asdf" ,sbcl-iolib.asdf)
5352 ("iolib.conf" ,sbcl-iolib.conf)
5353 ("iolib.grovel" ,sbcl-iolib.grovel)
5354 ("iolib.base" ,sbcl-iolib.base)
5355 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5356 ("idna" ,sbcl-idna)
5357 ("swap-bytes" ,sbcl-swap-bytes)
5358 ("libfixposix" ,libfixposix)
5359 ("cffi" ,sbcl-cffi)))
5360 (native-inputs
5361 `(("fiveam" ,sbcl-fiveam)))
5362 (arguments
5363 '(#:asd-file "iolib.asd"
5364 #:asd-system-name "iolib"
5365 #:test-asd-file "iolib.tests.asd"
5366 #:phases
5367 (modify-phases %standard-phases
5368 (add-after 'unpack 'fix-paths
5369 (lambda* (#:key inputs #:allow-other-keys)
5370 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5371 (("\\(:default \"libfixposix\"\\)")
5372 (string-append
5373 "(:default \""
5374 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5375 ;; Socket tests need Internet access, disable them.
5376 (substitute* "iolib.tests.asd"
5377 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5378 "")))))))
5379 (synopsis "Common Lisp I/O library")))
5380
5381 (define-public cl-iolib
5382 (sbcl-package->cl-source-package sbcl-iolib))
5383
5384 (define sbcl-iolib+multiplex
5385 (package
5386 (inherit sbcl-iolib)
5387 (name "sbcl-iolib+multiplex")
5388 (arguments
5389 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5390 ((#:asd-system-name _) "iolib/multiplex")))))
5391
5392 (define sbcl-iolib+syscalls
5393 (package
5394 (inherit sbcl-iolib)
5395 (name "sbcl-iolib+syscalls")
5396 (arguments
5397 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5398 ((#:asd-system-name _) "iolib/syscalls")))))
5399
5400 (define sbcl-iolib+streams
5401 (package
5402 (inherit sbcl-iolib)
5403 (name "sbcl-iolib+streams")
5404 (arguments
5405 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5406 ((#:asd-system-name _) "iolib/streams")))))
5407
5408 (define sbcl-iolib+sockets
5409 (package
5410 (inherit sbcl-iolib)
5411 (name "sbcl-iolib+sockets")
5412 (arguments
5413 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5414 ((#:asd-system-name _) "iolib/sockets")))))
5415
5416 (define-public sbcl-ieee-floats
5417 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5418 (revision "1"))
5419 (package
5420 (name "sbcl-ieee-floats")
5421 (build-system asdf-build-system/sbcl)
5422 (version (git-version "20170924" revision commit))
5423 (home-page "https://github.com/marijnh/ieee-floats/")
5424 (source
5425 (origin
5426 (method git-fetch)
5427 (uri (git-reference
5428 (url home-page)
5429 (commit commit)))
5430 (file-name (git-file-name name version))
5431 (sha256
5432 (base32
5433 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5434 (native-inputs
5435 `(("fiveam" ,sbcl-fiveam)))
5436 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5437 (description "This is a Common Lisp library that allows to convert
5438 floating point values to IEEE 754 binary representation.")
5439 (license license:bsd-3))))
5440
5441 (define-public cl-ieee-floats
5442 (sbcl-package->cl-source-package sbcl-ieee-floats))
5443
5444 (define sbcl-closure-common
5445 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5446 (revision "1"))
5447 (package
5448 (name "sbcl-closure-common")
5449 (build-system asdf-build-system/sbcl)
5450 (version (git-version "20101006" revision commit))
5451 (home-page "https://common-lisp.net/project/cxml/")
5452 (source
5453 (origin
5454 (method git-fetch)
5455 (uri (git-reference
5456 (url "https://github.com/sharplispers/closure-common")
5457 (commit commit)))
5458 (file-name (git-file-name name version))
5459 (sha256
5460 (base32
5461 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5462 (inputs
5463 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5464 ("babel" ,sbcl-babel)))
5465 (synopsis "Support Common Lisp library for CXML")
5466 (description "Closure-common is an internal helper library. The name
5467 Closure is a reference to the web browser it was originally written for.")
5468 ;; TODO: License?
5469 (license #f))))
5470
5471 (define-public sbcl-cxml+xml
5472 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5473 (revision "1"))
5474 (package
5475 (name "sbcl-cxml+xml")
5476 (build-system asdf-build-system/sbcl)
5477 (version (git-version "0.0.0" revision commit))
5478 (home-page "https://common-lisp.net/project/cxml/")
5479 (source
5480 (origin
5481 (method git-fetch)
5482 (uri (git-reference
5483 (url "https://github.com/sharplispers/cxml")
5484 (commit commit)))
5485 (file-name (git-file-name name version))
5486 (sha256
5487 (base32
5488 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5489 (inputs
5490 `(("closure-common" ,sbcl-closure-common)
5491 ("puri" ,sbcl-puri)
5492 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5493 (arguments
5494 `(#:asd-file "cxml.asd"
5495 #:asd-system-name "cxml/xml"))
5496 (synopsis "Common Lisp XML parser")
5497 (description "CXML implements a namespace-aware, validating XML 1.0
5498 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5499 offered, one SAX-like, the other similar to StAX.")
5500 (license license:llgpl))))
5501
5502 (define sbcl-cxml+dom
5503 (package
5504 (inherit sbcl-cxml+xml)
5505 (name "sbcl-cxml+dom")
5506 (inputs
5507 `(("closure-common" ,sbcl-closure-common)
5508 ("puri" ,sbcl-puri)
5509 ("cxml+xml" ,sbcl-cxml+xml)))
5510 (arguments
5511 `(#:asd-file "cxml.asd"
5512 #:asd-system-name "cxml/dom"))))
5513
5514 (define sbcl-cxml+klacks
5515 (package
5516 (inherit sbcl-cxml+xml)
5517 (name "sbcl-cxml+klacks")
5518 (inputs
5519 `(("closure-common" ,sbcl-closure-common)
5520 ("puri" ,sbcl-puri)
5521 ("cxml+xml" ,sbcl-cxml+xml)))
5522 (arguments
5523 `(#:asd-file "cxml.asd"
5524 #:asd-system-name "cxml/klacks"))))
5525
5526 (define sbcl-cxml+test
5527 (package
5528 (inherit sbcl-cxml+xml)
5529 (name "sbcl-cxml+test")
5530 (inputs
5531 `(("closure-common" ,sbcl-closure-common)
5532 ("puri" ,sbcl-puri)
5533 ("cxml+xml" ,sbcl-cxml+xml)))
5534 (arguments
5535 `(#:asd-file "cxml.asd"
5536 #:asd-system-name "cxml/test"))))
5537
5538 (define-public sbcl-cxml
5539 (package
5540 (inherit sbcl-cxml+xml)
5541 (name "sbcl-cxml")
5542 (inputs
5543 `(("closure-common" ,sbcl-closure-common)
5544 ("puri" ,sbcl-puri)
5545 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5546 ("cxml+dom" ,sbcl-cxml+dom)
5547 ("cxml+klacks" ,sbcl-cxml+klacks)
5548 ("cxml+test" ,sbcl-cxml+test)))
5549 (arguments
5550 `(#:asd-file "cxml.asd"
5551 #:asd-system-name "cxml"
5552 #:phases
5553 (modify-phases %standard-phases
5554 (add-after 'build 'install-dtd
5555 (lambda* (#:key outputs #:allow-other-keys)
5556 (install-file "catalog.dtd"
5557 (string-append
5558 (assoc-ref outputs "out")
5559 "/lib/" (%lisp-type)))))
5560 (add-after 'create-asd 'remove-component
5561 ;; XXX: The original .asd has no components, but our build system
5562 ;; creates an entry nonetheless. We need to remove it for the
5563 ;; generated .asd to load properly. See trivia.trivial for a
5564 ;; similar problem.
5565 (lambda* (#:key outputs #:allow-other-keys)
5566 (let* ((out (assoc-ref outputs "out"))
5567 (asd (string-append out "/lib/sbcl/cxml.asd")))
5568 (substitute* asd
5569 ((" :components
5570 ")
5571 ""))
5572 (substitute* asd
5573 ((" *\\(\\(:compiled-file \"cxml--system\"\\)\\)")
5574 ""))))))))))
5575
5576 (define-public cl-cxml
5577 (sbcl-package->cl-source-package sbcl-cxml))
5578
5579 (define-public sbcl-cl-reexport
5580 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5581 (revision "1"))
5582 (package
5583 (name "sbcl-cl-reexport")
5584 (build-system asdf-build-system/sbcl)
5585 (version (git-version "0.1" revision commit))
5586 (home-page "https://github.com/takagi/cl-reexport")
5587 (source
5588 (origin
5589 (method git-fetch)
5590 (uri (git-reference
5591 (url home-page)
5592 (commit commit)))
5593 (file-name (git-file-name name version))
5594 (sha256
5595 (base32
5596 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5597 (inputs
5598 `(("alexandria" ,sbcl-alexandria)))
5599 (arguments
5600 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5601 `(#:tests? #f))
5602 (synopsis "HTTP cookie manager for Common Lisp")
5603 (description "cl-cookie is a Common Lisp library featuring parsing of
5604 cookie headers, cookie creation, cookie jar creation and more.")
5605 (license license:llgpl))))
5606
5607 (define-public cl-reexport
5608 (sbcl-package->cl-source-package sbcl-cl-reexport))
5609
5610 (define-public sbcl-cl-cookie
5611 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5612 (revision "1"))
5613 (package
5614 (name "sbcl-cl-cookie")
5615 (build-system asdf-build-system/sbcl)
5616 (version (git-version "0.9.10" revision commit))
5617 (home-page "https://github.com/fukamachi/cl-cookie")
5618 (source
5619 (origin
5620 (method git-fetch)
5621 (uri (git-reference
5622 (url home-page)
5623 (commit commit)))
5624 (file-name (git-file-name name version))
5625 (sha256
5626 (base32
5627 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5628 (inputs
5629 `(("proc-parse" ,sbcl-proc-parse)
5630 ("alexandria" ,sbcl-alexandria)
5631 ("quri" ,sbcl-quri)
5632 ("cl-ppcre" ,sbcl-cl-ppcre)
5633 ("local-time" ,sbcl-local-time)))
5634 (native-inputs
5635 `(("prove-asdf" ,sbcl-prove-asdf)
5636 ("prove" ,sbcl-prove)))
5637 (arguments
5638 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
5639 `(#:tests? #f))
5640 (synopsis "HTTP cookie manager for Common Lisp")
5641 (description "cl-cookie is a Common Lisp library featuring parsing of
5642 cookie headers, cookie creation, cookie jar creation and more.")
5643 (license license:bsd-2))))
5644
5645 (define-public cl-cookie
5646 (sbcl-package->cl-source-package sbcl-cl-cookie))
5647
5648 (define-public sbcl-dexador
5649 (let ((commit "a2714d126cc94bc7a9a6e1e3c08de455b3a66378")
5650 (revision "1"))
5651 (package
5652 (name "sbcl-dexador")
5653 (build-system asdf-build-system/sbcl)
5654 (version (git-version "0.9.10" revision commit))
5655 (home-page "https://github.com/fukamachi/dexador")
5656 (source
5657 (origin
5658 (method git-fetch)
5659 (uri (git-reference
5660 (url home-page)
5661 (commit commit)))
5662 (file-name (git-file-name name version))
5663 (sha256
5664 (base32
5665 "0nbqgn4v3l2z6m1k1bdxfnqpfrk84nxdmz7csz11zzcfs4flkv79"))))
5666 (inputs
5667 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5668 ("babel" ,sbcl-babel)
5669 ("usocket" ,sbcl-usocket)
5670 ("fast-http" ,sbcl-fast-http)
5671 ("quri" ,sbcl-quri)
5672 ("fast-io" ,sbcl-fast-io)
5673 ("chunga" ,sbcl-chunga)
5674 ("cl-ppcre" ,sbcl-cl-ppcre)
5675 ("cl-cookie" ,sbcl-cl-cookie)
5676 ("trivial-mimes" ,sbcl-trivial-mimes)
5677 ("chipz" ,sbcl-chipz)
5678 ("cl-base64" ,sbcl-cl-base64)
5679 ("cl-reexport" ,sbcl-cl-reexport)
5680 ("cl+ssl" ,sbcl-cl+ssl)
5681 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5682 ("alexandria" ,sbcl-alexandria)))
5683 (native-inputs
5684 `(("prove" ,sbcl-prove)
5685 ("prove-asdf" ,sbcl-prove-asdf)
5686 ("lack-request" ,sbcl-lack-request)
5687 ("clack" ,sbcl-clack)
5688 ("babel" ,sbcl-babel)
5689 ("alexandria" ,sbcl-alexandria)
5690 ("cl-ppcre" ,sbcl-cl-ppcre)
5691 ("local-time" ,sbcl-local-time)))
5692 (arguments
5693 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
5694 `(#:tests? #f
5695 #:phases
5696 (modify-phases %standard-phases
5697 (add-after 'unpack 'fix-permissions
5698 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
5699 (synopsis "Yet another HTTP client for Common Lisp")
5700 (description "Dexador is yet another HTTP client for Common Lisp with
5701 neat APIs and connection-pooling. It is meant to supersede Drakma.")
5702 (license license:expat))))
5703
5704 (define-public cl-dexador
5705 (package
5706 (inherit (sbcl-package->cl-source-package sbcl-dexador))
5707 (arguments
5708 `(#:phases
5709 ;; asdf-build-system/source has its own phases and does not inherit
5710 ;; from asdf-build-system/sbcl phases.
5711 (modify-phases %standard-phases/source
5712 (add-after 'unpack 'fix-permissions
5713 (lambda _ (make-file-writable "t/data/test.gz") #t)))))))
5714
5715 (define-public ecl-dexador
5716 (sbcl-package->ecl-package sbcl-dexador))
5717
5718 (define-public sbcl-lisp-namespace
5719 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
5720 (revision "1"))
5721 (package
5722 (name "sbcl-lisp-namespace")
5723 (build-system asdf-build-system/sbcl)
5724 (version (git-version "0.1" revision commit))
5725 (home-page "https://github.com/guicho271828/lisp-namespace")
5726 (source
5727 (origin
5728 (method git-fetch)
5729 (uri (git-reference
5730 (url home-page)
5731 (commit commit)))
5732 (file-name (git-file-name name version))
5733 (sha256
5734 (base32
5735 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
5736 (inputs
5737 `(("alexandria" ,sbcl-alexandria)))
5738 (native-inputs
5739 `(("fiveam" ,sbcl-fiveam)))
5740 (arguments
5741 `(#:test-asd-file "lisp-namespace.test.asd"
5742 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
5743 #:tests? #f))
5744 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
5745 (description "Common Lisp already has major 2 namespaces, function
5746 namespace and value namespace (or variable namespace), but there are actually
5747 more — e.g., class namespace.
5748 This library offers macros to deal with symbols from any namespace.")
5749 (license license:llgpl))))
5750
5751 (define-public cl-lisp-namespace
5752 (sbcl-package->cl-source-package sbcl-lisp-namespace))
5753
5754 (define-public sbcl-trivial-cltl2
5755 (let ((commit "8eec8407df833e8f27df8a388bc10913f16d9e83")
5756 (revision "1"))
5757 (package
5758 (name "sbcl-trivial-cltl2")
5759 (build-system asdf-build-system/sbcl)
5760 (version (git-version "0.1.1" revision commit))
5761 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
5762 (source
5763 (origin
5764 (method git-fetch)
5765 (uri (git-reference
5766 (url home-page)
5767 (commit commit)))
5768 (file-name (git-file-name name version))
5769 (sha256
5770 (base32
5771 "1dyyxz17vqv8hlfwq287gl8xxbvcnq798ajb7p5jdjz91wqf4bgk"))))
5772 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
5773 (description "This library is a portable compatibility layer around
5774 \"Common Lisp the Language, 2nd
5775 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
5776 and it exports symbols from implementation-specific packages.")
5777 (license license:llgpl))))
5778
5779 (define-public cl-trivial-cltl2
5780 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
5781
5782 (define-public sbcl-introspect-environment
5783 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
5784 (revision "1"))
5785 (package
5786 (name "sbcl-introspect-environment")
5787 (build-system asdf-build-system/sbcl)
5788 (version (git-version "0.1" revision commit))
5789 (home-page "https://github.com/Bike/introspect-environment")
5790 (source
5791 (origin
5792 (method git-fetch)
5793 (uri (git-reference
5794 (url home-page)
5795 (commit commit)))
5796 (file-name (git-file-name name version))
5797 (sha256
5798 (base32
5799 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
5800 (native-inputs
5801 `(("fiveam" ,sbcl-fiveam)))
5802 (synopsis "Common Lisp environment introspection portability layer")
5803 (description "This library is a small interface to portable but
5804 nonstandard introspection of Common Lisp environments. It is intended to
5805 allow a bit more compile-time introspection of environments in Common Lisp.
5806
5807 Quite a bit of information is available at the time a macro or compiler-macro
5808 runs; inlining info, type declarations, that sort of thing. This information
5809 is all standard - any Common Lisp program can @code{(declare (integer x))} and
5810 such.
5811
5812 This info ought to be accessible through the standard @code{&environment}
5813 parameters, but it is not. Several implementations keep the information for
5814 their own purposes but do not make it available to user programs, because
5815 there is no standard mechanism to do so.
5816
5817 This library uses implementation-specific hooks to make information available
5818 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
5819 implementations have implementations of the functions that do as much as they
5820 can and/or provide reasonable defaults.")
5821 (license license:wtfpl2))))
5822
5823 (define-public cl-introspect-environment
5824 (sbcl-package->cl-source-package sbcl-introspect-environment))
5825
5826 (define-public sbcl-type-i
5827 (let ((commit "dea233f45f94064105ec09f0767de338f67dcbe2")
5828 (revision "1"))
5829 (package
5830 (name "sbcl-type-i")
5831 (build-system asdf-build-system/sbcl)
5832 (version (git-version "0.1" revision commit))
5833 (home-page "https://github.com/guicho271828/type-i")
5834 (source
5835 (origin
5836 (method git-fetch)
5837 (uri (git-reference
5838 (url home-page)
5839 (commit commit)))
5840 (file-name (git-file-name name version))
5841 (sha256
5842 (base32
5843 "039g5pbrhh65s0bhr9314gmd2nwc2y5lp2377c5qrc2lxky89qs3"))))
5844 (inputs
5845 `(("alexandria" ,sbcl-alexandria)
5846 ("introspect-environment" ,sbcl-introspect-environment)
5847 ("trivia.trivial" ,sbcl-trivia.trivial)))
5848 (native-inputs
5849 `(("fiveam" ,sbcl-fiveam)))
5850 (arguments
5851 `(#:test-asd-file "type-i.test.asd"))
5852 (synopsis "Type inference utility on unary predicates for Common Lisp")
5853 (description "This library tries to provide a way to detect what kind of
5854 type the given predicate is trying to check. This is different from inferring
5855 the return type of a function.")
5856 (license license:llgpl))))
5857
5858 (define-public cl-type-i
5859 (sbcl-package->cl-source-package sbcl-type-i))
5860
5861 (define-public sbcl-optima
5862 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
5863 (revision "1"))
5864 (package
5865 (name "sbcl-optima")
5866 (build-system asdf-build-system/sbcl)
5867 (version (git-version "1.0" revision commit))
5868 (home-page "https://github.com/m2ym/optima")
5869 (source
5870 (origin
5871 (method git-fetch)
5872 (uri (git-reference
5873 (url home-page)
5874 (commit commit)))
5875 (file-name (git-file-name name version))
5876 (sha256
5877 (base32
5878 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
5879 (inputs
5880 `(("alexandria" ,sbcl-alexandria)
5881 ("closer-mop" ,sbcl-closer-mop)))
5882 (native-inputs
5883 `(("eos" ,sbcl-eos)))
5884 (arguments
5885 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
5886 `(#:tests? #f
5887 #:test-asd-file "optima.test.asd"))
5888 (synopsis "Optimized pattern matching library for Common Lisp")
5889 (description "Optima is a fast pattern matching library which uses
5890 optimizing techniques widely used in the functional programming world.")
5891 (license license:expat))))
5892
5893 (define-public cl-optima
5894 (sbcl-package->cl-source-package sbcl-optima))
5895
5896 (define-public sbcl-fare-quasiquote
5897 (package
5898 (name "sbcl-fare-quasiquote")
5899 (build-system asdf-build-system/sbcl)
5900 (version "20171130")
5901 (home-page "http://common-lisp.net/project/fare-quasiquote")
5902 (source
5903 (origin
5904 (method url-fetch)
5905 (uri (string-append "http://beta.quicklisp.org/archive/fare-quasiquote/"
5906 (date->string (string->date version "~Y~m~d") "~Y-~m-~d")
5907 "/fare-quasiquote-"
5908 version
5909 "-git.tgz"))
5910 (sha256
5911 (base32
5912 "00brmh7ndsi0c97nibi8cy10j3l4gmkyrfrr5jr5lzkfb7ngyfqa"))))
5913 (inputs
5914 `(("fare-utils" ,sbcl-fare-utils)))
5915 (arguments
5916 ;; XXX: Circular dependencies: Tests depend on subsystems, which depend on the main systems.
5917 `(#:tests? #f
5918 #:phases
5919 (modify-phases %standard-phases
5920 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
5921 ;; commits after 1.0.0.5, but ASDF fails to read the
5922 ;; "-REVISION-COMMIT" part generated by Guix.
5923 (add-after 'unpack 'patch-requirement
5924 (lambda _
5925 (substitute* "fare-quasiquote.asd"
5926 (("\\(:version \"fare-utils\" \"1.0.0\"\\)") "\"fare-utils\"")))))))
5927 (synopsis "Pattern-matching friendly implementation of quasiquote for Common Lisp")
5928 (description "The main purpose of this n+2nd reimplementation of
5929 quasiquote is enable matching of quasiquoted patterns, using Optima or
5930 Trivia.")
5931 (license license:expat)))
5932
5933 (define-public cl-fare-quasiquote
5934 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
5935
5936 (define-public sbcl-fare-quasiquote-optima
5937 (package
5938 (inherit sbcl-fare-quasiquote)
5939 (name "sbcl-fare-quasiquote-optima")
5940 (inputs
5941 `(("optima" ,sbcl-optima)
5942 ("fare-quasiquote" ,sbcl-fare-quasiquote)))
5943 (arguments
5944 '(#:phases
5945 (modify-phases %standard-phases
5946 (add-after 'unpack 'patch-requirement
5947 (lambda _
5948 (substitute* "fare-quasiquote-optima.asd"
5949 (("\\(:version \"optima\" \"1\\.0\"\\)")
5950 "\"optima\""))
5951 #t)))))))
5952
5953 (define-public cl-fare-quasiquote-optima
5954 (sbcl-package->cl-source-package sbcl-fare-quasiquote-optima))
5955
5956 (define-public sbcl-fare-quasiquote-readtable
5957 (package
5958 (inherit sbcl-fare-quasiquote)
5959 (name "sbcl-fare-quasiquote-readtable")
5960 (inputs
5961 `(("fare-quasiquote" ,sbcl-fare-quasiquote)
5962 ("named-readtables" ,sbcl-named-readtables)))
5963 (description "The main purpose of this n+2nd reimplementation of
5964 quasiquote is enable matching of quasiquoted patterns, using Optima or
5965 Trivia.
5966
5967 This package uses fare-quasiquote with named-readtable.")))
5968
5969 (define-public cl-fare-quasiquote-readtable
5970 (sbcl-package->cl-source-package sbcl-fare-quasiquote-readtable))
5971
5972 ;; TODO: Add support for component-less system in asdf-build-system/sbcl.
5973 (define-public cl-fare-quasiquote-extras
5974 (package
5975 (inherit cl-fare-quasiquote)
5976 (name "cl-fare-quasiquote-extras")
5977 (build-system asdf-build-system/source)
5978 (propagated-inputs
5979 `(("fare-quasiquote" ,cl-fare-quasiquote)
5980 ("fare-quasiquote-optima" ,cl-fare-quasiquote-optima)
5981 ("fare-quasiquote-readtable" ,cl-fare-quasiquote-readtable)))
5982 (description "This library combines @code{fare-quasiquote-readtable} and
5983 @code{fare-quasiquote-optima}.")))
5984
5985 (define-public sbcl-trivia.level0
5986 (let ((commit "902e0c65602bbfe96ae82e679330b3771ddc7603")
5987 (revision "1"))
5988 (package
5989 (name "sbcl-trivia.level0")
5990 (build-system asdf-build-system/sbcl)
5991 (version (git-version "0.0.0" revision commit))
5992 (home-page "https://github.com/guicho271828/trivia")
5993 (source
5994 (origin
5995 (method git-fetch)
5996 (uri (git-reference
5997 (url home-page)
5998 (commit commit)))
5999 (file-name (git-file-name name version))
6000 (sha256
6001 (base32
6002 "11qbab30qqnfy9mx3x9fvgcw1jbvh1qn2cqv3p8xdn2m8981jvhr"))))
6003 (inputs
6004 `(("alexandria" ,sbcl-alexandria)))
6005 (synopsis "Pattern matching in Common Lisp")
6006 (description "Trivia is a pattern matching compiler that is compatible
6007 with Optima, another pattern matching library for Common Lisp. It is meant to
6008 be faster and more extensible than Optima.")
6009 (license license:llgpl))))
6010
6011 (define-public sbcl-trivia.level1
6012 (package
6013 (inherit sbcl-trivia.level0)
6014 (name "sbcl-trivia.level1")
6015 (inputs
6016 `(("trivia.level0" ,sbcl-trivia.level0)))
6017 (description "Trivia is a pattern matching compiler that is compatible
6018 with Optima, another pattern matching library for Common Lisp. It is meant to
6019 be faster and more extensible than Optima.
6020
6021 This system contains the core patterns of Trivia.")))
6022
6023 (define-public sbcl-trivia.level2
6024 (package
6025 (inherit sbcl-trivia.level0)
6026 (name "sbcl-trivia.level2")
6027 (inputs
6028 `(("trivia.level1" ,sbcl-trivia.level1)
6029 ("lisp-namespace" ,sbcl-lisp-namespace)
6030 ("trivial-cltl2" ,sbcl-trivial-cltl2)
6031 ("closer-mop" ,sbcl-closer-mop)))
6032 (description "Trivia is a pattern matching compiler that is compatible
6033 with Optima, another pattern matching library for Common Lisp. It is meant to
6034 be faster and more extensible than Optima.
6035
6036 This system contains a non-optimized pattern matcher compatible with Optima,
6037 with extensible optimizer interface.")))
6038
6039 (define-public sbcl-trivia.trivial
6040 (package
6041 (inherit sbcl-trivia.level0)
6042 (name "sbcl-trivia.trivial")
6043 (inputs
6044 `(("trivia.level2" ,sbcl-trivia.level2)))
6045 (arguments
6046 `(#:phases
6047 (modify-phases %standard-phases
6048 (replace 'create-asd-file
6049 (lambda* (#:key outputs inputs #:allow-other-keys)
6050 (let* ((out (assoc-ref outputs "out"))
6051 (lib (string-append out "/lib/" (%lisp-type)))
6052 (level2 (assoc-ref inputs "trivia.level2")))
6053 (mkdir-p lib)
6054 (install-file "trivia.trivial.asd" lib)
6055 ;; XXX: This .asd does not have any component and the build
6056 ;; system fails to work in this case. We should update the
6057 ;; build system to handle component-less .asd.
6058 ;; TODO: How do we append to file in Guile? It seems that
6059 ;; (open-file ... "a") gets a "Permission denied".
6060 (substitute* (string-append lib "/trivia.trivial.asd")
6061 (("\"\\)")
6062 (string-append "\")
6063
6064 (progn (asdf/source-registry:ensure-source-registry)
6065 (setf (gethash
6066 \"trivia.level2\"
6067 asdf/source-registry:*source-registry*)
6068 #p\""
6069 level2
6070 "/share/common-lisp/sbcl-bundle-systems/trivia.level2.asd\"))")))))))))
6071 (description "Trivia is a pattern matching compiler that is compatible
6072 with Optima, another pattern matching library for Common Lisp. It is meant to
6073 be faster and more extensible than Optima.
6074
6075 This system contains the base level system of Trivia with a trivial optimizer.")))
6076
6077 (define-public sbcl-trivia.balland2006
6078 (package
6079 (inherit sbcl-trivia.level0)
6080 (name "sbcl-trivia.balland2006")
6081 (inputs
6082 `(("trivia.trivial" ,sbcl-trivia.trivial)
6083 ("iterate" ,sbcl-iterate)
6084 ("type-i" ,sbcl-type-i)
6085 ("alexandria" ,sbcl-alexandria)))
6086 (arguments
6087 ;; Tests are done in trivia itself.
6088 `(#:tests? #f))
6089 (description "Trivia is a pattern matching compiler that is compatible
6090 with Optima, another pattern matching library for Common Lisp. It is meant to
6091 be faster and more extensible than Optima.
6092
6093 This system contains the base level system of Trivia with a trivial optimizer.")))
6094
6095 (define-public sbcl-trivia.ppcre
6096 (package
6097 (inherit sbcl-trivia.level0)
6098 (name "sbcl-trivia.ppcre")
6099 (inputs
6100 `(("trivia.trivial" ,sbcl-trivia.trivial)
6101 ("cl-ppcre" ,sbcl-cl-ppcre)))
6102 (description "Trivia is a pattern matching compiler that is compatible
6103 with Optima, another pattern matching library for Common Lisp. It is meant to
6104 be faster and more extensible than Optima.
6105
6106 This system contains the PPCRE extension.")))
6107
6108 (define-public sbcl-trivia.quasiquote
6109 (package
6110 (inherit sbcl-trivia.level0)
6111 (name "sbcl-trivia.quasiquote")
6112 (inputs
6113 `(("trivia.trivial" ,sbcl-trivia.trivial)
6114 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6115 ("fare-quasiquote-readtable" ,sbcl-fare-quasiquote-readtable)))
6116 (description "Trivia is a pattern matching compiler that is compatible
6117 with Optima, another pattern matching library for Common Lisp. It is meant to
6118 be faster and more extensible than Optima.
6119
6120 This system contains the fare-quasiquote extension.")))
6121
6122 (define-public sbcl-trivia.cffi
6123 (package
6124 (inherit sbcl-trivia.level0)
6125 (name "sbcl-trivia.cffi")
6126 (inputs
6127 `(("cffi" ,sbcl-cffi)
6128 ("trivia.trivial" ,sbcl-trivia.trivial)))
6129 (description "Trivia is a pattern matching compiler that is compatible
6130 with Optima, another pattern matching library for Common Lisp. It is meant to
6131 be faster and more extensible than Optima.
6132
6133 This system contains the CFFI foreign slot access extension.")))
6134
6135 (define-public sbcl-trivia
6136 (package
6137 (inherit sbcl-trivia.level0)
6138 (name "sbcl-trivia")
6139 (inputs
6140 `(("trivia.balland2006" ,sbcl-trivia.balland2006)))
6141 (native-inputs
6142 `(("fiveam" ,sbcl-fiveam)
6143 ("trivia.ppcre" ,sbcl-trivia.ppcre)
6144 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
6145 ("trivia.cffi" ,sbcl-trivia.cffi)
6146 ("optima" ,sbcl-optima)))
6147 (arguments
6148 `(#:test-asd-file "trivia.test.asd"
6149 #:phases
6150 (modify-phases %standard-phases
6151 (add-after 'create-asd 'remove-component
6152 ;; XXX: The original .asd has no components, but our build system
6153 ;; creates an entry nonetheless. We need to remove it for the
6154 ;; generated .asd to load properly. See trivia.trivial for a
6155 ;; similar problem.
6156 (lambda* (#:key outputs #:allow-other-keys)
6157 (let* ((out (assoc-ref outputs "out"))
6158 (asd (string-append out "/lib/" (%lisp-type) "/trivia.asd")))
6159 (substitute* asd
6160 ((" :components
6161 ")
6162 ""))
6163 (substitute* asd
6164 ((" *\\(\\(:compiled-file \"trivia--system\"\\)\\)")
6165 ""))))))))
6166 (description "Trivia is a pattern matching compiler that is compatible
6167 with Optima, another pattern matching library for Common Lisp. It is meant to
6168 be faster and more extensible than Optima.")))
6169
6170 (define-public cl-trivia
6171 (sbcl-package->cl-source-package sbcl-trivia))
6172
6173 (define-public sbcl-mk-string-metrics
6174 (package
6175 (name "sbcl-mk-string-metrics")
6176 (version "0.1.2")
6177 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6178 (source (origin
6179 (method git-fetch)
6180 (uri (git-reference
6181 (url home-page)
6182 (commit version)))
6183 (sha256
6184 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6185 (file-name (git-file-name name version))))
6186 (build-system asdf-build-system/sbcl)
6187 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6188 (description "This library implements efficient algorithms that calculate
6189 various string metrics in Common Lisp:
6190
6191 @itemize
6192 @item Damerau-Levenshtein distance
6193 @item Hamming distance
6194 @item Jaccard similarity coefficient
6195 @item Jaro distance
6196 @item Jaro-Winkler distance
6197 @item Levenshtein distance
6198 @item Normalized Damerau-Levenshtein distance
6199 @item Normalized Levenshtein distance
6200 @item Overlap coefficient
6201 @end itemize\n")
6202 (license license:x11)))
6203
6204 (define-public cl-mk-string-metrics
6205 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6206
6207 (define-public sbcl-cl-str
6208 (let ((commit "3d5ec86e3a0199e5973aacde951086dfd754b5e5"))
6209 (package
6210 (name "sbcl-cl-str")
6211 (version (git-version "0.8" "1" commit))
6212 (home-page "https://github.com/vindarel/cl-str")
6213 (source (origin
6214 (method git-fetch)
6215 (uri (git-reference
6216 (url home-page)
6217 (commit commit)))
6218 (sha256
6219 (base32 "0szzzbygw9h985yxz909vvqrp69pmpcpahn7hn350lnyjislk9ga"))
6220 (file-name (git-file-name name version))))
6221 (build-system asdf-build-system/sbcl)
6222 (inputs
6223 `(("cl-ppcre" ,sbcl-cl-ppcre)
6224 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
6225 (native-inputs
6226 `(("prove" ,sbcl-prove)
6227 ("prove-asdf" ,sbcl-prove-asdf)))
6228 (arguments
6229 `(#:asd-file "str.asd"
6230 #:asd-system-name "str"
6231 #:test-asd-file "str.test.asd"))
6232 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6233 (description "A modern and consistent Common Lisp string manipulation
6234 library that focuses on modernity, simplicity and discoverability:
6235 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6236 @code{str:concat strings} instead of an unusual format construct; one
6237 discoverable library instead of many; consistency and composability, where
6238 @code{s} is always the last argument, which makes it easier to feed pipes and
6239 arrows.")
6240 (license license:expat))))
6241
6242 (define-public cl-str
6243 (sbcl-package->cl-source-package sbcl-cl-str))
6244
6245 (define-public sbcl-cl-xmlspam
6246 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6247 (package
6248 (name "sbcl-cl-xmlspam")
6249 (build-system asdf-build-system/sbcl)
6250 (version (git-version "0.0.0" "1" commit))
6251 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6252 (source
6253 (origin
6254 (method git-fetch)
6255 (uri (git-reference
6256 (url home-page)
6257 (commit commit)))
6258 (file-name (string-append name "-" version))
6259 (sha256
6260 (base32
6261 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6262 (inputs
6263 `(("cxml" ,sbcl-cxml)
6264 ("cl-ppcre" ,sbcl-cl-ppcre)))
6265 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6266 (description "CXML does an excellent job at parsing XML elements, but what
6267 do you do when you have a XML file that's larger than you want to fit in
6268 memory, and you want to extract some information from it? Writing code to deal
6269 with SAX events, or even using Klacks, quickly becomes tedious.
6270 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6271 to write code that mirrors the structure of the XML that it's parsing. It
6272 also makes it easy to shift paradigms when necessary - the usual Lisp control
6273 constructs can be used interchangeably with pattern matching, and the full
6274 power of CXML is available when necessary.")
6275 (license license:bsd-3))))
6276
6277 ;; TODO: dbus uses ASDF's package-inferred-system which is not supported by
6278 ;; asdf-build-system/sbcl as of 2019-08-02. We should fix
6279 ;; asdf-build-system/sbcl.
6280 (define-public cl-dbus
6281 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6282 (revision "1"))
6283 (package
6284 (name "cl-dbus")
6285 (build-system asdf-build-system/source)
6286 (version (git-version "20190408" revision commit))
6287 (home-page "https://github.com/death/dbus")
6288 (source
6289 (origin
6290 (method git-fetch)
6291 (uri (git-reference
6292 (url home-page)
6293 (commit commit)))
6294 (file-name (git-file-name name version))
6295 (sha256
6296 (base32
6297 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6298 ;; Inputs must be propagated or else packages depending on this won't have the necessary packages.
6299 (propagated-inputs
6300 `(("alexandria" ,sbcl-alexandria)
6301 ("trivial-garbage" ,sbcl-trivial-garbage)
6302 ("babel" ,sbcl-babel)
6303 ("iolib" ,sbcl-iolib)
6304 ("iolib+multiplex" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+multiplex))
6305 ("iolib+syscalls" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+syscalls))
6306 ("iolib+streams" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+streams))
6307 ("iolib+sockets" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+sockets))
6308 ("ieee-floats" ,sbcl-ieee-floats)
6309 ("flexi-streams" ,sbcl-flexi-streams)
6310 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6311 ("ironclad" ,sbcl-ironclad)))
6312 (synopsis "D-Bus client library for Common Lisp")
6313 (description "This is a Common Lisp library that allows to publish D-Bus
6314 objects as well as send and notify other objects connected to a bus.")
6315 (license license:bsd-2))))
6316
6317 (define-public sbcl-cl-hooks
6318 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6319 (revision "1"))
6320 (package
6321 (name "sbcl-cl-hooks")
6322 (build-system asdf-build-system/sbcl)
6323 (version (git-version "0.2.1" revision commit))
6324 (home-page "https://github.com/scymtym/architecture.hooks")
6325 (source
6326 (origin
6327 (method git-fetch)
6328 (uri (git-reference
6329 (url home-page)
6330 (commit commit)))
6331 (file-name (git-file-name name version))
6332 (sha256
6333 (base32
6334 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6335 (inputs
6336 `(("alexandria" ,sbcl-alexandria)
6337 ("let-plus" ,sbcl-let-plus)
6338 ("trivial-garbage" ,sbcl-trivial-garbage)
6339 ("closer-mop" ,sbcl-closer-mop)))
6340 (native-inputs
6341 `(("fiveam" ,sbcl-fiveam)))
6342 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6343 (description "A hook, in the present context, is a certain kind of
6344 extension point in a program that allows interleaving the execution of
6345 arbitrary code with the execution of a the program without introducing any
6346 coupling between the two. Hooks are used extensively in the extensible editor
6347 Emacs.
6348
6349 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6350 possible using the flexible multi-method dispatch mechanism. It may even seem
6351 that the concept of hooks does not provide any benefits over the possibilities
6352 of CLOS. However, there are some differences:
6353
6354 @itemize
6355
6356 @item There can be only one method for each combination of specializers and
6357 qualifiers. As a result this kind of extension point cannot be used by
6358 multiple extensions independently.
6359 @item Removing code previously attached via a @code{:before}, @code{:after} or
6360 @code{:around} method can be cumbersome.
6361 @item There could be other or even multiple extension points besides @code{:before}
6362 and @code{:after} in a single method.
6363 @item Attaching codes to individual objects using eql specializers can be
6364 cumbersome.
6365 @item Introspection of code attached a particular extension point is
6366 cumbersome since this requires enumerating and inspecting the methods of a
6367 generic function.
6368 @end itemize
6369
6370 This library tries to complement some of these weaknesses of method-based
6371 extension-points via the concept of hooks.")
6372 (license license:llgpl))))
6373
6374 (define-public cl-hooks
6375 (sbcl-package->cl-source-package sbcl-cl-hooks))
6376
6377 (define-public ecl-cl-hooks
6378 (sbcl-package->ecl-package sbcl-cl-hooks))
6379
6380 (define-public sbcl-s-sysdeps
6381 (let ((commit "d28246b5dffef9e73a0e0e6cfbc4e878006fe34d")
6382 (revision "1"))
6383 (package
6384 (name "sbcl-s-sysdeps")
6385 (build-system asdf-build-system/sbcl)
6386 (version (git-version "1" revision commit))
6387 (home-page "https://github.com/svenvc/s-sysdeps")
6388 (source
6389 (origin
6390 (method git-fetch)
6391 (uri (git-reference
6392 (url home-page)
6393 (commit commit)))
6394 (file-name (git-file-name name version))
6395 (sha256
6396 (base32
6397 "14b69b81yrxmjlvmm3lfxk04x5v7hqz4fql121334wh72czznfh9"))))
6398 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6399 (description "@code{s-sysdeps} is an abstraction layer over platform
6400 dependent functionality. This simple package is used as a building block in a
6401 number of other open source projects.
6402
6403 @code{s-sysdeps} abstracts:
6404
6405 @itemize
6406 @item managing processes,
6407 @item implementing a standard TCP/IP server,
6408 @item opening a client TCP/IP socket stream,
6409 @item working with process locks.
6410 @end itemize\n")
6411 (license license:llgpl))))
6412
6413 (define-public cl-s-sysdeps
6414 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6415
6416 (define-public ecl-s-sysdeps
6417 (sbcl-package->ecl-package sbcl-s-sysdeps))
6418
6419 (define-public sbcl-cl-prevalence
6420 (let ((commit "c163c227ed85d430b82cb1e3502f72d4f88e3cfa")
6421 (revision "1"))
6422 (package
6423 (name "sbcl-cl-prevalence")
6424 (build-system asdf-build-system/sbcl)
6425 (version (git-version "5" revision commit))
6426 (home-page "https://github.com/40ants/cl-prevalence")
6427 (source
6428 (origin
6429 (method git-fetch)
6430 (uri (git-reference
6431 (url home-page)
6432 (commit commit)))
6433 (file-name (git-file-name name version))
6434 (sha256
6435 (base32
6436 "1i9zj1q2ahgwch56an21yzbgkynz0kab9fyxkq9mg8p3xrv38jjn"))))
6437 (inputs
6438 `(("s-sysdeps" ,sbcl-s-sysdeps)
6439 ("s-xml" ,sbcl-s-xml)))
6440 (synopsis "Implementation of object prevalence for Common Lisp")
6441 (description "This Common Lisp library implements object prevalence (see
6442 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6443 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6444 classes and cyclic data structures are supported.")
6445 (license license:llgpl))))
6446
6447 (define-public cl-prevalence
6448 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6449
6450 (define-public ecl-cl-prevalence
6451 (sbcl-package->ecl-package sbcl-cl-prevalence))
6452
6453 (define-public sbcl-series
6454 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6455 (revision "1"))
6456 (package
6457 (name "sbcl-series")
6458 (version (git-version "2.2.11" revision commit))
6459 (source
6460 (origin
6461 (method git-fetch)
6462 (uri (git-reference
6463 (url "git://git.code.sf.net/p/series/series")
6464 (commit commit)))
6465 (file-name (git-file-name name version))
6466 (sha256
6467 (base32
6468 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6469 (build-system asdf-build-system/sbcl)
6470 (arguments
6471 ;; Disable the tests, they are apparently buggy and I didn't find
6472 ;; a simple way to make them run and pass.
6473 '(#:tests? #f))
6474 (synopsis "Series data structure for Common Lisp")
6475 (description
6476 "This Common Lisp library provides a series data structure much like
6477 a sequence, with similar kinds of operations. The difference is that in many
6478 situations, operations on series may be composed functionally and yet execute
6479 iteratively, without the need to construct intermediate series values
6480 explicitly. In this manner, series provide both the clarity of a functional
6481 programming style and the efficiency of an iterative programming style.")
6482 (home-page "http://series.sourceforge.net/")
6483 (license license:expat))))
6484
6485 (define-public cl-series
6486 (sbcl-package->cl-source-package sbcl-series))
6487
6488 (define-public ecl-series
6489 (sbcl-package->ecl-package sbcl-series))
6490
6491 (define-public sbcl-periods
6492 (let ((commit "983d4a57325db3c8def942f163133cec5391ec28")
6493 (revision "1"))
6494 (package
6495 (name "sbcl-periods")
6496 (version (git-version "0.0.2" revision commit))
6497 (source
6498 (origin
6499 (method git-fetch)
6500 (uri (git-reference
6501 (url "https://github.com/jwiegley/periods.git")
6502 (commit commit)))
6503 (file-name (git-file-name name version))
6504 (sha256
6505 (base32
6506 "0z30jr3lxz3cmi019fsl4lgcgwf0yqpn95v9zkkkwgymdrkd4lga"))))
6507 (build-system asdf-build-system/sbcl)
6508 (inputs
6509 `(("local-time" ,sbcl-local-time)))
6510 (synopsis "Common Lisp library for manipulating date/time objects")
6511 (description
6512 "Periods is a Common Lisp library providing a set of utilities for
6513 manipulating times, distances between times, and both contiguous and
6514 discontiguous ranges of time.")
6515 (home-page "https://github.com/jwiegley/periods")
6516 (license license:bsd-3))))
6517
6518 (define-public cl-periods
6519 (sbcl-package->cl-source-package sbcl-periods))
6520
6521 (define-public ecl-periods
6522 (sbcl-package->ecl-package sbcl-periods))
6523
6524 (define-public sbcl-periods-series
6525 (package
6526 (inherit sbcl-periods)
6527 (name "sbcl-periods-series")
6528 (inputs
6529 `(("periods" ,sbcl-periods)
6530 ("series" ,sbcl-series)))
6531 (arguments
6532 '(#:asd-file "periods-series.asd"
6533 #:asd-system-name "periods-series"))
6534 (description
6535 "Periods-series is an extension of the periods Common Lisp library
6536 providing functions compatible with the series Common Lisp library.")))
6537
6538 (define-public cl-periods-series
6539 (sbcl-package->cl-source-package sbcl-periods-series))
6540
6541 (define-public ecl-periods-series
6542 (sbcl-package->ecl-package sbcl-periods-series))
6543
6544 (define-public sbcl-metatilities-base
6545 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6546 (revision "1"))
6547 (package
6548 (name "sbcl-metatilities-base")
6549 (version (git-version "0.6.6" revision commit))
6550 (source
6551 (origin
6552 (method git-fetch)
6553 (uri (git-reference
6554 (url "https://github.com/gwkkwg/metatilities-base.git")
6555 (commit commit)))
6556 (file-name (git-file-name name version))
6557 (sha256
6558 (base32
6559 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6560 (build-system asdf-build-system/sbcl)
6561 (native-inputs
6562 `(("lift" ,sbcl-lift)))
6563 (synopsis "Core of the metatilities Common Lisp library")
6564 (description
6565 "Metatilities-base is the core of the metatilities Common Lisp library
6566 which implements a set of utilities.")
6567 (home-page "https://common-lisp.net/project/metatilities-base/")
6568 (license license:expat))))
6569
6570 (define-public cl-metatilities-base
6571 (sbcl-package->cl-source-package sbcl-metatilities-base))
6572
6573 (define-public ecl-metatilities-base
6574 (sbcl-package->ecl-package sbcl-metatilities-base))
6575
6576 (define-public sbcl-cl-containers
6577 (let ((commit "810927e19d933bcf38ffeb7a23ce521efc432d45")
6578 (revision "1"))
6579 (package
6580 (name "sbcl-cl-containers")
6581 (version (git-version "0.12.1" revision commit))
6582 (source
6583 (origin
6584 (method git-fetch)
6585 (uri (git-reference
6586 (url "https://github.com/gwkkwg/cl-containers.git")
6587 (commit commit)))
6588 (file-name (git-file-name name version))
6589 (sha256
6590 (base32
6591 "1s9faxw7svhbjpkhfrz2qxgjm3cvyjb8wpyb4m8dx4i5g7vvprkv"))))
6592 (build-system asdf-build-system/sbcl)
6593 (native-inputs
6594 `(("lift" ,sbcl-lift)))
6595 (inputs
6596 `(("metatilities-base" ,sbcl-metatilities-base)))
6597 (arguments
6598 '(#:phases
6599 (modify-phases %standard-phases
6600 (add-after 'unpack 'relax-version-checks
6601 (lambda _
6602 (substitute* "cl-containers.asd"
6603 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6604 "\"metatilities-base\""))
6605 (substitute* "cl-containers-test.asd"
6606 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6607 "\"lift\""))
6608 #t)))))
6609 (synopsis "Container library for Common Lisp")
6610 (description
6611 "Common Lisp ships with a set of powerful built in data structures
6612 including the venerable list, full featured arrays, and hash-tables.
6613 CL-containers enhances and builds on these structures by adding containers
6614 that are not available in native Lisp (for example: binary search trees,
6615 red-black trees, sparse arrays and so on), and by providing a standard
6616 interface so that they are simpler to use and so that changing design
6617 decisions becomes significantly easier.")
6618 (home-page "https://common-lisp.net/project/cl-containers/")
6619 (license license:expat))))
6620
6621 (define-public cl-containers
6622 (sbcl-package->cl-source-package sbcl-cl-containers))
6623
6624 (define-public ecl-cl-containers
6625 (sbcl-package->ecl-package sbcl-cl-containers))
6626
6627 (define-public sbcl-xlunit
6628 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6629 (revision "1"))
6630 (package
6631 (name "sbcl-xlunit")
6632 (version (git-version "0.6.3" revision commit))
6633 (source
6634 (origin
6635 (method git-fetch)
6636 (uri (git-reference
6637 (url "http://git.kpe.io/xlunit.git")
6638 (commit commit)))
6639 (file-name (git-file-name name version))
6640 (sha256
6641 (base32
6642 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6643 (build-system asdf-build-system/sbcl)
6644 (arguments
6645 '(#:phases
6646 (modify-phases %standard-phases
6647 (add-after 'unpack 'fix-tests
6648 (lambda _
6649 (substitute* "xlunit.asd"
6650 ((" :force t") ""))
6651 #t)))))
6652 (synopsis "Unit testing package for Common Lisp")
6653 (description
6654 "The XLUnit package is a toolkit for building test suites. It is based
6655 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6656 (home-page "http://quickdocs.org/xlunit/")
6657 (license license:bsd-3))))
6658
6659 (define-public cl-xlunit
6660 (sbcl-package->cl-source-package sbcl-xlunit))
6661
6662 (define-public ecl-xlunit
6663 (sbcl-package->ecl-package sbcl-xlunit))
6664
6665 (define-public sbcl-fprog
6666 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6667 (revision "1"))
6668 (package
6669 (name "sbcl-fprog")
6670 (version (git-version "1.0.0" revision commit))
6671 (source
6672 (origin
6673 (method git-fetch)
6674 (uri (git-reference
6675 (url "https://github.com/jwiegley/cambl.git")
6676 (commit commit)))
6677 (file-name (git-file-name name version))
6678 (sha256
6679 (base32
6680 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6681 (build-system asdf-build-system/sbcl)
6682 (synopsis "Functional programming utilities for Common Lisp")
6683 (description
6684 "@code{fprog} is a Common Lisp library allowing iteration over
6685 immutable lists sharing identical sublists.")
6686 (home-page "https://github.com/jwiegley/cambl")
6687 (license license:bsd-3))))
6688
6689 (define-public cl-fprog
6690 (sbcl-package->cl-source-package sbcl-fprog))
6691
6692 (define-public ecl-fprog
6693 (sbcl-package->ecl-package sbcl-fprog))
6694
6695 (define-public sbcl-cambl
6696 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6697 (revision "1"))
6698 (package
6699 (inherit sbcl-fprog)
6700 (name "sbcl-cambl")
6701 (version (git-version "4.0.0" revision commit))
6702 (native-inputs
6703 `(("xlunit" ,sbcl-xlunit)))
6704 (inputs
6705 `(("alexandria" ,sbcl-alexandria)
6706 ("cl-containers" ,sbcl-cl-containers)
6707 ("local-time" ,sbcl-local-time)
6708 ("periods" ,sbcl-periods)
6709 ("fprog" ,sbcl-fprog)))
6710 (synopsis "Commoditized amounts and balances for Common Lisp")
6711 (description
6712 "CAMBL is a Common Lisp library providing a convenient facility for
6713 working with commoditized values. It does not allow compound units (and so is
6714 not suited for scientific operations) but does work rather nicely for the
6715 purpose of financial calculations."))))
6716
6717 (define-public cl-cambl
6718 (sbcl-package->cl-source-package sbcl-cambl))
6719
6720 (define-public ecl-cambl
6721 (sbcl-package->ecl-package sbcl-cambl))
6722
6723 (define-public sbcl-cl-ledger
6724 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6725 (revision "1"))
6726 (package
6727 (name "sbcl-cl-ledger")
6728 (version (git-version "4.0.0" revision commit))
6729 (source
6730 (origin
6731 (method git-fetch)
6732 (uri (git-reference
6733 (url "https://github.com/ledger/cl-ledger.git")
6734 (commit commit)))
6735 (file-name (git-file-name name version))
6736 (sha256
6737 (base32
6738 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
6739 (build-system asdf-build-system/sbcl)
6740 (inputs
6741 `(("cambl" ,sbcl-cambl)
6742 ("cl-ppcre" ,sbcl-cl-ppcre)
6743 ("local-time" ,sbcl-local-time)
6744 ("periods-series" ,sbcl-periods-series)))
6745 (arguments
6746 '(#:phases
6747 (modify-phases %standard-phases
6748 (add-after 'unpack 'fix-system-definition
6749 (lambda _
6750 (substitute* "cl-ledger.asd"
6751 ((" :build-operation program-op") "")
6752 ((" :build-pathname \"cl-ledger\"") "")
6753 ((" :entry-point \"ledger::main\"") ""))
6754 #t)))))
6755 (synopsis "Common Lisp port of the Ledger accounting system")
6756 (description
6757 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
6758 system.")
6759 (home-page "https://github.com/ledger/cl-ledger")
6760 (license license:bsd-3))))
6761
6762 (define-public cl-ledger
6763 (sbcl-package->cl-source-package sbcl-cl-ledger))
6764
6765 (define-public ecl-cl-ledger
6766 (sbcl-package->ecl-package sbcl-cl-ledger))
6767
6768 (define-public sbcl-bst
6769 (let ((commit "34f9c7e8e0a9f2c952fe310ab36cb630d5d9c15a")
6770 (revision "1"))
6771 (package
6772 (name "sbcl-bst")
6773 (version (git-version "1.1" revision commit))
6774 (source
6775 (origin
6776 (method git-fetch)
6777 (uri (git-reference
6778 (url "https://github.com/glv2/bst.git")
6779 (commit commit)))
6780 (file-name (git-file-name name version))
6781 (sha256
6782 (base32
6783 "1amxns7hvvh4arwbh8ciwfzplg127vh37dnbamv1m1kmmnmihfc8"))))
6784 (build-system asdf-build-system/sbcl)
6785 (native-inputs
6786 `(("alexandria" ,sbcl-alexandria)
6787 ("fiveam" ,sbcl-fiveam)))
6788 (synopsis "Binary search tree for Common Lisp")
6789 (description
6790 "BST is a Common Lisp library for working with binary search trees that
6791 can contain any kind of values.")
6792 (home-page "https://github.com/glv2/bst")
6793 (license license:gpl3))))
6794
6795 (define-public cl-bst
6796 (sbcl-package->cl-source-package sbcl-bst))
6797
6798 (define-public ecl-bst
6799 (sbcl-package->ecl-package sbcl-bst))
6800
6801 (define-public sbcl-cl-octet-streams
6802 (package
6803 (name "sbcl-cl-octet-streams")
6804 (version "1.0")
6805 (source
6806 (origin
6807 (method git-fetch)
6808 (uri (git-reference
6809 (url "https://github.com/glv2/cl-octet-streams.git")
6810 (commit (string-append "v" version))))
6811 (file-name (git-file-name name version))
6812 (sha256
6813 (base32
6814 "1d7mn6ydv0j2x4r7clpc9ijjwrnfpxmvhifv8n5j7jh7s744sf8d"))))
6815 (build-system asdf-build-system/sbcl)
6816 (native-inputs
6817 `(("fiveam" ,sbcl-fiveam)))
6818 (inputs
6819 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
6820 (synopsis "In-memory octet streams for Common Lisp")
6821 (description
6822 "CL-octet-streams is a library implementing in-memory octet
6823 streams for Common Lisp. It was inspired by the trivial-octet-streams and
6824 cl-plumbing libraries.")
6825 (home-page "https://github.com/glv2/cl-octet-streams")
6826 (license license:gpl3+)))
6827
6828 (define-public cl-octet-streams
6829 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
6830
6831 (define-public ecl-cl-octet-streams
6832 (sbcl-package->ecl-package sbcl-cl-octet-streams))
6833
6834 (define-public sbcl-lzlib
6835 (let ((commit "0de1db7129fef9a58a059d35a2fa2ecfc5b47b47")
6836 (revision "1"))
6837 (package
6838 (name "sbcl-lzlib")
6839 (version (git-version "1.0" revision commit))
6840 (source
6841 (origin
6842 (method git-fetch)
6843 (uri (git-reference
6844 (url "https://github.com/glv2/cl-lzlib.git")
6845 (commit commit)))
6846 (file-name (git-file-name name version))
6847 (sha256
6848 (base32
6849 "12ny7vj52fgnd8hb8fc8mry92vq4c1x72x2350191m4476j95clz"))))
6850 (build-system asdf-build-system/sbcl)
6851 (native-inputs
6852 `(("fiveam" ,sbcl-fiveam)))
6853 (inputs
6854 `(("cffi" ,sbcl-cffi)
6855 ("cl-octet-streams" ,sbcl-cl-octet-streams)
6856 ("lzlib" ,lzlib)))
6857 (arguments
6858 '(#:phases
6859 (modify-phases %standard-phases
6860 (add-after 'unpack 'fix-paths
6861 (lambda* (#:key inputs #:allow-other-keys)
6862 (substitute* "src/lzlib.lisp"
6863 (("liblz\\.so")
6864 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
6865 #t)))))
6866 (synopsis "Common Lisp library for lzip (de)compression")
6867 (description
6868 "This Common Lisp library provides functions for lzip (LZMA)
6869 compression/decompression using bindings to the lzlib C library.")
6870 (home-page "https://github.com/glv2/cl-lzlib")
6871 (license license:gpl3+))))
6872
6873 (define-public cl-lzlib
6874 (sbcl-package->cl-source-package sbcl-lzlib))
6875
6876 (define-public ecl-lzlib
6877 (sbcl-package->ecl-package sbcl-lzlib))
6878
6879 (define-public sbcl-chanl
6880 (let ((commit "2362b57550c2c9238cc882d03553aaa1040b7340")
6881 (revision "0"))
6882 (package
6883 (name "sbcl-chanl")
6884 (version (git-version "0.4.1" revision commit))
6885 (source
6886 (origin
6887 (method git-fetch)
6888 (uri (git-reference
6889 (url "https://github.com/zkat/chanl.git")
6890 (commit commit)))
6891 (file-name (git-file-name name version))
6892 (sha256
6893 (base32
6894 "0ag3wz7yrqwp0s5069wwda98z3rrqd25spg8sa8rdqghj084w28w"))))
6895 (build-system asdf-build-system/sbcl)
6896 (native-inputs
6897 `(("fiveam" ,sbcl-fiveam)))
6898 (inputs
6899 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
6900 (synopsis "Portable channel-based concurrency for Common Lisp")
6901 (description "Common Lisp library for channel-based concurrency. In
6902 a nutshell, you create various threads sequentially executing tasks you need
6903 done, and use channel objects to communicate and synchronize the state of these
6904 threads.")
6905 (home-page "https://github.com/zkat/chanl")
6906 (license (list license:expat license:bsd-3)))))
6907
6908 (define-public cl-chanl
6909 (sbcl-package->cl-source-package sbcl-chanl))
6910
6911 (define-public ecl-chanl
6912 (let ((base (sbcl-package->ecl-package sbcl-chanl)))
6913 (package
6914 (inherit base)
6915 (arguments
6916 (substitute-keyword-arguments (package-arguments base)
6917 ;; The CHANL.ACTORS package uses the :ARGUMENTS option of
6918 ;; DEFINE-METHOD-COMBINATION, which is not implemented in ECL yet
6919 ;; (see https://gitlab.com/embeddable-common-lisp/ecl/issues/305).
6920 ;; So let's disable it for now, as it allows compiling the library
6921 ;; and using the rest of it.
6922 ((#:phases phases '%standard-phases)
6923 `(modify-phases ,phases
6924 (add-after 'unpack 'disable-chanl-actors
6925 (lambda _
6926 (substitute* "chanl.asd"
6927 (("\\(:file \"actors\"\\)") ""))
6928 #t))))
6929 ;; Disable the tests for now, as the SEND-SEQUENCE test seems to
6930 ;; never end.
6931 ((#:tests? _ #f) #f))))))
6932
6933 (define-public sbcl-cl-store
6934 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
6935 (revision "1"))
6936 (package
6937 (name "sbcl-cl-store")
6938 (version (git-version "0.8.11" revision commit))
6939 (source
6940 (origin
6941 (method git-fetch)
6942 (uri (git-reference
6943 (url "https://github.com/skypher/cl-store.git")
6944 (commit commit)))
6945 (file-name (git-file-name name version))
6946 (sha256
6947 (base32
6948 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
6949 (build-system asdf-build-system/sbcl)
6950 (native-inputs
6951 `(("rt" ,sbcl-rt)))
6952 (synopsis "Common Lisp library to serialize data")
6953 (description
6954 "CL-STORE is a portable serialization package which should give you the
6955 ability to store all Common Lisp data types into streams.")
6956 (home-page "https://www.common-lisp.net/project/cl-store/")
6957 (license license:expat))))
6958
6959 (define-public cl-store
6960 (sbcl-package->cl-source-package sbcl-cl-store))
6961
6962 (define-public ecl-cl-store
6963 (sbcl-package->ecl-package sbcl-cl-store))
6964
6965 (define-public sbcl-cl-gobject-introspection
6966 (let ((commit "7b703e2384945ea0ac39d9b766de434a08d81560")
6967 (revision "0"))
6968 (package
6969 (name "sbcl-cl-gobject-introspection")
6970 (version (git-version "0.3" revision commit))
6971 (home-page "https://github.com/andy128k/cl-gobject-introspection")
6972 (source
6973 (origin
6974 (method git-fetch)
6975 (uri (git-reference
6976 (url home-page)
6977 (commit commit)))
6978 (file-name (git-file-name name version))
6979 (sha256
6980 (base32
6981 "1zcqd2qj14f6b38vys8gr89s6cijsp9r8j43xa8lynilwva7bwyh"))))
6982 (build-system asdf-build-system/sbcl)
6983 (inputs
6984 `(("alexandria" ,sbcl-alexandria)
6985 ("cffi" ,sbcl-cffi)
6986 ("iterate" ,sbcl-iterate)
6987 ("trivial-garbage" ,sbcl-trivial-garbage)
6988 ("glib" ,glib)
6989 ("gobject-introspection" ,gobject-introspection)))
6990 (native-inputs
6991 `(("fiveam" ,sbcl-fiveam)))
6992 (arguments
6993 ;; TODO: Tests fail, see
6994 ;; https://github.com/andy128k/cl-gobject-introspection/issues/70.
6995 '(#:tests? #f
6996 #:phases
6997 (modify-phases %standard-phases
6998 (add-after (quote unpack) (quote fix-paths)
6999 (lambda* (#:key inputs #:allow-other-keys)
7000 (substitute* "src/init.lisp"
7001 (("libgobject-2\\.0\\.so")
7002 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
7003 (("libgirepository-1\\.0\\.so")
7004 (string-append (assoc-ref inputs "gobject-introspection")
7005 "/lib/libgirepository-1.0.so")))
7006 #t)))))
7007 (synopsis "Common Lisp bindings to GObject Introspection")
7008 (description
7009 "This library is a bridge between Common Lisp and GObject
7010 Introspection, which enables Common Lisp programs to access the full interface
7011 of C+GObject libraries without the need of writing dedicated bindings.")
7012 (license (list license:bsd-3
7013 ;; Tests are under a different license.
7014 license:llgpl)))))
7015
7016 (define-public cl-gobject-introspection
7017 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
7018
7019 (define-public sbcl-string-case
7020 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
7021 (revision "0"))
7022 (package
7023 (name "sbcl-string-case")
7024 (version (git-version "0.0.2" revision commit))
7025 (home-page "https://github.com/pkhuong/string-case")
7026 (source
7027 (origin
7028 (method git-fetch)
7029 (uri (git-reference
7030 (url home-page)
7031 (commit commit)))
7032 (file-name (git-file-name name version))
7033 (sha256
7034 (base32
7035 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
7036 (build-system asdf-build-system/sbcl)
7037 (synopsis "Efficient string= case in Common Lisp")
7038 (description
7039 "@code{string-case} is a Common Lisp macro that generates specialised decision
7040 trees to dispatch on string equality.")
7041 (license license:bsd-3))))
7042
7043 (define-public cl-string-case
7044 (sbcl-package->cl-source-package sbcl-string-case))
7045
7046 (define-public ecl-string-case
7047 (sbcl-package->ecl-package sbcl-string-case))
7048
7049 (define-public sbcl-global-vars
7050 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7051 (revision "0"))
7052 (package
7053 (name "sbcl-global-vars")
7054 (version (git-version "1.0.0" revision commit))
7055 (home-page "https://github.com/lmj/global-vars")
7056 (source
7057 (origin
7058 (method git-fetch)
7059 (uri (git-reference
7060 (url home-page)
7061 (commit commit)))
7062 (file-name (git-file-name name version))
7063 (sha256
7064 (base32
7065 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7066 (build-system asdf-build-system/sbcl)
7067 (synopsis "Efficient global variables in Common Lisp")
7068 (description
7069 "In Common Lisp, a special variable that is never dynamically bound
7070 typically serves as a stand-in for a global variable. The @code{global-vars}
7071 library provides true global variables that are implemented by some compilers.
7072 An attempt to rebind a global variable properly results in a compiler error.
7073 That is, a global variable cannot be dynamically bound.
7074
7075 Global variables therefore allow us to communicate an intended usage that
7076 differs from special variables. Global variables are also more efficient than
7077 special variables, especially in the presence of threads.")
7078 (license license:expat))))
7079
7080 (define-public cl-global-vars
7081 (sbcl-package->cl-source-package sbcl-global-vars))
7082
7083 (define-public ecl-global-vars
7084 (sbcl-package->ecl-package sbcl-global-vars))
7085
7086 (define-public sbcl-trivial-file-size
7087 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7088 (revision "0"))
7089 (package
7090 (name "sbcl-trivial-file-size")
7091 (version (git-version "0.0.0" revision commit))
7092 (home-page "https://github.com/ruricolist/trivial-file-size")
7093 (source
7094 (origin
7095 (method git-fetch)
7096 (uri (git-reference
7097 (url home-page)
7098 (commit commit)))
7099 (file-name (git-file-name name version))
7100 (sha256
7101 (base32
7102 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7103 (build-system asdf-build-system/sbcl)
7104 (native-inputs
7105 `(("fiveam" ,sbcl-fiveam)))
7106 (synopsis "Size of a file in bytes in Common Lisp")
7107 (description
7108 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7109 is to open the file with an element type of (unsigned-byte 8) and then
7110 calculate the length of the stream. This is less than ideal. In most cases
7111 it is better to get the size of the file from its metadata, using a system
7112 call.
7113
7114 This library exports a single function, file-size-in-octets. It returns the
7115 size of a file in bytes, using system calls when possible.")
7116 (license license:expat))))
7117
7118 (define-public cl-trivial-file-size
7119 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7120
7121 (define-public ecl-trivial-file-size
7122 (sbcl-package->ecl-package sbcl-trivial-file-size))
7123
7124 (define-public sbcl-trivial-macroexpand-all
7125 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7126 (revision "0"))
7127 (package
7128 (name "sbcl-trivial-macroexpand-all")
7129 (version (git-version "0.0.0" revision commit))
7130 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7131 (source
7132 (origin
7133 (method git-fetch)
7134 (uri (git-reference
7135 (url home-page)
7136 (commit commit)))
7137 (file-name (git-file-name name version))
7138 (sha256
7139 (base32
7140 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7141 (build-system asdf-build-system/sbcl)
7142 (native-inputs
7143 `(("fiveam" ,sbcl-fiveam)))
7144 (synopsis "Portable macroexpand-all for Common Lisp")
7145 (description
7146 "This library provides a macroexpand-all function that calls the
7147 implementation specific equivalent.")
7148 (license license:unlicense))))
7149
7150 (define-public cl-trivial-macroexpand-all
7151 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7152
7153 (define-public ecl-trivial-macroexpand-all
7154 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7155
7156 (define-public sbcl-serapeum
7157 (let ((commit "65837f8a0d65b36369ec8d000fff5c29a395b5fe")
7158 (revision "0"))
7159 (package
7160 (name "sbcl-serapeum")
7161 (version (git-version "0.0.0" revision commit))
7162 (home-page "https://github.com/ruricolist/serapeum")
7163 (source
7164 (origin
7165 (method git-fetch)
7166 (uri (git-reference
7167 (url home-page)
7168 (commit commit)))
7169 (file-name (git-file-name name version))
7170 (sha256
7171 (base32
7172 "0clwf81r2lvk1rbfvk91s9zmbkas9imf57ilqclw12mxaxlfsnbw"))))
7173 (build-system asdf-build-system/sbcl)
7174 (inputs
7175 `(("alexandria" ,sbcl-alexandria)
7176 ("trivia" ,sbcl-trivia)
7177 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
7178 ("split-sequence" ,sbcl-split-sequence)
7179 ("string-case" ,sbcl-string-case)
7180 ("parse-number" ,sbcl-parse-number)
7181 ("trivial-garbage" ,sbcl-trivial-garbage)
7182 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7183 ("named-readtables" ,sbcl-named-readtables)
7184 ("fare-quasiquote-extras" ,cl-fare-quasiquote-extras)
7185 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7186 ("global-vars" ,sbcl-global-vars)
7187 ("trivial-file-size" ,sbcl-trivial-file-size)
7188 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7189 (native-inputs
7190 `(("fiveam" ,sbcl-fiveam)
7191 ("local-time" ,sbcl-local-time)))
7192 (arguments
7193 '(#:phases
7194 (modify-phases %standard-phases
7195 (add-after 'unpack 'disable-failing-tests
7196 (lambda* (#:key inputs #:allow-other-keys)
7197 (substitute* "serapeum.asd"
7198 ;; Guix does not have Quicklisp, and probably never will.
7199 (("\\(:file \"quicklisp\"\\)") ""))
7200 #t)))))
7201 (synopsis "Common Lisp utility library beyond Alexandria")
7202 (description
7203 "Serapeum is a conservative library of Common Lisp utilities. It is a
7204 supplement, not a competitor, to Alexandria.")
7205 (license license:expat))))
7206
7207 (define-public cl-serapeum
7208 (sbcl-package->cl-source-package sbcl-serapeum))
7209
7210 (define-public sbcl-arrows
7211 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7212 (revision "0"))
7213 (package
7214 (name "sbcl-arrows")
7215 (version (git-version "0.2.0" revision commit))
7216 (source
7217 (origin
7218 (method git-fetch)
7219 (uri (git-reference
7220 (url "https://gitlab.com/Harleqin/arrows.git")
7221 (commit commit)))
7222 (file-name (git-file-name name version))
7223 (sha256
7224 (base32
7225 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7226 (build-system asdf-build-system/sbcl)
7227 (native-inputs
7228 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7229 (synopsis "Clojure-like arrow macros for Common Lisp")
7230 (description
7231 "This library implements the @code{->} and @code{->>} macros from
7232 Clojure, as well as several expansions on the idea.")
7233 (home-page "https://gitlab.com/Harleqin/arrows")
7234 (license license:public-domain))))
7235
7236 (define-public cl-arrows
7237 (sbcl-package->cl-source-package sbcl-arrows))
7238
7239 (define-public ecl-arrows
7240 (sbcl-package->ecl-package sbcl-arrows))
7241
7242 (define-public sbcl-simple-parallel-tasks
7243 (let ((commit "db460f7a3f7bbfe2d3a2223ed21e162068d04dda")
7244 (revision "0"))
7245 (package
7246 (name "sbcl-simple-parallel-tasks")
7247 (version (git-version "1.0" revision commit))
7248 (source
7249 (origin
7250 (method git-fetch)
7251 (uri (git-reference
7252 (url "https://github.com/glv2/simple-parallel-tasks.git")
7253 (commit commit)))
7254 (file-name (git-file-name name version))
7255 (sha256
7256 (base32
7257 "0amw3qk23wnlyrsgzszs6rs7y4zvxv8dr03rnqhc60mnm8ds4dd5"))))
7258 (build-system asdf-build-system/sbcl)
7259 (native-inputs
7260 `(("fiveam" ,sbcl-fiveam)))
7261 (inputs
7262 `(("chanl" ,sbcl-chanl)))
7263 (synopsis "Common Lisp library to evaluate some forms in parallel")
7264 (description "This is a simple Common Lisp library to evaluate some
7265 forms in parallel.")
7266 (home-page "https://github.com/glv2/simple-parallel-tasks")
7267 (license license:gpl3))))
7268
7269 (define-public cl-simple-parallel-tasks
7270 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7271
7272 (define-public ecl-simple-parallel-tasks
7273 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7274
7275 (define-public sbcl-cl-heap
7276 (package
7277 (name "sbcl-cl-heap")
7278 (version "0.1.6")
7279 (source
7280 (origin
7281 (method url-fetch)
7282 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7283 "cl-heap_" version ".tar.gz"))
7284 (sha256
7285 (base32
7286 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7287 (build-system asdf-build-system/sbcl)
7288 (native-inputs
7289 `(("xlunit" ,sbcl-xlunit)))
7290 (arguments
7291 `(#:test-asd-file "cl-heap-tests.asd"))
7292 (synopsis "Heap and priority queue data structures for Common Lisp")
7293 (description
7294 "CL-HEAP provides various implementations of heap data structures (a
7295 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7296 (home-page "https://common-lisp.net/project/cl-heap/")
7297 (license license:gpl3+)))
7298
7299 (define-public cl-heap
7300 (sbcl-package->cl-source-package sbcl-cl-heap))
7301
7302 (define-public ecl-cl-heap
7303 (sbcl-package->ecl-package sbcl-cl-heap))
7304
7305 (define-public sbcl-curry-compose-reader-macros
7306 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7307 (revision "0"))
7308 (package
7309 (name "sbcl-curry-compose-reader-macros")
7310 (version (git-version "1.0.0" revision commit))
7311 (source
7312 (origin
7313 (method git-fetch)
7314 (uri
7315 (git-reference
7316 (url "https://github.com/eschulte/curry-compose-reader-macros.git")
7317 (commit commit)))
7318 (file-name (git-file-name name version))
7319 (sha256
7320 (base32
7321 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7322 (build-system asdf-build-system/sbcl)
7323 (inputs
7324 `(("alexandria" ,sbcl-alexandria)
7325 ("named-readtables" ,sbcl-named-readtables)))
7326 (synopsis "Reader macros for partial application and composition")
7327 (description
7328 "This Common Lisp library provides reader macros for concise expression
7329 of function partial application and composition.")
7330 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7331 (license license:public-domain))))
7332
7333 (define-public cl-curry-compose-reader-macros
7334 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7335
7336 (define-public ecl-curry-compose-reader-macros
7337 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7338
7339 (define-public sbcl-yason
7340 (package
7341 (name "sbcl-yason")
7342 (version "0.7.7")
7343 (source
7344 (origin
7345 (method git-fetch)
7346 (uri (git-reference
7347 (url "https://github.com/phmarek/yason.git")
7348 (commit (string-append "v" version))))
7349 (file-name (git-file-name name version))
7350 (sha256
7351 (base32
7352 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7353 (build-system asdf-build-system/sbcl)
7354 (inputs
7355 `(("alexandria" ,sbcl-alexandria)
7356 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7357 (synopsis "Common Lisp JSON parser/encoder")
7358 (description
7359 "YASON is a Common Lisp library for encoding and decoding data in the
7360 JSON interchange format.")
7361 (home-page "https://github.com/phmarek/yason")
7362 (license license:bsd-3)))
7363
7364 (define-public cl-yason
7365 (sbcl-package->cl-source-package sbcl-yason))
7366
7367 (define-public ecl-yason
7368 (sbcl-package->ecl-package sbcl-yason))
7369
7370 (define-public sbcl-stefil
7371 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7372 (revision "0"))
7373 (package
7374 (name "sbcl-stefil")
7375 (version (git-version "0.1" revision commit))
7376 (source
7377 (origin
7378 (method git-fetch)
7379 (uri (git-reference
7380 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7381 (commit commit)))
7382 (file-name (git-file-name name version))
7383 (sha256
7384 (base32
7385 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7386 (build-system asdf-build-system/sbcl)
7387 (inputs
7388 `(("alexandria" ,sbcl-alexandria)
7389 ("iterate" ,sbcl-iterate)
7390 ("metabang-bind" ,sbcl-metabang-bind)))
7391 (propagated-inputs
7392 ;; Swank doesn't have a pre-compiled package, therefore we must
7393 ;; propagate its sources.
7394 `(("swank" ,cl-slime-swank)))
7395 (arguments
7396 '(#:phases
7397 (modify-phases %standard-phases
7398 (add-after 'unpack 'drop-unnecessary-dependency
7399 (lambda _
7400 (substitute* "package.lisp"
7401 ((":stefil-system") ""))
7402 #t)))))
7403 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7404 (synopsis "Simple test framework")
7405 (description
7406 "Stefil is a simple test framework for Common Lisp, with a focus on
7407 interactive development.")
7408 (license license:public-domain))))
7409
7410 (define-public cl-stefil
7411 (sbcl-package->cl-source-package sbcl-stefil))
7412
7413 (define-public sbcl-graph
7414 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7415 (revision "0"))
7416 (package
7417 (name "sbcl-graph")
7418 (version (git-version "0.0.0" revision commit))
7419 (source
7420 (origin
7421 (method git-fetch)
7422 (uri
7423 (git-reference
7424 (url "https://github.com/eschulte/graph.git")
7425 (commit commit)))
7426 (file-name (git-file-name name version))
7427 (sha256
7428 (base32
7429 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))
7430 (patches (search-patches "sbcl-graph-asdf-definitions.patch"))))
7431 (build-system asdf-build-system/sbcl)
7432 (native-inputs
7433 `(("stefil" ,sbcl-stefil)))
7434 (inputs
7435 `(("alexandria" ,sbcl-alexandria)
7436 ("cl-heap" ,sbcl-cl-heap)
7437 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7438 ("metabang-bind" ,sbcl-metabang-bind)
7439 ("named-readtables" ,sbcl-named-readtables)))
7440 (arguments
7441 '(#:test-asd-file "graph-test.asd"))
7442 (synopsis "Graph data structure and algorithms for Common Lisp")
7443 (description
7444 "The GRAPH Common Lisp library provides a data structures to represent
7445 graphs, as well as some graph manipulation and analysis algorithms (shortest
7446 path, maximum flow, minimum spanning tree, etc.).")
7447 (home-page "https://eschulte.github.io/graph/")
7448 (license license:gpl3+))))
7449
7450 (define-public cl-graph
7451 (sbcl-package->cl-source-package sbcl-graph))
7452
7453 (define-public sbcl-graph-dot
7454 (package
7455 (inherit sbcl-graph)
7456 (name "sbcl-graph-dot")
7457 (inputs
7458 `(("alexandria" ,sbcl-alexandria)
7459 ("cl-ppcre" ,sbcl-cl-ppcre)
7460 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7461 ("graph" ,sbcl-graph)
7462 ("metabang-bind" ,sbcl-metabang-bind)
7463 ("named-readtables" ,sbcl-named-readtables)))
7464 (arguments
7465 (substitute-keyword-arguments (package-arguments sbcl-graph)
7466 ((#:asd-file _ "") "graph-dot.asd")
7467 ((#:asd-system-name _ #f) "graph-dot")))
7468 (synopsis "Serialize graphs to and from DOT format")))
7469
7470 (define-public sbcl-graph-json
7471 (package
7472 (inherit sbcl-graph)
7473 (name "sbcl-graph-json")
7474 (inputs
7475 `(("alexandria" ,sbcl-alexandria)
7476 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7477 ("graph" ,sbcl-graph)
7478 ("metabang-bind" ,sbcl-metabang-bind)
7479 ("named-readtables" ,sbcl-named-readtables)
7480 ("yason" ,sbcl-yason)))
7481 (arguments
7482 (substitute-keyword-arguments (package-arguments sbcl-graph)
7483 ((#:asd-file _ "") "graph-json.asd")
7484 ((#:asd-system-name _ #f) "graph-json")))
7485 (synopsis "Serialize graphs to and from JSON format")))
7486
7487 (define-public sbcl-trivial-indent
7488 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7489 (revision "0"))
7490 (package
7491 (name "sbcl-trivial-indent")
7492 (version (git-version "1.0.0" revision commit))
7493 (source
7494 (origin
7495 (method git-fetch)
7496 (uri
7497 (git-reference
7498 (url "https://github.com/Shinmera/trivial-indent")
7499 (commit commit)))
7500 (file-name (git-file-name name version))
7501 (sha256
7502 (base32
7503 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7504 (build-system asdf-build-system/sbcl)
7505 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7506 (description
7507 "This library allows you to define custom indentation hints for your
7508 macros if the one recognised by SLIME automatically produces unwanted
7509 results.")
7510 (home-page "https://shinmera.github.io/trivial-indent/")
7511 (license license:zlib))))
7512
7513 (define-public cl-trivial-indent
7514 (sbcl-package->cl-source-package sbcl-trivial-indent))
7515
7516 (define-public sbcl-documentation-utils
7517 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7518 (revision "0"))
7519 (package
7520 (name "sbcl-documentation-utils")
7521 (version (git-version "1.2.0" revision commit))
7522 (source
7523 (origin
7524 (method git-fetch)
7525 (uri
7526 (git-reference
7527 (url "https://github.com/Shinmera/documentation-utils.git")
7528 (commit commit)))
7529 (file-name (git-file-name name version))
7530 (sha256
7531 (base32
7532 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7533 (build-system asdf-build-system/sbcl)
7534 (inputs
7535 `(("trivial-indent" ,sbcl-trivial-indent)))
7536 (synopsis "Few simple tools to document Common Lisp libraries")
7537 (description
7538 "This is a small library to help you with managing the Common Lisp
7539 docstrings for your library.")
7540 (home-page "https://shinmera.github.io/documentation-utils/")
7541 (license license:zlib))))
7542
7543 (define-public cl-documentation-utils
7544 (sbcl-package->cl-source-package sbcl-documentation-utils))
7545
7546 (define-public sbcl-form-fiddle
7547 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7548 (revision "0"))
7549 (package
7550 (name "sbcl-form-fiddle")
7551 (version (git-version "1.1.0" revision commit))
7552 (source
7553 (origin
7554 (method git-fetch)
7555 (uri
7556 (git-reference
7557 (url "https://github.com/Shinmera/form-fiddle")
7558 (commit commit)))
7559 (file-name (git-file-name name version))
7560 (sha256
7561 (base32
7562 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7563 (build-system asdf-build-system/sbcl)
7564 (inputs
7565 `(("documentation-utils" ,sbcl-documentation-utils)))
7566 (synopsis "Utilities to destructure Common Lisp lambda forms")
7567 (description
7568 "Often times we need to destructure a form definition in a Common Lisp
7569 macro. This library provides a set of simple utilities to help with that.")
7570 (home-page "https://shinmera.github.io/form-fiddle/")
7571 (license license:zlib))))
7572
7573 (define-public cl-form-fiddle
7574 (sbcl-package->cl-source-package sbcl-form-fiddle))
7575
7576 (define-public sbcl-parachute
7577 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7578 (revision "0"))
7579 (package
7580 (name "sbcl-parachute")
7581 (version (git-version "1.1.1" revision commit))
7582 (source
7583 (origin
7584 (method git-fetch)
7585 (uri
7586 (git-reference
7587 (url "https://github.com/Shinmera/parachute")
7588 (commit commit)))
7589 (file-name (git-file-name name version))
7590 (sha256
7591 (base32
7592 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7593 (build-system asdf-build-system/sbcl)
7594 (inputs
7595 `(("documentation-utils" ,sbcl-documentation-utils)
7596 ("form-fiddle" ,sbcl-form-fiddle)))
7597 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7598 (description
7599 "Parachute is a simple-to-use and extensible testing framework.
7600 In Parachute, things are organised as a bunch of named tests within a package.
7601 Each test can contain a bunch of test forms that make up its body.")
7602 (home-page "https://shinmera.github.io/parachute/")
7603 (license license:zlib))))
7604
7605 (define-public cl-parachute
7606 (sbcl-package->cl-source-package sbcl-parachute))
7607
7608 (define-public sbcl-array-utils
7609 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7610 (revision "0"))
7611 (package
7612 (name "sbcl-array-utils")
7613 (version (git-version "1.1.1" revision commit))
7614 (source
7615 (origin
7616 (method git-fetch)
7617 (uri
7618 (git-reference
7619 (url "https://github.com/Shinmera/array-utils")
7620 (commit commit)))
7621 (file-name (git-file-name name version))
7622 (sha256
7623 (base32
7624 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
7625 (build-system asdf-build-system/sbcl)
7626 (native-inputs
7627 `(("parachute" ,sbcl-parachute)))
7628 (inputs
7629 `(("documentation-utils" ,sbcl-documentation-utils)))
7630 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
7631 (description
7632 "A miniature toolkit that contains some useful shifting/popping/pushing
7633 functions for arrays and vectors. Originally from Plump.")
7634 (home-page "https://shinmera.github.io/array-utils/")
7635 (license license:zlib))))
7636
7637 (define-public cl-array-utils
7638 (sbcl-package->cl-source-package sbcl-array-utils))
7639
7640 (define-public sbcl-plump
7641 (let ((commit "16f1231bf706cfbc54d9e55a853ca945e4452a08")
7642 (revision "0"))
7643 (package
7644 (name "sbcl-plump")
7645 (version (git-version "2.0.0" revision commit))
7646 (source
7647 (origin
7648 (method git-fetch)
7649 (uri
7650 (git-reference
7651 (url "https://github.com/Shinmera/plump")
7652 (commit commit)))
7653 (file-name (git-file-name name version))
7654 (sha256
7655 (base32
7656 "0705k8pbip51v74rccgwscwph439f2pma9f915qf1h4bhjx999ip"))))
7657 (build-system asdf-build-system/sbcl)
7658 (inputs
7659 `(("array-utils" ,sbcl-array-utils)
7660 ("documentation-utils" ,sbcl-documentation-utils)))
7661 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
7662 (description
7663 "Plump is a parser for HTML/XML-like documents, focusing on being
7664 lenient towards invalid markup. It can handle things like invalid attributes,
7665 bad closing tag order, unencoded entities, inexistent tag types, self-closing
7666 tags and so on. It parses documents to a class representation and offers a
7667 small set of DOM functions to manipulate it. It can be extended to parse to
7668 your own classes.")
7669 (home-page "https://shinmera.github.io/plump/")
7670 (license license:zlib))))
7671
7672 (define-public cl-plump
7673 (sbcl-package->cl-source-package sbcl-plump))
7674
7675 (define-public sbcl-antik-base
7676 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
7677 (revision "1"))
7678 (package
7679 (name "sbcl-antik-base")
7680 (version (git-version "0.0.0" revision commit))
7681 (source
7682 (origin
7683 (method git-fetch)
7684 (uri (git-reference
7685 (url "https://gitlab.common-lisp.net/antik/antik.git")
7686 (commit commit)))
7687 (file-name (git-file-name name version))
7688 (sha256
7689 (base32
7690 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
7691 (build-system asdf-build-system/sbcl)
7692 (inputs
7693 `(("alexandria" ,sbcl-alexandria)
7694 ("cl-ppcre" ,sbcl-cl-ppcre)
7695 ("iterate" ,sbcl-iterate)
7696 ("metabang-bind" ,sbcl-metabang-bind)
7697 ("named-readtables" ,sbcl-named-readtables)
7698 ("split-sequence" ,sbcl-split-sequence)))
7699 (native-inputs
7700 `(("lisp-unit" ,sbcl-lisp-unit)))
7701 (synopsis "Scientific and engineering computation in Common Lisp")
7702 (description
7703 "Antik provides a foundation for scientific and engineering
7704 computation in Common Lisp. It is designed not only to facilitate
7705 numerical computations, but to permit the use of numerical computation
7706 libraries and the interchange of data and procedures, whether
7707 foreign (non-Lisp) or Lisp libraries. It is named after the
7708 Antikythera mechanism, one of the oldest examples of a scientific
7709 computer known.")
7710 (home-page "https://common-lisp.net/project/antik/")
7711 (license license:gpl3))))
7712
7713 (define-public cl-antik-base
7714 (sbcl-package->cl-source-package sbcl-antik-base))
7715
7716 (define-public ecl-antik-base
7717 (sbcl-package->ecl-package sbcl-antik-base))
7718
7719 (define-public sbcl-foreign-array
7720 (package
7721 (inherit sbcl-antik-base)
7722 (name "sbcl-foreign-array")
7723 (arguments
7724 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7725 ((#:asd-file _ "") "foreign-array.asd")
7726 ((#:asd-system-name _ #f) "foreign-array")))
7727 (inputs
7728 `(("antik-base" ,sbcl-antik-base)
7729 ("cffi" ,sbcl-cffi)
7730 ("trivial-garbage" ,sbcl-trivial-garbage)
7731 ("static-vectors" ,sbcl-static-vectors)))
7732 (synopsis "Common Lisp library providing access to foreign arrays")))
7733
7734 (define-public cl-foreign-array
7735 (sbcl-package->cl-source-package sbcl-foreign-array))
7736
7737 (define-public ecl-foreign-array
7738 (sbcl-package->ecl-package sbcl-foreign-array))
7739
7740 (define-public sbcl-physical-dimension
7741 (package
7742 (inherit sbcl-antik-base)
7743 (name "sbcl-physical-dimension")
7744 (inputs
7745 `(("fare-utils" ,sbcl-fare-utils)
7746 ("foreign-array" ,sbcl-foreign-array)
7747 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
7748 (arguments
7749 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7750 ((#:asd-file _ "") "physical-dimension.asd")
7751 ((#:asd-system-name _ #f) "physical-dimension")))
7752 (synopsis
7753 "Common Lisp library providing computations with physical units")))
7754
7755 (define-public cl-physical-dimension
7756 (sbcl-package->cl-source-package sbcl-physical-dimension))
7757
7758 (define-public sbcl-science-data
7759 (package
7760 (inherit sbcl-antik-base)
7761 (name "sbcl-science-data")
7762 (inputs
7763 `(("physical-dimension" ,sbcl-physical-dimension)
7764 ("drakma" ,sbcl-drakma)))
7765 (arguments
7766 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7767 ((#:asd-file _ "") "science-data.asd")
7768 ((#:asd-system-name _ #f) "science-data")))
7769 (synopsis
7770 "Common Lisp library for scientific and engineering numerical data")))
7771
7772 (define-public cl-science-data
7773 (sbcl-package->cl-source-package sbcl-science-data))
7774
7775 (define-public sbcl-gsll
7776 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
7777 (revision "1"))
7778 (package
7779 (name "sbcl-gsll")
7780 (version (git-version "0.0.0" revision commit))
7781 (source
7782 (origin
7783 (method git-fetch)
7784 (uri (git-reference
7785 (url "https://gitlab.common-lisp.net/antik/gsll.git")
7786 (commit commit)))
7787 (file-name (git-file-name name version))
7788 (sha256
7789 (base32
7790 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
7791 (build-system asdf-build-system/sbcl)
7792 (native-inputs
7793 `(("lisp-unit" ,sbcl-lisp-unit)))
7794 (inputs
7795 `(("alexandria" ,sbcl-alexandria)
7796 ("cffi-grovel" ,sbcl-cffi-grovel)
7797 ("cffi-libffi" ,sbcl-cffi-libffi)
7798 ("foreign-array" ,sbcl-foreign-array)
7799 ("gsl" ,gsl)
7800 ("metabang-bind" ,sbcl-metabang-bind)
7801 ("trivial-features" ,sbcl-trivial-features)
7802 ("trivial-garbage" ,sbcl-trivial-garbage)))
7803 (arguments
7804 `(#:tests? #f
7805 #:phases
7806 (modify-phases %standard-phases
7807 (add-after 'unpack 'fix-cffi-paths
7808 (lambda* (#:key inputs #:allow-other-keys)
7809 (substitute* "gsll.asd"
7810 ((":depends-on \\(#:foreign-array")
7811 ":depends-on (#:foreign-array #:cffi-libffi"))
7812 (substitute* "init/init.lisp"
7813 (("libgslcblas.so" all)
7814 (string-append
7815 (assoc-ref inputs "gsl") "/lib/" all)))
7816 (substitute* "init/init.lisp"
7817 (("libgsl.so" all)
7818 (string-append
7819 (assoc-ref inputs "gsl") "/lib/" all))))))))
7820 (synopsis "GNU Scientific Library for Lisp")
7821 (description
7822 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
7823 GNU Scientific Library (GSL) from Common Lisp. This library provides a
7824 full range of common mathematical operations useful to scientific and
7825 engineering applications. The design of the GSLL interface is such
7826 that access to most of the GSL library is possible in a Lisp-natural
7827 way; the intent is that the user not be hampered by the restrictions
7828 of the C language in which GSL has been written. GSLL thus provides
7829 interactive use of GSL for getting quick answers, even for someone not
7830 intending to program in Lisp.")
7831 (home-page "https://common-lisp.net/project/gsll/")
7832 (license license:gpl3))))
7833
7834 (define-public cl-gsll
7835 (sbcl-package->cl-source-package sbcl-gsll))
7836
7837 (define-public sbcl-antik
7838 (package
7839 (inherit sbcl-antik-base)
7840 (name "sbcl-antik")
7841 (inputs
7842 `(("gsll" ,sbcl-gsll)
7843 ("physical-dimension" ,sbcl-physical-dimension)))
7844 (arguments
7845 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7846 ((#:asd-file _ "") "antik.asd")
7847 ((#:asd-system-name _ #f) "antik")))))
7848
7849 (define-public cl-antik
7850 (sbcl-package->cl-source-package sbcl-antik))
7851
7852 (define-public sbcl-cl-interpol
7853 (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4")
7854 (revision "1"))
7855 (package
7856 (name "sbcl-cl-interpol")
7857 (version (git-version "0.2.6" revision commit))
7858 (source
7859 (origin
7860 (method git-fetch)
7861 (uri (git-reference
7862 (url "https://github.com/edicl/cl-interpol.git")
7863 (commit commit)))
7864 (file-name (git-file-name name version))
7865 (sha256
7866 (base32
7867 "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn"))))
7868 (build-system asdf-build-system/sbcl)
7869 (inputs
7870 `(("cl-unicode" ,sbcl-cl-unicode)
7871 ("named-readtables" ,sbcl-named-readtables)))
7872 (native-inputs
7873 `(("flexi-streams" ,sbcl-flexi-streams)))
7874 (synopsis "String interpolation for Common Lisp")
7875 (description
7876 "CL-INTERPOL is a library for Common Lisp which modifies the
7877 reader so that you can have interpolation within strings similar to
7878 Perl or Unix Shell scripts. It also provides various ways to insert
7879 arbitrary characters into literal strings even if your editor/IDE
7880 doesn't support them.")
7881 (home-page "https://edicl.github.io/cl-interpol/")
7882 (license license:bsd-3))))
7883
7884 (define-public cl-interpol
7885 (sbcl-package->cl-source-package sbcl-cl-interpol))
7886
7887 (define-public ecl-cl-interpol
7888 (sbcl-package->ecl-package sbcl-cl-interpol))
7889
7890 (define sbcl-symbol-munger-boot0
7891 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7892 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7893 (let ((commit "cc2bb4b7acd454d756484aec81ba487648385fc3")
7894 (revision "1"))
7895 (package
7896 (name "sbcl-symbol-munger-boot0")
7897 (version (git-version "0.0.1" revision commit))
7898 (source
7899 (origin
7900 (method git-fetch)
7901 (uri (git-reference
7902 (url "https://github.com/AccelerationNet/symbol-munger.git")
7903 (commit commit)))
7904 (file-name (git-file-name name version))
7905 (sha256
7906 (base32
7907 "0diav5ricqsybqvbp4bkxyj3bn3v9n7xb2pqqc4vg1algsw2pyjl"))))
7908 (build-system asdf-build-system/sbcl)
7909 (arguments
7910 `(#:asd-file "symbol-munger.asd"
7911 #:asd-system-name "symbol-munger"))
7912 (inputs
7913 `(("iterate" ,sbcl-iterate)
7914 ("alexandria" ,sbcl-alexandria)))
7915 (native-inputs
7916 `(("lisp-unit" ,sbcl-lisp-unit)))
7917 (synopsis
7918 "Capitalization and spacing conversion functions for Common Lisp")
7919 (description
7920 "This is a Common Lisp library to change the capitalization and spacing
7921 of a string or a symbol. It can convert to and from Lisp, english, underscore
7922 and camel-case rules.")
7923 (home-page "https://github.com/AccelerationNet/symbol-munger")
7924 ;; The package declares a BSD license, but all of the license
7925 ;; text is MIT.
7926 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
7927 (license license:expat))))
7928
7929 (define sbcl-lisp-unit2-boot0
7930 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7931 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7932 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
7933 (revision "1"))
7934 (package
7935 (name "sbcl-lisp-unit2-boot0")
7936 (version (git-version "0.2.0" revision commit))
7937 (source
7938 (origin
7939 (method git-fetch)
7940 (uri (git-reference
7941 (url "https://github.com/AccelerationNet/lisp-unit2.git")
7942 (commit commit)))
7943 (file-name (git-file-name name version))
7944 (sha256
7945 (base32
7946 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
7947 (build-system asdf-build-system/sbcl)
7948 (arguments
7949 `(#:asd-file "lisp-unit2.asd"
7950 #:asd-system-name "lisp-unit2"))
7951 (inputs
7952 `(("alexandria" ,sbcl-alexandria)
7953 ("cl-interpol" ,sbcl-cl-interpol)
7954 ("iterate" ,sbcl-iterate)
7955 ("symbol-munger-boot0" ,sbcl-symbol-munger-boot0)))
7956 (synopsis "Test Framework for Common Lisp")
7957 (description
7958 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
7959 style of JUnit for Java. It is a new version of the lisp-unit library written
7960 by Chris Riesbeck.")
7961 (home-page "https://github.com/AccelerationNet/lisp-unit2")
7962 (license license:expat))))
7963
7964 (define-public sbcl-symbol-munger
7965 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
7966 (revision "1"))
7967 (package
7968 (name "sbcl-symbol-munger")
7969 (version (git-version "0.0.1" revision commit))
7970 (source
7971 (origin
7972 (method git-fetch)
7973 (uri (git-reference
7974 (url "https://github.com/AccelerationNet/symbol-munger.git")
7975 (commit commit)))
7976 (file-name (git-file-name name version))
7977 (sha256
7978 (base32
7979 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
7980 (build-system asdf-build-system/sbcl)
7981 (inputs
7982 `(("alexandria" ,sbcl-alexandria)
7983 ("iterate" ,sbcl-iterate)))
7984 (native-inputs
7985 `(("lisp-unit2-boot0" ,sbcl-lisp-unit2-boot0)))
7986 (synopsis
7987 "Capitalization and spacing conversion functions for Common Lisp")
7988 (description
7989 "This is a Common Lisp library to change the capitalization and spacing
7990 of a string or a symbol. It can convert to and from Lisp, english, underscore
7991 and camel-case rules.")
7992 (home-page "https://github.com/AccelerationNet/symbol-munger")
7993 ;; The package declares a BSD license, but all of the license
7994 ;; text is MIT.
7995 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
7996 (license license:expat))))
7997
7998 (define-public cl-symbol-munger
7999 (sbcl-package->cl-source-package sbcl-symbol-munger))
8000
8001 (define-public ecl-symbol-munger
8002 (sbcl-package->ecl-package sbcl-symbol-munger))
8003
8004 (define-public sbcl-lisp-unit2
8005 (package
8006 (inherit sbcl-lisp-unit2-boot0)
8007 (name "sbcl-lisp-unit2")
8008 (inputs
8009 `(("alexandria" ,sbcl-alexandria)
8010 ("cl-interpol" ,sbcl-cl-interpol)
8011 ("iterate" ,sbcl-iterate)
8012 ("symbol-munger" ,sbcl-symbol-munger)))))
8013
8014 (define-public cl-lisp-unit2
8015 (sbcl-package->cl-source-package sbcl-lisp-unit2))
8016
8017 (define-public ecl-lisp-unit2
8018 (sbcl-package->ecl-package sbcl-lisp-unit2))
8019
8020 (define-public sbcl-cl-csv
8021 (let ((commit "3eba29c8364b033fbe0d189c2500559278b6a362")
8022 (revision "1"))
8023 (package
8024 (name "sbcl-cl-csv")
8025 (version (git-version "1.0.6" revision commit))
8026 (source
8027 (origin
8028 (method git-fetch)
8029 (uri (git-reference
8030 (url "https://github.com/AccelerationNet/cl-csv.git")
8031 (commit commit)))
8032 (file-name (git-file-name name version))
8033 (sha256
8034 (base32
8035 "07h4ni89jzx93clx453hlnnb5g53hhlcmz5hghqv6ysam48lc8g6"))))
8036 (build-system asdf-build-system/sbcl)
8037 (arguments
8038 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
8039 `(#:tests? #f))
8040 (inputs
8041 `(("alexandria" ,sbcl-alexandria)
8042 ("cl-interpol" ,sbcl-cl-interpol)
8043 ("iterate" ,sbcl-iterate)))
8044 (native-inputs
8045 `(("lisp-unit2" ,sbcl-lisp-unit2)))
8046 (synopsis "Common lisp library for comma-separated values")
8047 (description
8048 "This is a Common Lisp library providing functions to read/write CSV
8049 from/to strings, streams and files.")
8050 (home-page "https://github.com/AccelerationNet/cl-csv")
8051 (license license:bsd-3))))
8052
8053 (define-public cl-csv
8054 (sbcl-package->cl-source-package sbcl-cl-csv))
8055
8056 (define-public ecl-cl-csv
8057 (sbcl-package->ecl-package sbcl-cl-csv))
8058
8059 (define-public sbcl-external-program
8060 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8061 (revision "1"))
8062 (package
8063 (name "sbcl-external-program")
8064 (version (git-version "0.0.6" revision commit))
8065 (source
8066 (origin
8067 (method git-fetch)
8068 (uri (git-reference
8069 (url "https://github.com/sellout/external-program.git")
8070 (commit commit)))
8071 (file-name (git-file-name name version))
8072 (sha256
8073 (base32
8074 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8075 (build-system asdf-build-system/sbcl)
8076 (inputs
8077 `(("trivial-features" ,sbcl-trivial-features)))
8078 (native-inputs
8079 `(("fiveam" ,sbcl-fiveam)))
8080 (synopsis "Common Lisp library for running external programs")
8081 (description
8082 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8083 process. It is an attempt to make the RUN-PROGRAM functionality in
8084 implementations like SBCL and CCL as portable as possible without
8085 sacrificing much in the way of power.")
8086 (home-page "https://github.com/sellout/external-program")
8087 (license license:llgpl))))
8088
8089 (define-public cl-external-program
8090 (sbcl-package->cl-source-package sbcl-external-program))
8091
8092 (define-public ecl-external-program
8093 (sbcl-package->ecl-package sbcl-external-program))
8094
8095 (define sbcl-cl-ana-boot0
8096 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8097 (revision "1"))
8098 (package
8099 (name "sbcl-cl-ana-boot0")
8100 (version (git-version "0.0.0" revision commit))
8101 (source
8102 (origin
8103 (method git-fetch)
8104 (uri (git-reference
8105 (url "https://github.com/ghollisjr/cl-ana.git")
8106 (commit commit)))
8107 (file-name (git-file-name name version))
8108 (sha256
8109 (base32
8110 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
8111 (build-system asdf-build-system/sbcl)
8112 (synopsis "Common Lisp data analysis library")
8113 (description
8114 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8115 binned data analysis along with nonlinear least squares fitting and
8116 visualization.")
8117 (home-page "https://github.com/ghollisjr/cl-ana")
8118 (license license:gpl3))))
8119
8120 (define-public sbcl-cl-ana.pathname-utils
8121 (package
8122 (inherit sbcl-cl-ana-boot0)
8123 (name "sbcl-cl-ana.pathname-utils")
8124 (arguments
8125 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8126 ((#:asd-file _ "") "pathname-utils/cl-ana.pathname-utils.asd")
8127 ((#:asd-system-name _ #f) "cl-ana.pathname-utils")))))
8128
8129 (define-public cl-ana.pathname-utils
8130 (sbcl-package->cl-source-package sbcl-cl-ana.pathname-utils))
8131
8132 (define-public ecl-cl-ana.pathname-utils
8133 (sbcl-package->ecl-package sbcl-cl-ana.pathname-utils))
8134
8135 (define-public sbcl-cl-ana.package-utils
8136 (package
8137 (inherit sbcl-cl-ana-boot0)
8138 (name "sbcl-cl-ana.package-utils")
8139 (inputs
8140 `(("alexandria" ,sbcl-alexandria)))
8141 (arguments
8142 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8143 ((#:asd-file _ "") "package-utils/cl-ana.package-utils.asd")
8144 ((#:asd-system-name _ #f) "cl-ana.package-utils")))))
8145
8146 (define-public cl-ana.package-utils
8147 (sbcl-package->cl-source-package sbcl-cl-ana.package-utils))
8148
8149 (define-public ecl-cl-ana.package-utils
8150 (sbcl-package->ecl-package sbcl-cl-ana.package-utils))
8151
8152 (define-public sbcl-cl-ana.string-utils
8153 (package
8154 (inherit sbcl-cl-ana-boot0)
8155 (name "sbcl-cl-ana.string-utils")
8156 (inputs
8157 `(("split-sequence" ,sbcl-split-sequence)))
8158 (arguments
8159 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8160 ((#:asd-file _ "") "string-utils/cl-ana.string-utils.asd")
8161 ((#:asd-system-name _ #f) "cl-ana.string-utils")))))
8162
8163 (define-public cl-ana.string-utils
8164 (sbcl-package->cl-source-package sbcl-cl-ana.string-utils))
8165
8166 (define-public ecl-cl-ana.string-utils
8167 (sbcl-package->ecl-package sbcl-cl-ana.string-utils))
8168
8169 (define-public sbcl-cl-ana.functional-utils
8170 (package
8171 (inherit sbcl-cl-ana-boot0)
8172 (name "sbcl-cl-ana.functional-utils")
8173 (arguments
8174 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8175 ((#:asd-file _ "") "functional-utils/cl-ana.functional-utils.asd")
8176 ((#:asd-system-name _ #f) "cl-ana.functional-utils")))))
8177
8178 (define-public cl-ana.functional-utils
8179 (sbcl-package->cl-source-package sbcl-cl-ana.functional-utils))
8180
8181 (define-public ecl-cl-ana.functional-utils
8182 (sbcl-package->ecl-package sbcl-cl-ana.functional-utils))
8183
8184 (define-public sbcl-cl-ana.list-utils
8185 (package
8186 (inherit sbcl-cl-ana-boot0)
8187 (name "sbcl-cl-ana.list-utils")
8188 (inputs
8189 `(("alexandria" ,sbcl-alexandria)
8190 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8191 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)))
8192 (arguments
8193 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8194 ((#:asd-file _ "") "list-utils/cl-ana.list-utils.asd")
8195 ((#:asd-system-name _ #f) "cl-ana.list-utils")))))
8196
8197 (define-public cl-ana.list-utils
8198 (sbcl-package->cl-source-package sbcl-cl-ana.list-utils))
8199
8200 (define-public ecl-cl-ana.list-utils
8201 (sbcl-package->ecl-package sbcl-cl-ana.list-utils))
8202
8203 (define-public sbcl-cl-ana.generic-math
8204 (package
8205 (inherit sbcl-cl-ana-boot0)
8206 (name "sbcl-cl-ana.generic-math")
8207 (inputs
8208 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8209 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)))
8210 (arguments
8211 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8212 ((#:asd-file _ "") "generic-math/cl-ana.generic-math.asd")
8213 ((#:asd-system-name _ #f) "cl-ana.generic-math")))))
8214
8215 (define-public cl-ana.generic-math
8216 (sbcl-package->cl-source-package sbcl-cl-ana.generic-math))
8217
8218 (define-public ecl-cl-ana.generic-math
8219 (sbcl-package->ecl-package sbcl-cl-ana.generic-math))
8220
8221 (define-public sbcl-cl-ana.math-functions
8222 (package
8223 (inherit sbcl-cl-ana-boot0)
8224 (name "sbcl-cl-ana.math-functions")
8225 (inputs
8226 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8227 ("gsll" ,sbcl-gsll)))
8228 (arguments
8229 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8230 ((#:asd-file _ "") "math-functions/cl-ana.math-functions.asd")
8231 ((#:asd-system-name _ #f) "cl-ana.math-functions")))))
8232
8233 (define-public cl-ana.math-functions
8234 (sbcl-package->cl-source-package sbcl-cl-ana.math-functions))
8235
8236 (define-public sbcl-cl-ana.calculus
8237 (package
8238 (inherit sbcl-cl-ana-boot0)
8239 (name "sbcl-cl-ana.calculus")
8240 (inputs
8241 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)))
8242 (arguments
8243 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8244 ((#:asd-file _ "") "calculus/cl-ana.calculus.asd")
8245 ((#:asd-system-name _ #f) "cl-ana.calculus")))))
8246
8247 (define-public cl-ana.calculus
8248 (sbcl-package->cl-source-package sbcl-cl-ana.calculus))
8249
8250 (define-public ecl-cl-ana.calculus
8251 (sbcl-package->ecl-package sbcl-cl-ana.calculus))
8252
8253 (define-public sbcl-cl-ana.symbol-utils
8254 (package
8255 (inherit sbcl-cl-ana-boot0)
8256 (name "sbcl-cl-ana.symbol-utils")
8257 (inputs
8258 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)))
8259 (arguments
8260 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8261 ((#:asd-file _ "") "symbol-utils/cl-ana.symbol-utils.asd")
8262 ((#:asd-system-name _ #f) "cl-ana.symbol-utils")))))
8263
8264 (define-public cl-ana.symbol-utils
8265 (sbcl-package->cl-source-package sbcl-cl-ana.symbol-utils))
8266
8267 (define-public ecl-cl-ana.symbol-utils
8268 (sbcl-package->ecl-package sbcl-cl-ana.symbol-utils))
8269
8270 (define-public sbcl-cl-ana.macro-utils
8271 (package
8272 (inherit sbcl-cl-ana-boot0)
8273 (name "sbcl-cl-ana.macro-utils")
8274 (inputs
8275 `(("alexandria" ,sbcl-alexandria)
8276 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8277 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8278 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8279 ("split-sequence" ,sbcl-split-sequence)))
8280 (arguments
8281 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8282 ((#:asd-file _ "") "macro-utils/cl-ana.macro-utils.asd")
8283 ((#:asd-system-name _ #f) "cl-ana.macro-utils")))))
8284
8285 (define-public cl-ana.macro-utils
8286 (sbcl-package->cl-source-package sbcl-cl-ana.macro-utils))
8287
8288 (define-public ecl-cl-ana.macro-utils
8289 (sbcl-package->ecl-package sbcl-cl-ana.macro-utils))
8290
8291 (define-public sbcl-cl-ana.binary-tree
8292 (package
8293 (inherit sbcl-cl-ana-boot0)
8294 (name "sbcl-cl-ana.binary-tree")
8295 (inputs
8296 `(("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8297 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8298 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)))
8299 (arguments
8300 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8301 ((#:asd-file _ "") "binary-tree/cl-ana.binary-tree.asd")
8302 ((#:asd-system-name _ #f) "cl-ana.binary-tree")))))
8303
8304 (define-public cl-ana.binary-tree
8305 (sbcl-package->cl-source-package sbcl-cl-ana.binary-tree))
8306
8307 (define-public ecl-cl-ana.binary-tree
8308 (sbcl-package->ecl-package sbcl-cl-ana.binary-tree))
8309
8310 (define-public sbcl-cl-ana.tensor
8311 (package
8312 (inherit sbcl-cl-ana-boot0)
8313 (name "sbcl-cl-ana.tensor")
8314 (inputs
8315 `(("alexandria" ,sbcl-alexandria)
8316 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8317 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8318 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8319 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8320 (arguments
8321 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8322 ((#:asd-file _ "") "tensor/cl-ana.tensor.asd")
8323 ((#:asd-system-name _ #f) "cl-ana.tensor")))))
8324
8325 (define-public cl-ana.tensor
8326 (sbcl-package->cl-source-package sbcl-cl-ana.tensor))
8327
8328 (define-public ecl-cl-ana.tensor
8329 (sbcl-package->ecl-package sbcl-cl-ana.tensor))
8330
8331 (define-public sbcl-cl-ana.error-propogation
8332 (package
8333 (inherit sbcl-cl-ana-boot0)
8334 (name "sbcl-cl-ana.error-propogation")
8335 (inputs
8336 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8337 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)))
8338 (arguments
8339 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8340 ((#:asd-file _ "") "error-propogation/cl-ana.error-propogation.asd")
8341 ((#:asd-system-name _ #f) "cl-ana.error-propogation")))))
8342
8343 (define-public cl-ana.error-propogation
8344 (sbcl-package->cl-source-package sbcl-cl-ana.error-propogation))
8345
8346 (define-public sbcl-cl-ana.quantity
8347 (package
8348 (inherit sbcl-cl-ana-boot0)
8349 (name "sbcl-cl-ana.quantity")
8350 (inputs
8351 `(("alexandria" ,sbcl-alexandria)
8352 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8353 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8354 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8355 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8356 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8357 (arguments
8358 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8359 ((#:asd-file _ "") "quantity/cl-ana.quantity.asd")
8360 ((#:asd-system-name _ #f) "cl-ana.quantity")))))
8361
8362 (define-public cl-ana.quantity
8363 (sbcl-package->cl-source-package sbcl-cl-ana.quantity))
8364
8365 (define-public sbcl-cl-ana.table
8366 (package
8367 (inherit sbcl-cl-ana-boot0)
8368 (name "sbcl-cl-ana.table")
8369 (inputs
8370 `(("alexandria" ,sbcl-alexandria)
8371 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8372 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8373 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8374 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8375 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8376 (arguments
8377 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8378 ((#:asd-file _ "") "table/cl-ana.table.asd")
8379 ((#:asd-system-name _ #f) "cl-ana.table")))))
8380
8381 (define-public cl-ana.table
8382 (sbcl-package->cl-source-package sbcl-cl-ana.table))
8383
8384 (define-public ecl-cl-ana.table
8385 (sbcl-package->ecl-package sbcl-cl-ana.table))
8386
8387 (define-public sbcl-cl-ana.table-utils
8388 (package
8389 (inherit sbcl-cl-ana-boot0)
8390 (name "sbcl-cl-ana.table-utils")
8391 (inputs
8392 `(("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8393 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8394 ("cl-ana.table" ,sbcl-cl-ana.table)))
8395 (arguments
8396 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8397 ((#:asd-file _ "") "table-utils/cl-ana.table-utils.asd")
8398 ((#:asd-system-name _ #f) "cl-ana.table-utils")))))
8399
8400 (define-public cl-ana.table-utils
8401 (sbcl-package->cl-source-package sbcl-cl-ana.table-utils))
8402
8403 (define-public ecl-cl-ana.table-utils
8404 (sbcl-package->ecl-package sbcl-cl-ana.table-utils))
8405
8406 (define-public sbcl-cl-ana.hdf-cffi
8407 (package
8408 (inherit sbcl-cl-ana-boot0)
8409 (name "sbcl-cl-ana.hdf-cffi")
8410 (inputs
8411 `(("cffi" ,sbcl-cffi)
8412 ("hdf5" ,hdf5-parallel-openmpi)))
8413 (arguments
8414 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8415 ((#:asd-file _ "") "hdf-cffi/cl-ana.hdf-cffi.asd")
8416 ((#:asd-system-name _ #f) "cl-ana.hdf-cffi")
8417 ((#:phases phases '%standard-phases)
8418 `(modify-phases ,phases
8419 (add-after 'unpack 'fix-paths
8420 (lambda* (#:key inputs #:allow-other-keys)
8421 (substitute* "hdf-cffi/hdf-cffi.lisp"
8422 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8423 (string-append
8424 (assoc-ref inputs "hdf5")
8425 "/lib/libhdf5.so")))))))))))
8426
8427 (define-public cl-ana.hdf-cffi
8428 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-cffi))
8429
8430 (define-public ecl-cl-ana.hdf-cffi
8431 (sbcl-package->ecl-package sbcl-cl-ana.hdf-cffi))
8432
8433 (define-public sbcl-cl-ana.int-char
8434 (package
8435 (inherit sbcl-cl-ana-boot0)
8436 (name "sbcl-cl-ana.int-char")
8437 (arguments
8438 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8439 ((#:asd-file _ "") "int-char/cl-ana.int-char.asd")
8440 ((#:asd-system-name _ #f) "cl-ana.int-char")))))
8441
8442 (define-public cl-ana.int-char
8443 (sbcl-package->cl-source-package sbcl-cl-ana.int-char))
8444
8445 (define-public ecl-cl-ana.int-char
8446 (sbcl-package->ecl-package sbcl-cl-ana.int-char))
8447
8448 (define-public sbcl-cl-ana.memoization
8449 (package
8450 (inherit sbcl-cl-ana-boot0)
8451 (name "sbcl-cl-ana.memoization")
8452 (inputs
8453 `(("alexandria" ,sbcl-alexandria)))
8454 (arguments
8455 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8456 ((#:asd-file _ "") "memoization/cl-ana.memoization.asd")
8457 ((#:asd-system-name _ #f) "cl-ana.memoization")))))
8458
8459 (define-public cl-ana.memoization
8460 (sbcl-package->cl-source-package sbcl-cl-ana.memoization))
8461
8462 (define-public ecl-cl-ana.memoization
8463 (sbcl-package->ecl-package sbcl-cl-ana.memoization))
8464
8465 (define-public sbcl-cl-ana.typespec
8466 (package
8467 (inherit sbcl-cl-ana-boot0)
8468 (name "sbcl-cl-ana.typespec")
8469 (inputs
8470 `(("alexandria" ,sbcl-alexandria)
8471 ("cffi" ,sbcl-cffi)
8472 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
8473 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8474 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8475 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8476 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8477 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8478 (arguments
8479 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8480 ((#:asd-file _ "") "typespec/cl-ana.typespec.asd")
8481 ((#:asd-system-name _ #f) "cl-ana.typespec")))))
8482
8483 (define-public cl-ana.typespec
8484 (sbcl-package->cl-source-package sbcl-cl-ana.typespec))
8485
8486 (define-public ecl-cl-ana.typespec
8487 (sbcl-package->ecl-package sbcl-cl-ana.typespec))
8488
8489 (define-public sbcl-cl-ana.hdf-typespec
8490 (package
8491 (inherit sbcl-cl-ana-boot0)
8492 (name "sbcl-cl-ana.hdf-typespec")
8493 (inputs
8494 `(("alexandria" ,sbcl-alexandria)
8495 ("cffi" ,sbcl-cffi)
8496 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8497 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8498 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8499 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8500 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8501 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8502 (arguments
8503 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8504 ((#:asd-file _ "") "hdf-typespec/cl-ana.hdf-typespec.asd")
8505 ((#:asd-system-name _ #f) "cl-ana.hdf-typespec")))))
8506
8507 (define-public cl-ana.hdf-typespec
8508 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-typespec))
8509
8510 (define-public ecl-cl-ana.hdf-typespec
8511 (sbcl-package->ecl-package sbcl-cl-ana.hdf-typespec))
8512
8513 (define-public sbcl-cl-ana.hdf-utils
8514 (package
8515 (inherit sbcl-cl-ana-boot0)
8516 (name "sbcl-cl-ana.hdf-utils")
8517 (inputs
8518 `(("alexandria" ,sbcl-alexandria)
8519 ("cffi" ,sbcl-cffi)
8520 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8521 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8522 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8523 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8524 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8525 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8526 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8527 (arguments
8528 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8529 ((#:asd-file _ "") "hdf-utils/cl-ana.hdf-utils.asd")
8530 ((#:asd-system-name _ #f) "cl-ana.hdf-utils")))))
8531
8532 (define-public cl-ana.hdf-utils
8533 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-utils))
8534
8535 (define-public ecl-cl-ana.hdf-utils
8536 (sbcl-package->ecl-package sbcl-cl-ana.hdf-utils))
8537
8538 (define-public sbcl-cl-ana.typed-table
8539 (package
8540 (inherit sbcl-cl-ana-boot0)
8541 (name "sbcl-cl-ana.typed-table")
8542 (inputs
8543 `(("alexandria" ,sbcl-alexandria)
8544 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8545 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8546 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8547 ("cl-ana.table" ,sbcl-cl-ana.table)
8548 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8549 (arguments
8550 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8551 ((#:asd-file _ "") "typed-table/cl-ana.typed-table.asd")
8552 ((#:asd-system-name _ #f) "cl-ana.typed-table")))))
8553
8554 (define-public cl-ana.typed-table
8555 (sbcl-package->cl-source-package sbcl-cl-ana.typed-table))
8556
8557 (define-public ecl-cl-ana.typed-table
8558 (sbcl-package->ecl-package sbcl-cl-ana.typed-table))
8559
8560 (define-public sbcl-cl-ana.hdf-table
8561 (package
8562 (inherit sbcl-cl-ana-boot0)
8563 (name "sbcl-cl-ana.hdf-table")
8564 (inputs
8565 `(("alexandria" ,sbcl-alexandria)
8566 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8567 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8568 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8569 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8570 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8571 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8572 ("cl-ana.table" ,sbcl-cl-ana.table)
8573 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8574 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8575 (arguments
8576 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8577 ((#:asd-file _ "") "hdf-table/cl-ana.hdf-table.asd")
8578 ((#:asd-system-name _ #f) "cl-ana.hdf-table")))))
8579
8580 (define-public cl-ana.hdf-table
8581 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-table))
8582
8583 (define-public ecl-cl-ana.hdf-table
8584 (sbcl-package->ecl-package sbcl-cl-ana.hdf-table))
8585
8586 (define-public sbcl-cl-ana.gsl-cffi
8587 (package
8588 (inherit sbcl-cl-ana-boot0)
8589 (name "sbcl-cl-ana.gsl-cffi")
8590 (inputs
8591 `(("cffi" ,sbcl-cffi)
8592 ("gsl" ,gsl)))
8593 (arguments
8594 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8595 ((#:asd-file _ "") "gsl-cffi/cl-ana.gsl-cffi.asd")
8596 ((#:asd-system-name _ #f) "cl-ana.gsl-cffi")
8597 ((#:phases phases '%standard-phases)
8598 `(modify-phases ,phases
8599 (add-after 'unpack 'fix-paths
8600 (lambda* (#:key inputs #:allow-other-keys)
8601 (substitute* "gsl-cffi/gsl-cffi.lisp"
8602 (("define-foreign-library gsl-cffi" all)
8603 (string-append all " (:unix "
8604 (assoc-ref inputs "gsl")
8605 "/lib/libgsl.so)")))))))))))
8606
8607 (define-public cl-ana.gsl-cffi
8608 (sbcl-package->cl-source-package sbcl-cl-ana.gsl-cffi))
8609
8610 (define-public ecl-cl-ana.gsl-cffi
8611 (sbcl-package->ecl-package sbcl-cl-ana.gsl-cffi))
8612
8613 (define-public sbcl-cl-ana.ntuple-table
8614 (package
8615 (inherit sbcl-cl-ana-boot0)
8616 (name "sbcl-cl-ana.ntuple-table")
8617 (inputs
8618 `(("alexandria" ,sbcl-alexandria)
8619 ("cffi" ,sbcl-cffi)
8620 ("cl-ana.gsl-cffi" ,sbcl-cl-ana.gsl-cffi)
8621 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8622 ("cl-ana.table" ,sbcl-cl-ana.table)
8623 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8624 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)
8625 ("gsll" ,sbcl-gsll)))
8626 (arguments
8627 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8628 ((#:asd-file _ "") "ntuple-table/cl-ana.ntuple-table.asd")
8629 ((#:asd-system-name _ #f) "cl-ana.ntuple-table")))))
8630
8631 (define-public cl-ana.ntuple-table
8632 (sbcl-package->cl-source-package sbcl-cl-ana.ntuple-table))
8633
8634 (define-public sbcl-cl-ana.csv-table
8635 (package
8636 (inherit sbcl-cl-ana-boot0)
8637 (name "sbcl-cl-ana.csv-table")
8638 (inputs
8639 `(("alexandria" ,sbcl-alexandria)
8640 ("antik" ,sbcl-antik)
8641 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8642 ("cl-ana.table" ,sbcl-cl-ana.table)
8643 ("cl-csv" ,sbcl-cl-csv)
8644 ("iterate" ,sbcl-iterate)))
8645 (arguments
8646 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8647 ((#:asd-file _ "") "csv-table/cl-ana.csv-table.asd")
8648 ((#:asd-system-name _ #f) "cl-ana.csv-table")))))
8649
8650 (define-public cl-ana.csv-table
8651 (sbcl-package->cl-source-package sbcl-cl-ana.csv-table))
8652
8653 (define-public sbcl-cl-ana.reusable-table
8654 (package
8655 (inherit sbcl-cl-ana-boot0)
8656 (name "sbcl-cl-ana.reusable-table")
8657 (inputs
8658 `(("alexandria" ,sbcl-alexandria)
8659 ("cl-ana.table" ,sbcl-cl-ana.table)))
8660 (arguments
8661 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8662 ((#:asd-file _ "") "reusable-table/cl-ana.reusable-table.asd")
8663 ((#:asd-system-name _ #f) "cl-ana.reusable-table")))))
8664
8665 (define-public cl-ana.reusable-table
8666 (sbcl-package->cl-source-package sbcl-cl-ana.reusable-table))
8667
8668 (define-public ecl-cl-ana.reusable-table
8669 (sbcl-package->ecl-package sbcl-cl-ana.reusable-table))
8670
8671 (define-public sbcl-cl-ana.linear-algebra
8672 (package
8673 (inherit sbcl-cl-ana-boot0)
8674 (name "sbcl-cl-ana.linear-algebra")
8675 (inputs
8676 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8677 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8678 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8679 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8680 ("gsll" ,sbcl-gsll)))
8681 (arguments
8682 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8683 ((#:asd-file _ "") "linear-algebra/cl-ana.linear-algebra.asd")
8684 ((#:asd-system-name _ #f) "cl-ana.linear-algebra")))))
8685
8686 (define-public cl-ana.linear-algebra
8687 (sbcl-package->cl-source-package sbcl-cl-ana.linear-algebra))
8688
8689 (define-public sbcl-cl-ana.lorentz
8690 (package
8691 (inherit sbcl-cl-ana-boot0)
8692 (name "sbcl-cl-ana.lorentz")
8693 (inputs
8694 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8695 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
8696 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8697 ("iterate" ,sbcl-iterate)))
8698 (arguments
8699 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8700 ((#:asd-file _ "") "lorentz/cl-ana.lorentz.asd")
8701 ((#:asd-system-name _ #f) "cl-ana.lorentz")))))
8702
8703 (define-public cl-ana.lorentz
8704 (sbcl-package->cl-source-package sbcl-cl-ana.lorentz))
8705
8706 (define-public sbcl-cl-ana.clos-utils
8707 (package
8708 (inherit sbcl-cl-ana-boot0)
8709 (name "sbcl-cl-ana.clos-utils")
8710 (inputs
8711 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8712 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8713 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8714 ("closer-mop" ,sbcl-closer-mop)))
8715 (arguments
8716 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8717 ((#:asd-file _ "") "clos-utils/cl-ana.clos-utils.asd")
8718 ((#:asd-system-name _ #f) "cl-ana.clos-utils")))))
8719
8720 (define-public cl-ana.clos-utils
8721 (sbcl-package->cl-source-package sbcl-cl-ana.clos-utils))
8722
8723 (define-public ecl-cl-ana.clos-utils
8724 (sbcl-package->ecl-package sbcl-cl-ana.clos-utils))
8725
8726 (define-public sbcl-cl-ana.hash-table-utils
8727 (package
8728 (inherit sbcl-cl-ana-boot0)
8729 (name "sbcl-cl-ana.hash-table-utils")
8730 (arguments
8731 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8732 ((#:asd-file _ "") "hash-table-utils/cl-ana.hash-table-utils.asd")
8733 ((#:asd-system-name _ #f) "cl-ana.hash-table-utils")))))
8734
8735 (define-public cl-ana.hash-table-utils
8736 (sbcl-package->cl-source-package sbcl-cl-ana.hash-table-utils))
8737
8738 (define-public ecl-cl-ana.hash-table-utils
8739 (sbcl-package->ecl-package sbcl-cl-ana.hash-table-utils))
8740
8741 (define-public sbcl-cl-ana.map
8742 (package
8743 (inherit sbcl-cl-ana-boot0)
8744 (name "sbcl-cl-ana.map")
8745 (inputs
8746 `(("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)))
8747 (arguments
8748 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8749 ((#:asd-file _ "") "map/cl-ana.map.asd")
8750 ((#:asd-system-name _ #f) "cl-ana.map")))))
8751
8752 (define-public cl-ana.map
8753 (sbcl-package->cl-source-package sbcl-cl-ana.map))
8754
8755 (define-public ecl-cl-ana.map
8756 (sbcl-package->ecl-package sbcl-cl-ana.map))
8757
8758 (define-public sbcl-cl-ana.fitting
8759 (package
8760 (inherit sbcl-cl-ana-boot0)
8761 (name "sbcl-cl-ana.fitting")
8762 (inputs
8763 `(("alexandria" ,sbcl-alexandria)
8764 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8765 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8766 ("cl-ana.map" ,sbcl-cl-ana.map)
8767 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8768 ("gsll" ,sbcl-gsll)))
8769 (arguments
8770 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8771 ((#:asd-file _ "") "fitting/cl-ana.fitting.asd")
8772 ((#:asd-system-name _ #f) "cl-ana.fitting")))))
8773
8774 (define-public cl-ana.fitting
8775 (sbcl-package->cl-source-package sbcl-cl-ana.fitting))
8776
8777 (define-public sbcl-cl-ana.histogram
8778 (package
8779 (inherit sbcl-cl-ana-boot0)
8780 (name "sbcl-cl-ana.histogram")
8781 (inputs
8782 `(("alexandria" ,sbcl-alexandria)
8783 ("iterate" ,sbcl-iterate)
8784 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8785 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
8786 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
8787 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8788 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8789 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
8790 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8791 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8792 ("cl-ana.map" ,sbcl-cl-ana.map)
8793 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8794 (arguments
8795 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8796 ((#:asd-file _ "") "histogram/cl-ana.histogram.asd")
8797 ((#:asd-system-name _ #f) "cl-ana.histogram")))))
8798
8799 (define-public cl-ana.histogram
8800 (sbcl-package->cl-source-package sbcl-cl-ana.histogram))
8801
8802 (define-public sbcl-cl-ana.file-utils
8803 (package
8804 (inherit sbcl-cl-ana-boot0)
8805 (name "sbcl-cl-ana.file-utils")
8806 (inputs
8807 `(("external-program" ,sbcl-external-program)
8808 ("split-sequence" ,sbcl-split-sequence)))
8809 (arguments
8810 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8811 ((#:asd-file _ "") "file-utils/cl-ana.file-utils.asd")
8812 ((#:asd-system-name _ #f) "cl-ana.file-utils")))))
8813
8814 (define-public cl-ana.file-utils
8815 (sbcl-package->cl-source-package sbcl-cl-ana.file-utils))
8816
8817 (define-public ecl-cl-ana.file-utils
8818 (sbcl-package->ecl-package sbcl-cl-ana.file-utils))
8819
8820 (define-public sbcl-cl-ana.statistics
8821 (package
8822 (inherit sbcl-cl-ana-boot0)
8823 (name "sbcl-cl-ana.statistics")
8824 (inputs
8825 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8826 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8827 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8828 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8829 ("cl-ana.map" ,sbcl-cl-ana.map)))
8830 (arguments
8831 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8832 ((#:asd-file _ "") "statistics/cl-ana.statistics.asd")
8833 ((#:asd-system-name _ #f) "cl-ana.statistics")))))
8834
8835 (define-public cl-ana.statistics
8836 (sbcl-package->cl-source-package sbcl-cl-ana.statistics))
8837
8838 (define-public sbcl-cl-ana.gnuplot-interface
8839 (package
8840 (inherit sbcl-cl-ana-boot0)
8841 (name "sbcl-cl-ana.gnuplot-interface")
8842 (inputs
8843 `(("external-program" ,sbcl-external-program)))
8844 (arguments
8845 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8846 ((#:asd-file _ "") "gnuplot-interface/cl-ana.gnuplot-interface.asd")
8847 ((#:asd-system-name _ #f) "cl-ana.gnuplot-interface")))))
8848
8849 (define-public cl-ana.gnuplot-interface
8850 (sbcl-package->cl-source-package sbcl-cl-ana.gnuplot-interface))
8851
8852 (define-public ecl-cl-ana.gnuplot-interface
8853 (sbcl-package->ecl-package sbcl-cl-ana.gnuplot-interface))
8854
8855 (define-public sbcl-cl-ana.plotting
8856 (package
8857 (inherit sbcl-cl-ana-boot0)
8858 (name "sbcl-cl-ana.plotting")
8859 (inputs
8860 `(("alexandria" ,sbcl-alexandria)
8861 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8862 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8863 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8864 ("cl-ana.gnuplot-interface" ,sbcl-cl-ana.gnuplot-interface)
8865 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8866 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8867 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8868 ("cl-ana.map" ,sbcl-cl-ana.map)
8869 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8870 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8871 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8872 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8873 ("external-program" ,sbcl-external-program)
8874 ("split-sequence" ,sbcl-split-sequence)))
8875 (arguments
8876 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8877 ((#:asd-file _ "") "plotting/cl-ana.plotting.asd")
8878 ((#:asd-system-name _ #f) "cl-ana.plotting")))))
8879
8880 (define-public cl-ana.plotting
8881 (sbcl-package->cl-source-package sbcl-cl-ana.plotting))
8882
8883 (define-public sbcl-cl-ana.table-viewing
8884 (package
8885 (inherit sbcl-cl-ana-boot0)
8886 (name "sbcl-cl-ana.table-viewing")
8887 (inputs
8888 `(("alexandria" ,sbcl-alexandria)
8889 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8890 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8891 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8892 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
8893 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8894 ("cl-ana.table" ,sbcl-cl-ana.table)))
8895 (arguments
8896 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8897 ((#:asd-file _ "") "table-viewing/cl-ana.table-viewing.asd")
8898 ((#:asd-system-name _ #f) "cl-ana.table-viewing")))))
8899
8900 (define-public cl-ana.table-viewing
8901 (sbcl-package->cl-source-package sbcl-cl-ana.table-viewing))
8902
8903 (define-public sbcl-cl-ana.serialization
8904 (package
8905 (inherit sbcl-cl-ana-boot0)
8906 (name "sbcl-cl-ana.serialization")
8907 (inputs
8908 `(("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8909 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8910 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
8911 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8912 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
8913 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8914 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8915 (arguments
8916 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8917 ((#:asd-file _ "") "serialization/cl-ana.serialization.asd")
8918 ((#:asd-system-name _ #f) "cl-ana.serialization")))))
8919
8920 (define-public cl-ana.serialization
8921 (sbcl-package->cl-source-package sbcl-cl-ana.serialization))
8922
8923 (define-public sbcl-cl-ana.makeres
8924 (package
8925 (inherit sbcl-cl-ana-boot0)
8926 (name "sbcl-cl-ana.makeres")
8927 (inputs
8928 `(("alexandria" ,sbcl-alexandria)
8929 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8930 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
8931 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8932 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8933 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
8934 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8935 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8936 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8937 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8938 ("cl-ana.map" ,sbcl-cl-ana.map)
8939 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8940 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8941 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
8942 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
8943 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
8944 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8945 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8946 ("cl-ana.table" ,sbcl-cl-ana.table)
8947 ("external-program" ,sbcl-external-program)))
8948 (native-inputs
8949 `(("cl-fad" ,sbcl-cl-fad)))
8950 (arguments
8951 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8952 ((#:asd-file _ "") "makeres/cl-ana.makeres.asd")
8953 ((#:asd-system-name _ #f) "cl-ana.makeres")))))
8954
8955 (define-public cl-ana.makeres
8956 (sbcl-package->cl-source-package sbcl-cl-ana.makeres))
8957
8958 (define-public sbcl-cl-ana.makeres-macro
8959 (package
8960 (inherit sbcl-cl-ana-boot0)
8961 (name "sbcl-cl-ana.makeres-macro")
8962 (inputs
8963 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8964 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
8965 (arguments
8966 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8967 ((#:asd-file _ "") "makeres-macro/cl-ana.makeres-macro.asd")
8968 ((#:asd-system-name _ #f) "cl-ana.makeres-macro")))))
8969
8970 (define-public cl-ana.makeres-macro
8971 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-macro))
8972
8973 (define-public sbcl-cl-ana.makeres-block
8974 (package
8975 (inherit sbcl-cl-ana-boot0)
8976 (name "sbcl-cl-ana.makeres-block")
8977 (inputs
8978 `(("alexandria" ,sbcl-alexandria)
8979 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8980 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8981 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
8982 (arguments
8983 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8984 ((#:asd-file _ "") "makeres-block/cl-ana.makeres-block.asd")
8985 ((#:asd-system-name _ #f) "cl-ana.makeres-block")))))
8986
8987 (define-public cl-ana.makeres-block
8988 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-block))
8989
8990 (define-public sbcl-cl-ana.makeres-progress
8991 (package
8992 (inherit sbcl-cl-ana-boot0)
8993 (name "sbcl-cl-ana.makeres-progress")
8994 (inputs
8995 `(("alexandria" ,sbcl-alexandria)
8996 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8997 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
8998 (arguments
8999 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9000 ((#:asd-file _ "") "makeres-progress/cl-ana.makeres-progress.asd")
9001 ((#:asd-system-name _ #f) "cl-ana.makeres-progress")))))
9002
9003 (define-public cl-ana.makeres-progress
9004 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-progress))
9005
9006 (define-public sbcl-cl-ana.makeres-table
9007 (package
9008 (inherit sbcl-cl-ana-boot0)
9009 (name "sbcl-cl-ana.makeres-table")
9010 (inputs
9011 `(("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9012 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9013 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9014 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
9015 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9016 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9017 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9018 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9019 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
9020 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9021 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9022 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9023 ("cl-ana.table" ,sbcl-cl-ana.table)))
9024 (native-inputs
9025 `(("cl-fad" ,sbcl-cl-fad)))
9026 (arguments
9027 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9028 ((#:asd-file _ "") "makeres-table/cl-ana.makeres-table.asd")
9029 ((#:asd-system-name _ #f) "cl-ana.makeres-table")))))
9030
9031 (define-public cl-ana.makeres-table
9032 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-table))
9033
9034 (define-public sbcl-cl-ana.makeres-graphviz
9035 (package
9036 (inherit sbcl-cl-ana-boot0)
9037 (name "sbcl-cl-ana.makeres-graphviz")
9038 (inputs
9039 `(("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9040 ("external-program" ,sbcl-external-program)))
9041 (arguments
9042 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9043 ((#:asd-file _ "") "makeres-graphviz/cl-ana.makeres-graphviz.asd")
9044 ((#:asd-system-name _ #f) "cl-ana.makeres-graphviz")))))
9045
9046 (define-public cl-ana.makeres-graphviz
9047 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-graphviz))
9048
9049 (define-public sbcl-cl-ana.makeres-branch
9050 (package
9051 (inherit sbcl-cl-ana-boot0)
9052 (name "sbcl-cl-ana.makeres-branch")
9053 (inputs
9054 `(("alexandria" ,sbcl-alexandria)
9055 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9056 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9057 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9058 ("cl-ana.map" ,sbcl-cl-ana.map)
9059 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9060 (arguments
9061 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9062 ((#:asd-file _ "") "makeres-branch/cl-ana.makeres-branch.asd")
9063 ((#:asd-system-name _ #f) "cl-ana.makeres-branch")))))
9064
9065 (define-public cl-ana.makeres-branch
9066 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-branch))
9067
9068 (define-public sbcl-cl-ana.makeres-utils
9069 (package
9070 (inherit sbcl-cl-ana-boot0)
9071 (name "sbcl-cl-ana.makeres-utils")
9072 (inputs
9073 `(("alexandria" ,sbcl-alexandria)
9074 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9075 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9076 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9077 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9078 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9079 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9080 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9081 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9082 ("cl-ana.map" ,sbcl-cl-ana.map)
9083 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9084 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9085 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9086 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9087 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
9088 ("cl-ana.table" ,sbcl-cl-ana.table)))
9089 (native-inputs
9090 `(("cl-fad" ,sbcl-cl-fad)))
9091 (arguments
9092 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9093 ((#:asd-file _ "") "makeres-utils/cl-ana.makeres-utils.asd")
9094 ((#:asd-system-name _ #f) "cl-ana.makeres-utils")))))
9095
9096 (define-public cl-ana.makeres-utils
9097 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-utils))
9098
9099 (define-public sbcl-cl-ana.statistical-learning
9100 (package
9101 (inherit sbcl-cl-ana-boot0)
9102 (name "sbcl-cl-ana.statistical-learning")
9103 (inputs
9104 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9105 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9106 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9107 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9108 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9109 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9110 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9111 ("cl-ana.map" ,sbcl-cl-ana.map)
9112 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)))
9113 (native-inputs
9114 `(("cl-fad" ,sbcl-cl-fad)))
9115 (arguments
9116 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9117 ((#:asd-file _ "")
9118 "statistical-learning/cl-ana.statistical-learning.asd")
9119 ((#:asd-system-name _ #f) "cl-ana.statistical-learning")))))
9120
9121 (define-public cl-ana.statistical-learning
9122 (sbcl-package->cl-source-package sbcl-cl-ana.statistical-learning))
9123
9124 (define-public sbcl-cl-ana
9125 (package
9126 (inherit sbcl-cl-ana-boot0)
9127 (name "sbcl-cl-ana")
9128 (inputs
9129 `(("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
9130 ("cl-ana.calculus" ,sbcl-cl-ana.calculus)
9131 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
9132 ("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9133 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
9134 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9135 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9136 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9137 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9138 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9139 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9140 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
9141 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9142 ("cl-ana.lorentz" ,sbcl-cl-ana.lorentz)
9143 ("cl-ana.map" ,sbcl-cl-ana.map)
9144 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9145 ("cl-ana.makeres-block" ,sbcl-cl-ana.makeres-block)
9146 ("cl-ana.makeres-branch" ,sbcl-cl-ana.makeres-branch)
9147 ("cl-ana.makeres-graphviz" ,sbcl-cl-ana.makeres-graphviz)
9148 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9149 ("cl-ana.makeres-progress" ,sbcl-cl-ana.makeres-progress)
9150 ("cl-ana.makeres-table" ,sbcl-cl-ana.makeres-table)
9151 ("cl-ana.makeres-utils" ,sbcl-cl-ana.makeres-utils)
9152 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9153 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9154 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)
9155 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9156 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9157 ("cl-ana.quantity" ,sbcl-cl-ana.quantity)
9158 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9159 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
9160 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)
9161 ("cl-ana.statistical-learning" ,sbcl-cl-ana.statistical-learning)
9162 ("cl-ana.table" ,sbcl-cl-ana.table)
9163 ("cl-ana.table-utils" ,sbcl-cl-ana.table-utils)
9164 ("cl-ana.table-viewing" ,sbcl-cl-ana.table-viewing)
9165 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
9166 ("libffi" ,libffi)))
9167 (native-inputs
9168 `(("cl-fad" ,sbcl-cl-fad)))
9169 (arguments
9170 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9171 ((#:asd-file _ "") "cl-ana.asd")
9172 ((#:asd-system-name _ #f) "cl-ana")))))
9173
9174 (define-public cl-ana
9175 (sbcl-package->cl-source-package sbcl-cl-ana))
9176
9177 (define-public sbcl-archive
9178 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
9179 (revision "1"))
9180 (package
9181 (name "sbcl-archive")
9182 (version (git-version "0.9" revision commit))
9183 (source (origin
9184 (method git-fetch)
9185 (uri (git-reference
9186 (url "https://github.com/sharplispers/archive.git")
9187 (commit commit)))
9188 (file-name (git-file-name name version))
9189 (sha256
9190 (base32
9191 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
9192 (build-system asdf-build-system/sbcl)
9193 (inputs
9194 `(("cl-fad" ,sbcl-cl-fad)
9195 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9196 (synopsis "Common Lisp library for tar and cpio archives")
9197 (description
9198 "This is a Common Lisp library to read and write disk-based file
9199 archives such as those generated by the tar and cpio programs on Unix.")
9200 (home-page "https://github.com/sharplispers/archive")
9201 (license license:bsd-3))))
9202
9203 (define-public cl-archive
9204 (sbcl-package->cl-source-package sbcl-archive))
9205
9206 (define-public ecl-archive
9207 (sbcl-package->ecl-package sbcl-archive))
9208
9209 (define-public sbcl-misc-extensions
9210 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
9211 (revision "1"))
9212 (package
9213 (name "sbcl-misc-extensions")
9214 (version (git-version "3.3" revision commit))
9215 (source
9216 (origin
9217 (method git-fetch)
9218 (uri (git-reference
9219 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
9220 (commit commit)))
9221 (file-name (git-file-name name version))
9222 (sha256
9223 (base32
9224 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
9225 (build-system asdf-build-system/sbcl)
9226 (synopsis "Collection of small macros and extensions for Common Lisp")
9227 (description
9228 "This project is intended as a catchall for small, general-purpose
9229 extensions to Common Lisp. It contains:
9230
9231 @itemize
9232 @item @code{new-let}, a macro that combines and generalizes @code{let},
9233 @code{let*} and @code{multiple-value-bind},
9234 @item @code{gmap}, an iteration macro that generalizes @code{map}.
9235 @end itemize\n")
9236 (home-page "https://common-lisp.net/project/misc-extensions/")
9237 (license license:public-domain))))
9238
9239 (define-public cl-misc-extensions
9240 (sbcl-package->cl-source-package sbcl-misc-extensions))
9241
9242 (define-public ecl-misc-extensions
9243 (sbcl-package->ecl-package sbcl-misc-extensions))
9244
9245 (define-public sbcl-mt19937
9246 (package
9247 (name "sbcl-mt19937")
9248 (version "1.1")
9249 (source
9250 (origin
9251 (method url-fetch)
9252 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
9253 "mt19937-latest.tar.gz"))
9254 (sha256
9255 (base32
9256 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
9257 (build-system asdf-build-system/sbcl)
9258 (synopsis "Mersenne Twister pseudo-random number generator")
9259 (description
9260 "MT19937 is a portable Mersenne Twister pseudo-random number generator
9261 for Common Lisp.")
9262 (home-page "https://www.cliki.net/mt19937")
9263 (license license:public-domain)))
9264
9265 (define-public cl-mt19937
9266 (sbcl-package->cl-source-package sbcl-mt19937))
9267
9268 (define-public ecl-mt19937
9269 (sbcl-package->ecl-package sbcl-mt19937))
9270
9271 (define-public sbcl-fset
9272 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
9273 (revision "1"))
9274 (package
9275 (name "sbcl-fset")
9276 (version (git-version "1.3.2" revision commit))
9277 (source
9278 (origin
9279 (method git-fetch)
9280 (uri (git-reference
9281 (url "https://github.com/slburson/fset")
9282 (commit commit)))
9283 (file-name (git-file-name name version))
9284 (sha256
9285 (base32
9286 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
9287 (snippet '(begin
9288 ;; Remove obsolete copy of system definition.
9289 (delete-file "Code/fset.asd")
9290 #t))))
9291 (build-system asdf-build-system/sbcl)
9292 (inputs
9293 `(("misc-extensions" ,sbcl-misc-extensions)
9294 ("mt19937" ,sbcl-mt19937)
9295 ("named-readtables" ,sbcl-named-readtables)))
9296 (synopsis "Functional set-theoretic collections library")
9297 (description
9298 "FSet is a functional set-theoretic collections library for Common Lisp.
9299 Functional means that all update operations return a new collection rather than
9300 modifying an existing one in place. Set-theoretic means that collections may
9301 be nested arbitrarily with no additional programmer effort; for instance, sets
9302 may contain sets, maps may be keyed by sets, etc.")
9303 (home-page "https://common-lisp.net/project/fset/Site/index.html")
9304 (license license:llgpl))))
9305
9306 (define-public cl-fset
9307 (sbcl-package->cl-source-package sbcl-fset))
9308
9309 (define-public sbcl-cl-cont
9310 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
9311 (revision "1"))
9312 (package
9313 (name "sbcl-cl-cont")
9314 (version (git-version "0.3.8" revision commit))
9315 (source
9316 (origin
9317 (method git-fetch)
9318 (uri (git-reference
9319 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
9320 (commit commit)))
9321 (file-name (git-file-name name version))
9322 (sha256
9323 (base32
9324 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
9325 (build-system asdf-build-system/sbcl)
9326 (inputs
9327 `(("alexandria" ,sbcl-alexandria)
9328 ("closer-mop" ,sbcl-closer-mop)))
9329 (native-inputs
9330 `(("rt" ,sbcl-rt)))
9331 (synopsis "Delimited continuations for Common Lisp")
9332 (description
9333 "This is a library that implements delimited continuations by
9334 transforming Common Lisp code to continuation passing style.")
9335 (home-page "https://common-lisp.net/project/cl-cont/")
9336 (license license:llgpl))))
9337
9338 (define-public cl-cont
9339 (sbcl-package->cl-source-package sbcl-cl-cont))
9340
9341 (define-public ecl-cl-cont
9342 (sbcl-package->ecl-package sbcl-cl-cont))
9343
9344 (define-public sbcl-cl-coroutine
9345 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
9346 (revision "1"))
9347 (package
9348 (name "sbcl-cl-coroutine")
9349 (version (git-version "0.1" revision commit))
9350 (source
9351 (origin
9352 (method git-fetch)
9353 (uri (git-reference
9354 (url "https://github.com/takagi/cl-coroutine.git")
9355 (commit commit)))
9356 (file-name (git-file-name name version))
9357 (sha256
9358 (base32
9359 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
9360 (build-system asdf-build-system/sbcl)
9361 (inputs
9362 `(("alexandria" ,sbcl-alexandria)
9363 ("cl-cont" ,sbcl-cl-cont)))
9364 (native-inputs
9365 `(("prove" ,sbcl-prove)))
9366 (arguments
9367 `(;; TODO: Fix the tests. They fail with:
9368 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
9369 #:tests? #f
9370 #:phases
9371 (modify-phases %standard-phases
9372 (add-after 'unpack 'fix-tests
9373 (lambda _
9374 (substitute* "cl-coroutine-test.asd"
9375 (("cl-test-more")
9376 "prove"))
9377 #t)))))
9378 (synopsis "Coroutine library for Common Lisp")
9379 (description
9380 "This is a coroutine library for Common Lisp implemented using the
9381 continuations of the @code{cl-cont} library.")
9382 (home-page "https://github.com/takagi/cl-coroutine")
9383 (license license:llgpl))))
9384
9385 (define-public cl-coroutine
9386 (sbcl-package->cl-source-package sbcl-cl-coroutine))
9387
9388 (define-public ecl-cl-coroutine
9389 (sbcl-package->ecl-package sbcl-cl-coroutine))
9390
9391 (define-public sbcl-vom
9392 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
9393 (revision "1"))
9394 (package
9395 (name "sbcl-vom")
9396 (version (git-version "0.1.4" revision commit))
9397 (source
9398 (origin
9399 (method git-fetch)
9400 (uri (git-reference
9401 (url "https://github.com/orthecreedence/vom.git")
9402 (commit commit)))
9403 (file-name (git-file-name name version))
9404 (sha256
9405 (base32
9406 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
9407 (build-system asdf-build-system/sbcl)
9408 (synopsis "Tiny logging utility for Common Lisp")
9409 (description
9410 "Vom is a logging library for Common Lisp. It's goal is to be useful
9411 and small. It does not provide a lot of features as other loggers do, but
9412 has a small codebase that's easy to understand and use.")
9413 (home-page "https://github.com/orthecreedence/vom")
9414 (license license:expat))))
9415
9416 (define-public cl-vom
9417 (sbcl-package->cl-source-package sbcl-vom))
9418
9419 (define-public ecl-vom
9420 (sbcl-package->ecl-package sbcl-vom))
9421
9422 (define-public sbcl-cl-libuv
9423 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
9424 (revision "1"))
9425 (package
9426 (name "sbcl-cl-libuv")
9427 (version (git-version "0.1.6" revision commit))
9428 (source
9429 (origin
9430 (method git-fetch)
9431 (uri (git-reference
9432 (url "https://github.com/orthecreedence/cl-libuv.git")
9433 (commit commit)))
9434 (file-name (git-file-name name version))
9435 (sha256
9436 (base32
9437 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
9438 (build-system asdf-build-system/sbcl)
9439 (inputs
9440 `(("alexandria" ,sbcl-alexandria)
9441 ("cffi" ,sbcl-cffi)
9442 ("cffi-grovel" ,sbcl-cffi-grovel)
9443 ("libuv" ,libuv)))
9444 (arguments
9445 `(#:phases
9446 (modify-phases %standard-phases
9447 (add-after 'unpack 'fix-paths
9448 (lambda* (#:key inputs #:allow-other-keys)
9449 (substitute* "lib.lisp"
9450 (("/usr/lib/libuv.so")
9451 (string-append (assoc-ref inputs "libuv")
9452 "/lib/libuv.so")))
9453 #t))
9454 (add-after 'fix-paths 'fix-system-definition
9455 (lambda _
9456 (substitute* "cl-libuv.asd"
9457 (("#:cffi #:alexandria")
9458 "#:cffi #:cffi-grovel #:alexandria"))
9459 #t)))))
9460 (synopsis "Common Lisp bindings to libuv")
9461 (description
9462 "This library provides low-level libuv bindings for Common Lisp.")
9463 (home-page "https://github.com/orthecreedence/cl-libuv")
9464 (license license:expat))))
9465
9466 (define-public cl-libuv
9467 (sbcl-package->cl-source-package sbcl-cl-libuv))
9468
9469 (define-public ecl-cl-libuv
9470 (sbcl-package->ecl-package sbcl-cl-libuv))
9471
9472 (define-public sbcl-cl-async-base
9473 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
9474 (revision "1"))
9475 (package
9476 (name "sbcl-cl-async-base")
9477 (version (git-version "0.6.1" revision commit))
9478 (source
9479 (origin
9480 (method git-fetch)
9481 (uri (git-reference
9482 (url "https://github.com/orthecreedence/cl-async.git")
9483 (commit commit)))
9484 (file-name (git-file-name name version))
9485 (sha256
9486 (base32
9487 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
9488 (build-system asdf-build-system/sbcl)
9489 (inputs
9490 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9491 ("cffi" ,sbcl-cffi)
9492 ("cl-libuv" ,sbcl-cl-libuv)))
9493 (arguments
9494 `(#:asd-file "cl-async.asd"))
9495 (synopsis "Base system for cl-async")
9496 (description
9497 "Cl-async is a library for general purpose, non-blocking programming in
9498 Common Lisp. It uses the libuv library as backend.")
9499 (home-page "https://orthecreedence.github.io/cl-async/")
9500 (license license:expat))))
9501
9502 (define-public cl-async-base
9503 (sbcl-package->cl-source-package sbcl-cl-async-base))
9504
9505 (define-public ecl-cl-async-base
9506 (sbcl-package->ecl-package sbcl-cl-async-base))
9507
9508 (define-public sbcl-cl-async-util
9509 (package
9510 (inherit sbcl-cl-async-base)
9511 (name "sbcl-cl-async-util")
9512 (inputs
9513 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9514 ("cffi" ,sbcl-cffi)
9515 ("cl-async-base" ,sbcl-cl-async-base)
9516 ("cl-libuv" ,sbcl-cl-libuv)
9517 ("cl-ppcre" ,sbcl-cl-ppcre)
9518 ("fast-io" ,sbcl-fast-io)
9519 ("vom" ,sbcl-vom)))
9520 (synopsis "Internal utilities for cl-async")))
9521
9522 (define-public cl-async-util
9523 (sbcl-package->cl-source-package sbcl-cl-async-util))
9524
9525 (define-public ecl-cl-async-util
9526 (sbcl-package->ecl-package sbcl-cl-async-util))
9527
9528 (define-public sbcl-cl-async
9529 (package
9530 (inherit sbcl-cl-async-base)
9531 (name "sbcl-cl-async")
9532 (inputs
9533 `(("babel" ,sbcl-babel)
9534 ("cffi" ,sbcl-cffi)
9535 ("cl-async-base" ,sbcl-cl-async-base)
9536 ("cl-async-util" ,sbcl-cl-async-util)
9537 ("cl-libuv" ,sbcl-cl-libuv)
9538 ("cl-ppcre" ,sbcl-cl-ppcre)
9539 ("static-vectors" ,sbcl-static-vectors)
9540 ("trivial-features" ,sbcl-trivial-features)
9541 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9542 (synopsis "Asynchronous operations for Common Lisp")))
9543
9544 (define-public cl-async
9545 (sbcl-package->cl-source-package sbcl-cl-async))
9546
9547 (define-public ecl-cl-async
9548 (sbcl-package->ecl-package sbcl-cl-async))
9549
9550 (define-public sbcl-cl-async-repl
9551 (package
9552 (inherit sbcl-cl-async-base)
9553 (name "sbcl-cl-async-repl")
9554 (inputs
9555 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9556 ("cl-async" ,sbcl-cl-async)))
9557 (arguments
9558 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9559 ((#:asd-file _ "") "cl-async-repl.asd")))
9560 (synopsis "REPL integration for cl-async")))
9561
9562 (define-public cl-async-repl
9563 (sbcl-package->cl-source-package sbcl-cl-async-repl))
9564
9565 (define-public ecl-cl-async-repl
9566 (sbcl-package->ecl-package sbcl-cl-async-repl))
9567
9568 (define-public sbcl-cl-async-ssl
9569 (package
9570 (inherit sbcl-cl-async-base)
9571 (name "sbcl-cl-async-ssl")
9572 (inputs
9573 `(("cffi" ,sbcl-cffi)
9574 ("cl-async" ,sbcl-cl-async)
9575 ("openssl" ,openssl)
9576 ("vom" ,sbcl-vom)))
9577 (arguments
9578 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9579 ((#:asd-file _ "") "cl-async-ssl.asd")
9580 ((#:phases phases '%standard-phases)
9581 `(modify-phases ,phases
9582 (add-after 'unpack 'fix-paths
9583 (lambda* (#:key inputs #:allow-other-keys)
9584 (substitute* "src/ssl/package.lisp"
9585 (("libcrypto\\.so")
9586 (string-append (assoc-ref inputs "openssl")
9587 "/lib/libcrypto.so"))
9588 (("libssl\\.so")
9589 (string-append (assoc-ref inputs "openssl")
9590 "/lib/libssl.so")))
9591 #t))))))
9592 (synopsis "SSL wrapper around cl-async socket implementation")))
9593
9594 (define-public cl-async-ssl
9595 (sbcl-package->cl-source-package sbcl-cl-async-ssl))
9596
9597 (define-public ecl-cl-async-ssl
9598 (sbcl-package->ecl-package sbcl-cl-async-ssl))
9599
9600 (define-public sbcl-blackbird
9601 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
9602 (revision "1"))
9603 (package
9604 (name "sbcl-blackbird")
9605 (version (git-version "0.5.2" revision commit))
9606 (source
9607 (origin
9608 (method git-fetch)
9609 (uri (git-reference
9610 (url "https://github.com/orthecreedence/blackbird.git")
9611 (commit commit)))
9612 (file-name (git-file-name name version))
9613 (sha256
9614 (base32
9615 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
9616 (build-system asdf-build-system/sbcl)
9617 (inputs
9618 `(("vom" ,sbcl-vom)))
9619 (native-inputs
9620 `(("cl-async" ,sbcl-cl-async)
9621 ("fiveam" ,sbcl-fiveam)))
9622 (synopsis "Promise implementation for Common Lisp")
9623 (description
9624 "This is a standalone promise implementation for Common Lisp. It is
9625 the successor to the now-deprecated cl-async-future project.")
9626 (home-page "http://orthecreedence.github.io/blackbird/")
9627 (license license:expat))))
9628
9629 (define-public cl-blackbird
9630 (sbcl-package->cl-source-package sbcl-blackbird))
9631
9632 (define-public ecl-blackbird
9633 (sbcl-package->ecl-package sbcl-blackbird))
9634
9635 (define-public sbcl-cl-async-future
9636 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
9637 (revision "1"))
9638 (package
9639 (name "sbcl-cl-async-future")
9640 (version (git-version "0.4.4.1" revision commit))
9641 (source
9642 (origin
9643 (method git-fetch)
9644 (uri (git-reference
9645 (url "https://github.com/orthecreedence/cl-async-future.git")
9646 (commit commit)))
9647 (file-name (git-file-name name version))
9648 (sha256
9649 (base32
9650 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
9651 (build-system asdf-build-system/sbcl)
9652 (inputs
9653 `(("blackbird" ,sbcl-blackbird)))
9654 (native-inputs
9655 `(("cl-async" ,sbcl-cl-async)
9656 ("eos" ,sbcl-eos)))
9657 (synopsis "Futures implementation for Common Lisp")
9658 (description
9659 "This is futures implementation for Common Lisp. It plugs in nicely
9660 to cl-async.")
9661 (home-page "http://orthecreedence.github.io/cl-async/future")
9662 (license license:expat))))
9663
9664 (define-public cl-async-future
9665 (sbcl-package->cl-source-package sbcl-cl-async-future))
9666
9667 (define-public ecl-cl-async-future
9668 (sbcl-package->ecl-package sbcl-cl-async-future))
9669
9670 (define-public sbcl-green-threads
9671 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
9672 (revision "1"))
9673 (package
9674 (name "sbcl-green-threads")
9675 (version (git-version "0.3" revision commit))
9676 (source
9677 (origin
9678 (method git-fetch)
9679 (uri (git-reference
9680 (url "https://github.com/thezerobit/green-threads.git")
9681 (commit commit)))
9682 (file-name (git-file-name name version))
9683 (sha256
9684 (base32
9685 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
9686 (build-system asdf-build-system/sbcl)
9687 (inputs
9688 `(("cl-async-future" ,sbcl-cl-async-future)
9689 ("cl-cont" ,sbcl-cl-cont)))
9690 (native-inputs
9691 `(("prove" ,sbcl-prove)))
9692 (arguments
9693 `(;; TODO: Fix the tests. They fail with:
9694 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
9695 #:tests? #f
9696 #:phases
9697 (modify-phases %standard-phases
9698 (add-after 'unpack 'fix-tests
9699 (lambda _
9700 (substitute* "green-threads-test.asd"
9701 (("cl-test-more")
9702 "prove"))
9703 #t)))))
9704 (synopsis "Cooperative multitasking library for Common Lisp")
9705 (description
9706 "This library allows for cooperative multitasking with help of cl-cont
9707 for continuations. It tries to mimic the API of bordeaux-threads as much as
9708 possible.")
9709 (home-page "https://github.com/thezerobit/green-threads")
9710 (license license:bsd-3))))
9711
9712 (define-public cl-green-threads
9713 (sbcl-package->cl-source-package sbcl-green-threads))
9714
9715 (define-public ecl-green-threads
9716 (sbcl-package->ecl-package sbcl-green-threads))
9717
9718 (define-public sbcl-cl-base32
9719 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
9720 (revision "1"))
9721 (package
9722 (name "sbcl-cl-base32")
9723 (version (git-version "0.1" revision commit))
9724 (source
9725 (origin
9726 (method git-fetch)
9727 (uri (git-reference
9728 (url "https://github.com/hargettp/cl-base32.git")
9729 (commit commit)))
9730 (file-name (git-file-name name version))
9731 (sha256
9732 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
9733 (build-system asdf-build-system/sbcl)
9734 (native-inputs
9735 `(("lisp-unit" ,sbcl-lisp-unit)))
9736 (synopsis "Common Lisp library for base32 encoding and decoding")
9737 (description
9738 "This package provides functions for base32 encoding and decoding as
9739 defined in RFC4648.")
9740 (home-page "https://github.com/hargettp/cl-base32")
9741 (license license:expat))))
9742
9743 (define-public cl-base32
9744 (sbcl-package->cl-source-package sbcl-cl-base32))
9745
9746 (define-public ecl-cl-base32
9747 (sbcl-package->ecl-package sbcl-cl-base32))
9748
9749 (define-public sbcl-cl-z85
9750 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
9751 (revision "1"))
9752 (package
9753 (name "sbcl-cl-z85")
9754 (version (git-version "1.0" revision commit))
9755 (source
9756 (origin
9757 (method git-fetch)
9758 (uri (git-reference
9759 (url "https://github.com/glv2/cl-z85.git")
9760 (commit commit)))
9761 (file-name (git-file-name name version))
9762 (sha256
9763 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
9764 (build-system asdf-build-system/sbcl)
9765 (native-inputs
9766 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
9767 ("fiveam" ,sbcl-fiveam)))
9768 (synopsis "Common Lisp library for Z85 encoding and decoding")
9769 (description
9770 "This package provides functions to encode or decode byte vectors or
9771 byte streams using the Z85 format, which is a base-85 encoding used by
9772 ZeroMQ.")
9773 (home-page "https://github.com/glv2/cl-z85")
9774 (license license:gpl3+))))
9775
9776 (define-public cl-z85
9777 (sbcl-package->cl-source-package sbcl-cl-z85))
9778
9779 (define-public ecl-cl-z85
9780 (sbcl-package->ecl-package sbcl-cl-z85))
9781
9782 (define-public sbcl-ltk
9783 (package
9784 (name "sbcl-ltk")
9785 (version "0.992")
9786 (source
9787 (origin
9788 (method git-fetch)
9789 (uri (git-reference
9790 (url "https://github.com/herth/ltk.git")
9791 (commit version)))
9792 (file-name (git-file-name name version))
9793 (sha256
9794 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
9795 (build-system asdf-build-system/sbcl)
9796 (inputs
9797 `(("imagemagick" ,imagemagick)
9798 ("tk" ,tk)))
9799 (arguments
9800 `(#:asd-file "ltk/ltk.asd"
9801 #:tests? #f
9802 #:phases (modify-phases %standard-phases
9803 (add-after 'unpack 'fix-paths
9804 (lambda* (#:key inputs #:allow-other-keys)
9805 (substitute* "ltk/ltk.lisp"
9806 (("#-freebsd \"wish\"")
9807 (string-append "#-freebsd \""
9808 (assoc-ref inputs "tk")
9809 "/bin/wish\""))
9810 (("do-execute \"convert\"")
9811 (string-append "do-execute \""
9812 (assoc-ref inputs "imagemagick")
9813 "/bin/convert\"")))
9814 #t)))))
9815 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9816 (description
9817 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
9818 in pure Common Lisp and does not require any Tk knowledge for its usage.")
9819 (home-page "http://www.peter-herth.de/ltk/")
9820 (license license:llgpl)))
9821
9822 (define-public cl-ltk
9823 (sbcl-package->cl-source-package sbcl-ltk))
9824
9825 (define-public ecl-ltk
9826 (sbcl-package->ecl-package sbcl-ltk))
9827
9828 (define-public sbcl-ltk-mw
9829 (package
9830 (inherit sbcl-ltk)
9831 (name "sbcl-ltk-mw")
9832 (inputs
9833 `(("ltk" ,sbcl-ltk)))
9834 (arguments
9835 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9836 ((#:asd-file _) "ltk/ltk-mw.asd")
9837 ((#:phases _) '%standard-phases)))
9838 (synopsis "Extra widgets for LTK")
9839 (description
9840 "This is a collection of higher-level widgets built on top of LTK.")))
9841
9842 (define-public cl-ltk-mw
9843 (sbcl-package->cl-source-package sbcl-ltk-mw))
9844
9845 (define-public ecl-ltk-mw
9846 (sbcl-package->ecl-package sbcl-ltk-mw))
9847
9848 (define-public sbcl-ltk-remote
9849 (package
9850 (inherit sbcl-ltk)
9851 (name "sbcl-ltk-remote")
9852 (inputs
9853 `(("ltk" ,sbcl-ltk)))
9854 (arguments
9855 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9856 ((#:asd-file _) "ltk/ltk-remote.asd")
9857 ((#:phases _) '%standard-phases)))
9858 (synopsis "Remote GUI support for LTK")
9859 (description
9860 "This LTK extension allows the GUI to be displayed on a computer different
9861 from the one running the Lisp program by using a TCP connection.")))
9862
9863 (define-public cl-ltk-remote
9864 (sbcl-package->cl-source-package sbcl-ltk-remote))
9865
9866 (define-public sbcl-cl-lex
9867 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
9868 (revision "1"))
9869 (package
9870 (name "sbcl-cl-lex")
9871 (version (git-version "1.1.3" revision commit))
9872 (source
9873 (origin
9874 (method git-fetch)
9875 (uri (git-reference
9876 (url "https://github.com/djr7C4/cl-lex.git")
9877 (commit commit)))
9878 (file-name (git-file-name name version))
9879 (sha256
9880 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
9881 (build-system asdf-build-system/sbcl)
9882 (inputs
9883 `(("cl-ppcre" ,sbcl-cl-ppcre)))
9884 (synopsis "Common Lisp macros for generating lexical analyzers")
9885 (description
9886 "This is a Common Lisp library providing a set of macros for generating
9887 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
9888 be used with @code{cl-yacc}.")
9889 (home-page "https://github.com/djr7C4/cl-lex")
9890 (license license:gpl3))))
9891
9892 (define-public cl-lex
9893 (sbcl-package->cl-source-package sbcl-cl-lex))
9894
9895 (define-public ecl-cl-lex
9896 (sbcl-package->ecl-package sbcl-cl-lex))
9897
9898 (define-public sbcl-clunit2
9899 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
9900 (revision "1"))
9901 (package
9902 (name "sbcl-clunit2")
9903 (version (git-version "0.2.4" revision commit))
9904 (source
9905 (origin
9906 (method git-fetch)
9907 (uri (git-reference
9908 (url "https://notabug.org/cage/clunit2.git")
9909 (commit commit)))
9910 (file-name (git-file-name name version))
9911 (sha256
9912 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
9913 (build-system asdf-build-system/sbcl)
9914 (synopsis "Unit testing framework for Common Lisp")
9915 (description
9916 "CLUnit is a Common Lisp unit testing framework. It is designed to be
9917 easy to use so that you can quickly start testing.")
9918 (home-page "https://notabug.org/cage/clunit2")
9919 (license license:expat))))
9920
9921 (define-public cl-clunit2
9922 (sbcl-package->cl-source-package sbcl-clunit2))
9923
9924 (define-public ecl-clunit2
9925 (sbcl-package->ecl-package sbcl-clunit2))
9926
9927 (define-public sbcl-cl-colors2
9928 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
9929 (revision "1"))
9930 (package
9931 (name "sbcl-cl-colors2")
9932 (version (git-version "0.2.1" revision commit))
9933 (source
9934 (origin
9935 (method git-fetch)
9936 (uri (git-reference
9937 (url "https://notabug.org/cage/cl-colors2.git")
9938 (commit commit)))
9939 (file-name (git-file-name name version))
9940 (sha256
9941 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
9942 (build-system asdf-build-system/sbcl)
9943 (native-inputs
9944 `(("clunit2" ,sbcl-clunit2)))
9945 (inputs
9946 `(("alexandria" ,sbcl-alexandria)
9947 ("cl-ppcre" ,sbcl-cl-ppcre)))
9948 (synopsis "Color library for Common Lisp")
9949 (description
9950 "This is a very simple color library for Common Lisp, providing:
9951
9952 @itemize
9953 @item Types for representing colors in HSV and RGB spaces.
9954 @item Simple conversion functions between the above types (and also
9955 hexadecimal representation for RGB).
9956 @item Some predefined colors (currently X11 color names -- of course
9957 the library does not depend on X11).
9958 @end itemize\n")
9959 (home-page "https://notabug.org/cage/cl-colors2")
9960 (license license:boost1.0))))
9961
9962 (define-public cl-colors2
9963 (sbcl-package->cl-source-package sbcl-cl-colors2))
9964
9965 (define-public ecl-cl-colors2
9966 (sbcl-package->ecl-package sbcl-cl-colors2))
9967
9968 (define-public sbcl-cl-jpeg
9969 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
9970 (revision "1"))
9971 (package
9972 (name "sbcl-cl-jpeg")
9973 (version (git-version "2.8" revision commit))
9974 (source
9975 (origin
9976 (method git-fetch)
9977 (uri (git-reference
9978 (url "https://github.com/sharplispers/cl-jpeg.git")
9979 (commit commit)))
9980 (file-name (git-file-name name version))
9981 (sha256
9982 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
9983 (build-system asdf-build-system/sbcl)
9984 (synopsis "JPEG image library for Common Lisp")
9985 (description
9986 "This is a baseline JPEG codec written in Common Lisp. It can be used
9987 for reading and writing JPEG image files.")
9988 (home-page "https://github.com/sharplispers/cl-jpeg")
9989 (license license:bsd-3))))
9990
9991 (define-public cl-jpeg
9992 (sbcl-package->cl-source-package sbcl-cl-jpeg))
9993
9994 (define-public ecl-cl-jpeg
9995 (sbcl-package->ecl-package sbcl-cl-jpeg))
9996
9997 (define-public sbcl-nodgui
9998 (let ((commit "bc59ed9b787dfc9e68ae3bd7f7e8507c5c619212")
9999 (revision "1"))
10000 (package
10001 (name "sbcl-nodgui")
10002 (version (git-version "0.0.5" revision commit))
10003 (source
10004 (origin
10005 (method git-fetch)
10006 (uri (git-reference
10007 (url "https://notabug.org/cage/nodgui.git")
10008 (commit commit)))
10009 (file-name (git-file-name name version))
10010 (sha256
10011 (base32 "0xx0dk54d882i598ydnwmy7mnfk0b7vib3ddsgpqxhjck1rwq8l8"))))
10012 (build-system asdf-build-system/sbcl)
10013 (inputs
10014 `(("alexandria" ,sbcl-alexandria)
10015 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10016 ("cl-colors2" ,sbcl-cl-colors2)
10017 ("cl-jpeg" ,sbcl-cl-jpeg)
10018 ("cl-lex" ,sbcl-cl-lex)
10019 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
10020 ("cl-unicode" ,sbcl-cl-unicode)
10021 ("cl-yacc" ,sbcl-cl-yacc)
10022 ("clunit2" ,sbcl-clunit2)
10023 ("named-readtables" ,sbcl-named-readtables)
10024 ("parse-number" ,sbcl-parse-number)
10025 ("tk" ,tk)))
10026 (arguments
10027 `(#:phases (modify-phases %standard-phases
10028 (add-after 'unpack 'fix-paths
10029 (lambda* (#:key inputs #:allow-other-keys)
10030 (substitute* "src/wish-communication.lisp"
10031 (("#-freebsd \"wish\"")
10032 (string-append "#-freebsd \""
10033 (assoc-ref inputs "tk")
10034 "/bin/wish\"")))
10035 #t)))))
10036 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
10037 (description
10038 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
10039 toolkit. It also provides a few additional widgets more than the standard Tk
10040 ones.")
10041 (home-page "https://www.autistici.org/interzona/nodgui.html")
10042 (license license:llgpl))))
10043
10044 (define-public cl-nodgui
10045 (sbcl-package->cl-source-package sbcl-nodgui))
10046
10047 (define-public ecl-nodgui
10048 (sbcl-package->ecl-package sbcl-nodgui))
10049
10050 (define-public sbcl-salza2
10051 (package
10052 (name "sbcl-salza2")
10053 (version "2.0.9")
10054 (source
10055 (origin
10056 (method git-fetch)
10057 (uri (git-reference
10058 (url "https://github.com/xach/salza2.git")
10059 (commit (string-append "release-" version))))
10060 (file-name (git-file-name name version))
10061 (sha256
10062 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
10063 (build-system asdf-build-system/sbcl)
10064 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
10065 (description
10066 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
10067 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
10068 respectively.")
10069 (home-page "https://www.xach.com/lisp/salza2/")
10070 (license license:bsd-2)))
10071
10072 (define-public cl-salza2
10073 (sbcl-package->cl-source-package sbcl-salza2))
10074
10075 (define-public ecl-salza2
10076 (sbcl-package->ecl-package sbcl-salza2))
10077
10078 (define-public sbcl-png-read
10079 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
10080 (revision "1"))
10081 (package
10082 (name "sbcl-png-read")
10083 (version (git-version "0.3.1" revision commit))
10084 (source
10085 (origin
10086 (method git-fetch)
10087 (uri (git-reference
10088 (url "https://github.com/Ramarren/png-read.git")
10089 (commit commit)))
10090 (file-name (git-file-name name version))
10091 (sha256
10092 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
10093 (build-system asdf-build-system/sbcl)
10094 (inputs
10095 `(("babel" ,sbcl-babel)
10096 ("chipz" ,sbcl-chipz)
10097 ("iterate" ,sbcl-iterate)))
10098 (synopsis "PNG decoder for Common Lisp")
10099 (description "This is a Common Lisp library for reading PNG images.")
10100 (home-page "https://github.com/Ramarren/png-read")
10101 (license license:bsd-3))))
10102
10103 (define-public cl-png-read
10104 (sbcl-package->cl-source-package sbcl-png-read))
10105
10106 (define-public ecl-png-read
10107 (sbcl-package->ecl-package sbcl-png-read))
10108
10109 (define-public sbcl-zpng
10110 (package
10111 (name "sbcl-zpng")
10112 (version "1.2.2")
10113 (source
10114 (origin
10115 (method git-fetch)
10116 (uri (git-reference
10117 (url "https://github.com/xach/zpng.git")
10118 (commit (string-append "release-" version))))
10119 (file-name (git-file-name name version))
10120 (sha256
10121 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
10122 (build-system asdf-build-system/sbcl)
10123 (inputs
10124 `(("salza2" ,sbcl-salza2)))
10125 (synopsis "PNG encoder for Common Lisp")
10126 (description "This is a Common Lisp library for creating PNG images.")
10127 (home-page "https://www.xach.com/lisp/zpng/")
10128 (license license:bsd-2)))
10129
10130 (define-public cl-zpng
10131 (sbcl-package->cl-source-package sbcl-zpng))
10132
10133 (define-public ecl-zpng
10134 (sbcl-package->ecl-package sbcl-zpng))
10135
10136 (define-public sbcl-cl-qrencode
10137 (package
10138 (name "sbcl-cl-qrencode")
10139 (version "0.1.2")
10140 (source
10141 (origin
10142 (method git-fetch)
10143 (uri (git-reference
10144 (url "https://github.com/jnjcc/cl-qrencode.git")
10145 (commit (string-append "v" version))))
10146 (file-name (git-file-name name version))
10147 (sha256
10148 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
10149 (build-system asdf-build-system/sbcl)
10150 (native-inputs
10151 `(("lisp-unit" ,sbcl-lisp-unit)))
10152 (inputs
10153 `(("zpng" ,sbcl-zpng)))
10154 (synopsis "QR code encoder for Common Lisp")
10155 (description
10156 "This Common Lisp library provides function to make QR codes and to save
10157 them as PNG files.")
10158 (home-page "https://github.com/jnjcc/cl-qrencode")
10159 (license license:gpl2+)))
10160
10161 (define-public cl-qrencode
10162 (sbcl-package->cl-source-package sbcl-cl-qrencode))
10163
10164 (define-public ecl-cl-qrencode
10165 (sbcl-package->ecl-package sbcl-cl-qrencode))