gnu: Always use HTTPS for orthecreedence.github.io.
[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 ;;; Copyright © 2020 Konrad Hinsen <konrad.hinsen@fastmail.net>
20 ;;;
21 ;;; This file is part of GNU Guix.
22 ;;;
23 ;;; GNU Guix is free software; you can redistribute it and/or modify it
24 ;;; under the terms of the GNU General Public License as published by
25 ;;; the Free Software Foundation; either version 3 of the License, or (at
26 ;;; your option) any later version.
27 ;;;
28 ;;; GNU Guix is distributed in the hope that it will be useful, but
29 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
30 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
31 ;;; GNU General Public License for more details.
32 ;;;
33 ;;; You should have received a copy of the GNU General Public License
34 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
35
36 ;;; This file only contains Common Lisp libraries.
37 ;;; Common Lisp compilers and tooling go to lisp.scm.
38 ;;; Common Lisp applications should go to the most appropriate file,
39 ;;; e.g. StumpWM is in wm.scm.
40
41 (define-module (gnu packages lisp-xyz)
42 #:use-module (gnu packages)
43 #:use-module ((guix licenses) #:prefix license:)
44 #:use-module (guix packages)
45 #:use-module (guix download)
46 #:use-module (guix git-download)
47 #:use-module (guix hg-download)
48 #:use-module (guix utils)
49 #:use-module (guix build-system asdf)
50 #:use-module (guix build-system trivial)
51 #:use-module (gnu packages c)
52 #:use-module (gnu packages compression)
53 #:use-module (gnu packages glib)
54 #:use-module (gnu packages gtk)
55 #:use-module (gnu packages imagemagick)
56 #:use-module (gnu packages libevent)
57 #:use-module (gnu packages libffi)
58 #:use-module (gnu packages lisp)
59 #:use-module (gnu packages maths)
60 #:use-module (gnu packages pkg-config)
61 #:use-module (gnu packages python)
62 #:use-module (gnu packages python-xyz)
63 #:use-module (gnu packages sqlite)
64 #:use-module (gnu packages tcl)
65 #:use-module (gnu packages tls)
66 #:use-module (gnu packages webkit)
67 #:use-module (gnu packages xdisorg)
68 #:use-module (ice-9 match)
69 #:use-module (srfi srfi-19))
70
71 (define-public sbcl-alexandria
72 (let ((revision "1")
73 (commit "3b849bc0116ea70f215ee6b2fbf354e862aaa9dd"))
74 (package
75 (name "sbcl-alexandria")
76 (version (git-version "1.0.0" revision commit))
77 (source
78 (origin
79 (method git-fetch)
80 (uri (git-reference
81 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
82 (commit commit)))
83 (sha256
84 (base32
85 "04amwvx2vl691f0plcfbqqwxgib9zimih7jrn5zl7mbwvrxy022b"))
86 (file-name (git-file-name name version))))
87 (build-system asdf-build-system/sbcl)
88 (native-inputs
89 `(("rt" ,sbcl-rt)))
90 (synopsis "Collection of portable utilities for Common Lisp")
91 (description
92 "Alexandria is a collection of portable utilities. It does not contain
93 conceptual extensions to Common Lisp. It is conservative in scope, and
94 portable between implementations.")
95 (home-page "https://common-lisp.net/project/alexandria/")
96 (license license:public-domain))))
97
98 (define-public cl-alexandria
99 (sbcl-package->cl-source-package sbcl-alexandria))
100
101 (define-public ecl-alexandria
102 (sbcl-package->ecl-package sbcl-alexandria))
103
104 (define-public sbcl-net.didierverna.asdf-flv
105 (package
106 (name "sbcl-net.didierverna.asdf-flv")
107 (version "2.1")
108 (source
109 (origin
110 (method git-fetch)
111 (uri (git-reference
112 (url "https://github.com/didierverna/asdf-flv")
113 (commit (string-append "version-" version))))
114 (file-name (git-file-name "asdf-flv" version))
115 (sha256
116 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
117 (build-system asdf-build-system/sbcl)
118 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
119 (description "ASDF-FLV provides support for file-local variables through
120 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
121 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
122 dynamic binding is created before processing the file, so that any
123 modification to the variable becomes essentially file-local.
124
125 In order to make one or several variables file-local, use the macros
126 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
127 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
128 (license (license:non-copyleft
129 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
130 "GNU All-Permissive License"))))
131
132 (define-public cl-net.didierverna.asdf-flv
133 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
134
135 (define-public ecl-net.didierverna.asdf-flv
136 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
137
138 (define-public sbcl-fiveam
139 (package
140 (name "sbcl-fiveam")
141 (version "1.4.1")
142 (source
143 (origin
144 (method git-fetch)
145 (uri (git-reference
146 (url "https://github.com/sionescu/fiveam.git")
147 (commit (string-append "v" version))))
148 (file-name (git-file-name "fiveam" version))
149 (sha256
150 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
151 (inputs
152 `(("alexandria" ,sbcl-alexandria)
153 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
154 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
155 (build-system asdf-build-system/sbcl)
156 (synopsis "Common Lisp testing framework")
157 (description "FiveAM is a simple (as far as writing and running tests
158 goes) regression testing framework. It has been designed with Common Lisp's
159 interactive development model in mind.")
160 (home-page "https://common-lisp.net/project/fiveam/")
161 (license license:bsd-3)))
162
163 (define-public cl-fiveam
164 (sbcl-package->cl-source-package sbcl-fiveam))
165
166 (define-public ecl-fiveam
167 (sbcl-package->ecl-package sbcl-fiveam))
168
169 (define-public sbcl-bordeaux-threads
170 (package
171 (name "sbcl-bordeaux-threads")
172 (version "0.8.7")
173 (source (origin
174 (method git-fetch)
175 (uri (git-reference
176 (url "https://github.com/sionescu/bordeaux-threads.git")
177 (commit (string-append "v" version))))
178 (sha256
179 (base32 "1whpfmyxp2fsw6viqj45fqgsifgr534c575bfh5vaqw5m84b6alp"))
180 (file-name
181 (git-file-name "bordeaux-threads" version))))
182 (inputs `(("alexandria" ,sbcl-alexandria)))
183 (native-inputs `(("fiveam" ,sbcl-fiveam)))
184 (build-system asdf-build-system/sbcl)
185 (synopsis "Portable shared-state concurrency library for Common Lisp")
186 (description "BORDEAUX-THREADS is a proposed standard for a minimal
187 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
188 support.")
189 (home-page "https://common-lisp.net/project/bordeaux-threads/")
190 (license license:x11)))
191
192 (define-public cl-bordeaux-threads
193 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
194
195 (define-public ecl-bordeaux-threads
196 (sbcl-package->ecl-package sbcl-bordeaux-threads))
197
198 (define-public sbcl-trivial-gray-streams
199 (let ((revision "1")
200 (commit "0483ade330508b4b2edeabdb47d16ec9437ee1cb"))
201 (package
202 (name "sbcl-trivial-gray-streams")
203 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
204 (source
205 (origin
206 (method git-fetch)
207 (uri
208 (git-reference
209 (url "https://github.com/trivial-gray-streams/trivial-gray-streams.git")
210 (commit commit)))
211 (sha256
212 (base32 "0m3rpf2x0zmdk3nf1qfa01j6a55vj7gkwhyw78qslcgbjlgh8p4d"))
213 (file-name
214 (string-append "trivial-gray-streams-" version "-checkout"))))
215 (build-system asdf-build-system/sbcl)
216 (synopsis "Compatibility layer for Gray streams implementations")
217 (description "Gray streams is an interface proposed for inclusion with
218 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
219 popular CL implementations implement it. This package provides an extremely
220 thin compatibility layer for gray streams.")
221 (home-page "https://www.cliki.net/trivial-gray-streams")
222 (license license:x11))))
223
224 (define-public cl-trivial-gray-streams
225 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
226
227 (define-public ecl-trivial-gray-streams
228 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
229
230 (define-public sbcl-fiasco
231 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
232 (revision "1"))
233 (package
234 (name "sbcl-fiasco")
235 (version (git-version "0.0.1" revision commit))
236 (source
237 (origin
238 (method git-fetch)
239 (uri (git-reference
240 (url "https://github.com/joaotavora/fiasco.git")
241 (commit commit)))
242 (file-name (git-file-name "fiasco" version))
243 (sha256
244 (base32
245 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
246 (build-system asdf-build-system/sbcl)
247 (inputs
248 `(("alexandria" ,sbcl-alexandria)
249 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
250 (synopsis "Simple and powerful test framework for Common Lisp")
251 (description "A Common Lisp test framework that treasures your failures,
252 logical continuation of Stefil. It focuses on interactive debugging.")
253 (home-page "https://github.com/joaotavora/fiasco")
254 ;; LICENCE specifies this is public-domain unless the legislation
255 ;; doesn't allow or recognize it. In that case it falls back to a
256 ;; permissive licence.
257 (license (list license:public-domain
258 (license:x11-style "file://LICENCE"))))))
259
260 (define-public cl-fiasco
261 (sbcl-package->cl-source-package sbcl-fiasco))
262
263 (define-public ecl-fiasco
264 (sbcl-package->ecl-package sbcl-fiasco))
265
266 (define-public sbcl-flexi-streams
267 (package
268 (name "sbcl-flexi-streams")
269 (version "1.0.18")
270 (source
271 (origin
272 (method git-fetch)
273 (uri (git-reference
274 (url "https://github.com/edicl/flexi-streams.git")
275 (commit (string-append "v" version))))
276 (file-name (git-file-name "flexi-streams" version))
277 (sha256
278 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
279 (build-system asdf-build-system/sbcl)
280 (arguments
281 `(#:phases
282 (modify-phases %standard-phases
283 (add-after 'unpack 'make-git-checkout-writable
284 (lambda _
285 (for-each make-file-writable (find-files "."))
286 #t)))))
287 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
288 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
289 (description "Flexi-streams is an implementation of \"virtual\" bivalent
290 streams that can be layered atop real binary or bivalent streams and that can
291 be used to read and write character data in various single- or multi-octet
292 encodings which can be changed on the fly. It also supplies in-memory binary
293 streams which are similar to string streams.")
294 (home-page "http://weitz.de/flexi-streams/")
295 (license license:bsd-3)))
296
297 (define-public cl-flexi-streams
298 (sbcl-package->cl-source-package sbcl-flexi-streams))
299
300 (define-public ecl-flexi-streams
301 (sbcl-package->ecl-package sbcl-flexi-streams))
302
303 (define-public sbcl-cl-ppcre
304 (package
305 (name "sbcl-cl-ppcre")
306 (version "2.1.1")
307 (source
308 (origin
309 (method git-fetch)
310 (uri (git-reference
311 (url "https://github.com/edicl/cl-ppcre.git")
312 (commit (string-append "v" version))))
313 (file-name (git-file-name "cl-ppcre" version))
314 (sha256
315 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
316 (build-system asdf-build-system/sbcl)
317 (native-inputs `(("flexi-streams" ,sbcl-flexi-streams)))
318 (synopsis "Portable regular expression library for Common Lisp")
319 (description "CL-PPCRE is a portable regular expression library for Common
320 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
321 compatible with ANSI-compliant Common Lisp implementations.")
322 (home-page "http://weitz.de/cl-ppcre/")
323 (license license:bsd-2)))
324
325 (define-public cl-ppcre
326 (sbcl-package->cl-source-package sbcl-cl-ppcre))
327
328 (define-public ecl-cl-ppcre
329 (sbcl-package->ecl-package sbcl-cl-ppcre))
330
331 (define sbcl-cl-unicode-base
332 (package
333 (name "sbcl-cl-unicode-base")
334 (version "0.1.6")
335 (source (origin
336 (method git-fetch)
337 (uri (git-reference
338 (url "https://github.com/edicl/cl-unicode.git")
339 (commit (string-append "v" version))))
340 (file-name (git-file-name name version))
341 (sha256
342 (base32
343 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
344 (build-system asdf-build-system/sbcl)
345 (arguments
346 '(#:asd-file "cl-unicode.asd"
347 #:asd-system-name "cl-unicode/base"))
348 (inputs
349 `(("cl-ppcre" ,sbcl-cl-ppcre)))
350 (home-page "http://weitz.de/cl-unicode/")
351 (synopsis "Portable Unicode library for Common Lisp")
352 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
353 is compatible with perl. It is pretty fast, thread-safe, and compatible with
354 ANSI-compliant Common Lisp implementations.")
355 (license license:bsd-2)))
356
357 (define-public sbcl-cl-unicode
358 (package
359 (inherit sbcl-cl-unicode-base)
360 (name "sbcl-cl-unicode")
361 (inputs
362 `(("cl-unicode/base" ,sbcl-cl-unicode-base)
363 ,@(package-inputs sbcl-cl-unicode-base)))
364 (native-inputs
365 `(("flexi-streams" ,sbcl-flexi-streams)))
366 (arguments '())))
367
368 (define-public ecl-cl-unicode
369 (sbcl-package->ecl-package sbcl-cl-unicode))
370
371 (define-public cl-unicode
372 (sbcl-package->cl-source-package sbcl-cl-unicode))
373
374 (define-public sbcl-zpb-ttf
375 (package
376 (name "sbcl-zpb-ttf")
377 (version "1.0.3")
378 (source
379 (origin
380 (method git-fetch)
381 (uri (git-reference
382 (url "https://github.com/xach/zpb-ttf.git")
383 (commit (string-append "release-" version))))
384 (file-name (git-file-name name version))
385 (sha256
386 (base32
387 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
388 (build-system asdf-build-system/sbcl)
389 (home-page "https://github.com/xach/zpb-ttf")
390 (synopsis "TrueType font file access for Common Lisp")
391 (description
392 "ZPB-TTF is a TrueType font file parser that provides an interface for
393 reading typographic metrics, glyph outlines, and other information from the
394 file.")
395 (license license:bsd-2)))
396
397 (define-public ecl-zpb-ttf
398 (sbcl-package->ecl-package sbcl-zpb-ttf))
399
400 (define-public cl-zpb-ttf
401 (sbcl-package->cl-source-package sbcl-zpb-ttf))
402
403 (define-public sbcl-cl-aa
404 (package
405 (name "sbcl-cl-aa")
406 (version "0.1.5")
407 (source
408 (origin
409 (method url-fetch)
410 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
411 "files/cl-vectors-" version ".tar.gz"))
412 (sha256
413 (base32
414 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
415 (build-system asdf-build-system/sbcl)
416 (arguments '(#:asd-file "cl-aa.asd"))
417 (home-page "http://projects.tuxee.net/cl-vectors/")
418 (synopsis "Polygon rasterizer")
419 (description
420 "This is a Common Lisp library implementing the AA polygon rasterization
421 algorithm from the @url{http://antigrain.com, Antigrain} project.")
422 (license license:expat)))
423
424 (define-public ecl-cl-aa
425 (sbcl-package->ecl-package sbcl-cl-aa))
426
427 (define-public cl-aa
428 (sbcl-package->cl-source-package sbcl-cl-aa))
429
430 (define-public sbcl-cl-paths
431 (package
432 (inherit sbcl-cl-aa)
433 (name "sbcl-cl-paths")
434 (arguments '(#:asd-file "cl-paths.asd"))
435 (synopsis "Facilities to create and manipulate vectorial paths")
436 (description
437 "This package provides facilities to create and manipulate vectorial
438 paths.")))
439
440 (define-public ecl-cl-paths
441 (sbcl-package->ecl-package sbcl-cl-paths))
442
443 (define-public cl-paths
444 (sbcl-package->cl-source-package sbcl-cl-paths))
445
446 (define-public sbcl-cl-paths-ttf
447 (package
448 (inherit sbcl-cl-aa)
449 (name "sbcl-cl-paths-ttf")
450 (arguments '(#:asd-file "cl-paths-ttf.asd"))
451 (inputs
452 `(("cl-paths" ,sbcl-cl-paths)
453 ("zpb-ttf" ,sbcl-zpb-ttf)))
454 (synopsis "Facilities to create and manipulate vectorial paths")
455 (description
456 "This package provides facilities to create and manipulate vectorial
457 paths.")))
458
459 (define-public ecl-cl-paths-ttf
460 (sbcl-package->ecl-package sbcl-cl-paths-ttf))
461
462 (define-public cl-paths-ttf
463 (sbcl-package->cl-source-package sbcl-cl-paths-ttf))
464
465 (define-public sbcl-cl-vectors
466 (package
467 (inherit sbcl-cl-aa)
468 (name "sbcl-cl-vectors")
469 (arguments '(#:asd-file "cl-vectors.asd"))
470 (inputs
471 `(("cl-aa" ,sbcl-cl-aa)
472 ("cl-paths" ,sbcl-cl-paths)))
473 (synopsis "Create, transform and render anti-aliased vectorial paths")
474 (description
475 "This is a pure Common Lisp library to create, transform and render
476 anti-aliased vectorial paths.")))
477
478 (define-public ecl-cl-vectors
479 (sbcl-package->ecl-package sbcl-cl-vectors))
480
481 (define-public cl-vectors
482 (sbcl-package->cl-source-package sbcl-cl-vectors))
483
484 (define-public sbcl-spatial-trees
485 ;; There have been no releases.
486 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
487 (revision "1"))
488 (package
489 (name "sbcl-spatial-trees")
490 (version (git-version "0" revision commit))
491 (source
492 (origin
493 (method git-fetch)
494 (uri (git-reference
495 (url "https://github.com/rpav/spatial-trees.git")
496 (commit commit)))
497 (file-name (git-file-name name version))
498 (sha256
499 (base32
500 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
501 (build-system asdf-build-system/sbcl)
502 (arguments
503 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
504 #:asd-file "spatial-trees.asd"
505 #:test-asd-file "spatial-trees.test.asd"))
506 (native-inputs
507 `(("fiveam" ,sbcl-fiveam)))
508 (home-page "https://github.com/rpav/spatial-trees")
509 (synopsis "Dynamic index data structures for spatially-extended data")
510 (description
511 "Spatial-trees is a set of dynamic index data structures for
512 spatially-extended data.")
513 (license license:bsd-3))))
514
515 (define-public ecl-spatial-trees
516 (sbcl-package->ecl-package sbcl-spatial-trees))
517
518 (define-public cl-spatial-trees
519 (sbcl-package->cl-source-package sbcl-spatial-trees))
520
521 (define-public sbcl-flexichain
522 ;; There are no releases.
523 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
524 (revision "1"))
525 (package
526 (name "sbcl-flexichain")
527 (version "1.5.1")
528 (source
529 (origin
530 (method git-fetch)
531 (uri (git-reference
532 (url "https://github.com/robert-strandh/Flexichain.git")
533 (commit commit)))
534 (file-name (git-file-name name version))
535 (sha256
536 (base32
537 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
538 (build-system asdf-build-system/sbcl)
539 (home-page "https://github.com/robert-strandh/Flexichain.git")
540 (synopsis "Dynamically add elements to or remove them from sequences")
541 (description
542 "This package provides an implementation of the flexichain protocol,
543 allowing client code to dynamically add elements to, and delete elements from
544 a sequence (or chain) of such elements.")
545 (license license:lgpl2.1+))))
546
547 (define-public ecl-flexichain
548 (sbcl-package->ecl-package sbcl-flexichain))
549
550 (define-public cl-flexichain
551 (sbcl-package->cl-source-package sbcl-flexichain))
552
553 (define-public sbcl-cl-pdf
554 ;; There are no releases
555 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
556 (revision "1"))
557 (package
558 (name "sbcl-cl-pdf")
559 (version (git-version "0" revision commit))
560 (source
561 (origin
562 (method git-fetch)
563 (uri (git-reference
564 (url "https://github.com/mbattyani/cl-pdf.git")
565 (commit commit)))
566 (file-name (git-file-name name version))
567 (sha256
568 (base32
569 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
570 (build-system asdf-build-system/sbcl)
571 (inputs
572 `(("iterate" ,sbcl-iterate)
573 ("zpb-ttf" ,sbcl-zpb-ttf)))
574 (home-page "https://github.com/mbattyani/cl-pdf")
575 (synopsis "Common Lisp library for generating PDF files")
576 (description
577 "CL-PDF is a cross-platform Common Lisp library for generating PDF
578 files.")
579 (license license:bsd-2))))
580
581 (define-public ecl-cl-pdf
582 (sbcl-package->ecl-package sbcl-cl-pdf))
583
584 (define-public cl-pdf
585 (sbcl-package->cl-source-package sbcl-cl-pdf))
586
587 (define-public sbcl-clx
588 (package
589 (name "sbcl-clx")
590 (version "0.7.5")
591 (source
592 (origin
593 (method git-fetch)
594 (uri
595 (git-reference
596 (url "https://github.com/sharplispers/clx.git")
597 (commit version)))
598 (sha256
599 (base32
600 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
601 (file-name (string-append "clx-" version))))
602 (build-system asdf-build-system/sbcl)
603 (native-inputs
604 `(("fiasco" ,sbcl-fiasco)))
605 (home-page "http://www.cliki.net/portable-clx")
606 (synopsis "X11 client library for Common Lisp")
607 (description "CLX is an X11 client library for Common Lisp. The code was
608 originally taken from a CMUCL distribution, was modified somewhat in order to
609 make it compile and run under SBCL, then a selection of patches were added
610 from other CLXes around the net.")
611 (license license:x11)))
612
613 (define-public cl-clx
614 (sbcl-package->cl-source-package sbcl-clx))
615
616 (define-public ecl-clx
617 (sbcl-package->ecl-package sbcl-clx))
618
619 (define-public sbcl-cl-ppcre-unicode
620 (package (inherit sbcl-cl-ppcre)
621 (name "sbcl-cl-ppcre-unicode")
622 (arguments
623 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
624 #:asd-file "cl-ppcre-unicode.asd"))
625 (inputs
626 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
627 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))))
628
629 (define-public ecl-cl-ppcre-unicode
630 (sbcl-package->ecl-package sbcl-cl-ppcre-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 (version "1.5")
966 (source
967 (origin
968 (method url-fetch)
969 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
970 "iterate-" version ".tar.gz"))
971 (sha256
972 (base32
973 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
974 (build-system asdf-build-system/sbcl)
975 (native-inputs
976 `(("rt" ,sbcl-rt)))
977 (home-page "https://common-lisp.net/project/iterate/")
978 (synopsis "Iteration construct for Common Lisp")
979 (description "@code{iterate} is an iteration construct for Common Lisp.
980 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
981
982 @itemize
983 @item it is extensible,
984 @item it helps editors like Emacs indent iterate forms by having a more
985 lisp-like syntax, and
986 @item it isn't part of the ANSI standard for Common Lisp.
987 @end itemize\n")
988 (license license:expat)))
989
990 (define-public cl-iterate
991 (sbcl-package->cl-source-package sbcl-iterate))
992
993 (define-public ecl-iterate
994 (sbcl-package->ecl-package sbcl-iterate))
995
996 (define-public sbcl-cl-uglify-js
997 ;; There have been many bug fixes since the 2010 release.
998 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
999 (revision "1"))
1000 (package
1001 (name "sbcl-cl-uglify-js")
1002 (version (string-append "0.1-" revision "." (string-take commit 9)))
1003 (source
1004 (origin
1005 (method git-fetch)
1006 (uri (git-reference
1007 (url "https://github.com/mishoo/cl-uglify-js.git")
1008 (commit commit)))
1009 (file-name (git-file-name name version))
1010 (sha256
1011 (base32
1012 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1013 (build-system asdf-build-system/sbcl)
1014 (inputs
1015 `(("sbcl-parse-js" ,sbcl-parse-js)
1016 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1017 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1018 ("sbcl-parse-number" ,sbcl-parse-number)
1019 ("sbcl-iterate" ,sbcl-iterate)))
1020 (home-page "https://github.com/mishoo/cl-uglify-js")
1021 (synopsis "JavaScript compressor library for Common Lisp")
1022 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1023 compressor. It works on data produced by @code{parse-js} to generate a
1024 @dfn{minified} version of the code. Currently it can:
1025
1026 @itemize
1027 @item reduce variable names (usually to single letters)
1028 @item join consecutive @code{var} statements
1029 @item resolve simple binary expressions
1030 @item group most consecutive statements using the @code{sequence} operator (comma)
1031 @item remove unnecessary blocks
1032 @item convert @code{IF} expressions in various ways that result in smaller code
1033 @item remove some unreachable code
1034 @end itemize\n")
1035 (license license:zlib))))
1036
1037 (define-public cl-uglify-js
1038 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1039
1040 (define-public uglify-js
1041 (package
1042 (inherit sbcl-cl-uglify-js)
1043 (name "uglify-js")
1044 (build-system trivial-build-system)
1045 (arguments
1046 `(#:modules ((guix build utils))
1047 #:builder
1048 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1049 (script (string-append bin "uglify-js")))
1050 (use-modules (guix build utils))
1051 (mkdir-p bin)
1052 (with-output-to-file script
1053 (lambda _
1054 (format #t "#!~a/bin/sbcl --script
1055 (require :asdf)
1056 (push (truename \"~a/lib/sbcl\") asdf:*central-registry*)"
1057 (assoc-ref %build-inputs "sbcl")
1058 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1059 ;; FIXME: cannot use progn here because otherwise it fails to
1060 ;; find cl-uglify-js.
1061 (for-each
1062 write
1063 '(;; Quiet, please!
1064 (let ((*standard-output* (make-broadcast-stream))
1065 (*error-output* (make-broadcast-stream)))
1066 (asdf:load-system :cl-uglify-js))
1067 (let ((file (cadr *posix-argv*)))
1068 (if file
1069 (format t "~a"
1070 (cl-uglify-js:ast-gen-code
1071 (cl-uglify-js:ast-mangle
1072 (cl-uglify-js:ast-squeeze
1073 (with-open-file (in file)
1074 (parse-js:parse-js in))))
1075 :beautify nil))
1076 (progn
1077 (format *error-output*
1078 "Please provide a JavaScript file.~%")
1079 (sb-ext:exit :code 1))))))))
1080 (chmod script #o755)
1081 #t)))
1082 (inputs
1083 `(("sbcl" ,sbcl)
1084 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1085 (synopsis "JavaScript compressor")))
1086
1087 (define-public sbcl-cl-strings
1088 (let ((revision "1")
1089 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1090 (package
1091 (name "sbcl-cl-strings")
1092 (version (git-version "0.0.0" revision commit))
1093 (source
1094 (origin
1095 (method git-fetch)
1096 (uri (git-reference
1097 (url "https://github.com/diogoalexandrefranco/cl-strings")
1098 (commit commit)))
1099 (sha256
1100 (base32
1101 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1102 (file-name (string-append "cl-strings-" version "-checkout"))))
1103 (build-system asdf-build-system/sbcl)
1104 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1105 (description
1106 "@command{cl-strings} is a small, portable, dependency-free set of
1107 utilities that make it even easier to manipulate text in Common Lisp. It has
1108 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1109 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1110 (license license:expat))))
1111
1112 (define-public cl-strings
1113 (sbcl-package->cl-source-package sbcl-cl-strings))
1114
1115 (define-public ecl-cl-strings
1116 (sbcl-package->ecl-package sbcl-cl-strings))
1117
1118 (define-public sbcl-trivial-features
1119 (package
1120 (name "sbcl-trivial-features")
1121 (version "0.8")
1122 (source
1123 (origin
1124 (method git-fetch)
1125 (uri (git-reference
1126 (url "https://github.com/trivial-features/trivial-features.git")
1127 (commit (string-append "v" version))))
1128 (file-name (git-file-name "trivial-features" version))
1129 (sha256
1130 (base32 "0ccv7dqyrk55xga78i5vzlic7mdwp28in3g1a8fqhlk6626scsq9"))))
1131 (build-system asdf-build-system/sbcl)
1132 (arguments '(#:tests? #f))
1133 (home-page "http://cliki.net/trivial-features")
1134 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1135 (description "Trivial-features ensures that @code{*FEATURES*} is
1136 consistent across multiple Common Lisp implementations.")
1137 (license license:expat)))
1138
1139 (define-public cl-trivial-features
1140 (sbcl-package->cl-source-package sbcl-trivial-features))
1141
1142 (define-public ecl-trivial-features
1143 (sbcl-package->ecl-package sbcl-trivial-features))
1144
1145 (define-public sbcl-hu.dwim.asdf
1146 (package
1147 (name "sbcl-hu.dwim.asdf")
1148 (version "20190521")
1149 (source
1150 (origin
1151 (method url-fetch)
1152 (uri (string-append "http://beta.quicklisp.org/archive/hu.dwim.asdf/"
1153 "2019-05-21/hu.dwim.asdf-" version "-darcs.tgz"))
1154 (sha256
1155 (base32
1156 "0rsbv71vyszy8w35yjwb5h6zcmknjq223hkzir79y72qdsc6sabn"))))
1157 (build-system asdf-build-system/sbcl)
1158 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1159 (synopsis "Extensions to ASDF")
1160 (description "Various ASDF extensions such as attached test and
1161 documentation system, explicit development support, etc.")
1162 (license license:public-domain)))
1163
1164 (define-public cl-hu.dwim.asdf
1165 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1166
1167 (define-public ecl-hu.dwim.asdf
1168 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1169
1170 (define-public sbcl-hu.dwim.stefil
1171 (let ((commit "ab6d1aa8995878a1b66d745dfd0ba021090bbcf9"))
1172 (package
1173 (name "sbcl-hu.dwim.stefil")
1174 (version (git-version "0.0.0" "1" commit))
1175 (source
1176 (origin
1177 (method git-fetch)
1178 (uri
1179 (git-reference
1180 (url "https://gitlab.common-lisp.net/xcvb/hu.dwim.stefil.git")
1181 (commit commit)))
1182 (sha256
1183 (base32 "1d8yccw65zj3zh46cbi3x6nmn1dwdb76s9d0av035077mvyirqqp"))
1184 (file-name (git-file-name "hu.dwim.stefil" version))))
1185 (build-system asdf-build-system/sbcl)
1186 (native-inputs
1187 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1188 (inputs
1189 `(("sbcl-alexandria" ,sbcl-alexandria)))
1190 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.stefil")
1191 (synopsis "Simple test framework")
1192 (description "Stefil is a simple test framework for Common Lisp,
1193 with a focus on interactive development.")
1194 (license license:public-domain))))
1195
1196 (define-public cl-hu.dwim.stefil
1197 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1198
1199 (define-public ecl-hu.dwim.stefil
1200 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1201
1202 (define-public sbcl-babel
1203 (package
1204 (name "sbcl-babel")
1205 (version "0.5.0")
1206 (source
1207 (origin
1208 (method git-fetch)
1209 (uri (git-reference
1210 (url "https://github.com/cl-babel/babel.git")
1211 (commit (string-append "v" version))))
1212 (file-name (git-file-name "babel" version))
1213 (sha256
1214 (base32 "139a8rn2gnhj082n8jg01gc8fyr63hkj57hgrnmb3d1r327yc77f"))))
1215 (build-system asdf-build-system/sbcl)
1216 (native-inputs
1217 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1218 (inputs
1219 `(("sbcl-alexandria" ,sbcl-alexandria)
1220 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1221 (home-page "https://common-lisp.net/project/babel/")
1222 (synopsis "Charset encoding and decoding library")
1223 (description "Babel is a charset encoding and decoding library, not unlike
1224 GNU libiconv, but completely written in Common Lisp.")
1225 (license license:expat)))
1226
1227 (define-public cl-babel
1228 (sbcl-package->cl-source-package sbcl-babel))
1229
1230 (define-public ecl-babel
1231 (sbcl-package->ecl-package sbcl-babel))
1232
1233 (define-public sbcl-cl-yacc
1234 (package
1235 (name "sbcl-cl-yacc")
1236 (version "0.3")
1237 (source
1238 (origin
1239 (method git-fetch)
1240 (uri (git-reference
1241 (url "https://github.com/jech/cl-yacc")
1242 (commit (string-append "cl-yacc-" version))))
1243 (sha256
1244 (base32
1245 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1246 (file-name (string-append "cl-yacc-" version "-checkout"))))
1247 (build-system asdf-build-system/sbcl)
1248 (arguments
1249 `(#:asd-file "yacc.asd"
1250 #:asd-system-name "yacc"))
1251 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1252 (description
1253 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1254 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1255
1256 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1257 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1258 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1259 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1260 (license license:expat)))
1261
1262 (define-public cl-yacc
1263 (sbcl-package->cl-source-package sbcl-cl-yacc))
1264
1265 (define-public ecl-cl-yacc
1266 (sbcl-package->ecl-package sbcl-cl-yacc))
1267
1268 (define-public sbcl-jpl-util
1269 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1270 (package
1271 (name "sbcl-jpl-util")
1272 (version "20151005")
1273 (source
1274 (origin
1275 (method git-fetch)
1276 (uri (git-reference
1277 ;; Quicklisp uses this fork.
1278 (url "https://github.com/hawkir/cl-jpl-util")
1279 (commit commit)))
1280 (file-name
1281 (git-file-name "jpl-util" version))
1282 (sha256
1283 (base32
1284 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1285 (build-system asdf-build-system/sbcl)
1286 (synopsis "Collection of Common Lisp utility functions and macros")
1287 (description
1288 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1289 and macros, primarily for software projects written in CL by the author.")
1290 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1291 (license license:isc))))
1292
1293 (define-public cl-jpl-util
1294 (sbcl-package->cl-source-package sbcl-jpl-util))
1295
1296 (define-public ecl-jpl-util
1297 (sbcl-package->ecl-package sbcl-jpl-util))
1298
1299 (define-public sbcl-jpl-queues
1300 (package
1301 (name "sbcl-jpl-queues")
1302 (version "0.1")
1303 (source
1304 (origin
1305 (method url-fetch)
1306 (uri (string-append
1307 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1308 version
1309 ".tar.gz"))
1310 (sha256
1311 (base32
1312 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1313 (build-system asdf-build-system/sbcl)
1314 (inputs
1315 `(("jpl-util" ,sbcl-jpl-util)
1316 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1317 (arguments
1318 ;; Tests seem to be broken.
1319 `(#:tests? #f))
1320 (synopsis "Common Lisp library implementing a few different kinds of queues")
1321 (description
1322 "A Common Lisp library implementing a few different kinds of queues:
1323
1324 @itemize
1325 @item Bounded and unbounded FIFO queues.
1326 @item Lossy bounded FIFO queues that drop elements when full.
1327 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1328 @end itemize
1329
1330 Additionally, a synchronization wrapper is provided to make any queue
1331 conforming to the @command{jpl-queues} API thread-safe for lightweight
1332 multithreading applications. (See Calispel for a more sophisticated CL
1333 multithreaded message-passing library with timeouts and alternation among
1334 several blockable channels.)")
1335 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1336 (license license:isc)))
1337
1338 (define-public cl-jpl-queues
1339 (sbcl-package->cl-source-package sbcl-jpl-queues))
1340
1341 (define-public ecl-jpl-queues
1342 (sbcl-package->ecl-package sbcl-jpl-queues))
1343
1344 (define-public sbcl-eos
1345 (let ((commit "b0faca83781ead9a588661e37bd47f90362ccd94"))
1346 (package
1347 (name "sbcl-eos")
1348 (version (git-version "0.0.0" "1" commit))
1349 (source
1350 (origin
1351 (method git-fetch)
1352 (uri (git-reference
1353 (url "https://github.com/adlai/Eos")
1354 (commit commit)))
1355 (sha256
1356 (base32
1357 "1bq8cfg087iyxmxi1mwgx5cfgy3b8ydrf81xljcis8qbgb2vszph"))
1358 (file-name (git-file-name "eos" version))))
1359 (build-system asdf-build-system/sbcl)
1360 (synopsis "Unit Testing for Common Lisp")
1361 (description
1362 "Eos was a unit testing library for Common Lisp.
1363 It began as a fork of FiveAM; however, FiveAM development has continued, while
1364 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1365 (home-page "https://github.com/adlai/Eos")
1366 (license license:expat))))
1367
1368 (define-public cl-eos
1369 (sbcl-package->cl-source-package sbcl-eos))
1370
1371 (define-public ecl-eos
1372 (sbcl-package->ecl-package sbcl-eos))
1373
1374 (define-public sbcl-esrap
1375 (let ((commit "133be8b05c2aae48696fe5b739eea2fa573fa48d"))
1376 (package
1377 (name "sbcl-esrap")
1378 (version (git-version "0.0.0" "1" commit))
1379 (source
1380 (origin
1381 (method git-fetch)
1382 (uri (git-reference
1383 (url "https://github.com/nikodemus/esrap")
1384 (commit commit)))
1385 (sha256
1386 (base32
1387 "02d5clihsdryhf7pix8c5di2571fdsffh75d40fkzhws90r5mksl"))
1388 (file-name (git-file-name "esrap" version))))
1389 (build-system asdf-build-system/sbcl)
1390 (native-inputs
1391 `(("eos" ,sbcl-eos))) ;For testing only.
1392 (inputs
1393 `(("alexandria" ,sbcl-alexandria)))
1394 (synopsis "Common Lisp packrat parser")
1395 (description
1396 "A packrat parser for Common Lisp.
1397 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1398
1399 @itemize
1400 @item dynamic redefinition of nonterminals
1401 @item inline grammars
1402 @item semantic predicates
1403 @item introspective facilities (describing grammars, tracing, setting breaks)
1404 @end itemize\n")
1405 (home-page "https://nikodemus.github.io/esrap/")
1406 (license license:expat))))
1407
1408 (define-public cl-esrap
1409 (sbcl-package->cl-source-package sbcl-esrap))
1410
1411 (define-public ecl-esrap
1412 (sbcl-package->ecl-package sbcl-esrap))
1413
1414 (define-public sbcl-split-sequence
1415 (package
1416 (name "sbcl-split-sequence")
1417 (version "2.0.0")
1418 (source
1419 (origin
1420 (method git-fetch)
1421 (uri (git-reference
1422 (url "https://github.com/sharplispers/split-sequence")
1423 (commit (string-append "v" version))))
1424 (sha256
1425 (base32
1426 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
1427 (file-name (git-file-name "split-sequence" version))))
1428 (build-system asdf-build-system/sbcl)
1429 (native-inputs
1430 `(("fiveam" ,sbcl-fiveam)))
1431 (synopsis "Member of the Common Lisp Utilities family of programs")
1432 (description
1433 "Splits sequence into a list of subsequences delimited by objects
1434 satisfying the test.")
1435 (home-page "https://cliki.net/split-sequence")
1436 (license license:expat)))
1437
1438 (define-public cl-split-sequence
1439 (sbcl-package->cl-source-package sbcl-split-sequence))
1440
1441 (define-public ecl-split-sequence
1442 (sbcl-package->ecl-package sbcl-split-sequence))
1443
1444 (define-public sbcl-html-encode
1445 (package
1446 (name "sbcl-html-encode")
1447 (version "1.2")
1448 (source
1449 (origin
1450 (method url-fetch)
1451 (uri (string-append
1452 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1453 version ".tgz"))
1454 (sha256
1455 (base32
1456 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1457 (file-name (string-append "colorize" version "-checkout"))))
1458 (build-system asdf-build-system/sbcl)
1459 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1460 (description
1461 "A library for encoding text in various web-savvy encodings.")
1462 (home-page "http://quickdocs.org/html-encode/")
1463 (license license:expat)))
1464
1465 (define-public cl-html-encode
1466 (sbcl-package->cl-source-package sbcl-html-encode))
1467
1468 (define-public ecl-html-encode
1469 (sbcl-package->ecl-package sbcl-html-encode))
1470
1471 (define-public sbcl-colorize
1472 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1473 (package
1474 (name "sbcl-colorize")
1475 (version (git-version "0.0.0" "1" commit))
1476 (source
1477 (origin
1478 (method git-fetch)
1479 (uri (git-reference
1480 (url "https://github.com/kingcons/colorize")
1481 (commit commit)))
1482 (sha256
1483 (base32
1484 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1485 (file-name (git-file-name "colorize" version))))
1486 (build-system asdf-build-system/sbcl)
1487 (inputs
1488 `(("alexandria" ,sbcl-alexandria)
1489 ("split-sequence" ,sbcl-split-sequence)
1490 ("html-encode" ,sbcl-html-encode)))
1491 (synopsis "Common Lisp for syntax highlighting")
1492 (description
1493 "@command{colorize} is a Lisp library for syntax highlighting
1494 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1495 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1496 (home-page "https://github.com/kingcons/colorize")
1497 ;; TODO: Missing license?
1498 (license license:expat))))
1499
1500 (define-public cl-colorize
1501 (sbcl-package->cl-source-package sbcl-colorize))
1502
1503 (define-public ecl-colorize
1504 (sbcl-package->ecl-package sbcl-colorize))
1505
1506 (define-public sbcl-3bmd
1507 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1508 (package
1509 (name "sbcl-3bmd")
1510 (version (git-version "0.0.0" "1" commit))
1511 (source
1512 (origin
1513 (method git-fetch)
1514 (uri (git-reference
1515 (url "https://github.com/3b/3bmd")
1516 (commit commit)))
1517 (sha256
1518 (base32
1519 "1rgv3gi7wf963ikmmpk132wgn0icddf226gq3bmcnk1fr3v9gf2f"))
1520 (file-name (git-file-name "3bmd" version))))
1521 (build-system asdf-build-system/sbcl)
1522 (arguments
1523 ;; FIXME: We need to specify the name because the build-system thinks
1524 ;; "3" is a version marker.
1525 `(#:asd-system-name "3bmd"))
1526 (inputs
1527 `(("esrap" ,sbcl-esrap)
1528 ("split-sequence" ,sbcl-split-sequence)))
1529 (synopsis "Markdown processor in Command Lisp using esrap parser")
1530 (description
1531 "Common Lisp Markdown -> HTML converter, using @command{esrap} for
1532 parsing, and grammar based on @command{peg-markdown}.")
1533 (home-page "https://github.com/3b/3bmd")
1534 (license license:expat))))
1535
1536 (define-public cl-3bmd
1537 (sbcl-package->cl-source-package sbcl-3bmd))
1538
1539 (define-public ecl-3bmd
1540 (sbcl-package->ecl-package sbcl-3bmd))
1541
1542 (define-public sbcl-3bmd-ext-code-blocks
1543 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1544 (package
1545 (inherit sbcl-3bmd)
1546 (name "sbcl-3bmd-ext-code-blocks")
1547 (arguments
1548 `(#:asd-system-name "3bmd-ext-code-blocks"
1549 #:asd-file "3bmd-ext-code-blocks.asd"))
1550 (inputs
1551 `(("3bmd" ,sbcl-3bmd)
1552 ("colorize" ,sbcl-colorize)))
1553 (synopsis "3bmd extension which adds support for GitHub-style fenced
1554 code blocks")
1555 (description
1556 "3bmd extension which adds support for GitHub-style fenced code blocks,
1557 with @command{colorize} support."))))
1558
1559 (define-public cl-3bmd-ext-code-blocks
1560 (sbcl-package->cl-source-package sbcl-3bmd-ext-code-blocks))
1561
1562 (define-public ecl-3bmd-ext-code-blocks
1563 (sbcl-package->ecl-package sbcl-3bmd-ext-code-blocks))
1564
1565 (define-public sbcl-cl-fad
1566 (package
1567 (name "sbcl-cl-fad")
1568 (version "0.7.6")
1569 (source
1570 (origin
1571 (method git-fetch)
1572 (uri (git-reference
1573 (url "https://github.com/edicl/cl-fad/")
1574 (commit (string-append "v" version))))
1575 (sha256
1576 (base32
1577 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
1578 (file-name (string-append "cl-fad" version "-checkout"))))
1579 (build-system asdf-build-system/sbcl)
1580 (inputs
1581 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
1582 (synopsis "Portable pathname library for Common Lisp")
1583 (description
1584 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
1585 Lisp's standard pathname functions. It is intended to provide some
1586 unification between current CL implementations on Windows, OS X, Linux, and
1587 Unix. Most of the code was written by Peter Seibel for his book Practical
1588 Common Lisp.")
1589 (home-page "https://edicl.github.io/cl-fad/")
1590 (license license:bsd-2)))
1591
1592 (define-public cl-fad
1593 (sbcl-package->cl-source-package sbcl-cl-fad))
1594
1595 (define-public ecl-cl-fad
1596 (sbcl-package->ecl-package sbcl-cl-fad))
1597
1598 (define-public sbcl-rt
1599 (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
1600 (revision "1"))
1601 (package
1602 (name "sbcl-rt")
1603 (version (git-version "1990.12.19" revision commit))
1604 (source
1605 (origin
1606 (method git-fetch)
1607 (uri (git-reference
1608 (url "http://git.kpe.io/rt.git")
1609 (commit commit)))
1610 (file-name (git-file-name name version))
1611 (sha256
1612 (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
1613 (build-system asdf-build-system/sbcl)
1614 (synopsis "MIT Regression Tester")
1615 (description
1616 "RT provides a framework for writing regression test suites.")
1617 (home-page "https://www.cliki.net/rt")
1618 (license license:expat))))
1619
1620 (define-public cl-rt
1621 (sbcl-package->cl-source-package sbcl-rt))
1622
1623 (define-public ecl-rt
1624 (sbcl-package->ecl-package sbcl-rt))
1625
1626 (define-public sbcl-nibbles
1627 (package
1628 (name "sbcl-nibbles")
1629 (version "0.14")
1630 (source
1631 (origin
1632 (method git-fetch)
1633 (uri (git-reference
1634 (url "https://github.com/sharplispers/nibbles/")
1635 (commit (string-append "v" version))))
1636 (sha256
1637 (base32
1638 "1v7qfgpvdr6nz7v63dj69d26dis0kff3rd8xamr1llfdvza2pm8f"))
1639 (file-name (git-file-name "nibbles" version))))
1640 (build-system asdf-build-system/sbcl)
1641 (native-inputs
1642 ;; Tests only.
1643 `(("rt" ,sbcl-rt)))
1644 (synopsis "Common Lisp library for accessing octet-addressed blocks of data")
1645 (description
1646 "When dealing with network protocols and file formats, it's common to
1647 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
1648 flavors. Common Lisp sort of supports this by specifying :element-type for
1649 streams, but that facility is underspecified and there's nothing similar for
1650 read/write from octet vectors. What most people wind up doing is rolling their
1651 own small facility for their particular needs and calling it a day.
1652
1653 This library attempts to be comprehensive and centralize such
1654 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
1655 vectors in signed or unsigned flavors are provided; these functions are also
1656 SETFable. Since it's sometimes desirable to read/write directly from streams,
1657 functions for doing so are also provided. On some implementations,
1658 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
1659 also be supported.")
1660 (home-page "https://github.com/sharplispers/nibbles")
1661 (license license:bsd-3)))
1662
1663 (define-public cl-nibbles
1664 (sbcl-package->cl-source-package sbcl-nibbles))
1665
1666 (define-public ecl-nibbles
1667 (sbcl-package->ecl-package sbcl-nibbles))
1668
1669 (define-public sbcl-ironclad
1670 (package
1671 (name "sbcl-ironclad")
1672 (version "0.48")
1673 (source
1674 (origin
1675 (method git-fetch)
1676 (uri (git-reference
1677 (url "https://github.com/sharplispers/ironclad/")
1678 (commit (string-append "v" version))))
1679 (sha256
1680 (base32
1681 "1wzczpgvgjc5h8ghz75kxi7iykmqxqchdhgdhkif9j99kyqvbyam"))
1682 (file-name (git-file-name name version))))
1683 (build-system asdf-build-system/sbcl)
1684 (native-inputs
1685 ;; Tests only.
1686 `(("rt" ,sbcl-rt)))
1687 (inputs
1688 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1689 ("flexi-streams" ,sbcl-flexi-streams)))
1690 (synopsis "Cryptographic toolkit written in Common Lisp")
1691 (description
1692 "Ironclad is a cryptography library written entirely in Common Lisp.
1693 It includes support for several popular ciphers, digests, MACs and public key
1694 cryptography algorithms. For several implementations that support Gray
1695 streams, support is included for convenient stream wrappers.")
1696 (home-page "https://github.com/sharplispers/ironclad")
1697 (license license:bsd-3)))
1698
1699 (define-public cl-ironclad
1700 (sbcl-package->cl-source-package sbcl-ironclad))
1701
1702 (define-public ecl-ironclad
1703 (sbcl-package->ecl-package sbcl-ironclad))
1704
1705 (define-public sbcl-named-readtables
1706 (let ((commit "4dfb89fa1af6b305b6492b8af042f5190c11e9fc")
1707 (revision "1"))
1708 (package
1709 (name "sbcl-named-readtables")
1710 (version (string-append "0.9-" revision "." (string-take commit 7)))
1711 (source
1712 (origin
1713 (method git-fetch)
1714 (uri (git-reference
1715 (url "https://github.com/melisgl/named-readtables.git")
1716 (commit commit)))
1717 (sha256
1718 (base32 "083kgh5462iqbb4px6kq8s7sggvpvkm36hx4qi9rnaw53b6ilqkk"))
1719 (file-name (git-file-name "named-readtables" version))))
1720 (build-system asdf-build-system/sbcl)
1721 (arguments
1722 ;; Tests seem to be broken.
1723 `(#:tests? #f))
1724 (home-page "https://github.com/melisgl/named-readtables/")
1725 (synopsis "Library that creates a namespace for named readtables")
1726 (description "Named readtables is a library that creates a namespace for
1727 named readtables, which is akin to package namespacing in Common Lisp.")
1728 (license license:bsd-3))))
1729
1730 (define-public cl-named-readtables
1731 (sbcl-package->cl-source-package sbcl-named-readtables))
1732
1733 (define-public ecl-named-readtables
1734 (sbcl-package->ecl-package sbcl-named-readtables))
1735
1736 (define-public sbcl-pythonic-string-reader
1737 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
1738 (package
1739 (name "sbcl-pythonic-string-reader")
1740 (version (git-version "0.0.0" "1" commit))
1741 (source
1742 (origin
1743 (method git-fetch)
1744 (uri (git-reference
1745 (url "https://github.com/smithzvk/pythonic-string-reader/")
1746 (commit commit)))
1747 (sha256
1748 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
1749 (file-name (git-file-name "pythonic-string-reader" version))))
1750 (build-system asdf-build-system/sbcl)
1751 (inputs
1752 `(("named-readtables" ,sbcl-named-readtables)))
1753 (home-page "https://github.com/smithzvk/pythonic-string-reader")
1754 (synopsis "Read table modification inspired by Python's three quote strings")
1755 (description "This piece of code sets up some reader macros that make it
1756 simpler to input string literals which contain backslashes and double quotes
1757 This is very useful for writing complicated docstrings and, as it turns out,
1758 writing code that contains string literals that contain code themselves.")
1759 (license license:bsd-3))))
1760
1761 (define-public cl-pythonic-string-reader
1762 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
1763
1764 (define-public ecl-pythonic-string-reader
1765 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
1766
1767 ;; SLIME does not have a ASDF system definition to build all of Swank. As a
1768 ;; result, the asdf-build-system/sbcl will produce an almost empty package.
1769 ;; Some work was done to fix this at
1770 ;; https://github.com/sionescu/slime/tree/swank-asdf but it was never merged
1771 ;; and is now lagging behind. Building SBCL fasls might not be worth the
1772 ;; hassle, so let's just ship the source then.
1773 (define-public cl-slime-swank
1774 (package
1775 (name "cl-slime-swank")
1776 (version "2.24")
1777 (source
1778 (origin
1779 (file-name (string-append name "-" version ".tar.gz"))
1780 (method git-fetch)
1781 (uri (git-reference
1782 (url "https://github.com/slime/slime/")
1783 (commit (string-append "v" version))))
1784 (sha256
1785 (base32
1786 "0js24x42m7b5iymb4rxz501dff19vav5pywnzv50b673rbkaaqvh"))))
1787 (build-system asdf-build-system/source)
1788 (home-page "https://github.com/slime/slime")
1789 (synopsis "Common Lisp Swank server")
1790 (description
1791 "This is only useful if you want to start a Swank server in a Lisp
1792 processes that doesn't run under Emacs. Lisp processes created by
1793 @command{M-x slime} automatically start the server.")
1794 (license (list license:gpl2+ license:public-domain))))
1795
1796 (define-public sbcl-slime-swank
1797 (deprecated-package "sbcl-slime-swank" cl-slime-swank))
1798
1799 (define-public sbcl-mgl-pax
1800 (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
1801 (package
1802 (name "sbcl-mgl-pax")
1803 (version (git-version "0.0.0" "1" commit))
1804 (source
1805 (origin
1806 (method git-fetch)
1807 (uri (git-reference
1808 (url "https://github.com/melisgl/mgl-pax")
1809 (commit commit)))
1810 (sha256
1811 (base32
1812 "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
1813 (file-name (git-file-name "mgl-pax" version))))
1814 (build-system asdf-build-system/sbcl)
1815 (inputs
1816 `(("3bmd" ,sbcl-3bmd)
1817 ("3bmd-ext-code-blocks" ,sbcl-3bmd-ext-code-blocks)
1818 ("babel" ,sbcl-babel)
1819 ("cl-fad" ,sbcl-cl-fad)
1820 ("ironclad" ,sbcl-ironclad)
1821 ("named-readtables" ,sbcl-named-readtables)
1822 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)))
1823 (propagated-inputs
1824 ;; Packages having mgl-pax as input complain that it can't find
1825 ;; swank if we put it in inputs, so let's put it in propageted-inputs.
1826 `(("swank" ,cl-slime-swank)))
1827 (synopsis "Exploratory programming environment and documentation generator")
1828 (description
1829 "PAX provides an extremely poor man's Explorable Programming
1830 environment. Narrative primarily lives in so called sections that mix markdown
1831 docstrings with references to functions, variables, etc, all of which should
1832 probably have their own docstrings.
1833
1834 The primary focus is on making code easily explorable by using SLIME's
1835 @command{M-.} (@command{slime-edit-definition}). See how to enable some
1836 fanciness in Emacs Integration. Generating documentation from sections and all
1837 the referenced items in Markdown or HTML format is also implemented.
1838
1839 With the simplistic tools provided, one may accomplish similar effects as with
1840 Literate Programming, but documentation is generated from code, not vice versa
1841 and there is no support for chunking yet. Code is first, code must look
1842 pretty, documentation is code.")
1843 (home-page "http://quotenil.com/")
1844 (license license:expat))))
1845
1846 (define-public cl-mgl-pax
1847 (sbcl-package->cl-source-package sbcl-mgl-pax))
1848
1849 (define-public ecl-mgl-pax
1850 (sbcl-package->ecl-package sbcl-mgl-pax))
1851
1852 (define-public sbcl-lisp-unit
1853 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
1854 (package
1855 (name "sbcl-lisp-unit")
1856 (version (git-version "0.0.0" "1" commit))
1857 (source
1858 (origin
1859 (method git-fetch)
1860 (uri (git-reference
1861 (url "https://github.com/OdonataResearchLLC/lisp-unit")
1862 (commit commit)))
1863 (sha256
1864 (base32
1865 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
1866 (file-name (git-file-name "lisp-unit" version))))
1867 (build-system asdf-build-system/sbcl)
1868 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
1869 (description
1870 "@command{lisp-unit} is a Common Lisp library that supports unit
1871 testing. It is an extension of the library written by Chris Riesbeck.")
1872 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
1873 (license license:expat))))
1874
1875 (define-public cl-lisp-unit
1876 (sbcl-package->cl-source-package sbcl-lisp-unit))
1877
1878 (define-public ecl-lisp-unit
1879 (sbcl-package->ecl-package sbcl-lisp-unit))
1880
1881 (define-public sbcl-anaphora
1882 (package
1883 (name "sbcl-anaphora")
1884 (version "0.9.6")
1885 (source
1886 (origin
1887 (method git-fetch)
1888 (uri (git-reference
1889 (url "https://github.com/tokenrove/anaphora")
1890 (commit version)))
1891 (sha256
1892 (base32
1893 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
1894 (file-name (git-file-name "anaphora" version))))
1895 (build-system asdf-build-system/sbcl)
1896 (native-inputs
1897 `(("rt" ,sbcl-rt)))
1898 (synopsis "The anaphoric macro collection from Hell")
1899 (description
1900 "Anaphora is the anaphoric macro collection from Hell: it includes many
1901 new fiends in addition to old friends like @command{aif} and
1902 @command{awhen}.")
1903 (home-page "https://github.com/tokenrove/anaphora")
1904 (license license:public-domain)))
1905
1906 (define-public cl-anaphora
1907 (sbcl-package->cl-source-package sbcl-anaphora))
1908
1909 (define-public ecl-anaphora
1910 (sbcl-package->ecl-package sbcl-anaphora))
1911
1912 (define-public sbcl-lift
1913 (let ((commit "7d49a66c62759535624037826891152223d4206c"))
1914 (package
1915 (name "sbcl-lift")
1916 (version (git-version "1.7.1" "1" commit))
1917 (source
1918 (origin
1919 (method git-fetch)
1920 (uri (git-reference
1921 (url "https://github.com/gwkkwg/lift")
1922 (commit commit)))
1923 (sha256
1924 (base32
1925 "127v5avpz1i4m0lkaxqrq8hrl69rdazqaxf6s8awf0nd7wj2g4dp"))
1926 (file-name (git-file-name "lift" version))
1927 (modules '((guix build utils)))
1928 (snippet
1929 ;; Don't keep the bundled website
1930 `(begin
1931 (delete-file-recursively "website")
1932 #t))))
1933 (build-system asdf-build-system/sbcl)
1934 (arguments
1935 ;; The tests require a debugger, but we run with the debugger disabled.
1936 '(#:tests? #f))
1937 (synopsis "LIsp Framework for Testing")
1938 (description
1939 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
1940 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
1941 testcases are organized into hierarchical testsuites each of which can have
1942 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
1943 supports randomized testing, benchmarking, profiling, and reporting.")
1944 (home-page "https://github.com/gwkkwg/lift")
1945 (license license:expat))))
1946
1947 (define-public cl-lift
1948 (sbcl-package->cl-source-package sbcl-lift))
1949
1950 (define-public ecl-lift
1951 (sbcl-package->ecl-package sbcl-lift))
1952
1953 (define-public sbcl-let-plus
1954 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
1955 (package
1956 (name "sbcl-let-plus")
1957 (version (git-version "0.0.0" "1" commit))
1958 (source
1959 (origin
1960 (method git-fetch)
1961 (uri (git-reference
1962 (url "https://github.com/sharplispers/let-plus")
1963 (commit commit)))
1964 (sha256
1965 (base32
1966 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
1967 (file-name (git-file-name "let-plus" version))))
1968 (build-system asdf-build-system/sbcl)
1969 (inputs
1970 `(("alexandria" ,sbcl-alexandria)
1971 ("anaphora" ,sbcl-anaphora)))
1972 (native-inputs
1973 `(("lift" ,sbcl-lift)))
1974 (synopsis "Destructuring extension of let*")
1975 (description
1976 "This library implements the let+ macro, which is a dectructuring
1977 extension of let*. It features:
1978
1979 @itemize
1980 @item Clean, consistent syntax and small implementation (less than 300 LOC,
1981 not counting tests)
1982 @item Placeholder macros allow editor hints and syntax highlighting
1983 @item @command{&ign} for ignored values (in forms where that makes sense)
1984 @item Very easy to extend
1985 @end itemize\n")
1986 (home-page "https://github.com/sharplispers/let-plus")
1987 (license license:boost1.0))))
1988
1989 (define-public cl-let-plus
1990 (sbcl-package->cl-source-package sbcl-let-plus))
1991
1992 (define-public ecl-let-plus
1993 (sbcl-package->ecl-package sbcl-let-plus))
1994
1995 (define-public sbcl-cl-colors
1996 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
1997 (package
1998 (name "sbcl-cl-colors")
1999 (version (git-version "0.0.0" "1" commit))
2000 (source
2001 (origin
2002 (method git-fetch)
2003 (uri (git-reference
2004 (url "https://github.com/tpapp/cl-colors")
2005 (commit commit)))
2006 (sha256
2007 (base32
2008 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2009 (file-name (git-file-name "cl-colors" version))))
2010 (build-system asdf-build-system/sbcl)
2011 (inputs
2012 `(("alexandria" ,sbcl-alexandria)
2013 ("let-plus" ,sbcl-let-plus)))
2014 (synopsis "Simple color library for Common Lisp")
2015 (description
2016 "This is a very simple color library for Common Lisp, providing
2017
2018 @itemize
2019 @item Types for representing colors in HSV and RGB spaces.
2020 @item Simple conversion functions between the above types (and also
2021 hexadecimal representation for RGB).
2022 @item Some predefined colors (currently X11 color names – of course the
2023 library does not depend on X11).Because color in your terminal is nice.
2024 @end itemize
2025
2026 This library is no longer supported by its author.")
2027 (home-page "https://github.com/tpapp/cl-colors")
2028 (license license:boost1.0))))
2029
2030 (define-public cl-colors
2031 (sbcl-package->cl-source-package sbcl-cl-colors))
2032
2033 (define-public ecl-cl-colors
2034 (sbcl-package->ecl-package sbcl-cl-colors))
2035
2036 (define-public sbcl-cl-ansi-text
2037 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2038 (package
2039 (name "sbcl-cl-ansi-text")
2040 (version (git-version "1.0.0" "1" commit))
2041 (source
2042 (origin
2043 (method git-fetch)
2044 (uri (git-reference
2045 (url "https://github.com/pnathan/cl-ansi-text")
2046 (commit commit)))
2047 (sha256
2048 (base32
2049 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2050 (file-name (git-file-name "cl-ansi-text" version))))
2051 (build-system asdf-build-system/sbcl)
2052 (inputs
2053 `(("alexandria" ,sbcl-alexandria)
2054 ("cl-colors" ,sbcl-cl-colors)))
2055 (native-inputs
2056 `(("fiveam" ,sbcl-fiveam)))
2057 (synopsis "ANSI terminal color implementation for Common Lisp")
2058 (description
2059 "@command{cl-ansi-text} provides utilities which enable printing to an
2060 ANSI terminal with colored text. It provides the macro @command{with-color}
2061 which causes everything printed in the body to be displayed with the provided
2062 color. It further provides functions which will print the argument with the
2063 named color.")
2064 (home-page "https://github.com/pnathan/cl-ansi-text")
2065 (license license:llgpl))))
2066
2067 (define-public cl-ansi-text
2068 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2069
2070 (define-public ecl-cl-ansi-text
2071 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2072
2073 (define-public sbcl-prove-asdf
2074 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2075 (package
2076 (name "sbcl-prove-asdf")
2077 (version (git-version "1.0.0" "1" commit))
2078 (source
2079 (origin
2080 (method git-fetch)
2081 (uri (git-reference
2082 (url "https://github.com/fukamachi/prove")
2083 (commit commit)))
2084 (sha256
2085 (base32
2086 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2087 (file-name (git-file-name "prove" version))))
2088 (build-system asdf-build-system/sbcl)
2089 (arguments
2090 `(#:asd-file "prove-asdf.asd"))
2091 (synopsis "Test requirement for the Common Lisp 'prove' library")
2092 (description
2093 "Test requirement for the Common Lisp @command{prove} library.")
2094 (home-page "https://github.com/fukamachi/prove")
2095 (license license:expat))))
2096
2097 (define-public cl-prove-asdf
2098 (sbcl-package->cl-source-package sbcl-prove-asdf))
2099
2100 (define-public ecl-prove-asdf
2101 (sbcl-package->ecl-package sbcl-prove-asdf))
2102
2103 (define-public sbcl-prove
2104 (package
2105 (inherit sbcl-prove-asdf)
2106 (name "sbcl-prove")
2107 (inputs
2108 `(("alexandria" ,sbcl-alexandria)
2109 ("cl-ppcre" ,sbcl-cl-ppcre)
2110 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2111 (native-inputs
2112 `(("prove-asdf" ,sbcl-prove-asdf)))
2113 (arguments
2114 `(#:asd-file "prove.asd"))
2115 (synopsis "Yet another unit testing framework for Common Lisp")
2116 (description
2117 "This project was originally called @command{cl-test-more}.
2118 @command{prove} is yet another unit testing framework for Common Lisp. The
2119 advantages of @command{prove} are:
2120
2121 @itemize
2122 @item Various simple functions for testing and informative error messages
2123 @item ASDF integration
2124 @item Extensible test reporters
2125 @item Colorizes the report if it's available (note for SLIME)
2126 @item Reports test durations
2127 @end itemize\n")))
2128
2129 (define-public cl-prove
2130 (sbcl-package->cl-source-package sbcl-prove))
2131
2132 (define-public ecl-prove
2133 (sbcl-package->ecl-package sbcl-prove))
2134
2135 (define-public sbcl-proc-parse
2136 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2137 (package
2138 (name "sbcl-proc-parse")
2139 (version (git-version "0.0.0" "1" commit))
2140 (source
2141 (origin
2142 (method git-fetch)
2143 (uri (git-reference
2144 (url "https://github.com/fukamachi/proc-parse")
2145 (commit commit)))
2146 (sha256
2147 (base32
2148 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2149 (file-name (git-file-name "proc-parse" version))))
2150 (build-system asdf-build-system/sbcl)
2151 (inputs
2152 `(("alexandria" ,sbcl-alexandria)
2153 ("babel" ,sbcl-babel)))
2154 (native-inputs
2155 `(("prove" ,sbcl-prove)
2156 ("prove-asdf" ,sbcl-prove-asdf)))
2157 (arguments
2158 ;; TODO: Tests don't find "proc-parse-test", why?
2159 `(#:tests? #f))
2160 (synopsis "Procedural vector parser")
2161 (description
2162 "This is a string/octets parser library for Common Lisp with speed and
2163 readability in mind. Unlike other libraries, the code is not a
2164 pattern-matching-like, but a char-by-char procedural parser.")
2165 (home-page "https://github.com/fukamachi/proc-parse")
2166 (license license:bsd-2))))
2167
2168 (define-public cl-proc-parse
2169 (sbcl-package->cl-source-package sbcl-proc-parse))
2170
2171 (define-public ecl-proc-parse
2172 (sbcl-package->ecl-package sbcl-proc-parse))
2173
2174 (define-public sbcl-parse-float
2175 (let ((commit "2aae569f2a4b2eb3bfb5401a959425dcf151b09c"))
2176 (package
2177 (name "sbcl-parse-float")
2178 (version (git-version "0.0.0" "1" commit))
2179 (source
2180 (origin
2181 (method git-fetch)
2182 (uri (git-reference
2183 (url "https://github.com/soemraws/parse-float")
2184 (commit commit)))
2185 (sha256
2186 (base32
2187 "08xw8cchhmqcc0byng69m3f5a2izc9y2290jzz2k0qrbibp1fdk7"))
2188 (file-name (git-file-name "proc-parse" version))))
2189 (build-system asdf-build-system/sbcl)
2190 (inputs
2191 `(("alexandria" ,sbcl-alexandria)
2192 ("babel" ,sbcl-babel)))
2193 (native-inputs
2194 `(("prove" ,sbcl-prove)
2195 ("prove-asdf" ,sbcl-prove-asdf)))
2196 (arguments
2197 ;; TODO: Tests don't find "proc-parse-test", why?
2198 `(#:tests? #f))
2199 (synopsis "Parse a floating point value from a string in Common Lisp")
2200 (description
2201 "This package exports the following function to parse floating-point
2202 values from a string in Common Lisp.")
2203 (home-page "https://github.com/soemraws/parse-float")
2204 (license license:public-domain))))
2205
2206 (define-public cl-parse-float
2207 (sbcl-package->cl-source-package sbcl-parse-float))
2208
2209 (define-public ecl-parse-float
2210 (sbcl-package->ecl-package sbcl-parse-float))
2211
2212 (define-public sbcl-ascii-strings
2213 (let ((revision "1")
2214 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2215 (package
2216 (name "sbcl-ascii-strings")
2217 (version (string-append "0-" revision "." (string-take changeset 7)))
2218 (source
2219 (origin
2220 (method hg-fetch)
2221 (uri (hg-reference
2222 (url "https://bitbucket.org/vityok/cl-string-match/")
2223 (changeset changeset)))
2224 (sha256
2225 (base32
2226 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2227 (file-name (git-file-name "cl-string-match" version))))
2228 (build-system asdf-build-system/sbcl)
2229 (inputs
2230 `(("alexandria" ,sbcl-alexandria)
2231 ("babel" ,sbcl-babel)))
2232 (arguments
2233 `(#:asd-file "ascii-strings.asd"))
2234 (synopsis "Operations on ASCII strings")
2235 (description
2236 "Operations on ASCII strings. Essentially this can be any kind of
2237 single-byte encoded strings.")
2238 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2239 (license license:bsd-3))))
2240
2241 (define-public cl-ascii-strings
2242 (sbcl-package->cl-source-package sbcl-ascii-strings))
2243
2244 (define-public ecl-ascii-strings
2245 (sbcl-package->ecl-package sbcl-ascii-strings))
2246
2247 (define-public sbcl-simple-scanf
2248 (package
2249 (inherit sbcl-ascii-strings)
2250 (name "sbcl-simple-scanf")
2251 (inputs
2252 `(("alexandria" ,sbcl-alexandria)
2253 ("iterate" ,sbcl-iterate)
2254 ("proc-parse" ,sbcl-proc-parse)
2255 ("parse-float" ,sbcl-parse-float)))
2256 (arguments
2257 `(#:asd-file "simple-scanf.asd"))
2258 (synopsis "Simple scanf-like functionality implementation")
2259 (description
2260 "A simple scanf-like functionality implementation.")))
2261
2262 (define-public cl-simple-scanf
2263 (sbcl-package->cl-source-package sbcl-simple-scanf))
2264
2265 (define-public ecl-simple-scanf
2266 (sbcl-package->ecl-package sbcl-simple-scanf))
2267
2268 (define-public sbcl-cl-string-match
2269 (package
2270 (inherit sbcl-ascii-strings)
2271 (name "sbcl-cl-string-match")
2272 (inputs
2273 `(("alexandria" ,sbcl-alexandria)
2274 ("ascii-strings" ,sbcl-ascii-strings)
2275 ("yacc" ,sbcl-cl-yacc)
2276 ("jpl-util" ,sbcl-jpl-util)
2277 ("jpl-queues" ,sbcl-jpl-queues)
2278 ("mgl-pax" ,sbcl-mgl-pax)
2279 ("iterate" ,sbcl-iterate)))
2280 ;; TODO: Tests are not evaluated properly.
2281 (native-inputs
2282 ;; For testing:
2283 `(("lisp-unit" ,sbcl-lisp-unit)
2284 ("simple-scanf" ,sbcl-simple-scanf)))
2285 (arguments
2286 `(#:tests? #f
2287 #:asd-file "cl-string-match.asd"))
2288 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
2289 (description
2290 "@command{cl-strings} is a small, portable, dependency-free set of
2291 utilities that make it even easier to manipulate text in Common Lisp. It has
2292 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")))
2293
2294 (define-public cl-string-match
2295 (sbcl-package->cl-source-package sbcl-cl-string-match))
2296
2297 (define-public ecl-cl-string-match
2298 (sbcl-package->ecl-package sbcl-cl-string-match))
2299
2300 (define-public sbcl-ptester
2301 (let ((commit "fe69fde54f4bce00ce577feb918796c293fc7253")
2302 (revision "1"))
2303 (package
2304 (name "sbcl-ptester")
2305 (version (git-version "2.1.3" revision commit))
2306 (source
2307 (origin
2308 (method git-fetch)
2309 (uri (git-reference
2310 (url "http://git.kpe.io/ptester.git")
2311 (commit commit)))
2312 (file-name (git-file-name name version))
2313 (sha256
2314 (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf"))))
2315 (build-system asdf-build-system/sbcl)
2316 (home-page "http://quickdocs.org/ptester/")
2317 (synopsis "Portable test harness package")
2318 (description
2319 "@command{ptester} is a portable testing framework based on Franz's
2320 tester module.")
2321 (license license:llgpl))))
2322
2323 (define-public cl-ptester
2324 (sbcl-package->cl-source-package sbcl-ptester))
2325
2326 (define-public ecl-ptester
2327 (sbcl-package->ecl-package sbcl-ptester))
2328
2329 (define-public sbcl-puri
2330 (let ((commit "ef5afb9e5286c8e952d4344f019c1a636a717b97")
2331 (revision "1"))
2332 (package
2333 (name "sbcl-puri")
2334 (version (git-version "1.5.7" revision commit))
2335 (source
2336 (origin
2337 (method git-fetch)
2338 (uri (git-reference
2339 (url "http://git.kpe.io/puri.git")
2340 (commit commit)))
2341 (file-name (git-file-name name version))
2342 (sha256
2343 (base32 "1vm25pdl92laj72p5vyd538kf3cjy2655z6bdc99h20ana2p231s"))))
2344 (build-system asdf-build-system/sbcl)
2345 (native-inputs
2346 `(("ptester" ,sbcl-ptester)))
2347 (home-page "http://quickdocs.org/puri/")
2348 (synopsis "Portable URI Library")
2349 (description
2350 "This is a portable Universal Resource Identifier library for Common
2351 Lisp programs. It parses URI according to the RFC 2396 specification.")
2352 (license license:llgpl))))
2353
2354 (define-public cl-puri
2355 (sbcl-package->cl-source-package sbcl-puri))
2356
2357 (define-public ecl-puri
2358 (sbcl-package->ecl-package sbcl-puri))
2359
2360 (define-public sbcl-queues
2361 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2362 (package
2363 (name "sbcl-queues")
2364 (version (git-version "0.0.0" "1" commit))
2365 (source
2366 (origin
2367 (method git-fetch)
2368 (uri (git-reference
2369 (url "https://github.com/oconnore/queues")
2370 (commit commit)))
2371 (file-name (git-file-name "queues" version))
2372 (sha256
2373 (base32
2374 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2375 (build-system asdf-build-system/sbcl)
2376 (home-page "https://github.com/oconnore/queues")
2377 (synopsis "Common Lisp queue library")
2378 (description
2379 "This is a simple queue library for Common Lisp with features such as
2380 non-consing thread safe queues and fibonacci priority queues.")
2381 (license license:expat))))
2382
2383 (define-public cl-queues
2384 (sbcl-package->cl-source-package sbcl-queues))
2385
2386 (define-public ecl-queues
2387 (sbcl-package->ecl-package sbcl-queues))
2388
2389 (define-public sbcl-queues.simple-queue
2390 (package
2391 (inherit sbcl-queues)
2392 (name "sbcl-queues.simple-queue")
2393 (inputs
2394 `(("sbcl-queues" ,sbcl-queues)))
2395 (arguments
2396 `(#:asd-file "queues.simple-queue.asd"))
2397 (synopsis "Simple queue implementation")
2398 (description
2399 "This is a simple queue library for Common Lisp with features such as
2400 non-consing thread safe queues and fibonacci priority queues.")
2401 (license license:expat)))
2402
2403 (define-public cl-queues.simple-queue
2404 (sbcl-package->cl-source-package sbcl-queues.simple-queue))
2405
2406 (define-public ecl-queues.simple-queue
2407 (sbcl-package->ecl-package sbcl-queues.simple-queue))
2408
2409 (define-public sbcl-queues.simple-cqueue
2410 (package
2411 (inherit sbcl-queues)
2412 (name "sbcl-queues.simple-cqueue")
2413 (inputs
2414 `(("sbcl-queues" ,sbcl-queues)
2415 ("sbcl-queues.simple-queue" ,sbcl-queues.simple-queue)
2416 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2417 (arguments
2418 `(#:asd-file "queues.simple-cqueue.asd"))
2419 (synopsis "Thread safe queue implementation")
2420 (description
2421 "This is a simple queue library for Common Lisp with features such as
2422 non-consing thread safe queues and fibonacci priority queues.")
2423 (license license:expat)))
2424
2425 (define-public cl-queues.simple-cqueue
2426 (sbcl-package->cl-source-package sbcl-queues.simple-cqueue))
2427
2428 (define-public ecl-queues.simple-cqueue
2429 (sbcl-package->ecl-package sbcl-queues.simple-cqueue))
2430
2431 (define-public sbcl-queues.priority-queue
2432 (package
2433 (inherit sbcl-queues)
2434 (name "sbcl-queues.priority-queue")
2435 (inputs
2436 `(("sbcl-queues" ,sbcl-queues)))
2437 (arguments
2438 `(#:asd-file "queues.priority-queue.asd"))
2439 (synopsis "Priority queue (Fibonacci) implementation")
2440 (description
2441 "This is a simple queue library for Common Lisp with features such as
2442 non-consing thread safe queues and fibonacci priority queues.")
2443 (license license:expat)))
2444
2445 (define-public cl-queues.priority-queue
2446 (sbcl-package->cl-source-package sbcl-queues.priority-queue))
2447
2448 (define-public ecl-queues.priority-queue
2449 (sbcl-package->ecl-package sbcl-queues.priority-queue))
2450
2451 (define-public sbcl-queues.priority-cqueue
2452 (package
2453 (inherit sbcl-queues)
2454 (name "sbcl-queues.priority-cqueue")
2455 (inputs
2456 `(("sbcl-queues" ,sbcl-queues)
2457 ("sbcl-queues.priority-queue" ,sbcl-queues.priority-queue)
2458 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2459 (arguments
2460 `(#:asd-file "queues.priority-cqueue.asd"))
2461 (synopsis "Thread safe fibonacci priority queue implementation")
2462 (description
2463 "This is a simple queue library for Common Lisp with features such as
2464 non-consing thread safe queues and fibonacci priority queues.")
2465 (license license:expat)))
2466
2467 (define-public cl-queues.priority-cqueue
2468 (sbcl-package->cl-source-package sbcl-queues.priority-cqueue))
2469
2470 (define-public ecl-queues.priority-cqueue
2471 (sbcl-package->ecl-package sbcl-queues.priority-cqueue))
2472
2473 (define sbcl-cffi-bootstrap
2474 (package
2475 (name "sbcl-cffi-bootstrap")
2476 (version "0.21.0")
2477 (source
2478 (origin
2479 (method git-fetch)
2480 (uri (git-reference
2481 (url "https://github.com/cffi/cffi.git")
2482 (commit (string-append "v" version))))
2483 (file-name (git-file-name "cffi-bootstrap" version))
2484 (sha256
2485 (base32 "1qalargz9bhp850qv60ffwpdqi4xirzar4l3g6qcg8yc6xqf2cjk"))))
2486 (build-system asdf-build-system/sbcl)
2487 (inputs
2488 `(("libffi" ,libffi)
2489 ("alexandria" ,sbcl-alexandria)
2490 ("babel" ,sbcl-babel)
2491 ("trivial-features" ,sbcl-trivial-features)))
2492 (native-inputs
2493 `(("pkg-config" ,pkg-config)))
2494 (arguments
2495 '(#:phases
2496 (modify-phases %standard-phases
2497 (add-after 'unpack 'fix-paths
2498 (lambda* (#:key inputs #:allow-other-keys)
2499 (substitute* "libffi/libffi.lisp"
2500 (("libffi.so.6" all) (string-append
2501 (assoc-ref inputs "libffi")
2502 "/lib/" all)))
2503 (substitute* "toolchain/c-toolchain.lisp"
2504 (("\"cc\"") (format #f "~S" (which "gcc")))))))
2505 #:asd-system-name "cffi"
2506 #:tests? #f))
2507 (home-page "https://common-lisp.net/project/cffi/")
2508 (synopsis "Common Foreign Function Interface for Common Lisp")
2509 (description "The Common Foreign Function Interface (CFFI)
2510 purports to be a portable foreign function interface for Common Lisp.
2511 The CFFI library is composed of a Lisp-implementation-specific backend
2512 in the CFFI-SYS package, and a portable frontend in the CFFI
2513 package.")
2514 (license license:expat)))
2515
2516 (define-public sbcl-cffi-toolchain
2517 (package
2518 (inherit sbcl-cffi-bootstrap)
2519 (name "sbcl-cffi-toolchain")
2520 (inputs
2521 `(("libffi" ,libffi)
2522 ("sbcl-cffi" ,sbcl-cffi-bootstrap)))
2523 (arguments
2524 (substitute-keyword-arguments (package-arguments sbcl-cffi-bootstrap)
2525 ((#:asd-system-name _) #f)
2526 ((#:tests? _) #t)))))
2527
2528 (define-public sbcl-cffi-libffi
2529 (package
2530 (inherit sbcl-cffi-toolchain)
2531 (name "sbcl-cffi-libffi")
2532 (inputs
2533 `(("cffi" ,sbcl-cffi-bootstrap)
2534 ("cffi-grovel" ,sbcl-cffi-grovel)
2535 ("trivial-features" ,sbcl-trivial-features)
2536 ("libffi" ,libffi)))))
2537
2538 (define-public sbcl-cffi-grovel
2539 (package
2540 (inherit sbcl-cffi-toolchain)
2541 (name "sbcl-cffi-grovel")
2542 (inputs
2543 `(("libffi" ,libffi)
2544 ("cffi" ,sbcl-cffi-bootstrap)
2545 ("cffi-toolchain" ,sbcl-cffi-toolchain)
2546 ("alexandria" ,sbcl-alexandria)))
2547 (arguments
2548 (substitute-keyword-arguments (package-arguments sbcl-cffi-toolchain)
2549 ((#:phases phases)
2550 `(modify-phases ,phases
2551 (add-after 'build 'install-headers
2552 (lambda* (#:key outputs #:allow-other-keys)
2553 (install-file "grovel/common.h"
2554 (string-append
2555 (assoc-ref outputs "out")
2556 "/include/grovel"))))))))))
2557
2558 (define-public sbcl-cffi
2559 (package
2560 (inherit sbcl-cffi-toolchain)
2561 (name "sbcl-cffi")
2562 (inputs (package-inputs sbcl-cffi-bootstrap))
2563 (native-inputs
2564 `(("cffi-grovel" ,sbcl-cffi-grovel)
2565 ("cffi-libffi" ,sbcl-cffi-libffi)
2566 ("rt" ,sbcl-rt)
2567 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2568 ,@(package-native-inputs sbcl-cffi-bootstrap)))))
2569
2570 (define-public cl-cffi
2571 (sbcl-package->cl-source-package sbcl-cffi))
2572
2573 (define-public sbcl-cl-sqlite
2574 (let ((commit "c738e66d4266ef63a1debc4ef4a1b871a068c112"))
2575 (package
2576 (name "sbcl-cl-sqlite")
2577 (version (git-version "0.2" "1" commit))
2578 (source
2579 (origin
2580 (method git-fetch)
2581 (uri (git-reference
2582 (url "https://github.com/dmitryvk/cl-sqlite")
2583 (commit commit)))
2584 (file-name (git-file-name "cl-sqlite" version))
2585 (sha256
2586 (base32
2587 "1ng45k1hdb84sqjryrfx93g66bsbybmpy301wd0fdybnc5jzr36q"))))
2588 (build-system asdf-build-system/sbcl)
2589 (inputs
2590 `(("iterate" ,sbcl-iterate)
2591 ("cffi" ,sbcl-cffi)
2592 ("sqlite" ,sqlite)))
2593 (native-inputs
2594 `(("fiveam" ,sbcl-fiveam)
2595 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2596 (arguments
2597 `(#:tests? #f ; Upstream seems to have issues with tests: https://github.com/dmitryvk/cl-sqlite/issues/7
2598 #:asd-file "sqlite.asd"
2599 #:asd-system-name "sqlite"
2600 #:phases
2601 (modify-phases %standard-phases
2602 (add-after 'unpack 'fix-paths
2603 (lambda* (#:key inputs #:allow-other-keys)
2604 (substitute* "sqlite-ffi.lisp"
2605 (("libsqlite3" all) (string-append
2606 (assoc-ref inputs "sqlite")"/lib/" all))))))))
2607 (home-page "https://common-lisp.net/project/cl-sqlite/")
2608 (synopsis "Common Lisp binding for SQLite")
2609 (description
2610 "The @command{cl-sqlite} package is an interface to the SQLite embedded
2611 relational database engine.")
2612 (license license:public-domain))))
2613
2614 (define-public cl-sqlite
2615 (sbcl-package->cl-source-package sbcl-cl-sqlite))
2616
2617 (define-public sbcl-parenscript
2618 (let ((commit "061d8e286c81c3f45c84fb2b11ee7d83f590a8f8"))
2619 (package
2620 (name "sbcl-parenscript")
2621 (version (git-version "2.6" "1" commit))
2622 (source
2623 (origin
2624 (method git-fetch)
2625 (uri (git-reference
2626 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
2627 (commit commit)))
2628 (file-name (git-file-name "parenscript" version))
2629 (sha256
2630 (base32
2631 "1kbhgsjbikc73m5cwdp4d4fdafyqcr1b7b630qjrziql0nh6mi3k"))))
2632 (build-system asdf-build-system/sbcl)
2633 (inputs
2634 `(("cl-ppcre" ,sbcl-cl-ppcre)
2635 ("anaphora" ,sbcl-anaphora)
2636 ("named-readtables" ,sbcl-named-readtables)))
2637 (home-page "https://common-lisp.net/project/parenscript/")
2638 (synopsis "Translator from a subset of Common Lisp to JavaScript")
2639 (description
2640 "Parenscript is a translator from an extended subset of Common Lisp to
2641 JavaScript. Parenscript code can run almost identically on both the
2642 browser (as JavaScript) and server (as Common Lisp).
2643
2644 Parenscript code is treated the same way as Common Lisp code, making the full
2645 power of Lisp macros available for JavaScript. This provides a web
2646 development environment that is unmatched in its ability to reduce code
2647 duplication and provide advanced meta-programming facilities to web
2648 developers.
2649
2650 At the same time, Parenscript is different from almost all other \"language
2651 X\" to JavaScript translators in that it imposes almost no overhead:
2652
2653 @itemize
2654 @item No run-time dependencies: Any piece of Parenscript code is runnable
2655 as-is. There are no JavaScript files to include.
2656 @item Native types: Parenscript works entirely with native JavaScript data
2657 types. There are no new types introduced, and object prototypes are not
2658 touched.
2659 @item Native calling convention: Any JavaScript code can be called without the
2660 need for bindings. Likewise, Parenscript can be used to make efficient,
2661 self-contained JavaScript libraries.
2662 @item Readable code: Parenscript generates concise, formatted, idiomatic
2663 JavaScript code. Identifier names are preserved. This enables seamless
2664 debugging in tools like Firebug.
2665 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
2666 Lisp features. The generated code is almost as fast as hand-written
2667 JavaScript.
2668 @end itemize\n")
2669 (license license:bsd-3))))
2670
2671 (define-public cl-parenscript
2672 (sbcl-package->cl-source-package sbcl-parenscript))
2673
2674 (define-public ecl-parenscript
2675 (sbcl-package->ecl-package sbcl-parenscript))
2676
2677 (define-public sbcl-cl-json
2678 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
2679 (package
2680 (name "sbcl-cl-json")
2681 (version (git-version "0.5" "1" commit))
2682 (source
2683 (origin
2684 (method git-fetch)
2685 (uri (git-reference
2686 (url "https://github.com/hankhero/cl-json")
2687 (commit commit)))
2688 (file-name (git-file-name "cl-json" version))
2689 (sha256
2690 (base32
2691 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
2692 (build-system asdf-build-system/sbcl)
2693 (native-inputs
2694 `(("fiveam" ,sbcl-fiveam)))
2695 (home-page "https://github.com/hankhero/cl-json")
2696 (synopsis "JSON encoder and decoder for Common-Lisp")
2697 (description
2698 "@command{cl-json} provides an encoder of Lisp objects to JSON format
2699 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
2700 and the decoder are highly customizable; at the same time, the default
2701 settings ensure a very simple mode of operation, similar to that provided by
2702 @command{yason} or @command{st-json}.")
2703 (license license:expat))))
2704
2705 (define-public cl-json
2706 (sbcl-package->cl-source-package sbcl-cl-json))
2707
2708 (define-public ecl-cl-json
2709 (sbcl-package->ecl-package sbcl-cl-json))
2710
2711 (define-public sbcl-unix-opts
2712 (package
2713 (name "sbcl-unix-opts")
2714 (version "0.1.7")
2715 (source
2716 (origin
2717 (method git-fetch)
2718 (uri (git-reference
2719 (url "https://github.com/libre-man/unix-opts")
2720 (commit version)))
2721 (file-name (git-file-name "unix-opts" version))
2722 (sha256
2723 (base32
2724 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
2725 (build-system asdf-build-system/sbcl)
2726 (home-page "https://github.com/hankhero/cl-json")
2727 (synopsis "Unix-style command line options parser")
2728 (description
2729 "This is a minimalistic parser of command line options. The main
2730 advantage of the library is the ability to concisely define command line
2731 options once and then use this definition for parsing and extraction of
2732 command line arguments, as well as printing description of command line
2733 options (you get --help for free). This way you don't need to repeat
2734 yourself. Also, @command{unix-opts} doesn't depend on anything and allows to
2735 precisely control behavior of the parser via Common Lisp restarts.")
2736 (license license:expat)))
2737
2738 (define-public cl-unix-opts
2739 (sbcl-package->cl-source-package sbcl-unix-opts))
2740
2741 (define-public ecl-unix-opts
2742 (sbcl-package->ecl-package sbcl-unix-opts))
2743
2744 (define-public sbcl-trivial-garbage
2745 (package
2746 (name "sbcl-trivial-garbage")
2747 (version "0.21")
2748 (source
2749 (origin
2750 (method git-fetch)
2751 (uri (git-reference
2752 (url "https://github.com/trivial-garbage/trivial-garbage.git")
2753 (commit (string-append "v" version))))
2754 (file-name (git-file-name "trivial-garbage" version))
2755 (sha256
2756 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
2757 (build-system asdf-build-system/sbcl)
2758 (native-inputs
2759 `(("rt" ,sbcl-rt)))
2760 (home-page "https://common-lisp.net/project/trivial-garbage/")
2761 (synopsis "Portable GC-related APIs for Common Lisp")
2762 (description "@command{trivial-garbage} provides a portable API to
2763 finalizers, weak hash-tables and weak pointers on all major implementations of
2764 the Common Lisp programming language.")
2765 (license license:public-domain)))
2766
2767 (define-public cl-trivial-garbage
2768 (sbcl-package->cl-source-package sbcl-trivial-garbage))
2769
2770 (define-public ecl-trivial-garbage
2771 (sbcl-package->ecl-package sbcl-trivial-garbage))
2772
2773 (define-public sbcl-closer-mop
2774 (let ((commit "fac29ce90e3a46e1fc6cf182190e193526fa9dbc"))
2775 (package
2776 (name "sbcl-closer-mop")
2777 (version (git-version "1.0.0" "1" commit))
2778 (source
2779 (origin
2780 (method git-fetch)
2781 (uri (git-reference
2782 (url "https://github.com/pcostanza/closer-mop")
2783 (commit commit)))
2784 (sha256
2785 (base32 "0hvh77y869h8fg9di5snyg85fxq6fdh9gj1igmx1g6j6j5x915dl"))
2786 (file-name (git-file-name "closer-mop" version ))))
2787 (build-system asdf-build-system/sbcl)
2788 (home-page "https://github.com/pcostanza/closer-mop")
2789 (synopsis "Rectifies absent or incorrect CLOS MOP features")
2790 (description "Closer to MOP is a compatibility layer that rectifies many
2791 of the absent or incorrect CLOS MOP features across a broad range of Common
2792 Lisp implementations.")
2793 (license license:expat))))
2794
2795 (define-public cl-closer-mop
2796 (sbcl-package->cl-source-package sbcl-closer-mop))
2797
2798 (define-public ecl-closer-mop
2799 (sbcl-package->ecl-package sbcl-closer-mop))
2800
2801 (define sbcl-cl-cffi-gtk-boot0
2802 (let ((commit "29443c5aaca975709df8025c4649366d882033cb"))
2803 (package
2804 (name "sbcl-cl-cffi-gtk-boot0")
2805 (version (git-version "0.11.2" "1" commit))
2806 (source
2807 (origin
2808 (method git-fetch)
2809 (uri (git-reference
2810 (url "https://github.com/Ferada/cl-cffi-gtk/")
2811 (commit commit)))
2812 (file-name (git-file-name "cl-cffi-gtk" version))
2813 (sha256
2814 (base32
2815 "0f6s92sf8xyzh1yksqx8bsy1sv0zmy0c13j3b8bavaba5hlxpxah"))))
2816 (build-system asdf-build-system/sbcl)
2817 (inputs
2818 `(("iterate" ,sbcl-iterate)
2819 ("cffi" ,sbcl-cffi)
2820 ("trivial-features" ,sbcl-trivial-features)))
2821 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
2822 (synopsis "Common Lisp binding for GTK+3")
2823 (description
2824 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
2825 is a library for creating graphical user interfaces.")
2826 (license license:lgpl3))))
2827
2828 (define-public sbcl-cl-cffi-gtk-glib
2829 (package
2830 (inherit sbcl-cl-cffi-gtk-boot0)
2831 (name "sbcl-cl-cffi-gtk-glib")
2832 (inputs
2833 `(("glib" ,glib)
2834 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2835 (arguments
2836 `(#:asd-file "glib/cl-cffi-gtk-glib.asd"
2837 #:phases
2838 (modify-phases %standard-phases
2839 (add-after 'unpack 'fix-paths
2840 (lambda* (#:key inputs #:allow-other-keys)
2841 (substitute* "glib/glib.init.lisp"
2842 (("libglib|libgthread" all) (string-append
2843 (assoc-ref inputs "glib") "/lib/" all))))))))))
2844
2845 (define-public sbcl-cl-cffi-gtk-gobject
2846 (package
2847 (inherit sbcl-cl-cffi-gtk-boot0)
2848 (name "sbcl-cl-cffi-gtk-gobject")
2849 (inputs
2850 `(("glib" ,glib)
2851 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2852 ("trivial-garbage" ,sbcl-trivial-garbage)
2853 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2854 ("closer-mop" ,sbcl-closer-mop)
2855 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2856 (arguments
2857 `(#:asd-file "gobject/cl-cffi-gtk-gobject.asd"
2858 #:phases
2859 (modify-phases %standard-phases
2860 (add-after 'unpack 'fix-paths
2861 (lambda* (#:key inputs #:allow-other-keys)
2862 (substitute* "gobject/gobject.init.lisp"
2863 (("libgobject" all) (string-append
2864 (assoc-ref inputs "glib") "/lib/" all))))))))))
2865
2866 (define-public sbcl-cl-cffi-gtk-gio
2867 (package
2868 (inherit sbcl-cl-cffi-gtk-boot0)
2869 (name "sbcl-cl-cffi-gtk-gio")
2870 (inputs
2871 `(("glib" ,glib)
2872 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2873 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2874 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2875 (arguments
2876 `(#:asd-file "gio/cl-cffi-gtk-gio.asd"
2877 #:phases
2878 (modify-phases %standard-phases
2879 (add-after 'unpack 'fix-paths
2880 (lambda* (#:key inputs #:allow-other-keys)
2881 (substitute* "gio/gio.init.lisp"
2882 (("libgio" all)
2883 (string-append
2884 (assoc-ref inputs "glib") "/lib/" all))))))))))
2885
2886 (define-public sbcl-cl-cffi-gtk-cairo
2887 (package
2888 (inherit sbcl-cl-cffi-gtk-boot0)
2889 (name "sbcl-cl-cffi-gtk-cairo")
2890 (inputs
2891 `(("cairo" ,cairo)
2892 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2893 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2894 (arguments
2895 `(#:asd-file "cairo/cl-cffi-gtk-cairo.asd"
2896 #:phases
2897 (modify-phases %standard-phases
2898 (add-after 'unpack 'fix-paths
2899 (lambda* (#:key inputs #:allow-other-keys)
2900 (substitute* "cairo/cairo.init.lisp"
2901 (("libcairo" all)
2902 (string-append
2903 (assoc-ref inputs "cairo") "/lib/" all))))))))))
2904
2905 (define-public sbcl-cl-cffi-gtk-pango
2906 (package
2907 (inherit sbcl-cl-cffi-gtk-boot0)
2908 (name "sbcl-cl-cffi-gtk-pango")
2909 (inputs
2910 `(("pango" ,pango)
2911 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2912 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2913 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
2914 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2915 (arguments
2916 `(#:asd-file "pango/cl-cffi-gtk-pango.asd"
2917 #:phases
2918 (modify-phases %standard-phases
2919 (add-after 'unpack 'fix-paths
2920 (lambda* (#:key inputs #:allow-other-keys)
2921 (substitute* "pango/pango.init.lisp"
2922 (("libpango" all)
2923 (string-append
2924 (assoc-ref inputs "pango") "/lib/" all))))))))))
2925
2926 (define-public sbcl-cl-cffi-gtk-gdk-pixbuf
2927 (package
2928 (inherit sbcl-cl-cffi-gtk-boot0)
2929 (name "sbcl-cl-cffi-gtk-gdk-pixbuf")
2930 (inputs
2931 `(("gdk-pixbuf" ,gdk-pixbuf)
2932 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2933 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2934 (arguments
2935 `(#:asd-file "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
2936 #:phases
2937 (modify-phases %standard-phases
2938 (add-after 'unpack 'fix-paths
2939 (lambda* (#:key inputs #:allow-other-keys)
2940 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
2941 (("libgdk_pixbuf" all)
2942 (string-append
2943 (assoc-ref inputs "gdk-pixbuf") "/lib/" all))))))))))
2944
2945 (define-public sbcl-cl-cffi-gtk-gdk
2946 (package
2947 (inherit sbcl-cl-cffi-gtk-boot0)
2948 (name "sbcl-cl-cffi-gtk-gdk")
2949 (inputs
2950 `(("gtk" ,gtk+)
2951 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2952 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
2953 ("cl-cffi-gtk-gdk-pixbuf" ,sbcl-cl-cffi-gtk-gdk-pixbuf)
2954 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
2955 ("cl-cffi-gtk-pango" ,sbcl-cl-cffi-gtk-pango)
2956 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2957 (arguments
2958 `(#:asd-file "gdk/cl-cffi-gtk-gdk.asd"
2959 #:phases
2960 (modify-phases %standard-phases
2961 (add-after 'unpack 'fix-paths
2962 (lambda* (#:key inputs #:allow-other-keys)
2963 (substitute* "gdk/gdk.init.lisp"
2964 (("libgdk" all)
2965 (string-append
2966 (assoc-ref inputs "gtk") "/lib/" all)))
2967 (substitute* "gdk/gdk.package.lisp"
2968 (("libgtk" all)
2969 (string-append
2970 (assoc-ref inputs "gtk") "/lib/" all))))))))))
2971
2972 (define-public sbcl-cl-cffi-gtk
2973 (package
2974 (inherit sbcl-cl-cffi-gtk-boot0)
2975 (name "sbcl-cl-cffi-gtk")
2976 (inputs
2977 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2978 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2979 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
2980 ("cl-cffi-gtk-gdk" ,sbcl-cl-cffi-gtk-gdk)
2981 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2982 (native-inputs
2983 `(("fiveam" ,sbcl-fiveam)))
2984 (arguments
2985 `(#:asd-file "gtk/cl-cffi-gtk.asd"
2986 #:test-asd-file "test/cl-cffi-gtk-test.asd"
2987 ;; TODO: Tests fail with memory fault.
2988 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
2989 #:tests? #f))))
2990
2991 (define-public cl-cffi-gtk
2992 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
2993
2994 (define-public sbcl-cl-webkit
2995 (let ((commit "cd2a9008e0c152e54755e8a7f07b050fe36bab31"))
2996 (package
2997 (name "sbcl-cl-webkit")
2998 (version (git-version "2.4" "1" commit))
2999 (source
3000 (origin
3001 (method git-fetch)
3002 (uri (git-reference
3003 (url "https://github.com/jmercouris/cl-webkit")
3004 (commit commit)))
3005 (file-name (git-file-name "cl-webkit" version))
3006 (sha256
3007 (base32
3008 "0f5lyn9i7xrn3g1bddga377mcbawkbxydijpg389q4n04gqj0vwf"))))
3009 (build-system asdf-build-system/sbcl)
3010 (inputs
3011 `(("cffi" ,sbcl-cffi)
3012 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3013 ("webkitgtk" ,webkitgtk)))
3014 (arguments
3015 `(#:asd-file "webkit2/cl-webkit2.asd"
3016 #:asd-system-name "cl-webkit2"
3017 #:phases
3018 (modify-phases %standard-phases
3019 (add-after 'unpack 'fix-paths
3020 (lambda* (#:key inputs #:allow-other-keys)
3021 (substitute* "webkit2/webkit2.init.lisp"
3022 (("libwebkit2gtk" all)
3023 (string-append
3024 (assoc-ref inputs "webkitgtk") "/lib/" all))))))))
3025 (home-page "https://github.com/jmercouris/cl-webkit")
3026 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3027 (description
3028 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3029 currently targeting WebKit version 2. The WebKitGTK+ library adds web
3030 browsing capabilities to an application, leveraging the full power of the
3031 WebKit browsing engine.")
3032 (license license:expat))))
3033
3034 (define-public cl-webkit
3035 (sbcl-package->cl-source-package sbcl-cl-webkit))
3036
3037 (define-public sbcl-lparallel
3038 (package
3039 (name "sbcl-lparallel")
3040 (version "2.8.4")
3041 (source
3042 (origin
3043 (method git-fetch)
3044 (uri (git-reference
3045 (url "https://github.com/lmj/lparallel/")
3046 (commit (string-append "lparallel-" version))))
3047 (file-name (git-file-name "lparallel" version))
3048 (sha256
3049 (base32
3050 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3051 (build-system asdf-build-system/sbcl)
3052 (inputs
3053 `(("alexandria" ,sbcl-alexandria)
3054 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3055 ("trivial-garbage" ,sbcl-trivial-garbage)))
3056 (home-page "https://lparallel.org/")
3057 (synopsis "Parallelism for Common Lisp")
3058 (description
3059 "@command{lparallel} is a library for parallel programming in Common
3060 Lisp, featuring:
3061
3062 @itemize
3063 @item a simple model of task submission with receiving queue,
3064 @item constructs for expressing fine-grained parallelism,
3065 @item asynchronous condition handling across thread boundaries,
3066 @item parallel versions of map, reduce, sort, remove, and many others,
3067 @item promises, futures, and delayed evaluation constructs,
3068 @item computation trees for parallelizing interconnected tasks,
3069 @item bounded and unbounded FIFO queues,
3070 @item high and low priority tasks,
3071 @item task killing by category,
3072 @item integrated timeouts.
3073 @end itemize\n")
3074 (license license:expat)))
3075
3076 (define-public cl-lparallel
3077 (sbcl-package->cl-source-package sbcl-lparallel))
3078
3079 (define-public ecl-lparallel
3080 (sbcl-package->ecl-package sbcl-lparallel))
3081
3082 (define-public sbcl-cl-markup
3083 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3084 (package
3085 (name "sbcl-cl-markup")
3086 (version (git-version "0.1" "1" commit))
3087 (source
3088 (origin
3089 (method git-fetch)
3090 (uri (git-reference
3091 (url "https://github.com/arielnetworks/cl-markup/")
3092 (commit commit)))
3093 (file-name (git-file-name "cl-markup" version))
3094 (sha256
3095 (base32
3096 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3097 (build-system asdf-build-system/sbcl)
3098 (home-page "https://github.com/arielnetworks/cl-markup/")
3099 (synopsis "Markup generation library for Common Lisp")
3100 (description
3101 "A modern markup generation library for Common Lisp that features:
3102
3103 @itemize
3104 @item Fast (even faster through compiling the code)
3105 @item Safety
3106 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3107 @item Output with doctype
3108 @item Direct output to stream
3109 @end itemize\n")
3110 (license license:lgpl3+))))
3111
3112 (define-public cl-markup
3113 (sbcl-package->cl-source-package sbcl-cl-markup))
3114
3115 (define-public ecl-cl-markup
3116 (sbcl-package->ecl-package sbcl-cl-markup))
3117
3118 (define-public sbcl-cl-css
3119 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3120 (package
3121 (name "sbcl-cl-css")
3122 (version (git-version "0.1" "1" commit))
3123 (source
3124 (origin
3125 (method git-fetch)
3126 (uri (git-reference
3127 (url "https://github.com/inaimathi/cl-css/")
3128 (commit commit)))
3129 (file-name (git-file-name "cl-css" version))
3130 (sha256
3131 (base32
3132 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3133 (build-system asdf-build-system/sbcl)
3134 (home-page "https://github.com/inaimathi/cl-css/")
3135 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3136 (description
3137 "This is a dead-simple, non validating, inline CSS generator for Common
3138 Lisp. Its goals are axiomatic syntax, simple implementation to support
3139 portability, and boilerplate reduction in CSS.")
3140 (license license:expat))))
3141
3142 (define-public cl-css
3143 (sbcl-package->cl-source-package sbcl-cl-css))
3144
3145 (define-public ecl-cl-css
3146 (sbcl-package->ecl-package sbcl-cl-css))
3147
3148 (define-public sbcl-portable-threads
3149 (let ((commit "c0e61a1faeb0583c80fd3f20b16cc4c555226920"))
3150 (package
3151 (name "sbcl-portable-threads")
3152 (version (git-version "2.3" "1" commit))
3153 (source
3154 (origin
3155 (method git-fetch)
3156 (uri (git-reference
3157 (url "https://github.com/binghe/portable-threads/")
3158 (commit commit)))
3159 (file-name (git-file-name "portable-threads" version))
3160 (sha256
3161 (base32
3162 "03fmxyarc0xf4kavwkfa0a2spkyfrz6hbgbi9y4q7ny5aykdyfaq"))))
3163 (build-system asdf-build-system/sbcl)
3164 (arguments
3165 `(;; Tests seem broken.
3166 #:tests? #f))
3167 (home-page "https://github.com/binghe/portable-threads")
3168 (synopsis "Portable threads (and scheduled and periodic functions) API for Common Lisp")
3169 (description
3170 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3171 Lisp (from GBBopen project).")
3172 (license license:asl2.0))))
3173
3174 (define-public cl-portable-threads
3175 (sbcl-package->cl-source-package sbcl-portable-threads))
3176
3177 (define-public ecl-portable-threada
3178 (sbcl-package->ecl-package sbcl-portable-threads))
3179
3180 (define sbcl-usocket-boot0
3181 ;; usocket's test rely on usocket-server which depends on usocket itself.
3182 ;; We break this cyclic dependency with -boot0 that packages usocket.
3183 (package
3184 (name "sbcl-usocket-boot0")
3185 (version "0.8.3")
3186 (source
3187 (origin
3188 (method git-fetch)
3189 (uri (git-reference
3190 (url "https://github.com/usocket/usocket/")
3191 (commit (string-append "v" version))))
3192 (file-name (git-file-name "usocket" version))
3193 (sha256
3194 (base32
3195 "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"))))
3196 (build-system asdf-build-system/sbcl)
3197 (inputs
3198 `(("split-sequence" ,sbcl-split-sequence)))
3199 (arguments
3200 `(#:tests? #f
3201 #:asd-system-name "usocket"))
3202 (home-page "https://common-lisp.net/project/usocket/")
3203 (synopsis "Universal socket library for Common Lisp (server side)")
3204 (description
3205 "This library strives to provide a portable TCP/IP and UDP/IP socket
3206 interface for as many Common Lisp implementations as possible, while keeping
3207 the abstraction and portability layer as thin as possible.")
3208 (license license:expat)))
3209
3210 (define-public sbcl-usocket-server
3211 (package
3212 (inherit sbcl-usocket-boot0)
3213 (name "sbcl-usocket-server")
3214 (inputs
3215 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3216 ("usocket" ,sbcl-usocket-boot0)))
3217 (arguments
3218 '(#:asd-system-name "usocket-server"))
3219 (synopsis "Universal socket library for Common Lisp (server side)")))
3220
3221 (define-public cl-usocket-server
3222 (sbcl-package->cl-source-package sbcl-usocket-server))
3223
3224 (define-public ecl-socket-server
3225 (sbcl-package->ecl-package sbcl-usocket-server))
3226
3227 (define-public sbcl-usocket
3228 (package
3229 (inherit sbcl-usocket-boot0)
3230 (name "sbcl-usocket")
3231 (arguments
3232 ;; FIXME: Tests need network access?
3233 `(#:tests? #f))
3234 (native-inputs
3235 ;; Testing only.
3236 `(("usocket-server" ,sbcl-usocket-server)
3237 ("rt" ,sbcl-rt)))))
3238
3239 (define-public cl-usocket
3240 (sbcl-package->cl-source-package sbcl-usocket))
3241
3242 (define-public ecl-usocket
3243 (sbcl-package->ecl-package sbcl-usocket))
3244
3245 (define-public sbcl-s-xml
3246 (package
3247 (name "sbcl-s-xml")
3248 (version "3")
3249 (source
3250 (origin
3251 (method url-fetch)
3252 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3253 (sha256
3254 (base32
3255 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3256 (build-system asdf-build-system/sbcl)
3257 (home-page "https://common-lisp.net/project/s-xml/")
3258 (synopsis "Simple XML parser implemented in Common Lisp")
3259 (description
3260 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3261 parser implementation has the following features:
3262
3263 @itemize
3264 @item It works (handling many common XML usages).
3265 @item It is very small (the core is about 700 lines of code, including
3266 comments and whitespace).
3267 @item It has a core API that is simple, efficient and pure functional, much
3268 like that from SSAX (see also http://ssax.sourceforge.net).
3269 @item It supports different DOM models: an XSML-based one, an LXML-based one
3270 and a classic xml-element struct based one.
3271 @item It is reasonably time and space efficient (internally avoiding garbage
3272 generatation as much as possible).
3273 @item It does support CDATA.
3274 @item It should support the same character sets as your Common Lisp
3275 implementation.
3276 @item It does support XML name spaces.
3277 @end itemize
3278
3279 This XML parser implementation has the following limitations:
3280
3281 @itemize
3282 @item It does not support any special tags (like processing instructions).
3283 @item It is not validating, even skips DTD's all together.
3284 @end itemize\n")
3285 (license license:lgpl3+)))
3286
3287 (define-public cl-s-xml
3288 (sbcl-package->cl-source-package sbcl-s-xml))
3289
3290 (define-public ecl-s-xml
3291 (sbcl-package->ecl-package sbcl-s-xml))
3292
3293 (define-public sbcl-s-xml-rpc
3294 (package
3295 (name "sbcl-s-xml-rpc")
3296 (version "7")
3297 (source
3298 (origin
3299 (method url-fetch)
3300 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3301 (sha256
3302 (base32
3303 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3304 (build-system asdf-build-system/sbcl)
3305 (inputs
3306 `(("s-xml" ,sbcl-s-xml)))
3307 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3308 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3309 (description
3310 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3311 client and server.")
3312 (license license:lgpl3+)))
3313
3314 (define-public cl-s-xml-rpc
3315 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3316
3317 (define-public ecl-s-xml-rpc
3318 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3319
3320 (define-public sbcl-trivial-clipboard
3321 (let ((commit "5af3415d1484e6d69a1b5c178f24680d9fd01796"))
3322 (package
3323 (name "sbcl-trivial-clipboard")
3324 (version (git-version "0.0.0.0" "2" commit))
3325 (source
3326 (origin
3327 (method git-fetch)
3328 (uri (git-reference
3329 (url "https://github.com/snmsts/trivial-clipboard")
3330 (commit commit)))
3331 (file-name (git-file-name "trivial-clipboard" version))
3332 (sha256
3333 (base32
3334 "1gb515z5yq6h5548pb1fwhmb0hhq1ssyb78pvxh4alq799xipxs9"))))
3335 (build-system asdf-build-system/sbcl)
3336 (inputs
3337 `(("xclip" ,xclip)))
3338 (native-inputs
3339 `(("fiveam" ,sbcl-fiveam)))
3340 (arguments
3341 `(#:phases
3342 (modify-phases %standard-phases
3343 (add-after 'unpack 'fix-paths
3344 (lambda* (#:key inputs #:allow-other-keys)
3345 (substitute* "src/text.lisp"
3346 (("\\(executable-find \"xclip\"\\)")
3347 (string-append "(executable-find \""
3348 (assoc-ref inputs "xclip")
3349 "/bin/xclip\")"))))))))
3350 (home-page "https://github.com/snmsts/trivial-clipboard")
3351 (synopsis "Access system clipboard in Common Lisp")
3352 (description
3353 "@command{trivial-clipboard} gives access to the system clipboard.")
3354 (license license:expat))))
3355
3356 (define-public cl-trivial-clipboard
3357 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3358
3359 (define-public ecl-trivial-clipboard
3360 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3361
3362 (define-public sbcl-trivial-backtrace
3363 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3364 (revision "1"))
3365 (package
3366 (name "sbcl-trivial-backtrace")
3367 (version (git-version "0.0.0" revision commit))
3368 (source
3369 (origin
3370 (method git-fetch)
3371 (uri (git-reference
3372 (url "https://github.com/gwkkwg/trivial-backtrace.git")
3373 (commit commit)))
3374 (file-name (git-file-name "trivial-backtrace" version))
3375 (sha256
3376 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3377 (build-system asdf-build-system/sbcl)
3378 (inputs
3379 `(("sbcl-lift" ,sbcl-lift)))
3380 (arguments
3381 `(#:phases
3382 (modify-phases %standard-phases
3383 (add-after 'check 'delete-test-results
3384 (lambda* (#:key outputs #:allow-other-keys)
3385 (let ((test-results (string-append (assoc-ref outputs "out")
3386 "/share/common-lisp/"
3387 (%lisp-type) "-source"
3388 "/trivial-backtrace"
3389 "/test-results")))
3390 (when (file-exists? test-results)
3391 (delete-file-recursively test-results)))
3392 #t)))))
3393 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3394 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3395 (description
3396 "On of the many things that didn't quite get into the Common Lisp
3397 standard was how to get a Lisp to output its call stack when something has
3398 gone wrong. As such, each Lisp has developed its own notion of what to
3399 display, how to display it, and what sort of arguments can be used to
3400 customize it. @code{trivial-backtrace} is a simple solution to generating a
3401 backtrace portably.")
3402 (license license:expat))))
3403
3404 (define-public cl-trivial-backtrace
3405 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3406
3407 (define-public sbcl-rfc2388
3408 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3409 (revision "1"))
3410 (package
3411 (name "sbcl-rfc2388")
3412 (version (git-version "0.0.0" revision commit))
3413 (source
3414 (origin
3415 (method git-fetch)
3416 (uri (git-reference
3417 (url "https://github.com/jdz/rfc2388.git")
3418 (commit commit)))
3419 (file-name (git-file-name "rfc2388" version))
3420 (sha256
3421 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3422 (build-system asdf-build-system/sbcl)
3423 (home-page "https://github.com/jdz/rfc2388/")
3424 (synopsis "An implementation of RFC 2388 in Common Lisp")
3425 (description
3426 "This package contains an implementation of RFC 2388, which is used to
3427 process form data posted with HTTP POST method using enctype
3428 \"multipart/form-data\".")
3429 (license license:bsd-2))))
3430
3431 (define-public cl-rfc2388
3432 (sbcl-package->cl-source-package sbcl-rfc2388))
3433
3434 (define-public sbcl-md5
3435 (package
3436 (name "sbcl-md5")
3437 (version "2.0.4")
3438 (source
3439 (origin
3440 (method url-fetch)
3441 (uri (string-append
3442 "https://github.com/pmai/md5/archive/release-" version ".tar.gz"))
3443 (sha256
3444 (base32 "19yl9n0pjdz5gw4qi711lka97xcd9f81ylg434hk7jwn9f2s6w11"))))
3445 (build-system asdf-build-system/sbcl)
3446 (home-page "https://github.com/pmai/md5")
3447 (synopsis
3448 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3449 (description
3450 "This package implements The MD5 Message-Digest Algorithm, as defined in
3451 RFC 1321 by R. Rivest, published April 1992.")
3452 (license license:public-domain)))
3453
3454 (define-public cl-md5
3455 (sbcl-package->cl-source-package sbcl-md5))
3456
3457 (define-public sbcl-cl+ssl
3458 (let ((commit "141ae91416bc40f1618dc07e48429b84388aa599")
3459 (revision "1"))
3460 (package
3461 (name "sbcl-cl+ssl")
3462 (version (git-version "0.0.0" revision commit))
3463 (source
3464 (origin
3465 (method git-fetch)
3466 (uri (git-reference
3467 (url "https://github.com/cl-plus-ssl/cl-plus-ssl.git")
3468 (commit commit)))
3469 (file-name (git-file-name "cl+ssl" version))
3470 (sha256
3471 (base32 "1s0hg1h9sf8q89v0yrxmzg5f5sng29rgx3n21r9h9yql8351myan"))))
3472 (build-system asdf-build-system/sbcl)
3473 (arguments
3474 '(#:phases
3475 (modify-phases %standard-phases
3476 (add-after 'unpack 'fix-paths
3477 (lambda* (#:key inputs #:allow-other-keys)
3478 (substitute* "src/reload.lisp"
3479 (("libssl.so" all)
3480 (string-append
3481 (assoc-ref inputs "openssl") "/lib/" all))))))))
3482 (inputs
3483 `(("openssl" ,openssl)
3484 ("sbcl-cffi" ,sbcl-cffi)
3485 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
3486 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3487 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
3488 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
3489 ("sbcl-alexandria" ,sbcl-alexandria)
3490 ("sbcl-trivial-features" ,sbcl-trivial-features)))
3491 (home-page "http://common-lisp.net/project/cl-plus-ssl/")
3492 (synopsis "Common Lisp bindings to OpenSSL")
3493 (description
3494 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
3495 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
3496 Development into CL+SSL was done by David Lichteblau.")
3497 (license license:expat))))
3498
3499 (define-public cl-cl+ssl
3500 (sbcl-package->cl-source-package sbcl-cl+ssl))
3501
3502 (define-public sbcl-kmrcl
3503 (let ((version "1.109.0")
3504 (commit "5260068b2eb735af6796740c2db4955afac21636")
3505 (revision "1"))
3506 (package
3507 (name "sbcl-kmrcl")
3508 (version (git-version version revision commit))
3509 (source
3510 (origin
3511 (method git-fetch)
3512 (uri (git-reference
3513 (url "http://git.kpe.io/kmrcl.git/")
3514 (commit commit)))
3515 (file-name (git-file-name name version))
3516 (sha256
3517 (base32 "1va7xjgzfv674bpsli674i7zj3f7wg5kxic41kz18r6hh4n52dfv"))))
3518 (build-system asdf-build-system/sbcl)
3519 (arguments
3520 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed in a
3521 ;; nested call to ASDF/OPERATE:OPERATE unless identically to toplevel
3522 '(#:tests? #f))
3523 (inputs
3524 `(("sbcl-rt" ,sbcl-rt)))
3525 (home-page "http://files.kpe.io/kmrcl/")
3526 (synopsis "General utilities for Common Lisp programs")
3527 (description
3528 "KMRCL is a collection of utilities used by a number of Kevin
3529 Rosenberg's CL packages.")
3530 (license license:llgpl))))
3531
3532 (define-public cl-kmrcl
3533 (sbcl-package->cl-source-package sbcl-kmrcl))
3534
3535 (define-public sbcl-cl-base64
3536 (let ((version "3.3.3"))
3537 (package
3538 (name "sbcl-cl-base64")
3539 (version version)
3540 (source
3541 (origin
3542 (method git-fetch)
3543 (uri (git-reference
3544 (url "http://git.kpe.io/cl-base64.git")
3545 (commit (string-append "v" version))))
3546 (file-name (git-file-name "cl-base64" version))
3547 (sha256
3548 (base32 "1dw6j7n6gsd2qa0p0rbsjxj00acxx3i9ca1qkgl0liy8lpnwkypl"))))
3549 (build-system asdf-build-system/sbcl)
3550 (arguments
3551 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed
3552 ;; in a nested call to ASDF/OPERATE:OPERATE unless identically
3553 ;; to toplevel
3554 '(#:tests? #f))
3555 (inputs
3556 `(("sbcl-ptester" ,sbcl-ptester)
3557 ("sbcl-kmrcl" ,sbcl-kmrcl)))
3558 (home-page "http://files.kpe.io/cl-base64/")
3559 (synopsis
3560 "Common Lisp package to encode and decode base64 with URI support")
3561 (description
3562 "This package provides highly optimized base64 encoding and decoding.
3563 Besides conversion to and from strings, integer conversions are supported.
3564 Encoding with Uniform Resource Identifiers is supported by using a modified
3565 encoding table that uses only URI-compatible characters.")
3566 (license license:bsd-3))))
3567
3568 (define-public cl-base64
3569 (sbcl-package->cl-source-package sbcl-cl-base64))
3570
3571 (define-public sbcl-chunga
3572 (package
3573 (name "sbcl-chunga")
3574 (version "1.1.7")
3575 (source
3576 (origin
3577 (method git-fetch)
3578 (uri (git-reference
3579 (url "https://github.com/edicl/chunga.git")
3580 (commit (string-append "v" version))))
3581 (file-name (git-file-name name version))
3582 (sha256
3583 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
3584 (build-system asdf-build-system/sbcl)
3585 (inputs
3586 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
3587 (home-page "https://edicl.github.io/chunga/")
3588 (synopsis "Portable chunked streams for Common Lisp")
3589 (description
3590 "Chunga implements streams capable of chunked encoding on demand as
3591 defined in RFC 2616.")
3592 (license license:bsd-2)))
3593
3594 (define-public cl-chunga
3595 (sbcl-package->cl-source-package sbcl-chunga))
3596
3597 (define-public sbcl-cl-who
3598 (let ((version "1.1.4")
3599 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
3600 (revision "1"))
3601 (package
3602 (name "sbcl-cl-who")
3603 (version (git-version version revision commit))
3604 (source
3605 (origin
3606 (method git-fetch)
3607 (uri (git-reference
3608 (url "https://github.com/edicl/cl-who.git")
3609 (commit commit)))
3610 (file-name (git-file-name name version))
3611 (sha256
3612 (base32
3613 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
3614 (build-system asdf-build-system/sbcl)
3615 (native-inputs
3616 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3617 (home-page "https://edicl.github.io/cl-who/")
3618 (synopsis "Yet another Lisp markup language")
3619 (description
3620 "There are plenty of Lisp Markup Languages out there - every Lisp
3621 programmer seems to write at least one during his career - and CL-WHO (where
3622 WHO means \"with-html-output\" for want of a better acronym) is probably just
3623 as good or bad as the next one.")
3624 (license license:bsd-2))))
3625
3626 (define-public cl-cl-who
3627 (sbcl-package->cl-source-package sbcl-cl-who))
3628
3629 (define-public sbcl-chipz
3630 (let ((version "0.8")
3631 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
3632 (revision "1"))
3633 (package
3634 (name "sbcl-chipz")
3635 (version (git-version version revision commit))
3636 (source
3637 (origin
3638 (method git-fetch)
3639 (uri (git-reference
3640 (url "https://github.com/froydnj/chipz.git")
3641 (commit commit)))
3642 (file-name (git-file-name name version))
3643 (sha256
3644 (base32
3645 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
3646 (build-system asdf-build-system/sbcl)
3647 (native-inputs
3648 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3649 (home-page "http://method-combination.net/lisp/chipz/")
3650 (synopsis
3651 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
3652 data")
3653 (description
3654 "DEFLATE data, defined in RFC1951, forms the core of popular
3655 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
3656 Chipz also provides for decompressing data in those formats as well. BZIP2 is
3657 the format used by the popular compression tool bzip2.")
3658 ;; The author describes it as "MIT-like"
3659 (license license:expat))))
3660
3661 (define-public cl-chipz
3662 (sbcl-package->cl-source-package sbcl-chipz))
3663
3664 (define-public sbcl-drakma
3665 (package
3666 (name "sbcl-drakma")
3667 (version "2.0.7")
3668 (source
3669 (origin
3670 (method git-fetch)
3671 (uri (git-reference
3672 (url "https://github.com/edicl/drakma.git")
3673 (commit (string-append "v" version))))
3674 (file-name (git-file-name name version))
3675 (sha256
3676 (base32
3677 "1441idnyif9xzx3ln1p3fg36k2v9h4wasjqrzc8y52j61420qpci"))))
3678 (build-system asdf-build-system/sbcl)
3679 (inputs
3680 `(("sbcl-puri" ,sbcl-puri)
3681 ("sbcl-cl-base64" ,sbcl-cl-base64)
3682 ("sbcl-chunga" ,sbcl-chunga)
3683 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3684 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3685 ("sbcl-chipz" ,sbcl-chipz)
3686 ("sbcl-usocket" ,sbcl-usocket)
3687 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
3688 (native-inputs
3689 `(("sbcl-fiveam" ,sbcl-fiveam)))
3690 (home-page "https://edicl.github.io/drakma/")
3691 (synopsis "HTTP client written in Common Lisp")
3692 (description
3693 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
3694 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
3695 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
3696 (license license:bsd-2)))
3697
3698 (define-public cl-drakma
3699 (sbcl-package->cl-source-package sbcl-drakma))
3700
3701 (define-public ecl-drakma
3702 (sbcl-package->ecl-package sbcl-drakma))
3703
3704 (define-public sbcl-hunchentoot
3705 (package
3706 (name "sbcl-hunchentoot")
3707 (version "1.2.38")
3708 (source
3709 (origin
3710 (method git-fetch)
3711 (uri (git-reference
3712 (url "https://github.com/edicl/hunchentoot.git")
3713 (commit (string-append "v" version))))
3714 (file-name (git-file-name "hunchentoot" version))
3715 (sha256
3716 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
3717 (build-system asdf-build-system/sbcl)
3718 (native-inputs
3719 `(("sbcl-cl-who" ,sbcl-cl-who)
3720 ("sbcl-drakma" ,sbcl-drakma)))
3721 (inputs
3722 `(("sbcl-chunga" ,sbcl-chunga)
3723 ("sbcl-cl-base64" ,sbcl-cl-base64)
3724 ("sbcl-cl-fad" ,sbcl-cl-fad)
3725 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3726 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3727 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
3728 ("sbcl-md5" ,sbcl-md5)
3729 ("sbcl-rfc2388" ,sbcl-rfc2388)
3730 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
3731 ("sbcl-usocket" ,sbcl-usocket)))
3732 (home-page "https://edicl.github.io/hunchentoot/")
3733 (synopsis "Web server written in Common Lisp")
3734 (description
3735 "Hunchentoot is a web server written in Common Lisp and at the same
3736 time a toolkit for building dynamic websites. As a stand-alone web server,
3737 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
3738 connections (keep-alive), and SSL.")
3739 (license license:bsd-2)))
3740
3741 (define-public cl-hunchentoot
3742 (sbcl-package->cl-source-package sbcl-hunchentoot))
3743
3744 (define-public sbcl-trivial-types
3745 (package
3746 (name "sbcl-trivial-types")
3747 (version "0.0.1")
3748 (source
3749 (origin
3750 (method git-fetch)
3751 (uri (git-reference
3752 (url "https://github.com/m2ym/trivial-types.git")
3753 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
3754 (file-name (git-file-name name version))
3755 (sha256
3756 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
3757 (build-system asdf-build-system/sbcl)
3758 (home-page "https://github.com/m2ym/trivial-types")
3759 (synopsis "Trivial type definitions for Common Lisp")
3760 (description
3761 "TRIVIAL-TYPES provides missing but important type definitions such as
3762 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
3763 (license license:llgpl)))
3764
3765 (define-public cl-trivial-types
3766 (sbcl-package->cl-source-package sbcl-trivial-types))
3767
3768 (define-public sbcl-cl-syntax
3769 (package
3770 (name "sbcl-cl-syntax")
3771 (version "0.0.3")
3772 (source
3773 (origin
3774 (method git-fetch)
3775 (uri (git-reference
3776 (url "https://github.com/m2ym/cl-syntax.git")
3777 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3778 (file-name (git-file-name "cl-syntax" version))
3779 (sha256
3780 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3781 (build-system asdf-build-system/sbcl)
3782 (arguments
3783 '(#:asd-file "cl-syntax.asd"
3784 #:asd-system-name "cl-syntax"))
3785 (inputs `(("sbcl-trivial-types" ,sbcl-trivial-types)
3786 ("sbcl-named-readtables" ,sbcl-named-readtables)))
3787 (home-page "https://github.com/m2ym/cl-syntax")
3788 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3789 (description
3790 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
3791 (license license:llgpl)))
3792
3793 (define-public cl-syntax
3794 (sbcl-package->cl-source-package sbcl-cl-syntax))
3795
3796 (define-public sbcl-cl-annot
3797 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
3798 (revision "1"))
3799 (package
3800 (name "sbcl-cl-annot")
3801 (version (git-version "0.0.0" revision commit))
3802 (source
3803 (origin
3804 (method git-fetch)
3805 (uri (git-reference
3806 (url "https://github.com/m2ym/cl-annot.git")
3807 (commit commit)))
3808 (file-name (git-file-name name version))
3809 (sha256
3810 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
3811 (build-system asdf-build-system/sbcl)
3812 (arguments
3813 '(#:asd-file "cl-annot.asd"
3814 #:asd-system-name "cl-annot"))
3815 (inputs
3816 `(("sbcl-alexandria" ,sbcl-alexandria)))
3817 (home-page "https://github.com/m2ym/cl-annot")
3818 (synopsis "Python-like Annotation Syntax for Common Lisp.")
3819 (description
3820 "@code{cl-annot} is an general annotation library for Common Lisp.")
3821 (license license:llgpl))))
3822
3823 (define-public cl-annot
3824 (sbcl-package->cl-source-package sbcl-cl-annot))
3825
3826 (define-public sbcl-cl-syntax-annot
3827 (package
3828 (name "sbcl-cl-syntax-annot")
3829 (version "0.0.3")
3830 (source
3831 (origin
3832 (method git-fetch)
3833 (uri (git-reference
3834 (url "https://github.com/m2ym/cl-syntax.git")
3835 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3836 (file-name (git-file-name name version))
3837 (sha256
3838 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3839 (build-system asdf-build-system/sbcl)
3840 (arguments
3841 '(#:asd-file "cl-syntax-annot.asd"
3842 #:asd-system-name "cl-syntax-annot"))
3843 (inputs
3844 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
3845 ("sbcl-cl-annot" ,sbcl-cl-annot)))
3846 (home-page "https://github.com/m2ym/cl-syntax")
3847 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3848 (description
3849 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and
3850 SLIME.")
3851 (license license:llgpl)))
3852
3853 (define-public cl-syntax-annot
3854 (sbcl-package->cl-source-package sbcl-cl-syntax-annot))
3855
3856 (define-public sbcl-cl-utilities
3857 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
3858 (revision "1"))
3859 (package
3860 (name "sbcl-cl-utilities")
3861 (version (git-version "0.0.0" revision commit))
3862 (source
3863 (origin
3864 (method url-fetch)
3865 (uri
3866 (string-append
3867 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
3868 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
3869 (sha256
3870 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
3871 (build-system asdf-build-system/sbcl)
3872 (arguments
3873 '(#:asd-file "cl-utilities.asd"
3874 #:asd-system-name "cl-utilities"
3875 #:phases
3876 (modify-phases %standard-phases
3877 (add-after 'unpack 'fix-paths
3878 (lambda* (#:key inputs #:allow-other-keys)
3879 (substitute* "rotate-byte.lisp"
3880 (("in-package :cl-utilities)" all)
3881 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
3882 (home-page "http://common-lisp.net/project/cl-utilities")
3883 (synopsis "A collection of semi-standard utilities")
3884 (description
3885 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
3886 is a collection of Common Lisp Utilities, things that everybody writes since
3887 they're not part of the official standard. There are some very useful things
3888 there; the only problems are that they aren't implemented as well as you'd
3889 like (some aren't implemented at all) and they aren't conveniently packaged
3890 and maintained. It takes quite a bit of work to carefully implement utilities
3891 for common use, commented and documented, with error checking placed
3892 everywhere some dumb user might make a mistake.")
3893 (license license:public-domain))))
3894
3895 (define-public cl-utilities
3896 (sbcl-package->cl-source-package sbcl-cl-utilities))
3897
3898 (define-public sbcl-map-set
3899 (let ((commit "7b4b545b68b8")
3900 (revision "1"))
3901 (package
3902 (name "sbcl-map-set")
3903 (version (git-version "0.0.0" revision commit))
3904 (source
3905 (origin
3906 (method url-fetch)
3907 (uri (string-append
3908 "https://bitbucket.org/tarballs_are_good/map-set/get/"
3909 commit ".tar.gz"))
3910 (sha256
3911 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
3912 (build-system asdf-build-system/sbcl)
3913 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
3914 (synopsis "Set-like data structure")
3915 (description
3916 "Implementation of a set-like data structure with constant time
3917 addition, removal, and random selection.")
3918 (license license:bsd-3))))
3919
3920 (define-public cl-map-set
3921 (sbcl-package->cl-source-package sbcl-map-set))
3922
3923 (define-public sbcl-quri
3924 (let ((commit "76b75103f21ead092c9f715512fa82441ef61185")
3925 (revision "1"))
3926 (package
3927 (name "sbcl-quri")
3928 (version (git-version "0.1.0" revision commit))
3929 (source
3930 (origin
3931 (method git-fetch)
3932 (uri (git-reference
3933 (url "https://github.com/fukamachi/quri.git")
3934 (commit commit)))
3935 (file-name (git-file-name name version))
3936 (sha256
3937 (base32 "1ccbxsgzdibmzq33mmbmmz9vwl6l03xh6nbpsh1hkdvdcl7q0a60"))))
3938 (build-system asdf-build-system/sbcl)
3939 (arguments
3940 ;; Tests fail with: Component QURI-ASD::QURI-TEST not found,
3941 ;; required by #<SYSTEM "quri">. Why?
3942 '(#:tests? #f))
3943 (native-inputs `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
3944 ("sbcl-prove" ,sbcl-prove)))
3945 (inputs `(("sbcl-babel" ,sbcl-babel)
3946 ("sbcl-split-sequence" ,sbcl-split-sequence)
3947 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
3948 ("sbcl-alexandria" ,sbcl-alexandria)))
3949 (home-page "https://github.com/fukamachi/quri")
3950 (synopsis "Yet another URI library for Common Lisp")
3951 (description
3952 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
3953 Lisp. It is intended to be a replacement of PURI.")
3954 (license license:bsd-3))))
3955
3956 (define-public cl-quri
3957 (sbcl-package->cl-source-package sbcl-quri))
3958
3959 (define-public sbcl-myway
3960 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
3961 (revision "1"))
3962 (package
3963 (name "sbcl-myway")
3964 (version (git-version "0.1.0" revision commit))
3965 (source
3966 (origin
3967 (method git-fetch)
3968 (uri (git-reference
3969 (url "https://github.com/fukamachi/myway.git")
3970 (commit commit)))
3971 (file-name (git-file-name "myway" version))
3972 (sha256
3973 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
3974 (build-system asdf-build-system/sbcl)
3975 (arguments
3976 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
3977 ;; by #<SYSTEM "myway">. Why?
3978 '(#:tests? #f))
3979 (native-inputs
3980 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
3981 ("sbcl-prove" ,sbcl-prove)))
3982 (inputs
3983 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3984 ("sbcl-quri" ,sbcl-quri)
3985 ("sbcl-map-set" ,sbcl-map-set)))
3986 (home-page "https://github.com/fukamachi/myway")
3987 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
3988 (description "My Way is a Sinatra-compatible URL routing library.")
3989 (license license:llgpl))))
3990
3991 (define-public cl-myway
3992 (sbcl-package->cl-source-package sbcl-myway))
3993
3994 (define-public sbcl-xsubseq
3995 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
3996 (revision "1"))
3997 (package
3998 (name "sbcl-xsubseq")
3999 (version (git-version "0.0.1" revision commit))
4000 (source
4001 (origin
4002 (method git-fetch)
4003 (uri (git-reference
4004 (url "https://github.com/fukamachi/xsubseq")
4005 (commit commit)))
4006 (file-name (git-file-name name version))
4007 (sha256
4008 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4009 (build-system asdf-build-system/sbcl)
4010 (arguments
4011 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4012 ;; required by #<SYSTEM "xsubseq">. Why?
4013 '(#:tests? #f))
4014 (native-inputs
4015 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4016 ("sbcl-prove" ,sbcl-prove)))
4017 (home-page "https://github.com/fukamachi/xsubseq")
4018 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4019 (description
4020 "XSubseq provides functions to be able to handle \"subseq\"s more
4021 effieiently.")
4022 (license license:bsd-2))))
4023
4024 (define-public cl-xsubseq
4025 (sbcl-package->cl-source-package sbcl-xsubseq))
4026
4027 (define-public sbcl-smart-buffer
4028 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4029 (revision "1"))
4030 (package
4031 (name "sbcl-smart-buffer")
4032 (version (git-version "0.0.1" revision commit))
4033 (source
4034 (origin
4035 (method git-fetch)
4036 (uri (git-reference
4037 (url "https://github.com/fukamachi/smart-buffer")
4038 (commit commit)))
4039 (file-name (git-file-name name version))
4040 (sha256
4041 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4042 (build-system asdf-build-system/sbcl)
4043 (arguments
4044 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4045 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4046 `(#:tests? #f))
4047 (native-inputs
4048 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4049 ("sbcl-prove" ,sbcl-prove)))
4050 (inputs
4051 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4052 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4053 (home-page "https://github.com/fukamachi/smart-buffer")
4054 (synopsis "Smart octets buffer")
4055 (description
4056 "Smart-buffer provides an output buffer which changes the destination
4057 depending on content size.")
4058 (license license:bsd-3))))
4059
4060 (define-public cl-smart-buffer
4061 (sbcl-package->cl-source-package sbcl-smart-buffer))
4062
4063 (define-public sbcl-fast-http
4064 (let ((commit "f9e7597191bae380503e20724fd493a24d024935")
4065 (revision "1"))
4066 (package
4067 (name "sbcl-fast-http")
4068 (version (git-version "0.2.0" revision commit))
4069 (source
4070 (origin
4071 (method git-fetch)
4072 (uri (git-reference
4073 (url "https://github.com/fukamachi/fast-http")
4074 (commit commit)))
4075 (file-name (git-file-name name version))
4076 (sha256
4077 (base32 "0qdmwv2zm0sizxdb8nnclgwl0nfjcbjaimbakavikijw7lr9b4jp"))))
4078 (build-system asdf-build-system/sbcl)
4079 (arguments
4080 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4081 ;; required by #<SYSTEM "fast-http">. Why?
4082 `(#:tests? #f))
4083 (native-inputs
4084 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4085 ("sbcl-prove" ,sbcl-prove)))
4086 (inputs
4087 `(("sbcl-alexandria" ,sbcl-alexandria)
4088 ("sbcl-proc-parse" ,sbcl-proc-parse)
4089 ("sbcl-xsubseq" ,sbcl-xsubseq)
4090 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4091 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4092 (home-page "https://github.com/fukamachi/fast-http")
4093 (synopsis "HTTP request/response parser for Common Lisp")
4094 (description
4095 "@code{fast-http} is a HTTP request/response protocol parser for Common
4096 Lisp.")
4097 ;; Author specified the MIT license
4098 (license license:expat))))
4099
4100 (define-public cl-fast-http
4101 (sbcl-package->cl-source-package sbcl-fast-http))
4102
4103 (define-public sbcl-static-vectors
4104 (package
4105 (name "sbcl-static-vectors")
4106 (version "1.8.4")
4107 (source
4108 (origin
4109 (method git-fetch)
4110 (uri (git-reference
4111 (url "https://github.com/sionescu/static-vectors.git")
4112 (commit (string-append "v" version))))
4113 (file-name (git-file-name name version))
4114 (sha256
4115 (base32 "0qvf9z6bhwhm8n45fjwkm7j8dcb58szfvndky65cyn4lpdval7m1"))))
4116 (native-inputs
4117 `(("sbcl-fiveam" ,sbcl-fiveam)))
4118 (inputs
4119 `(("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
4120 ("sbcl-cffi" ,sbcl-cffi)))
4121 (build-system asdf-build-system/sbcl)
4122 (home-page "https://github.com/sionescu/static-vectors")
4123 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4124 (description
4125 "With @code{static-vectors}, you can create vectors allocated in static
4126 memory.")
4127 (license license:expat)))
4128
4129 (define-public cl-static-vectors
4130 (sbcl-package->cl-source-package sbcl-static-vectors))
4131
4132 (define-public ecl-static-vectors
4133 (sbcl-package->ecl-package sbcl-static-vectors))
4134
4135 (define-public sbcl-marshal
4136 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4137 (revision "1"))
4138 (package
4139 (name "sbcl-marshal")
4140 (version (git-version "1.3.0" revision commit))
4141 (source
4142 (origin
4143 (method git-fetch)
4144 (uri (git-reference
4145 (url "https://github.com/wlbr/cl-marshal.git")
4146 (commit commit)))
4147 (file-name (git-file-name name version))
4148 (sha256
4149 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4150 (build-system asdf-build-system/sbcl)
4151 (home-page "https://github.com/wlbr/cl-marshal")
4152 (synopsis "Simple (de)serialization of Lisp datastructures")
4153 (description
4154 "Simple and fast marshalling of Lisp datastructures. Convert any object
4155 into a string representation, put it on a stream an revive it from there.
4156 Only minimal changes required to make your CLOS objects serializable.")
4157 (license license:expat))))
4158
4159 (define-public cl-marshal
4160 (sbcl-package->cl-source-package sbcl-marshal))
4161
4162 (define-public sbcl-checkl
4163 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4164 (revision "1"))
4165 (package
4166 (name "sbcl-checkl")
4167 (version (git-version "0.0.0" revision commit))
4168 (source
4169 (origin
4170 (method git-fetch)
4171 (uri (git-reference
4172 (url "https://github.com/rpav/CheckL.git")
4173 (commit commit)))
4174 (file-name (git-file-name name version))
4175 (sha256
4176 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4177 (build-system asdf-build-system/sbcl)
4178 (arguments
4179 ;; Error while trying to load definition for system checkl-test from
4180 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4181 ;; is undefined.
4182 '(#:tests? #f))
4183 (native-inputs
4184 `(("sbcl-fiveam" ,sbcl-fiveam)))
4185 (inputs
4186 `(("sbcl-marshal" ,sbcl-marshal)))
4187 (home-page "https://github.com/rpav/CheckL/")
4188 (synopsis "Dynamic testing for Common Lisp")
4189 (description
4190 "CheckL lets you write tests dynamically, it checks resulting values
4191 against the last run.")
4192 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4193 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4194 ;; stronger of the two and so I think only listing this should suffice.
4195 (license license:llgpl))))
4196
4197 (define-public cl-checkl
4198 (sbcl-package->cl-source-package sbcl-checkl))
4199
4200 (define-public sbcl-fast-io
4201 (let ((commit "dc3a71db7e9b756a88781ae9c342fe9d4bbab51c")
4202 (revision "1"))
4203 (package
4204 (name "sbcl-fast-io")
4205 (version (git-version "1.0.0" revision commit))
4206 (source
4207 (origin
4208 (method git-fetch)
4209 (uri (git-reference
4210 (url "https://github.com/rpav/fast-io.git")
4211 (commit commit)))
4212 (file-name (git-file-name name version))
4213 (sha256
4214 (base32 "1jsp6xvi26ln6fdy5j5zi05xvan8jsqdhisv552dy6xg6ws8i1yq"))))
4215 (build-system asdf-build-system/sbcl)
4216 (arguments
4217 ;; Error while trying to load definition for system fast-io-test from
4218 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4219 ;; is undefined.
4220 '(#:tests? #f))
4221 (native-inputs
4222 `(("sbcl-fiveam" ,sbcl-fiveam)
4223 ("sbcl-checkl" ,sbcl-checkl)))
4224 (inputs
4225 `(("sbcl-alexandria" ,sbcl-alexandria)
4226 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4227 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4228 (home-page "https://github.com/rpav/fast-io")
4229 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4230 (description
4231 "Fast-io is about improving performance to octet-vectors and octet
4232 streams (though primarily the former, while wrapping the latter).")
4233 ;; Author specifies this as NewBSD which is an alias
4234 (license license:bsd-3))))
4235
4236 (define-public cl-fast-io
4237 (sbcl-package->cl-source-package sbcl-fast-io))
4238
4239 (define-public sbcl-jonathan
4240 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4241 (revision "1"))
4242 (package
4243 (name "sbcl-jonathan")
4244 (version (git-version "0.1.0" revision commit))
4245 (source
4246 (origin
4247 (method git-fetch)
4248 (uri (git-reference
4249 (url "https://github.com/Rudolph-Miller/jonathan.git")
4250 (commit commit)))
4251 (file-name (git-file-name name version))
4252 (sha256
4253 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4254 (build-system asdf-build-system/sbcl)
4255 (arguments
4256 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4257 ;; required by #<SYSTEM "jonathan">. Why?
4258 `(#:tests? #f))
4259 (native-inputs
4260 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4261 ("sbcl-prove" ,sbcl-prove)))
4262 (inputs
4263 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4264 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4265 ("sbcl-fast-io" ,sbcl-fast-io)
4266 ("sbcl-proc-parse" ,sbcl-proc-parse)
4267 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4268 (home-page "http://rudolph-miller.github.io/jonathan/overview.html")
4269 (synopsis "JSON encoder and decoder")
4270 (description
4271 "High performance JSON encoder and decoder. Currently support: SBCL,
4272 CCL.")
4273 ;; Author specifies the MIT license
4274 (license license:expat))))
4275
4276 (define-public cl-jonathan
4277 (sbcl-package->cl-source-package sbcl-jonathan))
4278
4279 (define-public sbcl-http-body
4280 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4281 (revision "1"))
4282 (package
4283 (name "sbcl-http-body")
4284 (version (git-version "0.1.0" revision commit))
4285 (source
4286 (origin
4287 (method git-fetch)
4288 (uri (git-reference
4289 (url "https://github.com/fukamachi/http-body")
4290 (commit commit)))
4291 (file-name (git-file-name name version))
4292 (sha256
4293 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4294 (build-system asdf-build-system/sbcl)
4295 (arguments
4296 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4297 ;; found, required by #<SYSTEM "http-body">. Why?
4298 `(#:tests? #f))
4299 (native-inputs
4300 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4301 ("sbcl-prove" ,sbcl-prove)))
4302 (inputs
4303 `(("sbcl-fast-http" ,sbcl-fast-http)
4304 ("sbcl-jonathan" ,sbcl-jonathan)
4305 ("sbcl-quri" ,sbcl-quri)))
4306 (home-page "https://github.com/fukamachi/http-body")
4307 (synopsis "HTTP POST data parser")
4308 (description
4309 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4310 supports application/x-www-form-urlencoded, application/json, and
4311 multipart/form-data.")
4312 (license license:bsd-2))))
4313
4314 (define-public cl-http-body
4315 (sbcl-package->cl-source-package sbcl-http-body))
4316
4317 (define-public sbcl-circular-streams
4318 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4319 (revision "1"))
4320 (package
4321 (name "sbcl-circular-streams")
4322 (version (git-version "0.1.0" revision commit))
4323 (source
4324 (origin
4325 (method git-fetch)
4326 (uri (git-reference
4327 (url "https://github.com/fukamachi/circular-streams")
4328 (commit commit)))
4329 (file-name (git-file-name name version))
4330 (sha256
4331 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4332 (build-system asdf-build-system/sbcl)
4333 (arguments
4334 ;; The tests depend on cl-test-more which is now prove. Prove
4335 ;; tests aren't working for some reason.
4336 `(#:tests? #f))
4337 (inputs
4338 `(("sbcl-fast-io" ,sbcl-fast-io)
4339 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4340 (home-page "https://github.com/fukamachi/circular-streams")
4341 (synopsis "Circularly readable streams for Common Lisp")
4342 (description
4343 "Circular-Streams allows you to read streams circularly by wrapping real
4344 streams. Once you reach end-of-file of a stream, it's file position will be
4345 reset to 0 and you're able to read it again.")
4346 (license license:llgpl))))
4347
4348 (define-public cl-circular-streams
4349 (sbcl-package->cl-source-package sbcl-circular-streams))
4350
4351 (define-public sbcl-lack-request
4352 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4353 (revision "1"))
4354 (package
4355 (name "sbcl-lack-request")
4356 (version (git-version "0.1.0" revision commit))
4357 (source
4358 (origin
4359 (method git-fetch)
4360 (uri (git-reference
4361 (url "https://github.com/fukamachi/lack.git")
4362 (commit commit)))
4363 (file-name (git-file-name "lack-request" version))
4364 (sha256
4365 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4366 (build-system asdf-build-system/sbcl)
4367 (arguments
4368 '(#:asd-file "lack-request.asd"
4369 #:asd-system-name "lack-request"
4370 #:test-asd-file "t-lack-request.asd"
4371 ;; XXX: Component :CLACK-TEST not found
4372 #:tests? #f))
4373 (native-inputs
4374 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4375 ("sbcl-prove" ,sbcl-prove)))
4376 (inputs
4377 `(("sbcl-quri" ,sbcl-quri)
4378 ("sbcl-http-body" ,sbcl-http-body)
4379 ("sbcl-circular-streams" ,sbcl-circular-streams)))
4380 (home-page "https://github.com/fukamachi/lack")
4381 (synopsis "Lack, the core of Clack")
4382 (description
4383 "Lack is a Common Lisp library which allows web applications to be
4384 constructed of modular components. It was originally a part of Clack, however
4385 it's going to be rewritten as an individual project since Clack v2 with
4386 performance and simplicity in mind.")
4387 (license license:llgpl))))
4388
4389 (define-public cl-lack-request
4390 (sbcl-package->cl-source-package sbcl-lack-request))
4391
4392 (define-public sbcl-local-time
4393 (let ((commit "beac054eef428552b63d4ae7820c32ffef9a3015")
4394 (revision "1"))
4395 (package
4396 (name "sbcl-local-time")
4397 (version (git-version "1.0.6" revision commit))
4398 (source
4399 (origin
4400 (method git-fetch)
4401 (uri (git-reference
4402 (url "https://github.com/dlowe-net/local-time.git")
4403 (commit commit)))
4404 (file-name (git-file-name name version))
4405 (sha256
4406 (base32 "0xhkmgxh41dg2wwlsp0h2l41jp144xn4gpxhh0lna6kh0560w2cc"))))
4407 (build-system asdf-build-system/sbcl)
4408 (arguments
4409 ;; TODO: Component :STEFIL not found, required by #<SYSTEM
4410 ;; "local-time/test">
4411 '(#:tests? #f))
4412 (native-inputs
4413 `(("stefil" ,sbcl-hu.dwim.stefil)))
4414 (inputs
4415 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4416 (home-page "https://common-lisp.net/project/local-time/")
4417 (synopsis "Time manipulation library for Common Lisp")
4418 (description
4419 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4420 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4421 Long Painful History of Time\".")
4422 (license license:expat))))
4423
4424 (define-public cl-local-time
4425 (sbcl-package->cl-source-package sbcl-local-time))
4426
4427 (define-public sbcl-lack-response
4428 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4429 (revision "1"))
4430 (package
4431 (name "sbcl-lack-response")
4432 (version (git-version "0.1.0" revision commit))
4433 (source
4434 (origin
4435 (method git-fetch)
4436 (uri (git-reference
4437 (url "https://github.com/fukamachi/lack.git")
4438 (commit commit)))
4439 (file-name (git-file-name name version))
4440 (sha256
4441 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4442 (build-system asdf-build-system/sbcl)
4443 (arguments
4444 '(#:asd-file "lack-response.asd"
4445 #:asd-system-name "lack-response"
4446 ;; XXX: no tests for lack-response.
4447 #:tests? #f))
4448 (native-inputs
4449 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4450 ("sbcl-prove" ,sbcl-prove)))
4451 (inputs
4452 `(("sbcl-quri" ,sbcl-quri)
4453 ("sbcl-http-body" ,sbcl-http-body)
4454 ("sbcl-circular-streams" ,sbcl-circular-streams)
4455 ("sbcl-local-time" ,sbcl-local-time)))
4456 (home-page "https://github.com/fukamachi/lack")
4457 (synopsis "Lack, the core of Clack")
4458 (description
4459 "Lack is a Common Lisp library which allows web applications to be
4460 constructed of modular components. It was originally a part of Clack, however
4461 it's going to be rewritten as an individual project since Clack v2 with
4462 performance and simplicity in mind.")
4463 (license license:llgpl))))
4464
4465 (define-public cl-lack-response
4466 (sbcl-package->cl-source-package sbcl-lack-response))
4467
4468 (define-public sbcl-lack-component
4469 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4470 (revision "1"))
4471 (package
4472 (name "sbcl-lack-component")
4473 (version (git-version "0.0.0" revision commit))
4474 (source
4475 (origin
4476 (method git-fetch)
4477 (uri (git-reference
4478 (url "https://github.com/fukamachi/lack.git")
4479 (commit commit)))
4480 (file-name (git-file-name "lack-component" version))
4481 (sha256
4482 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4483 (build-system asdf-build-system/sbcl)
4484 (arguments
4485 '(#:asd-file "lack-component.asd"
4486 #:asd-system-name "lack-component"
4487 #:test-asd-file "t-lack-component.asd"
4488 ;; XXX: Component :LACK-TEST not found
4489 #:tests? #f))
4490 (native-inputs
4491 `(("prove-asdf" ,sbcl-prove-asdf)))
4492 (home-page "https://github.com/fukamachi/lack")
4493 (synopsis "Lack, the core of Clack")
4494 (description
4495 "Lack is a Common Lisp library which allows web applications to be
4496 constructed of modular components. It was originally a part of Clack, however
4497 it's going to be rewritten as an individual project since Clack v2 with
4498 performance and simplicity in mind.")
4499 (license license:llgpl))))
4500
4501 (define-public cl-lack-component
4502 (sbcl-package->cl-source-package sbcl-lack-component))
4503
4504 (define-public sbcl-lack-util
4505 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4506 (revision "1"))
4507 (package
4508 (name "sbcl-lack-util")
4509 (version (git-version "0.1.0" revision commit))
4510 (source
4511 (origin
4512 (method git-fetch)
4513 (uri (git-reference
4514 (url "https://github.com/fukamachi/lack.git")
4515 (commit commit)))
4516 (file-name (git-file-name "lack-util" version))
4517 (sha256
4518 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4519 (build-system asdf-build-system/sbcl)
4520 (arguments
4521 '(#:asd-file "lack-util.asd"
4522 #:asd-system-name "lack-util"
4523 #:test-asd-file "t-lack-util.asd"
4524 ;; XXX: Component :LACK-TEST not found
4525 #:tests? #f))
4526 (native-inputs
4527 `(("prove-asdf" ,sbcl-prove-asdf)))
4528 (inputs
4529 `(("sbcl-ironclad" ,sbcl-ironclad)))
4530 (home-page "https://github.com/fukamachi/lack")
4531 (synopsis "Lack, the core of Clack")
4532 (description
4533 "Lack is a Common Lisp library which allows web applications to be
4534 constructed of modular components. It was originally a part of Clack, however
4535 it's going to be rewritten as an individual project since Clack v2 with
4536 performance and simplicity in mind.")
4537 (license license:llgpl))))
4538
4539 (define-public cl-lack-util
4540 (sbcl-package->cl-source-package sbcl-lack-util))
4541
4542 (define-public sbcl-lack-middleware-backtrace
4543 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4544 (revision "1"))
4545 (package
4546 (name "sbcl-lack-middleware-backtrace")
4547 (version (git-version "0.1.0" revision commit))
4548 (source
4549 (origin
4550 (method git-fetch)
4551 (uri (git-reference
4552 (url "https://github.com/fukamachi/lack.git")
4553 (commit commit)))
4554 (file-name (git-file-name "lack-middleware-backtrace" version))
4555 (sha256
4556 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4557 (build-system asdf-build-system/sbcl)
4558 (arguments
4559 '(#:asd-file "lack-middleware-backtrace.asd"
4560 #:asd-system-name "lack-middleware-backtrace"
4561 #:test-asd-file "t-lack-middleware-backtrace.asd"
4562 ;; XXX: Component :LACK not found
4563 #:tests? #f))
4564 (native-inputs
4565 `(("prove-asdf" ,sbcl-prove-asdf)))
4566 (home-page "https://github.com/fukamachi/lack")
4567 (synopsis "Lack, the core of Clack")
4568 (description
4569 "Lack is a Common Lisp library which allows web applications to be
4570 constructed of modular components. It was originally a part of Clack, however
4571 it's going to be rewritten as an individual project since Clack v2 with
4572 performance and simplicity in mind.")
4573 (license license:llgpl))))
4574
4575 (define-public cl-lack-middleware-backtrace
4576 (sbcl-package->cl-source-package sbcl-lack-middleware-backtrace))
4577
4578 (define-public sbcl-trivial-mimes
4579 (let ((commit "303f8ac0aa6ca0bc139aa3c34822e623c3723fab")
4580 (revision "1"))
4581 (package
4582 (name "sbcl-trivial-mimes")
4583 (version (git-version "1.1.0" revision commit))
4584 (source
4585 (origin
4586 (method git-fetch)
4587 (uri (git-reference
4588 (url "https://github.com/Shinmera/trivial-mimes.git")
4589 (commit commit)))
4590 (file-name (git-file-name name version))
4591 (sha256
4592 (base32 "17jxgl47r695bvsb7wi3n2ws5rp1zzgvw0zii8cy5ggw4b4ayv6m"))))
4593 (build-system asdf-build-system/sbcl)
4594 (arguments
4595 '(#:phases
4596 (modify-phases %standard-phases
4597 (add-after
4598 'unpack 'fix-paths
4599 (lambda* (#:key inputs #:allow-other-keys)
4600 (let ((anchor "#p\"/etc/mime.types\""))
4601 (substitute* "mime-types.lisp"
4602 ((anchor all)
4603 (string-append
4604 anchor "\n"
4605 "(asdf:system-relative-pathname :trivial-mimes "
4606 "\"../../share/common-lisp/" (%lisp-type)
4607 "-source/trivial-mimes/mime.types\")")))))))))
4608 (native-inputs
4609 `(("stefil" ,sbcl-hu.dwim.stefil)))
4610 (inputs
4611 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4612 (home-page "https://shinmera.github.io/trivial-mimes/")
4613 (synopsis "Tiny Common Lisp library to detect mime types in files")
4614 (description
4615 "This is a teensy library that provides some functions to determine the
4616 mime-type of a file.")
4617 (license license:artistic2.0))))
4618
4619 (define-public cl-trivial-mimes
4620 (sbcl-package->cl-source-package sbcl-trivial-mimes))
4621
4622 (define-public ecl-trivial-mimes
4623 (sbcl-package->ecl-package sbcl-trivial-mimes))
4624
4625 (define-public sbcl-lack-middleware-static
4626 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4627 (revision "1"))
4628 (package
4629 (name "sbcl-lack-middleware-static")
4630 (version (git-version "0.1.0" revision commit))
4631 (source
4632 (origin
4633 (method git-fetch)
4634 (uri (git-reference
4635 (url "https://github.com/fukamachi/lack.git")
4636 (commit commit)))
4637 (file-name (git-file-name "lack-middleware-static" version))
4638 (sha256
4639 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4640 (build-system asdf-build-system/sbcl)
4641 (arguments
4642 '(#:asd-file "lack-middleware-static.asd"
4643 #:asd-system-name "lack-middleware-static"
4644 #:test-asd-file "t-lack-middleware-static.asd"
4645 ;; XXX: Component :LACK not found
4646 #:tests? #f))
4647 (native-inputs
4648 `(("prove-asdf" ,sbcl-prove-asdf)))
4649 (inputs
4650 `(("sbcl-ironclad" ,sbcl-ironclad)
4651 ("sbcl-trivial-mimes" ,sbcl-trivial-mimes)
4652 ("sbcl-local-time" ,sbcl-local-time)))
4653 (home-page "https://github.com/fukamachi/lack")
4654 (synopsis "Lack, the core of Clack")
4655 (description
4656 "Lack is a Common Lisp library which allows web applications to be
4657 constructed of modular components. It was originally a part of Clack, however
4658 it's going to be rewritten as an individual project since Clack v2 with
4659 performance and simplicity in mind.")
4660 (license license:llgpl))))
4661
4662 (define-public cl-lack-middleware-static
4663 (sbcl-package->cl-source-package sbcl-lack-middleware-static))
4664
4665 (define-public sbcl-lack
4666 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4667 (revision "1"))
4668 (package
4669 (name "sbcl-lack")
4670 (version (git-version "0.1.0" revision commit))
4671 (source
4672 (origin
4673 (method git-fetch)
4674 (uri (git-reference
4675 (url "https://github.com/fukamachi/lack.git")
4676 (commit commit)))
4677 (file-name (git-file-name "lack" version))
4678 (sha256
4679 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4680 (build-system asdf-build-system/sbcl)
4681 (arguments
4682 '(#:test-asd-file "t-lack.asd"
4683 ;; XXX: Component :CLACK not found
4684 #:tests? #f))
4685 (native-inputs
4686 `(("prove-asdf" ,sbcl-prove-asdf)))
4687 (inputs
4688 `(("sbcl-lack-component" ,sbcl-lack-component)
4689 ("sbcl-lack-util" ,sbcl-lack-util)))
4690 (home-page "https://github.com/fukamachi/lack")
4691 (synopsis "Lack, the core of Clack")
4692 (description
4693 "Lack is a Common Lisp library which allows web applications to be
4694 constructed of modular components. It was originally a part of Clack, however
4695 it's going to be rewritten as an individual project since Clack v2 with
4696 performance and simplicity in mind.")
4697 (license license:llgpl))))
4698
4699 (define-public cl-lack
4700 (sbcl-package->cl-source-package sbcl-lack))
4701
4702 (define-public sbcl-ningle
4703 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
4704 (revision "1"))
4705 (package
4706 (name "sbcl-ningle")
4707 (version (git-version "0.3.0" revision commit))
4708 (source
4709 (origin
4710 (method git-fetch)
4711 (uri (git-reference
4712 (url "https://github.com/fukamachi/ningle.git")
4713 (commit commit)))
4714 (file-name (git-file-name name version))
4715 (sha256
4716 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
4717 (build-system asdf-build-system/sbcl)
4718 (arguments
4719 ;; TODO: pull in clack-test
4720 '(#:tests? #f
4721 #:phases
4722 (modify-phases %standard-phases
4723 (delete 'cleanup-files)
4724 (delete 'cleanup)
4725 (add-before 'cleanup 'combine-fasls
4726 (lambda* (#:key outputs #:allow-other-keys)
4727 (let* ((out (assoc-ref outputs "out"))
4728 (lib (string-append out "/lib/sbcl"))
4729 (ningle-path (string-append lib "/ningle"))
4730 (fasl-files (find-files out "\\.fasl$")))
4731 (mkdir-p ningle-path)
4732 (let ((fasl-path (lambda (name)
4733 (string-append ningle-path
4734 "/"
4735 (basename name)
4736 "--system.fasl"))))
4737 (for-each (lambda (file)
4738 (rename-file file
4739 (fasl-path
4740 (basename file ".fasl"))))
4741 fasl-files))
4742 fasl-files)
4743 #t)))))
4744 (native-inputs
4745 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4746 ("sbcl-prove" ,sbcl-prove)))
4747 (inputs
4748 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4749 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4750 ("sbcl-myway" ,sbcl-myway)
4751 ("sbcl-lack-request" ,sbcl-lack-request)
4752 ("sbcl-lack-response" ,sbcl-lack-response)
4753 ("sbcl-lack-component" ,sbcl-lack-component)
4754 ("sbcl-alexandria" ,sbcl-alexandria)
4755 ("sbcl-babel" ,sbcl-babel)))
4756 (home-page "https://8arrow.org/ningle/")
4757 (synopsis "Super micro framework for Common Lisp")
4758 (description
4759 "Ningle is a lightweight web application framework for Common Lisp.")
4760 (license license:llgpl))))
4761
4762 (define-public cl-ningle
4763 (sbcl-package->cl-source-package sbcl-ningle))
4764
4765 (define-public sbcl-clack
4766 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
4767 (revision "1"))
4768 (package
4769 (name "sbcl-clack")
4770 (version (git-version "2.0.0" revision commit))
4771 (source
4772 (origin
4773 (method git-fetch)
4774 (uri (git-reference
4775 (url "https://github.com/fukamachi/clack.git")
4776 (commit commit)))
4777 (file-name (git-file-name name version))
4778 (sha256
4779 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
4780 (build-system asdf-build-system/sbcl)
4781 (inputs
4782 `(("sbcl-lack" ,sbcl-lack)
4783 ("sbcl-lack-middleware-backtrace" ,sbcl-lack-middleware-backtrace)
4784 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)))
4785 (home-page "https://github.com/fukamachi/clack")
4786 (synopsis "Web Application Environment for Common Lisp")
4787 (description
4788 "Clack is a web application environment for Common Lisp inspired by
4789 Python's WSGI and Ruby's Rack.")
4790 (license license:llgpl))))
4791
4792 (define-public cl-clack
4793 (sbcl-package->cl-source-package sbcl-clack))
4794
4795 (define-public sbcl-log4cl
4796 (let ((commit "611e094458504b938d49de904eab141285328c7c")
4797 (revision "1"))
4798 (package
4799 (name "sbcl-log4cl")
4800 (build-system asdf-build-system/sbcl)
4801 (version "1.1.2")
4802 (source
4803 (origin
4804 (method git-fetch)
4805 (uri (git-reference
4806 (url "https://github.com/sharplispers/log4cl")
4807 (commit commit)))
4808 (file-name (git-file-name name version))
4809 (sha256
4810 (base32
4811 "08jly0s0g26b56hhpfizxsb4j0yvbh946sd205gr42dkzv8l7dsc"))))
4812 ;; FIXME: tests require stefil, sbcl-hu.dwim.stefil wont work
4813 (arguments
4814 `(#:tests? #f))
4815 (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
4816 (synopsis "Common Lisp logging framework, modeled after Log4J")
4817 (home-page "https://github.com/7max/log4cl")
4818 (description "This is a Common Lisp logging framework that can log at
4819 various levels and mix text with expressions.")
4820 (license license:asl2.0))))
4821
4822 (define-public cl-log4cl
4823 (sbcl-package->cl-source-package sbcl-log4cl))
4824
4825 (define-public ecl-log4cl
4826 (sbcl-package->ecl-package sbcl-log4cl))
4827
4828 (define-public sbcl-find-port
4829 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
4830 (revision "1"))
4831 (package
4832 (name "sbcl-find-port")
4833 (build-system asdf-build-system/sbcl)
4834 (version "0.1")
4835 (home-page "https://github.com/eudoxia0/find-port")
4836 (source
4837 (origin
4838 (method git-fetch)
4839 (uri (git-reference
4840 (url home-page)
4841 (commit commit)))
4842 (file-name (git-file-name name version))
4843 (sha256
4844 (base32
4845 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
4846 (native-inputs
4847 `(("fiveam" ,sbcl-fiveam)))
4848 (inputs
4849 `(("sbcl-usocket" ,sbcl-usocket)))
4850 (synopsis "Find open ports programmatically in Common Lisp")
4851 (description "This is a small Common Lisp library that finds an open
4852 port within a range.")
4853 (license license:expat))))
4854
4855 (define-public cl-find-port
4856 (sbcl-package->cl-source-package sbcl-find-port))
4857
4858 (define-public ecl-find-port
4859 (sbcl-package->ecl-package sbcl-find-port))
4860
4861 (define-public sbcl-clunit
4862 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
4863 (revision "1"))
4864 (package
4865 (name "sbcl-clunit")
4866 (version (git-version "0.2.3" revision commit))
4867 (source
4868 (origin
4869 (method git-fetch)
4870 (uri (git-reference
4871 (url "https://github.com/tgutu/clunit.git")
4872 (commit commit)))
4873 (file-name (git-file-name name version))
4874 (sha256
4875 (base32
4876 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
4877 (build-system asdf-build-system/sbcl)
4878 (synopsis "CLUnit is a Common Lisp unit testing framework")
4879 (description
4880 "CLUnit is a Common Lisp unit testing framework. It is designed
4881 to be easy to use so that you can quickly start testing. CLUnit
4882 provides a rich set of features aimed at improving your unit testing
4883 experience.")
4884 (home-page "http://tgutu.github.io/clunit/")
4885 ;; MIT License
4886 (license license:expat))))
4887
4888 (define-public cl-clunit
4889 (sbcl-package->cl-source-package sbcl-clunit))
4890
4891 (define-public ecl-clunit
4892 (sbcl-package->ecl-package sbcl-clunit))
4893
4894 (define-public sbcl-py4cl
4895 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
4896 (revision "1"))
4897 (package
4898 (name "sbcl-py4cl")
4899 (version (git-version "0.0.0" revision commit))
4900 (source
4901 (origin
4902 (method git-fetch)
4903 (uri (git-reference
4904 (url "https://github.com/bendudson/py4cl.git")
4905 (commit commit)))
4906 (file-name (git-file-name name version))
4907 (sha256
4908 (base32
4909 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
4910 (modules '((guix build utils)))))
4911 (build-system asdf-build-system/sbcl)
4912 (native-inputs
4913 `(("sbcl-clunit" ,sbcl-clunit)))
4914 (inputs
4915 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
4916 (propagated-inputs
4917 ;; This package doesn't do anything without python available
4918 `(("python" ,python)
4919 ;; For multi-dimensional array support
4920 ("python-numpy" ,python-numpy)))
4921 (arguments
4922 '(#:phases
4923 (modify-phases %standard-phases
4924 (add-after 'unpack 'replace-*base-directory*-var
4925 (lambda* (#:key outputs #:allow-other-keys)
4926 ;; In the ASD, the author makes an attempt to
4927 ;; programatically determine the location of the
4928 ;; source-code so lisp can call into "py4cl.py". We can
4929 ;; hard-code this since we know where this file will
4930 ;; reside.
4931 (substitute* "src/callpython.lisp"
4932 (("py4cl/config:\\*base-directory\\*")
4933 (string-append
4934 "\""
4935 (assoc-ref outputs "out")
4936 "/share/common-lisp/sbcl-source/py4cl/"
4937 "\""))))))))
4938 (synopsis "Call python from Common Lisp")
4939 (description
4940 "Py4CL is a bridge between Common Lisp and Python, which enables Common
4941 Lisp to interact with Python code. It uses streams to communicate with a
4942 separate python process, the approach taken by cl4py. This is different to
4943 the CFFI approach used by burgled-batteries, but has the same goal.")
4944 (home-page "https://github.com/bendudson/py4cl")
4945 ;; MIT License
4946 (license license:expat))))
4947
4948 (define-public cl-py4cl
4949 (sbcl-package->cl-source-package sbcl-py4cl))
4950
4951 (define-public ecl-py4cl
4952 (sbcl-package->ecl-package sbcl-py4cl))
4953
4954 (define-public sbcl-parse-declarations
4955 (let ((commit "549aebbfb9403a7fe948654126b9c814f443f4f2")
4956 (revision "1"))
4957 (package
4958 (name "sbcl-parse-declarations")
4959 (version (git-version "1.0.0" revision commit))
4960 (source
4961 (origin
4962 (method git-fetch)
4963 (uri (git-reference
4964 (url (string-append
4965 "https://gitlab.common-lisp.net/parse-declarations/"
4966 "parse-declarations.git"))
4967 (commit commit)))
4968 (file-name (git-file-name name version))
4969 (sha256
4970 (base32 "03g5qks4c59nmxa48pbslxkfh77h8hn8566jddp6m9pl15dzzpxd"))))
4971 (build-system asdf-build-system/sbcl)
4972 (arguments
4973 `(#:asd-file "parse-declarations-1.0.asd"
4974 #:asd-system-name "parse-declarations-1.0"))
4975 (home-page "https://common-lisp.net/project/parse-declarations/")
4976 (synopsis "Parse, filter, and build declarations")
4977 (description
4978 "Parse-Declarations is a Common Lisp library to help writing
4979 macros which establish bindings. To be semantically correct, such
4980 macros must take user declarations into account, as these may affect
4981 the bindings they establish. Yet the ANSI standard of Common Lisp does
4982 not provide any operators to work with declarations in a convenient,
4983 high-level way. This library provides such operators.")
4984 ;; MIT License
4985 (license license:expat))))
4986
4987 (define-public cl-parse-declarations
4988 (sbcl-package->cl-source-package sbcl-parse-declarations))
4989
4990 (define-public ecl-parse-declarations
4991 (sbcl-package->ecl-package sbcl-parse-declarations))
4992
4993 (define-public sbcl-cl-quickcheck
4994 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
4995 (revision "1"))
4996 (package
4997 (name "sbcl-cl-quickcheck")
4998 (version (git-version "0.0.4" revision commit))
4999 (source
5000 (origin
5001 (method git-fetch)
5002 (uri (git-reference
5003 (url "https://github.com/mcandre/cl-quickcheck.git")
5004 (commit commit)))
5005 (file-name (git-file-name name version))
5006 (sha256
5007 (base32
5008 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5009 (build-system asdf-build-system/sbcl)
5010 (synopsis
5011 "Common Lisp port of the QuickCheck unit test framework")
5012 (description
5013 "Common Lisp port of the QuickCheck unit test framework")
5014 (home-page "https://github.com/mcandre/cl-quickcheck")
5015 ;; MIT
5016 (license license:expat))))
5017
5018 (define-public cl-cl-quickcheck
5019 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5020
5021 (define-public ecl-cl-quickcheck
5022 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5023
5024 (define-public sbcl-burgled-batteries3
5025 (let ((commit "9c0f6667e1a71ddf77e21793a0bea524710fef6e")
5026 (revision "1"))
5027 (package
5028 (name "sbcl-burgled-batteries3")
5029 (version (git-version "0.0.0" revision commit))
5030 (source
5031 (origin
5032 (method git-fetch)
5033 (uri (git-reference
5034 (url "https://github.com/snmsts/burgled-batteries3.git")
5035 (commit commit)))
5036 (file-name (git-file-name name version))
5037 (sha256
5038 (base32
5039 "0b726kz2xxcg5l930gz035rsdvhxrzmp05iwfwympnb4z4ammicb"))))
5040 (build-system asdf-build-system/sbcl)
5041 (arguments
5042 '(#:tests? #f
5043 #:phases
5044 (modify-phases %standard-phases
5045 (add-after 'unpack 'set-*cpython-include-dir*-var
5046 (lambda* (#:key inputs #:allow-other-keys)
5047 (substitute* "grovel-include-dir.lisp"
5048 (("\\(defparameter \\*cpython-include-dir\\* \\(detect-python\\)\\)")
5049 (string-append
5050 "(defparameter *cpython-include-dir* \""
5051 (assoc-ref inputs "python")
5052 "/include/python3.7m"
5053 "\")")))
5054 (substitute* "ffi-interface.lisp"
5055 (("\\*cpython-lib\\*")
5056 (format #f "'(\"~a/lib/libpython3.so\")"
5057 (assoc-ref inputs "python"))))
5058 #t)))))
5059 (native-inputs
5060 `(("python" ,python)
5061 ("sbcl-cl-fad" ,sbcl-cl-fad)
5062 ("sbcl-lift" ,sbcl-lift)
5063 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5064 (inputs
5065 `(("sbcl-cffi" ,sbcl-cffi)
5066 ("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
5067 ("sbcl-alexandria" , sbcl-alexandria)
5068 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5069 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5070 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5071 (description
5072 "This package provides a shim between Python3 (specifically, the
5073 CPython implementation of Python) and Common Lisp.")
5074 (home-page "https://github.com/snmsts/burgled-batteries3")
5075 ;; MIT
5076 (license license:expat))))
5077
5078 (define-public cl-burgled-batteries3
5079 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5080
5081 (define-public ecl-burgled-batteries3
5082 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5083
5084 (define-public sbcl-metabang-bind
5085 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5086 (revision "1"))
5087 (package
5088 (name "sbcl-metabang-bind")
5089 (version (git-version "0.8.0" revision commit))
5090 (source
5091 (origin
5092 (method git-fetch)
5093 (uri (git-reference
5094 (url "https://github.com/gwkkwg/metabang-bind.git")
5095 (commit commit)))
5096 (file-name (git-file-name name version))
5097 (sha256
5098 (base32
5099 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5100 (build-system asdf-build-system/sbcl)
5101 (native-inputs
5102 `(("sbcl-lift" ,sbcl-lift)))
5103 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5104 (description
5105 "Bind extends the idea of of let and destructing to provide a uniform
5106 syntax for all your accessor needs. It combines @code{let},
5107 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5108 editing, property or association-lists, and @code{multiple-value-bind} and a
5109 whole lot more into a single form.")
5110 (home-page "https://common-lisp.net/project/metabang-bind/")
5111 ;; MIT License
5112 (license license:expat))))
5113
5114 (define-public cl-metabang-bind
5115 (sbcl-package->cl-source-package sbcl-metabang-bind))
5116
5117 (define-public ecl-metabang-bind
5118 (sbcl-package->ecl-package sbcl-metabang-bind))
5119
5120 (define-public sbcl-fare-utils
5121 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5122 (revision "1"))
5123 (package
5124 (name "sbcl-fare-utils")
5125 (version (git-version "1.0.0.5" revision commit))
5126 (source
5127 (origin
5128 (method git-fetch)
5129 (uri
5130 (git-reference
5131 (url
5132 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5133 (commit commit)))
5134 (file-name (git-file-name name version))
5135 (sha256
5136 (base32
5137 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5138 (build-system asdf-build-system/sbcl)
5139 (arguments
5140 `(#:test-asd-file "test/fare-utils-test.asd"))
5141 (native-inputs
5142 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5143 (synopsis "Collection of utilities and data structures")
5144 (description
5145 "fare-utils is a small collection of utilities. It contains a lot of
5146 basic everyday functions and macros.")
5147 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5148 ;; MIT License
5149 (license license:expat))))
5150
5151 (define-public cl-fare-utils
5152 (sbcl-package->cl-source-package sbcl-fare-utils))
5153
5154 (define-public ecl-fare-utils
5155 (sbcl-package->ecl-package sbcl-fare-utils))
5156
5157 (define-public sbcl-trivial-utf-8
5158 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5159 (revision "1"))
5160 (package
5161 (name "sbcl-trivial-utf-8")
5162 (version (git-version "0.0.0" revision commit))
5163 (source
5164 (origin
5165 (method git-fetch)
5166 (uri
5167 (git-reference
5168 (url (string-append "https://gitlab.common-lisp.net/"
5169 "trivial-utf-8/trivial-utf-8.git"))
5170 (commit commit)))
5171 (file-name (git-file-name name version))
5172 (sha256
5173 (base32
5174 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5175 (arguments
5176 ;; Guix incorrectly assumes the "8" is part of the version
5177 ;; number and lobs it off.
5178 `(#:asd-file "trivial-utf-8.asd"
5179 #:asd-system-name "trivial-utf-8"))
5180 (build-system asdf-build-system/sbcl)
5181 (synopsis "UTF-8 input/output library")
5182 (description
5183 "The Babel library solves a similar problem while understanding more
5184 encodings. Trivial UTF-8 was written before Babel existed, but for new
5185 projects you might be better off going with Babel. The one plus that Trivial
5186 UTF-8 has is that it doesn't depend on any other libraries.")
5187 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5188 (license license:bsd-3))))
5189
5190 (define-public cl-trivial-utf-8
5191 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5192
5193 (define-public ecl-trivial-utf-8
5194 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5195
5196 (define-public sbcl-idna
5197 (package
5198 (name "sbcl-idna")
5199 (build-system asdf-build-system/sbcl)
5200 (version "0.2.2")
5201 (home-page "https://github.com/antifuchs/idna")
5202 (source
5203 (origin
5204 (method git-fetch)
5205 (uri (git-reference
5206 (url home-page)
5207 (commit version)))
5208 (file-name (git-file-name name version))
5209 (sha256
5210 (base32
5211 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5212 (inputs
5213 `(("split-sequence" ,sbcl-split-sequence)))
5214 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5215 (description "This Common Lisp library provides string encoding and
5216 decoding routines for IDNA, the International Domain Names in Applications.")
5217 (license license:expat)))
5218
5219 (define-public cl-idna
5220 (sbcl-package->cl-source-package sbcl-idna))
5221
5222 (define-public ecl-idna
5223 (sbcl-package->ecl-package sbcl-idna))
5224
5225 (define-public sbcl-swap-bytes
5226 (package
5227 (name "sbcl-swap-bytes")
5228 (build-system asdf-build-system/sbcl)
5229 (version "1.2")
5230 (home-page "https://github.com/sionescu/swap-bytes")
5231 (source
5232 (origin
5233 (method git-fetch)
5234 (uri (git-reference
5235 (url home-page)
5236 (commit (string-append "v" version))))
5237 (file-name (git-file-name name version))
5238 (sha256
5239 (base32
5240 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
5241 (inputs
5242 `(("trivial-features" ,sbcl-trivial-features)))
5243 (native-inputs
5244 `(("fiveam" ,sbcl-fiveam)))
5245 (synopsis "Efficient endianness conversion for Common Lisp")
5246 (description "This Common Lisp library provides optimized byte-swapping
5247 primitives. The library can change endianness of unsigned integers of length
5248 1/2/4/8. Very useful in implementing various network protocols and file
5249 formats.")
5250 (license license:expat)))
5251
5252 (define-public cl-swap-bytes
5253 (sbcl-package->cl-source-package sbcl-swap-bytes))
5254
5255 (define-public ecl-swap-bytes
5256 (sbcl-package->ecl-package sbcl-swap-bytes))
5257
5258 (define-public sbcl-iolib.asdf
5259 ;; Latest release is from June 2017.
5260 (let ((commit "81e20614c0d27f9605bf9766214e236fd31b99b4")
5261 (revision "1"))
5262 (package
5263 (name "sbcl-iolib.asdf")
5264 (build-system asdf-build-system/sbcl)
5265 (version "0.8.3")
5266 (home-page "https://github.com/sionescu/iolib")
5267 (source
5268 (origin
5269 (method git-fetch)
5270 (uri (git-reference
5271 (url home-page)
5272 (commit commit)))
5273 (file-name (git-file-name name version))
5274 (sha256
5275 (base32
5276 "1j81r0wm7nfbwl991f26s4npcy7kybzybd3m47rbxy31h0cfcmdm"))))
5277 (inputs
5278 `(("alexandria" ,sbcl-alexandria)))
5279 (arguments
5280 '(#:asd-file "iolib.asdf.asd"))
5281 (synopsis "ASDF component classes for IOLib, a Common Lisp I/O library")
5282 (description "IOlib is to be a better and more modern I/O library than
5283 the standard Common Lisp library. It contains a socket library, a DNS
5284 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5285 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5286 (license license:expat))))
5287
5288 (define-public sbcl-iolib.conf
5289 (package
5290 (inherit sbcl-iolib.asdf)
5291 (name "sbcl-iolib.conf")
5292 (inputs
5293 `(("iolib.asdf" ,sbcl-iolib.asdf)))
5294 (arguments
5295 '(#:asd-file "iolib.conf.asd"))
5296 (synopsis "Compile-time configuration for IOLib, a Common Lisp I/O library")))
5297
5298 (define-public sbcl-iolib.common-lisp
5299 (package
5300 (inherit sbcl-iolib.asdf)
5301 (name "sbcl-iolib.common-lisp")
5302 (inputs
5303 `(("iolib.asdf" ,sbcl-iolib.asdf)
5304 ("iolib.conf" ,sbcl-iolib.conf)))
5305 (arguments
5306 '(#:asd-file "iolib.common-lisp.asd"))
5307 (synopsis "Slightly modified Common Lisp for IOLib, a Common Lisp I/O library")))
5308
5309 (define-public sbcl-iolib.base
5310 (package
5311 (inherit sbcl-iolib.asdf)
5312 (name "sbcl-iolib.base")
5313 (inputs
5314 `(("iolib.asdf" ,sbcl-iolib.asdf)
5315 ("iolib.conf" ,sbcl-iolib.conf)
5316 ("iolib.common-lisp" ,sbcl-iolib.common-lisp)
5317 ("split-sequence" ,sbcl-split-sequence)))
5318 (arguments
5319 '(#:asd-file "iolib.base.asd"))
5320 (synopsis "Base package for IOLib, a Common Lisp I/O library")))
5321
5322 (define-public sbcl-iolib.grovel
5323 (package
5324 (inherit sbcl-iolib.asdf)
5325 (name "sbcl-iolib.grovel")
5326 (inputs
5327 `(("iolib.asdf" ,sbcl-iolib.asdf)
5328 ("iolib.conf" ,sbcl-iolib.conf)
5329 ("iolib.base", sbcl-iolib.base)
5330 ("cffi", sbcl-cffi)))
5331 (arguments
5332 '(#:asd-file "iolib.grovel.asd"
5333 #:phases
5334 (modify-phases %standard-phases
5335 (add-after 'install 'install-header
5336 (lambda* (#:key outputs #:allow-other-keys)
5337 ;; This header is required by sbcl-iolib.
5338 (install-file "src/grovel/grovel-common.h"
5339 (string-append (assoc-ref outputs "out")
5340 "/lib/sbcl"))
5341 #t)))))
5342 (synopsis "CFFI Groveller for IOLib, a Common Lisp I/O library")))
5343
5344 (define-public sbcl-iolib
5345 (package
5346 (inherit sbcl-iolib.asdf)
5347 (name "sbcl-iolib")
5348 (inputs
5349 `(("iolib.asdf" ,sbcl-iolib.asdf)
5350 ("iolib.conf" ,sbcl-iolib.conf)
5351 ("iolib.grovel" ,sbcl-iolib.grovel)
5352 ("iolib.base" ,sbcl-iolib.base)
5353 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5354 ("idna" ,sbcl-idna)
5355 ("swap-bytes" ,sbcl-swap-bytes)
5356 ("libfixposix" ,libfixposix)
5357 ("cffi" ,sbcl-cffi)))
5358 (native-inputs
5359 `(("fiveam" ,sbcl-fiveam)))
5360 (arguments
5361 '(#:asd-file "iolib.asd"
5362 #:asd-system-name "iolib"
5363 #:test-asd-file "iolib.tests.asd"
5364 #:phases
5365 (modify-phases %standard-phases
5366 (add-after 'unpack 'fix-paths
5367 (lambda* (#:key inputs #:allow-other-keys)
5368 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5369 (("\\(:default \"libfixposix\"\\)")
5370 (string-append
5371 "(:default \""
5372 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5373 ;; Socket tests need Internet access, disable them.
5374 (substitute* "iolib.tests.asd"
5375 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5376 "")))))))
5377 (synopsis "Common Lisp I/O library")))
5378
5379 (define-public cl-iolib
5380 (sbcl-package->cl-source-package sbcl-iolib))
5381
5382 (define sbcl-iolib+multiplex
5383 (package
5384 (inherit sbcl-iolib)
5385 (name "sbcl-iolib+multiplex")
5386 (arguments
5387 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5388 ((#:asd-system-name _) "iolib/multiplex")))))
5389
5390 (define sbcl-iolib+syscalls
5391 (package
5392 (inherit sbcl-iolib)
5393 (name "sbcl-iolib+syscalls")
5394 (arguments
5395 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5396 ((#:asd-system-name _) "iolib/syscalls")))))
5397
5398 (define sbcl-iolib+streams
5399 (package
5400 (inherit sbcl-iolib)
5401 (name "sbcl-iolib+streams")
5402 (arguments
5403 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5404 ((#:asd-system-name _) "iolib/streams")))))
5405
5406 (define sbcl-iolib+sockets
5407 (package
5408 (inherit sbcl-iolib)
5409 (name "sbcl-iolib+sockets")
5410 (arguments
5411 (substitute-keyword-arguments (package-arguments sbcl-iolib)
5412 ((#:asd-system-name _) "iolib/sockets")))))
5413
5414 (define-public sbcl-ieee-floats
5415 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5416 (revision "1"))
5417 (package
5418 (name "sbcl-ieee-floats")
5419 (build-system asdf-build-system/sbcl)
5420 (version (git-version "20170924" revision commit))
5421 (home-page "https://github.com/marijnh/ieee-floats/")
5422 (source
5423 (origin
5424 (method git-fetch)
5425 (uri (git-reference
5426 (url home-page)
5427 (commit commit)))
5428 (file-name (git-file-name name version))
5429 (sha256
5430 (base32
5431 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5432 (native-inputs
5433 `(("fiveam" ,sbcl-fiveam)))
5434 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5435 (description "This is a Common Lisp library that allows to convert
5436 floating point values to IEEE 754 binary representation.")
5437 (license license:bsd-3))))
5438
5439 (define-public cl-ieee-floats
5440 (sbcl-package->cl-source-package sbcl-ieee-floats))
5441
5442 (define sbcl-closure-common
5443 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5444 (revision "1"))
5445 (package
5446 (name "sbcl-closure-common")
5447 (build-system asdf-build-system/sbcl)
5448 (version (git-version "20101006" revision commit))
5449 (home-page "https://common-lisp.net/project/cxml/")
5450 (source
5451 (origin
5452 (method git-fetch)
5453 (uri (git-reference
5454 (url "https://github.com/sharplispers/closure-common")
5455 (commit commit)))
5456 (file-name (git-file-name name version))
5457 (sha256
5458 (base32
5459 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5460 (inputs
5461 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5462 ("babel" ,sbcl-babel)))
5463 (synopsis "Support Common Lisp library for CXML")
5464 (description "Closure-common is an internal helper library. The name
5465 Closure is a reference to the web browser it was originally written for.")
5466 ;; TODO: License?
5467 (license #f))))
5468
5469 (define-public sbcl-cxml+xml
5470 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5471 (revision "1"))
5472 (package
5473 (name "sbcl-cxml+xml")
5474 (build-system asdf-build-system/sbcl)
5475 (version (git-version "0.0.0" revision commit))
5476 (home-page "https://common-lisp.net/project/cxml/")
5477 (source
5478 (origin
5479 (method git-fetch)
5480 (uri (git-reference
5481 (url "https://github.com/sharplispers/cxml")
5482 (commit commit)))
5483 (file-name (git-file-name name version))
5484 (sha256
5485 (base32
5486 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5487 (inputs
5488 `(("closure-common" ,sbcl-closure-common)
5489 ("puri" ,sbcl-puri)
5490 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5491 (arguments
5492 `(#:asd-file "cxml.asd"
5493 #:asd-system-name "cxml/xml"))
5494 (synopsis "Common Lisp XML parser")
5495 (description "CXML implements a namespace-aware, validating XML 1.0
5496 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5497 offered, one SAX-like, the other similar to StAX.")
5498 (license license:llgpl))))
5499
5500 (define sbcl-cxml+dom
5501 (package
5502 (inherit sbcl-cxml+xml)
5503 (name "sbcl-cxml+dom")
5504 (inputs
5505 `(("closure-common" ,sbcl-closure-common)
5506 ("puri" ,sbcl-puri)
5507 ("cxml+xml" ,sbcl-cxml+xml)))
5508 (arguments
5509 `(#:asd-file "cxml.asd"
5510 #:asd-system-name "cxml/dom"))))
5511
5512 (define sbcl-cxml+klacks
5513 (package
5514 (inherit sbcl-cxml+xml)
5515 (name "sbcl-cxml+klacks")
5516 (inputs
5517 `(("closure-common" ,sbcl-closure-common)
5518 ("puri" ,sbcl-puri)
5519 ("cxml+xml" ,sbcl-cxml+xml)))
5520 (arguments
5521 `(#:asd-file "cxml.asd"
5522 #:asd-system-name "cxml/klacks"))))
5523
5524 (define sbcl-cxml+test
5525 (package
5526 (inherit sbcl-cxml+xml)
5527 (name "sbcl-cxml+test")
5528 (inputs
5529 `(("closure-common" ,sbcl-closure-common)
5530 ("puri" ,sbcl-puri)
5531 ("cxml+xml" ,sbcl-cxml+xml)))
5532 (arguments
5533 `(#:asd-file "cxml.asd"
5534 #:asd-system-name "cxml/test"))))
5535
5536 (define-public sbcl-cxml
5537 (package
5538 (inherit sbcl-cxml+xml)
5539 (name "sbcl-cxml")
5540 (inputs
5541 `(("closure-common" ,sbcl-closure-common)
5542 ("puri" ,sbcl-puri)
5543 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5544 ("cxml+dom" ,sbcl-cxml+dom)
5545 ("cxml+klacks" ,sbcl-cxml+klacks)
5546 ("cxml+test" ,sbcl-cxml+test)))
5547 (arguments
5548 `(#:asd-file "cxml.asd"
5549 #:asd-system-name "cxml"
5550 #:phases
5551 (modify-phases %standard-phases
5552 (add-after 'build 'install-dtd
5553 (lambda* (#:key outputs #:allow-other-keys)
5554 (install-file "catalog.dtd"
5555 (string-append
5556 (assoc-ref outputs "out")
5557 "/lib/" (%lisp-type)))))
5558 (add-after 'create-asd 'remove-component
5559 ;; XXX: The original .asd has no components, but our build system
5560 ;; creates an entry nonetheless. We need to remove it for the
5561 ;; generated .asd to load properly. See trivia.trivial for a
5562 ;; similar problem.
5563 (lambda* (#:key outputs #:allow-other-keys)
5564 (let* ((out (assoc-ref outputs "out"))
5565 (asd (string-append out "/lib/sbcl/cxml.asd")))
5566 (substitute* asd
5567 ((" :components
5568 ")
5569 ""))
5570 (substitute* asd
5571 ((" *\\(\\(:compiled-file \"cxml--system\"\\)\\)")
5572 ""))))))))))
5573
5574 (define-public cl-cxml
5575 (sbcl-package->cl-source-package sbcl-cxml))
5576
5577 (define-public sbcl-cl-reexport
5578 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5579 (revision "1"))
5580 (package
5581 (name "sbcl-cl-reexport")
5582 (build-system asdf-build-system/sbcl)
5583 (version (git-version "0.1" revision commit))
5584 (home-page "https://github.com/takagi/cl-reexport")
5585 (source
5586 (origin
5587 (method git-fetch)
5588 (uri (git-reference
5589 (url home-page)
5590 (commit commit)))
5591 (file-name (git-file-name name version))
5592 (sha256
5593 (base32
5594 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5595 (inputs
5596 `(("alexandria" ,sbcl-alexandria)))
5597 (arguments
5598 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5599 `(#:tests? #f))
5600 (synopsis "HTTP cookie manager for Common Lisp")
5601 (description "cl-cookie is a Common Lisp library featuring parsing of
5602 cookie headers, cookie creation, cookie jar creation and more.")
5603 (license license:llgpl))))
5604
5605 (define-public cl-reexport
5606 (sbcl-package->cl-source-package sbcl-cl-reexport))
5607
5608 (define-public sbcl-cl-cookie
5609 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5610 (revision "1"))
5611 (package
5612 (name "sbcl-cl-cookie")
5613 (build-system asdf-build-system/sbcl)
5614 (version (git-version "0.9.10" revision commit))
5615 (home-page "https://github.com/fukamachi/cl-cookie")
5616 (source
5617 (origin
5618 (method git-fetch)
5619 (uri (git-reference
5620 (url home-page)
5621 (commit commit)))
5622 (file-name (git-file-name name version))
5623 (sha256
5624 (base32
5625 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5626 (inputs
5627 `(("proc-parse" ,sbcl-proc-parse)
5628 ("alexandria" ,sbcl-alexandria)
5629 ("quri" ,sbcl-quri)
5630 ("cl-ppcre" ,sbcl-cl-ppcre)
5631 ("local-time" ,sbcl-local-time)))
5632 (native-inputs
5633 `(("prove-asdf" ,sbcl-prove-asdf)
5634 ("prove" ,sbcl-prove)))
5635 (arguments
5636 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
5637 `(#:tests? #f))
5638 (synopsis "HTTP cookie manager for Common Lisp")
5639 (description "cl-cookie is a Common Lisp library featuring parsing of
5640 cookie headers, cookie creation, cookie jar creation and more.")
5641 (license license:bsd-2))))
5642
5643 (define-public cl-cookie
5644 (sbcl-package->cl-source-package sbcl-cl-cookie))
5645
5646 (define-public sbcl-dexador
5647 (let ((commit "a2714d126cc94bc7a9a6e1e3c08de455b3a66378")
5648 (revision "1"))
5649 (package
5650 (name "sbcl-dexador")
5651 (build-system asdf-build-system/sbcl)
5652 (version (git-version "0.9.10" revision commit))
5653 (home-page "https://github.com/fukamachi/dexador")
5654 (source
5655 (origin
5656 (method git-fetch)
5657 (uri (git-reference
5658 (url home-page)
5659 (commit commit)))
5660 (file-name (git-file-name name version))
5661 (sha256
5662 (base32
5663 "0nbqgn4v3l2z6m1k1bdxfnqpfrk84nxdmz7csz11zzcfs4flkv79"))))
5664 (inputs
5665 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5666 ("babel" ,sbcl-babel)
5667 ("usocket" ,sbcl-usocket)
5668 ("fast-http" ,sbcl-fast-http)
5669 ("quri" ,sbcl-quri)
5670 ("fast-io" ,sbcl-fast-io)
5671 ("chunga" ,sbcl-chunga)
5672 ("cl-ppcre" ,sbcl-cl-ppcre)
5673 ("cl-cookie" ,sbcl-cl-cookie)
5674 ("trivial-mimes" ,sbcl-trivial-mimes)
5675 ("chipz" ,sbcl-chipz)
5676 ("cl-base64" ,sbcl-cl-base64)
5677 ("cl-reexport" ,sbcl-cl-reexport)
5678 ("cl+ssl" ,sbcl-cl+ssl)
5679 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5680 ("alexandria" ,sbcl-alexandria)))
5681 (native-inputs
5682 `(("prove" ,sbcl-prove)
5683 ("prove-asdf" ,sbcl-prove-asdf)
5684 ("lack-request" ,sbcl-lack-request)
5685 ("clack" ,sbcl-clack)
5686 ("babel" ,sbcl-babel)
5687 ("alexandria" ,sbcl-alexandria)
5688 ("cl-ppcre" ,sbcl-cl-ppcre)
5689 ("local-time" ,sbcl-local-time)))
5690 (arguments
5691 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
5692 `(#:tests? #f
5693 #:phases
5694 (modify-phases %standard-phases
5695 (add-after 'unpack 'fix-permissions
5696 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
5697 (synopsis "Yet another HTTP client for Common Lisp")
5698 (description "Dexador is yet another HTTP client for Common Lisp with
5699 neat APIs and connection-pooling. It is meant to supersede Drakma.")
5700 (license license:expat))))
5701
5702 (define-public cl-dexador
5703 (package
5704 (inherit (sbcl-package->cl-source-package sbcl-dexador))
5705 (arguments
5706 `(#:phases
5707 ;; asdf-build-system/source has its own phases and does not inherit
5708 ;; from asdf-build-system/sbcl phases.
5709 (modify-phases %standard-phases/source
5710 (add-after 'unpack 'fix-permissions
5711 (lambda _ (make-file-writable "t/data/test.gz") #t)))))))
5712
5713 (define-public ecl-dexador
5714 (sbcl-package->ecl-package sbcl-dexador))
5715
5716 (define-public sbcl-lisp-namespace
5717 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
5718 (revision "1"))
5719 (package
5720 (name "sbcl-lisp-namespace")
5721 (build-system asdf-build-system/sbcl)
5722 (version (git-version "0.1" revision commit))
5723 (home-page "https://github.com/guicho271828/lisp-namespace")
5724 (source
5725 (origin
5726 (method git-fetch)
5727 (uri (git-reference
5728 (url home-page)
5729 (commit commit)))
5730 (file-name (git-file-name name version))
5731 (sha256
5732 (base32
5733 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
5734 (inputs
5735 `(("alexandria" ,sbcl-alexandria)))
5736 (native-inputs
5737 `(("fiveam" ,sbcl-fiveam)))
5738 (arguments
5739 `(#:test-asd-file "lisp-namespace.test.asd"
5740 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
5741 #:tests? #f))
5742 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
5743 (description "Common Lisp already has major 2 namespaces, function
5744 namespace and value namespace (or variable namespace), but there are actually
5745 more — e.g., class namespace.
5746 This library offers macros to deal with symbols from any namespace.")
5747 (license license:llgpl))))
5748
5749 (define-public cl-lisp-namespace
5750 (sbcl-package->cl-source-package sbcl-lisp-namespace))
5751
5752 (define-public sbcl-trivial-cltl2
5753 (let ((commit "8eec8407df833e8f27df8a388bc10913f16d9e83")
5754 (revision "1"))
5755 (package
5756 (name "sbcl-trivial-cltl2")
5757 (build-system asdf-build-system/sbcl)
5758 (version (git-version "0.1.1" revision commit))
5759 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
5760 (source
5761 (origin
5762 (method git-fetch)
5763 (uri (git-reference
5764 (url home-page)
5765 (commit commit)))
5766 (file-name (git-file-name name version))
5767 (sha256
5768 (base32
5769 "1dyyxz17vqv8hlfwq287gl8xxbvcnq798ajb7p5jdjz91wqf4bgk"))))
5770 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
5771 (description "This library is a portable compatibility layer around
5772 \"Common Lisp the Language, 2nd
5773 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
5774 and it exports symbols from implementation-specific packages.")
5775 (license license:llgpl))))
5776
5777 (define-public cl-trivial-cltl2
5778 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
5779
5780 (define-public sbcl-introspect-environment
5781 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
5782 (revision "1"))
5783 (package
5784 (name "sbcl-introspect-environment")
5785 (build-system asdf-build-system/sbcl)
5786 (version (git-version "0.1" revision commit))
5787 (home-page "https://github.com/Bike/introspect-environment")
5788 (source
5789 (origin
5790 (method git-fetch)
5791 (uri (git-reference
5792 (url home-page)
5793 (commit commit)))
5794 (file-name (git-file-name name version))
5795 (sha256
5796 (base32
5797 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
5798 (native-inputs
5799 `(("fiveam" ,sbcl-fiveam)))
5800 (synopsis "Common Lisp environment introspection portability layer")
5801 (description "This library is a small interface to portable but
5802 nonstandard introspection of Common Lisp environments. It is intended to
5803 allow a bit more compile-time introspection of environments in Common Lisp.
5804
5805 Quite a bit of information is available at the time a macro or compiler-macro
5806 runs; inlining info, type declarations, that sort of thing. This information
5807 is all standard - any Common Lisp program can @code{(declare (integer x))} and
5808 such.
5809
5810 This info ought to be accessible through the standard @code{&environment}
5811 parameters, but it is not. Several implementations keep the information for
5812 their own purposes but do not make it available to user programs, because
5813 there is no standard mechanism to do so.
5814
5815 This library uses implementation-specific hooks to make information available
5816 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
5817 implementations have implementations of the functions that do as much as they
5818 can and/or provide reasonable defaults.")
5819 (license license:wtfpl2))))
5820
5821 (define-public cl-introspect-environment
5822 (sbcl-package->cl-source-package sbcl-introspect-environment))
5823
5824 (define-public sbcl-type-i
5825 (let ((commit "dea233f45f94064105ec09f0767de338f67dcbe2")
5826 (revision "1"))
5827 (package
5828 (name "sbcl-type-i")
5829 (build-system asdf-build-system/sbcl)
5830 (version (git-version "0.1" revision commit))
5831 (home-page "https://github.com/guicho271828/type-i")
5832 (source
5833 (origin
5834 (method git-fetch)
5835 (uri (git-reference
5836 (url home-page)
5837 (commit commit)))
5838 (file-name (git-file-name name version))
5839 (sha256
5840 (base32
5841 "039g5pbrhh65s0bhr9314gmd2nwc2y5lp2377c5qrc2lxky89qs3"))))
5842 (inputs
5843 `(("alexandria" ,sbcl-alexandria)
5844 ("introspect-environment" ,sbcl-introspect-environment)
5845 ("trivia.trivial" ,sbcl-trivia.trivial)))
5846 (native-inputs
5847 `(("fiveam" ,sbcl-fiveam)))
5848 (arguments
5849 `(#:test-asd-file "type-i.test.asd"))
5850 (synopsis "Type inference utility on unary predicates for Common Lisp")
5851 (description "This library tries to provide a way to detect what kind of
5852 type the given predicate is trying to check. This is different from inferring
5853 the return type of a function.")
5854 (license license:llgpl))))
5855
5856 (define-public cl-type-i
5857 (sbcl-package->cl-source-package sbcl-type-i))
5858
5859 (define-public sbcl-optima
5860 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
5861 (revision "1"))
5862 (package
5863 (name "sbcl-optima")
5864 (build-system asdf-build-system/sbcl)
5865 (version (git-version "1.0" revision commit))
5866 (home-page "https://github.com/m2ym/optima")
5867 (source
5868 (origin
5869 (method git-fetch)
5870 (uri (git-reference
5871 (url home-page)
5872 (commit commit)))
5873 (file-name (git-file-name name version))
5874 (sha256
5875 (base32
5876 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
5877 (inputs
5878 `(("alexandria" ,sbcl-alexandria)
5879 ("closer-mop" ,sbcl-closer-mop)))
5880 (native-inputs
5881 `(("eos" ,sbcl-eos)))
5882 (arguments
5883 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
5884 `(#:tests? #f
5885 #:test-asd-file "optima.test.asd"))
5886 (synopsis "Optimized pattern matching library for Common Lisp")
5887 (description "Optima is a fast pattern matching library which uses
5888 optimizing techniques widely used in the functional programming world.")
5889 (license license:expat))))
5890
5891 (define-public cl-optima
5892 (sbcl-package->cl-source-package sbcl-optima))
5893
5894 (define-public sbcl-fare-quasiquote
5895 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
5896 (revision "1"))
5897 (package
5898 (name "sbcl-fare-quasiquote")
5899 (build-system asdf-build-system/sbcl)
5900 (version (git-version "1.0.1" revision commit))
5901 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
5902 (source
5903 (origin
5904 (method git-fetch)
5905 (uri (git-reference
5906 (url (string-append "https://gitlab.common-lisp.net/frideau/"
5907 "fare-quasiquote.git"))
5908 (commit commit)))
5909 (file-name (git-file-name name version))
5910 (sha256
5911 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
5912 (inputs
5913 `(("fare-utils" ,sbcl-fare-utils)))
5914 (arguments
5915 ;; XXX: Circular dependencies: Tests depend on subsystems,
5916 ;; 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\"\\)")
5927 "\"fare-utils\"")))))))
5928 (synopsis "Pattern-matching friendly implementation of quasiquote")
5929 (description "The main purpose of this n+2nd reimplementation of
5930 quasiquote is enable matching of quasiquoted patterns, using Optima or
5931 Trivia.")
5932 (license license:expat))))
5933
5934 (define-public cl-fare-quasiquote
5935 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
5936
5937 (define-public sbcl-fare-quasiquote-optima
5938 (package
5939 (inherit sbcl-fare-quasiquote)
5940 (name "sbcl-fare-quasiquote-optima")
5941 (inputs
5942 `(("optima" ,sbcl-optima)
5943 ("fare-quasiquote" ,sbcl-fare-quasiquote)))
5944 (arguments
5945 '(#:phases
5946 (modify-phases %standard-phases
5947 (add-after 'unpack 'patch-requirement
5948 (lambda _
5949 (substitute* "fare-quasiquote-optima.asd"
5950 (("\\(:version \"optima\" \"1\\.0\"\\)")
5951 "\"optima\""))
5952 #t)))))))
5953
5954 (define-public cl-fare-quasiquote-optima
5955 (sbcl-package->cl-source-package sbcl-fare-quasiquote-optima))
5956
5957 (define-public sbcl-fare-quasiquote-readtable
5958 (package
5959 (inherit sbcl-fare-quasiquote)
5960 (name "sbcl-fare-quasiquote-readtable")
5961 (inputs
5962 `(("fare-quasiquote" ,sbcl-fare-quasiquote)
5963 ("named-readtables" ,sbcl-named-readtables)))
5964 (description "The main purpose of this n+2nd reimplementation of
5965 quasiquote is enable matching of quasiquoted patterns, using Optima or
5966 Trivia.
5967
5968 This package uses fare-quasiquote with named-readtable.")))
5969
5970 (define-public cl-fare-quasiquote-readtable
5971 (sbcl-package->cl-source-package sbcl-fare-quasiquote-readtable))
5972
5973 ;; TODO: Add support for component-less system in asdf-build-system/sbcl.
5974 (define-public sbcl-fare-quasiquote-extras
5975 (package
5976 (inherit sbcl-fare-quasiquote)
5977 (name "sbcl-fare-quasiquote-extras")
5978 (build-system asdf-build-system/sbcl)
5979 (inputs
5980 `(("fare-quasiquote-optima" ,sbcl-fare-quasiquote-optima)
5981 ("fare-quasiquote-readtable" ,sbcl-fare-quasiquote-readtable)))
5982 (arguments
5983 `(#:phases
5984 (modify-phases %standard-phases
5985 (replace 'build
5986 (lambda* (#:key outputs #:allow-other-keys)
5987 (let* ((out (assoc-ref outputs "out"))
5988 (lib (string-append out "/lib/" (%lisp-type))))
5989 (mkdir-p lib)
5990 (install-file "fare-quasiquote-extras.asd" lib)
5991 (make-file-writable
5992 (string-append lib "/fare-quasiquote-extras.asd"))
5993 #t)))
5994 (add-after 'create-asd-file 'fix-asd-file
5995 (lambda* (#:key outputs #:allow-other-keys)
5996 (let* ((out (assoc-ref outputs "out"))
5997 (lib (string-append out "/lib/" (%lisp-type)))
5998 (asd (string-append lib "/fare-quasiquote-extras.asd")))
5999 (substitute* asd
6000 ((":class")
6001 "")
6002 (("asdf/bundle:prebuilt-system")
6003 "")
6004 ((":components")
6005 "")
6006 (("\\(\\(:compiled-file \"fare-quasiquote-extras--system\"\\)\\)")
6007 "")))
6008 #t)))))
6009 (description "This library combines @code{fare-quasiquote-readtable} and
6010 @code{fare-quasiquote-optima}.")))
6011
6012 (define-public cl-fare-quasiquote-extras
6013 (package
6014 (inherit cl-fare-quasiquote)
6015 (name "cl-fare-quasiquote-extras")
6016 (build-system asdf-build-system/source)
6017 (propagated-inputs
6018 `(("fare-quasiquote" ,cl-fare-quasiquote)
6019 ("fare-quasiquote-optima" ,cl-fare-quasiquote-optima)
6020 ("fare-quasiquote-readtable" ,cl-fare-quasiquote-readtable)))
6021 (description "This library combines @code{fare-quasiquote-readtable} and
6022 @code{fare-quasiquote-optima}.")))
6023
6024 (define-public sbcl-trivia.level0
6025 (let ((commit "574901ac376ae54c9d37169fd5efab9b3b8fcc63")
6026 (revision "1"))
6027 (package
6028 (name "sbcl-trivia.level0")
6029 (build-system asdf-build-system/sbcl)
6030 (version (git-version "0.0.0" revision commit))
6031 (home-page "https://github.com/guicho271828/trivia")
6032 (source
6033 (origin
6034 (method git-fetch)
6035 (uri (git-reference
6036 (url home-page)
6037 (commit commit)))
6038 (file-name (git-file-name name version))
6039 (sha256
6040 (base32
6041 "0hf53n71xzr9sjwrxis5fivx3drclf4s39h5ck8vh21ndqj9zvdk"))))
6042 (inputs
6043 `(("alexandria" ,sbcl-alexandria)))
6044 (synopsis "Pattern matching in Common Lisp")
6045 (description "Trivia is a pattern matching compiler that is compatible
6046 with Optima, another pattern matching library for Common Lisp. It is meant to
6047 be faster and more extensible than Optima.")
6048 (license license:llgpl))))
6049
6050 (define-public sbcl-trivia.level1
6051 (package
6052 (inherit sbcl-trivia.level0)
6053 (name "sbcl-trivia.level1")
6054 (inputs
6055 `(("trivia.level0" ,sbcl-trivia.level0)))
6056 (description "Trivia is a pattern matching compiler that is compatible
6057 with Optima, another pattern matching library for Common Lisp. It is meant to
6058 be faster and more extensible than Optima.
6059
6060 This system contains the core patterns of Trivia.")))
6061
6062 (define-public sbcl-trivia.level2
6063 (package
6064 (inherit sbcl-trivia.level0)
6065 (name "sbcl-trivia.level2")
6066 (inputs
6067 `(("trivia.level1" ,sbcl-trivia.level1)
6068 ("lisp-namespace" ,sbcl-lisp-namespace)
6069 ("trivial-cltl2" ,sbcl-trivial-cltl2)
6070 ("closer-mop" ,sbcl-closer-mop)))
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 a non-optimized pattern matcher compatible with Optima,
6076 with extensible optimizer interface.")))
6077
6078 (define-public sbcl-trivia.trivial
6079 (package
6080 (inherit sbcl-trivia.level0)
6081 (name "sbcl-trivia.trivial")
6082 (inputs
6083 `(("trivia.level2" ,sbcl-trivia.level2)))
6084 (arguments
6085 `(#:phases
6086 (modify-phases %standard-phases
6087 (replace 'create-asd-file
6088 (lambda* (#:key outputs inputs #:allow-other-keys)
6089 (let* ((out (assoc-ref outputs "out"))
6090 (lib (string-append out "/lib/" (%lisp-type)))
6091 (level2 (assoc-ref inputs "trivia.level2")))
6092 (mkdir-p lib)
6093 (install-file "trivia.trivial.asd" lib)
6094 ;; XXX: This .asd does not have any component and the build
6095 ;; system fails to work in this case. We should update the
6096 ;; build system to handle component-less .asd.
6097 ;; TODO: How do we append to file in Guile? It seems that
6098 ;; (open-file ... "a") gets a "Permission denied".
6099 (substitute* (string-append lib "/trivia.trivial.asd")
6100 (("\"\\)")
6101 (string-append "\")
6102
6103 (progn (asdf/source-registry:ensure-source-registry)
6104 (setf (gethash
6105 \"trivia.level2\"
6106 asdf/source-registry:*source-registry*)
6107 #p\""
6108 level2
6109 "/share/common-lisp/sbcl-bundle-systems/trivia.level2.asd\"))")))))))))
6110 (description "Trivia is a pattern matching compiler that is compatible
6111 with Optima, another pattern matching library for Common Lisp. It is meant to
6112 be faster and more extensible than Optima.
6113
6114 This system contains the base level system of Trivia with a trivial optimizer.")))
6115
6116 (define-public sbcl-trivia.balland2006
6117 (package
6118 (inherit sbcl-trivia.level0)
6119 (name "sbcl-trivia.balland2006")
6120 (inputs
6121 `(("trivia.trivial" ,sbcl-trivia.trivial)
6122 ("iterate" ,sbcl-iterate)
6123 ("type-i" ,sbcl-type-i)
6124 ("alexandria" ,sbcl-alexandria)))
6125 (arguments
6126 ;; Tests are done in trivia itself.
6127 `(#:tests? #f))
6128 (description "Trivia is a pattern matching compiler that is compatible
6129 with Optima, another pattern matching library for Common Lisp. It is meant to
6130 be faster and more extensible than Optima.
6131
6132 This system contains the base level system of Trivia with a trivial optimizer.")))
6133
6134 (define-public sbcl-trivia.ppcre
6135 (package
6136 (inherit sbcl-trivia.level0)
6137 (name "sbcl-trivia.ppcre")
6138 (inputs
6139 `(("trivia.trivial" ,sbcl-trivia.trivial)
6140 ("cl-ppcre" ,sbcl-cl-ppcre)))
6141 (description "Trivia is a pattern matching compiler that is compatible
6142 with Optima, another pattern matching library for Common Lisp. It is meant to
6143 be faster and more extensible than Optima.
6144
6145 This system contains the PPCRE extension.")))
6146
6147 (define-public sbcl-trivia.quasiquote
6148 (package
6149 (inherit sbcl-trivia.level0)
6150 (name "sbcl-trivia.quasiquote")
6151 (inputs
6152 `(("trivia.trivial" ,sbcl-trivia.trivial)
6153 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6154 ("fare-quasiquote-readtable" ,sbcl-fare-quasiquote-readtable)))
6155 (description "Trivia is a pattern matching compiler that is compatible
6156 with Optima, another pattern matching library for Common Lisp. It is meant to
6157 be faster and more extensible than Optima.
6158
6159 This system contains the fare-quasiquote extension.")))
6160
6161 (define-public sbcl-trivia.cffi
6162 (package
6163 (inherit sbcl-trivia.level0)
6164 (name "sbcl-trivia.cffi")
6165 (inputs
6166 `(("cffi" ,sbcl-cffi)
6167 ("trivia.trivial" ,sbcl-trivia.trivial)))
6168 (description "Trivia is a pattern matching compiler that is compatible
6169 with Optima, another pattern matching library for Common Lisp. It is meant to
6170 be faster and more extensible than Optima.
6171
6172 This system contains the CFFI foreign slot access extension.")))
6173
6174 (define-public sbcl-trivia
6175 (package
6176 (inherit sbcl-trivia.level0)
6177 (name "sbcl-trivia")
6178 (inputs
6179 `(("trivia.balland2006" ,sbcl-trivia.balland2006)))
6180 (native-inputs
6181 `(("fiveam" ,sbcl-fiveam)
6182 ("trivia.ppcre" ,sbcl-trivia.ppcre)
6183 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
6184 ("trivia.cffi" ,sbcl-trivia.cffi)
6185 ("optima" ,sbcl-optima)))
6186 (arguments
6187 `(#:test-asd-file "trivia.test.asd"
6188 #:phases
6189 (modify-phases %standard-phases
6190 (add-after 'create-asd 'remove-component
6191 ;; XXX: The original .asd has no components, but our build system
6192 ;; creates an entry nonetheless. We need to remove it for the
6193 ;; generated .asd to load properly. See trivia.trivial for a
6194 ;; similar problem.
6195 (lambda* (#:key outputs #:allow-other-keys)
6196 (let* ((out (assoc-ref outputs "out"))
6197 (asd (string-append out "/lib/" (%lisp-type) "/trivia.asd")))
6198 (substitute* asd
6199 ((" :components
6200 ")
6201 ""))
6202 (substitute* asd
6203 ((" *\\(\\(:compiled-file \"trivia--system\"\\)\\)")
6204 ""))))))))
6205 (description "Trivia is a pattern matching compiler that is compatible
6206 with Optima, another pattern matching library for Common Lisp. It is meant to
6207 be faster and more extensible than Optima.")))
6208
6209 (define-public cl-trivia
6210 (sbcl-package->cl-source-package sbcl-trivia))
6211
6212 (define-public sbcl-mk-string-metrics
6213 (package
6214 (name "sbcl-mk-string-metrics")
6215 (version "0.1.2")
6216 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6217 (source (origin
6218 (method git-fetch)
6219 (uri (git-reference
6220 (url home-page)
6221 (commit version)))
6222 (sha256
6223 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6224 (file-name (git-file-name name version))))
6225 (build-system asdf-build-system/sbcl)
6226 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6227 (description "This library implements efficient algorithms that calculate
6228 various string metrics in Common Lisp:
6229
6230 @itemize
6231 @item Damerau-Levenshtein distance
6232 @item Hamming distance
6233 @item Jaccard similarity coefficient
6234 @item Jaro distance
6235 @item Jaro-Winkler distance
6236 @item Levenshtein distance
6237 @item Normalized Damerau-Levenshtein distance
6238 @item Normalized Levenshtein distance
6239 @item Overlap coefficient
6240 @end itemize\n")
6241 (license license:x11)))
6242
6243 (define-public cl-mk-string-metrics
6244 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6245
6246 (define-public sbcl-cl-str
6247 (let ((commit "3d5ec86e3a0199e5973aacde951086dfd754b5e5"))
6248 (package
6249 (name "sbcl-cl-str")
6250 (version (git-version "0.8" "1" commit))
6251 (home-page "https://github.com/vindarel/cl-str")
6252 (source (origin
6253 (method git-fetch)
6254 (uri (git-reference
6255 (url home-page)
6256 (commit commit)))
6257 (sha256
6258 (base32 "0szzzbygw9h985yxz909vvqrp69pmpcpahn7hn350lnyjislk9ga"))
6259 (file-name (git-file-name name version))))
6260 (build-system asdf-build-system/sbcl)
6261 (inputs
6262 `(("cl-ppcre" ,sbcl-cl-ppcre)
6263 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
6264 (native-inputs
6265 `(("prove" ,sbcl-prove)
6266 ("prove-asdf" ,sbcl-prove-asdf)))
6267 (arguments
6268 `(#:asd-file "str.asd"
6269 #:asd-system-name "str"
6270 #:test-asd-file "str.test.asd"))
6271 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6272 (description "A modern and consistent Common Lisp string manipulation
6273 library that focuses on modernity, simplicity and discoverability:
6274 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6275 @code{str:concat strings} instead of an unusual format construct; one
6276 discoverable library instead of many; consistency and composability, where
6277 @code{s} is always the last argument, which makes it easier to feed pipes and
6278 arrows.")
6279 (license license:expat))))
6280
6281 (define-public cl-str
6282 (sbcl-package->cl-source-package sbcl-cl-str))
6283
6284 (define-public sbcl-cl-xmlspam
6285 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6286 (package
6287 (name "sbcl-cl-xmlspam")
6288 (build-system asdf-build-system/sbcl)
6289 (version (git-version "0.0.0" "1" commit))
6290 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6291 (source
6292 (origin
6293 (method git-fetch)
6294 (uri (git-reference
6295 (url home-page)
6296 (commit commit)))
6297 (file-name (string-append name "-" version))
6298 (sha256
6299 (base32
6300 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6301 (inputs
6302 `(("cxml" ,sbcl-cxml)
6303 ("cl-ppcre" ,sbcl-cl-ppcre)))
6304 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6305 (description "CXML does an excellent job at parsing XML elements, but what
6306 do you do when you have a XML file that's larger than you want to fit in
6307 memory, and you want to extract some information from it? Writing code to deal
6308 with SAX events, or even using Klacks, quickly becomes tedious.
6309 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6310 to write code that mirrors the structure of the XML that it's parsing. It
6311 also makes it easy to shift paradigms when necessary - the usual Lisp control
6312 constructs can be used interchangeably with pattern matching, and the full
6313 power of CXML is available when necessary.")
6314 (license license:bsd-3))))
6315
6316 ;; TODO: dbus uses ASDF's package-inferred-system which is not supported by
6317 ;; asdf-build-system/sbcl as of 2019-08-02. We should fix
6318 ;; asdf-build-system/sbcl.
6319 (define-public cl-dbus
6320 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6321 (revision "1"))
6322 (package
6323 (name "cl-dbus")
6324 (build-system asdf-build-system/source)
6325 (version (git-version "20190408" revision commit))
6326 (home-page "https://github.com/death/dbus")
6327 (source
6328 (origin
6329 (method git-fetch)
6330 (uri (git-reference
6331 (url home-page)
6332 (commit commit)))
6333 (file-name (git-file-name name version))
6334 (sha256
6335 (base32
6336 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6337 ;; Inputs must be propagated or else packages depending on this won't have the necessary packages.
6338 (propagated-inputs
6339 `(("alexandria" ,sbcl-alexandria)
6340 ("trivial-garbage" ,sbcl-trivial-garbage)
6341 ("babel" ,sbcl-babel)
6342 ("iolib" ,sbcl-iolib)
6343 ("iolib+multiplex" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+multiplex))
6344 ("iolib+syscalls" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+syscalls))
6345 ("iolib+streams" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+streams))
6346 ("iolib+sockets" ,(@@ (gnu packages lisp-xyz) sbcl-iolib+sockets))
6347 ("ieee-floats" ,sbcl-ieee-floats)
6348 ("flexi-streams" ,sbcl-flexi-streams)
6349 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6350 ("ironclad" ,sbcl-ironclad)))
6351 (synopsis "D-Bus client library for Common Lisp")
6352 (description "This is a Common Lisp library that allows to publish D-Bus
6353 objects as well as send and notify other objects connected to a bus.")
6354 (license license:bsd-2))))
6355
6356 (define-public sbcl-cl-hooks
6357 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6358 (revision "1"))
6359 (package
6360 (name "sbcl-cl-hooks")
6361 (build-system asdf-build-system/sbcl)
6362 (version (git-version "0.2.1" revision commit))
6363 (home-page "https://github.com/scymtym/architecture.hooks")
6364 (source
6365 (origin
6366 (method git-fetch)
6367 (uri (git-reference
6368 (url home-page)
6369 (commit commit)))
6370 (file-name (git-file-name name version))
6371 (sha256
6372 (base32
6373 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6374 (inputs
6375 `(("alexandria" ,sbcl-alexandria)
6376 ("let-plus" ,sbcl-let-plus)
6377 ("trivial-garbage" ,sbcl-trivial-garbage)
6378 ("closer-mop" ,sbcl-closer-mop)))
6379 (native-inputs
6380 `(("fiveam" ,sbcl-fiveam)))
6381 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6382 (description "A hook, in the present context, is a certain kind of
6383 extension point in a program that allows interleaving the execution of
6384 arbitrary code with the execution of a the program without introducing any
6385 coupling between the two. Hooks are used extensively in the extensible editor
6386 Emacs.
6387
6388 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6389 possible using the flexible multi-method dispatch mechanism. It may even seem
6390 that the concept of hooks does not provide any benefits over the possibilities
6391 of CLOS. However, there are some differences:
6392
6393 @itemize
6394
6395 @item There can be only one method for each combination of specializers and
6396 qualifiers. As a result this kind of extension point cannot be used by
6397 multiple extensions independently.
6398 @item Removing code previously attached via a @code{:before}, @code{:after} or
6399 @code{:around} method can be cumbersome.
6400 @item There could be other or even multiple extension points besides @code{:before}
6401 and @code{:after} in a single method.
6402 @item Attaching codes to individual objects using eql specializers can be
6403 cumbersome.
6404 @item Introspection of code attached a particular extension point is
6405 cumbersome since this requires enumerating and inspecting the methods of a
6406 generic function.
6407 @end itemize
6408
6409 This library tries to complement some of these weaknesses of method-based
6410 extension-points via the concept of hooks.")
6411 (license license:llgpl))))
6412
6413 (define-public cl-hooks
6414 (sbcl-package->cl-source-package sbcl-cl-hooks))
6415
6416 (define-public ecl-cl-hooks
6417 (sbcl-package->ecl-package sbcl-cl-hooks))
6418
6419 (define-public sbcl-s-sysdeps
6420 (let ((commit "d28246b5dffef9e73a0e0e6cfbc4e878006fe34d")
6421 (revision "1"))
6422 (package
6423 (name "sbcl-s-sysdeps")
6424 (build-system asdf-build-system/sbcl)
6425 (version (git-version "1" revision commit))
6426 (home-page "https://github.com/svenvc/s-sysdeps")
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 "14b69b81yrxmjlvmm3lfxk04x5v7hqz4fql121334wh72czznfh9"))))
6437 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6438 (description "@code{s-sysdeps} is an abstraction layer over platform
6439 dependent functionality. This simple package is used as a building block in a
6440 number of other open source projects.
6441
6442 @code{s-sysdeps} abstracts:
6443
6444 @itemize
6445 @item managing processes,
6446 @item implementing a standard TCP/IP server,
6447 @item opening a client TCP/IP socket stream,
6448 @item working with process locks.
6449 @end itemize\n")
6450 (license license:llgpl))))
6451
6452 (define-public cl-s-sysdeps
6453 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6454
6455 (define-public ecl-s-sysdeps
6456 (sbcl-package->ecl-package sbcl-s-sysdeps))
6457
6458 (define-public sbcl-cl-prevalence
6459 (let ((commit "c163c227ed85d430b82cb1e3502f72d4f88e3cfa")
6460 (revision "1"))
6461 (package
6462 (name "sbcl-cl-prevalence")
6463 (build-system asdf-build-system/sbcl)
6464 (version (git-version "5" revision commit))
6465 (home-page "https://github.com/40ants/cl-prevalence")
6466 (source
6467 (origin
6468 (method git-fetch)
6469 (uri (git-reference
6470 (url home-page)
6471 (commit commit)))
6472 (file-name (git-file-name name version))
6473 (sha256
6474 (base32
6475 "1i9zj1q2ahgwch56an21yzbgkynz0kab9fyxkq9mg8p3xrv38jjn"))))
6476 (inputs
6477 `(("s-sysdeps" ,sbcl-s-sysdeps)
6478 ("s-xml" ,sbcl-s-xml)))
6479 (synopsis "Implementation of object prevalence for Common Lisp")
6480 (description "This Common Lisp library implements object prevalence (see
6481 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6482 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6483 classes and cyclic data structures are supported.")
6484 (license license:llgpl))))
6485
6486 (define-public cl-prevalence
6487 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6488
6489 (define-public ecl-cl-prevalence
6490 (sbcl-package->ecl-package sbcl-cl-prevalence))
6491
6492 (define-public sbcl-series
6493 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6494 (revision "1"))
6495 (package
6496 (name "sbcl-series")
6497 (version (git-version "2.2.11" revision commit))
6498 (source
6499 (origin
6500 (method git-fetch)
6501 (uri (git-reference
6502 (url "git://git.code.sf.net/p/series/series")
6503 (commit commit)))
6504 (file-name (git-file-name name version))
6505 (sha256
6506 (base32
6507 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6508 (build-system asdf-build-system/sbcl)
6509 (arguments
6510 ;; Disable the tests, they are apparently buggy and I didn't find
6511 ;; a simple way to make them run and pass.
6512 '(#:tests? #f))
6513 (synopsis "Series data structure for Common Lisp")
6514 (description
6515 "This Common Lisp library provides a series data structure much like
6516 a sequence, with similar kinds of operations. The difference is that in many
6517 situations, operations on series may be composed functionally and yet execute
6518 iteratively, without the need to construct intermediate series values
6519 explicitly. In this manner, series provide both the clarity of a functional
6520 programming style and the efficiency of an iterative programming style.")
6521 (home-page "http://series.sourceforge.net/")
6522 (license license:expat))))
6523
6524 (define-public cl-series
6525 (sbcl-package->cl-source-package sbcl-series))
6526
6527 (define-public ecl-series
6528 (sbcl-package->ecl-package sbcl-series))
6529
6530 (define-public sbcl-periods
6531 (let ((commit "983d4a57325db3c8def942f163133cec5391ec28")
6532 (revision "1"))
6533 (package
6534 (name "sbcl-periods")
6535 (version (git-version "0.0.2" revision commit))
6536 (source
6537 (origin
6538 (method git-fetch)
6539 (uri (git-reference
6540 (url "https://github.com/jwiegley/periods.git")
6541 (commit commit)))
6542 (file-name (git-file-name name version))
6543 (sha256
6544 (base32
6545 "0z30jr3lxz3cmi019fsl4lgcgwf0yqpn95v9zkkkwgymdrkd4lga"))))
6546 (build-system asdf-build-system/sbcl)
6547 (inputs
6548 `(("local-time" ,sbcl-local-time)))
6549 (synopsis "Common Lisp library for manipulating date/time objects")
6550 (description
6551 "Periods is a Common Lisp library providing a set of utilities for
6552 manipulating times, distances between times, and both contiguous and
6553 discontiguous ranges of time.")
6554 (home-page "https://github.com/jwiegley/periods")
6555 (license license:bsd-3))))
6556
6557 (define-public cl-periods
6558 (sbcl-package->cl-source-package sbcl-periods))
6559
6560 (define-public ecl-periods
6561 (sbcl-package->ecl-package sbcl-periods))
6562
6563 (define-public sbcl-periods-series
6564 (package
6565 (inherit sbcl-periods)
6566 (name "sbcl-periods-series")
6567 (inputs
6568 `(("periods" ,sbcl-periods)
6569 ("series" ,sbcl-series)))
6570 (arguments
6571 '(#:asd-file "periods-series.asd"
6572 #:asd-system-name "periods-series"))
6573 (description
6574 "Periods-series is an extension of the periods Common Lisp library
6575 providing functions compatible with the series Common Lisp library.")))
6576
6577 (define-public cl-periods-series
6578 (sbcl-package->cl-source-package sbcl-periods-series))
6579
6580 (define-public ecl-periods-series
6581 (sbcl-package->ecl-package sbcl-periods-series))
6582
6583 (define-public sbcl-metatilities-base
6584 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6585 (revision "1"))
6586 (package
6587 (name "sbcl-metatilities-base")
6588 (version (git-version "0.6.6" revision commit))
6589 (source
6590 (origin
6591 (method git-fetch)
6592 (uri (git-reference
6593 (url "https://github.com/gwkkwg/metatilities-base.git")
6594 (commit commit)))
6595 (file-name (git-file-name name version))
6596 (sha256
6597 (base32
6598 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6599 (build-system asdf-build-system/sbcl)
6600 (native-inputs
6601 `(("lift" ,sbcl-lift)))
6602 (synopsis "Core of the metatilities Common Lisp library")
6603 (description
6604 "Metatilities-base is the core of the metatilities Common Lisp library
6605 which implements a set of utilities.")
6606 (home-page "https://common-lisp.net/project/metatilities-base/")
6607 (license license:expat))))
6608
6609 (define-public cl-metatilities-base
6610 (sbcl-package->cl-source-package sbcl-metatilities-base))
6611
6612 (define-public ecl-metatilities-base
6613 (sbcl-package->ecl-package sbcl-metatilities-base))
6614
6615 (define-public sbcl-cl-containers
6616 (let ((commit "810927e19d933bcf38ffeb7a23ce521efc432d45")
6617 (revision "1"))
6618 (package
6619 (name "sbcl-cl-containers")
6620 (version (git-version "0.12.1" revision commit))
6621 (source
6622 (origin
6623 (method git-fetch)
6624 (uri (git-reference
6625 (url "https://github.com/gwkkwg/cl-containers.git")
6626 (commit commit)))
6627 (file-name (git-file-name name version))
6628 (sha256
6629 (base32
6630 "1s9faxw7svhbjpkhfrz2qxgjm3cvyjb8wpyb4m8dx4i5g7vvprkv"))))
6631 (build-system asdf-build-system/sbcl)
6632 (native-inputs
6633 `(("lift" ,sbcl-lift)))
6634 (inputs
6635 `(("metatilities-base" ,sbcl-metatilities-base)))
6636 (arguments
6637 '(#:phases
6638 (modify-phases %standard-phases
6639 (add-after 'unpack 'relax-version-checks
6640 (lambda _
6641 (substitute* "cl-containers.asd"
6642 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6643 "\"metatilities-base\""))
6644 (substitute* "cl-containers-test.asd"
6645 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6646 "\"lift\""))
6647 #t)))))
6648 (synopsis "Container library for Common Lisp")
6649 (description
6650 "Common Lisp ships with a set of powerful built in data structures
6651 including the venerable list, full featured arrays, and hash-tables.
6652 CL-containers enhances and builds on these structures by adding containers
6653 that are not available in native Lisp (for example: binary search trees,
6654 red-black trees, sparse arrays and so on), and by providing a standard
6655 interface so that they are simpler to use and so that changing design
6656 decisions becomes significantly easier.")
6657 (home-page "https://common-lisp.net/project/cl-containers/")
6658 (license license:expat))))
6659
6660 (define-public cl-containers
6661 (sbcl-package->cl-source-package sbcl-cl-containers))
6662
6663 (define-public ecl-cl-containers
6664 (sbcl-package->ecl-package sbcl-cl-containers))
6665
6666 (define-public sbcl-xlunit
6667 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6668 (revision "1"))
6669 (package
6670 (name "sbcl-xlunit")
6671 (version (git-version "0.6.3" revision commit))
6672 (source
6673 (origin
6674 (method git-fetch)
6675 (uri (git-reference
6676 (url "http://git.kpe.io/xlunit.git")
6677 (commit commit)))
6678 (file-name (git-file-name name version))
6679 (sha256
6680 (base32
6681 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6682 (build-system asdf-build-system/sbcl)
6683 (arguments
6684 '(#:phases
6685 (modify-phases %standard-phases
6686 (add-after 'unpack 'fix-tests
6687 (lambda _
6688 (substitute* "xlunit.asd"
6689 ((" :force t") ""))
6690 #t)))))
6691 (synopsis "Unit testing package for Common Lisp")
6692 (description
6693 "The XLUnit package is a toolkit for building test suites. It is based
6694 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6695 (home-page "http://quickdocs.org/xlunit/")
6696 (license license:bsd-3))))
6697
6698 (define-public cl-xlunit
6699 (sbcl-package->cl-source-package sbcl-xlunit))
6700
6701 (define-public ecl-xlunit
6702 (sbcl-package->ecl-package sbcl-xlunit))
6703
6704 (define-public sbcl-fprog
6705 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6706 (revision "1"))
6707 (package
6708 (name "sbcl-fprog")
6709 (version (git-version "1.0.0" revision commit))
6710 (source
6711 (origin
6712 (method git-fetch)
6713 (uri (git-reference
6714 (url "https://github.com/jwiegley/cambl.git")
6715 (commit commit)))
6716 (file-name (git-file-name name version))
6717 (sha256
6718 (base32
6719 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6720 (build-system asdf-build-system/sbcl)
6721 (synopsis "Functional programming utilities for Common Lisp")
6722 (description
6723 "@code{fprog} is a Common Lisp library allowing iteration over
6724 immutable lists sharing identical sublists.")
6725 (home-page "https://github.com/jwiegley/cambl")
6726 (license license:bsd-3))))
6727
6728 (define-public cl-fprog
6729 (sbcl-package->cl-source-package sbcl-fprog))
6730
6731 (define-public ecl-fprog
6732 (sbcl-package->ecl-package sbcl-fprog))
6733
6734 (define-public sbcl-cambl
6735 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6736 (revision "1"))
6737 (package
6738 (inherit sbcl-fprog)
6739 (name "sbcl-cambl")
6740 (version (git-version "4.0.0" revision commit))
6741 (native-inputs
6742 `(("xlunit" ,sbcl-xlunit)))
6743 (inputs
6744 `(("alexandria" ,sbcl-alexandria)
6745 ("cl-containers" ,sbcl-cl-containers)
6746 ("local-time" ,sbcl-local-time)
6747 ("periods" ,sbcl-periods)
6748 ("fprog" ,sbcl-fprog)))
6749 (synopsis "Commoditized amounts and balances for Common Lisp")
6750 (description
6751 "CAMBL is a Common Lisp library providing a convenient facility for
6752 working with commoditized values. It does not allow compound units (and so is
6753 not suited for scientific operations) but does work rather nicely for the
6754 purpose of financial calculations."))))
6755
6756 (define-public cl-cambl
6757 (sbcl-package->cl-source-package sbcl-cambl))
6758
6759 (define-public ecl-cambl
6760 (sbcl-package->ecl-package sbcl-cambl))
6761
6762 (define-public sbcl-cl-ledger
6763 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6764 (revision "1"))
6765 (package
6766 (name "sbcl-cl-ledger")
6767 (version (git-version "4.0.0" revision commit))
6768 (source
6769 (origin
6770 (method git-fetch)
6771 (uri (git-reference
6772 (url "https://github.com/ledger/cl-ledger.git")
6773 (commit commit)))
6774 (file-name (git-file-name name version))
6775 (sha256
6776 (base32
6777 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
6778 (build-system asdf-build-system/sbcl)
6779 (inputs
6780 `(("cambl" ,sbcl-cambl)
6781 ("cl-ppcre" ,sbcl-cl-ppcre)
6782 ("local-time" ,sbcl-local-time)
6783 ("periods-series" ,sbcl-periods-series)))
6784 (arguments
6785 '(#:phases
6786 (modify-phases %standard-phases
6787 (add-after 'unpack 'fix-system-definition
6788 (lambda _
6789 (substitute* "cl-ledger.asd"
6790 ((" :build-operation program-op") "")
6791 ((" :build-pathname \"cl-ledger\"") "")
6792 ((" :entry-point \"ledger::main\"") ""))
6793 #t)))))
6794 (synopsis "Common Lisp port of the Ledger accounting system")
6795 (description
6796 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
6797 system.")
6798 (home-page "https://github.com/ledger/cl-ledger")
6799 (license license:bsd-3))))
6800
6801 (define-public cl-ledger
6802 (sbcl-package->cl-source-package sbcl-cl-ledger))
6803
6804 (define-public ecl-cl-ledger
6805 (sbcl-package->ecl-package sbcl-cl-ledger))
6806
6807 (define-public sbcl-bst
6808 (let ((commit "34f9c7e8e0a9f2c952fe310ab36cb630d5d9c15a")
6809 (revision "1"))
6810 (package
6811 (name "sbcl-bst")
6812 (version (git-version "1.1" revision commit))
6813 (source
6814 (origin
6815 (method git-fetch)
6816 (uri (git-reference
6817 (url "https://github.com/glv2/bst.git")
6818 (commit commit)))
6819 (file-name (git-file-name name version))
6820 (sha256
6821 (base32
6822 "1amxns7hvvh4arwbh8ciwfzplg127vh37dnbamv1m1kmmnmihfc8"))))
6823 (build-system asdf-build-system/sbcl)
6824 (native-inputs
6825 `(("alexandria" ,sbcl-alexandria)
6826 ("fiveam" ,sbcl-fiveam)))
6827 (synopsis "Binary search tree for Common Lisp")
6828 (description
6829 "BST is a Common Lisp library for working with binary search trees that
6830 can contain any kind of values.")
6831 (home-page "https://github.com/glv2/bst")
6832 (license license:gpl3))))
6833
6834 (define-public cl-bst
6835 (sbcl-package->cl-source-package sbcl-bst))
6836
6837 (define-public ecl-bst
6838 (sbcl-package->ecl-package sbcl-bst))
6839
6840 (define-public sbcl-cl-octet-streams
6841 (package
6842 (name "sbcl-cl-octet-streams")
6843 (version "1.0")
6844 (source
6845 (origin
6846 (method git-fetch)
6847 (uri (git-reference
6848 (url "https://github.com/glv2/cl-octet-streams.git")
6849 (commit (string-append "v" version))))
6850 (file-name (git-file-name name version))
6851 (sha256
6852 (base32
6853 "1d7mn6ydv0j2x4r7clpc9ijjwrnfpxmvhifv8n5j7jh7s744sf8d"))))
6854 (build-system asdf-build-system/sbcl)
6855 (native-inputs
6856 `(("fiveam" ,sbcl-fiveam)))
6857 (inputs
6858 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
6859 (synopsis "In-memory octet streams for Common Lisp")
6860 (description
6861 "CL-octet-streams is a library implementing in-memory octet
6862 streams for Common Lisp. It was inspired by the trivial-octet-streams and
6863 cl-plumbing libraries.")
6864 (home-page "https://github.com/glv2/cl-octet-streams")
6865 (license license:gpl3+)))
6866
6867 (define-public cl-octet-streams
6868 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
6869
6870 (define-public ecl-cl-octet-streams
6871 (sbcl-package->ecl-package sbcl-cl-octet-streams))
6872
6873 (define-public sbcl-lzlib
6874 (let ((commit "0de1db7129fef9a58a059d35a2fa2ecfc5b47b47")
6875 (revision "1"))
6876 (package
6877 (name "sbcl-lzlib")
6878 (version (git-version "1.0" revision commit))
6879 (source
6880 (origin
6881 (method git-fetch)
6882 (uri (git-reference
6883 (url "https://github.com/glv2/cl-lzlib.git")
6884 (commit commit)))
6885 (file-name (git-file-name name version))
6886 (sha256
6887 (base32
6888 "12ny7vj52fgnd8hb8fc8mry92vq4c1x72x2350191m4476j95clz"))))
6889 (build-system asdf-build-system/sbcl)
6890 (native-inputs
6891 `(("fiveam" ,sbcl-fiveam)))
6892 (inputs
6893 `(("cffi" ,sbcl-cffi)
6894 ("cl-octet-streams" ,sbcl-cl-octet-streams)
6895 ("lzlib" ,lzlib)))
6896 (arguments
6897 '(#:phases
6898 (modify-phases %standard-phases
6899 (add-after 'unpack 'fix-paths
6900 (lambda* (#:key inputs #:allow-other-keys)
6901 (substitute* "src/lzlib.lisp"
6902 (("liblz\\.so")
6903 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
6904 #t)))))
6905 (synopsis "Common Lisp library for lzip (de)compression")
6906 (description
6907 "This Common Lisp library provides functions for lzip (LZMA)
6908 compression/decompression using bindings to the lzlib C library.")
6909 (home-page "https://github.com/glv2/cl-lzlib")
6910 (license license:gpl3+))))
6911
6912 (define-public cl-lzlib
6913 (sbcl-package->cl-source-package sbcl-lzlib))
6914
6915 (define-public ecl-lzlib
6916 (sbcl-package->ecl-package sbcl-lzlib))
6917
6918 (define-public sbcl-chanl
6919 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
6920 (revision "1"))
6921 (package
6922 (name "sbcl-chanl")
6923 (version (git-version "0.4.1" revision commit))
6924 (source
6925 (origin
6926 (method git-fetch)
6927 (uri (git-reference
6928 (url "https://github.com/zkat/chanl.git")
6929 (commit commit)))
6930 (file-name (git-file-name name version))
6931 (sha256
6932 (base32
6933 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
6934 (build-system asdf-build-system/sbcl)
6935 (native-inputs
6936 `(("fiveam" ,sbcl-fiveam)))
6937 (inputs
6938 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
6939 (synopsis "Portable channel-based concurrency for Common Lisp")
6940 (description "Common Lisp library for channel-based concurrency. In
6941 a nutshell, you create various threads sequentially executing tasks you need
6942 done, and use channel objects to communicate and synchronize the state of these
6943 threads.")
6944 (home-page "https://github.com/zkat/chanl")
6945 (license (list license:expat license:bsd-3)))))
6946
6947 (define-public cl-chanl
6948 (sbcl-package->cl-source-package sbcl-chanl))
6949
6950 (define-public ecl-chanl
6951 (sbcl-package->ecl-package sbcl-chanl))
6952
6953 (define-public sbcl-cl-store
6954 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
6955 (revision "1"))
6956 (package
6957 (name "sbcl-cl-store")
6958 (version (git-version "0.8.11" revision commit))
6959 (source
6960 (origin
6961 (method git-fetch)
6962 (uri (git-reference
6963 (url "https://github.com/skypher/cl-store.git")
6964 (commit commit)))
6965 (file-name (git-file-name name version))
6966 (sha256
6967 (base32
6968 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
6969 (build-system asdf-build-system/sbcl)
6970 (native-inputs
6971 `(("rt" ,sbcl-rt)))
6972 (synopsis "Common Lisp library to serialize data")
6973 (description
6974 "CL-STORE is a portable serialization package which should give you the
6975 ability to store all Common Lisp data types into streams.")
6976 (home-page "https://www.common-lisp.net/project/cl-store/")
6977 (license license:expat))))
6978
6979 (define-public cl-store
6980 (sbcl-package->cl-source-package sbcl-cl-store))
6981
6982 (define-public ecl-cl-store
6983 (sbcl-package->ecl-package sbcl-cl-store))
6984
6985 (define-public sbcl-cl-gobject-introspection
6986 (let ((commit "7b703e2384945ea0ac39d9b766de434a08d81560")
6987 (revision "0"))
6988 (package
6989 (name "sbcl-cl-gobject-introspection")
6990 (version (git-version "0.3" revision commit))
6991 (home-page "https://github.com/andy128k/cl-gobject-introspection")
6992 (source
6993 (origin
6994 (method git-fetch)
6995 (uri (git-reference
6996 (url home-page)
6997 (commit commit)))
6998 (file-name (git-file-name name version))
6999 (sha256
7000 (base32
7001 "1zcqd2qj14f6b38vys8gr89s6cijsp9r8j43xa8lynilwva7bwyh"))))
7002 (build-system asdf-build-system/sbcl)
7003 (inputs
7004 `(("alexandria" ,sbcl-alexandria)
7005 ("cffi" ,sbcl-cffi)
7006 ("iterate" ,sbcl-iterate)
7007 ("trivial-garbage" ,sbcl-trivial-garbage)
7008 ("glib" ,glib)
7009 ("gobject-introspection" ,gobject-introspection)))
7010 (native-inputs
7011 `(("fiveam" ,sbcl-fiveam)))
7012 (arguments
7013 ;; TODO: Tests fail, see
7014 ;; https://github.com/andy128k/cl-gobject-introspection/issues/70.
7015 '(#:tests? #f
7016 #:phases
7017 (modify-phases %standard-phases
7018 (add-after (quote unpack) (quote fix-paths)
7019 (lambda* (#:key inputs #:allow-other-keys)
7020 (substitute* "src/init.lisp"
7021 (("libgobject-2\\.0\\.so")
7022 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
7023 (("libgirepository-1\\.0\\.so")
7024 (string-append (assoc-ref inputs "gobject-introspection")
7025 "/lib/libgirepository-1.0.so")))
7026 #t)))))
7027 (synopsis "Common Lisp bindings to GObject Introspection")
7028 (description
7029 "This library is a bridge between Common Lisp and GObject
7030 Introspection, which enables Common Lisp programs to access the full interface
7031 of C+GObject libraries without the need of writing dedicated bindings.")
7032 (license (list license:bsd-3
7033 ;; Tests are under a different license.
7034 license:llgpl)))))
7035
7036 (define-public cl-gobject-introspection
7037 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
7038
7039 (define-public sbcl-string-case
7040 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
7041 (revision "0"))
7042 (package
7043 (name "sbcl-string-case")
7044 (version (git-version "0.0.2" revision commit))
7045 (home-page "https://github.com/pkhuong/string-case")
7046 (source
7047 (origin
7048 (method git-fetch)
7049 (uri (git-reference
7050 (url home-page)
7051 (commit commit)))
7052 (file-name (git-file-name name version))
7053 (sha256
7054 (base32
7055 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
7056 (build-system asdf-build-system/sbcl)
7057 (synopsis "Efficient string= case in Common Lisp")
7058 (description
7059 "@code{string-case} is a Common Lisp macro that generates specialised decision
7060 trees to dispatch on string equality.")
7061 (license license:bsd-3))))
7062
7063 (define-public cl-string-case
7064 (sbcl-package->cl-source-package sbcl-string-case))
7065
7066 (define-public ecl-string-case
7067 (sbcl-package->ecl-package sbcl-string-case))
7068
7069 (define-public sbcl-global-vars
7070 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7071 (revision "0"))
7072 (package
7073 (name "sbcl-global-vars")
7074 (version (git-version "1.0.0" revision commit))
7075 (home-page "https://github.com/lmj/global-vars")
7076 (source
7077 (origin
7078 (method git-fetch)
7079 (uri (git-reference
7080 (url home-page)
7081 (commit commit)))
7082 (file-name (git-file-name name version))
7083 (sha256
7084 (base32
7085 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7086 (build-system asdf-build-system/sbcl)
7087 (synopsis "Efficient global variables in Common Lisp")
7088 (description
7089 "In Common Lisp, a special variable that is never dynamically bound
7090 typically serves as a stand-in for a global variable. The @code{global-vars}
7091 library provides true global variables that are implemented by some compilers.
7092 An attempt to rebind a global variable properly results in a compiler error.
7093 That is, a global variable cannot be dynamically bound.
7094
7095 Global variables therefore allow us to communicate an intended usage that
7096 differs from special variables. Global variables are also more efficient than
7097 special variables, especially in the presence of threads.")
7098 (license license:expat))))
7099
7100 (define-public cl-global-vars
7101 (sbcl-package->cl-source-package sbcl-global-vars))
7102
7103 (define-public ecl-global-vars
7104 (sbcl-package->ecl-package sbcl-global-vars))
7105
7106 (define-public sbcl-trivial-file-size
7107 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7108 (revision "0"))
7109 (package
7110 (name "sbcl-trivial-file-size")
7111 (version (git-version "0.0.0" revision commit))
7112 (home-page "https://github.com/ruricolist/trivial-file-size")
7113 (source
7114 (origin
7115 (method git-fetch)
7116 (uri (git-reference
7117 (url home-page)
7118 (commit commit)))
7119 (file-name (git-file-name name version))
7120 (sha256
7121 (base32
7122 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7123 (build-system asdf-build-system/sbcl)
7124 (native-inputs
7125 `(("fiveam" ,sbcl-fiveam)))
7126 (synopsis "Size of a file in bytes in Common Lisp")
7127 (description
7128 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7129 is to open the file with an element type of (unsigned-byte 8) and then
7130 calculate the length of the stream. This is less than ideal. In most cases
7131 it is better to get the size of the file from its metadata, using a system
7132 call.
7133
7134 This library exports a single function, file-size-in-octets. It returns the
7135 size of a file in bytes, using system calls when possible.")
7136 (license license:expat))))
7137
7138 (define-public cl-trivial-file-size
7139 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7140
7141 (define-public ecl-trivial-file-size
7142 (sbcl-package->ecl-package sbcl-trivial-file-size))
7143
7144 (define-public sbcl-trivial-macroexpand-all
7145 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7146 (revision "0"))
7147 (package
7148 (name "sbcl-trivial-macroexpand-all")
7149 (version (git-version "0.0.0" revision commit))
7150 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7151 (source
7152 (origin
7153 (method git-fetch)
7154 (uri (git-reference
7155 (url home-page)
7156 (commit commit)))
7157 (file-name (git-file-name name version))
7158 (sha256
7159 (base32
7160 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7161 (build-system asdf-build-system/sbcl)
7162 (native-inputs
7163 `(("fiveam" ,sbcl-fiveam)))
7164 (synopsis "Portable macroexpand-all for Common Lisp")
7165 (description
7166 "This library provides a macroexpand-all function that calls the
7167 implementation specific equivalent.")
7168 (license license:unlicense))))
7169
7170 (define-public cl-trivial-macroexpand-all
7171 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7172
7173 (define-public ecl-trivial-macroexpand-all
7174 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7175
7176 (define-public sbcl-serapeum
7177 (let ((commit "65837f8a0d65b36369ec8d000fff5c29a395b5fe")
7178 (revision "0"))
7179 (package
7180 (name "sbcl-serapeum")
7181 (version (git-version "0.0.0" revision commit))
7182 (home-page "https://github.com/ruricolist/serapeum")
7183 (source
7184 (origin
7185 (method git-fetch)
7186 (uri (git-reference
7187 (url home-page)
7188 (commit commit)))
7189 (file-name (git-file-name name version))
7190 (sha256
7191 (base32
7192 "0clwf81r2lvk1rbfvk91s9zmbkas9imf57ilqclw12mxaxlfsnbw"))))
7193 (build-system asdf-build-system/sbcl)
7194 (inputs
7195 `(("alexandria" ,sbcl-alexandria)
7196 ("trivia" ,sbcl-trivia)
7197 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
7198 ("split-sequence" ,sbcl-split-sequence)
7199 ("string-case" ,sbcl-string-case)
7200 ("parse-number" ,sbcl-parse-number)
7201 ("trivial-garbage" ,sbcl-trivial-garbage)
7202 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7203 ("named-readtables" ,sbcl-named-readtables)
7204 ("fare-quasiquote-extras" ,sbcl-fare-quasiquote-extras)
7205 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7206 ("global-vars" ,sbcl-global-vars)
7207 ("trivial-file-size" ,sbcl-trivial-file-size)
7208 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7209 (native-inputs
7210 `(("fiveam" ,sbcl-fiveam)
7211 ("local-time" ,sbcl-local-time)))
7212 (arguments
7213 '(#:phases
7214 (modify-phases %standard-phases
7215 (add-after 'unpack 'disable-failing-tests
7216 (lambda* (#:key inputs #:allow-other-keys)
7217 (substitute* "serapeum.asd"
7218 ;; Guix does not have Quicklisp, and probably never will.
7219 (("\\(:file \"quicklisp\"\\)") ""))
7220 #t)))))
7221 (synopsis "Common Lisp utility library beyond Alexandria")
7222 (description
7223 "Serapeum is a conservative library of Common Lisp utilities. It is a
7224 supplement, not a competitor, to Alexandria.")
7225 (license license:expat))))
7226
7227 (define-public cl-serapeum
7228 (sbcl-package->cl-source-package sbcl-serapeum))
7229
7230 (define-public sbcl-arrows
7231 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7232 (revision "0"))
7233 (package
7234 (name "sbcl-arrows")
7235 (version (git-version "0.2.0" revision commit))
7236 (source
7237 (origin
7238 (method git-fetch)
7239 (uri (git-reference
7240 (url "https://gitlab.com/Harleqin/arrows.git")
7241 (commit commit)))
7242 (file-name (git-file-name name version))
7243 (sha256
7244 (base32
7245 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7246 (build-system asdf-build-system/sbcl)
7247 (native-inputs
7248 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7249 (synopsis "Clojure-like arrow macros for Common Lisp")
7250 (description
7251 "This library implements the @code{->} and @code{->>} macros from
7252 Clojure, as well as several expansions on the idea.")
7253 (home-page "https://gitlab.com/Harleqin/arrows")
7254 (license license:public-domain))))
7255
7256 (define-public cl-arrows
7257 (sbcl-package->cl-source-package sbcl-arrows))
7258
7259 (define-public ecl-arrows
7260 (sbcl-package->ecl-package sbcl-arrows))
7261
7262 (define-public sbcl-simple-parallel-tasks
7263 (let ((commit "db460f7a3f7bbfe2d3a2223ed21e162068d04dda")
7264 (revision "0"))
7265 (package
7266 (name "sbcl-simple-parallel-tasks")
7267 (version (git-version "1.0" revision commit))
7268 (source
7269 (origin
7270 (method git-fetch)
7271 (uri (git-reference
7272 (url "https://github.com/glv2/simple-parallel-tasks.git")
7273 (commit commit)))
7274 (file-name (git-file-name name version))
7275 (sha256
7276 (base32
7277 "0amw3qk23wnlyrsgzszs6rs7y4zvxv8dr03rnqhc60mnm8ds4dd5"))))
7278 (build-system asdf-build-system/sbcl)
7279 (native-inputs
7280 `(("fiveam" ,sbcl-fiveam)))
7281 (inputs
7282 `(("chanl" ,sbcl-chanl)))
7283 (synopsis "Common Lisp library to evaluate some forms in parallel")
7284 (description "This is a simple Common Lisp library to evaluate some
7285 forms in parallel.")
7286 (home-page "https://github.com/glv2/simple-parallel-tasks")
7287 (license license:gpl3))))
7288
7289 (define-public cl-simple-parallel-tasks
7290 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7291
7292 (define-public ecl-simple-parallel-tasks
7293 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7294
7295 (define-public sbcl-cl-heap
7296 (package
7297 (name "sbcl-cl-heap")
7298 (version "0.1.6")
7299 (source
7300 (origin
7301 (method url-fetch)
7302 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7303 "cl-heap_" version ".tar.gz"))
7304 (sha256
7305 (base32
7306 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7307 (build-system asdf-build-system/sbcl)
7308 (native-inputs
7309 `(("xlunit" ,sbcl-xlunit)))
7310 (arguments
7311 `(#:test-asd-file "cl-heap-tests.asd"))
7312 (synopsis "Heap and priority queue data structures for Common Lisp")
7313 (description
7314 "CL-HEAP provides various implementations of heap data structures (a
7315 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7316 (home-page "https://common-lisp.net/project/cl-heap/")
7317 (license license:gpl3+)))
7318
7319 (define-public cl-heap
7320 (sbcl-package->cl-source-package sbcl-cl-heap))
7321
7322 (define-public ecl-cl-heap
7323 (sbcl-package->ecl-package sbcl-cl-heap))
7324
7325 (define-public sbcl-curry-compose-reader-macros
7326 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7327 (revision "0"))
7328 (package
7329 (name "sbcl-curry-compose-reader-macros")
7330 (version (git-version "1.0.0" revision commit))
7331 (source
7332 (origin
7333 (method git-fetch)
7334 (uri
7335 (git-reference
7336 (url "https://github.com/eschulte/curry-compose-reader-macros.git")
7337 (commit commit)))
7338 (file-name (git-file-name name version))
7339 (sha256
7340 (base32
7341 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7342 (build-system asdf-build-system/sbcl)
7343 (inputs
7344 `(("alexandria" ,sbcl-alexandria)
7345 ("named-readtables" ,sbcl-named-readtables)))
7346 (synopsis "Reader macros for partial application and composition")
7347 (description
7348 "This Common Lisp library provides reader macros for concise expression
7349 of function partial application and composition.")
7350 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7351 (license license:public-domain))))
7352
7353 (define-public cl-curry-compose-reader-macros
7354 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7355
7356 (define-public ecl-curry-compose-reader-macros
7357 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7358
7359 (define-public sbcl-yason
7360 (package
7361 (name "sbcl-yason")
7362 (version "0.7.7")
7363 (source
7364 (origin
7365 (method git-fetch)
7366 (uri (git-reference
7367 (url "https://github.com/phmarek/yason.git")
7368 (commit (string-append "v" version))))
7369 (file-name (git-file-name name version))
7370 (sha256
7371 (base32
7372 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7373 (build-system asdf-build-system/sbcl)
7374 (inputs
7375 `(("alexandria" ,sbcl-alexandria)
7376 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7377 (synopsis "Common Lisp JSON parser/encoder")
7378 (description
7379 "YASON is a Common Lisp library for encoding and decoding data in the
7380 JSON interchange format.")
7381 (home-page "https://github.com/phmarek/yason")
7382 (license license:bsd-3)))
7383
7384 (define-public cl-yason
7385 (sbcl-package->cl-source-package sbcl-yason))
7386
7387 (define-public ecl-yason
7388 (sbcl-package->ecl-package sbcl-yason))
7389
7390 (define-public sbcl-stefil
7391 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7392 (revision "0"))
7393 (package
7394 (name "sbcl-stefil")
7395 (version (git-version "0.1" revision commit))
7396 (source
7397 (origin
7398 (method git-fetch)
7399 (uri (git-reference
7400 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7401 (commit commit)))
7402 (file-name (git-file-name name version))
7403 (sha256
7404 (base32
7405 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7406 (build-system asdf-build-system/sbcl)
7407 (inputs
7408 `(("alexandria" ,sbcl-alexandria)
7409 ("iterate" ,sbcl-iterate)
7410 ("metabang-bind" ,sbcl-metabang-bind)))
7411 (propagated-inputs
7412 ;; Swank doesn't have a pre-compiled package, therefore we must
7413 ;; propagate its sources.
7414 `(("swank" ,cl-slime-swank)))
7415 (arguments
7416 '(#:phases
7417 (modify-phases %standard-phases
7418 (add-after 'unpack 'drop-unnecessary-dependency
7419 (lambda _
7420 (substitute* "package.lisp"
7421 ((":stefil-system") ""))
7422 #t)))))
7423 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7424 (synopsis "Simple test framework")
7425 (description
7426 "Stefil is a simple test framework for Common Lisp, with a focus on
7427 interactive development.")
7428 (license license:public-domain))))
7429
7430 (define-public cl-stefil
7431 (sbcl-package->cl-source-package sbcl-stefil))
7432
7433 (define-public sbcl-graph
7434 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7435 (revision "0"))
7436 (package
7437 (name "sbcl-graph")
7438 (version (git-version "0.0.0" revision commit))
7439 (source
7440 (origin
7441 (method git-fetch)
7442 (uri
7443 (git-reference
7444 (url "https://github.com/eschulte/graph.git")
7445 (commit commit)))
7446 (file-name (git-file-name name version))
7447 (sha256
7448 (base32
7449 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))
7450 (patches (search-patches "sbcl-graph-asdf-definitions.patch"))))
7451 (build-system asdf-build-system/sbcl)
7452 (native-inputs
7453 `(("stefil" ,sbcl-stefil)))
7454 (inputs
7455 `(("alexandria" ,sbcl-alexandria)
7456 ("cl-heap" ,sbcl-cl-heap)
7457 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7458 ("metabang-bind" ,sbcl-metabang-bind)
7459 ("named-readtables" ,sbcl-named-readtables)))
7460 (arguments
7461 '(#:test-asd-file "graph-test.asd"))
7462 (synopsis "Graph data structure and algorithms for Common Lisp")
7463 (description
7464 "The GRAPH Common Lisp library provides a data structures to represent
7465 graphs, as well as some graph manipulation and analysis algorithms (shortest
7466 path, maximum flow, minimum spanning tree, etc.).")
7467 (home-page "https://eschulte.github.io/graph/")
7468 (license license:gpl3+))))
7469
7470 (define-public cl-graph
7471 (sbcl-package->cl-source-package sbcl-graph))
7472
7473 (define-public sbcl-graph-dot
7474 (package
7475 (inherit sbcl-graph)
7476 (name "sbcl-graph-dot")
7477 (inputs
7478 `(("alexandria" ,sbcl-alexandria)
7479 ("cl-ppcre" ,sbcl-cl-ppcre)
7480 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7481 ("graph" ,sbcl-graph)
7482 ("metabang-bind" ,sbcl-metabang-bind)
7483 ("named-readtables" ,sbcl-named-readtables)))
7484 (arguments
7485 (substitute-keyword-arguments (package-arguments sbcl-graph)
7486 ((#:asd-file _ "") "graph-dot.asd")
7487 ((#:asd-system-name _ #f) "graph-dot")))
7488 (synopsis "Serialize graphs to and from DOT format")))
7489
7490 (define-public sbcl-graph-json
7491 (package
7492 (inherit sbcl-graph)
7493 (name "sbcl-graph-json")
7494 (inputs
7495 `(("alexandria" ,sbcl-alexandria)
7496 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7497 ("graph" ,sbcl-graph)
7498 ("metabang-bind" ,sbcl-metabang-bind)
7499 ("named-readtables" ,sbcl-named-readtables)
7500 ("yason" ,sbcl-yason)))
7501 (arguments
7502 (substitute-keyword-arguments (package-arguments sbcl-graph)
7503 ((#:asd-file _ "") "graph-json.asd")
7504 ((#:asd-system-name _ #f) "graph-json")))
7505 (synopsis "Serialize graphs to and from JSON format")))
7506
7507 (define-public sbcl-trivial-indent
7508 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7509 (revision "0"))
7510 (package
7511 (name "sbcl-trivial-indent")
7512 (version (git-version "1.0.0" revision commit))
7513 (source
7514 (origin
7515 (method git-fetch)
7516 (uri
7517 (git-reference
7518 (url "https://github.com/Shinmera/trivial-indent")
7519 (commit commit)))
7520 (file-name (git-file-name name version))
7521 (sha256
7522 (base32
7523 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7524 (build-system asdf-build-system/sbcl)
7525 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7526 (description
7527 "This library allows you to define custom indentation hints for your
7528 macros if the one recognised by SLIME automatically produces unwanted
7529 results.")
7530 (home-page "https://shinmera.github.io/trivial-indent/")
7531 (license license:zlib))))
7532
7533 (define-public cl-trivial-indent
7534 (sbcl-package->cl-source-package sbcl-trivial-indent))
7535
7536 (define-public sbcl-documentation-utils
7537 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7538 (revision "0"))
7539 (package
7540 (name "sbcl-documentation-utils")
7541 (version (git-version "1.2.0" revision commit))
7542 (source
7543 (origin
7544 (method git-fetch)
7545 (uri
7546 (git-reference
7547 (url "https://github.com/Shinmera/documentation-utils.git")
7548 (commit commit)))
7549 (file-name (git-file-name name version))
7550 (sha256
7551 (base32
7552 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7553 (build-system asdf-build-system/sbcl)
7554 (inputs
7555 `(("trivial-indent" ,sbcl-trivial-indent)))
7556 (synopsis "Few simple tools to document Common Lisp libraries")
7557 (description
7558 "This is a small library to help you with managing the Common Lisp
7559 docstrings for your library.")
7560 (home-page "https://shinmera.github.io/documentation-utils/")
7561 (license license:zlib))))
7562
7563 (define-public cl-documentation-utils
7564 (sbcl-package->cl-source-package sbcl-documentation-utils))
7565
7566 (define-public ecl-documentation-utils
7567 (sbcl-package->ecl-package sbcl-documentation-utils))
7568
7569 (define-public sbcl-form-fiddle
7570 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7571 (revision "0"))
7572 (package
7573 (name "sbcl-form-fiddle")
7574 (version (git-version "1.1.0" revision commit))
7575 (source
7576 (origin
7577 (method git-fetch)
7578 (uri
7579 (git-reference
7580 (url "https://github.com/Shinmera/form-fiddle")
7581 (commit commit)))
7582 (file-name (git-file-name name version))
7583 (sha256
7584 (base32
7585 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7586 (build-system asdf-build-system/sbcl)
7587 (inputs
7588 `(("documentation-utils" ,sbcl-documentation-utils)))
7589 (synopsis "Utilities to destructure Common Lisp lambda forms")
7590 (description
7591 "Often times we need to destructure a form definition in a Common Lisp
7592 macro. This library provides a set of simple utilities to help with that.")
7593 (home-page "https://shinmera.github.io/form-fiddle/")
7594 (license license:zlib))))
7595
7596 (define-public cl-form-fiddle
7597 (sbcl-package->cl-source-package sbcl-form-fiddle))
7598
7599 (define-public sbcl-parachute
7600 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7601 (revision "0"))
7602 (package
7603 (name "sbcl-parachute")
7604 (version (git-version "1.1.1" revision commit))
7605 (source
7606 (origin
7607 (method git-fetch)
7608 (uri
7609 (git-reference
7610 (url "https://github.com/Shinmera/parachute")
7611 (commit commit)))
7612 (file-name (git-file-name name version))
7613 (sha256
7614 (base32
7615 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7616 (build-system asdf-build-system/sbcl)
7617 (inputs
7618 `(("documentation-utils" ,sbcl-documentation-utils)
7619 ("form-fiddle" ,sbcl-form-fiddle)))
7620 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7621 (description
7622 "Parachute is a simple-to-use and extensible testing framework.
7623 In Parachute, things are organised as a bunch of named tests within a package.
7624 Each test can contain a bunch of test forms that make up its body.")
7625 (home-page "https://shinmera.github.io/parachute/")
7626 (license license:zlib))))
7627
7628 (define-public cl-parachute
7629 (sbcl-package->cl-source-package sbcl-parachute))
7630
7631 (define-public sbcl-array-utils
7632 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7633 (revision "0"))
7634 (package
7635 (name "sbcl-array-utils")
7636 (version (git-version "1.1.1" revision commit))
7637 (source
7638 (origin
7639 (method git-fetch)
7640 (uri
7641 (git-reference
7642 (url "https://github.com/Shinmera/array-utils")
7643 (commit commit)))
7644 (file-name (git-file-name name version))
7645 (sha256
7646 (base32
7647 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
7648 (build-system asdf-build-system/sbcl)
7649 (native-inputs
7650 `(("parachute" ,sbcl-parachute)))
7651 (inputs
7652 `(("documentation-utils" ,sbcl-documentation-utils)))
7653 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
7654 (description
7655 "A miniature toolkit that contains some useful shifting/popping/pushing
7656 functions for arrays and vectors. Originally from Plump.")
7657 (home-page "https://shinmera.github.io/array-utils/")
7658 (license license:zlib))))
7659
7660 (define-public cl-array-utils
7661 (sbcl-package->cl-source-package sbcl-array-utils))
7662
7663 (define-public sbcl-plump
7664 (let ((commit "16f1231bf706cfbc54d9e55a853ca945e4452a08")
7665 (revision "0"))
7666 (package
7667 (name "sbcl-plump")
7668 (version (git-version "2.0.0" revision commit))
7669 (source
7670 (origin
7671 (method git-fetch)
7672 (uri
7673 (git-reference
7674 (url "https://github.com/Shinmera/plump")
7675 (commit commit)))
7676 (file-name (git-file-name name version))
7677 (sha256
7678 (base32
7679 "0705k8pbip51v74rccgwscwph439f2pma9f915qf1h4bhjx999ip"))))
7680 (build-system asdf-build-system/sbcl)
7681 (inputs
7682 `(("array-utils" ,sbcl-array-utils)
7683 ("documentation-utils" ,sbcl-documentation-utils)))
7684 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
7685 (description
7686 "Plump is a parser for HTML/XML-like documents, focusing on being
7687 lenient towards invalid markup. It can handle things like invalid attributes,
7688 bad closing tag order, unencoded entities, inexistent tag types, self-closing
7689 tags and so on. It parses documents to a class representation and offers a
7690 small set of DOM functions to manipulate it. It can be extended to parse to
7691 your own classes.")
7692 (home-page "https://shinmera.github.io/plump/")
7693 (license license:zlib))))
7694
7695 (define-public cl-plump
7696 (sbcl-package->cl-source-package sbcl-plump))
7697
7698 (define-public sbcl-antik-base
7699 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
7700 (revision "1"))
7701 (package
7702 (name "sbcl-antik-base")
7703 (version (git-version "0.0.0" revision commit))
7704 (source
7705 (origin
7706 (method git-fetch)
7707 (uri (git-reference
7708 (url "https://gitlab.common-lisp.net/antik/antik.git")
7709 (commit commit)))
7710 (file-name (git-file-name name version))
7711 (sha256
7712 (base32
7713 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
7714 (build-system asdf-build-system/sbcl)
7715 (inputs
7716 `(("alexandria" ,sbcl-alexandria)
7717 ("cl-ppcre" ,sbcl-cl-ppcre)
7718 ("iterate" ,sbcl-iterate)
7719 ("metabang-bind" ,sbcl-metabang-bind)
7720 ("named-readtables" ,sbcl-named-readtables)
7721 ("split-sequence" ,sbcl-split-sequence)))
7722 (native-inputs
7723 `(("lisp-unit" ,sbcl-lisp-unit)))
7724 (synopsis "Scientific and engineering computation in Common Lisp")
7725 (description
7726 "Antik provides a foundation for scientific and engineering
7727 computation in Common Lisp. It is designed not only to facilitate
7728 numerical computations, but to permit the use of numerical computation
7729 libraries and the interchange of data and procedures, whether
7730 foreign (non-Lisp) or Lisp libraries. It is named after the
7731 Antikythera mechanism, one of the oldest examples of a scientific
7732 computer known.")
7733 (home-page "https://common-lisp.net/project/antik/")
7734 (license license:gpl3))))
7735
7736 (define-public cl-antik-base
7737 (sbcl-package->cl-source-package sbcl-antik-base))
7738
7739 (define-public ecl-antik-base
7740 (sbcl-package->ecl-package sbcl-antik-base))
7741
7742 (define-public sbcl-foreign-array
7743 (package
7744 (inherit sbcl-antik-base)
7745 (name "sbcl-foreign-array")
7746 (arguments
7747 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7748 ((#:asd-file _ "") "foreign-array.asd")
7749 ((#:asd-system-name _ #f) "foreign-array")))
7750 (inputs
7751 `(("antik-base" ,sbcl-antik-base)
7752 ("cffi" ,sbcl-cffi)
7753 ("trivial-garbage" ,sbcl-trivial-garbage)
7754 ("static-vectors" ,sbcl-static-vectors)))
7755 (synopsis "Common Lisp library providing access to foreign arrays")))
7756
7757 (define-public cl-foreign-array
7758 (sbcl-package->cl-source-package sbcl-foreign-array))
7759
7760 (define-public ecl-foreign-array
7761 (sbcl-package->ecl-package sbcl-foreign-array))
7762
7763 (define-public sbcl-physical-dimension
7764 (package
7765 (inherit sbcl-antik-base)
7766 (name "sbcl-physical-dimension")
7767 (inputs
7768 `(("fare-utils" ,sbcl-fare-utils)
7769 ("foreign-array" ,sbcl-foreign-array)
7770 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
7771 (arguments
7772 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7773 ((#:asd-file _ "") "physical-dimension.asd")
7774 ((#:asd-system-name _ #f) "physical-dimension")))
7775 (synopsis
7776 "Common Lisp library providing computations with physical units")))
7777
7778 (define-public cl-physical-dimension
7779 (sbcl-package->cl-source-package sbcl-physical-dimension))
7780
7781 (define-public sbcl-science-data
7782 (package
7783 (inherit sbcl-antik-base)
7784 (name "sbcl-science-data")
7785 (inputs
7786 `(("physical-dimension" ,sbcl-physical-dimension)
7787 ("drakma" ,sbcl-drakma)))
7788 (arguments
7789 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7790 ((#:asd-file _ "") "science-data.asd")
7791 ((#:asd-system-name _ #f) "science-data")))
7792 (synopsis
7793 "Common Lisp library for scientific and engineering numerical data")))
7794
7795 (define-public cl-science-data
7796 (sbcl-package->cl-source-package sbcl-science-data))
7797
7798 (define-public sbcl-gsll
7799 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
7800 (revision "1"))
7801 (package
7802 (name "sbcl-gsll")
7803 (version (git-version "0.0.0" revision commit))
7804 (source
7805 (origin
7806 (method git-fetch)
7807 (uri (git-reference
7808 (url "https://gitlab.common-lisp.net/antik/gsll.git")
7809 (commit commit)))
7810 (file-name (git-file-name name version))
7811 (sha256
7812 (base32
7813 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
7814 (build-system asdf-build-system/sbcl)
7815 (native-inputs
7816 `(("lisp-unit" ,sbcl-lisp-unit)))
7817 (inputs
7818 `(("alexandria" ,sbcl-alexandria)
7819 ("cffi-grovel" ,sbcl-cffi-grovel)
7820 ("cffi-libffi" ,sbcl-cffi-libffi)
7821 ("foreign-array" ,sbcl-foreign-array)
7822 ("gsl" ,gsl)
7823 ("metabang-bind" ,sbcl-metabang-bind)
7824 ("trivial-features" ,sbcl-trivial-features)
7825 ("trivial-garbage" ,sbcl-trivial-garbage)))
7826 (arguments
7827 `(#:tests? #f
7828 #:phases
7829 (modify-phases %standard-phases
7830 (add-after 'unpack 'fix-cffi-paths
7831 (lambda* (#:key inputs #:allow-other-keys)
7832 (substitute* "gsll.asd"
7833 ((":depends-on \\(#:foreign-array")
7834 ":depends-on (#:foreign-array #:cffi-libffi"))
7835 (substitute* "init/init.lisp"
7836 (("libgslcblas.so" all)
7837 (string-append
7838 (assoc-ref inputs "gsl") "/lib/" all)))
7839 (substitute* "init/init.lisp"
7840 (("libgsl.so" all)
7841 (string-append
7842 (assoc-ref inputs "gsl") "/lib/" all))))))))
7843 (synopsis "GNU Scientific Library for Lisp")
7844 (description
7845 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
7846 GNU Scientific Library (GSL) from Common Lisp. This library provides a
7847 full range of common mathematical operations useful to scientific and
7848 engineering applications. The design of the GSLL interface is such
7849 that access to most of the GSL library is possible in a Lisp-natural
7850 way; the intent is that the user not be hampered by the restrictions
7851 of the C language in which GSL has been written. GSLL thus provides
7852 interactive use of GSL for getting quick answers, even for someone not
7853 intending to program in Lisp.")
7854 (home-page "https://common-lisp.net/project/gsll/")
7855 (license license:gpl3))))
7856
7857 (define-public cl-gsll
7858 (sbcl-package->cl-source-package sbcl-gsll))
7859
7860 (define-public sbcl-antik
7861 (package
7862 (inherit sbcl-antik-base)
7863 (name "sbcl-antik")
7864 (inputs
7865 `(("gsll" ,sbcl-gsll)
7866 ("physical-dimension" ,sbcl-physical-dimension)))
7867 (arguments
7868 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7869 ((#:asd-file _ "") "antik.asd")
7870 ((#:asd-system-name _ #f) "antik")))))
7871
7872 (define-public cl-antik
7873 (sbcl-package->cl-source-package sbcl-antik))
7874
7875 (define-public sbcl-cl-interpol
7876 (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4")
7877 (revision "1"))
7878 (package
7879 (name "sbcl-cl-interpol")
7880 (version (git-version "0.2.6" revision commit))
7881 (source
7882 (origin
7883 (method git-fetch)
7884 (uri (git-reference
7885 (url "https://github.com/edicl/cl-interpol.git")
7886 (commit commit)))
7887 (file-name (git-file-name name version))
7888 (sha256
7889 (base32
7890 "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn"))))
7891 (build-system asdf-build-system/sbcl)
7892 (inputs
7893 `(("cl-unicode" ,sbcl-cl-unicode)
7894 ("named-readtables" ,sbcl-named-readtables)))
7895 (native-inputs
7896 `(("flexi-streams" ,sbcl-flexi-streams)))
7897 (synopsis "String interpolation for Common Lisp")
7898 (description
7899 "CL-INTERPOL is a library for Common Lisp which modifies the
7900 reader so that you can have interpolation within strings similar to
7901 Perl or Unix Shell scripts. It also provides various ways to insert
7902 arbitrary characters into literal strings even if your editor/IDE
7903 doesn't support them.")
7904 (home-page "https://edicl.github.io/cl-interpol/")
7905 (license license:bsd-3))))
7906
7907 (define-public cl-interpol
7908 (sbcl-package->cl-source-package sbcl-cl-interpol))
7909
7910 (define-public ecl-cl-interpol
7911 (sbcl-package->ecl-package sbcl-cl-interpol))
7912
7913 (define sbcl-symbol-munger-boot0
7914 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7915 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7916 (let ((commit "cc2bb4b7acd454d756484aec81ba487648385fc3")
7917 (revision "1"))
7918 (package
7919 (name "sbcl-symbol-munger-boot0")
7920 (version (git-version "0.0.1" revision commit))
7921 (source
7922 (origin
7923 (method git-fetch)
7924 (uri (git-reference
7925 (url "https://github.com/AccelerationNet/symbol-munger.git")
7926 (commit commit)))
7927 (file-name (git-file-name name version))
7928 (sha256
7929 (base32
7930 "0diav5ricqsybqvbp4bkxyj3bn3v9n7xb2pqqc4vg1algsw2pyjl"))))
7931 (build-system asdf-build-system/sbcl)
7932 (arguments
7933 `(#:asd-file "symbol-munger.asd"
7934 #:asd-system-name "symbol-munger"))
7935 (inputs
7936 `(("iterate" ,sbcl-iterate)
7937 ("alexandria" ,sbcl-alexandria)))
7938 (native-inputs
7939 `(("lisp-unit" ,sbcl-lisp-unit)))
7940 (synopsis
7941 "Capitalization and spacing conversion functions for Common Lisp")
7942 (description
7943 "This is a Common Lisp library to change the capitalization and spacing
7944 of a string or a symbol. It can convert to and from Lisp, english, underscore
7945 and camel-case rules.")
7946 (home-page "https://github.com/AccelerationNet/symbol-munger")
7947 ;; The package declares a BSD license, but all of the license
7948 ;; text is MIT.
7949 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
7950 (license license:expat))))
7951
7952 (define sbcl-lisp-unit2-boot0
7953 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7954 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7955 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
7956 (revision "1"))
7957 (package
7958 (name "sbcl-lisp-unit2-boot0")
7959 (version (git-version "0.2.0" revision commit))
7960 (source
7961 (origin
7962 (method git-fetch)
7963 (uri (git-reference
7964 (url "https://github.com/AccelerationNet/lisp-unit2.git")
7965 (commit commit)))
7966 (file-name (git-file-name name version))
7967 (sha256
7968 (base32
7969 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
7970 (build-system asdf-build-system/sbcl)
7971 (arguments
7972 `(#:asd-file "lisp-unit2.asd"
7973 #:asd-system-name "lisp-unit2"))
7974 (inputs
7975 `(("alexandria" ,sbcl-alexandria)
7976 ("cl-interpol" ,sbcl-cl-interpol)
7977 ("iterate" ,sbcl-iterate)
7978 ("symbol-munger-boot0" ,sbcl-symbol-munger-boot0)))
7979 (synopsis "Test Framework for Common Lisp")
7980 (description
7981 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
7982 style of JUnit for Java. It is a new version of the lisp-unit library written
7983 by Chris Riesbeck.")
7984 (home-page "https://github.com/AccelerationNet/lisp-unit2")
7985 (license license:expat))))
7986
7987 (define-public sbcl-symbol-munger
7988 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
7989 (revision "1"))
7990 (package
7991 (name "sbcl-symbol-munger")
7992 (version (git-version "0.0.1" revision commit))
7993 (source
7994 (origin
7995 (method git-fetch)
7996 (uri (git-reference
7997 (url "https://github.com/AccelerationNet/symbol-munger.git")
7998 (commit commit)))
7999 (file-name (git-file-name name version))
8000 (sha256
8001 (base32
8002 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
8003 (build-system asdf-build-system/sbcl)
8004 (inputs
8005 `(("alexandria" ,sbcl-alexandria)
8006 ("iterate" ,sbcl-iterate)))
8007 (native-inputs
8008 `(("lisp-unit2-boot0" ,sbcl-lisp-unit2-boot0)))
8009 (synopsis
8010 "Capitalization and spacing conversion functions for Common Lisp")
8011 (description
8012 "This is a Common Lisp library to change the capitalization and spacing
8013 of a string or a symbol. It can convert to and from Lisp, english, underscore
8014 and camel-case rules.")
8015 (home-page "https://github.com/AccelerationNet/symbol-munger")
8016 ;; The package declares a BSD license, but all of the license
8017 ;; text is MIT.
8018 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
8019 (license license:expat))))
8020
8021 (define-public cl-symbol-munger
8022 (sbcl-package->cl-source-package sbcl-symbol-munger))
8023
8024 (define-public ecl-symbol-munger
8025 (sbcl-package->ecl-package sbcl-symbol-munger))
8026
8027 (define-public sbcl-lisp-unit2
8028 (package
8029 (inherit sbcl-lisp-unit2-boot0)
8030 (name "sbcl-lisp-unit2")
8031 (inputs
8032 `(("alexandria" ,sbcl-alexandria)
8033 ("cl-interpol" ,sbcl-cl-interpol)
8034 ("iterate" ,sbcl-iterate)
8035 ("symbol-munger" ,sbcl-symbol-munger)))))
8036
8037 (define-public cl-lisp-unit2
8038 (sbcl-package->cl-source-package sbcl-lisp-unit2))
8039
8040 (define-public ecl-lisp-unit2
8041 (sbcl-package->ecl-package sbcl-lisp-unit2))
8042
8043 (define-public sbcl-cl-csv
8044 (let ((commit "3eba29c8364b033fbe0d189c2500559278b6a362")
8045 (revision "1"))
8046 (package
8047 (name "sbcl-cl-csv")
8048 (version (git-version "1.0.6" revision commit))
8049 (source
8050 (origin
8051 (method git-fetch)
8052 (uri (git-reference
8053 (url "https://github.com/AccelerationNet/cl-csv.git")
8054 (commit commit)))
8055 (file-name (git-file-name name version))
8056 (sha256
8057 (base32
8058 "07h4ni89jzx93clx453hlnnb5g53hhlcmz5hghqv6ysam48lc8g6"))))
8059 (build-system asdf-build-system/sbcl)
8060 (arguments
8061 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
8062 `(#:tests? #f))
8063 (inputs
8064 `(("alexandria" ,sbcl-alexandria)
8065 ("cl-interpol" ,sbcl-cl-interpol)
8066 ("iterate" ,sbcl-iterate)))
8067 (native-inputs
8068 `(("lisp-unit2" ,sbcl-lisp-unit2)))
8069 (synopsis "Common lisp library for comma-separated values")
8070 (description
8071 "This is a Common Lisp library providing functions to read/write CSV
8072 from/to strings, streams and files.")
8073 (home-page "https://github.com/AccelerationNet/cl-csv")
8074 (license license:bsd-3))))
8075
8076 (define-public cl-csv
8077 (sbcl-package->cl-source-package sbcl-cl-csv))
8078
8079 (define-public ecl-cl-csv
8080 (sbcl-package->ecl-package sbcl-cl-csv))
8081
8082 (define-public sbcl-external-program
8083 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8084 (revision "1"))
8085 (package
8086 (name "sbcl-external-program")
8087 (version (git-version "0.0.6" revision commit))
8088 (source
8089 (origin
8090 (method git-fetch)
8091 (uri (git-reference
8092 (url "https://github.com/sellout/external-program.git")
8093 (commit commit)))
8094 (file-name (git-file-name name version))
8095 (sha256
8096 (base32
8097 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8098 (build-system asdf-build-system/sbcl)
8099 (inputs
8100 `(("trivial-features" ,sbcl-trivial-features)))
8101 (native-inputs
8102 `(("fiveam" ,sbcl-fiveam)))
8103 (synopsis "Common Lisp library for running external programs")
8104 (description
8105 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8106 process. It is an attempt to make the RUN-PROGRAM functionality in
8107 implementations like SBCL and CCL as portable as possible without
8108 sacrificing much in the way of power.")
8109 (home-page "https://github.com/sellout/external-program")
8110 (license license:llgpl))))
8111
8112 (define-public cl-external-program
8113 (sbcl-package->cl-source-package sbcl-external-program))
8114
8115 (define-public ecl-external-program
8116 (sbcl-package->ecl-package sbcl-external-program))
8117
8118 (define sbcl-cl-ana-boot0
8119 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8120 (revision "1"))
8121 (package
8122 (name "sbcl-cl-ana-boot0")
8123 (version (git-version "0.0.0" revision commit))
8124 (source
8125 (origin
8126 (method git-fetch)
8127 (uri (git-reference
8128 (url "https://github.com/ghollisjr/cl-ana.git")
8129 (commit commit)))
8130 (file-name (git-file-name name version))
8131 (sha256
8132 (base32
8133 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
8134 (build-system asdf-build-system/sbcl)
8135 (synopsis "Common Lisp data analysis library")
8136 (description
8137 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8138 binned data analysis along with nonlinear least squares fitting and
8139 visualization.")
8140 (home-page "https://github.com/ghollisjr/cl-ana")
8141 (license license:gpl3))))
8142
8143 (define-public sbcl-cl-ana.pathname-utils
8144 (package
8145 (inherit sbcl-cl-ana-boot0)
8146 (name "sbcl-cl-ana.pathname-utils")
8147 (arguments
8148 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8149 ((#:asd-file _ "") "pathname-utils/cl-ana.pathname-utils.asd")
8150 ((#:asd-system-name _ #f) "cl-ana.pathname-utils")))))
8151
8152 (define-public cl-ana.pathname-utils
8153 (sbcl-package->cl-source-package sbcl-cl-ana.pathname-utils))
8154
8155 (define-public ecl-cl-ana.pathname-utils
8156 (sbcl-package->ecl-package sbcl-cl-ana.pathname-utils))
8157
8158 (define-public sbcl-cl-ana.package-utils
8159 (package
8160 (inherit sbcl-cl-ana-boot0)
8161 (name "sbcl-cl-ana.package-utils")
8162 (inputs
8163 `(("alexandria" ,sbcl-alexandria)))
8164 (arguments
8165 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8166 ((#:asd-file _ "") "package-utils/cl-ana.package-utils.asd")
8167 ((#:asd-system-name _ #f) "cl-ana.package-utils")))))
8168
8169 (define-public cl-ana.package-utils
8170 (sbcl-package->cl-source-package sbcl-cl-ana.package-utils))
8171
8172 (define-public ecl-cl-ana.package-utils
8173 (sbcl-package->ecl-package sbcl-cl-ana.package-utils))
8174
8175 (define-public sbcl-cl-ana.string-utils
8176 (package
8177 (inherit sbcl-cl-ana-boot0)
8178 (name "sbcl-cl-ana.string-utils")
8179 (inputs
8180 `(("split-sequence" ,sbcl-split-sequence)))
8181 (arguments
8182 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8183 ((#:asd-file _ "") "string-utils/cl-ana.string-utils.asd")
8184 ((#:asd-system-name _ #f) "cl-ana.string-utils")))))
8185
8186 (define-public cl-ana.string-utils
8187 (sbcl-package->cl-source-package sbcl-cl-ana.string-utils))
8188
8189 (define-public ecl-cl-ana.string-utils
8190 (sbcl-package->ecl-package sbcl-cl-ana.string-utils))
8191
8192 (define-public sbcl-cl-ana.functional-utils
8193 (package
8194 (inherit sbcl-cl-ana-boot0)
8195 (name "sbcl-cl-ana.functional-utils")
8196 (arguments
8197 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8198 ((#:asd-file _ "") "functional-utils/cl-ana.functional-utils.asd")
8199 ((#:asd-system-name _ #f) "cl-ana.functional-utils")))))
8200
8201 (define-public cl-ana.functional-utils
8202 (sbcl-package->cl-source-package sbcl-cl-ana.functional-utils))
8203
8204 (define-public ecl-cl-ana.functional-utils
8205 (sbcl-package->ecl-package sbcl-cl-ana.functional-utils))
8206
8207 (define-public sbcl-cl-ana.list-utils
8208 (package
8209 (inherit sbcl-cl-ana-boot0)
8210 (name "sbcl-cl-ana.list-utils")
8211 (inputs
8212 `(("alexandria" ,sbcl-alexandria)
8213 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8214 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)))
8215 (arguments
8216 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8217 ((#:asd-file _ "") "list-utils/cl-ana.list-utils.asd")
8218 ((#:asd-system-name _ #f) "cl-ana.list-utils")))))
8219
8220 (define-public cl-ana.list-utils
8221 (sbcl-package->cl-source-package sbcl-cl-ana.list-utils))
8222
8223 (define-public ecl-cl-ana.list-utils
8224 (sbcl-package->ecl-package sbcl-cl-ana.list-utils))
8225
8226 (define-public sbcl-cl-ana.generic-math
8227 (package
8228 (inherit sbcl-cl-ana-boot0)
8229 (name "sbcl-cl-ana.generic-math")
8230 (inputs
8231 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8232 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)))
8233 (arguments
8234 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8235 ((#:asd-file _ "") "generic-math/cl-ana.generic-math.asd")
8236 ((#:asd-system-name _ #f) "cl-ana.generic-math")))))
8237
8238 (define-public cl-ana.generic-math
8239 (sbcl-package->cl-source-package sbcl-cl-ana.generic-math))
8240
8241 (define-public ecl-cl-ana.generic-math
8242 (sbcl-package->ecl-package sbcl-cl-ana.generic-math))
8243
8244 (define-public sbcl-cl-ana.math-functions
8245 (package
8246 (inherit sbcl-cl-ana-boot0)
8247 (name "sbcl-cl-ana.math-functions")
8248 (inputs
8249 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8250 ("gsll" ,sbcl-gsll)))
8251 (arguments
8252 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8253 ((#:asd-file _ "") "math-functions/cl-ana.math-functions.asd")
8254 ((#:asd-system-name _ #f) "cl-ana.math-functions")))))
8255
8256 (define-public cl-ana.math-functions
8257 (sbcl-package->cl-source-package sbcl-cl-ana.math-functions))
8258
8259 (define-public sbcl-cl-ana.calculus
8260 (package
8261 (inherit sbcl-cl-ana-boot0)
8262 (name "sbcl-cl-ana.calculus")
8263 (inputs
8264 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)))
8265 (arguments
8266 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8267 ((#:asd-file _ "") "calculus/cl-ana.calculus.asd")
8268 ((#:asd-system-name _ #f) "cl-ana.calculus")))))
8269
8270 (define-public cl-ana.calculus
8271 (sbcl-package->cl-source-package sbcl-cl-ana.calculus))
8272
8273 (define-public ecl-cl-ana.calculus
8274 (sbcl-package->ecl-package sbcl-cl-ana.calculus))
8275
8276 (define-public sbcl-cl-ana.symbol-utils
8277 (package
8278 (inherit sbcl-cl-ana-boot0)
8279 (name "sbcl-cl-ana.symbol-utils")
8280 (inputs
8281 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)))
8282 (arguments
8283 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8284 ((#:asd-file _ "") "symbol-utils/cl-ana.symbol-utils.asd")
8285 ((#:asd-system-name _ #f) "cl-ana.symbol-utils")))))
8286
8287 (define-public cl-ana.symbol-utils
8288 (sbcl-package->cl-source-package sbcl-cl-ana.symbol-utils))
8289
8290 (define-public ecl-cl-ana.symbol-utils
8291 (sbcl-package->ecl-package sbcl-cl-ana.symbol-utils))
8292
8293 (define-public sbcl-cl-ana.macro-utils
8294 (package
8295 (inherit sbcl-cl-ana-boot0)
8296 (name "sbcl-cl-ana.macro-utils")
8297 (inputs
8298 `(("alexandria" ,sbcl-alexandria)
8299 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8300 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8301 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8302 ("split-sequence" ,sbcl-split-sequence)))
8303 (arguments
8304 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8305 ((#:asd-file _ "") "macro-utils/cl-ana.macro-utils.asd")
8306 ((#:asd-system-name _ #f) "cl-ana.macro-utils")))))
8307
8308 (define-public cl-ana.macro-utils
8309 (sbcl-package->cl-source-package sbcl-cl-ana.macro-utils))
8310
8311 (define-public ecl-cl-ana.macro-utils
8312 (sbcl-package->ecl-package sbcl-cl-ana.macro-utils))
8313
8314 (define-public sbcl-cl-ana.binary-tree
8315 (package
8316 (inherit sbcl-cl-ana-boot0)
8317 (name "sbcl-cl-ana.binary-tree")
8318 (inputs
8319 `(("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8320 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8321 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)))
8322 (arguments
8323 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8324 ((#:asd-file _ "") "binary-tree/cl-ana.binary-tree.asd")
8325 ((#:asd-system-name _ #f) "cl-ana.binary-tree")))))
8326
8327 (define-public cl-ana.binary-tree
8328 (sbcl-package->cl-source-package sbcl-cl-ana.binary-tree))
8329
8330 (define-public ecl-cl-ana.binary-tree
8331 (sbcl-package->ecl-package sbcl-cl-ana.binary-tree))
8332
8333 (define-public sbcl-cl-ana.tensor
8334 (package
8335 (inherit sbcl-cl-ana-boot0)
8336 (name "sbcl-cl-ana.tensor")
8337 (inputs
8338 `(("alexandria" ,sbcl-alexandria)
8339 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8340 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8341 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8342 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8343 (arguments
8344 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8345 ((#:asd-file _ "") "tensor/cl-ana.tensor.asd")
8346 ((#:asd-system-name _ #f) "cl-ana.tensor")))))
8347
8348 (define-public cl-ana.tensor
8349 (sbcl-package->cl-source-package sbcl-cl-ana.tensor))
8350
8351 (define-public ecl-cl-ana.tensor
8352 (sbcl-package->ecl-package sbcl-cl-ana.tensor))
8353
8354 (define-public sbcl-cl-ana.error-propogation
8355 (package
8356 (inherit sbcl-cl-ana-boot0)
8357 (name "sbcl-cl-ana.error-propogation")
8358 (inputs
8359 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8360 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)))
8361 (arguments
8362 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8363 ((#:asd-file _ "") "error-propogation/cl-ana.error-propogation.asd")
8364 ((#:asd-system-name _ #f) "cl-ana.error-propogation")))))
8365
8366 (define-public cl-ana.error-propogation
8367 (sbcl-package->cl-source-package sbcl-cl-ana.error-propogation))
8368
8369 (define-public sbcl-cl-ana.quantity
8370 (package
8371 (inherit sbcl-cl-ana-boot0)
8372 (name "sbcl-cl-ana.quantity")
8373 (inputs
8374 `(("alexandria" ,sbcl-alexandria)
8375 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8376 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8377 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8378 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8379 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8380 (arguments
8381 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8382 ((#:asd-file _ "") "quantity/cl-ana.quantity.asd")
8383 ((#:asd-system-name _ #f) "cl-ana.quantity")))))
8384
8385 (define-public cl-ana.quantity
8386 (sbcl-package->cl-source-package sbcl-cl-ana.quantity))
8387
8388 (define-public sbcl-cl-ana.table
8389 (package
8390 (inherit sbcl-cl-ana-boot0)
8391 (name "sbcl-cl-ana.table")
8392 (inputs
8393 `(("alexandria" ,sbcl-alexandria)
8394 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8395 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8396 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8397 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8398 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8399 (arguments
8400 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8401 ((#:asd-file _ "") "table/cl-ana.table.asd")
8402 ((#:asd-system-name _ #f) "cl-ana.table")))))
8403
8404 (define-public cl-ana.table
8405 (sbcl-package->cl-source-package sbcl-cl-ana.table))
8406
8407 (define-public ecl-cl-ana.table
8408 (sbcl-package->ecl-package sbcl-cl-ana.table))
8409
8410 (define-public sbcl-cl-ana.table-utils
8411 (package
8412 (inherit sbcl-cl-ana-boot0)
8413 (name "sbcl-cl-ana.table-utils")
8414 (inputs
8415 `(("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8416 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8417 ("cl-ana.table" ,sbcl-cl-ana.table)))
8418 (arguments
8419 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8420 ((#:asd-file _ "") "table-utils/cl-ana.table-utils.asd")
8421 ((#:asd-system-name _ #f) "cl-ana.table-utils")))))
8422
8423 (define-public cl-ana.table-utils
8424 (sbcl-package->cl-source-package sbcl-cl-ana.table-utils))
8425
8426 (define-public ecl-cl-ana.table-utils
8427 (sbcl-package->ecl-package sbcl-cl-ana.table-utils))
8428
8429 (define-public sbcl-cl-ana.hdf-cffi
8430 (package
8431 (inherit sbcl-cl-ana-boot0)
8432 (name "sbcl-cl-ana.hdf-cffi")
8433 (inputs
8434 `(("cffi" ,sbcl-cffi)
8435 ("hdf5" ,hdf5-parallel-openmpi)))
8436 (arguments
8437 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8438 ((#:asd-file _ "") "hdf-cffi/cl-ana.hdf-cffi.asd")
8439 ((#:asd-system-name _ #f) "cl-ana.hdf-cffi")
8440 ((#:phases phases '%standard-phases)
8441 `(modify-phases ,phases
8442 (add-after 'unpack 'fix-paths
8443 (lambda* (#:key inputs #:allow-other-keys)
8444 (substitute* "hdf-cffi/hdf-cffi.lisp"
8445 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8446 (string-append
8447 (assoc-ref inputs "hdf5")
8448 "/lib/libhdf5.so")))))))))))
8449
8450 (define-public cl-ana.hdf-cffi
8451 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-cffi))
8452
8453 (define-public ecl-cl-ana.hdf-cffi
8454 (sbcl-package->ecl-package sbcl-cl-ana.hdf-cffi))
8455
8456 (define-public sbcl-cl-ana.int-char
8457 (package
8458 (inherit sbcl-cl-ana-boot0)
8459 (name "sbcl-cl-ana.int-char")
8460 (arguments
8461 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8462 ((#:asd-file _ "") "int-char/cl-ana.int-char.asd")
8463 ((#:asd-system-name _ #f) "cl-ana.int-char")))))
8464
8465 (define-public cl-ana.int-char
8466 (sbcl-package->cl-source-package sbcl-cl-ana.int-char))
8467
8468 (define-public ecl-cl-ana.int-char
8469 (sbcl-package->ecl-package sbcl-cl-ana.int-char))
8470
8471 (define-public sbcl-cl-ana.memoization
8472 (package
8473 (inherit sbcl-cl-ana-boot0)
8474 (name "sbcl-cl-ana.memoization")
8475 (inputs
8476 `(("alexandria" ,sbcl-alexandria)))
8477 (arguments
8478 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8479 ((#:asd-file _ "") "memoization/cl-ana.memoization.asd")
8480 ((#:asd-system-name _ #f) "cl-ana.memoization")))))
8481
8482 (define-public cl-ana.memoization
8483 (sbcl-package->cl-source-package sbcl-cl-ana.memoization))
8484
8485 (define-public ecl-cl-ana.memoization
8486 (sbcl-package->ecl-package sbcl-cl-ana.memoization))
8487
8488 (define-public sbcl-cl-ana.typespec
8489 (package
8490 (inherit sbcl-cl-ana-boot0)
8491 (name "sbcl-cl-ana.typespec")
8492 (inputs
8493 `(("alexandria" ,sbcl-alexandria)
8494 ("cffi" ,sbcl-cffi)
8495 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
8496 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8497 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8498 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8499 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8500 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8501 (arguments
8502 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8503 ((#:asd-file _ "") "typespec/cl-ana.typespec.asd")
8504 ((#:asd-system-name _ #f) "cl-ana.typespec")))))
8505
8506 (define-public cl-ana.typespec
8507 (sbcl-package->cl-source-package sbcl-cl-ana.typespec))
8508
8509 (define-public ecl-cl-ana.typespec
8510 (sbcl-package->ecl-package sbcl-cl-ana.typespec))
8511
8512 (define-public sbcl-cl-ana.hdf-typespec
8513 (package
8514 (inherit sbcl-cl-ana-boot0)
8515 (name "sbcl-cl-ana.hdf-typespec")
8516 (inputs
8517 `(("alexandria" ,sbcl-alexandria)
8518 ("cffi" ,sbcl-cffi)
8519 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8520 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8521 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8522 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8523 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8524 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8525 (arguments
8526 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8527 ((#:asd-file _ "") "hdf-typespec/cl-ana.hdf-typespec.asd")
8528 ((#:asd-system-name _ #f) "cl-ana.hdf-typespec")))))
8529
8530 (define-public cl-ana.hdf-typespec
8531 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-typespec))
8532
8533 (define-public ecl-cl-ana.hdf-typespec
8534 (sbcl-package->ecl-package sbcl-cl-ana.hdf-typespec))
8535
8536 (define-public sbcl-cl-ana.hdf-utils
8537 (package
8538 (inherit sbcl-cl-ana-boot0)
8539 (name "sbcl-cl-ana.hdf-utils")
8540 (inputs
8541 `(("alexandria" ,sbcl-alexandria)
8542 ("cffi" ,sbcl-cffi)
8543 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8544 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8545 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8546 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8547 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8548 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8549 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8550 (arguments
8551 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8552 ((#:asd-file _ "") "hdf-utils/cl-ana.hdf-utils.asd")
8553 ((#:asd-system-name _ #f) "cl-ana.hdf-utils")))))
8554
8555 (define-public cl-ana.hdf-utils
8556 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-utils))
8557
8558 (define-public ecl-cl-ana.hdf-utils
8559 (sbcl-package->ecl-package sbcl-cl-ana.hdf-utils))
8560
8561 (define-public sbcl-cl-ana.typed-table
8562 (package
8563 (inherit sbcl-cl-ana-boot0)
8564 (name "sbcl-cl-ana.typed-table")
8565 (inputs
8566 `(("alexandria" ,sbcl-alexandria)
8567 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8568 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8569 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8570 ("cl-ana.table" ,sbcl-cl-ana.table)
8571 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8572 (arguments
8573 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8574 ((#:asd-file _ "") "typed-table/cl-ana.typed-table.asd")
8575 ((#:asd-system-name _ #f) "cl-ana.typed-table")))))
8576
8577 (define-public cl-ana.typed-table
8578 (sbcl-package->cl-source-package sbcl-cl-ana.typed-table))
8579
8580 (define-public ecl-cl-ana.typed-table
8581 (sbcl-package->ecl-package sbcl-cl-ana.typed-table))
8582
8583 (define-public sbcl-cl-ana.hdf-table
8584 (package
8585 (inherit sbcl-cl-ana-boot0)
8586 (name "sbcl-cl-ana.hdf-table")
8587 (inputs
8588 `(("alexandria" ,sbcl-alexandria)
8589 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8590 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8591 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8592 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8593 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8594 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8595 ("cl-ana.table" ,sbcl-cl-ana.table)
8596 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8597 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8598 (arguments
8599 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8600 ((#:asd-file _ "") "hdf-table/cl-ana.hdf-table.asd")
8601 ((#:asd-system-name _ #f) "cl-ana.hdf-table")))))
8602
8603 (define-public cl-ana.hdf-table
8604 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-table))
8605
8606 (define-public ecl-cl-ana.hdf-table
8607 (sbcl-package->ecl-package sbcl-cl-ana.hdf-table))
8608
8609 (define-public sbcl-cl-ana.gsl-cffi
8610 (package
8611 (inherit sbcl-cl-ana-boot0)
8612 (name "sbcl-cl-ana.gsl-cffi")
8613 (inputs
8614 `(("cffi" ,sbcl-cffi)
8615 ("gsl" ,gsl)))
8616 (arguments
8617 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8618 ((#:asd-file _ "") "gsl-cffi/cl-ana.gsl-cffi.asd")
8619 ((#:asd-system-name _ #f) "cl-ana.gsl-cffi")
8620 ((#:phases phases '%standard-phases)
8621 `(modify-phases ,phases
8622 (add-after 'unpack 'fix-paths
8623 (lambda* (#:key inputs #:allow-other-keys)
8624 (substitute* "gsl-cffi/gsl-cffi.lisp"
8625 (("define-foreign-library gsl-cffi" all)
8626 (string-append all " (:unix "
8627 (assoc-ref inputs "gsl")
8628 "/lib/libgsl.so)")))))))))))
8629
8630 (define-public cl-ana.gsl-cffi
8631 (sbcl-package->cl-source-package sbcl-cl-ana.gsl-cffi))
8632
8633 (define-public ecl-cl-ana.gsl-cffi
8634 (sbcl-package->ecl-package sbcl-cl-ana.gsl-cffi))
8635
8636 (define-public sbcl-cl-ana.ntuple-table
8637 (package
8638 (inherit sbcl-cl-ana-boot0)
8639 (name "sbcl-cl-ana.ntuple-table")
8640 (inputs
8641 `(("alexandria" ,sbcl-alexandria)
8642 ("cffi" ,sbcl-cffi)
8643 ("cl-ana.gsl-cffi" ,sbcl-cl-ana.gsl-cffi)
8644 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8645 ("cl-ana.table" ,sbcl-cl-ana.table)
8646 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8647 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)
8648 ("gsll" ,sbcl-gsll)))
8649 (arguments
8650 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8651 ((#:asd-file _ "") "ntuple-table/cl-ana.ntuple-table.asd")
8652 ((#:asd-system-name _ #f) "cl-ana.ntuple-table")))))
8653
8654 (define-public cl-ana.ntuple-table
8655 (sbcl-package->cl-source-package sbcl-cl-ana.ntuple-table))
8656
8657 (define-public sbcl-cl-ana.csv-table
8658 (package
8659 (inherit sbcl-cl-ana-boot0)
8660 (name "sbcl-cl-ana.csv-table")
8661 (inputs
8662 `(("alexandria" ,sbcl-alexandria)
8663 ("antik" ,sbcl-antik)
8664 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8665 ("cl-ana.table" ,sbcl-cl-ana.table)
8666 ("cl-csv" ,sbcl-cl-csv)
8667 ("iterate" ,sbcl-iterate)))
8668 (arguments
8669 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8670 ((#:asd-file _ "") "csv-table/cl-ana.csv-table.asd")
8671 ((#:asd-system-name _ #f) "cl-ana.csv-table")))))
8672
8673 (define-public cl-ana.csv-table
8674 (sbcl-package->cl-source-package sbcl-cl-ana.csv-table))
8675
8676 (define-public sbcl-cl-ana.reusable-table
8677 (package
8678 (inherit sbcl-cl-ana-boot0)
8679 (name "sbcl-cl-ana.reusable-table")
8680 (inputs
8681 `(("alexandria" ,sbcl-alexandria)
8682 ("cl-ana.table" ,sbcl-cl-ana.table)))
8683 (arguments
8684 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8685 ((#:asd-file _ "") "reusable-table/cl-ana.reusable-table.asd")
8686 ((#:asd-system-name _ #f) "cl-ana.reusable-table")))))
8687
8688 (define-public cl-ana.reusable-table
8689 (sbcl-package->cl-source-package sbcl-cl-ana.reusable-table))
8690
8691 (define-public ecl-cl-ana.reusable-table
8692 (sbcl-package->ecl-package sbcl-cl-ana.reusable-table))
8693
8694 (define-public sbcl-cl-ana.linear-algebra
8695 (package
8696 (inherit sbcl-cl-ana-boot0)
8697 (name "sbcl-cl-ana.linear-algebra")
8698 (inputs
8699 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8700 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8701 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8702 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8703 ("gsll" ,sbcl-gsll)))
8704 (arguments
8705 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8706 ((#:asd-file _ "") "linear-algebra/cl-ana.linear-algebra.asd")
8707 ((#:asd-system-name _ #f) "cl-ana.linear-algebra")))))
8708
8709 (define-public cl-ana.linear-algebra
8710 (sbcl-package->cl-source-package sbcl-cl-ana.linear-algebra))
8711
8712 (define-public sbcl-cl-ana.lorentz
8713 (package
8714 (inherit sbcl-cl-ana-boot0)
8715 (name "sbcl-cl-ana.lorentz")
8716 (inputs
8717 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8718 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
8719 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8720 ("iterate" ,sbcl-iterate)))
8721 (arguments
8722 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8723 ((#:asd-file _ "") "lorentz/cl-ana.lorentz.asd")
8724 ((#:asd-system-name _ #f) "cl-ana.lorentz")))))
8725
8726 (define-public cl-ana.lorentz
8727 (sbcl-package->cl-source-package sbcl-cl-ana.lorentz))
8728
8729 (define-public sbcl-cl-ana.clos-utils
8730 (package
8731 (inherit sbcl-cl-ana-boot0)
8732 (name "sbcl-cl-ana.clos-utils")
8733 (inputs
8734 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8735 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8736 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8737 ("closer-mop" ,sbcl-closer-mop)))
8738 (arguments
8739 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8740 ((#:asd-file _ "") "clos-utils/cl-ana.clos-utils.asd")
8741 ((#:asd-system-name _ #f) "cl-ana.clos-utils")))))
8742
8743 (define-public cl-ana.clos-utils
8744 (sbcl-package->cl-source-package sbcl-cl-ana.clos-utils))
8745
8746 (define-public ecl-cl-ana.clos-utils
8747 (sbcl-package->ecl-package sbcl-cl-ana.clos-utils))
8748
8749 (define-public sbcl-cl-ana.hash-table-utils
8750 (package
8751 (inherit sbcl-cl-ana-boot0)
8752 (name "sbcl-cl-ana.hash-table-utils")
8753 (arguments
8754 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8755 ((#:asd-file _ "") "hash-table-utils/cl-ana.hash-table-utils.asd")
8756 ((#:asd-system-name _ #f) "cl-ana.hash-table-utils")))))
8757
8758 (define-public cl-ana.hash-table-utils
8759 (sbcl-package->cl-source-package sbcl-cl-ana.hash-table-utils))
8760
8761 (define-public ecl-cl-ana.hash-table-utils
8762 (sbcl-package->ecl-package sbcl-cl-ana.hash-table-utils))
8763
8764 (define-public sbcl-cl-ana.map
8765 (package
8766 (inherit sbcl-cl-ana-boot0)
8767 (name "sbcl-cl-ana.map")
8768 (inputs
8769 `(("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)))
8770 (arguments
8771 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8772 ((#:asd-file _ "") "map/cl-ana.map.asd")
8773 ((#:asd-system-name _ #f) "cl-ana.map")))))
8774
8775 (define-public cl-ana.map
8776 (sbcl-package->cl-source-package sbcl-cl-ana.map))
8777
8778 (define-public ecl-cl-ana.map
8779 (sbcl-package->ecl-package sbcl-cl-ana.map))
8780
8781 (define-public sbcl-cl-ana.fitting
8782 (package
8783 (inherit sbcl-cl-ana-boot0)
8784 (name "sbcl-cl-ana.fitting")
8785 (inputs
8786 `(("alexandria" ,sbcl-alexandria)
8787 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8788 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8789 ("cl-ana.map" ,sbcl-cl-ana.map)
8790 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8791 ("gsll" ,sbcl-gsll)))
8792 (arguments
8793 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8794 ((#:asd-file _ "") "fitting/cl-ana.fitting.asd")
8795 ((#:asd-system-name _ #f) "cl-ana.fitting")))))
8796
8797 (define-public cl-ana.fitting
8798 (sbcl-package->cl-source-package sbcl-cl-ana.fitting))
8799
8800 (define-public sbcl-cl-ana.histogram
8801 (package
8802 (inherit sbcl-cl-ana-boot0)
8803 (name "sbcl-cl-ana.histogram")
8804 (inputs
8805 `(("alexandria" ,sbcl-alexandria)
8806 ("iterate" ,sbcl-iterate)
8807 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8808 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
8809 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
8810 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8811 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8812 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
8813 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8814 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8815 ("cl-ana.map" ,sbcl-cl-ana.map)
8816 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8817 (arguments
8818 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8819 ((#:asd-file _ "") "histogram/cl-ana.histogram.asd")
8820 ((#:asd-system-name _ #f) "cl-ana.histogram")))))
8821
8822 (define-public cl-ana.histogram
8823 (sbcl-package->cl-source-package sbcl-cl-ana.histogram))
8824
8825 (define-public sbcl-cl-ana.file-utils
8826 (package
8827 (inherit sbcl-cl-ana-boot0)
8828 (name "sbcl-cl-ana.file-utils")
8829 (inputs
8830 `(("external-program" ,sbcl-external-program)
8831 ("split-sequence" ,sbcl-split-sequence)))
8832 (arguments
8833 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8834 ((#:asd-file _ "") "file-utils/cl-ana.file-utils.asd")
8835 ((#:asd-system-name _ #f) "cl-ana.file-utils")))))
8836
8837 (define-public cl-ana.file-utils
8838 (sbcl-package->cl-source-package sbcl-cl-ana.file-utils))
8839
8840 (define-public ecl-cl-ana.file-utils
8841 (sbcl-package->ecl-package sbcl-cl-ana.file-utils))
8842
8843 (define-public sbcl-cl-ana.statistics
8844 (package
8845 (inherit sbcl-cl-ana-boot0)
8846 (name "sbcl-cl-ana.statistics")
8847 (inputs
8848 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8849 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8850 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8851 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8852 ("cl-ana.map" ,sbcl-cl-ana.map)))
8853 (arguments
8854 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8855 ((#:asd-file _ "") "statistics/cl-ana.statistics.asd")
8856 ((#:asd-system-name _ #f) "cl-ana.statistics")))))
8857
8858 (define-public cl-ana.statistics
8859 (sbcl-package->cl-source-package sbcl-cl-ana.statistics))
8860
8861 (define-public sbcl-cl-ana.gnuplot-interface
8862 (package
8863 (inherit sbcl-cl-ana-boot0)
8864 (name "sbcl-cl-ana.gnuplot-interface")
8865 (inputs
8866 `(("external-program" ,sbcl-external-program)))
8867 (arguments
8868 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8869 ((#:asd-file _ "") "gnuplot-interface/cl-ana.gnuplot-interface.asd")
8870 ((#:asd-system-name _ #f) "cl-ana.gnuplot-interface")))))
8871
8872 (define-public cl-ana.gnuplot-interface
8873 (sbcl-package->cl-source-package sbcl-cl-ana.gnuplot-interface))
8874
8875 (define-public ecl-cl-ana.gnuplot-interface
8876 (sbcl-package->ecl-package sbcl-cl-ana.gnuplot-interface))
8877
8878 (define-public sbcl-cl-ana.plotting
8879 (package
8880 (inherit sbcl-cl-ana-boot0)
8881 (name "sbcl-cl-ana.plotting")
8882 (inputs
8883 `(("alexandria" ,sbcl-alexandria)
8884 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8885 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8886 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8887 ("cl-ana.gnuplot-interface" ,sbcl-cl-ana.gnuplot-interface)
8888 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8889 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8890 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8891 ("cl-ana.map" ,sbcl-cl-ana.map)
8892 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8893 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8894 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8895 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8896 ("external-program" ,sbcl-external-program)
8897 ("split-sequence" ,sbcl-split-sequence)))
8898 (arguments
8899 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8900 ((#:asd-file _ "") "plotting/cl-ana.plotting.asd")
8901 ((#:asd-system-name _ #f) "cl-ana.plotting")))))
8902
8903 (define-public cl-ana.plotting
8904 (sbcl-package->cl-source-package sbcl-cl-ana.plotting))
8905
8906 (define-public sbcl-cl-ana.table-viewing
8907 (package
8908 (inherit sbcl-cl-ana-boot0)
8909 (name "sbcl-cl-ana.table-viewing")
8910 (inputs
8911 `(("alexandria" ,sbcl-alexandria)
8912 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8913 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8914 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8915 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
8916 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8917 ("cl-ana.table" ,sbcl-cl-ana.table)))
8918 (arguments
8919 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8920 ((#:asd-file _ "") "table-viewing/cl-ana.table-viewing.asd")
8921 ((#:asd-system-name _ #f) "cl-ana.table-viewing")))))
8922
8923 (define-public cl-ana.table-viewing
8924 (sbcl-package->cl-source-package sbcl-cl-ana.table-viewing))
8925
8926 (define-public sbcl-cl-ana.serialization
8927 (package
8928 (inherit sbcl-cl-ana-boot0)
8929 (name "sbcl-cl-ana.serialization")
8930 (inputs
8931 `(("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8932 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8933 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
8934 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8935 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
8936 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8937 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8938 (arguments
8939 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8940 ((#:asd-file _ "") "serialization/cl-ana.serialization.asd")
8941 ((#:asd-system-name _ #f) "cl-ana.serialization")))))
8942
8943 (define-public cl-ana.serialization
8944 (sbcl-package->cl-source-package sbcl-cl-ana.serialization))
8945
8946 (define-public sbcl-cl-ana.makeres
8947 (package
8948 (inherit sbcl-cl-ana-boot0)
8949 (name "sbcl-cl-ana.makeres")
8950 (inputs
8951 `(("alexandria" ,sbcl-alexandria)
8952 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8953 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
8954 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8955 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8956 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
8957 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8958 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8959 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8960 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8961 ("cl-ana.map" ,sbcl-cl-ana.map)
8962 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8963 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8964 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
8965 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
8966 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
8967 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8968 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8969 ("cl-ana.table" ,sbcl-cl-ana.table)
8970 ("external-program" ,sbcl-external-program)))
8971 (native-inputs
8972 `(("cl-fad" ,sbcl-cl-fad)))
8973 (arguments
8974 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8975 ((#:asd-file _ "") "makeres/cl-ana.makeres.asd")
8976 ((#:asd-system-name _ #f) "cl-ana.makeres")))))
8977
8978 (define-public cl-ana.makeres
8979 (sbcl-package->cl-source-package sbcl-cl-ana.makeres))
8980
8981 (define-public sbcl-cl-ana.makeres-macro
8982 (package
8983 (inherit sbcl-cl-ana-boot0)
8984 (name "sbcl-cl-ana.makeres-macro")
8985 (inputs
8986 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8987 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
8988 (arguments
8989 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8990 ((#:asd-file _ "") "makeres-macro/cl-ana.makeres-macro.asd")
8991 ((#:asd-system-name _ #f) "cl-ana.makeres-macro")))))
8992
8993 (define-public cl-ana.makeres-macro
8994 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-macro))
8995
8996 (define-public sbcl-cl-ana.makeres-block
8997 (package
8998 (inherit sbcl-cl-ana-boot0)
8999 (name "sbcl-cl-ana.makeres-block")
9000 (inputs
9001 `(("alexandria" ,sbcl-alexandria)
9002 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9003 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9004 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9005 (arguments
9006 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9007 ((#:asd-file _ "") "makeres-block/cl-ana.makeres-block.asd")
9008 ((#:asd-system-name _ #f) "cl-ana.makeres-block")))))
9009
9010 (define-public cl-ana.makeres-block
9011 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-block))
9012
9013 (define-public sbcl-cl-ana.makeres-progress
9014 (package
9015 (inherit sbcl-cl-ana-boot0)
9016 (name "sbcl-cl-ana.makeres-progress")
9017 (inputs
9018 `(("alexandria" ,sbcl-alexandria)
9019 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9020 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9021 (arguments
9022 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9023 ((#:asd-file _ "") "makeres-progress/cl-ana.makeres-progress.asd")
9024 ((#:asd-system-name _ #f) "cl-ana.makeres-progress")))))
9025
9026 (define-public cl-ana.makeres-progress
9027 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-progress))
9028
9029 (define-public sbcl-cl-ana.makeres-table
9030 (package
9031 (inherit sbcl-cl-ana-boot0)
9032 (name "sbcl-cl-ana.makeres-table")
9033 (inputs
9034 `(("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9035 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9036 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9037 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
9038 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9039 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9040 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9041 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9042 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
9043 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9044 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9045 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9046 ("cl-ana.table" ,sbcl-cl-ana.table)))
9047 (native-inputs
9048 `(("cl-fad" ,sbcl-cl-fad)))
9049 (arguments
9050 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9051 ((#:asd-file _ "") "makeres-table/cl-ana.makeres-table.asd")
9052 ((#:asd-system-name _ #f) "cl-ana.makeres-table")))))
9053
9054 (define-public cl-ana.makeres-table
9055 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-table))
9056
9057 (define-public sbcl-cl-ana.makeres-graphviz
9058 (package
9059 (inherit sbcl-cl-ana-boot0)
9060 (name "sbcl-cl-ana.makeres-graphviz")
9061 (inputs
9062 `(("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9063 ("external-program" ,sbcl-external-program)))
9064 (arguments
9065 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9066 ((#:asd-file _ "") "makeres-graphviz/cl-ana.makeres-graphviz.asd")
9067 ((#:asd-system-name _ #f) "cl-ana.makeres-graphviz")))))
9068
9069 (define-public cl-ana.makeres-graphviz
9070 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-graphviz))
9071
9072 (define-public sbcl-cl-ana.makeres-branch
9073 (package
9074 (inherit sbcl-cl-ana-boot0)
9075 (name "sbcl-cl-ana.makeres-branch")
9076 (inputs
9077 `(("alexandria" ,sbcl-alexandria)
9078 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9079 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9080 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9081 ("cl-ana.map" ,sbcl-cl-ana.map)
9082 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9083 (arguments
9084 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9085 ((#:asd-file _ "") "makeres-branch/cl-ana.makeres-branch.asd")
9086 ((#:asd-system-name _ #f) "cl-ana.makeres-branch")))))
9087
9088 (define-public cl-ana.makeres-branch
9089 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-branch))
9090
9091 (define-public sbcl-cl-ana.makeres-utils
9092 (package
9093 (inherit sbcl-cl-ana-boot0)
9094 (name "sbcl-cl-ana.makeres-utils")
9095 (inputs
9096 `(("alexandria" ,sbcl-alexandria)
9097 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9098 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9099 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9100 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9101 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9102 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9103 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9104 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9105 ("cl-ana.map" ,sbcl-cl-ana.map)
9106 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9107 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9108 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9109 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9110 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
9111 ("cl-ana.table" ,sbcl-cl-ana.table)))
9112 (native-inputs
9113 `(("cl-fad" ,sbcl-cl-fad)))
9114 (arguments
9115 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9116 ((#:asd-file _ "") "makeres-utils/cl-ana.makeres-utils.asd")
9117 ((#:asd-system-name _ #f) "cl-ana.makeres-utils")))))
9118
9119 (define-public cl-ana.makeres-utils
9120 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-utils))
9121
9122 (define-public sbcl-cl-ana.statistical-learning
9123 (package
9124 (inherit sbcl-cl-ana-boot0)
9125 (name "sbcl-cl-ana.statistical-learning")
9126 (inputs
9127 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9128 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9129 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9130 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9131 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9132 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9133 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9134 ("cl-ana.map" ,sbcl-cl-ana.map)
9135 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)))
9136 (native-inputs
9137 `(("cl-fad" ,sbcl-cl-fad)))
9138 (arguments
9139 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9140 ((#:asd-file _ "")
9141 "statistical-learning/cl-ana.statistical-learning.asd")
9142 ((#:asd-system-name _ #f) "cl-ana.statistical-learning")))))
9143
9144 (define-public cl-ana.statistical-learning
9145 (sbcl-package->cl-source-package sbcl-cl-ana.statistical-learning))
9146
9147 (define-public sbcl-cl-ana
9148 (package
9149 (inherit sbcl-cl-ana-boot0)
9150 (name "sbcl-cl-ana")
9151 (inputs
9152 `(("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
9153 ("cl-ana.calculus" ,sbcl-cl-ana.calculus)
9154 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
9155 ("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9156 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
9157 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9158 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9159 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9160 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9161 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9162 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9163 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
9164 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9165 ("cl-ana.lorentz" ,sbcl-cl-ana.lorentz)
9166 ("cl-ana.map" ,sbcl-cl-ana.map)
9167 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9168 ("cl-ana.makeres-block" ,sbcl-cl-ana.makeres-block)
9169 ("cl-ana.makeres-branch" ,sbcl-cl-ana.makeres-branch)
9170 ("cl-ana.makeres-graphviz" ,sbcl-cl-ana.makeres-graphviz)
9171 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9172 ("cl-ana.makeres-progress" ,sbcl-cl-ana.makeres-progress)
9173 ("cl-ana.makeres-table" ,sbcl-cl-ana.makeres-table)
9174 ("cl-ana.makeres-utils" ,sbcl-cl-ana.makeres-utils)
9175 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9176 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9177 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)
9178 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9179 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9180 ("cl-ana.quantity" ,sbcl-cl-ana.quantity)
9181 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9182 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
9183 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)
9184 ("cl-ana.statistical-learning" ,sbcl-cl-ana.statistical-learning)
9185 ("cl-ana.table" ,sbcl-cl-ana.table)
9186 ("cl-ana.table-utils" ,sbcl-cl-ana.table-utils)
9187 ("cl-ana.table-viewing" ,sbcl-cl-ana.table-viewing)
9188 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
9189 ("libffi" ,libffi)))
9190 (native-inputs
9191 `(("cl-fad" ,sbcl-cl-fad)))
9192 (arguments
9193 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9194 ((#:asd-file _ "") "cl-ana.asd")
9195 ((#:asd-system-name _ #f) "cl-ana")))))
9196
9197 (define-public cl-ana
9198 (sbcl-package->cl-source-package sbcl-cl-ana))
9199
9200 (define-public sbcl-archive
9201 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
9202 (revision "1"))
9203 (package
9204 (name "sbcl-archive")
9205 (version (git-version "0.9" revision commit))
9206 (source (origin
9207 (method git-fetch)
9208 (uri (git-reference
9209 (url "https://github.com/sharplispers/archive.git")
9210 (commit commit)))
9211 (file-name (git-file-name name version))
9212 (sha256
9213 (base32
9214 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
9215 (build-system asdf-build-system/sbcl)
9216 (inputs
9217 `(("cl-fad" ,sbcl-cl-fad)
9218 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9219 (synopsis "Common Lisp library for tar and cpio archives")
9220 (description
9221 "This is a Common Lisp library to read and write disk-based file
9222 archives such as those generated by the tar and cpio programs on Unix.")
9223 (home-page "https://github.com/sharplispers/archive")
9224 (license license:bsd-3))))
9225
9226 (define-public cl-archive
9227 (sbcl-package->cl-source-package sbcl-archive))
9228
9229 (define-public ecl-archive
9230 (sbcl-package->ecl-package sbcl-archive))
9231
9232 (define-public sbcl-misc-extensions
9233 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
9234 (revision "1"))
9235 (package
9236 (name "sbcl-misc-extensions")
9237 (version (git-version "3.3" revision commit))
9238 (source
9239 (origin
9240 (method git-fetch)
9241 (uri (git-reference
9242 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
9243 (commit commit)))
9244 (file-name (git-file-name name version))
9245 (sha256
9246 (base32
9247 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
9248 (build-system asdf-build-system/sbcl)
9249 (synopsis "Collection of small macros and extensions for Common Lisp")
9250 (description
9251 "This project is intended as a catchall for small, general-purpose
9252 extensions to Common Lisp. It contains:
9253
9254 @itemize
9255 @item @code{new-let}, a macro that combines and generalizes @code{let},
9256 @code{let*} and @code{multiple-value-bind},
9257 @item @code{gmap}, an iteration macro that generalizes @code{map}.
9258 @end itemize\n")
9259 (home-page "https://common-lisp.net/project/misc-extensions/")
9260 (license license:public-domain))))
9261
9262 (define-public cl-misc-extensions
9263 (sbcl-package->cl-source-package sbcl-misc-extensions))
9264
9265 (define-public ecl-misc-extensions
9266 (sbcl-package->ecl-package sbcl-misc-extensions))
9267
9268 (define-public sbcl-mt19937
9269 (package
9270 (name "sbcl-mt19937")
9271 (version "1.1")
9272 (source
9273 (origin
9274 (method url-fetch)
9275 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
9276 "mt19937-latest.tar.gz"))
9277 (sha256
9278 (base32
9279 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
9280 (build-system asdf-build-system/sbcl)
9281 (synopsis "Mersenne Twister pseudo-random number generator")
9282 (description
9283 "MT19937 is a portable Mersenne Twister pseudo-random number generator
9284 for Common Lisp.")
9285 (home-page "https://www.cliki.net/mt19937")
9286 (license license:public-domain)))
9287
9288 (define-public cl-mt19937
9289 (sbcl-package->cl-source-package sbcl-mt19937))
9290
9291 (define-public ecl-mt19937
9292 (sbcl-package->ecl-package sbcl-mt19937))
9293
9294 (define-public sbcl-fset
9295 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
9296 (revision "1"))
9297 (package
9298 (name "sbcl-fset")
9299 (version (git-version "1.3.2" revision commit))
9300 (source
9301 (origin
9302 (method git-fetch)
9303 (uri (git-reference
9304 (url "https://github.com/slburson/fset")
9305 (commit commit)))
9306 (file-name (git-file-name name version))
9307 (sha256
9308 (base32
9309 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
9310 (snippet '(begin
9311 ;; Remove obsolete copy of system definition.
9312 (delete-file "Code/fset.asd")
9313 #t))))
9314 (build-system asdf-build-system/sbcl)
9315 (inputs
9316 `(("misc-extensions" ,sbcl-misc-extensions)
9317 ("mt19937" ,sbcl-mt19937)
9318 ("named-readtables" ,sbcl-named-readtables)))
9319 (synopsis "Functional set-theoretic collections library")
9320 (description
9321 "FSet is a functional set-theoretic collections library for Common Lisp.
9322 Functional means that all update operations return a new collection rather than
9323 modifying an existing one in place. Set-theoretic means that collections may
9324 be nested arbitrarily with no additional programmer effort; for instance, sets
9325 may contain sets, maps may be keyed by sets, etc.")
9326 (home-page "https://common-lisp.net/project/fset/Site/index.html")
9327 (license license:llgpl))))
9328
9329 (define-public cl-fset
9330 (sbcl-package->cl-source-package sbcl-fset))
9331
9332 (define-public sbcl-cl-cont
9333 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
9334 (revision "1"))
9335 (package
9336 (name "sbcl-cl-cont")
9337 (version (git-version "0.3.8" revision commit))
9338 (source
9339 (origin
9340 (method git-fetch)
9341 (uri (git-reference
9342 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
9343 (commit commit)))
9344 (file-name (git-file-name name version))
9345 (sha256
9346 (base32
9347 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
9348 (build-system asdf-build-system/sbcl)
9349 (inputs
9350 `(("alexandria" ,sbcl-alexandria)
9351 ("closer-mop" ,sbcl-closer-mop)))
9352 (native-inputs
9353 `(("rt" ,sbcl-rt)))
9354 (synopsis "Delimited continuations for Common Lisp")
9355 (description
9356 "This is a library that implements delimited continuations by
9357 transforming Common Lisp code to continuation passing style.")
9358 (home-page "https://common-lisp.net/project/cl-cont/")
9359 (license license:llgpl))))
9360
9361 (define-public cl-cont
9362 (sbcl-package->cl-source-package sbcl-cl-cont))
9363
9364 (define-public ecl-cl-cont
9365 (sbcl-package->ecl-package sbcl-cl-cont))
9366
9367 (define-public sbcl-cl-coroutine
9368 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
9369 (revision "1"))
9370 (package
9371 (name "sbcl-cl-coroutine")
9372 (version (git-version "0.1" revision commit))
9373 (source
9374 (origin
9375 (method git-fetch)
9376 (uri (git-reference
9377 (url "https://github.com/takagi/cl-coroutine.git")
9378 (commit commit)))
9379 (file-name (git-file-name name version))
9380 (sha256
9381 (base32
9382 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
9383 (build-system asdf-build-system/sbcl)
9384 (inputs
9385 `(("alexandria" ,sbcl-alexandria)
9386 ("cl-cont" ,sbcl-cl-cont)))
9387 (native-inputs
9388 `(("prove" ,sbcl-prove)))
9389 (arguments
9390 `(;; TODO: Fix the tests. They fail with:
9391 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
9392 #:tests? #f
9393 #:phases
9394 (modify-phases %standard-phases
9395 (add-after 'unpack 'fix-tests
9396 (lambda _
9397 (substitute* "cl-coroutine-test.asd"
9398 (("cl-test-more")
9399 "prove"))
9400 #t)))))
9401 (synopsis "Coroutine library for Common Lisp")
9402 (description
9403 "This is a coroutine library for Common Lisp implemented using the
9404 continuations of the @code{cl-cont} library.")
9405 (home-page "https://github.com/takagi/cl-coroutine")
9406 (license license:llgpl))))
9407
9408 (define-public cl-coroutine
9409 (sbcl-package->cl-source-package sbcl-cl-coroutine))
9410
9411 (define-public ecl-cl-coroutine
9412 (sbcl-package->ecl-package sbcl-cl-coroutine))
9413
9414 (define-public sbcl-vom
9415 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
9416 (revision "1"))
9417 (package
9418 (name "sbcl-vom")
9419 (version (git-version "0.1.4" revision commit))
9420 (source
9421 (origin
9422 (method git-fetch)
9423 (uri (git-reference
9424 (url "https://github.com/orthecreedence/vom.git")
9425 (commit commit)))
9426 (file-name (git-file-name name version))
9427 (sha256
9428 (base32
9429 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
9430 (build-system asdf-build-system/sbcl)
9431 (synopsis "Tiny logging utility for Common Lisp")
9432 (description
9433 "Vom is a logging library for Common Lisp. It's goal is to be useful
9434 and small. It does not provide a lot of features as other loggers do, but
9435 has a small codebase that's easy to understand and use.")
9436 (home-page "https://github.com/orthecreedence/vom")
9437 (license license:expat))))
9438
9439 (define-public cl-vom
9440 (sbcl-package->cl-source-package sbcl-vom))
9441
9442 (define-public ecl-vom
9443 (sbcl-package->ecl-package sbcl-vom))
9444
9445 (define-public sbcl-cl-libuv
9446 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
9447 (revision "1"))
9448 (package
9449 (name "sbcl-cl-libuv")
9450 (version (git-version "0.1.6" revision commit))
9451 (source
9452 (origin
9453 (method git-fetch)
9454 (uri (git-reference
9455 (url "https://github.com/orthecreedence/cl-libuv.git")
9456 (commit commit)))
9457 (file-name (git-file-name name version))
9458 (sha256
9459 (base32
9460 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
9461 (build-system asdf-build-system/sbcl)
9462 (inputs
9463 `(("alexandria" ,sbcl-alexandria)
9464 ("cffi" ,sbcl-cffi)
9465 ("cffi-grovel" ,sbcl-cffi-grovel)
9466 ("libuv" ,libuv)))
9467 (arguments
9468 `(#:phases
9469 (modify-phases %standard-phases
9470 (add-after 'unpack 'fix-paths
9471 (lambda* (#:key inputs #:allow-other-keys)
9472 (substitute* "lib.lisp"
9473 (("/usr/lib/libuv.so")
9474 (string-append (assoc-ref inputs "libuv")
9475 "/lib/libuv.so")))
9476 #t))
9477 (add-after 'fix-paths 'fix-system-definition
9478 (lambda _
9479 (substitute* "cl-libuv.asd"
9480 (("#:cffi #:alexandria")
9481 "#:cffi #:cffi-grovel #:alexandria"))
9482 #t)))))
9483 (synopsis "Common Lisp bindings to libuv")
9484 (description
9485 "This library provides low-level libuv bindings for Common Lisp.")
9486 (home-page "https://github.com/orthecreedence/cl-libuv")
9487 (license license:expat))))
9488
9489 (define-public cl-libuv
9490 (sbcl-package->cl-source-package sbcl-cl-libuv))
9491
9492 (define-public ecl-cl-libuv
9493 (sbcl-package->ecl-package sbcl-cl-libuv))
9494
9495 (define-public sbcl-cl-async-base
9496 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
9497 (revision "1"))
9498 (package
9499 (name "sbcl-cl-async-base")
9500 (version (git-version "0.6.1" revision commit))
9501 (source
9502 (origin
9503 (method git-fetch)
9504 (uri (git-reference
9505 (url "https://github.com/orthecreedence/cl-async.git")
9506 (commit commit)))
9507 (file-name (git-file-name name version))
9508 (sha256
9509 (base32
9510 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
9511 (build-system asdf-build-system/sbcl)
9512 (inputs
9513 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9514 ("cffi" ,sbcl-cffi)
9515 ("cl-libuv" ,sbcl-cl-libuv)))
9516 (arguments
9517 `(#:asd-file "cl-async.asd"))
9518 (synopsis "Base system for cl-async")
9519 (description
9520 "Cl-async is a library for general purpose, non-blocking programming in
9521 Common Lisp. It uses the libuv library as backend.")
9522 (home-page "https://orthecreedence.github.io/cl-async/")
9523 (license license:expat))))
9524
9525 (define-public cl-async-base
9526 (sbcl-package->cl-source-package sbcl-cl-async-base))
9527
9528 (define-public ecl-cl-async-base
9529 (sbcl-package->ecl-package sbcl-cl-async-base))
9530
9531 (define-public sbcl-cl-async-util
9532 (package
9533 (inherit sbcl-cl-async-base)
9534 (name "sbcl-cl-async-util")
9535 (inputs
9536 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9537 ("cffi" ,sbcl-cffi)
9538 ("cl-async-base" ,sbcl-cl-async-base)
9539 ("cl-libuv" ,sbcl-cl-libuv)
9540 ("cl-ppcre" ,sbcl-cl-ppcre)
9541 ("fast-io" ,sbcl-fast-io)
9542 ("vom" ,sbcl-vom)))
9543 (synopsis "Internal utilities for cl-async")))
9544
9545 (define-public cl-async-util
9546 (sbcl-package->cl-source-package sbcl-cl-async-util))
9547
9548 (define-public ecl-cl-async-util
9549 (sbcl-package->ecl-package sbcl-cl-async-util))
9550
9551 (define-public sbcl-cl-async
9552 (package
9553 (inherit sbcl-cl-async-base)
9554 (name "sbcl-cl-async")
9555 (inputs
9556 `(("babel" ,sbcl-babel)
9557 ("cffi" ,sbcl-cffi)
9558 ("cl-async-base" ,sbcl-cl-async-base)
9559 ("cl-async-util" ,sbcl-cl-async-util)
9560 ("cl-libuv" ,sbcl-cl-libuv)
9561 ("cl-ppcre" ,sbcl-cl-ppcre)
9562 ("static-vectors" ,sbcl-static-vectors)
9563 ("trivial-features" ,sbcl-trivial-features)
9564 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9565 (synopsis "Asynchronous operations for Common Lisp")))
9566
9567 (define-public cl-async
9568 (sbcl-package->cl-source-package sbcl-cl-async))
9569
9570 (define-public ecl-cl-async
9571 (sbcl-package->ecl-package sbcl-cl-async))
9572
9573 (define-public sbcl-cl-async-repl
9574 (package
9575 (inherit sbcl-cl-async-base)
9576 (name "sbcl-cl-async-repl")
9577 (inputs
9578 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9579 ("cl-async" ,sbcl-cl-async)))
9580 (arguments
9581 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9582 ((#:asd-file _ "") "cl-async-repl.asd")))
9583 (synopsis "REPL integration for cl-async")))
9584
9585 (define-public cl-async-repl
9586 (sbcl-package->cl-source-package sbcl-cl-async-repl))
9587
9588 (define-public ecl-cl-async-repl
9589 (sbcl-package->ecl-package sbcl-cl-async-repl))
9590
9591 (define-public sbcl-cl-async-ssl
9592 (package
9593 (inherit sbcl-cl-async-base)
9594 (name "sbcl-cl-async-ssl")
9595 (inputs
9596 `(("cffi" ,sbcl-cffi)
9597 ("cl-async" ,sbcl-cl-async)
9598 ("openssl" ,openssl)
9599 ("vom" ,sbcl-vom)))
9600 (arguments
9601 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9602 ((#:asd-file _ "") "cl-async-ssl.asd")
9603 ((#:phases phases '%standard-phases)
9604 `(modify-phases ,phases
9605 (add-after 'unpack 'fix-paths
9606 (lambda* (#:key inputs #:allow-other-keys)
9607 (substitute* "src/ssl/package.lisp"
9608 (("libcrypto\\.so")
9609 (string-append (assoc-ref inputs "openssl")
9610 "/lib/libcrypto.so"))
9611 (("libssl\\.so")
9612 (string-append (assoc-ref inputs "openssl")
9613 "/lib/libssl.so")))
9614 #t))))))
9615 (synopsis "SSL wrapper around cl-async socket implementation")))
9616
9617 (define-public cl-async-ssl
9618 (sbcl-package->cl-source-package sbcl-cl-async-ssl))
9619
9620 (define-public ecl-cl-async-ssl
9621 (sbcl-package->ecl-package sbcl-cl-async-ssl))
9622
9623 (define-public sbcl-blackbird
9624 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
9625 (revision "1"))
9626 (package
9627 (name "sbcl-blackbird")
9628 (version (git-version "0.5.2" revision commit))
9629 (source
9630 (origin
9631 (method git-fetch)
9632 (uri (git-reference
9633 (url "https://github.com/orthecreedence/blackbird.git")
9634 (commit commit)))
9635 (file-name (git-file-name name version))
9636 (sha256
9637 (base32
9638 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
9639 (build-system asdf-build-system/sbcl)
9640 (inputs
9641 `(("vom" ,sbcl-vom)))
9642 (native-inputs
9643 `(("cl-async" ,sbcl-cl-async)
9644 ("fiveam" ,sbcl-fiveam)))
9645 (synopsis "Promise implementation for Common Lisp")
9646 (description
9647 "This is a standalone promise implementation for Common Lisp. It is
9648 the successor to the now-deprecated cl-async-future project.")
9649 (home-page "https://orthecreedence.github.io/blackbird/")
9650 (license license:expat))))
9651
9652 (define-public cl-blackbird
9653 (sbcl-package->cl-source-package sbcl-blackbird))
9654
9655 (define-public ecl-blackbird
9656 (sbcl-package->ecl-package sbcl-blackbird))
9657
9658 (define-public sbcl-cl-async-future
9659 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
9660 (revision "1"))
9661 (package
9662 (name "sbcl-cl-async-future")
9663 (version (git-version "0.4.4.1" revision commit))
9664 (source
9665 (origin
9666 (method git-fetch)
9667 (uri (git-reference
9668 (url "https://github.com/orthecreedence/cl-async-future.git")
9669 (commit commit)))
9670 (file-name (git-file-name name version))
9671 (sha256
9672 (base32
9673 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
9674 (build-system asdf-build-system/sbcl)
9675 (inputs
9676 `(("blackbird" ,sbcl-blackbird)))
9677 (native-inputs
9678 `(("cl-async" ,sbcl-cl-async)
9679 ("eos" ,sbcl-eos)))
9680 (synopsis "Futures implementation for Common Lisp")
9681 (description
9682 "This is futures implementation for Common Lisp. It plugs in nicely
9683 to cl-async.")
9684 (home-page "https://orthecreedence.github.io/cl-async/future")
9685 (license license:expat))))
9686
9687 (define-public cl-async-future
9688 (sbcl-package->cl-source-package sbcl-cl-async-future))
9689
9690 (define-public ecl-cl-async-future
9691 (sbcl-package->ecl-package sbcl-cl-async-future))
9692
9693 (define-public sbcl-green-threads
9694 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
9695 (revision "1"))
9696 (package
9697 (name "sbcl-green-threads")
9698 (version (git-version "0.3" revision commit))
9699 (source
9700 (origin
9701 (method git-fetch)
9702 (uri (git-reference
9703 (url "https://github.com/thezerobit/green-threads.git")
9704 (commit commit)))
9705 (file-name (git-file-name name version))
9706 (sha256
9707 (base32
9708 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
9709 (build-system asdf-build-system/sbcl)
9710 (inputs
9711 `(("cl-async-future" ,sbcl-cl-async-future)
9712 ("cl-cont" ,sbcl-cl-cont)))
9713 (native-inputs
9714 `(("prove" ,sbcl-prove)))
9715 (arguments
9716 `(;; TODO: Fix the tests. They fail with:
9717 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
9718 #:tests? #f
9719 #:phases
9720 (modify-phases %standard-phases
9721 (add-after 'unpack 'fix-tests
9722 (lambda _
9723 (substitute* "green-threads-test.asd"
9724 (("cl-test-more")
9725 "prove"))
9726 #t)))))
9727 (synopsis "Cooperative multitasking library for Common Lisp")
9728 (description
9729 "This library allows for cooperative multitasking with help of cl-cont
9730 for continuations. It tries to mimic the API of bordeaux-threads as much as
9731 possible.")
9732 (home-page "https://github.com/thezerobit/green-threads")
9733 (license license:bsd-3))))
9734
9735 (define-public cl-green-threads
9736 (sbcl-package->cl-source-package sbcl-green-threads))
9737
9738 (define-public ecl-green-threads
9739 (sbcl-package->ecl-package sbcl-green-threads))
9740
9741 (define-public sbcl-cl-base32
9742 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
9743 (revision "1"))
9744 (package
9745 (name "sbcl-cl-base32")
9746 (version (git-version "0.1" revision commit))
9747 (source
9748 (origin
9749 (method git-fetch)
9750 (uri (git-reference
9751 (url "https://github.com/hargettp/cl-base32.git")
9752 (commit commit)))
9753 (file-name (git-file-name name version))
9754 (sha256
9755 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
9756 (build-system asdf-build-system/sbcl)
9757 (native-inputs
9758 `(("lisp-unit" ,sbcl-lisp-unit)))
9759 (synopsis "Common Lisp library for base32 encoding and decoding")
9760 (description
9761 "This package provides functions for base32 encoding and decoding as
9762 defined in RFC4648.")
9763 (home-page "https://github.com/hargettp/cl-base32")
9764 (license license:expat))))
9765
9766 (define-public cl-base32
9767 (sbcl-package->cl-source-package sbcl-cl-base32))
9768
9769 (define-public ecl-cl-base32
9770 (sbcl-package->ecl-package sbcl-cl-base32))
9771
9772 (define-public sbcl-cl-z85
9773 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
9774 (revision "1"))
9775 (package
9776 (name "sbcl-cl-z85")
9777 (version (git-version "1.0" revision commit))
9778 (source
9779 (origin
9780 (method git-fetch)
9781 (uri (git-reference
9782 (url "https://github.com/glv2/cl-z85.git")
9783 (commit commit)))
9784 (file-name (git-file-name name version))
9785 (sha256
9786 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
9787 (build-system asdf-build-system/sbcl)
9788 (native-inputs
9789 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
9790 ("fiveam" ,sbcl-fiveam)))
9791 (synopsis "Common Lisp library for Z85 encoding and decoding")
9792 (description
9793 "This package provides functions to encode or decode byte vectors or
9794 byte streams using the Z85 format, which is a base-85 encoding used by
9795 ZeroMQ.")
9796 (home-page "https://github.com/glv2/cl-z85")
9797 (license license:gpl3+))))
9798
9799 (define-public cl-z85
9800 (sbcl-package->cl-source-package sbcl-cl-z85))
9801
9802 (define-public ecl-cl-z85
9803 (sbcl-package->ecl-package sbcl-cl-z85))
9804
9805 (define-public sbcl-ltk
9806 (package
9807 (name "sbcl-ltk")
9808 (version "0.992")
9809 (source
9810 (origin
9811 (method git-fetch)
9812 (uri (git-reference
9813 (url "https://github.com/herth/ltk.git")
9814 (commit version)))
9815 (file-name (git-file-name name version))
9816 (sha256
9817 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
9818 (build-system asdf-build-system/sbcl)
9819 (inputs
9820 `(("imagemagick" ,imagemagick)
9821 ("tk" ,tk)))
9822 (arguments
9823 `(#:asd-file "ltk/ltk.asd"
9824 #:tests? #f
9825 #:phases (modify-phases %standard-phases
9826 (add-after 'unpack 'fix-paths
9827 (lambda* (#:key inputs #:allow-other-keys)
9828 (substitute* "ltk/ltk.lisp"
9829 (("#-freebsd \"wish\"")
9830 (string-append "#-freebsd \""
9831 (assoc-ref inputs "tk")
9832 "/bin/wish\""))
9833 (("do-execute \"convert\"")
9834 (string-append "do-execute \""
9835 (assoc-ref inputs "imagemagick")
9836 "/bin/convert\"")))
9837 #t)))))
9838 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9839 (description
9840 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
9841 in pure Common Lisp and does not require any Tk knowledge for its usage.")
9842 (home-page "http://www.peter-herth.de/ltk/")
9843 (license license:llgpl)))
9844
9845 (define-public cl-ltk
9846 (sbcl-package->cl-source-package sbcl-ltk))
9847
9848 (define-public ecl-ltk
9849 (sbcl-package->ecl-package sbcl-ltk))
9850
9851 (define-public sbcl-ltk-mw
9852 (package
9853 (inherit sbcl-ltk)
9854 (name "sbcl-ltk-mw")
9855 (inputs
9856 `(("ltk" ,sbcl-ltk)))
9857 (arguments
9858 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9859 ((#:asd-file _) "ltk/ltk-mw.asd")
9860 ((#:phases _) '%standard-phases)))
9861 (synopsis "Extra widgets for LTK")
9862 (description
9863 "This is a collection of higher-level widgets built on top of LTK.")))
9864
9865 (define-public cl-ltk-mw
9866 (sbcl-package->cl-source-package sbcl-ltk-mw))
9867
9868 (define-public ecl-ltk-mw
9869 (sbcl-package->ecl-package sbcl-ltk-mw))
9870
9871 (define-public sbcl-ltk-remote
9872 (package
9873 (inherit sbcl-ltk)
9874 (name "sbcl-ltk-remote")
9875 (inputs
9876 `(("ltk" ,sbcl-ltk)))
9877 (arguments
9878 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9879 ((#:asd-file _) "ltk/ltk-remote.asd")
9880 ((#:phases _) '%standard-phases)))
9881 (synopsis "Remote GUI support for LTK")
9882 (description
9883 "This LTK extension allows the GUI to be displayed on a computer different
9884 from the one running the Lisp program by using a TCP connection.")))
9885
9886 (define-public cl-ltk-remote
9887 (sbcl-package->cl-source-package sbcl-ltk-remote))
9888
9889 (define-public sbcl-cl-lex
9890 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
9891 (revision "1"))
9892 (package
9893 (name "sbcl-cl-lex")
9894 (version (git-version "1.1.3" revision commit))
9895 (source
9896 (origin
9897 (method git-fetch)
9898 (uri (git-reference
9899 (url "https://github.com/djr7C4/cl-lex.git")
9900 (commit commit)))
9901 (file-name (git-file-name name version))
9902 (sha256
9903 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
9904 (build-system asdf-build-system/sbcl)
9905 (inputs
9906 `(("cl-ppcre" ,sbcl-cl-ppcre)))
9907 (synopsis "Common Lisp macros for generating lexical analyzers")
9908 (description
9909 "This is a Common Lisp library providing a set of macros for generating
9910 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
9911 be used with @code{cl-yacc}.")
9912 (home-page "https://github.com/djr7C4/cl-lex")
9913 (license license:gpl3))))
9914
9915 (define-public cl-lex
9916 (sbcl-package->cl-source-package sbcl-cl-lex))
9917
9918 (define-public ecl-cl-lex
9919 (sbcl-package->ecl-package sbcl-cl-lex))
9920
9921 (define-public sbcl-clunit2
9922 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
9923 (revision "1"))
9924 (package
9925 (name "sbcl-clunit2")
9926 (version (git-version "0.2.4" revision commit))
9927 (source
9928 (origin
9929 (method git-fetch)
9930 (uri (git-reference
9931 (url "https://notabug.org/cage/clunit2.git")
9932 (commit commit)))
9933 (file-name (git-file-name name version))
9934 (sha256
9935 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
9936 (build-system asdf-build-system/sbcl)
9937 (synopsis "Unit testing framework for Common Lisp")
9938 (description
9939 "CLUnit is a Common Lisp unit testing framework. It is designed to be
9940 easy to use so that you can quickly start testing.")
9941 (home-page "https://notabug.org/cage/clunit2")
9942 (license license:expat))))
9943
9944 (define-public cl-clunit2
9945 (sbcl-package->cl-source-package sbcl-clunit2))
9946
9947 (define-public ecl-clunit2
9948 (sbcl-package->ecl-package sbcl-clunit2))
9949
9950 (define-public sbcl-cl-colors2
9951 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
9952 (revision "1"))
9953 (package
9954 (name "sbcl-cl-colors2")
9955 (version (git-version "0.2.1" revision commit))
9956 (source
9957 (origin
9958 (method git-fetch)
9959 (uri (git-reference
9960 (url "https://notabug.org/cage/cl-colors2.git")
9961 (commit commit)))
9962 (file-name (git-file-name name version))
9963 (sha256
9964 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
9965 (build-system asdf-build-system/sbcl)
9966 (native-inputs
9967 `(("clunit2" ,sbcl-clunit2)))
9968 (inputs
9969 `(("alexandria" ,sbcl-alexandria)
9970 ("cl-ppcre" ,sbcl-cl-ppcre)))
9971 (synopsis "Color library for Common Lisp")
9972 (description
9973 "This is a very simple color library for Common Lisp, providing:
9974
9975 @itemize
9976 @item Types for representing colors in HSV and RGB spaces.
9977 @item Simple conversion functions between the above types (and also
9978 hexadecimal representation for RGB).
9979 @item Some predefined colors (currently X11 color names -- of course
9980 the library does not depend on X11).
9981 @end itemize\n")
9982 (home-page "https://notabug.org/cage/cl-colors2")
9983 (license license:boost1.0))))
9984
9985 (define-public cl-colors2
9986 (sbcl-package->cl-source-package sbcl-cl-colors2))
9987
9988 (define-public ecl-cl-colors2
9989 (sbcl-package->ecl-package sbcl-cl-colors2))
9990
9991 (define-public sbcl-cl-jpeg
9992 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
9993 (revision "1"))
9994 (package
9995 (name "sbcl-cl-jpeg")
9996 (version (git-version "2.8" revision commit))
9997 (source
9998 (origin
9999 (method git-fetch)
10000 (uri (git-reference
10001 (url "https://github.com/sharplispers/cl-jpeg.git")
10002 (commit commit)))
10003 (file-name (git-file-name name version))
10004 (sha256
10005 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
10006 (build-system asdf-build-system/sbcl)
10007 (synopsis "JPEG image library for Common Lisp")
10008 (description
10009 "This is a baseline JPEG codec written in Common Lisp. It can be used
10010 for reading and writing JPEG image files.")
10011 (home-page "https://github.com/sharplispers/cl-jpeg")
10012 (license license:bsd-3))))
10013
10014 (define-public cl-jpeg
10015 (sbcl-package->cl-source-package sbcl-cl-jpeg))
10016
10017 (define-public ecl-cl-jpeg
10018 (sbcl-package->ecl-package sbcl-cl-jpeg))
10019
10020 (define-public sbcl-nodgui
10021 (let ((commit "bc59ed9b787dfc9e68ae3bd7f7e8507c5c619212")
10022 (revision "1"))
10023 (package
10024 (name "sbcl-nodgui")
10025 (version (git-version "0.0.5" revision commit))
10026 (source
10027 (origin
10028 (method git-fetch)
10029 (uri (git-reference
10030 (url "https://notabug.org/cage/nodgui.git")
10031 (commit commit)))
10032 (file-name (git-file-name name version))
10033 (sha256
10034 (base32 "0xx0dk54d882i598ydnwmy7mnfk0b7vib3ddsgpqxhjck1rwq8l8"))))
10035 (build-system asdf-build-system/sbcl)
10036 (inputs
10037 `(("alexandria" ,sbcl-alexandria)
10038 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10039 ("cl-colors2" ,sbcl-cl-colors2)
10040 ("cl-jpeg" ,sbcl-cl-jpeg)
10041 ("cl-lex" ,sbcl-cl-lex)
10042 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
10043 ("cl-unicode" ,sbcl-cl-unicode)
10044 ("cl-yacc" ,sbcl-cl-yacc)
10045 ("clunit2" ,sbcl-clunit2)
10046 ("named-readtables" ,sbcl-named-readtables)
10047 ("parse-number" ,sbcl-parse-number)
10048 ("tk" ,tk)))
10049 (arguments
10050 `(#:phases (modify-phases %standard-phases
10051 (add-after 'unpack 'fix-paths
10052 (lambda* (#:key inputs #:allow-other-keys)
10053 (substitute* "src/wish-communication.lisp"
10054 (("#-freebsd \"wish\"")
10055 (string-append "#-freebsd \""
10056 (assoc-ref inputs "tk")
10057 "/bin/wish\"")))
10058 #t)))))
10059 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
10060 (description
10061 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
10062 toolkit. It also provides a few additional widgets more than the standard Tk
10063 ones.")
10064 (home-page "https://www.autistici.org/interzona/nodgui.html")
10065 (license license:llgpl))))
10066
10067 (define-public cl-nodgui
10068 (sbcl-package->cl-source-package sbcl-nodgui))
10069
10070 (define-public ecl-nodgui
10071 (sbcl-package->ecl-package sbcl-nodgui))
10072
10073 (define-public sbcl-salza2
10074 (package
10075 (name "sbcl-salza2")
10076 (version "2.0.9")
10077 (source
10078 (origin
10079 (method git-fetch)
10080 (uri (git-reference
10081 (url "https://github.com/xach/salza2.git")
10082 (commit (string-append "release-" version))))
10083 (file-name (git-file-name name version))
10084 (sha256
10085 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
10086 (build-system asdf-build-system/sbcl)
10087 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
10088 (description
10089 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
10090 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
10091 respectively.")
10092 (home-page "https://www.xach.com/lisp/salza2/")
10093 (license license:bsd-2)))
10094
10095 (define-public cl-salza2
10096 (sbcl-package->cl-source-package sbcl-salza2))
10097
10098 (define-public ecl-salza2
10099 (sbcl-package->ecl-package sbcl-salza2))
10100
10101 (define-public sbcl-png-read
10102 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
10103 (revision "1"))
10104 (package
10105 (name "sbcl-png-read")
10106 (version (git-version "0.3.1" revision commit))
10107 (source
10108 (origin
10109 (method git-fetch)
10110 (uri (git-reference
10111 (url "https://github.com/Ramarren/png-read.git")
10112 (commit commit)))
10113 (file-name (git-file-name name version))
10114 (sha256
10115 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
10116 (build-system asdf-build-system/sbcl)
10117 (inputs
10118 `(("babel" ,sbcl-babel)
10119 ("chipz" ,sbcl-chipz)
10120 ("iterate" ,sbcl-iterate)))
10121 (synopsis "PNG decoder for Common Lisp")
10122 (description "This is a Common Lisp library for reading PNG images.")
10123 (home-page "https://github.com/Ramarren/png-read")
10124 (license license:bsd-3))))
10125
10126 (define-public cl-png-read
10127 (sbcl-package->cl-source-package sbcl-png-read))
10128
10129 (define-public ecl-png-read
10130 (sbcl-package->ecl-package sbcl-png-read))
10131
10132 (define-public sbcl-zpng
10133 (package
10134 (name "sbcl-zpng")
10135 (version "1.2.2")
10136 (source
10137 (origin
10138 (method git-fetch)
10139 (uri (git-reference
10140 (url "https://github.com/xach/zpng.git")
10141 (commit (string-append "release-" version))))
10142 (file-name (git-file-name name version))
10143 (sha256
10144 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
10145 (build-system asdf-build-system/sbcl)
10146 (inputs
10147 `(("salza2" ,sbcl-salza2)))
10148 (synopsis "PNG encoder for Common Lisp")
10149 (description "This is a Common Lisp library for creating PNG images.")
10150 (home-page "https://www.xach.com/lisp/zpng/")
10151 (license license:bsd-2)))
10152
10153 (define-public cl-zpng
10154 (sbcl-package->cl-source-package sbcl-zpng))
10155
10156 (define-public ecl-zpng
10157 (sbcl-package->ecl-package sbcl-zpng))
10158
10159 (define-public sbcl-cl-qrencode
10160 (package
10161 (name "sbcl-cl-qrencode")
10162 (version "0.1.2")
10163 (source
10164 (origin
10165 (method git-fetch)
10166 (uri (git-reference
10167 (url "https://github.com/jnjcc/cl-qrencode.git")
10168 (commit (string-append "v" version))))
10169 (file-name (git-file-name name version))
10170 (sha256
10171 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
10172 (build-system asdf-build-system/sbcl)
10173 (native-inputs
10174 `(("lisp-unit" ,sbcl-lisp-unit)))
10175 (inputs
10176 `(("zpng" ,sbcl-zpng)))
10177 (synopsis "QR code encoder for Common Lisp")
10178 (description
10179 "This Common Lisp library provides function to make QR codes and to save
10180 them as PNG files.")
10181 (home-page "https://github.com/jnjcc/cl-qrencode")
10182 (license license:gpl2+)))
10183
10184 (define-public cl-qrencode
10185 (sbcl-package->cl-source-package sbcl-cl-qrencode))
10186
10187 (define-public ecl-cl-qrencode
10188 (sbcl-package->ecl-package sbcl-cl-qrencode))
10189
10190 (define-public sbcl-hdf5-cffi
10191 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
10192 (revision "1"))
10193 (package
10194 (name "sbcl-hdf5-cffi")
10195 (version (git-version "1.8.18" revision commit))
10196 (source
10197 (origin
10198 (method git-fetch)
10199 (uri (git-reference
10200 (url "https://github.com/hdfgroup/hdf5-cffi.git")
10201 (commit commit)))
10202 (file-name (git-file-name name version))
10203 (sha256
10204 (base32
10205 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
10206 (build-system asdf-build-system/sbcl)
10207 (synopsis "Common Lisp bindings for the HDF5 library")
10208 (description
10209 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
10210 (home-page "https://github.com/hdfgroup/hdf5-cffi")
10211 (license (license:non-copyleft
10212 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
10213 commit
10214 "/LICENSE")))
10215 (inputs
10216 `(("cffi" ,sbcl-cffi)
10217 ("cffi-grovel" ,sbcl-cffi-grovel)
10218 ("hdf5" ,hdf5-1.10)))
10219 (native-inputs
10220 `(("fiveam" ,sbcl-fiveam)))
10221 (arguments
10222 `(#:asd-system-name "hdf5-cffi"
10223 #:asd-file "hdf5-cffi.asd"
10224 #:test-asd-file "hdf5-cffi.test.asd"
10225 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
10226 ;; I don't know if there is a way to tell asdf-build-system to load
10227 ;; an additional system first, so tests are disabled.
10228 #:tests? #f
10229 #:phases
10230 (modify-phases %standard-phases
10231 (add-after 'unpack 'fix-paths
10232 (lambda* (#:key inputs #:allow-other-keys)
10233 (substitute* "src/library.lisp"
10234 (("libhdf5.so")
10235 (string-append
10236 (assoc-ref inputs "hdf5")
10237 "/lib/libhdf5.so")))))
10238 (add-after 'unpack 'fix-dependencies
10239 (lambda* (#:key inputs #:allow-other-keys)
10240 (substitute* "hdf5-cffi.asd"
10241 ((":depends-on \\(:cffi\\)")
10242 ":depends-on (:cffi :cffi-grovel)"))
10243 (substitute* "hdf5-cffi.test.asd"
10244 ((":depends-on \\(:cffi :hdf5-cffi")
10245 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
10246
10247 (define-public cl-hdf5-cffi
10248 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
10249
10250 (define-public ecl-hdf5-cffi
10251 (sbcl-package->ecl-package sbcl-hdf5-cffi))
10252
10253 (define-public sbcl-cl-randist
10254 (package
10255 (name "sbcl-cl-randist")
10256 (version "0.4.2")
10257 (source
10258 (origin
10259 (method git-fetch)
10260 (uri (git-reference
10261 (url "https://github.com/lvaruzza/cl-randist.git")
10262 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
10263 (file-name (git-file-name name version))
10264 (sha256
10265 (base32
10266 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
10267 (build-system asdf-build-system/sbcl)
10268 (synopsis "Random distributions for Common Lisp")
10269 (description
10270 "Manual translation from C to Common Lisp of some random number
10271 generation functions from the GSL library.")
10272 (home-page "https://github.com/lvaruzza/cl-randist")
10273 (license license:bsd-2)
10274 (arguments
10275 `(#:asd-system-name "cl-randist"
10276 #:asd-file "cl-randist.asd"
10277 #:tests? #f))))
10278
10279 (define-public cl-randist
10280 (sbcl-package->cl-source-package sbcl-cl-randist))
10281
10282 (define-public ecl-cl-randist
10283 (sbcl-package->ecl-package sbcl-cl-randist))
10284
10285 (define-public sbcl-float-features
10286 (package
10287 (name "sbcl-float-features")
10288 (version "1.0.0")
10289 (source
10290 (origin
10291 (method git-fetch)
10292 (uri (git-reference
10293 (url "https://github.com/Shinmera/float-features.git")
10294 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
10295 (file-name (git-file-name name version))
10296 (sha256
10297 (base32
10298 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
10299 (build-system asdf-build-system/sbcl)
10300 (synopsis "Common Lisp IEEE float portability library")
10301 (description
10302 "Portability library for IEEE float features that are not
10303 covered by the Common Lisp standard.")
10304 (home-page "https://github.com/Shinmera/float-features")
10305 (license license:zlib)
10306 (inputs
10307 `(("documentation-utils" ,sbcl-documentation-utils)))
10308 (arguments
10309 `(#:asd-system-name "float-features"
10310 #:asd-file "float-features.asd"
10311 #:tests? #f))))
10312
10313 (define-public cl-float-features
10314 (sbcl-package->cl-source-package sbcl-float-features))
10315
10316 (define-public ecl-float-features
10317 (sbcl-package->ecl-package sbcl-float-features))
10318
10319 (define-public sbcl-function-cache
10320 (package
10321 (name "sbcl-function-cache")
10322 (version "1.0.3")
10323 (source
10324 (origin
10325 (method git-fetch)
10326 (uri (git-reference
10327 (url "https://github.com/AccelerationNet/function-cache.git")
10328 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
10329 (file-name (git-file-name name version))
10330 (sha256
10331 (base32
10332 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
10333 (build-system asdf-build-system/sbcl)
10334 (synopsis "Function caching / memoization library for Common Lisp")
10335 (description
10336 "A common lisp library that provides extensible function result
10337 caching based on arguments (an expanded form of memoization).")
10338 (home-page "https://github.com/AccelerationNet/function-cache")
10339 (license
10340 (license:non-copyleft
10341 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
10342 (inputs
10343 `(("alexandria" ,sbcl-alexandria)
10344 ("cl-interpol" ,sbcl-cl-interpol)
10345 ("iterate" ,sbcl-iterate)
10346 ("symbol-munger" ,sbcl-symbol-munger)
10347 ("closer-mop" ,sbcl-closer-mop)))
10348 (arguments
10349 `(#:asd-system-name "function-cache"
10350 #:asd-file "function-cache.asd"
10351 #:tests? #f))))
10352
10353 (define-public cl-function-cache
10354 (sbcl-package->cl-source-package sbcl-function-cache))
10355
10356 (define-public ecl-function-cache
10357 (sbcl-package->ecl-package sbcl-function-cache))
10358
10359 (define-public sbcl-type-r
10360 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
10361 (revision "1"))
10362 (package
10363 (name "sbcl-type-r")
10364 (version (git-version "0.0.0" revision commit))
10365 (source
10366 (origin
10367 (method git-fetch)
10368 (uri (git-reference
10369 (url "https://github.com/guicho271828/type-r.git")
10370 (commit commit)))
10371 (file-name (git-file-name name version))
10372 (sha256
10373 (base32
10374 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
10375 (build-system asdf-build-system/sbcl)
10376 (synopsis "Parser interface for Common Lisp built-in compound types")
10377 (description
10378 "Collections of accessor functions and patterns to access
10379 the elements in compound type specifier, e.g. @code{dimensions} in
10380 @code{(array element-type dimensions)}")
10381 (home-page "https://github.com/guicho271828/type-r")
10382 (license license:lgpl3+)
10383 (inputs
10384 `(("trivia" ,sbcl-trivia)
10385 ("alexandria" ,sbcl-alexandria)))
10386 (native-inputs
10387 `(("fiveam" ,sbcl-fiveam)))
10388 (arguments
10389 `(#:asd-system-name "type-r"
10390 #:asd-file "type-r.asd"
10391 #:test-asd-file "type-r.test.asd")))))
10392
10393 (define-public cl-type-r
10394 (sbcl-package->cl-source-package sbcl-type-r))
10395
10396 (define-public sbcl-trivialib-type-unify
10397 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
10398 (revision "1"))
10399 (package
10400 (name "sbcl-trivialib-type-unify")
10401 (version (git-version "0.1" revision commit))
10402 (source
10403 (origin
10404 (method git-fetch)
10405 (uri (git-reference
10406 (url "https://github.com/guicho271828/trivialib.type-unify.git")
10407 (commit commit)))
10408 (file-name (git-file-name name version))
10409 (sha256
10410 (base32
10411 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
10412 (build-system asdf-build-system/sbcl)
10413 (synopsis "Common Lisp type unification")
10414 (description
10415 "Unifies a parametrized type specifier against an actual type specifier.
10416 Importantly, it handles complicated array-subtypes and number-related types
10417 correctly.")
10418 (home-page "https://github.com/guicho271828/trivialib.type-unify")
10419 (license license:lgpl3+)
10420 (inputs
10421 `(("alexandria" ,sbcl-alexandria)
10422 ("trivia" ,sbcl-trivia)
10423 ("introspect-environment" ,sbcl-introspect-environment)
10424 ("type-r" ,sbcl-type-r)))
10425 (native-inputs
10426 `(("fiveam" ,sbcl-fiveam)))
10427 (arguments
10428 `(#:asd-system-name "trivialib.type-unify"
10429 #:asd-file "trivialib.type-unify.asd"
10430 #:test-asd-file "trivialib.type-unify.test.asd")))))
10431
10432 (define-public cl-trivialib-type-unify
10433 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
10434
10435 (define-public sbcl-specialized-function
10436 (let ((commit "b96b6afaf8358bf91cc0703e62a5a4ee20d2b7bc")
10437 (revision "1"))
10438 (package
10439 (name "sbcl-specialized-function")
10440 (version (git-version "0.0.0" revision commit))
10441 (source
10442 (origin
10443 (method git-fetch)
10444 (uri (git-reference
10445 (url "https://github.com/numcl/specialized-function.git")
10446 (commit commit)))
10447 (file-name (git-file-name name version))
10448 (sha256
10449 (base32
10450 "12j45ff0n26578vmfbhb9mfbdchw4wy023k0m2ppgl9s0z4bhjaj"))))
10451 (build-system asdf-build-system/sbcl)
10452 (synopsis "Julia-like dispatch for Common Lisp")
10453 (description
10454 "This library is part of NUMCL. It provides a macro
10455 @code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
10456 lazily compiling a type-specific version of the function from the same
10457 code. The main target of this macro is speed.")
10458 (home-page "https://github.com/numcl/specialized-function")
10459 (license license:lgpl3+)
10460 (inputs
10461 `(("trivia" ,sbcl-trivia)
10462 ("alexandria" ,sbcl-alexandria)
10463 ("iterate" ,sbcl-iterate)
10464 ("lisp-namespace" ,sbcl-lisp-namespace)
10465 ("type-r" ,sbcl-type-r)
10466 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
10467 (native-inputs
10468 `(("fiveam" ,sbcl-fiveam)))
10469 (arguments
10470 `(#:asd-system-name "specialized-function"
10471 #:asd-file "specialized-function.asd"
10472 #:test-asd-file "specialized-function.test.asd")))))
10473
10474 (define-public cl-specialized-function
10475 (sbcl-package->cl-source-package sbcl-specialized-function))
10476
10477 (define-public sbcl-constantfold
10478 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
10479 (revision "1"))
10480 (package
10481 (name "sbcl-constantfold")
10482 (version (git-version "0.1" revision commit))
10483 (source
10484 (origin
10485 (method git-fetch)
10486 (uri (git-reference
10487 (url "https://github.com/numcl/constantfold.git")
10488 (commit commit)))
10489 (file-name (git-file-name name version))
10490 (sha256
10491 (base32
10492 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
10493 (build-system asdf-build-system/sbcl)
10494 (synopsis "Support library for numcl")
10495 (description
10496 "Support library for numcl. Registers a function as an
10497 additional form that is considered as a candidate for a constant.")
10498 (home-page "https://github.com/numcl/constantfold")
10499 (license license:lgpl3+)
10500 (inputs
10501 `(("trivia" ,sbcl-trivia)
10502 ("alexandria" ,sbcl-alexandria)
10503 ("iterate" ,sbcl-iterate)
10504 ("lisp-namespace" ,sbcl-lisp-namespace)))
10505 (native-inputs
10506 `(("fiveam" ,sbcl-fiveam)))
10507 (arguments
10508 `(#:asd-system-name "constantfold"
10509 #:asd-file "constantfold.asd"
10510 #:test-asd-file "constantfold.test.asd")))))
10511
10512 (define-public cl-constantfold
10513 (sbcl-package->cl-source-package sbcl-constantfold))
10514
10515 (define-public sbcl-gtype
10516 (let ((commit "42275e3606242ae91e9c8dfa30c18ced50a35b66")
10517 (revision "1"))
10518 (package
10519 (name "sbcl-gtype")
10520 (version (git-version "0.1" revision commit))
10521 (source
10522 (origin
10523 (method git-fetch)
10524 (uri (git-reference
10525 (url "https://github.com/numcl/gtype.git")
10526 (commit commit)))
10527 (file-name (git-file-name name version))
10528 (sha256
10529 (base32
10530 "1f56dba998v945jcxhha391557n6md1ql25b7icfwwfivhmlaa9b"))))
10531 (build-system asdf-build-system/sbcl)
10532 (synopsis "C++/Julia-like parametric types in Common Lisp")
10533 (description
10534 "Support library for numcl that provides Julia-like runtime parametric
10535 type correctness in Common Lisp. It is based on CLtL2 extensions.")
10536 (home-page "https://github.com/numcl/gtype")
10537 (license license:lgpl3+)
10538 (inputs
10539 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
10540 ("trivial-cltl2" ,sbcl-trivial-cltl2)
10541 ("trivia" ,sbcl-trivia)
10542 ("alexandria" ,sbcl-alexandria)
10543 ("iterate" ,sbcl-iterate)
10544 ("type-r" ,sbcl-type-r)))
10545 (native-inputs
10546 `(("fiveam" ,sbcl-fiveam)))
10547 (arguments
10548 `(#:asd-system-name "gtype"
10549 #:asd-file "gtype.asd"
10550 #:test-asd-file "gtype.test.asd")))))
10551
10552 (define-public cl-gtype
10553 (sbcl-package->cl-source-package sbcl-gtype))
10554
10555 (define-public sbcl-numcl
10556 (let ((commit "1cf7dfa59f763a24a501092870e9c5ee745d0c17")
10557 (revision "1"))
10558 (package
10559 (name "sbcl-numcl")
10560 (version (git-version "0.1.0" revision commit))
10561 (source
10562 (origin
10563 (method git-fetch)
10564 (uri (git-reference
10565 (url "https://github.com/numcl/numcl.git")
10566 (commit commit)))
10567 (file-name (git-file-name name version))
10568 (sha256
10569 (base32
10570 "0i3jby9hf4ii7blivgyza80g0vmjfhk8537i5i7kqqk0i5sdnym2"))))
10571 (build-system asdf-build-system/sbcl)
10572 (synopsis "Numpy clone in Common Lisp")
10573 (description
10574 "This is a Numpy clone in Common Lisp. At the moment the
10575 library is written in pure Common Lisp, focusing more on correctness
10576 and usefulness, not speed. Track the progress at
10577 @url{https://github.com/numcl/numcl/projects/1}.")
10578 (home-page "https://github.com/numcl/numcl")
10579 (license license:lgpl3+)
10580 (inputs
10581 `(("trivia" ,sbcl-trivia)
10582 ("alexandria" ,sbcl-alexandria)
10583 ("iterate" ,sbcl-iterate)
10584 ("lisp-namespace" ,sbcl-lisp-namespace)
10585 ("type-r" ,sbcl-type-r)
10586 ("constantfold" ,sbcl-constantfold)
10587 ("cl-randist" ,sbcl-cl-randist)
10588 ("float-features" ,sbcl-float-features)
10589 ("function-cache" ,sbcl-function-cache)
10590 ("specialized-function" ,sbcl-specialized-function)
10591 ("gtype" ,sbcl-gtype)))
10592 (native-inputs
10593 `(("fiveam" ,sbcl-fiveam)))
10594 (arguments
10595 `(#:asd-system-name "numcl"
10596 #:asd-file "numcl.asd"
10597 #:test-asd-file "numcl.test.asd")))))
10598
10599 (define-public cl-numcl
10600 (sbcl-package->cl-source-package sbcl-numcl))