gnu: Add cl-skippy.
[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 Nikita <nikita@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, 2020 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 ;;; Copyright © 2020 Dimakis Dimakakos <me@bendersteed.tech>
21 ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
22 ;;;
23 ;;; This file is part of GNU Guix.
24 ;;;
25 ;;; GNU Guix is free software; you can redistribute it and/or modify it
26 ;;; under the terms of the GNU General Public License as published by
27 ;;; the Free Software Foundation; either version 3 of the License, or (at
28 ;;; your option) any later version.
29 ;;;
30 ;;; GNU Guix is distributed in the hope that it will be useful, but
31 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
32 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 ;;; GNU General Public License for more details.
34 ;;;
35 ;;; You should have received a copy of the GNU General Public License
36 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
37
38 ;;; This file only contains Common Lisp libraries.
39 ;;; Common Lisp compilers and tooling go to lisp.scm.
40 ;;; Common Lisp applications should go to the most appropriate file,
41 ;;; e.g. StumpWM is in wm.scm.
42
43 (define-module (gnu packages lisp-xyz)
44 #:use-module (gnu packages)
45 #:use-module ((guix licenses) #:prefix license:)
46 #:use-module (guix packages)
47 #:use-module (guix download)
48 #:use-module (guix git-download)
49 #:use-module (guix hg-download)
50 #:use-module (guix utils)
51 #:use-module (guix build-system asdf)
52 #:use-module (guix build-system trivial)
53 #:use-module (gnu packages c)
54 #:use-module (gnu packages compression)
55 #:use-module (gnu packages databases)
56 #:use-module (gnu packages enchant)
57 #:use-module (gnu packages glib)
58 #:use-module (gnu packages gtk)
59 #:use-module (gnu packages imagemagick)
60 #:use-module (gnu packages libevent)
61 #:use-module (gnu packages libffi)
62 #:use-module (gnu packages lisp)
63 #:use-module (gnu packages maths)
64 #:use-module (gnu packages networking)
65 #:use-module (gnu packages pkg-config)
66 #:use-module (gnu packages python)
67 #:use-module (gnu packages python-xyz)
68 #:use-module (gnu packages sqlite)
69 #:use-module (gnu packages tcl)
70 #:use-module (gnu packages tls)
71 #:use-module (gnu packages webkit)
72 #:use-module (gnu packages xdisorg)
73 #:use-module (ice-9 match)
74 #:use-module (srfi srfi-19))
75
76 (define-public sbcl-alexandria
77 (package
78 (name "sbcl-alexandria")
79 (version "1.1")
80 (source
81 (origin
82 (method git-fetch)
83 (uri (git-reference
84 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
85 (commit (string-append "v" version))))
86 (sha256
87 (base32
88 "1zanb3xa98js0i66iqcmx3gp123p1m2d1fxn8d7bfzyfad5f6xn2"))
89 (file-name (git-file-name name version))))
90 (build-system asdf-build-system/sbcl)
91 (native-inputs
92 `(("rt" ,sbcl-rt)))
93 (synopsis "Collection of portable utilities for Common Lisp")
94 (description
95 "Alexandria is a collection of portable utilities. It does not contain
96 conceptual extensions to Common Lisp. It is conservative in scope, and
97 portable between implementations.")
98 (home-page "https://common-lisp.net/project/alexandria/")
99 (license license:public-domain)))
100
101 (define-public cl-alexandria
102 (sbcl-package->cl-source-package sbcl-alexandria))
103
104 (define-public ecl-alexandria
105 (sbcl-package->ecl-package sbcl-alexandria))
106
107 (define-public sbcl-net.didierverna.asdf-flv
108 (package
109 (name "sbcl-net.didierverna.asdf-flv")
110 (version "2.1")
111 (source
112 (origin
113 (method git-fetch)
114 (uri (git-reference
115 (url "https://github.com/didierverna/asdf-flv")
116 (commit (string-append "version-" version))))
117 (file-name (git-file-name "asdf-flv" version))
118 (sha256
119 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
120 (build-system asdf-build-system/sbcl)
121 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
122 (description "ASDF-FLV provides support for file-local variables through
123 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
124 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
125 dynamic binding is created before processing the file, so that any
126 modification to the variable becomes essentially file-local.
127
128 In order to make one or several variables file-local, use the macros
129 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
130 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
131 (license (license:non-copyleft
132 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
133 "GNU All-Permissive License"))))
134
135 (define-public cl-net.didierverna.asdf-flv
136 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
137
138 (define-public ecl-net.didierverna.asdf-flv
139 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
140
141 (define-public sbcl-fiveam
142 (package
143 (name "sbcl-fiveam")
144 (version "1.4.1")
145 (source
146 (origin
147 (method git-fetch)
148 (uri (git-reference
149 (url "https://github.com/sionescu/fiveam")
150 (commit (string-append "v" version))))
151 (file-name (git-file-name "fiveam" version))
152 (sha256
153 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
154 (inputs
155 `(("alexandria" ,sbcl-alexandria)
156 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
157 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
158 (build-system asdf-build-system/sbcl)
159 (synopsis "Common Lisp testing framework")
160 (description "FiveAM is a simple (as far as writing and running tests
161 goes) regression testing framework. It has been designed with Common Lisp's
162 interactive development model in mind.")
163 (home-page "https://common-lisp.net/project/fiveam/")
164 (license license:bsd-3)))
165
166 (define-public cl-fiveam
167 (sbcl-package->cl-source-package sbcl-fiveam))
168
169 (define-public ecl-fiveam
170 (sbcl-package->ecl-package sbcl-fiveam))
171
172 (define-public sbcl-bordeaux-threads
173 (package
174 (name "sbcl-bordeaux-threads")
175 (version "0.8.8")
176 (source (origin
177 (method git-fetch)
178 (uri (git-reference
179 (url "https://github.com/sionescu/bordeaux-threads")
180 (commit (string-append "v" version))))
181 (sha256
182 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"))
183 (file-name
184 (git-file-name "bordeaux-threads" version))))
185 (inputs `(("alexandria" ,sbcl-alexandria)))
186 (native-inputs `(("fiveam" ,sbcl-fiveam)))
187 (build-system asdf-build-system/sbcl)
188 (synopsis "Portable shared-state concurrency library for Common Lisp")
189 (description "BORDEAUX-THREADS is a proposed standard for a minimal
190 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
191 support.")
192 (home-page "https://common-lisp.net/project/bordeaux-threads/")
193 (license license:x11)))
194
195 (define-public cl-bordeaux-threads
196 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
197
198 (define-public ecl-bordeaux-threads
199 (sbcl-package->ecl-package sbcl-bordeaux-threads))
200
201 (define-public sbcl-trivial-gray-streams
202 (let ((revision "1")
203 (commit "ebd59b1afed03b9dc8544320f8f432fdf92ab010"))
204 (package
205 (name "sbcl-trivial-gray-streams")
206 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
207 (source
208 (origin
209 (method git-fetch)
210 (uri
211 (git-reference
212 (url "https://github.com/trivial-gray-streams/trivial-gray-streams")
213 (commit commit)))
214 (sha256
215 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94"))
216 (file-name
217 (string-append "trivial-gray-streams-" version "-checkout"))))
218 (build-system asdf-build-system/sbcl)
219 (synopsis "Compatibility layer for Gray streams implementations")
220 (description "Gray streams is an interface proposed for inclusion with
221 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
222 popular CL implementations implement it. This package provides an extremely
223 thin compatibility layer for gray streams.")
224 (home-page "https://www.cliki.net/trivial-gray-streams")
225 (license license:x11))))
226
227 (define-public cl-trivial-gray-streams
228 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
229
230 (define-public ecl-trivial-gray-streams
231 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
232
233 (define-public sbcl-fiasco
234 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
235 (revision "1"))
236 (package
237 (name "sbcl-fiasco")
238 (version (git-version "0.0.1" revision commit))
239 (source
240 (origin
241 (method git-fetch)
242 (uri (git-reference
243 (url "https://github.com/joaotavora/fiasco")
244 (commit commit)))
245 (file-name (git-file-name "fiasco" version))
246 (sha256
247 (base32
248 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
249 (build-system asdf-build-system/sbcl)
250 (inputs
251 `(("alexandria" ,sbcl-alexandria)
252 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
253 (synopsis "Simple and powerful test framework for Common Lisp")
254 (description "A Common Lisp test framework that treasures your failures,
255 logical continuation of Stefil. It focuses on interactive debugging.")
256 (home-page "https://github.com/joaotavora/fiasco")
257 ;; LICENCE specifies this is public-domain unless the legislation
258 ;; doesn't allow or recognize it. In that case it falls back to a
259 ;; permissive licence.
260 (license (list license:public-domain
261 (license:x11-style "file://LICENCE"))))))
262
263 (define-public cl-fiasco
264 (sbcl-package->cl-source-package sbcl-fiasco))
265
266 (define-public ecl-fiasco
267 (sbcl-package->ecl-package sbcl-fiasco))
268
269 (define-public sbcl-flexi-streams
270 (package
271 (name "sbcl-flexi-streams")
272 (version "1.0.18")
273 (source
274 (origin
275 (method git-fetch)
276 (uri (git-reference
277 (url "https://github.com/edicl/flexi-streams")
278 (commit (string-append "v" version))))
279 (file-name (git-file-name "flexi-streams" version))
280 (sha256
281 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
282 (build-system asdf-build-system/sbcl)
283 (arguments
284 `(#:phases
285 (modify-phases %standard-phases
286 (add-after 'unpack 'make-git-checkout-writable
287 (lambda _
288 (for-each make-file-writable (find-files "."))
289 #t)))))
290 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
291 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
292 (description "Flexi-streams is an implementation of \"virtual\" bivalent
293 streams that can be layered atop real binary or bivalent streams and that can
294 be used to read and write character data in various single- or multi-octet
295 encodings which can be changed on the fly. It also supplies in-memory binary
296 streams which are similar to string streams.")
297 (home-page "http://weitz.de/flexi-streams/")
298 (license license:bsd-3)))
299
300 (define-public cl-flexi-streams
301 (sbcl-package->cl-source-package sbcl-flexi-streams))
302
303 (define-public ecl-flexi-streams
304 (sbcl-package->ecl-package sbcl-flexi-streams))
305
306 (define-public sbcl-cl-ppcre
307 (package
308 (name "sbcl-cl-ppcre")
309 (version "2.1.1")
310 (source
311 (origin
312 (method git-fetch)
313 (uri (git-reference
314 (url "https://github.com/edicl/cl-ppcre")
315 (commit (string-append "v" version))))
316 (file-name (git-file-name "cl-ppcre" version))
317 (sha256
318 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
319 (build-system asdf-build-system/sbcl)
320 (native-inputs `(("flexi-streams" ,sbcl-flexi-streams)))
321 (synopsis "Portable regular expression library for Common Lisp")
322 (description "CL-PPCRE is a portable regular expression library for Common
323 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
324 compatible with ANSI-compliant Common Lisp implementations.")
325 (home-page "http://weitz.de/cl-ppcre/")
326 (license license:bsd-2)))
327
328 (define-public cl-ppcre
329 (sbcl-package->cl-source-package sbcl-cl-ppcre))
330
331 (define-public ecl-cl-ppcre
332 (sbcl-package->ecl-package sbcl-cl-ppcre))
333
334 (define sbcl-cl-unicode-base
335 (package
336 (name "sbcl-cl-unicode-base")
337 (version "0.1.6")
338 (source (origin
339 (method git-fetch)
340 (uri (git-reference
341 (url "https://github.com/edicl/cl-unicode")
342 (commit (string-append "v" version))))
343 (file-name (git-file-name name version))
344 (sha256
345 (base32
346 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
347 (build-system asdf-build-system/sbcl)
348 (arguments
349 '(#:asd-file "cl-unicode.asd"
350 #:asd-system-name "cl-unicode/base"))
351 (inputs
352 `(("cl-ppcre" ,sbcl-cl-ppcre)))
353 (home-page "http://weitz.de/cl-unicode/")
354 (synopsis "Portable Unicode library for Common Lisp")
355 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
356 is compatible with perl. It is pretty fast, thread-safe, and compatible with
357 ANSI-compliant Common Lisp implementations.")
358 (license license:bsd-2)))
359
360 (define-public sbcl-cl-unicode
361 (package
362 (inherit sbcl-cl-unicode-base)
363 (name "sbcl-cl-unicode")
364 (inputs
365 `(("cl-unicode/base" ,sbcl-cl-unicode-base)
366 ,@(package-inputs sbcl-cl-unicode-base)))
367 (native-inputs
368 `(("flexi-streams" ,sbcl-flexi-streams)))
369 (arguments '())))
370
371 (define-public ecl-cl-unicode
372 (sbcl-package->ecl-package sbcl-cl-unicode))
373
374 (define-public cl-unicode
375 (sbcl-package->cl-source-package sbcl-cl-unicode))
376
377 (define-public sbcl-zpb-ttf
378 (package
379 (name "sbcl-zpb-ttf")
380 (version "1.0.3")
381 (source
382 (origin
383 (method git-fetch)
384 (uri (git-reference
385 (url "https://github.com/xach/zpb-ttf")
386 (commit (string-append "release-" version))))
387 (file-name (git-file-name name version))
388 (sha256
389 (base32
390 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
391 (build-system asdf-build-system/sbcl)
392 (home-page "https://github.com/xach/zpb-ttf")
393 (synopsis "TrueType font file access for Common Lisp")
394 (description
395 "ZPB-TTF is a TrueType font file parser that provides an interface for
396 reading typographic metrics, glyph outlines, and other information from the
397 file.")
398 (license license:bsd-2)))
399
400 (define-public ecl-zpb-ttf
401 (sbcl-package->ecl-package sbcl-zpb-ttf))
402
403 (define-public cl-zpb-ttf
404 (sbcl-package->cl-source-package sbcl-zpb-ttf))
405
406 (define-public sbcl-cl-aa
407 (package
408 (name "sbcl-cl-aa")
409 (version "0.1.5")
410 (source
411 (origin
412 (method url-fetch)
413 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
414 "files/cl-vectors-" version ".tar.gz"))
415 (sha256
416 (base32
417 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
418 (build-system asdf-build-system/sbcl)
419 (arguments '(#:asd-file "cl-aa.asd"))
420 (home-page "http://projects.tuxee.net/cl-vectors/")
421 (synopsis "Polygon rasterizer")
422 (description
423 "This is a Common Lisp library implementing the AA polygon rasterization
424 algorithm from the @url{http://antigrain.com, Antigrain} project.")
425 (license license:expat)))
426
427 (define-public ecl-cl-aa
428 (sbcl-package->ecl-package sbcl-cl-aa))
429
430 (define-public cl-aa
431 (sbcl-package->cl-source-package sbcl-cl-aa))
432
433 (define-public sbcl-cl-paths
434 (package
435 (inherit sbcl-cl-aa)
436 (name "sbcl-cl-paths")
437 (arguments '(#:asd-file "cl-paths.asd"))
438 (synopsis "Facilities to create and manipulate vectorial paths")
439 (description
440 "This package provides facilities to create and manipulate vectorial
441 paths.")))
442
443 (define-public ecl-cl-paths
444 (sbcl-package->ecl-package sbcl-cl-paths))
445
446 (define-public cl-paths
447 (sbcl-package->cl-source-package sbcl-cl-paths))
448
449 (define-public sbcl-cl-paths-ttf
450 (package
451 (inherit sbcl-cl-aa)
452 (name "sbcl-cl-paths-ttf")
453 (arguments '(#:asd-file "cl-paths-ttf.asd"))
454 (inputs
455 `(("cl-paths" ,sbcl-cl-paths)
456 ("zpb-ttf" ,sbcl-zpb-ttf)))
457 (synopsis "Facilities to create and manipulate vectorial paths")
458 (description
459 "This package provides facilities to create and manipulate vectorial
460 paths.")))
461
462 (define-public ecl-cl-paths-ttf
463 (sbcl-package->ecl-package sbcl-cl-paths-ttf))
464
465 (define-public cl-paths-ttf
466 (sbcl-package->cl-source-package sbcl-cl-paths-ttf))
467
468 (define-public sbcl-cl-vectors
469 (package
470 (inherit sbcl-cl-aa)
471 (name "sbcl-cl-vectors")
472 (arguments '(#:asd-file "cl-vectors.asd"))
473 (inputs
474 `(("cl-aa" ,sbcl-cl-aa)
475 ("cl-paths" ,sbcl-cl-paths)))
476 (synopsis "Create, transform and render anti-aliased vectorial paths")
477 (description
478 "This is a pure Common Lisp library to create, transform and render
479 anti-aliased vectorial paths.")))
480
481 (define-public ecl-cl-vectors
482 (sbcl-package->ecl-package sbcl-cl-vectors))
483
484 (define-public cl-vectors
485 (sbcl-package->cl-source-package sbcl-cl-vectors))
486
487 (define-public sbcl-spatial-trees
488 ;; There have been no releases.
489 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
490 (revision "1"))
491 (package
492 (name "sbcl-spatial-trees")
493 (version (git-version "0" revision commit))
494 (source
495 (origin
496 (method git-fetch)
497 (uri (git-reference
498 (url "https://github.com/rpav/spatial-trees")
499 (commit commit)))
500 (file-name (git-file-name name version))
501 (sha256
502 (base32
503 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
504 (build-system asdf-build-system/sbcl)
505 (arguments
506 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
507 #:asd-file "spatial-trees.asd"
508 #:test-asd-file "spatial-trees.test.asd"))
509 (native-inputs
510 `(("fiveam" ,sbcl-fiveam)))
511 (home-page "https://github.com/rpav/spatial-trees")
512 (synopsis "Dynamic index data structures for spatially-extended data")
513 (description
514 "Spatial-trees is a set of dynamic index data structures for
515 spatially-extended data.")
516 (license license:bsd-3))))
517
518 (define-public ecl-spatial-trees
519 (sbcl-package->ecl-package sbcl-spatial-trees))
520
521 (define-public cl-spatial-trees
522 (sbcl-package->cl-source-package sbcl-spatial-trees))
523
524 (define-public sbcl-flexichain
525 ;; There are no releases.
526 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
527 (revision "1"))
528 (package
529 (name "sbcl-flexichain")
530 (version "1.5.1")
531 (source
532 (origin
533 (method git-fetch)
534 (uri (git-reference
535 (url "https://github.com/robert-strandh/Flexichain")
536 (commit commit)))
537 (file-name (git-file-name name version))
538 (sha256
539 (base32
540 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
541 (build-system asdf-build-system/sbcl)
542 (home-page "https://github.com/robert-strandh/Flexichain.git")
543 (synopsis "Dynamically add elements to or remove them from sequences")
544 (description
545 "This package provides an implementation of the flexichain protocol,
546 allowing client code to dynamically add elements to, and delete elements from
547 a sequence (or chain) of such elements.")
548 (license license:lgpl2.1+))))
549
550 (define-public ecl-flexichain
551 (sbcl-package->ecl-package sbcl-flexichain))
552
553 (define-public cl-flexichain
554 (sbcl-package->cl-source-package sbcl-flexichain))
555
556 (define-public sbcl-cl-pdf
557 ;; There are no releases
558 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
559 (revision "1"))
560 (package
561 (name "sbcl-cl-pdf")
562 (version (git-version "0" revision commit))
563 (source
564 (origin
565 (method git-fetch)
566 (uri (git-reference
567 (url "https://github.com/mbattyani/cl-pdf")
568 (commit commit)))
569 (file-name (git-file-name name version))
570 (sha256
571 (base32
572 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
573 (build-system asdf-build-system/sbcl)
574 (inputs
575 `(("iterate" ,sbcl-iterate)
576 ("zpb-ttf" ,sbcl-zpb-ttf)))
577 (home-page "https://github.com/mbattyani/cl-pdf")
578 (synopsis "Common Lisp library for generating PDF files")
579 (description
580 "CL-PDF is a cross-platform Common Lisp library for generating PDF
581 files.")
582 (license license:bsd-2))))
583
584 (define-public ecl-cl-pdf
585 (sbcl-package->ecl-package sbcl-cl-pdf))
586
587 (define-public cl-pdf
588 (sbcl-package->cl-source-package sbcl-cl-pdf))
589
590 (define-public sbcl-clx
591 (package
592 (name "sbcl-clx")
593 (version "0.7.5")
594 (source
595 (origin
596 (method git-fetch)
597 (uri
598 (git-reference
599 (url "https://github.com/sharplispers/clx")
600 (commit version)))
601 (sha256
602 (base32
603 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
604 (file-name (string-append "clx-" version))))
605 (build-system asdf-build-system/sbcl)
606 (native-inputs
607 `(("fiasco" ,sbcl-fiasco)))
608 (home-page "https://www.cliki.net/portable-clx")
609 (synopsis "X11 client library for Common Lisp")
610 (description "CLX is an X11 client library for Common Lisp. The code was
611 originally taken from a CMUCL distribution, was modified somewhat in order to
612 make it compile and run under SBCL, then a selection of patches were added
613 from other CLXes around the net.")
614 (license license:x11)))
615
616 (define-public cl-clx
617 (sbcl-package->cl-source-package sbcl-clx))
618
619 (define-public ecl-clx
620 (sbcl-package->ecl-package sbcl-clx))
621
622 (define-public sbcl-clx-truetype
623 (let ((commit "c6e10a918d46632324d5863a8ed067a83fc26de8")
624 (revision "1"))
625 (package
626 (name "sbcl-clx-truetype")
627 (version (git-version "0.0.1" revision commit))
628 (source
629 (origin
630 (method git-fetch)
631 (uri (git-reference
632 (url "https://github.com/l04m33/clx-truetype")
633 (commit commit)))
634 (file-name (git-file-name name version))
635 (sha256
636 (base32
637 "079hyp92cjkdfn6bhkxsrwnibiqbz4y4af6nl31lzw6nm91j5j37"))
638 (modules '((guix build utils)))
639 (snippet
640 '(begin
641 (substitute* "package.lisp"
642 ((":export") ":export\n :+font-cache-filename+"))
643 #t))))
644 (build-system asdf-build-system/sbcl)
645 (inputs
646 `(("clx" ,sbcl-clx)
647 ("zpb-ttf" ,sbcl-zpb-ttf)
648 ("cl-vectors" ,sbcl-cl-vectors)
649 ("cl-paths-ttf" ,sbcl-cl-paths-ttf)
650 ("cl-fad" ,sbcl-cl-fad)
651 ("cl-store" ,sbcl-cl-store)
652 ("trivial-features" ,sbcl-trivial-features)))
653 (home-page "https://github.com/l04m33/clx-truetype")
654 (synopsis "Antialiased TrueType font rendering using CLX and XRender")
655 (description "CLX-TrueType is pure common lisp solution for
656 antialiased TrueType font rendering using CLX and XRender extension.")
657 (license license:expat))))
658
659 (define-public sbcl-cl-ppcre-unicode
660 (package (inherit sbcl-cl-ppcre)
661 (name "sbcl-cl-ppcre-unicode")
662 (arguments
663 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
664 #:asd-file "cl-ppcre-unicode.asd"))
665 (inputs
666 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
667 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))))
668
669 (define-public ecl-cl-ppcre-unicode
670 (sbcl-package->ecl-package sbcl-cl-ppcre-unicode))
671
672 ;; The slynk that users expect to install includes all of slynk's contrib
673 ;; modules. Therefore, we build the base module and all contribs first; then
674 ;; we expose the union of these as `sbcl-slynk'. The following variable
675 ;; describes the base module.
676 (define sbcl-slynk-boot0
677 (let ((revision "3")
678 ;; Update together with emacs-sly.
679 (commit "6a2f543cb21f14104c2253af5a1427b884a987ae"))
680 (package
681 (name "sbcl-slynk-boot0")
682 (version (string-append "1.0.0-beta-" revision "." (string-take commit 7)))
683 (source
684 (origin
685 (method git-fetch)
686 (uri
687 (git-reference
688 (url "https://github.com/joaotavora/sly")
689 (commit commit)))
690 (sha256
691 (base32 "0wbpg9p9yg2hd62l15pvy50fk3hndq5zzyqlyyf04g368s895144"))
692 (file-name (string-append "slynk-" version "-checkout"))
693 (modules '((guix build utils)
694 (ice-9 ftw)))
695 (snippet
696 '(begin
697 ;; Move the contribs into the main source directory for easier
698 ;; access
699 (substitute* "slynk/slynk.asd"
700 (("\\.\\./contrib")
701 "contrib")
702 (("\\(defsystem :slynk/util")
703 "(defsystem :slynk/util :depends-on (:slynk)"))
704 (substitute* "contrib/slynk-trace-dialog.lisp"
705 (("\\(slynk::reset-inspector\\)") ; Causes problems on load
706 "nil"))
707 (substitute* "contrib/slynk-profiler.lisp"
708 (("slynk:to-line")
709 "slynk-pprint-to-line"))
710 (substitute* "contrib/slynk-fancy-inspector.lisp"
711 (("slynk/util") "slynk-util")
712 ((":compile-toplevel :load-toplevel") ""))
713 (rename-file "contrib" "slynk/contrib")
714 ;; Move slynk's contents into the base directory for easier
715 ;; access
716 (for-each (lambda (file)
717 (unless (string-prefix? "." file)
718 (rename-file (string-append "slynk/" file)
719 (string-append "./" (basename file)))))
720 (scandir "slynk"))
721 #t))))
722 (build-system asdf-build-system/sbcl)
723 (arguments
724 `(#:tests? #f ; No test suite
725 #:asd-system-name "slynk"))
726 (synopsis "Common Lisp IDE for Emacs")
727 (description "SLY is a fork of SLIME, an IDE backend for Common Lisp.
728 It also features a completely redesigned REPL based on Emacs's own
729 full-featured @code{comint-mode}, live code annotations, and a consistent interactive
730 button interface. Everything can be copied to the REPL. One can create
731 multiple inspectors with independent history.")
732 (home-page "https://github.com/joaotavora/sly")
733 (license license:public-domain)
734 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
735
736 (define-public cl-slynk
737 (package
738 (inherit (sbcl-package->cl-source-package sbcl-slynk-boot0))
739 (name "cl-slynk")))
740
741 (define ecl-slynk-boot0
742 (sbcl-package->ecl-package sbcl-slynk-boot0))
743
744 (define sbcl-slynk-arglists
745 (package
746 (inherit sbcl-slynk-boot0)
747 (name "sbcl-slynk-arglists")
748 (inputs `(("slynk" ,sbcl-slynk-boot0)))
749 (arguments
750 (substitute-keyword-arguments (package-arguments sbcl-slynk-boot0)
751 ((#:asd-file _ "") "slynk.asd")
752 ((#:asd-system-name _ #f) "slynk/arglists")))))
753
754 (define ecl-slynk-arglists
755 (sbcl-package->ecl-package sbcl-slynk-arglists))
756
757 (define sbcl-slynk-util
758 (package
759 (inherit sbcl-slynk-boot0)
760 (name "sbcl-slynk-util")
761 (inputs `(("slynk" ,sbcl-slynk-boot0)))
762 (arguments
763 (substitute-keyword-arguments (package-arguments sbcl-slynk-boot0)
764 ((#:asd-file _ "") "slynk.asd")
765 ((#:asd-system-name _ #f) "slynk/util")))))
766
767 (define ecl-slynk-util
768 (sbcl-package->ecl-package sbcl-slynk-util))
769
770 (define sbcl-slynk-fancy-inspector
771 (package
772 (inherit sbcl-slynk-arglists)
773 (name "sbcl-slynk-fancy-inspector")
774 (inputs `(("slynk-util" ,sbcl-slynk-util)
775 ,@(package-inputs sbcl-slynk-arglists)))
776 (arguments
777 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
778 ((#:asd-system-name _ #f) "slynk/fancy-inspector")))))
779
780 (define ecl-slynk-fancy-inspector
781 (sbcl-package->ecl-package sbcl-slynk-fancy-inspector))
782
783 (define sbcl-slynk-package-fu
784 (package
785 (inherit sbcl-slynk-arglists)
786 (name "sbcl-slynk-package-fu")
787 (arguments
788 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
789 ((#:asd-system-name _ #f) "slynk/package-fu")))))
790
791 (define ecl-slynk-package-fu
792 (sbcl-package->ecl-package sbcl-slynk-package-fu))
793
794 (define sbcl-slynk-mrepl
795 (package
796 (inherit sbcl-slynk-fancy-inspector)
797 (name "sbcl-slynk-mrepl")
798 (arguments
799 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
800 ((#:asd-system-name _ #f) "slynk/mrepl")))))
801
802 (define ecl-slynk-mrepl
803 (sbcl-package->ecl-package sbcl-slynk-mrepl))
804
805 (define sbcl-slynk-trace-dialog
806 (package
807 (inherit sbcl-slynk-arglists)
808 (name "sbcl-slynk-trace-dialog")
809 (arguments
810 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
811 ((#:asd-system-name _ #f) "slynk/trace-dialog")))))
812
813 (define ecl-slynk-trace-dialog
814 (sbcl-package->ecl-package sbcl-slynk-trace-dialog))
815
816 (define sbcl-slynk-profiler
817 (package
818 (inherit sbcl-slynk-arglists)
819 (name "sbcl-slynk-profiler")
820 (arguments
821 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
822 ((#:asd-system-name _ #f) "slynk/profiler")))))
823
824 (define ecl-slynk-profiler
825 (sbcl-package->ecl-package sbcl-slynk-profiler))
826
827 (define sbcl-slynk-stickers
828 (package
829 (inherit sbcl-slynk-arglists)
830 (name "sbcl-slynk-stickers")
831 (arguments
832 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
833 ((#:asd-system-name _ #f) "slynk/stickers")))))
834
835 (define ecl-slynk-stickers
836 (sbcl-package->ecl-package sbcl-slynk-stickers))
837
838 (define sbcl-slynk-indentation
839 (package
840 (inherit sbcl-slynk-arglists)
841 (name "sbcl-slynk-indentation")
842 (arguments
843 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
844 ((#:asd-system-name _ #f) "slynk/indentation")))))
845
846 (define ecl-slynk-indentation
847 (sbcl-package->ecl-package sbcl-slynk-indentation))
848
849 (define sbcl-slynk-retro
850 (package
851 (inherit sbcl-slynk-arglists)
852 (name "sbcl-slynk-retro")
853 (arguments
854 (substitute-keyword-arguments (package-arguments sbcl-slynk-arglists)
855 ((#:asd-system-name _ #f) "slynk/retro")))))
856
857 (define ecl-slynk-retro
858 (sbcl-package->ecl-package sbcl-slynk-retro))
859
860 (define slynk-systems
861 '("slynk"
862 "slynk-util"
863 "slynk-arglists"
864 "slynk-fancy-inspector"
865 "slynk-package-fu"
866 "slynk-mrepl"
867 "slynk-profiler"
868 "slynk-trace-dialog"
869 "slynk-stickers"
870 "slynk-indentation"
871 "slynk-retro"))
872
873 (define-public sbcl-slynk
874 (package
875 (inherit sbcl-slynk-boot0)
876 (name "sbcl-slynk")
877 (inputs
878 `(("slynk" ,sbcl-slynk-boot0)
879 ("slynk-util" ,sbcl-slynk-util)
880 ("slynk-arglists" ,sbcl-slynk-arglists)
881 ("slynk-fancy-inspector" ,sbcl-slynk-fancy-inspector)
882 ("slynk-package-fu" ,sbcl-slynk-package-fu)
883 ("slynk-mrepl" ,sbcl-slynk-mrepl)
884 ("slynk-profiler" ,sbcl-slynk-profiler)
885 ("slynk-trace-dialog" ,sbcl-slynk-trace-dialog)
886 ("slynk-stickers" ,sbcl-slynk-stickers)
887 ("slynk-indentation" ,sbcl-slynk-indentation)
888 ("slynk-retro" ,sbcl-slynk-retro)))
889 (native-inputs `(("sbcl" ,sbcl)))
890 (build-system trivial-build-system)
891 (source #f)
892 (outputs '("out" "image"))
893 (arguments
894 `(#:modules ((guix build union)
895 (guix build utils)
896 (guix build lisp-utils))
897 #:builder
898 (begin
899 (use-modules (ice-9 match)
900 (srfi srfi-1)
901 (guix build union)
902 (guix build lisp-utils))
903
904 (union-build
905 (assoc-ref %outputs "out")
906 (filter-map
907 (match-lambda
908 ((name . path)
909 (if (string-prefix? "slynk" name) path #f)))
910 %build-inputs))
911
912 (prepend-to-source-registry
913 (string-append (assoc-ref %outputs "out") "//"))
914
915 (parameterize ((%lisp-type "sbcl")
916 (%lisp (string-append (assoc-ref %build-inputs "sbcl")
917 "/bin/sbcl")))
918 (build-image (string-append
919 (assoc-ref %outputs "image")
920 "/bin/slynk")
921 %outputs
922 #:dependencies ',slynk-systems))
923 #t)))))
924
925 (define-public ecl-slynk
926 (package
927 (inherit sbcl-slynk)
928 (name "ecl-slynk")
929 (inputs
930 (map (match-lambda
931 ((name pkg . _)
932 (list name (sbcl-package->ecl-package pkg))))
933 (package-inputs sbcl-slynk)))
934 (native-inputs '())
935 (outputs '("out"))
936 (arguments
937 '(#:modules ((guix build union))
938 #:builder
939 (begin
940 (use-modules (ice-9 match)
941 (guix build union))
942 (match %build-inputs
943 (((names . paths) ...)
944 (union-build (assoc-ref %outputs "out")
945 paths)
946 #t)))))))
947
948 (define-public sbcl-parse-js
949 (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6")
950 (revision "1"))
951 (package
952 (name "sbcl-parse-js")
953 (version (string-append "0.0.0-" revision "." (string-take commit 9)))
954 (source
955 (origin
956 (method git-fetch)
957 (uri (git-reference
958 (url "http://marijn.haverbeke.nl/git/parse-js")
959 (commit commit)))
960 (file-name (string-append name "-" commit "-checkout"))
961 (sha256
962 (base32
963 "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39"))))
964 (build-system asdf-build-system/sbcl)
965 (home-page "https://marijnhaverbeke.nl/parse-js/")
966 (synopsis "Parse JavaScript")
967 (description "Parse-js is a Common Lisp package for parsing
968 JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
969 (license license:zlib))))
970
971 (define-public cl-parse-js
972 (sbcl-package->cl-source-package sbcl-parse-js))
973
974 (define-public sbcl-parse-number
975 (package
976 (name "sbcl-parse-number")
977 (version "1.7")
978 (source
979 (origin
980 (method git-fetch)
981 (uri (git-reference
982 (url "https://github.com/sharplispers/parse-number/")
983 (commit (string-append "v" version))))
984 (file-name (git-file-name name version))
985 (sha256
986 (base32
987 "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"))))
988 (build-system asdf-build-system/sbcl)
989 (home-page "https://www.cliki.net/PARSE-NUMBER")
990 (synopsis "Parse numbers")
991 (description "@code{parse-number} is a library of functions for parsing
992 strings into one of the standard Common Lisp number types without using the
993 reader. @code{parse-number} accepts an arbitrary string and attempts to parse
994 the string into one of the standard Common Lisp number types, if possible, or
995 else @code{parse-number} signals an error of type @code{invalid-number}.")
996 (license license:bsd-3)))
997
998 (define-public cl-parse-number
999 (sbcl-package->cl-source-package sbcl-parse-number))
1000
1001 (define-public sbcl-iterate
1002 (package
1003 (name "sbcl-iterate")
1004 (version "1.5")
1005 (source
1006 (origin
1007 (method url-fetch)
1008 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
1009 "iterate-" version ".tar.gz"))
1010 (sha256
1011 (base32
1012 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
1013 (build-system asdf-build-system/sbcl)
1014 (native-inputs
1015 `(("rt" ,sbcl-rt)))
1016 (home-page "https://common-lisp.net/project/iterate/")
1017 (synopsis "Iteration construct for Common Lisp")
1018 (description "@code{iterate} is an iteration construct for Common Lisp.
1019 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
1020
1021 @itemize
1022 @item it is extensible,
1023 @item it helps editors like Emacs indent iterate forms by having a more
1024 lisp-like syntax, and
1025 @item it isn't part of the ANSI standard for Common Lisp.
1026 @end itemize\n")
1027 (license license:expat)))
1028
1029 (define-public cl-iterate
1030 (sbcl-package->cl-source-package sbcl-iterate))
1031
1032 (define-public ecl-iterate
1033 (sbcl-package->ecl-package sbcl-iterate))
1034
1035 (define-public sbcl-cl-uglify-js
1036 ;; There have been many bug fixes since the 2010 release.
1037 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
1038 (revision "1"))
1039 (package
1040 (name "sbcl-cl-uglify-js")
1041 (version (string-append "0.1-" revision "." (string-take commit 9)))
1042 (source
1043 (origin
1044 (method git-fetch)
1045 (uri (git-reference
1046 (url "https://github.com/mishoo/cl-uglify-js")
1047 (commit commit)))
1048 (file-name (git-file-name name version))
1049 (sha256
1050 (base32
1051 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1052 (build-system asdf-build-system/sbcl)
1053 (inputs
1054 `(("sbcl-parse-js" ,sbcl-parse-js)
1055 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1056 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1057 ("sbcl-parse-number" ,sbcl-parse-number)
1058 ("sbcl-iterate" ,sbcl-iterate)))
1059 (home-page "https://github.com/mishoo/cl-uglify-js")
1060 (synopsis "JavaScript compressor library for Common Lisp")
1061 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1062 compressor. It works on data produced by @code{parse-js} to generate a
1063 @dfn{minified} version of the code. Currently it can:
1064
1065 @itemize
1066 @item reduce variable names (usually to single letters)
1067 @item join consecutive @code{var} statements
1068 @item resolve simple binary expressions
1069 @item group most consecutive statements using the @code{sequence} operator (comma)
1070 @item remove unnecessary blocks
1071 @item convert @code{IF} expressions in various ways that result in smaller code
1072 @item remove some unreachable code
1073 @end itemize\n")
1074 (license license:zlib))))
1075
1076 (define-public cl-uglify-js
1077 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1078
1079 (define-public uglify-js
1080 (package
1081 (inherit sbcl-cl-uglify-js)
1082 (name "uglify-js")
1083 (build-system trivial-build-system)
1084 (arguments
1085 `(#:modules ((guix build utils))
1086 #:builder
1087 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1088 (script (string-append bin "uglify-js")))
1089 (use-modules (guix build utils))
1090 (mkdir-p bin)
1091 (with-output-to-file script
1092 (lambda _
1093 (format #t "#!~a/bin/sbcl --script
1094 (require :asdf)
1095 (push (truename \"~a/lib/sbcl\") asdf:*central-registry*)"
1096 (assoc-ref %build-inputs "sbcl")
1097 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1098 ;; FIXME: cannot use progn here because otherwise it fails to
1099 ;; find cl-uglify-js.
1100 (for-each
1101 write
1102 '(;; Quiet, please!
1103 (let ((*standard-output* (make-broadcast-stream))
1104 (*error-output* (make-broadcast-stream)))
1105 (asdf:load-system :cl-uglify-js))
1106 (let ((file (cadr *posix-argv*)))
1107 (if file
1108 (format t "~a"
1109 (cl-uglify-js:ast-gen-code
1110 (cl-uglify-js:ast-mangle
1111 (cl-uglify-js:ast-squeeze
1112 (with-open-file (in file)
1113 (parse-js:parse-js in))))
1114 :beautify nil))
1115 (progn
1116 (format *error-output*
1117 "Please provide a JavaScript file.~%")
1118 (sb-ext:exit :code 1))))))))
1119 (chmod script #o755)
1120 #t)))
1121 (inputs
1122 `(("sbcl" ,sbcl)
1123 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1124 (synopsis "JavaScript compressor")))
1125
1126 (define-public sbcl-cl-strings
1127 (let ((revision "1")
1128 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1129 (package
1130 (name "sbcl-cl-strings")
1131 (version (git-version "0.0.0" revision commit))
1132 (source
1133 (origin
1134 (method git-fetch)
1135 (uri (git-reference
1136 (url "https://github.com/diogoalexandrefranco/cl-strings")
1137 (commit commit)))
1138 (sha256
1139 (base32
1140 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1141 (file-name (string-append "cl-strings-" version "-checkout"))))
1142 (build-system asdf-build-system/sbcl)
1143 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1144 (description
1145 "@command{cl-strings} is a small, portable, dependency-free set of
1146 utilities that make it even easier to manipulate text in Common Lisp. It has
1147 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1148 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1149 (license license:expat))))
1150
1151 (define-public cl-strings
1152 (sbcl-package->cl-source-package sbcl-cl-strings))
1153
1154 (define-public ecl-cl-strings
1155 (sbcl-package->ecl-package sbcl-cl-strings))
1156
1157 (define-public sbcl-trivial-features
1158 ;; No release since 2014.
1159 (let ((commit "870d03de0ed44067963350936856e17ee725153e"))
1160 (package
1161 (name "sbcl-trivial-features")
1162 (version (git-version "0.8" "1" commit))
1163 (source
1164 (origin
1165 (method git-fetch)
1166 (uri (git-reference
1167 (url "https://github.com/trivial-features/trivial-features")
1168 (commit commit)))
1169 (file-name (git-file-name "trivial-features" version))
1170 (sha256
1171 (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
1172 (build-system asdf-build-system/sbcl)
1173 (arguments '(#:tests? #f))
1174 (home-page "https://cliki.net/trivial-features")
1175 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1176 (description "Trivial-features ensures that @code{*FEATURES*} is
1177 consistent across multiple Common Lisp implementations.")
1178 (license license:expat))))
1179
1180 (define-public cl-trivial-features
1181 (sbcl-package->cl-source-package sbcl-trivial-features))
1182
1183 (define-public ecl-trivial-features
1184 (sbcl-package->ecl-package sbcl-trivial-features))
1185
1186 (define-public sbcl-hu.dwim.asdf
1187 (package
1188 (name "sbcl-hu.dwim.asdf")
1189 (version "20190521")
1190 (source
1191 (origin
1192 (method url-fetch)
1193 (uri (string-append "http://beta.quicklisp.org/archive/hu.dwim.asdf/"
1194 "2019-05-21/hu.dwim.asdf-" version "-darcs.tgz"))
1195 (sha256
1196 (base32
1197 "0rsbv71vyszy8w35yjwb5h6zcmknjq223hkzir79y72qdsc6sabn"))))
1198 (build-system asdf-build-system/sbcl)
1199 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1200 (synopsis "Extensions to ASDF")
1201 (description "Various ASDF extensions such as attached test and
1202 documentation system, explicit development support, etc.")
1203 (license license:public-domain)))
1204
1205 (define-public cl-hu.dwim.asdf
1206 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1207
1208 (define-public ecl-hu.dwim.asdf
1209 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1210
1211 (define-public sbcl-hu.dwim.stefil
1212 (let ((commit "ab6d1aa8995878a1b66d745dfd0ba021090bbcf9"))
1213 (package
1214 (name "sbcl-hu.dwim.stefil")
1215 (version (git-version "0.0.0" "1" commit))
1216 (source
1217 (origin
1218 (method git-fetch)
1219 (uri
1220 (git-reference
1221 (url "https://gitlab.common-lisp.net/xcvb/hu.dwim.stefil.git")
1222 (commit commit)))
1223 (sha256
1224 (base32 "1d8yccw65zj3zh46cbi3x6nmn1dwdb76s9d0av035077mvyirqqp"))
1225 (file-name (git-file-name "hu.dwim.stefil" version))))
1226 (build-system asdf-build-system/sbcl)
1227 (native-inputs
1228 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1229 (inputs
1230 `(("sbcl-alexandria" ,sbcl-alexandria)))
1231 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.stefil")
1232 (synopsis "Simple test framework")
1233 (description "Stefil is a simple test framework for Common Lisp,
1234 with a focus on interactive development.")
1235 (license license:public-domain))))
1236
1237 (define-public cl-hu.dwim.stefil
1238 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1239
1240 (define-public ecl-hu.dwim.stefil
1241 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1242
1243 (define-public sbcl-babel
1244 ;; No release since 2014.
1245 (let ((commit "aeed2d1b76358db48e6b70a64399c05678a6b9ea"))
1246 (package
1247 (name "sbcl-babel")
1248 (version (git-version "0.5.0" "1" commit))
1249 (source
1250 (origin
1251 (method git-fetch)
1252 (uri (git-reference
1253 (url "https://github.com/cl-babel/babel")
1254 (commit commit)))
1255 (file-name (git-file-name "babel" version))
1256 (sha256
1257 (base32 "0lkvv4xdpv4cv1y2bqillmabx8sdb2y4l6pbinq6mjh33w2brpvb"))))
1258 (build-system asdf-build-system/sbcl)
1259 (native-inputs
1260 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1261 (inputs
1262 `(("sbcl-alexandria" ,sbcl-alexandria)
1263 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1264 (home-page "https://common-lisp.net/project/babel/")
1265 (synopsis "Charset encoding and decoding library")
1266 (description "Babel is a charset encoding and decoding library, not unlike
1267 GNU libiconv, but completely written in Common Lisp.")
1268 (license license:expat))))
1269
1270 (define-public cl-babel
1271 (sbcl-package->cl-source-package sbcl-babel))
1272
1273 (define-public ecl-babel
1274 (sbcl-package->ecl-package sbcl-babel))
1275
1276 (define-public sbcl-cl-yacc
1277 (package
1278 (name "sbcl-cl-yacc")
1279 (version "0.3")
1280 (source
1281 (origin
1282 (method git-fetch)
1283 (uri (git-reference
1284 (url "https://github.com/jech/cl-yacc")
1285 (commit (string-append "cl-yacc-" version))))
1286 (sha256
1287 (base32
1288 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1289 (file-name (string-append "cl-yacc-" version "-checkout"))))
1290 (build-system asdf-build-system/sbcl)
1291 (arguments
1292 `(#:asd-file "yacc.asd"
1293 #:asd-system-name "yacc"))
1294 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1295 (description
1296 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1297 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1298
1299 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1300 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1301 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1302 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1303 (license license:expat)))
1304
1305 (define-public cl-yacc
1306 (sbcl-package->cl-source-package sbcl-cl-yacc))
1307
1308 (define-public ecl-cl-yacc
1309 (sbcl-package->ecl-package sbcl-cl-yacc))
1310
1311 (define-public sbcl-jpl-util
1312 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1313 (package
1314 (name "sbcl-jpl-util")
1315 (version "20151005")
1316 (source
1317 (origin
1318 (method git-fetch)
1319 (uri (git-reference
1320 ;; Quicklisp uses this fork.
1321 (url "https://github.com/hawkir/cl-jpl-util")
1322 (commit commit)))
1323 (file-name
1324 (git-file-name "jpl-util" version))
1325 (sha256
1326 (base32
1327 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1328 (build-system asdf-build-system/sbcl)
1329 (synopsis "Collection of Common Lisp utility functions and macros")
1330 (description
1331 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1332 and macros, primarily for software projects written in CL by the author.")
1333 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1334 (license license:isc))))
1335
1336 (define-public cl-jpl-util
1337 (sbcl-package->cl-source-package sbcl-jpl-util))
1338
1339 (define-public ecl-jpl-util
1340 (sbcl-package->ecl-package sbcl-jpl-util))
1341
1342 (define-public sbcl-jpl-queues
1343 (package
1344 (name "sbcl-jpl-queues")
1345 (version "0.1")
1346 (source
1347 (origin
1348 (method url-fetch)
1349 (uri (string-append
1350 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1351 version
1352 ".tar.gz"))
1353 (sha256
1354 (base32
1355 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1356 (build-system asdf-build-system/sbcl)
1357 (inputs
1358 `(("jpl-util" ,sbcl-jpl-util)
1359 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1360 (arguments
1361 ;; Tests seem to be broken.
1362 `(#:tests? #f))
1363 (synopsis "Common Lisp library implementing a few different kinds of queues")
1364 (description
1365 "A Common Lisp library implementing a few different kinds of queues:
1366
1367 @itemize
1368 @item Bounded and unbounded FIFO queues.
1369 @item Lossy bounded FIFO queues that drop elements when full.
1370 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1371 @end itemize
1372
1373 Additionally, a synchronization wrapper is provided to make any queue
1374 conforming to the @command{jpl-queues} API thread-safe for lightweight
1375 multithreading applications. (See Calispel for a more sophisticated CL
1376 multithreaded message-passing library with timeouts and alternation among
1377 several blockable channels.)")
1378 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1379 (license license:isc)))
1380
1381 (define-public cl-jpl-queues
1382 (sbcl-package->cl-source-package sbcl-jpl-queues))
1383
1384 (define-public ecl-jpl-queues
1385 (sbcl-package->ecl-package sbcl-jpl-queues))
1386
1387 (define-public sbcl-eos
1388 (let ((commit "b0faca83781ead9a588661e37bd47f90362ccd94"))
1389 (package
1390 (name "sbcl-eos")
1391 (version (git-version "0.0.0" "1" commit))
1392 (source
1393 (origin
1394 (method git-fetch)
1395 (uri (git-reference
1396 (url "https://github.com/adlai/Eos")
1397 (commit commit)))
1398 (sha256
1399 (base32
1400 "1bq8cfg087iyxmxi1mwgx5cfgy3b8ydrf81xljcis8qbgb2vszph"))
1401 (file-name (git-file-name "eos" version))))
1402 (build-system asdf-build-system/sbcl)
1403 (synopsis "Unit Testing for Common Lisp")
1404 (description
1405 "Eos was a unit testing library for Common Lisp.
1406 It began as a fork of FiveAM; however, FiveAM development has continued, while
1407 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1408 (home-page "https://github.com/adlai/Eos")
1409 (license license:expat))))
1410
1411 (define-public cl-eos
1412 (sbcl-package->cl-source-package sbcl-eos))
1413
1414 (define-public ecl-eos
1415 (sbcl-package->ecl-package sbcl-eos))
1416
1417 (define-public sbcl-esrap
1418 (let ((commit "133be8b05c2aae48696fe5b739eea2fa573fa48d"))
1419 (package
1420 (name "sbcl-esrap")
1421 (version (git-version "0.0.0" "1" commit))
1422 (source
1423 (origin
1424 (method git-fetch)
1425 (uri (git-reference
1426 (url "https://github.com/nikodemus/esrap")
1427 (commit commit)))
1428 (sha256
1429 (base32
1430 "02d5clihsdryhf7pix8c5di2571fdsffh75d40fkzhws90r5mksl"))
1431 (file-name (git-file-name "esrap" version))))
1432 (build-system asdf-build-system/sbcl)
1433 (native-inputs
1434 `(("eos" ,sbcl-eos))) ;For testing only.
1435 (inputs
1436 `(("alexandria" ,sbcl-alexandria)))
1437 (synopsis "Common Lisp packrat parser")
1438 (description
1439 "A packrat parser for Common Lisp.
1440 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1441
1442 @itemize
1443 @item dynamic redefinition of nonterminals
1444 @item inline grammars
1445 @item semantic predicates
1446 @item introspective facilities (describing grammars, tracing, setting breaks)
1447 @end itemize\n")
1448 (home-page "https://nikodemus.github.io/esrap/")
1449 (license license:expat))))
1450
1451 (define-public cl-esrap
1452 (sbcl-package->cl-source-package sbcl-esrap))
1453
1454 (define-public ecl-esrap
1455 (sbcl-package->ecl-package sbcl-esrap))
1456
1457 (define-public sbcl-split-sequence
1458 (package
1459 (name "sbcl-split-sequence")
1460 (version "2.0.0")
1461 (source
1462 (origin
1463 (method git-fetch)
1464 (uri (git-reference
1465 (url "https://github.com/sharplispers/split-sequence")
1466 (commit (string-append "v" version))))
1467 (sha256
1468 (base32
1469 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
1470 (file-name (git-file-name "split-sequence" version))))
1471 (build-system asdf-build-system/sbcl)
1472 (native-inputs
1473 `(("fiveam" ,sbcl-fiveam)))
1474 (synopsis "Member of the Common Lisp Utilities family of programs")
1475 (description
1476 "Splits sequence into a list of subsequences delimited by objects
1477 satisfying the test.")
1478 (home-page "https://cliki.net/split-sequence")
1479 (license license:expat)))
1480
1481 (define-public cl-split-sequence
1482 (sbcl-package->cl-source-package sbcl-split-sequence))
1483
1484 (define-public ecl-split-sequence
1485 (sbcl-package->ecl-package sbcl-split-sequence))
1486
1487 (define-public sbcl-html-encode
1488 (package
1489 (name "sbcl-html-encode")
1490 (version "1.2")
1491 (source
1492 (origin
1493 (method url-fetch)
1494 (uri (string-append
1495 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1496 version ".tgz"))
1497 (sha256
1498 (base32
1499 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1500 (file-name (string-append "colorize" version "-checkout"))))
1501 (build-system asdf-build-system/sbcl)
1502 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1503 (description
1504 "A library for encoding text in various web-savvy encodings.")
1505 (home-page "http://quickdocs.org/html-encode/")
1506 (license license:expat)))
1507
1508 (define-public cl-html-encode
1509 (sbcl-package->cl-source-package sbcl-html-encode))
1510
1511 (define-public ecl-html-encode
1512 (sbcl-package->ecl-package sbcl-html-encode))
1513
1514 (define-public sbcl-colorize
1515 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1516 (package
1517 (name "sbcl-colorize")
1518 (version (git-version "0.0.0" "1" commit))
1519 (source
1520 (origin
1521 (method git-fetch)
1522 (uri (git-reference
1523 (url "https://github.com/kingcons/colorize")
1524 (commit commit)))
1525 (sha256
1526 (base32
1527 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1528 (file-name (git-file-name "colorize" version))))
1529 (build-system asdf-build-system/sbcl)
1530 (inputs
1531 `(("alexandria" ,sbcl-alexandria)
1532 ("split-sequence" ,sbcl-split-sequence)
1533 ("html-encode" ,sbcl-html-encode)))
1534 (synopsis "Common Lisp for syntax highlighting")
1535 (description
1536 "@command{colorize} is a Lisp library for syntax highlighting
1537 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1538 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1539 (home-page "https://github.com/kingcons/colorize")
1540 ;; TODO: Missing license?
1541 (license license:expat))))
1542
1543 (define-public cl-colorize
1544 (sbcl-package->cl-source-package sbcl-colorize))
1545
1546 (define-public ecl-colorize
1547 (sbcl-package->ecl-package sbcl-colorize))
1548
1549 (define-public sbcl-3bmd
1550 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1551 (package
1552 (name "sbcl-3bmd")
1553 (version (git-version "0.0.0" "1" commit))
1554 (source
1555 (origin
1556 (method git-fetch)
1557 (uri (git-reference
1558 (url "https://github.com/3b/3bmd")
1559 (commit commit)))
1560 (sha256
1561 (base32
1562 "1rgv3gi7wf963ikmmpk132wgn0icddf226gq3bmcnk1fr3v9gf2f"))
1563 (file-name (git-file-name "3bmd" version))))
1564 (build-system asdf-build-system/sbcl)
1565 (arguments
1566 ;; FIXME: We need to specify the name because the build-system thinks
1567 ;; "3" is a version marker.
1568 `(#:asd-system-name "3bmd"))
1569 (inputs
1570 `(("esrap" ,sbcl-esrap)
1571 ("split-sequence" ,sbcl-split-sequence)))
1572 (synopsis "Markdown processor in Command Lisp using esrap parser")
1573 (description
1574 "Common Lisp Markdown -> HTML converter, using @command{esrap} for
1575 parsing, and grammar based on @command{peg-markdown}.")
1576 (home-page "https://github.com/3b/3bmd")
1577 (license license:expat))))
1578
1579 (define-public cl-3bmd
1580 (sbcl-package->cl-source-package sbcl-3bmd))
1581
1582 (define-public ecl-3bmd
1583 (sbcl-package->ecl-package sbcl-3bmd))
1584
1585 (define-public sbcl-3bmd-ext-code-blocks
1586 (let ((commit "192ea13435b605a96ef607df51317056914cabbd"))
1587 (package
1588 (inherit sbcl-3bmd)
1589 (name "sbcl-3bmd-ext-code-blocks")
1590 (arguments
1591 `(#:asd-system-name "3bmd-ext-code-blocks"
1592 #:asd-file "3bmd-ext-code-blocks.asd"))
1593 (inputs
1594 `(("3bmd" ,sbcl-3bmd)
1595 ("colorize" ,sbcl-colorize)))
1596 (synopsis "3bmd extension which adds support for GitHub-style fenced
1597 code blocks")
1598 (description
1599 "3bmd extension which adds support for GitHub-style fenced code blocks,
1600 with @command{colorize} support."))))
1601
1602 (define-public cl-3bmd-ext-code-blocks
1603 (sbcl-package->cl-source-package sbcl-3bmd-ext-code-blocks))
1604
1605 (define-public ecl-3bmd-ext-code-blocks
1606 (sbcl-package->ecl-package sbcl-3bmd-ext-code-blocks))
1607
1608 (define-public sbcl-cl-fad
1609 (package
1610 (name "sbcl-cl-fad")
1611 (version "0.7.6")
1612 (source
1613 (origin
1614 (method git-fetch)
1615 (uri (git-reference
1616 (url "https://github.com/edicl/cl-fad/")
1617 (commit (string-append "v" version))))
1618 (sha256
1619 (base32
1620 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
1621 (file-name (string-append "cl-fad" version "-checkout"))))
1622 (build-system asdf-build-system/sbcl)
1623 (inputs
1624 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
1625 (synopsis "Portable pathname library for Common Lisp")
1626 (description
1627 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
1628 Lisp's standard pathname functions. It is intended to provide some
1629 unification between current CL implementations on Windows, OS X, Linux, and
1630 Unix. Most of the code was written by Peter Seibel for his book Practical
1631 Common Lisp.")
1632 (home-page "https://edicl.github.io/cl-fad/")
1633 (license license:bsd-2)))
1634
1635 (define-public cl-fad
1636 (sbcl-package->cl-source-package sbcl-cl-fad))
1637
1638 (define-public ecl-cl-fad
1639 (sbcl-package->ecl-package sbcl-cl-fad))
1640
1641 (define-public sbcl-rt
1642 (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
1643 (revision "1"))
1644 (package
1645 (name "sbcl-rt")
1646 (version (git-version "1990.12.19" revision commit))
1647 (source
1648 (origin
1649 (method git-fetch)
1650 (uri (git-reference
1651 (url "http://git.kpe.io/rt.git")
1652 (commit commit)))
1653 (file-name (git-file-name name version))
1654 (sha256
1655 (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
1656 (build-system asdf-build-system/sbcl)
1657 (synopsis "MIT Regression Tester")
1658 (description
1659 "RT provides a framework for writing regression test suites.")
1660 (home-page "https://www.cliki.net/rt")
1661 (license license:expat))))
1662
1663 (define-public cl-rt
1664 (sbcl-package->cl-source-package sbcl-rt))
1665
1666 (define-public ecl-rt
1667 (sbcl-package->ecl-package sbcl-rt))
1668
1669 (define-public sbcl-nibbles
1670 (package
1671 (name "sbcl-nibbles")
1672 (version "0.14")
1673 (source
1674 (origin
1675 (method git-fetch)
1676 (uri (git-reference
1677 (url "https://github.com/sharplispers/nibbles/")
1678 (commit (string-append "v" version))))
1679 (sha256
1680 (base32
1681 "1v7qfgpvdr6nz7v63dj69d26dis0kff3rd8xamr1llfdvza2pm8f"))
1682 (file-name (git-file-name "nibbles" version))))
1683 (build-system asdf-build-system/sbcl)
1684 (native-inputs
1685 ;; Tests only.
1686 `(("rt" ,sbcl-rt)))
1687 (synopsis "Common Lisp library for accessing octet-addressed blocks of data")
1688 (description
1689 "When dealing with network protocols and file formats, it's common to
1690 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
1691 flavors. Common Lisp sort of supports this by specifying :element-type for
1692 streams, but that facility is underspecified and there's nothing similar for
1693 read/write from octet vectors. What most people wind up doing is rolling their
1694 own small facility for their particular needs and calling it a day.
1695
1696 This library attempts to be comprehensive and centralize such
1697 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
1698 vectors in signed or unsigned flavors are provided; these functions are also
1699 SETFable. Since it's sometimes desirable to read/write directly from streams,
1700 functions for doing so are also provided. On some implementations,
1701 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
1702 also be supported.")
1703 (home-page "https://github.com/sharplispers/nibbles")
1704 (license license:bsd-3)))
1705
1706 (define-public cl-nibbles
1707 (sbcl-package->cl-source-package sbcl-nibbles))
1708
1709 (define-public ecl-nibbles
1710 (sbcl-package->ecl-package sbcl-nibbles))
1711
1712 (define-public sbcl-ironclad
1713 (package
1714 (name "sbcl-ironclad")
1715 (version "0.50")
1716 (source
1717 (origin
1718 (method git-fetch)
1719 (uri (git-reference
1720 (url "https://github.com/sharplispers/ironclad/")
1721 (commit (string-append "v" version))))
1722 (sha256
1723 (base32 "0k4bib9mbrzalbl9ivkw4a7g4c7bbad1l5jw4pzkifqszy2swkr5"))
1724 (file-name (git-file-name name version))))
1725 (build-system asdf-build-system/sbcl)
1726 (native-inputs
1727 ;; Tests only.
1728 `(("rt" ,sbcl-rt)))
1729 (inputs
1730 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1731 ("flexi-streams" ,sbcl-flexi-streams)))
1732 (synopsis "Cryptographic toolkit written in Common Lisp")
1733 (description
1734 "Ironclad is a cryptography library written entirely in Common Lisp.
1735 It includes support for several popular ciphers, digests, MACs and public key
1736 cryptography algorithms. For several implementations that support Gray
1737 streams, support is included for convenient stream wrappers.")
1738 (home-page "https://github.com/sharplispers/ironclad")
1739 (license license:bsd-3)))
1740
1741 (define-public cl-ironclad
1742 (sbcl-package->cl-source-package sbcl-ironclad))
1743
1744 (define-public ecl-ironclad
1745 (sbcl-package->ecl-package sbcl-ironclad))
1746
1747 (define-public sbcl-named-readtables
1748 (let ((commit "64bd53f37a1694cfde48fc38b8f03901f6f0c05b")
1749 (revision "2"))
1750 (package
1751 (name "sbcl-named-readtables")
1752 (version (git-version "0.9" revision commit))
1753 (source
1754 (origin
1755 (method git-fetch)
1756 (uri (git-reference
1757 (url "https://github.com/melisgl/named-readtables")
1758 (commit commit)))
1759 (sha256
1760 (base32 "01l4831m7k84qvhzyx0qgdl50isr4zmp40qf6dfq2iqcaj8y4h3n"))
1761 (file-name (git-file-name "named-readtables" version))))
1762 (build-system asdf-build-system/sbcl)
1763 (arguments
1764 ;; Tests seem to be broken.
1765 `(#:tests? #f))
1766 (home-page "https://github.com/melisgl/named-readtables/")
1767 (synopsis "Library that creates a namespace for named readtables")
1768 (description "Named readtables is a library that creates a namespace for
1769 named readtables, which is akin to package namespacing in Common Lisp.")
1770 (license license:bsd-3))))
1771
1772 (define-public cl-named-readtables
1773 (sbcl-package->cl-source-package sbcl-named-readtables))
1774
1775 (define-public ecl-named-readtables
1776 (sbcl-package->ecl-package sbcl-named-readtables))
1777
1778 (define-public sbcl-pythonic-string-reader
1779 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
1780 (package
1781 (name "sbcl-pythonic-string-reader")
1782 (version (git-version "0.0.0" "1" commit))
1783 (source
1784 (origin
1785 (method git-fetch)
1786 (uri (git-reference
1787 (url "https://github.com/smithzvk/pythonic-string-reader/")
1788 (commit commit)))
1789 (sha256
1790 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
1791 (file-name (git-file-name "pythonic-string-reader" version))))
1792 (build-system asdf-build-system/sbcl)
1793 (inputs
1794 `(("named-readtables" ,sbcl-named-readtables)))
1795 (home-page "https://github.com/smithzvk/pythonic-string-reader")
1796 (synopsis "Read table modification inspired by Python's three quote strings")
1797 (description "This piece of code sets up some reader macros that make it
1798 simpler to input string literals which contain backslashes and double quotes
1799 This is very useful for writing complicated docstrings and, as it turns out,
1800 writing code that contains string literals that contain code themselves.")
1801 (license license:bsd-3))))
1802
1803 (define-public cl-pythonic-string-reader
1804 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
1805
1806 (define-public ecl-pythonic-string-reader
1807 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
1808
1809 ;; SLIME does not have a ASDF system definition to build all of Swank. As a
1810 ;; result, the asdf-build-system/sbcl will produce an almost empty package.
1811 ;; Some work was done to fix this at
1812 ;; https://github.com/sionescu/slime/tree/swank-asdf but it was never merged
1813 ;; and is now lagging behind. Building SBCL fasls might not be worth the
1814 ;; hassle, so let's just ship the source then.
1815 (define-public cl-slime-swank
1816 (package
1817 (name "cl-slime-swank")
1818 (version "2.24")
1819 (source
1820 (origin
1821 (file-name (string-append name "-" version ".tar.gz"))
1822 (method git-fetch)
1823 (uri (git-reference
1824 (url "https://github.com/slime/slime/")
1825 (commit (string-append "v" version))))
1826 (sha256
1827 (base32
1828 "0js24x42m7b5iymb4rxz501dff19vav5pywnzv50b673rbkaaqvh"))))
1829 (build-system asdf-build-system/source)
1830 (home-page "https://github.com/slime/slime")
1831 (synopsis "Common Lisp Swank server")
1832 (description
1833 "This is only useful if you want to start a Swank server in a Lisp
1834 processes that doesn't run under Emacs. Lisp processes created by
1835 @command{M-x slime} automatically start the server.")
1836 (license (list license:gpl2+ license:public-domain))))
1837
1838 (define-public sbcl-slime-swank
1839 (deprecated-package "sbcl-slime-swank" cl-slime-swank))
1840
1841 (define-public sbcl-mgl-pax
1842 (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
1843 (package
1844 (name "sbcl-mgl-pax")
1845 (version (git-version "0.0.0" "1" commit))
1846 (source
1847 (origin
1848 (method git-fetch)
1849 (uri (git-reference
1850 (url "https://github.com/melisgl/mgl-pax")
1851 (commit commit)))
1852 (sha256
1853 (base32
1854 "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
1855 (file-name (git-file-name "mgl-pax" version))))
1856 (build-system asdf-build-system/sbcl)
1857 (inputs
1858 `(("3bmd" ,sbcl-3bmd)
1859 ("3bmd-ext-code-blocks" ,sbcl-3bmd-ext-code-blocks)
1860 ("babel" ,sbcl-babel)
1861 ("cl-fad" ,sbcl-cl-fad)
1862 ("ironclad" ,sbcl-ironclad)
1863 ("named-readtables" ,sbcl-named-readtables)
1864 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)))
1865 (propagated-inputs
1866 ;; Packages having mgl-pax as input complain that it can't find
1867 ;; swank if we put it in inputs, so let's put it in propageted-inputs.
1868 `(("swank" ,cl-slime-swank)))
1869 (synopsis "Exploratory programming environment and documentation generator")
1870 (description
1871 "PAX provides an extremely poor man's Explorable Programming
1872 environment. Narrative primarily lives in so called sections that mix markdown
1873 docstrings with references to functions, variables, etc, all of which should
1874 probably have their own docstrings.
1875
1876 The primary focus is on making code easily explorable by using SLIME's
1877 @command{M-.} (@command{slime-edit-definition}). See how to enable some
1878 fanciness in Emacs Integration. Generating documentation from sections and all
1879 the referenced items in Markdown or HTML format is also implemented.
1880
1881 With the simplistic tools provided, one may accomplish similar effects as with
1882 Literate Programming, but documentation is generated from code, not vice versa
1883 and there is no support for chunking yet. Code is first, code must look
1884 pretty, documentation is code.")
1885 (home-page "http://quotenil.com/")
1886 (license license:expat))))
1887
1888 (define-public cl-mgl-pax
1889 (sbcl-package->cl-source-package sbcl-mgl-pax))
1890
1891 (define-public ecl-mgl-pax
1892 (sbcl-package->ecl-package sbcl-mgl-pax))
1893
1894 (define-public sbcl-lisp-unit
1895 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
1896 (package
1897 (name "sbcl-lisp-unit")
1898 (version (git-version "0.0.0" "1" commit))
1899 (source
1900 (origin
1901 (method git-fetch)
1902 (uri (git-reference
1903 (url "https://github.com/OdonataResearchLLC/lisp-unit")
1904 (commit commit)))
1905 (sha256
1906 (base32
1907 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
1908 (file-name (git-file-name "lisp-unit" version))))
1909 (build-system asdf-build-system/sbcl)
1910 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
1911 (description
1912 "@command{lisp-unit} is a Common Lisp library that supports unit
1913 testing. It is an extension of the library written by Chris Riesbeck.")
1914 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
1915 (license license:expat))))
1916
1917 (define-public cl-lisp-unit
1918 (sbcl-package->cl-source-package sbcl-lisp-unit))
1919
1920 (define-public ecl-lisp-unit
1921 (sbcl-package->ecl-package sbcl-lisp-unit))
1922
1923 (define-public sbcl-anaphora
1924 (package
1925 (name "sbcl-anaphora")
1926 (version "0.9.6")
1927 (source
1928 (origin
1929 (method git-fetch)
1930 (uri (git-reference
1931 (url "https://github.com/tokenrove/anaphora")
1932 (commit version)))
1933 (sha256
1934 (base32
1935 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
1936 (file-name (git-file-name "anaphora" version))))
1937 (build-system asdf-build-system/sbcl)
1938 (native-inputs
1939 `(("rt" ,sbcl-rt)))
1940 (synopsis "The anaphoric macro collection from Hell")
1941 (description
1942 "Anaphora is the anaphoric macro collection from Hell: it includes many
1943 new fiends in addition to old friends like @command{aif} and
1944 @command{awhen}.")
1945 (home-page "https://github.com/tokenrove/anaphora")
1946 (license license:public-domain)))
1947
1948 (define-public cl-anaphora
1949 (sbcl-package->cl-source-package sbcl-anaphora))
1950
1951 (define-public ecl-anaphora
1952 (sbcl-package->ecl-package sbcl-anaphora))
1953
1954 (define-public sbcl-lift
1955 (let ((commit "7d49a66c62759535624037826891152223d4206c"))
1956 (package
1957 (name "sbcl-lift")
1958 (version (git-version "1.7.1" "1" commit))
1959 (source
1960 (origin
1961 (method git-fetch)
1962 (uri (git-reference
1963 (url "https://github.com/gwkkwg/lift")
1964 (commit commit)))
1965 (sha256
1966 (base32
1967 "127v5avpz1i4m0lkaxqrq8hrl69rdazqaxf6s8awf0nd7wj2g4dp"))
1968 (file-name (git-file-name "lift" version))
1969 (modules '((guix build utils)))
1970 (snippet
1971 ;; Don't keep the bundled website
1972 `(begin
1973 (delete-file-recursively "website")
1974 #t))))
1975 (build-system asdf-build-system/sbcl)
1976 (arguments
1977 ;; The tests require a debugger, but we run with the debugger disabled.
1978 '(#:tests? #f))
1979 (synopsis "LIsp Framework for Testing")
1980 (description
1981 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
1982 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
1983 testcases are organized into hierarchical testsuites each of which can have
1984 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
1985 supports randomized testing, benchmarking, profiling, and reporting.")
1986 (home-page "https://github.com/gwkkwg/lift")
1987 (license license:expat))))
1988
1989 (define-public cl-lift
1990 (sbcl-package->cl-source-package sbcl-lift))
1991
1992 (define-public ecl-lift
1993 (sbcl-package->ecl-package sbcl-lift))
1994
1995 (define-public sbcl-let-plus
1996 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
1997 (package
1998 (name "sbcl-let-plus")
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/sharplispers/let-plus")
2005 (commit commit)))
2006 (sha256
2007 (base32
2008 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
2009 (file-name (git-file-name "let-plus" version))))
2010 (build-system asdf-build-system/sbcl)
2011 (inputs
2012 `(("alexandria" ,sbcl-alexandria)
2013 ("anaphora" ,sbcl-anaphora)))
2014 (native-inputs
2015 `(("lift" ,sbcl-lift)))
2016 (synopsis "Destructuring extension of let*")
2017 (description
2018 "This library implements the let+ macro, which is a dectructuring
2019 extension of let*. It features:
2020
2021 @itemize
2022 @item Clean, consistent syntax and small implementation (less than 300 LOC,
2023 not counting tests)
2024 @item Placeholder macros allow editor hints and syntax highlighting
2025 @item @command{&ign} for ignored values (in forms where that makes sense)
2026 @item Very easy to extend
2027 @end itemize\n")
2028 (home-page "https://github.com/sharplispers/let-plus")
2029 (license license:boost1.0))))
2030
2031 (define-public cl-let-plus
2032 (sbcl-package->cl-source-package sbcl-let-plus))
2033
2034 (define-public ecl-let-plus
2035 (sbcl-package->ecl-package sbcl-let-plus))
2036
2037 (define-public sbcl-cl-colors
2038 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
2039 (package
2040 (name "sbcl-cl-colors")
2041 (version (git-version "0.0.0" "1" commit))
2042 (source
2043 (origin
2044 (method git-fetch)
2045 (uri (git-reference
2046 (url "https://github.com/tpapp/cl-colors")
2047 (commit commit)))
2048 (sha256
2049 (base32
2050 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2051 (file-name (git-file-name "cl-colors" version))))
2052 (build-system asdf-build-system/sbcl)
2053 (inputs
2054 `(("alexandria" ,sbcl-alexandria)
2055 ("let-plus" ,sbcl-let-plus)))
2056 (synopsis "Simple color library for Common Lisp")
2057 (description
2058 "This is a very simple color library for Common Lisp, providing
2059
2060 @itemize
2061 @item Types for representing colors in HSV and RGB spaces.
2062 @item Simple conversion functions between the above types (and also
2063 hexadecimal representation for RGB).
2064 @item Some predefined colors (currently X11 color names – of course the
2065 library does not depend on X11).Because color in your terminal is nice.
2066 @end itemize
2067
2068 This library is no longer supported by its author.")
2069 (home-page "https://github.com/tpapp/cl-colors")
2070 (license license:boost1.0))))
2071
2072 (define-public cl-colors
2073 (sbcl-package->cl-source-package sbcl-cl-colors))
2074
2075 (define-public ecl-cl-colors
2076 (sbcl-package->ecl-package sbcl-cl-colors))
2077
2078 (define-public sbcl-cl-ansi-text
2079 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2080 (package
2081 (name "sbcl-cl-ansi-text")
2082 (version (git-version "1.0.0" "1" commit))
2083 (source
2084 (origin
2085 (method git-fetch)
2086 (uri (git-reference
2087 (url "https://github.com/pnathan/cl-ansi-text")
2088 (commit commit)))
2089 (sha256
2090 (base32
2091 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2092 (file-name (git-file-name "cl-ansi-text" version))))
2093 (build-system asdf-build-system/sbcl)
2094 (inputs
2095 `(("alexandria" ,sbcl-alexandria)
2096 ("cl-colors" ,sbcl-cl-colors)))
2097 (native-inputs
2098 `(("fiveam" ,sbcl-fiveam)))
2099 (synopsis "ANSI terminal color implementation for Common Lisp")
2100 (description
2101 "@command{cl-ansi-text} provides utilities which enable printing to an
2102 ANSI terminal with colored text. It provides the macro @command{with-color}
2103 which causes everything printed in the body to be displayed with the provided
2104 color. It further provides functions which will print the argument with the
2105 named color.")
2106 (home-page "https://github.com/pnathan/cl-ansi-text")
2107 (license license:llgpl))))
2108
2109 (define-public cl-ansi-text
2110 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2111
2112 (define-public ecl-cl-ansi-text
2113 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2114
2115 (define-public sbcl-prove-asdf
2116 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2117 (package
2118 (name "sbcl-prove-asdf")
2119 (version (git-version "1.0.0" "1" commit))
2120 (source
2121 (origin
2122 (method git-fetch)
2123 (uri (git-reference
2124 (url "https://github.com/fukamachi/prove")
2125 (commit commit)))
2126 (sha256
2127 (base32
2128 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2129 (file-name (git-file-name "prove" version))))
2130 (build-system asdf-build-system/sbcl)
2131 (arguments
2132 `(#:asd-file "prove-asdf.asd"))
2133 (synopsis "Test requirement for the Common Lisp 'prove' library")
2134 (description
2135 "Test requirement for the Common Lisp @command{prove} library.")
2136 (home-page "https://github.com/fukamachi/prove")
2137 (license license:expat))))
2138
2139 (define-public cl-prove-asdf
2140 (sbcl-package->cl-source-package sbcl-prove-asdf))
2141
2142 (define-public ecl-prove-asdf
2143 (sbcl-package->ecl-package sbcl-prove-asdf))
2144
2145 (define-public sbcl-prove
2146 (package
2147 (inherit sbcl-prove-asdf)
2148 (name "sbcl-prove")
2149 (inputs
2150 `(("alexandria" ,sbcl-alexandria)
2151 ("cl-ppcre" ,sbcl-cl-ppcre)
2152 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2153 (native-inputs
2154 `(("prove-asdf" ,sbcl-prove-asdf)))
2155 (arguments
2156 `(#:asd-file "prove.asd"))
2157 (synopsis "Yet another unit testing framework for Common Lisp")
2158 (description
2159 "This project was originally called @command{cl-test-more}.
2160 @command{prove} is yet another unit testing framework for Common Lisp. The
2161 advantages of @command{prove} are:
2162
2163 @itemize
2164 @item Various simple functions for testing and informative error messages
2165 @item ASDF integration
2166 @item Extensible test reporters
2167 @item Colorizes the report if it's available (note for SLIME)
2168 @item Reports test durations
2169 @end itemize\n")))
2170
2171 (define-public cl-prove
2172 (sbcl-package->cl-source-package sbcl-prove))
2173
2174 (define-public ecl-prove
2175 (sbcl-package->ecl-package sbcl-prove))
2176
2177 (define-public sbcl-proc-parse
2178 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2179 (package
2180 (name "sbcl-proc-parse")
2181 (version (git-version "0.0.0" "1" commit))
2182 (source
2183 (origin
2184 (method git-fetch)
2185 (uri (git-reference
2186 (url "https://github.com/fukamachi/proc-parse")
2187 (commit commit)))
2188 (sha256
2189 (base32
2190 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2191 (file-name (git-file-name "proc-parse" version))))
2192 (build-system asdf-build-system/sbcl)
2193 (inputs
2194 `(("alexandria" ,sbcl-alexandria)
2195 ("babel" ,sbcl-babel)))
2196 (native-inputs
2197 `(("prove" ,sbcl-prove)
2198 ("prove-asdf" ,sbcl-prove-asdf)))
2199 (arguments
2200 ;; TODO: Tests don't find "proc-parse-test", why?
2201 `(#:tests? #f))
2202 (synopsis "Procedural vector parser")
2203 (description
2204 "This is a string/octets parser library for Common Lisp with speed and
2205 readability in mind. Unlike other libraries, the code is not a
2206 pattern-matching-like, but a char-by-char procedural parser.")
2207 (home-page "https://github.com/fukamachi/proc-parse")
2208 (license license:bsd-2))))
2209
2210 (define-public cl-proc-parse
2211 (sbcl-package->cl-source-package sbcl-proc-parse))
2212
2213 (define-public ecl-proc-parse
2214 (sbcl-package->ecl-package sbcl-proc-parse))
2215
2216 (define-public sbcl-parse-float
2217 (let ((commit "2aae569f2a4b2eb3bfb5401a959425dcf151b09c"))
2218 (package
2219 (name "sbcl-parse-float")
2220 (version (git-version "0.0.0" "1" commit))
2221 (source
2222 (origin
2223 (method git-fetch)
2224 (uri (git-reference
2225 (url "https://github.com/soemraws/parse-float")
2226 (commit commit)))
2227 (sha256
2228 (base32
2229 "08xw8cchhmqcc0byng69m3f5a2izc9y2290jzz2k0qrbibp1fdk7"))
2230 (file-name (git-file-name "proc-parse" version))))
2231 (build-system asdf-build-system/sbcl)
2232 (inputs
2233 `(("alexandria" ,sbcl-alexandria)
2234 ("babel" ,sbcl-babel)))
2235 (native-inputs
2236 `(("prove" ,sbcl-prove)
2237 ("prove-asdf" ,sbcl-prove-asdf)))
2238 (arguments
2239 ;; TODO: Tests don't find "proc-parse-test", why?
2240 `(#:tests? #f))
2241 (synopsis "Parse a floating point value from a string in Common Lisp")
2242 (description
2243 "This package exports the following function to parse floating-point
2244 values from a string in Common Lisp.")
2245 (home-page "https://github.com/soemraws/parse-float")
2246 (license license:public-domain))))
2247
2248 (define-public cl-parse-float
2249 (sbcl-package->cl-source-package sbcl-parse-float))
2250
2251 (define-public ecl-parse-float
2252 (sbcl-package->ecl-package sbcl-parse-float))
2253
2254 (define-public sbcl-ascii-strings
2255 (let ((revision "1")
2256 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2257 (package
2258 (name "sbcl-ascii-strings")
2259 (version (string-append "0-" revision "." (string-take changeset 7)))
2260 (source
2261 (origin
2262 (method hg-fetch)
2263 (uri (hg-reference
2264 (url "https://bitbucket.org/vityok/cl-string-match/")
2265 (changeset changeset)))
2266 (sha256
2267 (base32
2268 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2269 (file-name (git-file-name "cl-string-match" version))))
2270 (build-system asdf-build-system/sbcl)
2271 (inputs
2272 `(("alexandria" ,sbcl-alexandria)
2273 ("babel" ,sbcl-babel)))
2274 (arguments
2275 `(#:asd-file "ascii-strings.asd"))
2276 (synopsis "Operations on ASCII strings")
2277 (description
2278 "Operations on ASCII strings. Essentially this can be any kind of
2279 single-byte encoded strings.")
2280 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2281 (license license:bsd-3))))
2282
2283 (define-public cl-ascii-strings
2284 (sbcl-package->cl-source-package sbcl-ascii-strings))
2285
2286 (define-public ecl-ascii-strings
2287 (sbcl-package->ecl-package sbcl-ascii-strings))
2288
2289 (define-public sbcl-simple-scanf
2290 (package
2291 (inherit sbcl-ascii-strings)
2292 (name "sbcl-simple-scanf")
2293 (inputs
2294 `(("alexandria" ,sbcl-alexandria)
2295 ("iterate" ,sbcl-iterate)
2296 ("proc-parse" ,sbcl-proc-parse)
2297 ("parse-float" ,sbcl-parse-float)))
2298 (arguments
2299 `(#:asd-file "simple-scanf.asd"))
2300 (synopsis "Simple scanf-like functionality implementation")
2301 (description
2302 "A simple scanf-like functionality implementation.")))
2303
2304 (define-public cl-simple-scanf
2305 (sbcl-package->cl-source-package sbcl-simple-scanf))
2306
2307 (define-public ecl-simple-scanf
2308 (sbcl-package->ecl-package sbcl-simple-scanf))
2309
2310 (define-public sbcl-cl-string-match
2311 (package
2312 (inherit sbcl-ascii-strings)
2313 (name "sbcl-cl-string-match")
2314 (inputs
2315 `(("alexandria" ,sbcl-alexandria)
2316 ("ascii-strings" ,sbcl-ascii-strings)
2317 ("yacc" ,sbcl-cl-yacc)
2318 ("jpl-util" ,sbcl-jpl-util)
2319 ("jpl-queues" ,sbcl-jpl-queues)
2320 ("mgl-pax" ,sbcl-mgl-pax)
2321 ("iterate" ,sbcl-iterate)))
2322 ;; TODO: Tests are not evaluated properly.
2323 (native-inputs
2324 ;; For testing:
2325 `(("lisp-unit" ,sbcl-lisp-unit)
2326 ("simple-scanf" ,sbcl-simple-scanf)))
2327 (arguments
2328 `(#:tests? #f
2329 #:asd-file "cl-string-match.asd"))
2330 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
2331 (description
2332 "@command{cl-strings} is a small, portable, dependency-free set of
2333 utilities that make it even easier to manipulate text in Common Lisp. It has
2334 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")))
2335
2336 (define-public cl-string-match
2337 (sbcl-package->cl-source-package sbcl-cl-string-match))
2338
2339 (define-public ecl-cl-string-match
2340 (sbcl-package->ecl-package sbcl-cl-string-match))
2341
2342 (define-public sbcl-ptester
2343 (let ((commit "fe69fde54f4bce00ce577feb918796c293fc7253")
2344 (revision "1"))
2345 (package
2346 (name "sbcl-ptester")
2347 (version (git-version "2.1.3" revision commit))
2348 (source
2349 (origin
2350 (method git-fetch)
2351 (uri (git-reference
2352 (url "http://git.kpe.io/ptester.git")
2353 (commit commit)))
2354 (file-name (git-file-name name version))
2355 (sha256
2356 (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf"))))
2357 (build-system asdf-build-system/sbcl)
2358 (home-page "http://quickdocs.org/ptester/")
2359 (synopsis "Portable test harness package")
2360 (description
2361 "@command{ptester} is a portable testing framework based on Franz's
2362 tester module.")
2363 (license license:llgpl))))
2364
2365 (define-public cl-ptester
2366 (sbcl-package->cl-source-package sbcl-ptester))
2367
2368 (define-public ecl-ptester
2369 (sbcl-package->ecl-package sbcl-ptester))
2370
2371 (define-public sbcl-puri
2372 (let ((commit "ef5afb9e5286c8e952d4344f019c1a636a717b97")
2373 (revision "1"))
2374 (package
2375 (name "sbcl-puri")
2376 (version (git-version "1.5.7" revision commit))
2377 (source
2378 (origin
2379 (method git-fetch)
2380 (uri (git-reference
2381 (url "http://git.kpe.io/puri.git")
2382 (commit commit)))
2383 (file-name (git-file-name name version))
2384 (sha256
2385 (base32 "1vm25pdl92laj72p5vyd538kf3cjy2655z6bdc99h20ana2p231s"))))
2386 (build-system asdf-build-system/sbcl)
2387 (native-inputs
2388 `(("ptester" ,sbcl-ptester)))
2389 (home-page "http://quickdocs.org/puri/")
2390 (synopsis "Portable URI Library")
2391 (description
2392 "This is a portable Universal Resource Identifier library for Common
2393 Lisp programs. It parses URI according to the RFC 2396 specification.")
2394 (license license:llgpl))))
2395
2396 (define-public cl-puri
2397 (sbcl-package->cl-source-package sbcl-puri))
2398
2399 (define-public ecl-puri
2400 (sbcl-package->ecl-package sbcl-puri))
2401
2402 (define-public sbcl-queues
2403 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2404 (package
2405 (name "sbcl-queues")
2406 (version (git-version "0.0.0" "1" commit))
2407 (source
2408 (origin
2409 (method git-fetch)
2410 (uri (git-reference
2411 (url "https://github.com/oconnore/queues")
2412 (commit commit)))
2413 (file-name (git-file-name "queues" version))
2414 (sha256
2415 (base32
2416 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2417 (build-system asdf-build-system/sbcl)
2418 (home-page "https://github.com/oconnore/queues")
2419 (synopsis "Common Lisp queue library")
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
2426 (sbcl-package->cl-source-package sbcl-queues))
2427
2428 (define-public ecl-queues
2429 (sbcl-package->ecl-package sbcl-queues))
2430
2431 (define-public sbcl-queues.simple-queue
2432 (package
2433 (inherit sbcl-queues)
2434 (name "sbcl-queues.simple-queue")
2435 (inputs
2436 `(("sbcl-queues" ,sbcl-queues)))
2437 (arguments
2438 `(#:asd-file "queues.simple-queue.asd"))
2439 (synopsis "Simple queue 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.simple-queue
2446 (sbcl-package->cl-source-package sbcl-queues.simple-queue))
2447
2448 (define-public ecl-queues.simple-queue
2449 (sbcl-package->ecl-package sbcl-queues.simple-queue))
2450
2451 (define-public sbcl-queues.simple-cqueue
2452 (package
2453 (inherit sbcl-queues)
2454 (name "sbcl-queues.simple-cqueue")
2455 (inputs
2456 `(("sbcl-queues" ,sbcl-queues)
2457 ("sbcl-queues.simple-queue" ,sbcl-queues.simple-queue)
2458 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2459 (arguments
2460 `(#:asd-file "queues.simple-cqueue.asd"))
2461 (synopsis "Thread safe 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.simple-cqueue
2468 (sbcl-package->cl-source-package sbcl-queues.simple-cqueue))
2469
2470 (define-public ecl-queues.simple-cqueue
2471 (sbcl-package->ecl-package sbcl-queues.simple-cqueue))
2472
2473 (define-public sbcl-queues.priority-queue
2474 (package
2475 (inherit sbcl-queues)
2476 (name "sbcl-queues.priority-queue")
2477 (inputs
2478 `(("sbcl-queues" ,sbcl-queues)))
2479 (arguments
2480 `(#:asd-file "queues.priority-queue.asd"))
2481 (synopsis "Priority queue (Fibonacci) implementation")
2482 (description
2483 "This is a simple queue library for Common Lisp with features such as
2484 non-consing thread safe queues and fibonacci priority queues.")
2485 (license license:expat)))
2486
2487 (define-public cl-queues.priority-queue
2488 (sbcl-package->cl-source-package sbcl-queues.priority-queue))
2489
2490 (define-public ecl-queues.priority-queue
2491 (sbcl-package->ecl-package sbcl-queues.priority-queue))
2492
2493 (define-public sbcl-queues.priority-cqueue
2494 (package
2495 (inherit sbcl-queues)
2496 (name "sbcl-queues.priority-cqueue")
2497 (inputs
2498 `(("sbcl-queues" ,sbcl-queues)
2499 ("sbcl-queues.priority-queue" ,sbcl-queues.priority-queue)
2500 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2501 (arguments
2502 `(#:asd-file "queues.priority-cqueue.asd"))
2503 (synopsis "Thread safe fibonacci priority queue implementation")
2504 (description
2505 "This is a simple queue library for Common Lisp with features such as
2506 non-consing thread safe queues and fibonacci priority queues.")
2507 (license license:expat)))
2508
2509 (define-public cl-queues.priority-cqueue
2510 (sbcl-package->cl-source-package sbcl-queues.priority-cqueue))
2511
2512 (define-public ecl-queues.priority-cqueue
2513 (sbcl-package->ecl-package sbcl-queues.priority-cqueue))
2514
2515 (define sbcl-cffi-bootstrap
2516 (package
2517 (name "sbcl-cffi-bootstrap")
2518 (version "0.21.0")
2519 (source
2520 (origin
2521 (method git-fetch)
2522 (uri (git-reference
2523 (url "https://github.com/cffi/cffi")
2524 (commit (string-append "v" version))))
2525 (file-name (git-file-name "cffi-bootstrap" version))
2526 (sha256
2527 (base32 "1qalargz9bhp850qv60ffwpdqi4xirzar4l3g6qcg8yc6xqf2cjk"))))
2528 (build-system asdf-build-system/sbcl)
2529 (inputs
2530 `(("libffi" ,libffi)
2531 ("alexandria" ,sbcl-alexandria)
2532 ("babel" ,sbcl-babel)
2533 ("trivial-features" ,sbcl-trivial-features)))
2534 (native-inputs
2535 `(("pkg-config" ,pkg-config)))
2536 (arguments
2537 '(#:phases
2538 (modify-phases %standard-phases
2539 (add-after 'unpack 'fix-paths
2540 (lambda* (#:key inputs #:allow-other-keys)
2541 (substitute* "libffi/libffi.lisp"
2542 (("libffi.so.7" all) (string-append
2543 (assoc-ref inputs "libffi")
2544 "/lib/" all)))
2545 (substitute* "toolchain/c-toolchain.lisp"
2546 (("\"cc\"") (format #f "~S" (which "gcc")))))))
2547 #:asd-system-name "cffi"
2548 #:tests? #f))
2549 (home-page "https://common-lisp.net/project/cffi/")
2550 (synopsis "Common Foreign Function Interface for Common Lisp")
2551 (description "The Common Foreign Function Interface (CFFI)
2552 purports to be a portable foreign function interface for Common Lisp.
2553 The CFFI library is composed of a Lisp-implementation-specific backend
2554 in the CFFI-SYS package, and a portable frontend in the CFFI
2555 package.")
2556 (license license:expat)))
2557
2558 (define-public sbcl-cffi-toolchain
2559 (package
2560 (inherit sbcl-cffi-bootstrap)
2561 (name "sbcl-cffi-toolchain")
2562 (inputs
2563 `(("libffi" ,libffi)
2564 ("sbcl-cffi" ,sbcl-cffi-bootstrap)))
2565 (arguments
2566 (substitute-keyword-arguments (package-arguments sbcl-cffi-bootstrap)
2567 ((#:asd-system-name _) #f)
2568 ((#:tests? _) #t)))))
2569
2570 (define-public sbcl-cffi-libffi
2571 (package
2572 (inherit sbcl-cffi-toolchain)
2573 (name "sbcl-cffi-libffi")
2574 (inputs
2575 `(("cffi" ,sbcl-cffi-bootstrap)
2576 ("cffi-grovel" ,sbcl-cffi-grovel)
2577 ("trivial-features" ,sbcl-trivial-features)
2578 ("libffi" ,libffi)))))
2579
2580 (define-public sbcl-cffi-grovel
2581 (package
2582 (inherit sbcl-cffi-toolchain)
2583 (name "sbcl-cffi-grovel")
2584 (inputs
2585 `(("libffi" ,libffi)
2586 ("cffi" ,sbcl-cffi-bootstrap)
2587 ("cffi-toolchain" ,sbcl-cffi-toolchain)
2588 ("alexandria" ,sbcl-alexandria)))
2589 (arguments
2590 (substitute-keyword-arguments (package-arguments sbcl-cffi-toolchain)
2591 ((#:phases phases)
2592 `(modify-phases ,phases
2593 (add-after 'build 'install-headers
2594 (lambda* (#:key outputs #:allow-other-keys)
2595 (install-file "grovel/common.h"
2596 (string-append
2597 (assoc-ref outputs "out")
2598 "/include/grovel"))))))))))
2599
2600 (define-public sbcl-cffi
2601 (package
2602 (inherit sbcl-cffi-toolchain)
2603 (name "sbcl-cffi")
2604 (inputs (package-inputs sbcl-cffi-bootstrap))
2605 (native-inputs
2606 `(("cffi-grovel" ,sbcl-cffi-grovel)
2607 ("cffi-libffi" ,sbcl-cffi-libffi)
2608 ("rt" ,sbcl-rt)
2609 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2610 ,@(package-native-inputs sbcl-cffi-bootstrap)))))
2611
2612 (define-public cl-cffi
2613 (sbcl-package->cl-source-package sbcl-cffi))
2614
2615 (define-public sbcl-cffi-uffi-compat
2616 (package
2617 (inherit sbcl-cffi-toolchain)
2618 (name "sbcl-cffi-uffi-compat")
2619 (native-inputs
2620 `(,@(package-inputs sbcl-cffi-bootstrap))) ; For fix-paths phase
2621 (inputs
2622 `(("cffi" ,sbcl-cffi)))
2623 (synopsis "UFFI Compatibility Layer for CFFI")))
2624
2625 (define-public cl-cffi-uffi-compat
2626 (sbcl-package->cl-source-package sbcl-cffi-uffi-compat))
2627
2628 (define-public sbcl-cl-sqlite
2629 (let ((commit "c738e66d4266ef63a1debc4ef4a1b871a068c112"))
2630 (package
2631 (name "sbcl-cl-sqlite")
2632 (version (git-version "0.2" "1" commit))
2633 (source
2634 (origin
2635 (method git-fetch)
2636 (uri (git-reference
2637 (url "https://github.com/dmitryvk/cl-sqlite")
2638 (commit commit)))
2639 (file-name (git-file-name "cl-sqlite" version))
2640 (sha256
2641 (base32
2642 "1ng45k1hdb84sqjryrfx93g66bsbybmpy301wd0fdybnc5jzr36q"))))
2643 (build-system asdf-build-system/sbcl)
2644 (inputs
2645 `(("iterate" ,sbcl-iterate)
2646 ("cffi" ,sbcl-cffi)
2647 ("sqlite" ,sqlite)))
2648 (native-inputs
2649 `(("fiveam" ,sbcl-fiveam)
2650 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2651 (arguments
2652 `(#:tests? #f ; Upstream seems to have issues with tests: https://github.com/dmitryvk/cl-sqlite/issues/7
2653 #:asd-file "sqlite.asd"
2654 #:asd-system-name "sqlite"
2655 #:phases
2656 (modify-phases %standard-phases
2657 (add-after 'unpack 'fix-paths
2658 (lambda* (#:key inputs #:allow-other-keys)
2659 (substitute* "sqlite-ffi.lisp"
2660 (("libsqlite3" all) (string-append
2661 (assoc-ref inputs "sqlite")"/lib/" all))))))))
2662 (home-page "https://common-lisp.net/project/cl-sqlite/")
2663 (synopsis "Common Lisp binding for SQLite")
2664 (description
2665 "The @command{cl-sqlite} package is an interface to the SQLite embedded
2666 relational database engine.")
2667 (license license:public-domain))))
2668
2669 (define-public cl-sqlite
2670 (sbcl-package->cl-source-package sbcl-cl-sqlite))
2671
2672 (define-public sbcl-parenscript
2673 ;; Source archives are overwritten on every release, we use the Git repo instead.
2674 (let ((commit "7a1ac46353cecd144fc91915ba9f122aafcf4766"))
2675 (package
2676 (name "sbcl-parenscript")
2677 (version (git-version "2.7.1" "1" commit))
2678 (source
2679 (origin
2680 (method git-fetch)
2681 (uri (git-reference
2682 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
2683 (commit commit)))
2684 (file-name (git-file-name "parenscript" version))
2685 (sha256
2686 (base32
2687 "0c22lqarrpbq82dg1sb3y6mp6w2faczp34ymzhnmff88yfq1xzsf"))))
2688 (build-system asdf-build-system/sbcl)
2689 (inputs
2690 `(("cl-ppcre" ,sbcl-cl-ppcre)
2691 ("anaphora" ,sbcl-anaphora)
2692 ("named-readtables" ,sbcl-named-readtables)))
2693 (home-page "https://common-lisp.net/project/parenscript/")
2694 (synopsis "Translator from a subset of Common Lisp to JavaScript")
2695 (description
2696 "Parenscript is a translator from an extended subset of Common Lisp to
2697 JavaScript. Parenscript code can run almost identically on both the
2698 browser (as JavaScript) and server (as Common Lisp).
2699
2700 Parenscript code is treated the same way as Common Lisp code, making the full
2701 power of Lisp macros available for JavaScript. This provides a web
2702 development environment that is unmatched in its ability to reduce code
2703 duplication and provide advanced meta-programming facilities to web
2704 developers.
2705
2706 At the same time, Parenscript is different from almost all other \"language
2707 X\" to JavaScript translators in that it imposes almost no overhead:
2708
2709 @itemize
2710 @item No run-time dependencies: Any piece of Parenscript code is runnable
2711 as-is. There are no JavaScript files to include.
2712 @item Native types: Parenscript works entirely with native JavaScript data
2713 types. There are no new types introduced, and object prototypes are not
2714 touched.
2715 @item Native calling convention: Any JavaScript code can be called without the
2716 need for bindings. Likewise, Parenscript can be used to make efficient,
2717 self-contained JavaScript libraries.
2718 @item Readable code: Parenscript generates concise, formatted, idiomatic
2719 JavaScript code. Identifier names are preserved. This enables seamless
2720 debugging in tools like Firebug.
2721 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
2722 Lisp features. The generated code is almost as fast as hand-written
2723 JavaScript.
2724 @end itemize\n")
2725 (license license:bsd-3))))
2726
2727 (define-public cl-parenscript
2728 (sbcl-package->cl-source-package sbcl-parenscript))
2729
2730 (define-public ecl-parenscript
2731 (sbcl-package->ecl-package sbcl-parenscript))
2732
2733 (define-public sbcl-cl-json
2734 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
2735 (package
2736 (name "sbcl-cl-json")
2737 (version (git-version "0.5" "1" commit))
2738 (source
2739 (origin
2740 (method git-fetch)
2741 (uri (git-reference
2742 (url "https://github.com/hankhero/cl-json")
2743 (commit commit)))
2744 (file-name (git-file-name "cl-json" version))
2745 (sha256
2746 (base32
2747 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
2748 (build-system asdf-build-system/sbcl)
2749 (native-inputs
2750 `(("fiveam" ,sbcl-fiveam)))
2751 (home-page "https://github.com/hankhero/cl-json")
2752 (synopsis "JSON encoder and decoder for Common-Lisp")
2753 (description
2754 "@command{cl-json} provides an encoder of Lisp objects to JSON format
2755 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
2756 and the decoder are highly customizable; at the same time, the default
2757 settings ensure a very simple mode of operation, similar to that provided by
2758 @command{yason} or @command{st-json}.")
2759 (license license:expat))))
2760
2761 (define-public cl-json
2762 (sbcl-package->cl-source-package sbcl-cl-json))
2763
2764 (define-public ecl-cl-json
2765 (sbcl-package->ecl-package sbcl-cl-json))
2766
2767 (define-public sbcl-unix-opts
2768 (package
2769 (name "sbcl-unix-opts")
2770 (version "0.1.7")
2771 (source
2772 (origin
2773 (method git-fetch)
2774 (uri (git-reference
2775 (url "https://github.com/libre-man/unix-opts")
2776 (commit version)))
2777 (file-name (git-file-name "unix-opts" version))
2778 (sha256
2779 (base32
2780 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
2781 (build-system asdf-build-system/sbcl)
2782 (home-page "https://github.com/hankhero/cl-json")
2783 (synopsis "Unix-style command line options parser")
2784 (description
2785 "This is a minimalistic parser of command line options. The main
2786 advantage of the library is the ability to concisely define command line
2787 options once and then use this definition for parsing and extraction of
2788 command line arguments, as well as printing description of command line
2789 options (you get --help for free). This way you don't need to repeat
2790 yourself. Also, @command{unix-opts} doesn't depend on anything and
2791 precisely controls the behavior of the parser via Common Lisp restarts.")
2792 (license license:expat)))
2793
2794 (define-public cl-unix-opts
2795 (sbcl-package->cl-source-package sbcl-unix-opts))
2796
2797 (define-public ecl-unix-opts
2798 (sbcl-package->ecl-package sbcl-unix-opts))
2799
2800 (define-public sbcl-trivial-garbage
2801 (package
2802 (name "sbcl-trivial-garbage")
2803 (version "0.21")
2804 (source
2805 (origin
2806 (method git-fetch)
2807 (uri (git-reference
2808 (url "https://github.com/trivial-garbage/trivial-garbage")
2809 (commit (string-append "v" version))))
2810 (file-name (git-file-name "trivial-garbage" version))
2811 (sha256
2812 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
2813 (build-system asdf-build-system/sbcl)
2814 (native-inputs
2815 `(("rt" ,sbcl-rt)))
2816 (home-page "https://common-lisp.net/project/trivial-garbage/")
2817 (synopsis "Portable GC-related APIs for Common Lisp")
2818 (description "@command{trivial-garbage} provides a portable API to
2819 finalizers, weak hash-tables and weak pointers on all major implementations of
2820 the Common Lisp programming language.")
2821 (license license:public-domain)))
2822
2823 (define-public cl-trivial-garbage
2824 (sbcl-package->cl-source-package sbcl-trivial-garbage))
2825
2826 (define-public ecl-trivial-garbage
2827 (sbcl-package->ecl-package sbcl-trivial-garbage))
2828
2829 (define-public sbcl-closer-mop
2830 (let ((commit "19c9d33f576e10715fd79cc1d4f688dab0f241d6"))
2831 (package
2832 (name "sbcl-closer-mop")
2833 (version (git-version "1.0.0" "2" commit))
2834 (source
2835 (origin
2836 (method git-fetch)
2837 (uri (git-reference
2838 (url "https://github.com/pcostanza/closer-mop")
2839 (commit commit)))
2840 (sha256
2841 (base32 "1w3x087wvlwkd6swfdgbvjfs6kazf0la8ax4pjfzikwjch4snn2c"))
2842 (file-name (git-file-name "closer-mop" version ))))
2843 (build-system asdf-build-system/sbcl)
2844 (home-page "https://github.com/pcostanza/closer-mop")
2845 (synopsis "Rectifies absent or incorrect CLOS MOP features")
2846 (description "Closer to MOP is a compatibility layer that rectifies many
2847 of the absent or incorrect CLOS MOP features across a broad range of Common
2848 Lisp implementations.")
2849 (license license:expat))))
2850
2851 (define-public cl-closer-mop
2852 (sbcl-package->cl-source-package sbcl-closer-mop))
2853
2854 (define-public ecl-closer-mop
2855 (sbcl-package->ecl-package sbcl-closer-mop))
2856
2857 (define sbcl-cl-cffi-gtk-boot0
2858 (let ((commit "412d17214e092220c65a5660f5cbbd9cb69b8fe4"))
2859 (package
2860 (name "sbcl-cl-cffi-gtk-boot0")
2861 (version (git-version "0.11.2" "1" commit))
2862 (source
2863 (origin
2864 (method git-fetch)
2865 (uri (git-reference
2866 (url "https://github.com/Ferada/cl-cffi-gtk/")
2867 (commit commit)))
2868 (file-name (git-file-name "cl-cffi-gtk" version))
2869 (sha256
2870 (base32
2871 "0n997yhcnzk048nalx8ys62ja2ac8iv4mbn3mb55iapl0321hghn"))))
2872 (build-system asdf-build-system/sbcl)
2873 (inputs
2874 `(("iterate" ,sbcl-iterate)
2875 ("cffi" ,sbcl-cffi)
2876 ("trivial-features" ,sbcl-trivial-features)
2877 ("glib" ,glib)
2878 ("cairo" ,cairo)
2879 ("pango" ,pango)
2880 ("gdk-pixbuf" ,gdk-pixbuf)
2881 ("gtk" ,gtk+)))
2882 (arguments
2883 `(#:phases
2884 (modify-phases %standard-phases
2885 (add-after 'unpack 'fix-paths
2886 (lambda* (#:key inputs #:allow-other-keys)
2887 (substitute* "glib/glib.init.lisp"
2888 (("libglib|libgthread" all)
2889 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2890 (substitute* "gobject/gobject.init.lisp"
2891 (("libgobject" all)
2892 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2893 (substitute* "gio/gio.init.lisp"
2894 (("libgio" all)
2895 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2896 (substitute* "cairo/cairo.init.lisp"
2897 (("libcairo" all)
2898 (string-append (assoc-ref inputs "cairo") "/lib/" all)))
2899 (substitute* "pango/pango.init.lisp"
2900 (("libpango" all)
2901 (string-append (assoc-ref inputs "pango") "/lib/" all)))
2902 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
2903 (("libgdk_pixbuf" all)
2904 (string-append (assoc-ref inputs "gdk-pixbuf") "/lib/" all)))
2905 (substitute* "gdk/gdk.init.lisp"
2906 (("libgdk" all)
2907 (string-append (assoc-ref inputs "gtk") "/lib/" all)))
2908 (substitute* "gdk/gdk.package.lisp"
2909 (("libgtk" all)
2910 (string-append (assoc-ref inputs "gtk") "/lib/" all))))))))
2911 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
2912 (synopsis "Common Lisp binding for GTK+3")
2913 (description
2914 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
2915 is a library for creating graphical user interfaces.")
2916 (license license:lgpl3))))
2917
2918 (define-public sbcl-cl-cffi-gtk-glib
2919 (package
2920 (inherit sbcl-cl-cffi-gtk-boot0)
2921 (name "sbcl-cl-cffi-gtk-glib")
2922 (inputs
2923 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2924 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2925 (arguments
2926 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
2927 ((#:asd-file _ "") "glib/cl-cffi-gtk-glib.asd")))))
2928
2929 (define-public sbcl-cl-cffi-gtk-gobject
2930 (package
2931 (inherit sbcl-cl-cffi-gtk-boot0)
2932 (name "sbcl-cl-cffi-gtk-gobject")
2933 (inputs
2934 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2935 ("trivial-garbage" ,sbcl-trivial-garbage)
2936 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2937 ("closer-mop" ,sbcl-closer-mop)
2938 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2939 (arguments
2940 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
2941 ((#:asd-file _ "") "gobject/cl-cffi-gtk-gobject.asd")
2942 ((#:phases phases)
2943 `(modify-phases ,phases
2944 (add-after 'install 'link-source
2945 ;; Since source is particularly heavy (16MiB+), let's reuse it
2946 ;; across the different components of cl-ffi-gtk.
2947 (lambda* (#:key inputs outputs #:allow-other-keys)
2948 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
2949 "/share/common-lisp/sbcl-source/"
2950 "cl-cffi-gtk-glib"))
2951 (out-source (string-append (assoc-ref outputs "out")
2952 "/share/common-lisp/sbcl-source/"
2953 "cl-cffi-gtk-gobject")))
2954 (delete-file-recursively out-source)
2955 (symlink glib-source out-source)
2956 #t)))))))))
2957
2958 (define-public sbcl-cl-cffi-gtk-gio
2959 (package
2960 (inherit sbcl-cl-cffi-gtk-boot0)
2961 (name "sbcl-cl-cffi-gtk-gio")
2962 (inputs
2963 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2964 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
2965 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2966 (arguments
2967 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
2968 ((#:asd-file _ "") "gio/cl-cffi-gtk-gio.asd")
2969 ((#:phases phases)
2970 `(modify-phases ,phases
2971 (add-after 'install 'link-source
2972 ;; Since source is particularly heavy (16MiB+), let's reuse it
2973 ;; across the different components of cl-ffi-gtk.
2974 (lambda* (#:key inputs outputs #:allow-other-keys)
2975 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
2976 "/share/common-lisp/sbcl-source/"
2977 "cl-cffi-gtk-glib"))
2978 (out-source (string-append (assoc-ref outputs "out")
2979 "/share/common-lisp/sbcl-source/"
2980 "cl-cffi-gtk-gio")))
2981 (delete-file-recursively out-source)
2982 (symlink glib-source out-source)
2983 #t)))))))))
2984
2985 (define-public sbcl-cl-cffi-gtk-cairo
2986 (package
2987 (inherit sbcl-cl-cffi-gtk-boot0)
2988 (name "sbcl-cl-cffi-gtk-cairo")
2989 (inputs
2990 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
2991 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
2992 (arguments
2993 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
2994 ((#:asd-file _ "") "cairo/cl-cffi-gtk-cairo.asd")
2995 ((#:phases phases)
2996 `(modify-phases ,phases
2997 (add-after 'install 'link-source
2998 ;; Since source is particularly heavy (16MiB+), let's reuse it
2999 ;; across the different components of cl-ffi-gtk.
3000 (lambda* (#:key inputs outputs #:allow-other-keys)
3001 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
3002 "/share/common-lisp/sbcl-source/"
3003 "cl-cffi-gtk-glib"))
3004 (out-source (string-append (assoc-ref outputs "out")
3005 "/share/common-lisp/sbcl-source/"
3006 "cl-cffi-gtk-cairo")))
3007 (delete-file-recursively out-source)
3008 (symlink glib-source out-source)
3009 #t)))))))))
3010
3011 (define-public sbcl-cl-cffi-gtk-pango
3012 (package
3013 (inherit sbcl-cl-cffi-gtk-boot0)
3014 (name "sbcl-cl-cffi-gtk-pango")
3015 (inputs
3016 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
3017 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
3018 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
3019 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
3020 (arguments
3021 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
3022 ((#:asd-file _ "") "pango/cl-cffi-gtk-pango.asd")
3023 ((#:phases phases)
3024 `(modify-phases ,phases
3025 (add-after 'install 'link-source
3026 ;; Since source is particularly heavy (16MiB+), let's reuse it
3027 ;; across the different components of cl-ffi-gtk.
3028 (lambda* (#:key inputs outputs #:allow-other-keys)
3029 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
3030 "/share/common-lisp/sbcl-source/"
3031 "cl-cffi-gtk-glib"))
3032 (out-source (string-append (assoc-ref outputs "out")
3033 "/share/common-lisp/sbcl-source/"
3034 "cl-cffi-gtk-pango")))
3035 (delete-file-recursively out-source)
3036 (symlink glib-source out-source)
3037 #t)))))))))
3038
3039 (define-public sbcl-cl-cffi-gtk-gdk-pixbuf
3040 (package
3041 (inherit sbcl-cl-cffi-gtk-boot0)
3042 (name "sbcl-cl-cffi-gtk-gdk-pixbuf")
3043 (inputs
3044 `(("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
3045 ("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
3046 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
3047 (arguments
3048 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
3049 ((#:asd-file _ "") "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd")
3050 ((#:phases phases)
3051 `(modify-phases ,phases
3052 (add-after 'install 'link-source
3053 ;; Since source is particularly heavy (16MiB+), let's reuse it
3054 ;; across the different components of cl-ffi-gtk.
3055 (lambda* (#:key inputs outputs #:allow-other-keys)
3056 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
3057 "/share/common-lisp/sbcl-source/"
3058 "cl-cffi-gtk-glib"))
3059 (out-source (string-append (assoc-ref outputs "out")
3060 "/share/common-lisp/sbcl-source/"
3061 "cl-cffi-gtk-gdk-pixbuf")))
3062 (delete-file-recursively out-source)
3063 (symlink glib-source out-source)
3064 #t)))))))))
3065
3066 (define-public sbcl-cl-cffi-gtk-gdk
3067 (package
3068 (inherit sbcl-cl-cffi-gtk-boot0)
3069 (name "sbcl-cl-cffi-gtk-gdk")
3070 (inputs
3071 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
3072 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
3073 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
3074 ("cl-cffi-gtk-gdk-pixbuf" ,sbcl-cl-cffi-gtk-gdk-pixbuf)
3075 ("cl-cffi-gtk-cairo" ,sbcl-cl-cffi-gtk-cairo)
3076 ("cl-cffi-gtk-pango" ,sbcl-cl-cffi-gtk-pango)
3077 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
3078 (arguments
3079 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
3080 ((#:asd-file _ "") "gdk/cl-cffi-gtk-gdk.asd")
3081 ((#:phases phases)
3082 `(modify-phases ,phases
3083 (add-after 'install 'link-source
3084 ;; Since source is particularly heavy (16MiB+), let's reuse it
3085 ;; across the different components of cl-ffi-gtk.
3086 (lambda* (#:key inputs outputs #:allow-other-keys)
3087 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
3088 "/share/common-lisp/sbcl-source/"
3089 "cl-cffi-gtk-glib"))
3090 (out-source (string-append (assoc-ref outputs "out")
3091 "/share/common-lisp/sbcl-source/"
3092 "cl-cffi-gtk-gdk")))
3093 (delete-file-recursively out-source)
3094 (symlink glib-source out-source)
3095 #t)))))))))
3096
3097 (define-public sbcl-cl-cffi-gtk
3098 (package
3099 (inherit sbcl-cl-cffi-gtk-boot0)
3100 (name "sbcl-cl-cffi-gtk")
3101 (inputs
3102 `(("cl-cffi-gtk-glib" ,sbcl-cl-cffi-gtk-glib)
3103 ("cl-cffi-gtk-gobject" ,sbcl-cl-cffi-gtk-gobject)
3104 ("cl-cffi-gtk-gio" ,sbcl-cl-cffi-gtk-gio)
3105 ("cl-cffi-gtk-gdk" ,sbcl-cl-cffi-gtk-gdk)
3106 ,@(package-inputs sbcl-cl-cffi-gtk-boot0)))
3107 (native-inputs
3108 `(("fiveam" ,sbcl-fiveam)))
3109 (arguments
3110 (substitute-keyword-arguments (package-arguments sbcl-cl-cffi-gtk-boot0)
3111 ((#:asd-file _ "") "gtk/cl-cffi-gtk.asd")
3112 ((#:test-asd-file _ "") "test/cl-cffi-gtk-test.asd")
3113 ;; TODO: Tests fail with memory fault.
3114 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
3115 ((#:tests? _ #f) #f)
3116 ((#:phases phases)
3117 `(modify-phases ,phases
3118 (add-after 'install 'link-source
3119 ;; Since source is particularly heavy (16MiB+), let's reuse it
3120 ;; across the different components of cl-ffi-gtk.
3121 (lambda* (#:key inputs outputs #:allow-other-keys)
3122 (let ((glib-source (string-append (assoc-ref inputs "cl-cffi-gtk-glib")
3123 "/share/common-lisp/sbcl-source/"
3124 "cl-cffi-gtk-glib"))
3125 (out-source (string-append (assoc-ref outputs "out")
3126 "/share/common-lisp/sbcl-source/"
3127 "cl-cffi-gtk")))
3128 (delete-file-recursively out-source)
3129 (symlink glib-source out-source)
3130 #t)))))))))
3131
3132 (define-public cl-cffi-gtk
3133 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
3134
3135 (define-public sbcl-cl-webkit
3136 (let ((commit "6c905a5550b58a5b7602da5a087d7dafc5337122"))
3137 (package
3138 (name "sbcl-cl-webkit")
3139 (version (git-version "2.4" "4" commit))
3140 (source
3141 (origin
3142 (method git-fetch)
3143 (uri (git-reference
3144 (url "https://github.com/joachifm/cl-webkit")
3145 (commit commit)))
3146 (file-name (git-file-name "cl-webkit" version))
3147 (sha256
3148 (base32
3149 "0017ijjflqqbgbj5bf7ffkyw5idhxc0ggly2qh5igf3kz886p9rh"))))
3150 (build-system asdf-build-system/sbcl)
3151 (inputs
3152 `(("cffi" ,sbcl-cffi)
3153 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3154 ("webkitgtk" ,webkitgtk)))
3155 (arguments
3156 `(#:asd-file "webkit2/cl-webkit2.asd"
3157 #:asd-system-name "cl-webkit2"
3158 #:phases
3159 (modify-phases %standard-phases
3160 (add-after 'unpack 'fix-paths
3161 (lambda* (#:key inputs #:allow-other-keys)
3162 (substitute* "webkit2/webkit2.init.lisp"
3163 (("libwebkit2gtk" all)
3164 (string-append
3165 (assoc-ref inputs "webkitgtk") "/lib/" all))))))))
3166 (home-page "https://github.com/joachifm/cl-webkit")
3167 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3168 (description
3169 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3170 currently targeting WebKit version 2. The WebKitGTK+ library adds web
3171 browsing capabilities to an application, leveraging the full power of the
3172 WebKit browsing engine.")
3173 (license license:expat))))
3174
3175 (define-public cl-webkit
3176 (sbcl-package->cl-source-package sbcl-cl-webkit))
3177
3178 (define-public sbcl-lparallel
3179 (package
3180 (name "sbcl-lparallel")
3181 (version "2.8.4")
3182 (source
3183 (origin
3184 (method git-fetch)
3185 (uri (git-reference
3186 (url "https://github.com/lmj/lparallel/")
3187 (commit (string-append "lparallel-" version))))
3188 (file-name (git-file-name "lparallel" version))
3189 (sha256
3190 (base32
3191 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3192 (build-system asdf-build-system/sbcl)
3193 (inputs
3194 `(("alexandria" ,sbcl-alexandria)
3195 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3196 ("trivial-garbage" ,sbcl-trivial-garbage)))
3197 (arguments
3198 `(#:phases
3199 (modify-phases %standard-phases
3200 (add-after 'unpack 'fix-dependency
3201 ;; lparallel loads a SBCL specific system in its asd file. This is
3202 ;; not carried over into the fasl which is generated. In order for
3203 ;; it to be carried over, it needs to be listed as a dependency.
3204 (lambda _
3205 (substitute* "lparallel.asd"
3206 ((":depends-on \\(:alexandria" all)
3207 (string-append all " #+sbcl :sb-cltl2"))))))))
3208 (home-page "https://lparallel.org/")
3209 (synopsis "Parallelism for Common Lisp")
3210 (description
3211 "@command{lparallel} is a library for parallel programming in Common
3212 Lisp, featuring:
3213
3214 @itemize
3215 @item a simple model of task submission with receiving queue,
3216 @item constructs for expressing fine-grained parallelism,
3217 @item asynchronous condition handling across thread boundaries,
3218 @item parallel versions of map, reduce, sort, remove, and many others,
3219 @item promises, futures, and delayed evaluation constructs,
3220 @item computation trees for parallelizing interconnected tasks,
3221 @item bounded and unbounded FIFO queues,
3222 @item high and low priority tasks,
3223 @item task killing by category,
3224 @item integrated timeouts.
3225 @end itemize\n")
3226 (license license:expat)))
3227
3228 (define-public cl-lparallel
3229 (sbcl-package->cl-source-package sbcl-lparallel))
3230
3231 (define-public ecl-lparallel
3232 (sbcl-package->ecl-package sbcl-lparallel))
3233
3234 (define-public sbcl-cl-markup
3235 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3236 (package
3237 (name "sbcl-cl-markup")
3238 (version (git-version "0.1" "1" commit))
3239 (source
3240 (origin
3241 (method git-fetch)
3242 (uri (git-reference
3243 (url "https://github.com/arielnetworks/cl-markup/")
3244 (commit commit)))
3245 (file-name (git-file-name "cl-markup" version))
3246 (sha256
3247 (base32
3248 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3249 (build-system asdf-build-system/sbcl)
3250 (home-page "https://github.com/arielnetworks/cl-markup/")
3251 (synopsis "Markup generation library for Common Lisp")
3252 (description
3253 "A modern markup generation library for Common Lisp that features:
3254
3255 @itemize
3256 @item Fast (even faster through compiling the code)
3257 @item Safety
3258 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3259 @item Output with doctype
3260 @item Direct output to stream
3261 @end itemize\n")
3262 (license license:lgpl3+))))
3263
3264 (define-public cl-markup
3265 (sbcl-package->cl-source-package sbcl-cl-markup))
3266
3267 (define-public ecl-cl-markup
3268 (sbcl-package->ecl-package sbcl-cl-markup))
3269
3270 (define-public sbcl-cl-css
3271 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3272 (package
3273 (name "sbcl-cl-css")
3274 (version (git-version "0.1" "1" commit))
3275 (source
3276 (origin
3277 (method git-fetch)
3278 (uri (git-reference
3279 (url "https://github.com/inaimathi/cl-css/")
3280 (commit commit)))
3281 (file-name (git-file-name "cl-css" version))
3282 (sha256
3283 (base32
3284 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3285 (build-system asdf-build-system/sbcl)
3286 (home-page "https://github.com/inaimathi/cl-css/")
3287 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3288 (description
3289 "This is a dead-simple, non validating, inline CSS generator for Common
3290 Lisp. Its goals are axiomatic syntax, simple implementation to support
3291 portability, and boilerplate reduction in CSS.")
3292 (license license:expat))))
3293
3294 (define-public cl-css
3295 (sbcl-package->cl-source-package sbcl-cl-css))
3296
3297 (define-public ecl-cl-css
3298 (sbcl-package->ecl-package sbcl-cl-css))
3299
3300 (define-public sbcl-portable-threads
3301 (let ((commit "c0e61a1faeb0583c80fd3f20b16cc4c555226920"))
3302 (package
3303 (name "sbcl-portable-threads")
3304 (version (git-version "2.3" "1" commit))
3305 (source
3306 (origin
3307 (method git-fetch)
3308 (uri (git-reference
3309 (url "https://github.com/binghe/portable-threads/")
3310 (commit commit)))
3311 (file-name (git-file-name "portable-threads" version))
3312 (sha256
3313 (base32
3314 "03fmxyarc0xf4kavwkfa0a2spkyfrz6hbgbi9y4q7ny5aykdyfaq"))))
3315 (build-system asdf-build-system/sbcl)
3316 (arguments
3317 `(;; Tests seem broken.
3318 #:tests? #f))
3319 (home-page "https://github.com/binghe/portable-threads")
3320 (synopsis "Portable threads (and scheduled and periodic functions) API for Common Lisp")
3321 (description
3322 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3323 Lisp (from GBBopen project).")
3324 (license license:asl2.0))))
3325
3326 (define-public cl-portable-threads
3327 (sbcl-package->cl-source-package sbcl-portable-threads))
3328
3329 (define-public ecl-portable-threada
3330 (sbcl-package->ecl-package sbcl-portable-threads))
3331
3332 (define sbcl-usocket-boot0
3333 ;; usocket's test rely on usocket-server which depends on usocket itself.
3334 ;; We break this cyclic dependency with -boot0 that packages usocket.
3335 (package
3336 (name "sbcl-usocket-boot0")
3337 (version "0.8.3")
3338 (source
3339 (origin
3340 (method git-fetch)
3341 (uri (git-reference
3342 (url "https://github.com/usocket/usocket/")
3343 (commit (string-append "v" version))))
3344 (file-name (git-file-name "usocket" version))
3345 (sha256
3346 (base32
3347 "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"))))
3348 (build-system asdf-build-system/sbcl)
3349 (inputs
3350 `(("split-sequence" ,sbcl-split-sequence)))
3351 (arguments
3352 `(#:tests? #f
3353 #:asd-system-name "usocket"))
3354 (home-page "https://common-lisp.net/project/usocket/")
3355 (synopsis "Universal socket library for Common Lisp (server side)")
3356 (description
3357 "This library strives to provide a portable TCP/IP and UDP/IP socket
3358 interface for as many Common Lisp implementations as possible, while keeping
3359 the abstraction and portability layer as thin as possible.")
3360 (license license:expat)))
3361
3362 (define-public sbcl-usocket-server
3363 (package
3364 (inherit sbcl-usocket-boot0)
3365 (name "sbcl-usocket-server")
3366 (inputs
3367 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3368 ("usocket" ,sbcl-usocket-boot0)))
3369 (arguments
3370 '(#:asd-system-name "usocket-server"))
3371 (synopsis "Universal socket library for Common Lisp (server side)")))
3372
3373 (define-public cl-usocket-server
3374 (sbcl-package->cl-source-package sbcl-usocket-server))
3375
3376 (define-public ecl-socket-server
3377 (sbcl-package->ecl-package sbcl-usocket-server))
3378
3379 (define-public sbcl-usocket
3380 (package
3381 (inherit sbcl-usocket-boot0)
3382 (name "sbcl-usocket")
3383 (arguments
3384 ;; FIXME: Tests need network access?
3385 `(#:tests? #f))
3386 (native-inputs
3387 ;; Testing only.
3388 `(("usocket-server" ,sbcl-usocket-server)
3389 ("rt" ,sbcl-rt)))))
3390
3391 (define-public cl-usocket
3392 (sbcl-package->cl-source-package sbcl-usocket))
3393
3394 (define-public ecl-usocket
3395 (sbcl-package->ecl-package sbcl-usocket))
3396
3397 (define-public sbcl-s-xml
3398 (package
3399 (name "sbcl-s-xml")
3400 (version "3")
3401 (source
3402 (origin
3403 (method url-fetch)
3404 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3405 (sha256
3406 (base32
3407 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3408 (build-system asdf-build-system/sbcl)
3409 (home-page "https://common-lisp.net/project/s-xml/")
3410 (synopsis "Simple XML parser implemented in Common Lisp")
3411 (description
3412 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3413 parser implementation has the following features:
3414
3415 @itemize
3416 @item It works (handling many common XML usages).
3417 @item It is very small (the core is about 700 lines of code, including
3418 comments and whitespace).
3419 @item It has a core API that is simple, efficient and pure functional, much
3420 like that from SSAX (see also http://ssax.sourceforge.net).
3421 @item It supports different DOM models: an XSML-based one, an LXML-based one
3422 and a classic xml-element struct based one.
3423 @item It is reasonably time and space efficient (internally avoiding garbage
3424 generatation as much as possible).
3425 @item It does support CDATA.
3426 @item It should support the same character sets as your Common Lisp
3427 implementation.
3428 @item It does support XML name spaces.
3429 @end itemize
3430
3431 This XML parser implementation has the following limitations:
3432
3433 @itemize
3434 @item It does not support any special tags (like processing instructions).
3435 @item It is not validating, even skips DTD's all together.
3436 @end itemize\n")
3437 (license license:lgpl3+)))
3438
3439 (define-public cl-s-xml
3440 (sbcl-package->cl-source-package sbcl-s-xml))
3441
3442 (define-public ecl-s-xml
3443 (sbcl-package->ecl-package sbcl-s-xml))
3444
3445 (define-public sbcl-s-xml-rpc
3446 (package
3447 (name "sbcl-s-xml-rpc")
3448 (version "7")
3449 (source
3450 (origin
3451 (method url-fetch)
3452 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3453 (sha256
3454 (base32
3455 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3456 (build-system asdf-build-system/sbcl)
3457 (inputs
3458 `(("s-xml" ,sbcl-s-xml)))
3459 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3460 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3461 (description
3462 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3463 client and server.")
3464 (license license:lgpl3+)))
3465
3466 (define-public cl-s-xml-rpc
3467 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3468
3469 (define-public ecl-s-xml-rpc
3470 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3471
3472 (define-public sbcl-trivial-clipboard
3473 (let ((commit "5af3415d1484e6d69a1b5c178f24680d9fd01796"))
3474 (package
3475 (name "sbcl-trivial-clipboard")
3476 (version (git-version "0.0.0.0" "2" commit))
3477 (source
3478 (origin
3479 (method git-fetch)
3480 (uri (git-reference
3481 (url "https://github.com/snmsts/trivial-clipboard")
3482 (commit commit)))
3483 (file-name (git-file-name "trivial-clipboard" version))
3484 (sha256
3485 (base32
3486 "1gb515z5yq6h5548pb1fwhmb0hhq1ssyb78pvxh4alq799xipxs9"))))
3487 (build-system asdf-build-system/sbcl)
3488 (inputs
3489 `(("xclip" ,xclip)))
3490 (native-inputs
3491 `(("fiveam" ,sbcl-fiveam)))
3492 (arguments
3493 `(#:phases
3494 (modify-phases %standard-phases
3495 (add-after 'unpack 'fix-paths
3496 (lambda* (#:key inputs #:allow-other-keys)
3497 (substitute* "src/text.lisp"
3498 (("\\(executable-find \"xclip\"\\)")
3499 (string-append "(executable-find \""
3500 (assoc-ref inputs "xclip")
3501 "/bin/xclip\")"))))))))
3502 (home-page "https://github.com/snmsts/trivial-clipboard")
3503 (synopsis "Access system clipboard in Common Lisp")
3504 (description
3505 "@command{trivial-clipboard} gives access to the system clipboard.")
3506 (license license:expat))))
3507
3508 (define-public cl-trivial-clipboard
3509 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3510
3511 (define-public ecl-trivial-clipboard
3512 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3513
3514 (define-public sbcl-trivial-backtrace
3515 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3516 (revision "1"))
3517 (package
3518 (name "sbcl-trivial-backtrace")
3519 (version (git-version "0.0.0" revision commit))
3520 (source
3521 (origin
3522 (method git-fetch)
3523 (uri (git-reference
3524 (url "https://github.com/gwkkwg/trivial-backtrace")
3525 (commit commit)))
3526 (file-name (git-file-name "trivial-backtrace" version))
3527 (sha256
3528 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3529 (build-system asdf-build-system/sbcl)
3530 (inputs
3531 `(("sbcl-lift" ,sbcl-lift)))
3532 (arguments
3533 `(#:phases
3534 (modify-phases %standard-phases
3535 (add-after 'check 'delete-test-results
3536 (lambda* (#:key outputs #:allow-other-keys)
3537 (let ((test-results (string-append (assoc-ref outputs "out")
3538 "/share/common-lisp/"
3539 (%lisp-type) "-source"
3540 "/trivial-backtrace"
3541 "/test-results")))
3542 (when (file-exists? test-results)
3543 (delete-file-recursively test-results)))
3544 #t)))))
3545 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3546 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3547 (description
3548 "One of the many things that didn't quite get into the Common Lisp
3549 standard was how to get a Lisp to output its call stack when something has
3550 gone wrong. As such, each Lisp has developed its own notion of what to
3551 display, how to display it, and what sort of arguments can be used to
3552 customize it. @code{trivial-backtrace} is a simple solution to generating a
3553 backtrace portably.")
3554 (license license:expat))))
3555
3556 (define-public cl-trivial-backtrace
3557 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3558
3559 (define-public sbcl-rfc2388
3560 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3561 (revision "1"))
3562 (package
3563 (name "sbcl-rfc2388")
3564 (version (git-version "0.0.0" revision commit))
3565 (source
3566 (origin
3567 (method git-fetch)
3568 (uri (git-reference
3569 (url "https://github.com/jdz/rfc2388")
3570 (commit commit)))
3571 (file-name (git-file-name "rfc2388" version))
3572 (sha256
3573 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3574 (build-system asdf-build-system/sbcl)
3575 (home-page "https://github.com/jdz/rfc2388/")
3576 (synopsis "An implementation of RFC 2388 in Common Lisp")
3577 (description
3578 "This package contains an implementation of RFC 2388, which is used to
3579 process form data posted with HTTP POST method using enctype
3580 \"multipart/form-data\".")
3581 (license license:bsd-2))))
3582
3583 (define-public cl-rfc2388
3584 (sbcl-package->cl-source-package sbcl-rfc2388))
3585
3586 (define-public sbcl-md5
3587 (package
3588 (name "sbcl-md5")
3589 (version "2.0.4")
3590 (source
3591 (origin
3592 (method git-fetch)
3593 (uri (git-reference
3594 (url "https://github.com/pmai/md5")
3595 (commit (string-append "release-" version))))
3596 (file-name (git-file-name "md5" version))
3597 (sha256
3598 (base32 "1waqxzm7vlc22n92hv8r27anlvvjkkh9slhrky1ww7mdx4mmxwb8"))))
3599 (build-system asdf-build-system/sbcl)
3600 (home-page "https://github.com/pmai/md5")
3601 (synopsis
3602 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3603 (description
3604 "This package implements The MD5 Message-Digest Algorithm, as defined in
3605 RFC 1321 by R. Rivest, published April 1992.")
3606 (license license:public-domain)))
3607
3608 (define-public cl-md5
3609 (sbcl-package->cl-source-package sbcl-md5))
3610
3611 (define-public sbcl-cl+ssl
3612 (let ((commit "701e645081e6533a3f0f0b3ac86389d6f506c4b5")
3613 (revision "1"))
3614 (package
3615 (name "sbcl-cl+ssl")
3616 (version (git-version "0.0.0" revision commit))
3617 (source
3618 (origin
3619 (method git-fetch)
3620 (uri (git-reference
3621 (url "https://github.com/cl-plus-ssl/cl-plus-ssl")
3622 (commit commit)))
3623 (file-name (git-file-name "cl+ssl" version))
3624 (sha256
3625 (base32 "0nfl275nwhff3m25872y388cydz14kqb6zbwywa6nj85r9k8bgs0"))))
3626 (build-system asdf-build-system/sbcl)
3627 (arguments
3628 '(#:phases
3629 (modify-phases %standard-phases
3630 (add-after 'unpack 'fix-paths
3631 (lambda* (#:key inputs #:allow-other-keys)
3632 (substitute* "src/reload.lisp"
3633 (("libssl.so" all)
3634 (string-append
3635 (assoc-ref inputs "openssl") "/lib/" all))))))))
3636 (inputs
3637 `(("openssl" ,openssl)
3638 ("sbcl-cffi" ,sbcl-cffi)
3639 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
3640 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3641 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
3642 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
3643 ("sbcl-alexandria" ,sbcl-alexandria)
3644 ("sbcl-trivial-features" ,sbcl-trivial-features)))
3645 (home-page "https://common-lisp.net/project/cl-plus-ssl/")
3646 (synopsis "Common Lisp bindings to OpenSSL")
3647 (description
3648 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
3649 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
3650 Development into CL+SSL was done by David Lichteblau.")
3651 (license license:expat))))
3652
3653 (define-public cl-cl+ssl
3654 (sbcl-package->cl-source-package sbcl-cl+ssl))
3655
3656 (define-public sbcl-kmrcl
3657 (let ((version "1.109.0")
3658 (commit "5260068b2eb735af6796740c2db4955afac21636")
3659 (revision "1"))
3660 (package
3661 (name "sbcl-kmrcl")
3662 (version (git-version version revision commit))
3663 (source
3664 (origin
3665 (method git-fetch)
3666 (uri (git-reference
3667 (url "http://git.kpe.io/kmrcl.git/")
3668 (commit commit)))
3669 (file-name (git-file-name name version))
3670 (sha256
3671 (base32 "1va7xjgzfv674bpsli674i7zj3f7wg5kxic41kz18r6hh4n52dfv"))))
3672 (build-system asdf-build-system/sbcl)
3673 (arguments
3674 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed in a
3675 ;; nested call to ASDF/OPERATE:OPERATE unless identically to toplevel
3676 '(#:tests? #f))
3677 (inputs
3678 `(("sbcl-rt" ,sbcl-rt)))
3679 (home-page "http://files.kpe.io/kmrcl/")
3680 (synopsis "General utilities for Common Lisp programs")
3681 (description
3682 "KMRCL is a collection of utilities used by a number of Kevin
3683 Rosenberg's CL packages.")
3684 (license license:llgpl))))
3685
3686 (define-public cl-kmrcl
3687 (sbcl-package->cl-source-package sbcl-kmrcl))
3688
3689 (define-public sbcl-cl-base64
3690 (package
3691 (name "sbcl-cl-base64")
3692 (version "3.3.4")
3693 (source
3694 (origin
3695 (method url-fetch)
3696 (uri (string-append "http://files.kpe.io/cl-base64/cl-base64-"
3697 version ".tar.gz"))
3698 (sha256
3699 (base32 "0pl4zwn5bf18dm8fh1kn1yshaa6kpmfrjyb33z9mq4raqmj3xpv2"))))
3700 (build-system asdf-build-system/sbcl)
3701 (arguments
3702 ;; Tests fail with: :FORCE and :FORCE-NOT arguments not allowed
3703 ;; in a nested call to ASDF/OPERATE:OPERATE unless identically
3704 ;; to toplevel
3705 '(#:tests? #f))
3706 (inputs
3707 `(("sbcl-ptester" ,sbcl-ptester)
3708 ("sbcl-kmrcl" ,sbcl-kmrcl)))
3709 (home-page "http://files.kpe.io/cl-base64/")
3710 (synopsis
3711 "Common Lisp package to encode and decode base64 with URI support")
3712 (description
3713 "This package provides highly optimized base64 encoding and decoding.
3714 Besides conversion to and from strings, integer conversions are supported.
3715 Encoding with Uniform Resource Identifiers is supported by using a modified
3716 encoding table that uses only URI-compatible characters.")
3717 (license license:bsd-3)))
3718
3719 (define-public cl-base64
3720 (sbcl-package->cl-source-package sbcl-cl-base64))
3721
3722 (define-public sbcl-chunga
3723 (package
3724 (name "sbcl-chunga")
3725 (version "1.1.7")
3726 (source
3727 (origin
3728 (method git-fetch)
3729 (uri (git-reference
3730 (url "https://github.com/edicl/chunga")
3731 (commit (string-append "v" version))))
3732 (file-name (git-file-name name version))
3733 (sha256
3734 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
3735 (build-system asdf-build-system/sbcl)
3736 (inputs
3737 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
3738 (home-page "https://edicl.github.io/chunga/")
3739 (synopsis "Portable chunked streams for Common Lisp")
3740 (description
3741 "Chunga implements streams capable of chunked encoding on demand as
3742 defined in RFC 2616.")
3743 (license license:bsd-2)))
3744
3745 (define-public cl-chunga
3746 (sbcl-package->cl-source-package sbcl-chunga))
3747
3748 (define-public sbcl-cl-who
3749 (let ((version "1.1.4")
3750 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
3751 (revision "1"))
3752 (package
3753 (name "sbcl-cl-who")
3754 (version (git-version version revision commit))
3755 (source
3756 (origin
3757 (method git-fetch)
3758 (uri (git-reference
3759 (url "https://github.com/edicl/cl-who")
3760 (commit commit)))
3761 (file-name (git-file-name name version))
3762 (sha256
3763 (base32
3764 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
3765 (build-system asdf-build-system/sbcl)
3766 (native-inputs
3767 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3768 (home-page "https://edicl.github.io/cl-who/")
3769 (synopsis "Yet another Lisp markup language")
3770 (description
3771 "There are plenty of Lisp Markup Languages out there - every Lisp
3772 programmer seems to write at least one during his career - and CL-WHO (where
3773 WHO means \"with-html-output\" for want of a better acronym) is probably just
3774 as good or bad as the next one.")
3775 (license license:bsd-2))))
3776
3777 (define-public cl-cl-who
3778 (sbcl-package->cl-source-package sbcl-cl-who))
3779
3780 (define-public sbcl-chipz
3781 (let ((version "0.8")
3782 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
3783 (revision "1"))
3784 (package
3785 (name "sbcl-chipz")
3786 (version (git-version version revision commit))
3787 (source
3788 (origin
3789 (method git-fetch)
3790 (uri (git-reference
3791 (url "https://github.com/froydnj/chipz")
3792 (commit commit)))
3793 (file-name (git-file-name name version))
3794 (sha256
3795 (base32
3796 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
3797 (build-system asdf-build-system/sbcl)
3798 (native-inputs
3799 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3800 (home-page "http://method-combination.net/lisp/chipz/")
3801 (synopsis
3802 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
3803 data")
3804 (description
3805 "DEFLATE data, defined in RFC1951, forms the core of popular
3806 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
3807 Chipz also provides for decompressing data in those formats as well. BZIP2 is
3808 the format used by the popular compression tool bzip2.")
3809 ;; The author describes it as "MIT-like"
3810 (license license:expat))))
3811
3812 (define-public cl-chipz
3813 (sbcl-package->cl-source-package sbcl-chipz))
3814
3815 (define-public sbcl-drakma
3816 (package
3817 (name "sbcl-drakma")
3818 (version "2.0.7")
3819 (source
3820 (origin
3821 (method git-fetch)
3822 (uri (git-reference
3823 (url "https://github.com/edicl/drakma")
3824 (commit (string-append "v" version))))
3825 (file-name (git-file-name name version))
3826 (sha256
3827 (base32
3828 "1441idnyif9xzx3ln1p3fg36k2v9h4wasjqrzc8y52j61420qpci"))))
3829 (build-system asdf-build-system/sbcl)
3830 (inputs
3831 `(("sbcl-puri" ,sbcl-puri)
3832 ("sbcl-cl-base64" ,sbcl-cl-base64)
3833 ("sbcl-chunga" ,sbcl-chunga)
3834 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3835 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3836 ("sbcl-chipz" ,sbcl-chipz)
3837 ("sbcl-usocket" ,sbcl-usocket)
3838 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
3839 (native-inputs
3840 `(("sbcl-fiveam" ,sbcl-fiveam)))
3841 (home-page "https://edicl.github.io/drakma/")
3842 (synopsis "HTTP client written in Common Lisp")
3843 (description
3844 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
3845 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
3846 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
3847 (license license:bsd-2)))
3848
3849 (define-public cl-drakma
3850 (sbcl-package->cl-source-package sbcl-drakma))
3851
3852 (define-public ecl-drakma
3853 (sbcl-package->ecl-package sbcl-drakma))
3854
3855 (define-public sbcl-hunchentoot
3856 (package
3857 (name "sbcl-hunchentoot")
3858 (version "1.2.38")
3859 (source
3860 (origin
3861 (method git-fetch)
3862 (uri (git-reference
3863 (url "https://github.com/edicl/hunchentoot")
3864 (commit (string-append "v" version))))
3865 (file-name (git-file-name "hunchentoot" version))
3866 (sha256
3867 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
3868 (build-system asdf-build-system/sbcl)
3869 (native-inputs
3870 `(("sbcl-cl-who" ,sbcl-cl-who)
3871 ("sbcl-drakma" ,sbcl-drakma)))
3872 (inputs
3873 `(("sbcl-chunga" ,sbcl-chunga)
3874 ("sbcl-cl-base64" ,sbcl-cl-base64)
3875 ("sbcl-cl-fad" ,sbcl-cl-fad)
3876 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3877 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3878 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
3879 ("sbcl-md5" ,sbcl-md5)
3880 ("sbcl-rfc2388" ,sbcl-rfc2388)
3881 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
3882 ("sbcl-usocket" ,sbcl-usocket)))
3883 (home-page "https://edicl.github.io/hunchentoot/")
3884 (synopsis "Web server written in Common Lisp")
3885 (description
3886 "Hunchentoot is a web server written in Common Lisp and at the same
3887 time a toolkit for building dynamic websites. As a stand-alone web server,
3888 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
3889 connections (keep-alive), and SSL.")
3890 (license license:bsd-2)))
3891
3892 (define-public cl-hunchentoot
3893 (sbcl-package->cl-source-package sbcl-hunchentoot))
3894
3895 (define-public sbcl-trivial-types
3896 (package
3897 (name "sbcl-trivial-types")
3898 (version "0.0.1")
3899 (source
3900 (origin
3901 (method git-fetch)
3902 (uri (git-reference
3903 (url "https://github.com/m2ym/trivial-types")
3904 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
3905 (file-name (git-file-name name version))
3906 (sha256
3907 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
3908 (build-system asdf-build-system/sbcl)
3909 (home-page "https://github.com/m2ym/trivial-types")
3910 (synopsis "Trivial type definitions for Common Lisp")
3911 (description
3912 "TRIVIAL-TYPES provides missing but important type definitions such as
3913 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
3914 (license license:llgpl)))
3915
3916 (define-public cl-trivial-types
3917 (sbcl-package->cl-source-package sbcl-trivial-types))
3918
3919 (define-public sbcl-cl-syntax
3920 (package
3921 (name "sbcl-cl-syntax")
3922 (version "0.0.3")
3923 (source
3924 (origin
3925 (method git-fetch)
3926 (uri (git-reference
3927 (url "https://github.com/m2ym/cl-syntax")
3928 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3929 (file-name (git-file-name "cl-syntax" version))
3930 (sha256
3931 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3932 (build-system asdf-build-system/sbcl)
3933 (arguments
3934 '(#:asd-file "cl-syntax.asd"
3935 #:asd-system-name "cl-syntax"))
3936 (inputs `(("sbcl-trivial-types" ,sbcl-trivial-types)
3937 ("sbcl-named-readtables" ,sbcl-named-readtables)))
3938 (home-page "https://github.com/m2ym/cl-syntax")
3939 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3940 (description
3941 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
3942 (license license:llgpl)))
3943
3944 (define-public cl-syntax
3945 (sbcl-package->cl-source-package sbcl-cl-syntax))
3946
3947 (define-public sbcl-cl-annot
3948 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
3949 (revision "1"))
3950 (package
3951 (name "sbcl-cl-annot")
3952 (version (git-version "0.0.0" revision commit))
3953 (source
3954 (origin
3955 (method git-fetch)
3956 (uri (git-reference
3957 (url "https://github.com/m2ym/cl-annot")
3958 (commit commit)))
3959 (file-name (git-file-name name version))
3960 (sha256
3961 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
3962 (build-system asdf-build-system/sbcl)
3963 (arguments
3964 '(#:asd-file "cl-annot.asd"
3965 #:asd-system-name "cl-annot"))
3966 (inputs
3967 `(("sbcl-alexandria" ,sbcl-alexandria)))
3968 (home-page "https://github.com/m2ym/cl-annot")
3969 (synopsis "Python-like Annotation Syntax for Common Lisp.")
3970 (description
3971 "@code{cl-annot} is an general annotation library for Common Lisp.")
3972 (license license:llgpl))))
3973
3974 (define-public cl-annot
3975 (sbcl-package->cl-source-package sbcl-cl-annot))
3976
3977 (define-public sbcl-cl-syntax-annot
3978 (package
3979 (inherit sbcl-cl-syntax)
3980 (name "sbcl-cl-syntax-annot")
3981 (arguments
3982 '(#:asd-file "cl-syntax-annot.asd"
3983 #:asd-system-name "cl-syntax-annot"))
3984 (inputs
3985 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
3986 ("sbcl-cl-annot" ,sbcl-cl-annot)))
3987 (synopsis "Common Lisp reader Syntax for cl-annot")
3988 (description
3989 "CL-SYNTAX provides reader syntax coventions for Common Lisp and
3990 @code{cl-annot}.")))
3991
3992 (define-public cl-syntax-annot
3993 (sbcl-package->cl-source-package sbcl-cl-syntax-annot))
3994
3995 (define-public sbcl-cl-syntax-interpol
3996 (package
3997 (inherit sbcl-cl-syntax)
3998 (name "sbcl-cl-syntax-interpol")
3999 (arguments
4000 '(#:asd-file "cl-syntax-interpol.asd"
4001 #:asd-system-name "cl-syntax-interpol"))
4002 (inputs
4003 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4004 ("sbcl-cl-interpol" ,sbcl-cl-interpol)))
4005 (synopsis "Common Lisp reader Syntax for cl-interpol")
4006 (description
4007 "CL-SYNTAX provides reader syntax coventions for Common Lisp and
4008 @code{cl-interpol}.")))
4009
4010 (define-public cl-syntax-interpol
4011 (sbcl-package->cl-source-package sbcl-cl-syntax-interpol))
4012
4013 (define-public sbcl-cl-utilities
4014 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
4015 (revision "1"))
4016 (package
4017 (name "sbcl-cl-utilities")
4018 (version (git-version "0.0.0" revision commit))
4019 (source
4020 (origin
4021 (method url-fetch)
4022 (uri
4023 (string-append
4024 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
4025 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
4026 (sha256
4027 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
4028 (build-system asdf-build-system/sbcl)
4029 (arguments
4030 '(#:asd-file "cl-utilities.asd"
4031 #:asd-system-name "cl-utilities"
4032 #:phases
4033 (modify-phases %standard-phases
4034 (add-after 'unpack 'fix-paths
4035 (lambda* (#:key inputs #:allow-other-keys)
4036 (substitute* "rotate-byte.lisp"
4037 (("in-package :cl-utilities)" all)
4038 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
4039 (home-page "http://common-lisp.net/project/cl-utilities")
4040 (synopsis "A collection of semi-standard utilities")
4041 (description
4042 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
4043 is a collection of Common Lisp Utilities, things that everybody writes since
4044 they're not part of the official standard. There are some very useful things
4045 there; the only problems are that they aren't implemented as well as you'd
4046 like (some aren't implemented at all) and they aren't conveniently packaged
4047 and maintained. It takes quite a bit of work to carefully implement utilities
4048 for common use, commented and documented, with error checking placed
4049 everywhere some dumb user might make a mistake.")
4050 (license license:public-domain))))
4051
4052 (define-public cl-utilities
4053 (sbcl-package->cl-source-package sbcl-cl-utilities))
4054
4055 (define-public sbcl-map-set
4056 (let ((commit "7b4b545b68b8")
4057 (revision "1"))
4058 (package
4059 (name "sbcl-map-set")
4060 (version (git-version "0.0.0" revision commit))
4061 (source
4062 (origin
4063 (method url-fetch)
4064 (uri (string-append
4065 "https://bitbucket.org/tarballs_are_good/map-set/get/"
4066 commit ".tar.gz"))
4067 (sha256
4068 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
4069 (build-system asdf-build-system/sbcl)
4070 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
4071 (synopsis "Set-like data structure")
4072 (description
4073 "Implementation of a set-like data structure with constant time
4074 addition, removal, and random selection.")
4075 (license license:bsd-3))))
4076
4077 (define-public cl-map-set
4078 (sbcl-package->cl-source-package sbcl-map-set))
4079
4080 (define-public sbcl-quri
4081 (let ((commit "b53231c5f19446dd7c24b15a249fefa45ae94f9a")
4082 (revision "2"))
4083 (package
4084 (name "sbcl-quri")
4085 (version (git-version "0.1.0" revision commit))
4086 (source
4087 (origin
4088 (method git-fetch)
4089 (uri (git-reference
4090 (url "https://github.com/fukamachi/quri")
4091 (commit commit)))
4092 (file-name (git-file-name name version))
4093 (sha256
4094 (base32 "0cansr63m690ymvhway419178mq2sqnmxm4rdxclbsrnjwwbi36m"))))
4095 (build-system asdf-build-system/sbcl)
4096 (arguments
4097 ;; Tests fail with: Component QURI-ASD::QURI-TEST not found,
4098 ;; required by #<SYSTEM "quri">. Why?
4099 '(#:tests? #f))
4100 (native-inputs `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4101 ("sbcl-prove" ,sbcl-prove)))
4102 (inputs `(("sbcl-babel" ,sbcl-babel)
4103 ("sbcl-split-sequence" ,sbcl-split-sequence)
4104 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
4105 ("sbcl-alexandria" ,sbcl-alexandria)))
4106 (home-page "https://github.com/fukamachi/quri")
4107 (synopsis "Yet another URI library for Common Lisp")
4108 (description
4109 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
4110 Lisp. It is intended to be a replacement of PURI.")
4111 (license license:bsd-3))))
4112
4113 (define-public cl-quri
4114 (sbcl-package->cl-source-package sbcl-quri))
4115
4116 (define-public sbcl-myway
4117 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
4118 (revision "1"))
4119 (package
4120 (name "sbcl-myway")
4121 (version (git-version "0.1.0" revision commit))
4122 (source
4123 (origin
4124 (method git-fetch)
4125 (uri (git-reference
4126 (url "https://github.com/fukamachi/myway")
4127 (commit commit)))
4128 (file-name (git-file-name "myway" version))
4129 (sha256
4130 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
4131 (build-system asdf-build-system/sbcl)
4132 (arguments
4133 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
4134 ;; by #<SYSTEM "myway">. Why?
4135 '(#:tests? #f))
4136 (native-inputs
4137 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4138 ("sbcl-prove" ,sbcl-prove)))
4139 (inputs
4140 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4141 ("sbcl-quri" ,sbcl-quri)
4142 ("sbcl-map-set" ,sbcl-map-set)))
4143 (home-page "https://github.com/fukamachi/myway")
4144 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
4145 (description "My Way is a Sinatra-compatible URL routing library.")
4146 (license license:llgpl))))
4147
4148 (define-public cl-myway
4149 (sbcl-package->cl-source-package sbcl-myway))
4150
4151 (define-public sbcl-xsubseq
4152 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
4153 (revision "1"))
4154 (package
4155 (name "sbcl-xsubseq")
4156 (version (git-version "0.0.1" revision commit))
4157 (source
4158 (origin
4159 (method git-fetch)
4160 (uri (git-reference
4161 (url "https://github.com/fukamachi/xsubseq")
4162 (commit commit)))
4163 (file-name (git-file-name name version))
4164 (sha256
4165 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4166 (build-system asdf-build-system/sbcl)
4167 (arguments
4168 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4169 ;; required by #<SYSTEM "xsubseq">. Why?
4170 '(#:tests? #f))
4171 (native-inputs
4172 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4173 ("sbcl-prove" ,sbcl-prove)))
4174 (home-page "https://github.com/fukamachi/xsubseq")
4175 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4176 (description
4177 "XSubseq provides functions to be able to handle \"subseq\"s more
4178 effieiently.")
4179 (license license:bsd-2))))
4180
4181 (define-public cl-xsubseq
4182 (sbcl-package->cl-source-package sbcl-xsubseq))
4183
4184 (define-public sbcl-smart-buffer
4185 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4186 (revision "1"))
4187 (package
4188 (name "sbcl-smart-buffer")
4189 (version (git-version "0.0.1" revision commit))
4190 (source
4191 (origin
4192 (method git-fetch)
4193 (uri (git-reference
4194 (url "https://github.com/fukamachi/smart-buffer")
4195 (commit commit)))
4196 (file-name (git-file-name name version))
4197 (sha256
4198 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4199 (build-system asdf-build-system/sbcl)
4200 (arguments
4201 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4202 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4203 `(#:tests? #f))
4204 (native-inputs
4205 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4206 ("sbcl-prove" ,sbcl-prove)))
4207 (inputs
4208 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4209 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4210 (home-page "https://github.com/fukamachi/smart-buffer")
4211 (synopsis "Smart octets buffer")
4212 (description
4213 "Smart-buffer provides an output buffer which changes the destination
4214 depending on content size.")
4215 (license license:bsd-3))))
4216
4217 (define-public cl-smart-buffer
4218 (sbcl-package->cl-source-package sbcl-smart-buffer))
4219
4220 (define-public sbcl-fast-http
4221 (let ((commit "502a37715dcb8544cc8528b78143a942de662c5a")
4222 (revision "2"))
4223 (package
4224 (name "sbcl-fast-http")
4225 (version (git-version "0.2.0" revision commit))
4226 (source
4227 (origin
4228 (method git-fetch)
4229 (uri (git-reference
4230 (url "https://github.com/fukamachi/fast-http")
4231 (commit commit)))
4232 (file-name (git-file-name name version))
4233 (sha256
4234 (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
4235 (build-system asdf-build-system/sbcl)
4236 (arguments
4237 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4238 ;; required by #<SYSTEM "fast-http">. Why?
4239 `(#:tests? #f))
4240 (native-inputs
4241 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4242 ("sbcl-prove" ,sbcl-prove)
4243 ("cl-syntax-interpol" ,sbcl-cl-syntax-interpol)))
4244 (inputs
4245 `(("sbcl-alexandria" ,sbcl-alexandria)
4246 ("sbcl-proc-parse" ,sbcl-proc-parse)
4247 ("sbcl-xsubseq" ,sbcl-xsubseq)
4248 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4249 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4250 (home-page "https://github.com/fukamachi/fast-http")
4251 (synopsis "HTTP request/response parser for Common Lisp")
4252 (description
4253 "@code{fast-http} is a HTTP request/response protocol parser for Common
4254 Lisp.")
4255 ;; Author specified the MIT license
4256 (license license:expat))))
4257
4258 (define-public cl-fast-http
4259 (sbcl-package->cl-source-package sbcl-fast-http))
4260
4261 (define-public sbcl-static-vectors
4262 (package
4263 (name "sbcl-static-vectors")
4264 (version "1.8.4")
4265 (source
4266 (origin
4267 (method git-fetch)
4268 (uri (git-reference
4269 (url "https://github.com/sionescu/static-vectors")
4270 (commit (string-append "v" version))))
4271 (file-name (git-file-name name version))
4272 (sha256
4273 (base32 "0qvf9z6bhwhm8n45fjwkm7j8dcb58szfvndky65cyn4lpdval7m1"))))
4274 (native-inputs
4275 `(("sbcl-fiveam" ,sbcl-fiveam)))
4276 (inputs
4277 `(("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
4278 ("sbcl-cffi" ,sbcl-cffi)))
4279 (build-system asdf-build-system/sbcl)
4280 (home-page "https://github.com/sionescu/static-vectors")
4281 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4282 (description
4283 "With @code{static-vectors}, you can create vectors allocated in static
4284 memory.")
4285 (license license:expat)))
4286
4287 (define-public cl-static-vectors
4288 (sbcl-package->cl-source-package sbcl-static-vectors))
4289
4290 (define-public ecl-static-vectors
4291 (sbcl-package->ecl-package sbcl-static-vectors))
4292
4293 (define-public sbcl-marshal
4294 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4295 (revision "1"))
4296 (package
4297 (name "sbcl-marshal")
4298 (version (git-version "1.3.0" revision commit))
4299 (source
4300 (origin
4301 (method git-fetch)
4302 (uri (git-reference
4303 (url "https://github.com/wlbr/cl-marshal")
4304 (commit commit)))
4305 (file-name (git-file-name name version))
4306 (sha256
4307 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4308 (build-system asdf-build-system/sbcl)
4309 (home-page "https://github.com/wlbr/cl-marshal")
4310 (synopsis "Simple (de)serialization of Lisp datastructures")
4311 (description
4312 "Simple and fast marshalling of Lisp datastructures. Convert any object
4313 into a string representation, put it on a stream an revive it from there.
4314 Only minimal changes required to make your CLOS objects serializable.")
4315 (license license:expat))))
4316
4317 (define-public cl-marshal
4318 (sbcl-package->cl-source-package sbcl-marshal))
4319
4320 (define-public sbcl-checkl
4321 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4322 (revision "1"))
4323 (package
4324 (name "sbcl-checkl")
4325 (version (git-version "0.0.0" revision commit))
4326 (source
4327 (origin
4328 (method git-fetch)
4329 (uri (git-reference
4330 (url "https://github.com/rpav/CheckL")
4331 (commit commit)))
4332 (file-name (git-file-name name version))
4333 (sha256
4334 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4335 (build-system asdf-build-system/sbcl)
4336 (arguments
4337 ;; Error while trying to load definition for system checkl-test from
4338 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4339 ;; is undefined.
4340 '(#:tests? #f))
4341 (native-inputs
4342 `(("sbcl-fiveam" ,sbcl-fiveam)))
4343 (inputs
4344 `(("sbcl-marshal" ,sbcl-marshal)))
4345 (home-page "https://github.com/rpav/CheckL/")
4346 (synopsis "Dynamic testing for Common Lisp")
4347 (description
4348 "CheckL lets you write tests dynamically, it checks resulting values
4349 against the last run.")
4350 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4351 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4352 ;; stronger of the two and so I think only listing this should suffice.
4353 (license license:llgpl))))
4354
4355 (define-public cl-checkl
4356 (sbcl-package->cl-source-package sbcl-checkl))
4357
4358 (define-public sbcl-fast-io
4359 (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b")
4360 (revision "2"))
4361 (package
4362 (name "sbcl-fast-io")
4363 (version (git-version "1.0.0" revision commit))
4364 (source
4365 (origin
4366 (method git-fetch)
4367 (uri (git-reference
4368 (url "https://github.com/rpav/fast-io")
4369 (commit commit)))
4370 (file-name (git-file-name name version))
4371 (sha256
4372 (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n"))))
4373 (build-system asdf-build-system/sbcl)
4374 (arguments
4375 ;; Error while trying to load definition for system fast-io-test from
4376 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4377 ;; is undefined.
4378 '(#:tests? #f))
4379 (native-inputs
4380 `(("sbcl-fiveam" ,sbcl-fiveam)
4381 ("sbcl-checkl" ,sbcl-checkl)))
4382 (inputs
4383 `(("sbcl-alexandria" ,sbcl-alexandria)
4384 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4385 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4386 (home-page "https://github.com/rpav/fast-io")
4387 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4388 (description
4389 "Fast-io is about improving performance to octet-vectors and octet
4390 streams (though primarily the former, while wrapping the latter).")
4391 ;; Author specifies this as NewBSD which is an alias
4392 (license license:bsd-3))))
4393
4394 (define-public cl-fast-io
4395 (sbcl-package->cl-source-package sbcl-fast-io))
4396
4397 (define-public sbcl-jonathan
4398 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4399 (revision "1"))
4400 (package
4401 (name "sbcl-jonathan")
4402 (version (git-version "0.1.0" revision commit))
4403 (source
4404 (origin
4405 (method git-fetch)
4406 (uri (git-reference
4407 (url "https://github.com/Rudolph-Miller/jonathan")
4408 (commit commit)))
4409 (file-name (git-file-name name version))
4410 (sha256
4411 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4412 (build-system asdf-build-system/sbcl)
4413 (arguments
4414 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4415 ;; required by #<SYSTEM "jonathan">. Why?
4416 `(#:tests? #f))
4417 (native-inputs
4418 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4419 ("sbcl-prove" ,sbcl-prove)))
4420 (inputs
4421 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4422 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4423 ("sbcl-fast-io" ,sbcl-fast-io)
4424 ("sbcl-proc-parse" ,sbcl-proc-parse)
4425 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4426 (home-page "https://rudolph-miller.github.io/jonathan/overview.html")
4427 (synopsis "JSON encoder and decoder")
4428 (description
4429 "High performance JSON encoder and decoder. Currently support: SBCL,
4430 CCL.")
4431 ;; Author specifies the MIT license
4432 (license license:expat))))
4433
4434 (define-public cl-jonathan
4435 (sbcl-package->cl-source-package sbcl-jonathan))
4436
4437 (define-public sbcl-http-body
4438 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4439 (revision "1"))
4440 (package
4441 (name "sbcl-http-body")
4442 (version (git-version "0.1.0" revision commit))
4443 (source
4444 (origin
4445 (method git-fetch)
4446 (uri (git-reference
4447 (url "https://github.com/fukamachi/http-body")
4448 (commit commit)))
4449 (file-name (git-file-name name version))
4450 (sha256
4451 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4452 (build-system asdf-build-system/sbcl)
4453 (arguments
4454 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4455 ;; found, required by #<SYSTEM "http-body">. Why?
4456 `(#:tests? #f))
4457 (native-inputs
4458 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4459 ("sbcl-prove" ,sbcl-prove)))
4460 (inputs
4461 `(("sbcl-fast-http" ,sbcl-fast-http)
4462 ("sbcl-jonathan" ,sbcl-jonathan)
4463 ("sbcl-quri" ,sbcl-quri)))
4464 (home-page "https://github.com/fukamachi/http-body")
4465 (synopsis "HTTP POST data parser")
4466 (description
4467 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4468 supports application/x-www-form-urlencoded, application/json, and
4469 multipart/form-data.")
4470 (license license:bsd-2))))
4471
4472 (define-public cl-http-body
4473 (sbcl-package->cl-source-package sbcl-http-body))
4474
4475 (define-public sbcl-circular-streams
4476 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4477 (revision "1"))
4478 (package
4479 (name "sbcl-circular-streams")
4480 (version (git-version "0.1.0" revision commit))
4481 (source
4482 (origin
4483 (method git-fetch)
4484 (uri (git-reference
4485 (url "https://github.com/fukamachi/circular-streams")
4486 (commit commit)))
4487 (file-name (git-file-name name version))
4488 (sha256
4489 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4490 (build-system asdf-build-system/sbcl)
4491 (arguments
4492 ;; The tests depend on cl-test-more which is now prove. Prove
4493 ;; tests aren't working for some reason.
4494 `(#:tests? #f))
4495 (inputs
4496 `(("sbcl-fast-io" ,sbcl-fast-io)
4497 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4498 (home-page "https://github.com/fukamachi/circular-streams")
4499 (synopsis "Circularly readable streams for Common Lisp")
4500 (description
4501 "Circular-Streams allows you to read streams circularly by wrapping real
4502 streams. Once you reach end-of-file of a stream, it's file position will be
4503 reset to 0 and you're able to read it again.")
4504 (license license:llgpl))))
4505
4506 (define-public cl-circular-streams
4507 (sbcl-package->cl-source-package sbcl-circular-streams))
4508
4509 (define-public sbcl-lack-request
4510 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4511 (revision "1"))
4512 (package
4513 (name "sbcl-lack-request")
4514 (version (git-version "0.1.0" revision commit))
4515 (source
4516 (origin
4517 (method git-fetch)
4518 (uri (git-reference
4519 (url "https://github.com/fukamachi/lack")
4520 (commit commit)))
4521 (file-name (git-file-name "lack-request" version))
4522 (sha256
4523 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4524 (build-system asdf-build-system/sbcl)
4525 (arguments
4526 '(#:asd-file "lack-request.asd"
4527 #:asd-system-name "lack-request"
4528 #:test-asd-file "t-lack-request.asd"
4529 ;; XXX: Component :CLACK-TEST not found
4530 #:tests? #f))
4531 (native-inputs
4532 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4533 ("sbcl-prove" ,sbcl-prove)))
4534 (inputs
4535 `(("sbcl-quri" ,sbcl-quri)
4536 ("sbcl-http-body" ,sbcl-http-body)
4537 ("sbcl-circular-streams" ,sbcl-circular-streams)))
4538 (home-page "https://github.com/fukamachi/lack")
4539 (synopsis "Lack, the core of Clack")
4540 (description
4541 "Lack is a Common Lisp library which allows web applications to be
4542 constructed of modular components. It was originally a part of Clack, however
4543 it's going to be rewritten as an individual project since Clack v2 with
4544 performance and simplicity in mind.")
4545 (license license:llgpl))))
4546
4547 (define-public cl-lack-request
4548 (sbcl-package->cl-source-package sbcl-lack-request))
4549
4550 (define-public sbcl-local-time
4551 (let ((commit "62792705245168d3fc2e04164b9a143477284142")
4552 (revision "1"))
4553 (package
4554 (name "sbcl-local-time")
4555 (version (git-version "1.0.6" revision commit))
4556 (source
4557 (origin
4558 (method git-fetch)
4559 (uri (git-reference
4560 (url "https://github.com/dlowe-net/local-time")
4561 (commit commit)))
4562 (file-name (git-file-name name version))
4563 (sha256
4564 (base32 "1r5zq4l1lrgprdr2pw7wwry194yknnllyjf6lx7snypb3k4r3yir"))))
4565 (build-system asdf-build-system/sbcl)
4566 (arguments
4567 ;; TODO: Component :STEFIL not found, required by #<SYSTEM
4568 ;; "local-time/test">
4569 '(#:tests? #f))
4570 (native-inputs
4571 `(("stefil" ,sbcl-hu.dwim.stefil)))
4572 (inputs
4573 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4574 (home-page "https://common-lisp.net/project/local-time/")
4575 (synopsis "Time manipulation library for Common Lisp")
4576 (description
4577 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4578 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4579 Long Painful History of Time\".")
4580 (license license:expat))))
4581
4582 (define-public cl-local-time
4583 (sbcl-package->cl-source-package sbcl-local-time))
4584
4585 (define-public sbcl-lack-response
4586 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4587 (revision "1"))
4588 (package
4589 (name "sbcl-lack-response")
4590 (version (git-version "0.1.0" revision commit))
4591 (source
4592 (origin
4593 (method git-fetch)
4594 (uri (git-reference
4595 (url "https://github.com/fukamachi/lack")
4596 (commit commit)))
4597 (file-name (git-file-name name version))
4598 (sha256
4599 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4600 (build-system asdf-build-system/sbcl)
4601 (arguments
4602 '(#:asd-file "lack-response.asd"
4603 #:asd-system-name "lack-response"
4604 ;; XXX: no tests for lack-response.
4605 #:tests? #f))
4606 (native-inputs
4607 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4608 ("sbcl-prove" ,sbcl-prove)))
4609 (inputs
4610 `(("sbcl-quri" ,sbcl-quri)
4611 ("sbcl-http-body" ,sbcl-http-body)
4612 ("sbcl-circular-streams" ,sbcl-circular-streams)
4613 ("sbcl-local-time" ,sbcl-local-time)))
4614 (home-page "https://github.com/fukamachi/lack")
4615 (synopsis "Lack, the core of Clack")
4616 (description
4617 "Lack is a Common Lisp library which allows web applications to be
4618 constructed of modular components. It was originally a part of Clack, however
4619 it's going to be rewritten as an individual project since Clack v2 with
4620 performance and simplicity in mind.")
4621 (license license:llgpl))))
4622
4623 (define-public cl-lack-response
4624 (sbcl-package->cl-source-package sbcl-lack-response))
4625
4626 (define-public sbcl-lack-component
4627 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4628 (revision "1"))
4629 (package
4630 (name "sbcl-lack-component")
4631 (version (git-version "0.0.0" revision commit))
4632 (source
4633 (origin
4634 (method git-fetch)
4635 (uri (git-reference
4636 (url "https://github.com/fukamachi/lack")
4637 (commit commit)))
4638 (file-name (git-file-name "lack-component" version))
4639 (sha256
4640 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4641 (build-system asdf-build-system/sbcl)
4642 (arguments
4643 '(#:asd-file "lack-component.asd"
4644 #:asd-system-name "lack-component"
4645 #:test-asd-file "t-lack-component.asd"
4646 ;; XXX: Component :LACK-TEST not found
4647 #:tests? #f))
4648 (native-inputs
4649 `(("prove-asdf" ,sbcl-prove-asdf)))
4650 (home-page "https://github.com/fukamachi/lack")
4651 (synopsis "Lack, the core of Clack")
4652 (description
4653 "Lack is a Common Lisp library which allows web applications to be
4654 constructed of modular components. It was originally a part of Clack, however
4655 it's going to be rewritten as an individual project since Clack v2 with
4656 performance and simplicity in mind.")
4657 (license license:llgpl))))
4658
4659 (define-public cl-lack-component
4660 (sbcl-package->cl-source-package sbcl-lack-component))
4661
4662 (define-public sbcl-lack-util
4663 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4664 (revision "1"))
4665 (package
4666 (name "sbcl-lack-util")
4667 (version (git-version "0.1.0" revision commit))
4668 (source
4669 (origin
4670 (method git-fetch)
4671 (uri (git-reference
4672 (url "https://github.com/fukamachi/lack")
4673 (commit commit)))
4674 (file-name (git-file-name "lack-util" version))
4675 (sha256
4676 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4677 (build-system asdf-build-system/sbcl)
4678 (arguments
4679 '(#:asd-file "lack-util.asd"
4680 #:asd-system-name "lack-util"
4681 #:test-asd-file "t-lack-util.asd"
4682 ;; XXX: Component :LACK-TEST not found
4683 #:tests? #f))
4684 (native-inputs
4685 `(("prove-asdf" ,sbcl-prove-asdf)))
4686 (inputs
4687 `(("sbcl-ironclad" ,sbcl-ironclad)))
4688 (home-page "https://github.com/fukamachi/lack")
4689 (synopsis "Lack, the core of Clack")
4690 (description
4691 "Lack is a Common Lisp library which allows web applications to be
4692 constructed of modular components. It was originally a part of Clack, however
4693 it's going to be rewritten as an individual project since Clack v2 with
4694 performance and simplicity in mind.")
4695 (license license:llgpl))))
4696
4697 (define-public cl-lack-util
4698 (sbcl-package->cl-source-package sbcl-lack-util))
4699
4700 (define-public sbcl-lack-middleware-backtrace
4701 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4702 (revision "1"))
4703 (package
4704 (name "sbcl-lack-middleware-backtrace")
4705 (version (git-version "0.1.0" revision commit))
4706 (source
4707 (origin
4708 (method git-fetch)
4709 (uri (git-reference
4710 (url "https://github.com/fukamachi/lack")
4711 (commit commit)))
4712 (file-name (git-file-name "lack-middleware-backtrace" version))
4713 (sha256
4714 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4715 (build-system asdf-build-system/sbcl)
4716 (arguments
4717 '(#:asd-file "lack-middleware-backtrace.asd"
4718 #:asd-system-name "lack-middleware-backtrace"
4719 #:test-asd-file "t-lack-middleware-backtrace.asd"
4720 ;; XXX: Component :LACK not found
4721 #:tests? #f))
4722 (native-inputs
4723 `(("prove-asdf" ,sbcl-prove-asdf)))
4724 (home-page "https://github.com/fukamachi/lack")
4725 (synopsis "Lack, the core of Clack")
4726 (description
4727 "Lack is a Common Lisp library which allows web applications to be
4728 constructed of modular components. It was originally a part of Clack, however
4729 it's going to be rewritten as an individual project since Clack v2 with
4730 performance and simplicity in mind.")
4731 (license license:llgpl))))
4732
4733 (define-public cl-lack-middleware-backtrace
4734 (sbcl-package->cl-source-package sbcl-lack-middleware-backtrace))
4735
4736 (define-public sbcl-trivial-mimes
4737 (let ((commit "303f8ac0aa6ca0bc139aa3c34822e623c3723fab")
4738 (revision "1"))
4739 (package
4740 (name "sbcl-trivial-mimes")
4741 (version (git-version "1.1.0" revision commit))
4742 (source
4743 (origin
4744 (method git-fetch)
4745 (uri (git-reference
4746 (url "https://github.com/Shinmera/trivial-mimes")
4747 (commit commit)))
4748 (file-name (git-file-name name version))
4749 (sha256
4750 (base32 "17jxgl47r695bvsb7wi3n2ws5rp1zzgvw0zii8cy5ggw4b4ayv6m"))))
4751 (build-system asdf-build-system/sbcl)
4752 (arguments
4753 '(#:phases
4754 (modify-phases %standard-phases
4755 (add-after
4756 'unpack 'fix-paths
4757 (lambda* (#:key inputs #:allow-other-keys)
4758 (let ((anchor "#p\"/etc/mime.types\""))
4759 (substitute* "mime-types.lisp"
4760 ((anchor all)
4761 (string-append
4762 anchor "\n"
4763 "(asdf:system-relative-pathname :trivial-mimes "
4764 "\"../../share/common-lisp/" (%lisp-type)
4765 "-source/trivial-mimes/mime.types\")")))))))))
4766 (native-inputs
4767 `(("stefil" ,sbcl-hu.dwim.stefil)))
4768 (inputs
4769 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4770 (home-page "https://shinmera.github.io/trivial-mimes/")
4771 (synopsis "Tiny Common Lisp library to detect mime types in files")
4772 (description
4773 "This is a teensy library that provides some functions to determine the
4774 mime-type of a file.")
4775 (license license:artistic2.0))))
4776
4777 (define-public cl-trivial-mimes
4778 (sbcl-package->cl-source-package sbcl-trivial-mimes))
4779
4780 (define-public ecl-trivial-mimes
4781 (sbcl-package->ecl-package sbcl-trivial-mimes))
4782
4783 (define-public sbcl-lack-middleware-static
4784 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4785 (revision "1"))
4786 (package
4787 (name "sbcl-lack-middleware-static")
4788 (version (git-version "0.1.0" revision commit))
4789 (source
4790 (origin
4791 (method git-fetch)
4792 (uri (git-reference
4793 (url "https://github.com/fukamachi/lack")
4794 (commit commit)))
4795 (file-name (git-file-name "lack-middleware-static" version))
4796 (sha256
4797 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4798 (build-system asdf-build-system/sbcl)
4799 (arguments
4800 '(#:asd-file "lack-middleware-static.asd"
4801 #:asd-system-name "lack-middleware-static"
4802 #:test-asd-file "t-lack-middleware-static.asd"
4803 ;; XXX: Component :LACK not found
4804 #:tests? #f))
4805 (native-inputs
4806 `(("prove-asdf" ,sbcl-prove-asdf)))
4807 (inputs
4808 `(("sbcl-ironclad" ,sbcl-ironclad)
4809 ("sbcl-trivial-mimes" ,sbcl-trivial-mimes)
4810 ("sbcl-local-time" ,sbcl-local-time)))
4811 (home-page "https://github.com/fukamachi/lack")
4812 (synopsis "Lack, the core of Clack")
4813 (description
4814 "Lack is a Common Lisp library which allows web applications to be
4815 constructed of modular components. It was originally a part of Clack, however
4816 it's going to be rewritten as an individual project since Clack v2 with
4817 performance and simplicity in mind.")
4818 (license license:llgpl))))
4819
4820 (define-public cl-lack-middleware-static
4821 (sbcl-package->cl-source-package sbcl-lack-middleware-static))
4822
4823 (define-public sbcl-lack
4824 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4825 (revision "1"))
4826 (package
4827 (name "sbcl-lack")
4828 (version (git-version "0.1.0" revision commit))
4829 (source
4830 (origin
4831 (method git-fetch)
4832 (uri (git-reference
4833 (url "https://github.com/fukamachi/lack")
4834 (commit commit)))
4835 (file-name (git-file-name "lack" version))
4836 (sha256
4837 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4838 (build-system asdf-build-system/sbcl)
4839 (arguments
4840 '(#:test-asd-file "t-lack.asd"
4841 ;; XXX: Component :CLACK not found
4842 #:tests? #f))
4843 (native-inputs
4844 `(("prove-asdf" ,sbcl-prove-asdf)))
4845 (inputs
4846 `(("sbcl-lack-component" ,sbcl-lack-component)
4847 ("sbcl-lack-util" ,sbcl-lack-util)))
4848 (home-page "https://github.com/fukamachi/lack")
4849 (synopsis "Lack, the core of Clack")
4850 (description
4851 "Lack is a Common Lisp library which allows web applications to be
4852 constructed of modular components. It was originally a part of Clack, however
4853 it's going to be rewritten as an individual project since Clack v2 with
4854 performance and simplicity in mind.")
4855 (license license:llgpl))))
4856
4857 (define-public cl-lack
4858 (sbcl-package->cl-source-package sbcl-lack))
4859
4860 (define-public sbcl-ningle
4861 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
4862 (revision "1"))
4863 (package
4864 (name "sbcl-ningle")
4865 (version (git-version "0.3.0" revision commit))
4866 (source
4867 (origin
4868 (method git-fetch)
4869 (uri (git-reference
4870 (url "https://github.com/fukamachi/ningle")
4871 (commit commit)))
4872 (file-name (git-file-name name version))
4873 (sha256
4874 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
4875 (build-system asdf-build-system/sbcl)
4876 (arguments
4877 ;; TODO: pull in clack-test
4878 '(#:tests? #f
4879 #:phases
4880 (modify-phases %standard-phases
4881 (delete 'cleanup-files)
4882 (delete 'cleanup)
4883 (add-before 'cleanup 'combine-fasls
4884 (lambda* (#:key outputs #:allow-other-keys)
4885 (let* ((out (assoc-ref outputs "out"))
4886 (lib (string-append out "/lib/sbcl"))
4887 (ningle-path (string-append lib "/ningle"))
4888 (fasl-files (find-files out "\\.fasl$")))
4889 (mkdir-p ningle-path)
4890 (let ((fasl-path (lambda (name)
4891 (string-append ningle-path
4892 "/"
4893 (basename name)
4894 "--system.fasl"))))
4895 (for-each (lambda (file)
4896 (rename-file file
4897 (fasl-path
4898 (basename file ".fasl"))))
4899 fasl-files))
4900 fasl-files)
4901 #t)))))
4902 (native-inputs
4903 `(("sbcl-prove-asdf" ,sbcl-prove-asdf)
4904 ("sbcl-prove" ,sbcl-prove)))
4905 (inputs
4906 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4907 ("sbcl-cl-syntax-annot" ,sbcl-cl-syntax-annot)
4908 ("sbcl-myway" ,sbcl-myway)
4909 ("sbcl-lack-request" ,sbcl-lack-request)
4910 ("sbcl-lack-response" ,sbcl-lack-response)
4911 ("sbcl-lack-component" ,sbcl-lack-component)
4912 ("sbcl-alexandria" ,sbcl-alexandria)
4913 ("sbcl-babel" ,sbcl-babel)))
4914 (home-page "https://8arrow.org/ningle/")
4915 (synopsis "Super micro framework for Common Lisp")
4916 (description
4917 "Ningle is a lightweight web application framework for Common Lisp.")
4918 (license license:llgpl))))
4919
4920 (define-public cl-ningle
4921 (sbcl-package->cl-source-package sbcl-ningle))
4922
4923 (define-public sbcl-clack
4924 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
4925 (revision "1"))
4926 (package
4927 (name "sbcl-clack")
4928 (version (git-version "2.0.0" revision commit))
4929 (source
4930 (origin
4931 (method git-fetch)
4932 (uri (git-reference
4933 (url "https://github.com/fukamachi/clack")
4934 (commit commit)))
4935 (file-name (git-file-name name version))
4936 (sha256
4937 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
4938 (build-system asdf-build-system/sbcl)
4939 (inputs
4940 `(("sbcl-lack" ,sbcl-lack)
4941 ("sbcl-lack-middleware-backtrace" ,sbcl-lack-middleware-backtrace)
4942 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)))
4943 (home-page "https://github.com/fukamachi/clack")
4944 (synopsis "Web Application Environment for Common Lisp")
4945 (description
4946 "Clack is a web application environment for Common Lisp inspired by
4947 Python's WSGI and Ruby's Rack.")
4948 (license license:llgpl))))
4949
4950 (define-public cl-clack
4951 (sbcl-package->cl-source-package sbcl-clack))
4952
4953 (define-public sbcl-log4cl
4954 (let ((commit "611e094458504b938d49de904eab141285328c7c")
4955 (revision "1"))
4956 (package
4957 (name "sbcl-log4cl")
4958 (build-system asdf-build-system/sbcl)
4959 (version "1.1.2")
4960 (source
4961 (origin
4962 (method git-fetch)
4963 (uri (git-reference
4964 (url "https://github.com/sharplispers/log4cl")
4965 (commit commit)))
4966 (file-name (git-file-name name version))
4967 (sha256
4968 (base32
4969 "08jly0s0g26b56hhpfizxsb4j0yvbh946sd205gr42dkzv8l7dsc"))))
4970 ;; FIXME: tests require stefil, sbcl-hu.dwim.stefil wont work
4971 (arguments
4972 `(#:tests? #f))
4973 (inputs `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
4974 (synopsis "Common Lisp logging framework, modeled after Log4J")
4975 (home-page "https://github.com/7max/log4cl")
4976 (description "This is a Common Lisp logging framework that can log at
4977 various levels and mix text with expressions.")
4978 (license license:asl2.0))))
4979
4980 (define-public cl-log4cl
4981 (sbcl-package->cl-source-package sbcl-log4cl))
4982
4983 (define-public ecl-log4cl
4984 (sbcl-package->ecl-package sbcl-log4cl))
4985
4986 (define-public sbcl-find-port
4987 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
4988 (revision "1"))
4989 (package
4990 (name "sbcl-find-port")
4991 (build-system asdf-build-system/sbcl)
4992 (version "0.1")
4993 (home-page "https://github.com/eudoxia0/find-port")
4994 (source
4995 (origin
4996 (method git-fetch)
4997 (uri (git-reference
4998 (url home-page)
4999 (commit commit)))
5000 (file-name (git-file-name name version))
5001 (sha256
5002 (base32
5003 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
5004 (native-inputs
5005 `(("fiveam" ,sbcl-fiveam)))
5006 (inputs
5007 `(("sbcl-usocket" ,sbcl-usocket)))
5008 (synopsis "Find open ports programmatically in Common Lisp")
5009 (description "This is a small Common Lisp library that finds an open
5010 port within a range.")
5011 (license license:expat))))
5012
5013 (define-public cl-find-port
5014 (sbcl-package->cl-source-package sbcl-find-port))
5015
5016 (define-public ecl-find-port
5017 (sbcl-package->ecl-package sbcl-find-port))
5018
5019 (define-public sbcl-clunit
5020 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
5021 (revision "1"))
5022 (package
5023 (name "sbcl-clunit")
5024 (version (git-version "0.2.3" revision commit))
5025 (source
5026 (origin
5027 (method git-fetch)
5028 (uri (git-reference
5029 (url "https://github.com/tgutu/clunit")
5030 (commit commit)))
5031 (file-name (git-file-name name version))
5032 (sha256
5033 (base32
5034 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
5035 (build-system asdf-build-system/sbcl)
5036 (synopsis "CLUnit is a Common Lisp unit testing framework")
5037 (description
5038 "CLUnit is a Common Lisp unit testing framework. It is designed
5039 to be easy to use so that you can quickly start testing. CLUnit
5040 provides a rich set of features aimed at improving your unit testing
5041 experience.")
5042 (home-page "https://tgutu.github.io/clunit/")
5043 ;; MIT License
5044 (license license:expat))))
5045
5046 (define-public cl-clunit
5047 (sbcl-package->cl-source-package sbcl-clunit))
5048
5049 (define-public ecl-clunit
5050 (sbcl-package->ecl-package sbcl-clunit))
5051
5052 (define-public sbcl-py4cl
5053 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
5054 (revision "1"))
5055 (package
5056 (name "sbcl-py4cl")
5057 (version (git-version "0.0.0" revision commit))
5058 (source
5059 (origin
5060 (method git-fetch)
5061 (uri (git-reference
5062 (url "https://github.com/bendudson/py4cl")
5063 (commit commit)))
5064 (file-name (git-file-name name version))
5065 (sha256
5066 (base32
5067 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
5068 (modules '((guix build utils)))))
5069 (build-system asdf-build-system/sbcl)
5070 (native-inputs
5071 `(("sbcl-clunit" ,sbcl-clunit)))
5072 (inputs
5073 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5074 (propagated-inputs
5075 ;; This package doesn't do anything without python available
5076 `(("python" ,python)
5077 ;; For multi-dimensional array support
5078 ("python-numpy" ,python-numpy)))
5079 (arguments
5080 '(#:phases
5081 (modify-phases %standard-phases
5082 (add-after 'unpack 'replace-*base-directory*-var
5083 (lambda* (#:key outputs #:allow-other-keys)
5084 ;; In the ASD, the author makes an attempt to
5085 ;; programatically determine the location of the
5086 ;; source-code so lisp can call into "py4cl.py". We can
5087 ;; hard-code this since we know where this file will
5088 ;; reside.
5089 (substitute* "src/callpython.lisp"
5090 (("py4cl/config:\\*base-directory\\*")
5091 (string-append
5092 "\""
5093 (assoc-ref outputs "out")
5094 "/share/common-lisp/sbcl-source/py4cl/"
5095 "\""))))))))
5096 (synopsis "Call python from Common Lisp")
5097 (description
5098 "Py4CL is a bridge between Common Lisp and Python, which enables Common
5099 Lisp to interact with Python code. It uses streams to communicate with a
5100 separate python process, the approach taken by cl4py. This is different to
5101 the CFFI approach used by burgled-batteries, but has the same goal.")
5102 (home-page "https://github.com/bendudson/py4cl")
5103 ;; MIT License
5104 (license license:expat))))
5105
5106 (define-public cl-py4cl
5107 (sbcl-package->cl-source-package sbcl-py4cl))
5108
5109 (define-public ecl-py4cl
5110 (sbcl-package->ecl-package sbcl-py4cl))
5111
5112 (define-public sbcl-parse-declarations
5113 (let ((commit "549aebbfb9403a7fe948654126b9c814f443f4f2")
5114 (revision "1"))
5115 (package
5116 (name "sbcl-parse-declarations")
5117 (version (git-version "1.0.0" revision commit))
5118 (source
5119 (origin
5120 (method git-fetch)
5121 (uri (git-reference
5122 (url (string-append
5123 "https://gitlab.common-lisp.net/parse-declarations/"
5124 "parse-declarations.git"))
5125 (commit commit)))
5126 (file-name (git-file-name name version))
5127 (sha256
5128 (base32 "03g5qks4c59nmxa48pbslxkfh77h8hn8566jddp6m9pl15dzzpxd"))))
5129 (build-system asdf-build-system/sbcl)
5130 (arguments
5131 `(#:asd-file "parse-declarations-1.0.asd"
5132 #:asd-system-name "parse-declarations-1.0"))
5133 (home-page "https://common-lisp.net/project/parse-declarations/")
5134 (synopsis "Parse, filter, and build declarations")
5135 (description
5136 "Parse-Declarations is a Common Lisp library to help writing
5137 macros which establish bindings. To be semantically correct, such
5138 macros must take user declarations into account, as these may affect
5139 the bindings they establish. Yet the ANSI standard of Common Lisp does
5140 not provide any operators to work with declarations in a convenient,
5141 high-level way. This library provides such operators.")
5142 ;; MIT License
5143 (license license:expat))))
5144
5145 (define-public cl-parse-declarations
5146 (sbcl-package->cl-source-package sbcl-parse-declarations))
5147
5148 (define-public ecl-parse-declarations
5149 (sbcl-package->ecl-package sbcl-parse-declarations))
5150
5151 (define-public sbcl-cl-quickcheck
5152 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
5153 (revision "1"))
5154 (package
5155 (name "sbcl-cl-quickcheck")
5156 (version (git-version "0.0.4" revision commit))
5157 (source
5158 (origin
5159 (method git-fetch)
5160 (uri (git-reference
5161 (url "https://github.com/mcandre/cl-quickcheck")
5162 (commit commit)))
5163 (file-name (git-file-name name version))
5164 (sha256
5165 (base32
5166 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5167 (build-system asdf-build-system/sbcl)
5168 (synopsis
5169 "Common Lisp port of the QuickCheck unit test framework")
5170 (description
5171 "Common Lisp port of the QuickCheck unit test framework")
5172 (home-page "https://github.com/mcandre/cl-quickcheck")
5173 ;; MIT
5174 (license license:expat))))
5175
5176 (define-public cl-cl-quickcheck
5177 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5178
5179 (define-public ecl-cl-quickcheck
5180 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5181
5182 (define-public sbcl-burgled-batteries3
5183 (let ((commit "f65f454d13bb6c40e17e9ec62e41eb5069e09760")
5184 (revision "2"))
5185 (package
5186 (name "sbcl-burgled-batteries3")
5187 (version (git-version "0.0.0" revision commit))
5188 (source
5189 (origin
5190 (method git-fetch)
5191 (uri (git-reference
5192 (url "https://github.com/snmsts/burgled-batteries3")
5193 (commit commit)))
5194 (file-name (git-file-name name version))
5195 (sha256
5196 (base32
5197 "1nzn7jawrfajyzwfnzrg2cmn9xxadcqh4szbpg0jggkhdkdzz4wa"))))
5198 (build-system asdf-build-system/sbcl)
5199 (arguments
5200 `(#:tests? #f
5201 #:modules (((guix build python-build-system) #:select (python-version))
5202 ,@%asdf-build-system-modules)
5203 #:imported-modules ((guix build python-build-system)
5204 ,@%asdf-build-system-modules)
5205 #:phases
5206 (modify-phases (@ (guix build asdf-build-system) %standard-phases)
5207 (add-after 'unpack 'set-*cpython-include-dir*-var
5208 (lambda* (#:key inputs #:allow-other-keys)
5209 (let ((python (assoc-ref inputs "python")))
5210 (setenv "BB_PYTHON3_INCLUDE_DIR"
5211 (string-append python "/include/python"
5212 (python-version python)))
5213 (setenv "BB_PYTHON3_DYLIB"
5214 (string-append python "/lib/libpython3.so"))
5215 #t)))
5216 (add-after 'unpack 'adjust-for-python-3.8
5217 (lambda _
5218 ;; This method is no longer part of the public API.
5219 (substitute* "ffi-interface.lisp"
5220 ((".*PyEval_ReInitThreads.*")
5221 ""))
5222 #t)))))
5223 (native-inputs
5224 `(("sbcl-cl-fad" ,sbcl-cl-fad)
5225 ("sbcl-lift" ,sbcl-lift)
5226 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5227 (inputs
5228 `(("python" ,python)
5229 ("sbcl-cffi" ,sbcl-cffi)
5230 ("sbcl-cffi-grovel" ,sbcl-cffi-grovel)
5231 ("sbcl-alexandria" , sbcl-alexandria)
5232 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5233 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5234 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5235 (description
5236 "This package provides a shim between Python3 (specifically, the
5237 CPython implementation of Python) and Common Lisp.")
5238 (home-page "https://github.com/snmsts/burgled-batteries3")
5239 (license license:expat))))
5240
5241 (define-public cl-burgled-batteries3
5242 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5243
5244 (define-public ecl-burgled-batteries3
5245 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5246
5247 (define-public sbcl-metabang-bind
5248 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5249 (revision "1"))
5250 (package
5251 (name "sbcl-metabang-bind")
5252 (version (git-version "0.8.0" revision commit))
5253 (source
5254 (origin
5255 (method git-fetch)
5256 (uri (git-reference
5257 (url "https://github.com/gwkkwg/metabang-bind")
5258 (commit commit)))
5259 (file-name (git-file-name name version))
5260 (sha256
5261 (base32
5262 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5263 (build-system asdf-build-system/sbcl)
5264 (native-inputs
5265 `(("sbcl-lift" ,sbcl-lift)))
5266 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5267 (description
5268 "Bind extends the idea of of let and destructing to provide a uniform
5269 syntax for all your accessor needs. It combines @code{let},
5270 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5271 editing, property or association-lists, and @code{multiple-value-bind} and a
5272 whole lot more into a single form.")
5273 (home-page "https://common-lisp.net/project/metabang-bind/")
5274 ;; MIT License
5275 (license license:expat))))
5276
5277 (define-public cl-metabang-bind
5278 (sbcl-package->cl-source-package sbcl-metabang-bind))
5279
5280 (define-public ecl-metabang-bind
5281 (sbcl-package->ecl-package sbcl-metabang-bind))
5282
5283 (define-public sbcl-fare-utils
5284 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5285 (revision "1"))
5286 (package
5287 (name "sbcl-fare-utils")
5288 (version (git-version "1.0.0.5" revision commit))
5289 (source
5290 (origin
5291 (method git-fetch)
5292 (uri
5293 (git-reference
5294 (url
5295 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5296 (commit commit)))
5297 (file-name (git-file-name name version))
5298 (sha256
5299 (base32
5300 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5301 (build-system asdf-build-system/sbcl)
5302 (arguments
5303 `(#:test-asd-file "test/fare-utils-test.asd"))
5304 (native-inputs
5305 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5306 (synopsis "Collection of utilities and data structures")
5307 (description
5308 "fare-utils is a small collection of utilities. It contains a lot of
5309 basic everyday functions and macros.")
5310 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5311 ;; MIT License
5312 (license license:expat))))
5313
5314 (define-public cl-fare-utils
5315 (sbcl-package->cl-source-package sbcl-fare-utils))
5316
5317 (define-public ecl-fare-utils
5318 (sbcl-package->ecl-package sbcl-fare-utils))
5319
5320 (define-public sbcl-trivial-utf-8
5321 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5322 (revision "1"))
5323 (package
5324 (name "sbcl-trivial-utf-8")
5325 (version (git-version "0.0.0" revision commit))
5326 (source
5327 (origin
5328 (method git-fetch)
5329 (uri
5330 (git-reference
5331 (url (string-append "https://gitlab.common-lisp.net/"
5332 "trivial-utf-8/trivial-utf-8.git"))
5333 (commit commit)))
5334 (file-name (git-file-name name version))
5335 (sha256
5336 (base32
5337 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5338 (arguments
5339 ;; Guix incorrectly assumes the "8" is part of the version
5340 ;; number and lobs it off.
5341 `(#:asd-file "trivial-utf-8.asd"
5342 #:asd-system-name "trivial-utf-8"))
5343 (build-system asdf-build-system/sbcl)
5344 (synopsis "UTF-8 input/output library")
5345 (description
5346 "The Babel library solves a similar problem while understanding more
5347 encodings. Trivial UTF-8 was written before Babel existed, but for new
5348 projects you might be better off going with Babel. The one plus that Trivial
5349 UTF-8 has is that it doesn't depend on any other libraries.")
5350 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5351 (license license:bsd-3))))
5352
5353 (define-public cl-trivial-utf-8
5354 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5355
5356 (define-public ecl-trivial-utf-8
5357 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5358
5359 (define-public sbcl-idna
5360 (package
5361 (name "sbcl-idna")
5362 (build-system asdf-build-system/sbcl)
5363 (version "0.2.2")
5364 (home-page "https://github.com/antifuchs/idna")
5365 (source
5366 (origin
5367 (method git-fetch)
5368 (uri (git-reference
5369 (url home-page)
5370 (commit version)))
5371 (file-name (git-file-name name version))
5372 (sha256
5373 (base32
5374 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5375 (inputs
5376 `(("split-sequence" ,sbcl-split-sequence)))
5377 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5378 (description "This Common Lisp library provides string encoding and
5379 decoding routines for IDNA, the International Domain Names in Applications.")
5380 (license license:expat)))
5381
5382 (define-public cl-idna
5383 (sbcl-package->cl-source-package sbcl-idna))
5384
5385 (define-public ecl-idna
5386 (sbcl-package->ecl-package sbcl-idna))
5387
5388 (define-public sbcl-swap-bytes
5389 (package
5390 (name "sbcl-swap-bytes")
5391 (build-system asdf-build-system/sbcl)
5392 (version "1.2")
5393 (home-page "https://github.com/sionescu/swap-bytes")
5394 (source
5395 (origin
5396 (method git-fetch)
5397 (uri (git-reference
5398 (url home-page)
5399 (commit (string-append "v" version))))
5400 (file-name (git-file-name name version))
5401 (sha256
5402 (base32
5403 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
5404 (inputs
5405 `(("trivial-features" ,sbcl-trivial-features)))
5406 (native-inputs
5407 `(("fiveam" ,sbcl-fiveam)))
5408 (synopsis "Efficient endianness conversion for Common Lisp")
5409 (description "This Common Lisp library provides optimized byte-swapping
5410 primitives. The library can change endianness of unsigned integers of length
5411 1/2/4/8. Very useful in implementing various network protocols and file
5412 formats.")
5413 (license license:expat)))
5414
5415 (define-public cl-swap-bytes
5416 (sbcl-package->cl-source-package sbcl-swap-bytes))
5417
5418 (define-public ecl-swap-bytes
5419 (sbcl-package->ecl-package sbcl-swap-bytes))
5420
5421 (define-public sbcl-iolib.asdf
5422 ;; Latest release is from June 2017.
5423 (let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
5424 (revision "2"))
5425 (package
5426 (name "sbcl-iolib.asdf")
5427 (build-system asdf-build-system/sbcl)
5428 (version (git-version "0.8.3" revision commit))
5429 (home-page "https://github.com/sionescu/iolib")
5430 (source
5431 (origin
5432 (method git-fetch)
5433 (uri (git-reference
5434 (url home-page)
5435 (commit commit)))
5436 (file-name (git-file-name name version))
5437 (sha256
5438 (base32
5439 "1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
5440 (inputs
5441 `(("alexandria" ,sbcl-alexandria)))
5442 (arguments
5443 '(#:asd-file "iolib.asdf.asd"))
5444 (synopsis "ASDF component classes for IOLib, a Common Lisp I/O library")
5445 (description "IOlib is to be a better and more modern I/O library than
5446 the standard Common Lisp library. It contains a socket library, a DNS
5447 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5448 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5449 (license license:expat))))
5450
5451 (define-public sbcl-iolib.conf
5452 (package
5453 (inherit sbcl-iolib.asdf)
5454 (name "sbcl-iolib.conf")
5455 (inputs
5456 `(("iolib.asdf" ,sbcl-iolib.asdf)))
5457 (arguments
5458 '(#:asd-file "iolib.conf.asd"))
5459 (synopsis "Compile-time configuration for IOLib, a Common Lisp I/O library")))
5460
5461 (define-public sbcl-iolib.common-lisp
5462 (package
5463 (inherit sbcl-iolib.asdf)
5464 (name "sbcl-iolib.common-lisp")
5465 (inputs
5466 `(("iolib.asdf" ,sbcl-iolib.asdf)
5467 ("iolib.conf" ,sbcl-iolib.conf)))
5468 (arguments
5469 '(#:asd-file "iolib.common-lisp.asd"))
5470 (synopsis "Slightly modified Common Lisp for IOLib, a Common Lisp I/O library")))
5471
5472 (define-public sbcl-iolib.base
5473 (package
5474 (inherit sbcl-iolib.asdf)
5475 (name "sbcl-iolib.base")
5476 (inputs
5477 `(("iolib.asdf" ,sbcl-iolib.asdf)
5478 ("iolib.conf" ,sbcl-iolib.conf)
5479 ("iolib.common-lisp" ,sbcl-iolib.common-lisp)
5480 ("split-sequence" ,sbcl-split-sequence)))
5481 (arguments
5482 '(#:asd-file "iolib.base.asd"))
5483 (synopsis "Base package for IOLib, a Common Lisp I/O library")))
5484
5485 (define-public sbcl-iolib.grovel
5486 (deprecated-package "sbcl-iolib.grovel" sbcl-cffi-grovel))
5487
5488 (define sbcl-iolib+syscalls
5489 (package
5490 (inherit sbcl-iolib.asdf)
5491 (name "sbcl-iolib+syscalls")
5492 (inputs
5493 `(("iolib.asdf" ,sbcl-iolib.asdf)
5494 ("iolib.conf" ,sbcl-iolib.conf)
5495 ("cffi-grovel" ,sbcl-cffi-grovel)
5496 ("iolib.base" ,sbcl-iolib.base)
5497 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5498 ("idna" ,sbcl-idna)
5499 ("swap-bytes" ,sbcl-swap-bytes)
5500 ("libfixposix" ,libfixposix)
5501 ("cffi" ,sbcl-cffi)))
5502 (native-inputs
5503 `(("fiveam" ,sbcl-fiveam)))
5504 (arguments
5505 '(#:asd-file "iolib.asd"
5506 #:asd-system-name "iolib/syscalls"
5507 #:phases
5508 (modify-phases %standard-phases
5509 (add-after 'unpack 'fix-paths
5510 (lambda* (#:key inputs #:allow-other-keys)
5511 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5512 (("\\(:default \"libfixposix\"\\)")
5513 (string-append
5514 "(:default \""
5515 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5516 ;; Socket tests need Internet access, disable them.
5517 (substitute* "iolib.asd"
5518 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5519 "")))))))
5520 (synopsis "Common Lisp I/O library")))
5521
5522 (define sbcl-iolib+multiplex
5523 (package
5524 (inherit sbcl-iolib+syscalls)
5525 (name "sbcl-iolib+multiplex")
5526 (inputs
5527 `(("iolib+syscalls" ,sbcl-iolib+syscalls)
5528 ,@(package-inputs sbcl-iolib+syscalls)))
5529 (arguments
5530 (substitute-keyword-arguments (package-arguments sbcl-iolib+syscalls)
5531 ((#:asd-system-name _) "iolib/multiplex")))))
5532
5533 (define sbcl-iolib+streams
5534 (package
5535 (inherit sbcl-iolib+syscalls)
5536 (name "sbcl-iolib+streams")
5537 (inputs
5538 `(("iolib+multiplex" ,sbcl-iolib+multiplex)
5539 ,@(package-inputs sbcl-iolib+syscalls)))
5540 (arguments
5541 (substitute-keyword-arguments (package-arguments sbcl-iolib+syscalls)
5542 ((#:asd-system-name _) "iolib/streams")))))
5543
5544 (define sbcl-iolib+sockets
5545 (package
5546 (inherit sbcl-iolib+syscalls)
5547 (name "sbcl-iolib+sockets")
5548 (inputs
5549 `(("iolib+syscalls" ,sbcl-iolib+syscalls)
5550 ("iolib+streams" ,sbcl-iolib+streams)
5551 ,@(package-inputs sbcl-iolib+syscalls)))
5552 (arguments
5553 (substitute-keyword-arguments (package-arguments sbcl-iolib+syscalls)
5554 ((#:asd-system-name _) "iolib/sockets")))))
5555
5556 (define-public sbcl-iolib
5557 (package
5558 (inherit sbcl-iolib+syscalls)
5559 (name "sbcl-iolib")
5560 (inputs
5561 `(("iolib+multiplex" ,sbcl-iolib+multiplex)
5562 ("iolib+streams" ,sbcl-iolib+streams)
5563 ("iolib+sockets" ,sbcl-iolib+sockets)
5564 ,@(package-inputs sbcl-iolib+syscalls)))
5565 (arguments
5566 (substitute-keyword-arguments (package-arguments sbcl-iolib+syscalls)
5567 ((#:asd-system-name _) "iolib")))))
5568
5569 (define-public cl-iolib
5570 (let ((parent (sbcl-package->cl-source-package sbcl-iolib)))
5571 (package
5572 (inherit parent)
5573 (propagated-inputs
5574 ;; Need header to compile.
5575 `(("libfixposix" ,libfixposix)
5576 ,@(package-propagated-inputs parent))))))
5577
5578 (define-public sbcl-ieee-floats
5579 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5580 (revision "1"))
5581 (package
5582 (name "sbcl-ieee-floats")
5583 (build-system asdf-build-system/sbcl)
5584 (version (git-version "20170924" revision commit))
5585 (home-page "https://github.com/marijnh/ieee-floats/")
5586 (source
5587 (origin
5588 (method git-fetch)
5589 (uri (git-reference
5590 (url home-page)
5591 (commit commit)))
5592 (file-name (git-file-name name version))
5593 (sha256
5594 (base32
5595 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5596 (native-inputs
5597 `(("fiveam" ,sbcl-fiveam)))
5598 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5599 (description "This is a Common Lisp library that converts
5600 floating point values to IEEE 754 binary representation.")
5601 (license license:bsd-3))))
5602
5603 (define-public cl-ieee-floats
5604 (sbcl-package->cl-source-package sbcl-ieee-floats))
5605
5606 (define sbcl-closure-common
5607 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5608 (revision "1"))
5609 (package
5610 (name "sbcl-closure-common")
5611 (build-system asdf-build-system/sbcl)
5612 (version (git-version "20101006" revision commit))
5613 (home-page "https://common-lisp.net/project/cxml/")
5614 (source
5615 (origin
5616 (method git-fetch)
5617 (uri (git-reference
5618 (url "https://github.com/sharplispers/closure-common")
5619 (commit commit)))
5620 (file-name (git-file-name name version))
5621 (sha256
5622 (base32
5623 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5624 (inputs
5625 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5626 ("babel" ,sbcl-babel)))
5627 (synopsis "Support Common Lisp library for CXML")
5628 (description "Closure-common is an internal helper library. The name
5629 Closure is a reference to the web browser it was originally written for.")
5630 ;; TODO: License?
5631 (license #f))))
5632
5633 (define-public sbcl-cxml+xml
5634 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5635 (revision "1"))
5636 (package
5637 (name "sbcl-cxml+xml")
5638 (build-system asdf-build-system/sbcl)
5639 (version (git-version "0.0.0" revision commit))
5640 (home-page "https://common-lisp.net/project/cxml/")
5641 (source
5642 (origin
5643 (method git-fetch)
5644 (uri (git-reference
5645 (url "https://github.com/sharplispers/cxml")
5646 (commit commit)))
5647 (file-name (git-file-name name version))
5648 (sha256
5649 (base32
5650 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5651 (inputs
5652 `(("closure-common" ,sbcl-closure-common)
5653 ("puri" ,sbcl-puri)
5654 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5655 (arguments
5656 `(#:asd-file "cxml.asd"
5657 #:asd-system-name "cxml/xml"))
5658 (synopsis "Common Lisp XML parser")
5659 (description "CXML implements a namespace-aware, validating XML 1.0
5660 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5661 offered, one SAX-like, the other similar to StAX.")
5662 (license license:llgpl))))
5663
5664 (define sbcl-cxml+dom
5665 (package
5666 (inherit sbcl-cxml+xml)
5667 (name "sbcl-cxml+dom")
5668 (inputs
5669 `(("closure-common" ,sbcl-closure-common)
5670 ("puri" ,sbcl-puri)
5671 ("cxml+xml" ,sbcl-cxml+xml)))
5672 (arguments
5673 `(#:asd-file "cxml.asd"
5674 #:asd-system-name "cxml/dom"))))
5675
5676 (define sbcl-cxml+klacks
5677 (package
5678 (inherit sbcl-cxml+xml)
5679 (name "sbcl-cxml+klacks")
5680 (inputs
5681 `(("closure-common" ,sbcl-closure-common)
5682 ("puri" ,sbcl-puri)
5683 ("cxml+xml" ,sbcl-cxml+xml)))
5684 (arguments
5685 `(#:asd-file "cxml.asd"
5686 #:asd-system-name "cxml/klacks"))))
5687
5688 (define sbcl-cxml+test
5689 (package
5690 (inherit sbcl-cxml+xml)
5691 (name "sbcl-cxml+test")
5692 (inputs
5693 `(("closure-common" ,sbcl-closure-common)
5694 ("puri" ,sbcl-puri)
5695 ("cxml+xml" ,sbcl-cxml+xml)))
5696 (arguments
5697 `(#:asd-file "cxml.asd"
5698 #:asd-system-name "cxml/test"))))
5699
5700 (define-public sbcl-cxml
5701 (package
5702 (inherit sbcl-cxml+xml)
5703 (name "sbcl-cxml")
5704 (inputs
5705 `(("closure-common" ,sbcl-closure-common)
5706 ("puri" ,sbcl-puri)
5707 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5708 ("cxml+dom" ,sbcl-cxml+dom)
5709 ("cxml+klacks" ,sbcl-cxml+klacks)
5710 ("cxml+test" ,sbcl-cxml+test)))
5711 (arguments
5712 `(#:asd-file "cxml.asd"
5713 #:asd-system-name "cxml"
5714 #:phases
5715 (modify-phases %standard-phases
5716 (add-after 'build 'install-dtd
5717 (lambda* (#:key outputs #:allow-other-keys)
5718 (install-file "catalog.dtd"
5719 (string-append
5720 (assoc-ref outputs "out")
5721 "/lib/" (%lisp-type))))))))))
5722
5723 (define-public cl-cxml
5724 (sbcl-package->cl-source-package sbcl-cxml))
5725
5726 (define-public sbcl-cl-reexport
5727 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5728 (revision "1"))
5729 (package
5730 (name "sbcl-cl-reexport")
5731 (build-system asdf-build-system/sbcl)
5732 (version (git-version "0.1" revision commit))
5733 (home-page "https://github.com/takagi/cl-reexport")
5734 (source
5735 (origin
5736 (method git-fetch)
5737 (uri (git-reference
5738 (url home-page)
5739 (commit commit)))
5740 (file-name (git-file-name name version))
5741 (sha256
5742 (base32
5743 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5744 (inputs
5745 `(("alexandria" ,sbcl-alexandria)))
5746 (arguments
5747 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5748 `(#:tests? #f))
5749 (synopsis "HTTP cookie manager for Common Lisp")
5750 (description "cl-cookie is a Common Lisp library featuring parsing of
5751 cookie headers, cookie creation, cookie jar creation and more.")
5752 (license license:llgpl))))
5753
5754 (define-public cl-reexport
5755 (sbcl-package->cl-source-package sbcl-cl-reexport))
5756
5757 (define-public sbcl-cl-cookie
5758 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5759 (revision "1"))
5760 (package
5761 (name "sbcl-cl-cookie")
5762 (build-system asdf-build-system/sbcl)
5763 (version (git-version "0.9.10" revision commit))
5764 (home-page "https://github.com/fukamachi/cl-cookie")
5765 (source
5766 (origin
5767 (method git-fetch)
5768 (uri (git-reference
5769 (url home-page)
5770 (commit commit)))
5771 (file-name (git-file-name name version))
5772 (sha256
5773 (base32
5774 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5775 (inputs
5776 `(("proc-parse" ,sbcl-proc-parse)
5777 ("alexandria" ,sbcl-alexandria)
5778 ("quri" ,sbcl-quri)
5779 ("cl-ppcre" ,sbcl-cl-ppcre)
5780 ("local-time" ,sbcl-local-time)))
5781 (native-inputs
5782 `(("prove-asdf" ,sbcl-prove-asdf)
5783 ("prove" ,sbcl-prove)))
5784 (arguments
5785 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
5786 `(#:tests? #f))
5787 (synopsis "HTTP cookie manager for Common Lisp")
5788 (description "cl-cookie is a Common Lisp library featuring parsing of
5789 cookie headers, cookie creation, cookie jar creation and more.")
5790 (license license:bsd-2))))
5791
5792 (define-public cl-cookie
5793 (sbcl-package->cl-source-package sbcl-cl-cookie))
5794
5795 (define-public sbcl-dexador
5796 (let ((commit "953090f04c4d1a9ee6632b90133cdc297b68badc")
5797 (revision "1"))
5798 (package
5799 (name "sbcl-dexador")
5800 (build-system asdf-build-system/sbcl)
5801 (version "0.9.14" )
5802 (home-page "https://github.com/fukamachi/dexador")
5803 (source
5804 (origin
5805 (method git-fetch)
5806 (uri (git-reference
5807 (url home-page)
5808 (commit commit)))
5809 (file-name (git-file-name name version))
5810 (sha256
5811 (base32
5812 "0w18fz3301rpmwc3kwb810czcd24mbf7r1z8vdyc0v5crjfpw3mn"))))
5813 (inputs
5814 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5815 ("babel" ,sbcl-babel)
5816 ("usocket" ,sbcl-usocket)
5817 ("fast-http" ,sbcl-fast-http)
5818 ("quri" ,sbcl-quri)
5819 ("fast-io" ,sbcl-fast-io)
5820 ("chunga" ,sbcl-chunga)
5821 ("cl-ppcre" ,sbcl-cl-ppcre)
5822 ("cl-cookie" ,sbcl-cl-cookie)
5823 ("trivial-mimes" ,sbcl-trivial-mimes)
5824 ("chipz" ,sbcl-chipz)
5825 ("cl-base64" ,sbcl-cl-base64)
5826 ("cl-reexport" ,sbcl-cl-reexport)
5827 ("cl+ssl" ,sbcl-cl+ssl)
5828 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5829 ("alexandria" ,sbcl-alexandria)))
5830 (native-inputs
5831 `(("prove" ,sbcl-prove)
5832 ("prove-asdf" ,sbcl-prove-asdf)
5833 ("lack-request" ,sbcl-lack-request)
5834 ("clack" ,sbcl-clack)
5835 ("babel" ,sbcl-babel)
5836 ("alexandria" ,sbcl-alexandria)
5837 ("cl-ppcre" ,sbcl-cl-ppcre)
5838 ("local-time" ,sbcl-local-time)
5839 ("trivial-features" ,sbcl-trivial-features)))
5840 (arguments
5841 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
5842 `(#:tests? #f
5843 #:phases
5844 (modify-phases %standard-phases
5845 (add-after 'unpack 'fix-permissions
5846 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
5847 (synopsis "Yet another HTTP client for Common Lisp")
5848 (description "Dexador is yet another HTTP client for Common Lisp with
5849 neat APIs and connection-pooling. It is meant to supersede Drakma.")
5850 (license license:expat))))
5851
5852 (define-public cl-dexador
5853 (package
5854 (inherit (sbcl-package->cl-source-package sbcl-dexador))
5855 (arguments
5856 `(#:phases
5857 ;; asdf-build-system/source has its own phases and does not inherit
5858 ;; from asdf-build-system/sbcl phases.
5859 (modify-phases %standard-phases/source
5860 ;; Already done in SBCL package.
5861 (delete 'reset-gzip-timestamps))))))
5862
5863 (define-public ecl-dexador
5864 (sbcl-package->ecl-package sbcl-dexador))
5865
5866 (define-public sbcl-lisp-namespace
5867 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
5868 (revision "1"))
5869 (package
5870 (name "sbcl-lisp-namespace")
5871 (build-system asdf-build-system/sbcl)
5872 (version (git-version "0.1" revision commit))
5873 (home-page "https://github.com/guicho271828/lisp-namespace")
5874 (source
5875 (origin
5876 (method git-fetch)
5877 (uri (git-reference
5878 (url home-page)
5879 (commit commit)))
5880 (file-name (git-file-name name version))
5881 (sha256
5882 (base32
5883 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
5884 (inputs
5885 `(("alexandria" ,sbcl-alexandria)))
5886 (native-inputs
5887 `(("fiveam" ,sbcl-fiveam)))
5888 (arguments
5889 `(#:test-asd-file "lisp-namespace.test.asd"
5890 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
5891 #:tests? #f))
5892 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
5893 (description "Common Lisp already has major 2 namespaces, function
5894 namespace and value namespace (or variable namespace), but there are actually
5895 more — e.g., class namespace.
5896 This library offers macros to deal with symbols from any namespace.")
5897 (license license:llgpl))))
5898
5899 (define-public cl-lisp-namespace
5900 (sbcl-package->cl-source-package sbcl-lisp-namespace))
5901
5902 (define-public sbcl-trivial-cltl2
5903 (let ((commit "8a3bda30dc25d2f65fcf514d0eb6e6db75252c61")
5904 (revision "2"))
5905 (package
5906 (name "sbcl-trivial-cltl2")
5907 (build-system asdf-build-system/sbcl)
5908 (version (git-version "0.1.1" revision commit))
5909 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
5910 (source
5911 (origin
5912 (method git-fetch)
5913 (uri (git-reference
5914 (url home-page)
5915 (commit commit)))
5916 (file-name (git-file-name name version))
5917 (sha256
5918 (base32
5919 "08cnzb9rnczn4pn2zpf0587ny4wjy1mjndy885fz9pw7xrlx37ip"))))
5920 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
5921 (description "This library is a portable compatibility layer around
5922 \"Common Lisp the Language, 2nd
5923 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
5924 and it exports symbols from implementation-specific packages.")
5925 (license license:llgpl))))
5926
5927 (define-public cl-trivial-cltl2
5928 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
5929
5930 (define-public sbcl-introspect-environment
5931 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
5932 (revision "1"))
5933 (package
5934 (name "sbcl-introspect-environment")
5935 (build-system asdf-build-system/sbcl)
5936 (version (git-version "0.1" revision commit))
5937 (home-page "https://github.com/Bike/introspect-environment")
5938 (source
5939 (origin
5940 (method git-fetch)
5941 (uri (git-reference
5942 (url home-page)
5943 (commit commit)))
5944 (file-name (git-file-name name version))
5945 (sha256
5946 (base32
5947 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
5948 (native-inputs
5949 `(("fiveam" ,sbcl-fiveam)))
5950 (synopsis "Common Lisp environment introspection portability layer")
5951 (description "This library is a small interface to portable but
5952 nonstandard introspection of Common Lisp environments. It is intended to
5953 allow a bit more compile-time introspection of environments in Common Lisp.
5954
5955 Quite a bit of information is available at the time a macro or compiler-macro
5956 runs; inlining info, type declarations, that sort of thing. This information
5957 is all standard - any Common Lisp program can @code{(declare (integer x))} and
5958 such.
5959
5960 This info ought to be accessible through the standard @code{&environment}
5961 parameters, but it is not. Several implementations keep the information for
5962 their own purposes but do not make it available to user programs, because
5963 there is no standard mechanism to do so.
5964
5965 This library uses implementation-specific hooks to make information available
5966 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
5967 implementations have implementations of the functions that do as much as they
5968 can and/or provide reasonable defaults.")
5969 (license license:wtfpl2))))
5970
5971 (define-public cl-introspect-environment
5972 (sbcl-package->cl-source-package sbcl-introspect-environment))
5973
5974 (define-public sbcl-type-i
5975 (let ((commit "d34440ab4ebf5a46a58deccb35950b15670e3667")
5976 (revision "2"))
5977 (package
5978 (name "sbcl-type-i")
5979 (build-system asdf-build-system/sbcl)
5980 (version (git-version "0.1" revision commit))
5981 (home-page "https://github.com/guicho271828/type-i")
5982 (source
5983 (origin
5984 (method git-fetch)
5985 (uri (git-reference
5986 (url home-page)
5987 (commit commit)))
5988 (file-name (git-file-name name version))
5989 (sha256
5990 (base32
5991 "12wsga0pwjkkr176lnjwkmmlm3ccp0n310sjj9h20lk53iyd0z69"))))
5992 (inputs
5993 `(("alexandria" ,sbcl-alexandria)
5994 ("introspect-environment" ,sbcl-introspect-environment)
5995 ("trivia.trivial" ,sbcl-trivia.trivial)))
5996 (native-inputs
5997 `(("fiveam" ,sbcl-fiveam)))
5998 (arguments
5999 `(#:test-asd-file "type-i.test.asd"))
6000 (synopsis "Type inference utility on unary predicates for Common Lisp")
6001 (description "This library tries to provide a way to detect what kind of
6002 type the given predicate is trying to check. This is different from inferring
6003 the return type of a function.")
6004 (license license:llgpl))))
6005
6006 (define-public cl-type-i
6007 (sbcl-package->cl-source-package sbcl-type-i))
6008
6009 (define-public sbcl-optima
6010 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
6011 (revision "1"))
6012 (package
6013 (name "sbcl-optima")
6014 (build-system asdf-build-system/sbcl)
6015 (version (git-version "1.0" revision commit))
6016 (home-page "https://github.com/m2ym/optima")
6017 (source
6018 (origin
6019 (method git-fetch)
6020 (uri (git-reference
6021 (url home-page)
6022 (commit commit)))
6023 (file-name (git-file-name name version))
6024 (sha256
6025 (base32
6026 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
6027 (inputs
6028 `(("alexandria" ,sbcl-alexandria)
6029 ("closer-mop" ,sbcl-closer-mop)))
6030 (native-inputs
6031 `(("eos" ,sbcl-eos)))
6032 (arguments
6033 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
6034 `(#:tests? #f
6035 #:test-asd-file "optima.test.asd"))
6036 (synopsis "Optimized pattern matching library for Common Lisp")
6037 (description "Optima is a fast pattern matching library which uses
6038 optimizing techniques widely used in the functional programming world.")
6039 (license license:expat))))
6040
6041 (define-public cl-optima
6042 (sbcl-package->cl-source-package sbcl-optima))
6043
6044 (define-public sbcl-fare-quasiquote
6045 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
6046 (revision "1"))
6047 (package
6048 (name "sbcl-fare-quasiquote")
6049 (build-system asdf-build-system/sbcl)
6050 (version (git-version "1.0.1" revision commit))
6051 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
6052 (source
6053 (origin
6054 (method git-fetch)
6055 (uri (git-reference
6056 (url (string-append "https://gitlab.common-lisp.net/frideau/"
6057 "fare-quasiquote.git"))
6058 (commit commit)))
6059 (file-name (git-file-name name version))
6060 (sha256
6061 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
6062 (inputs
6063 `(("fare-utils" ,sbcl-fare-utils)))
6064 (arguments
6065 ;; XXX: Circular dependencies: Tests depend on subsystems,
6066 ;; which depend on the main systems.
6067 `(#:tests? #f
6068 #:phases
6069 (modify-phases %standard-phases
6070 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
6071 ;; commits after 1.0.0.5, but ASDF fails to read the
6072 ;; "-REVISION-COMMIT" part generated by Guix.
6073 (add-after 'unpack 'patch-requirement
6074 (lambda _
6075 (substitute* "fare-quasiquote.asd"
6076 (("\\(:version \"fare-utils\" \"1.0.0\"\\)")
6077 "\"fare-utils\"")))))))
6078 (synopsis "Pattern-matching friendly implementation of quasiquote")
6079 (description "The main purpose of this n+2nd reimplementation of
6080 quasiquote is enable matching of quasiquoted patterns, using Optima or
6081 Trivia.")
6082 (license license:expat))))
6083
6084 (define-public cl-fare-quasiquote
6085 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
6086
6087 (define-public sbcl-fare-quasiquote-optima
6088 (package
6089 (inherit sbcl-fare-quasiquote)
6090 (name "sbcl-fare-quasiquote-optima")
6091 (inputs
6092 `(("optima" ,sbcl-optima)
6093 ("fare-quasiquote" ,sbcl-fare-quasiquote)))
6094 (arguments
6095 '(#:phases
6096 (modify-phases %standard-phases
6097 (add-after 'unpack 'patch-requirement
6098 (lambda _
6099 (substitute* "fare-quasiquote-optima.asd"
6100 (("\\(:version \"optima\" \"1\\.0\"\\)")
6101 "\"optima\""))
6102 #t)))))))
6103
6104 (define-public cl-fare-quasiquote-optima
6105 (sbcl-package->cl-source-package sbcl-fare-quasiquote-optima))
6106
6107 (define-public sbcl-fare-quasiquote-readtable
6108 (package
6109 (inherit sbcl-fare-quasiquote)
6110 (name "sbcl-fare-quasiquote-readtable")
6111 (inputs
6112 `(("fare-quasiquote" ,sbcl-fare-quasiquote)
6113 ("named-readtables" ,sbcl-named-readtables)))
6114 (description "The main purpose of this n+2nd reimplementation of
6115 quasiquote is enable matching of quasiquoted patterns, using Optima or
6116 Trivia.
6117
6118 This package uses fare-quasiquote with named-readtable.")))
6119
6120 (define-public cl-fare-quasiquote-readtable
6121 (sbcl-package->cl-source-package sbcl-fare-quasiquote-readtable))
6122
6123 (define-public sbcl-fare-quasiquote-extras
6124 (package
6125 (inherit sbcl-fare-quasiquote)
6126 (name "sbcl-fare-quasiquote-extras")
6127 (build-system asdf-build-system/sbcl)
6128 (inputs
6129 `(("fare-quasiquote-optima" ,sbcl-fare-quasiquote-optima)
6130 ("fare-quasiquote-readtable" ,sbcl-fare-quasiquote-readtable)))
6131 (arguments
6132 `(#:phases
6133 (modify-phases %standard-phases
6134 (replace 'build
6135 (lambda* (#:key outputs #:allow-other-keys)
6136 (let* ((out (assoc-ref outputs "out"))
6137 (lib (string-append out "/lib/" (%lisp-type))))
6138 (mkdir-p lib)
6139 (install-file "fare-quasiquote-extras.asd" lib)
6140 (make-file-writable
6141 (string-append lib "/fare-quasiquote-extras.asd"))
6142 #t))))))
6143 (description "This library combines @code{fare-quasiquote-readtable} and
6144 @code{fare-quasiquote-optima}.")))
6145
6146 (define-public cl-fare-quasiquote-extras
6147 (package
6148 (inherit cl-fare-quasiquote)
6149 (name "cl-fare-quasiquote-extras")
6150 (build-system asdf-build-system/source)
6151 (propagated-inputs
6152 `(("fare-quasiquote" ,cl-fare-quasiquote)
6153 ("fare-quasiquote-optima" ,cl-fare-quasiquote-optima)
6154 ("fare-quasiquote-readtable" ,cl-fare-quasiquote-readtable)))
6155 (description "This library combines @code{fare-quasiquote-readtable} and
6156 @code{fare-quasiquote-optima}.")))
6157
6158 (define-public sbcl-trivia.level0
6159 (let ((commit "37698b47a14c2007630468de7a993694ef7bd475")
6160 (revision "2"))
6161 (package
6162 (name "sbcl-trivia.level0")
6163 (build-system asdf-build-system/sbcl)
6164 (version (git-version "0.0.0" revision commit))
6165 (home-page "https://github.com/guicho271828/trivia")
6166 (source
6167 (origin
6168 (method git-fetch)
6169 (uri (git-reference
6170 (url home-page)
6171 (commit commit)))
6172 (file-name (git-file-name name version))
6173 (sha256
6174 (base32
6175 "0rsbwbw3ipxxgr6zzhci12nilq8zky475kmhz1rcxy4q8a85vn72"))))
6176 (inputs
6177 `(("alexandria" ,sbcl-alexandria)))
6178 (synopsis "Pattern matching in Common Lisp")
6179 (description "Trivia is a pattern matching compiler that is compatible
6180 with Optima, another pattern matching library for Common Lisp. It is meant to
6181 be faster and more extensible than Optima.")
6182 (license license:llgpl))))
6183
6184 (define-public sbcl-trivia.level1
6185 (package
6186 (inherit sbcl-trivia.level0)
6187 (name "sbcl-trivia.level1")
6188 (inputs
6189 `(("trivia.level0" ,sbcl-trivia.level0)))
6190 (description "Trivia is a pattern matching compiler that is compatible
6191 with Optima, another pattern matching library for Common Lisp. It is meant to
6192 be faster and more extensible than Optima.
6193
6194 This system contains the core patterns of Trivia.")))
6195
6196 (define-public sbcl-trivia.level2
6197 (package
6198 (inherit sbcl-trivia.level0)
6199 (name "sbcl-trivia.level2")
6200 (inputs
6201 `(("trivia.level1" ,sbcl-trivia.level1)
6202 ("lisp-namespace" ,sbcl-lisp-namespace)
6203 ("trivial-cltl2" ,sbcl-trivial-cltl2)
6204 ("closer-mop" ,sbcl-closer-mop)))
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 This system contains a non-optimized pattern matcher compatible with Optima,
6210 with extensible optimizer interface.")))
6211
6212 (define-public sbcl-trivia.trivial
6213 (package
6214 (inherit sbcl-trivia.level0)
6215 (name "sbcl-trivia.trivial")
6216 (inputs
6217 `(("trivia.level2" ,sbcl-trivia.level2)))
6218 (description "Trivia is a pattern matching compiler that is compatible
6219 with Optima, another pattern matching library for Common Lisp. It is meant to
6220 be faster and more extensible than Optima.
6221
6222 This system contains the base level system of Trivia with a trivial optimizer.")))
6223
6224 (define-public sbcl-trivia.balland2006
6225 (package
6226 (inherit sbcl-trivia.level0)
6227 (name "sbcl-trivia.balland2006")
6228 (inputs
6229 `(("trivia.trivial" ,sbcl-trivia.trivial)
6230 ("iterate" ,sbcl-iterate)
6231 ("type-i" ,sbcl-type-i)
6232 ("alexandria" ,sbcl-alexandria)))
6233 (arguments
6234 ;; Tests are done in trivia itself.
6235 `(#:tests? #f))
6236 (description "Trivia is a pattern matching compiler that is compatible
6237 with Optima, another pattern matching library for Common Lisp. It is meant to
6238 be faster and more extensible than Optima.
6239
6240 This system contains the base level system of Trivia with a trivial optimizer.")))
6241
6242 (define-public sbcl-trivia.ppcre
6243 (package
6244 (inherit sbcl-trivia.level0)
6245 (name "sbcl-trivia.ppcre")
6246 (inputs
6247 `(("trivia.trivial" ,sbcl-trivia.trivial)
6248 ("cl-ppcre" ,sbcl-cl-ppcre)))
6249 (description "Trivia is a pattern matching compiler that is compatible
6250 with Optima, another pattern matching library for Common Lisp. It is meant to
6251 be faster and more extensible than Optima.
6252
6253 This system contains the PPCRE extension.")))
6254
6255 (define-public sbcl-trivia.quasiquote
6256 (package
6257 (inherit sbcl-trivia.level0)
6258 (name "sbcl-trivia.quasiquote")
6259 (inputs
6260 `(("trivia.trivial" ,sbcl-trivia.trivial)
6261 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6262 ("fare-quasiquote-readtable" ,sbcl-fare-quasiquote-readtable)))
6263 (description "Trivia is a pattern matching compiler that is compatible
6264 with Optima, another pattern matching library for Common Lisp. It is meant to
6265 be faster and more extensible than Optima.
6266
6267 This system contains the fare-quasiquote extension.")))
6268
6269 (define-public sbcl-trivia.cffi
6270 (package
6271 (inherit sbcl-trivia.level0)
6272 (name "sbcl-trivia.cffi")
6273 (inputs
6274 `(("cffi" ,sbcl-cffi)
6275 ("trivia.trivial" ,sbcl-trivia.trivial)))
6276 (description "Trivia is a pattern matching compiler that is compatible
6277 with Optima, another pattern matching library for Common Lisp. It is meant to
6278 be faster and more extensible than Optima.
6279
6280 This system contains the CFFI foreign slot access extension.")))
6281
6282 (define-public sbcl-trivia
6283 (package
6284 (inherit sbcl-trivia.level0)
6285 (name "sbcl-trivia")
6286 (inputs
6287 `(("trivia.balland2006" ,sbcl-trivia.balland2006)))
6288 (native-inputs
6289 `(("fiveam" ,sbcl-fiveam)
6290 ("trivia.ppcre" ,sbcl-trivia.ppcre)
6291 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
6292 ("trivia.cffi" ,sbcl-trivia.cffi)
6293 ("optima" ,sbcl-optima)))
6294 (arguments
6295 `(#:test-asd-file "trivia.test.asd"))
6296 (description "Trivia is a pattern matching compiler that is compatible
6297 with Optima, another pattern matching library for Common Lisp. It is meant to
6298 be faster and more extensible than Optima.")))
6299
6300 (define-public cl-trivia
6301 (sbcl-package->cl-source-package sbcl-trivia))
6302
6303 (define-public sbcl-mk-string-metrics
6304 (package
6305 (name "sbcl-mk-string-metrics")
6306 (version "0.1.2")
6307 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6308 (source (origin
6309 (method git-fetch)
6310 (uri (git-reference
6311 (url home-page)
6312 (commit version)))
6313 (sha256
6314 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6315 (file-name (git-file-name name version))))
6316 (build-system asdf-build-system/sbcl)
6317 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6318 (description "This library implements efficient algorithms that calculate
6319 various string metrics in Common Lisp:
6320
6321 @itemize
6322 @item Damerau-Levenshtein distance
6323 @item Hamming distance
6324 @item Jaccard similarity coefficient
6325 @item Jaro distance
6326 @item Jaro-Winkler distance
6327 @item Levenshtein distance
6328 @item Normalized Damerau-Levenshtein distance
6329 @item Normalized Levenshtein distance
6330 @item Overlap coefficient
6331 @end itemize\n")
6332 (license license:x11)))
6333
6334 (define-public cl-mk-string-metrics
6335 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6336
6337 (define-public sbcl-cl-str
6338 (let ((commit "eb480f283e28802d67b35bf916506701152f9a2a"))
6339 (package
6340 (name "sbcl-cl-str")
6341 (version (git-version "0.17" "1" commit))
6342 (home-page "https://github.com/vindarel/cl-str")
6343 (source (origin
6344 (method git-fetch)
6345 (uri (git-reference
6346 (url home-page)
6347 (commit commit)))
6348 (sha256
6349 (base32 "1hpq5m8zjjnzns370zy27z2vcm1p8n2ka5ij2x67gyc9amz9vla0"))
6350 (file-name (git-file-name name version))))
6351 (build-system asdf-build-system/sbcl)
6352 (inputs
6353 `(("cl-ppcre" ,sbcl-cl-ppcre)
6354 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
6355 ("cl-change-case" ,sbcl-cl-change-case)))
6356 (native-inputs
6357 `(("prove" ,sbcl-prove)
6358 ("prove-asdf" ,sbcl-prove-asdf)))
6359 (arguments
6360 `(#:asd-file "str.asd"
6361 #:asd-system-name "str"
6362 #:test-asd-file "str.test.asd"))
6363 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6364 (description "A modern and consistent Common Lisp string manipulation
6365 library that focuses on modernity, simplicity and discoverability:
6366 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6367 @code{str:concat strings} instead of an unusual format construct; one
6368 discoverable library instead of many; consistency and composability, where
6369 @code{s} is always the last argument, which makes it easier to feed pipes and
6370 arrows.")
6371 (license license:expat))))
6372
6373 (define-public cl-str
6374 (sbcl-package->cl-source-package sbcl-cl-str))
6375
6376 (define-public sbcl-cl-xmlspam
6377 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6378 (package
6379 (name "sbcl-cl-xmlspam")
6380 (build-system asdf-build-system/sbcl)
6381 (version (git-version "0.0.0" "1" commit))
6382 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6383 (source
6384 (origin
6385 (method git-fetch)
6386 (uri (git-reference
6387 (url home-page)
6388 (commit commit)))
6389 (file-name (string-append name "-" version))
6390 (sha256
6391 (base32
6392 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6393 (inputs
6394 `(("cxml" ,sbcl-cxml)
6395 ("cl-ppcre" ,sbcl-cl-ppcre)))
6396 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6397 (description "CXML does an excellent job at parsing XML elements, but what
6398 do you do when you have a XML file that's larger than you want to fit in
6399 memory, and you want to extract some information from it? Writing code to deal
6400 with SAX events, or even using Klacks, quickly becomes tedious.
6401 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6402 to write code that mirrors the structure of the XML that it's parsing. It
6403 also makes it easy to shift paradigms when necessary - the usual Lisp control
6404 constructs can be used interchangeably with pattern matching, and the full
6405 power of CXML is available when necessary.")
6406 (license license:bsd-3))))
6407
6408 ;; TODO: dbus uses ASDF's package-inferred-system which is not supported by
6409 ;; asdf-build-system/sbcl as of 2019-08-02. We should fix
6410 ;; asdf-build-system/sbcl.
6411 (define-public cl-dbus
6412 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6413 (revision "1"))
6414 (package
6415 (name "cl-dbus")
6416 (build-system asdf-build-system/source)
6417 (version (git-version "20190408" revision commit))
6418 (home-page "https://github.com/death/dbus")
6419 (source
6420 (origin
6421 (method git-fetch)
6422 (uri (git-reference
6423 (url home-page)
6424 (commit commit)))
6425 (file-name (git-file-name name version))
6426 (sha256
6427 (base32
6428 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6429 ;; Inputs must be propagated or else packages depending on this won't
6430 ;; have the necessary packages.
6431 (propagated-inputs
6432 `(("alexandria" ,sbcl-alexandria)
6433 ("trivial-garbage" ,sbcl-trivial-garbage)
6434 ("babel" ,sbcl-babel)
6435 ("iolib" ,sbcl-iolib)
6436 ("ieee-floats" ,sbcl-ieee-floats)
6437 ("flexi-streams" ,sbcl-flexi-streams)
6438 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6439 ("ironclad" ,sbcl-ironclad)))
6440 (synopsis "D-Bus client library for Common Lisp")
6441 (description "This is a Common Lisp library that publishes D-Bus
6442 objects as well as send and notify other objects connected to a bus.")
6443 (license license:bsd-2))))
6444
6445 (define-public sbcl-cl-hooks
6446 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6447 (revision "1"))
6448 (package
6449 (name "sbcl-cl-hooks")
6450 (build-system asdf-build-system/sbcl)
6451 (version (git-version "0.2.1" revision commit))
6452 (home-page "https://github.com/scymtym/architecture.hooks")
6453 (source
6454 (origin
6455 (method git-fetch)
6456 (uri (git-reference
6457 (url home-page)
6458 (commit commit)))
6459 (file-name (git-file-name name version))
6460 (sha256
6461 (base32
6462 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6463 (inputs
6464 `(("alexandria" ,sbcl-alexandria)
6465 ("let-plus" ,sbcl-let-plus)
6466 ("trivial-garbage" ,sbcl-trivial-garbage)
6467 ("closer-mop" ,sbcl-closer-mop)))
6468 (native-inputs
6469 `(("fiveam" ,sbcl-fiveam)))
6470 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6471 (description "A hook, in the present context, is a certain kind of
6472 extension point in a program that allows interleaving the execution of
6473 arbitrary code with the execution of a the program without introducing any
6474 coupling between the two. Hooks are used extensively in the extensible editor
6475 Emacs.
6476
6477 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6478 possible using the flexible multi-method dispatch mechanism. It may even seem
6479 that the concept of hooks does not provide any benefits over the possibilities
6480 of CLOS. However, there are some differences:
6481
6482 @itemize
6483
6484 @item There can be only one method for each combination of specializers and
6485 qualifiers. As a result this kind of extension point cannot be used by
6486 multiple extensions independently.
6487 @item Removing code previously attached via a @code{:before}, @code{:after} or
6488 @code{:around} method can be cumbersome.
6489 @item There could be other or even multiple extension points besides @code{:before}
6490 and @code{:after} in a single method.
6491 @item Attaching codes to individual objects using eql specializers can be
6492 cumbersome.
6493 @item Introspection of code attached a particular extension point is
6494 cumbersome since this requires enumerating and inspecting the methods of a
6495 generic function.
6496 @end itemize
6497
6498 This library tries to complement some of these weaknesses of method-based
6499 extension-points via the concept of hooks.")
6500 (license license:llgpl))))
6501
6502 (define-public cl-hooks
6503 (sbcl-package->cl-source-package sbcl-cl-hooks))
6504
6505 (define-public ecl-cl-hooks
6506 (sbcl-package->ecl-package sbcl-cl-hooks))
6507
6508 (define-public sbcl-s-sysdeps
6509 ;; No release since 2013.
6510 (let ((commit "9aa23bbdceb24bcdbe0e7c39fa1901858f823106")
6511 (revision "2"))
6512 (package
6513 (name "sbcl-s-sysdeps")
6514 (build-system asdf-build-system/sbcl)
6515 (version (git-version "1" revision commit))
6516 (home-page "https://github.com/svenvc/s-sysdeps")
6517 (source
6518 (origin
6519 (method git-fetch)
6520 (uri (git-reference
6521 (url home-page)
6522 (commit commit)))
6523 (file-name (git-file-name name version))
6524 (sha256
6525 (base32
6526 "1fh8r7kf8s3hvqdg6b71b8p7w3v2kkga9bw8j3qqdxhzr6anpm0b"))))
6527 (inputs
6528 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
6529 ("usocket" ,sbcl-usocket)
6530 ("usocket-server" ,sbcl-usocket-server)))
6531 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6532 (description "@code{s-sysdeps} is an abstraction layer over platform
6533 dependent functionality. This simple package is used as a building block in a
6534 number of other open source projects.
6535
6536 @code{s-sysdeps} abstracts:
6537
6538 @itemize
6539 @item managing processes,
6540 @item implementing a standard TCP/IP server,
6541 @item opening a client TCP/IP socket stream,
6542 @item working with process locks.
6543 @end itemize\n")
6544 (license license:llgpl))))
6545
6546 (define-public cl-s-sysdeps
6547 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6548
6549 (define-public ecl-s-sysdeps
6550 (sbcl-package->ecl-package sbcl-s-sysdeps))
6551
6552 (define-public sbcl-cl-prevalence
6553 (let ((commit "1e5f030d94237b33d20947a2f6c194abedb10727")
6554 (revision "3"))
6555 (package
6556 (name "sbcl-cl-prevalence")
6557 (build-system asdf-build-system/sbcl)
6558 (version (git-version "5" revision commit))
6559 (home-page "https://github.com/40ants/cl-prevalence")
6560 (source
6561 (origin
6562 (method git-fetch)
6563 (uri (git-reference
6564 (url home-page)
6565 (commit commit)))
6566 (file-name (git-file-name name version))
6567 (sha256
6568 (base32
6569 "13yb8lv2aap5wvqa6hw7ms31xnax58f4m2nxifkssrzkb2w2qf29"))))
6570 (inputs
6571 `(("s-sysdeps" ,sbcl-s-sysdeps)
6572 ("s-xml" ,sbcl-s-xml)))
6573 (native-inputs
6574 `(("fiveam" ,sbcl-fiveam)))
6575 (synopsis "Implementation of object prevalence for Common Lisp")
6576 (description "This Common Lisp library implements object prevalence (see
6577 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6578 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6579 classes and cyclic data structures are supported.")
6580 (license license:llgpl))))
6581
6582 (define-public cl-prevalence
6583 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6584
6585 (define-public ecl-cl-prevalence
6586 (sbcl-package->ecl-package sbcl-cl-prevalence))
6587
6588 (define-public sbcl-series
6589 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6590 (revision "1"))
6591 (package
6592 (name "sbcl-series")
6593 (version (git-version "2.2.11" revision commit))
6594 (source
6595 (origin
6596 (method git-fetch)
6597 (uri (git-reference
6598 (url "git://git.code.sf.net/p/series/series")
6599 (commit commit)))
6600 (file-name (git-file-name name version))
6601 (sha256
6602 (base32
6603 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6604 (build-system asdf-build-system/sbcl)
6605 (arguments
6606 ;; Disable the tests, they are apparently buggy and I didn't find
6607 ;; a simple way to make them run and pass.
6608 '(#:tests? #f))
6609 (synopsis "Series data structure for Common Lisp")
6610 (description
6611 "This Common Lisp library provides a series data structure much like
6612 a sequence, with similar kinds of operations. The difference is that in many
6613 situations, operations on series may be composed functionally and yet execute
6614 iteratively, without the need to construct intermediate series values
6615 explicitly. In this manner, series provide both the clarity of a functional
6616 programming style and the efficiency of an iterative programming style.")
6617 (home-page "http://series.sourceforge.net/")
6618 (license license:expat))))
6619
6620 (define-public cl-series
6621 (sbcl-package->cl-source-package sbcl-series))
6622
6623 (define-public ecl-series
6624 (sbcl-package->ecl-package sbcl-series))
6625
6626 (define-public sbcl-periods
6627 (let ((commit "983d4a57325db3c8def942f163133cec5391ec28")
6628 (revision "1"))
6629 (package
6630 (name "sbcl-periods")
6631 (version (git-version "0.0.2" revision commit))
6632 (source
6633 (origin
6634 (method git-fetch)
6635 (uri (git-reference
6636 (url "https://github.com/jwiegley/periods")
6637 (commit commit)))
6638 (file-name (git-file-name name version))
6639 (sha256
6640 (base32
6641 "0z30jr3lxz3cmi019fsl4lgcgwf0yqpn95v9zkkkwgymdrkd4lga"))))
6642 (build-system asdf-build-system/sbcl)
6643 (inputs
6644 `(("local-time" ,sbcl-local-time)))
6645 (synopsis "Common Lisp library for manipulating date/time objects")
6646 (description
6647 "Periods is a Common Lisp library providing a set of utilities for
6648 manipulating times, distances between times, and both contiguous and
6649 discontiguous ranges of time.")
6650 (home-page "https://github.com/jwiegley/periods")
6651 (license license:bsd-3))))
6652
6653 (define-public cl-periods
6654 (sbcl-package->cl-source-package sbcl-periods))
6655
6656 (define-public ecl-periods
6657 (sbcl-package->ecl-package sbcl-periods))
6658
6659 (define-public sbcl-periods-series
6660 (package
6661 (inherit sbcl-periods)
6662 (name "sbcl-periods-series")
6663 (inputs
6664 `(("periods" ,sbcl-periods)
6665 ("series" ,sbcl-series)))
6666 (arguments
6667 '(#:asd-file "periods-series.asd"
6668 #:asd-system-name "periods-series"))
6669 (description
6670 "Periods-series is an extension of the periods Common Lisp library
6671 providing functions compatible with the series Common Lisp library.")))
6672
6673 (define-public cl-periods-series
6674 (sbcl-package->cl-source-package sbcl-periods-series))
6675
6676 (define-public ecl-periods-series
6677 (sbcl-package->ecl-package sbcl-periods-series))
6678
6679 (define-public sbcl-metatilities-base
6680 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6681 (revision "1"))
6682 (package
6683 (name "sbcl-metatilities-base")
6684 (version (git-version "0.6.6" revision commit))
6685 (source
6686 (origin
6687 (method git-fetch)
6688 (uri (git-reference
6689 (url "https://github.com/gwkkwg/metatilities-base")
6690 (commit commit)))
6691 (file-name (git-file-name name version))
6692 (sha256
6693 (base32
6694 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6695 (build-system asdf-build-system/sbcl)
6696 (native-inputs
6697 `(("lift" ,sbcl-lift)))
6698 (synopsis "Core of the metatilities Common Lisp library")
6699 (description
6700 "Metatilities-base is the core of the metatilities Common Lisp library
6701 which implements a set of utilities.")
6702 (home-page "https://common-lisp.net/project/metatilities-base/")
6703 (license license:expat))))
6704
6705 (define-public cl-metatilities-base
6706 (sbcl-package->cl-source-package sbcl-metatilities-base))
6707
6708 (define-public ecl-metatilities-base
6709 (sbcl-package->ecl-package sbcl-metatilities-base))
6710
6711 (define-public sbcl-cl-containers
6712 (let ((commit "3d1df53c22403121bffb5d553cf7acb1503850e7")
6713 (revision "3"))
6714 (package
6715 (name "sbcl-cl-containers")
6716 (version (git-version "0.12.1" revision commit))
6717 (source
6718 (origin
6719 (method git-fetch)
6720 (uri (git-reference
6721 (url "https://github.com/gwkkwg/cl-containers")
6722 (commit commit)))
6723 (file-name (git-file-name name version))
6724 (sha256
6725 (base32
6726 "18s6jfq11n8nv9k4biz32pm1s7y9zl054ry1gmdbcf39nisy377y"))))
6727 (build-system asdf-build-system/sbcl)
6728 (native-inputs
6729 `(("lift" ,sbcl-lift)))
6730 (inputs
6731 `(("metatilities-base" ,sbcl-metatilities-base)))
6732 (arguments
6733 '(#:phases
6734 (modify-phases %standard-phases
6735 (add-after 'unpack 'relax-version-checks
6736 (lambda _
6737 (substitute* "cl-containers.asd"
6738 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6739 "\"metatilities-base\""))
6740 (substitute* "cl-containers-test.asd"
6741 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6742 "\"lift\""))
6743 #t)))))
6744 (synopsis "Container library for Common Lisp")
6745 (description
6746 "Common Lisp ships with a set of powerful built in data structures
6747 including the venerable list, full featured arrays, and hash-tables.
6748 CL-containers enhances and builds on these structures by adding containers
6749 that are not available in native Lisp (for example: binary search trees,
6750 red-black trees, sparse arrays and so on), and by providing a standard
6751 interface so that they are simpler to use and so that changing design
6752 decisions becomes significantly easier.")
6753 (home-page "https://common-lisp.net/project/cl-containers/")
6754 (license license:expat))))
6755
6756 (define-public cl-containers
6757 (sbcl-package->cl-source-package sbcl-cl-containers))
6758
6759 (define-public ecl-cl-containers
6760 (sbcl-package->ecl-package sbcl-cl-containers))
6761
6762 (define-public sbcl-xlunit
6763 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6764 (revision "1"))
6765 (package
6766 (name "sbcl-xlunit")
6767 (version (git-version "0.6.3" revision commit))
6768 (source
6769 (origin
6770 (method git-fetch)
6771 (uri (git-reference
6772 (url "http://git.kpe.io/xlunit.git")
6773 (commit commit)))
6774 (file-name (git-file-name name version))
6775 (sha256
6776 (base32
6777 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6778 (build-system asdf-build-system/sbcl)
6779 (arguments
6780 '(#:phases
6781 (modify-phases %standard-phases
6782 (add-after 'unpack 'fix-tests
6783 (lambda _
6784 (substitute* "xlunit.asd"
6785 ((" :force t") ""))
6786 #t)))))
6787 (synopsis "Unit testing package for Common Lisp")
6788 (description
6789 "The XLUnit package is a toolkit for building test suites. It is based
6790 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6791 (home-page "http://quickdocs.org/xlunit/")
6792 (license license:bsd-3))))
6793
6794 (define-public cl-xlunit
6795 (sbcl-package->cl-source-package sbcl-xlunit))
6796
6797 (define-public ecl-xlunit
6798 (sbcl-package->ecl-package sbcl-xlunit))
6799
6800 (define-public sbcl-fprog
6801 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6802 (revision "1"))
6803 (package
6804 (name "sbcl-fprog")
6805 (version (git-version "1.0.0" revision commit))
6806 (source
6807 (origin
6808 (method git-fetch)
6809 (uri (git-reference
6810 (url "https://github.com/jwiegley/cambl")
6811 (commit commit)))
6812 (file-name (git-file-name name version))
6813 (sha256
6814 (base32
6815 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6816 (build-system asdf-build-system/sbcl)
6817 (synopsis "Functional programming utilities for Common Lisp")
6818 (description
6819 "@code{fprog} is a Common Lisp library allowing iteration over
6820 immutable lists sharing identical sublists.")
6821 (home-page "https://github.com/jwiegley/cambl")
6822 (license license:bsd-3))))
6823
6824 (define-public cl-fprog
6825 (sbcl-package->cl-source-package sbcl-fprog))
6826
6827 (define-public ecl-fprog
6828 (sbcl-package->ecl-package sbcl-fprog))
6829
6830 (define-public sbcl-cambl
6831 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6832 (revision "1"))
6833 (package
6834 (inherit sbcl-fprog)
6835 (name "sbcl-cambl")
6836 (version (git-version "4.0.0" revision commit))
6837 (native-inputs
6838 `(("xlunit" ,sbcl-xlunit)))
6839 (inputs
6840 `(("alexandria" ,sbcl-alexandria)
6841 ("cl-containers" ,sbcl-cl-containers)
6842 ("local-time" ,sbcl-local-time)
6843 ("periods" ,sbcl-periods)
6844 ("fprog" ,sbcl-fprog)))
6845 (synopsis "Commoditized amounts and balances for Common Lisp")
6846 (description
6847 "CAMBL is a Common Lisp library providing a convenient facility for
6848 working with commoditized values. It does not allow compound units (and so is
6849 not suited for scientific operations) but does work rather nicely for the
6850 purpose of financial calculations."))))
6851
6852 (define-public cl-cambl
6853 (sbcl-package->cl-source-package sbcl-cambl))
6854
6855 (define-public ecl-cambl
6856 (sbcl-package->ecl-package sbcl-cambl))
6857
6858 (define-public sbcl-cl-ledger
6859 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6860 (revision "1"))
6861 (package
6862 (name "sbcl-cl-ledger")
6863 (version (git-version "4.0.0" revision commit))
6864 (source
6865 (origin
6866 (method git-fetch)
6867 (uri (git-reference
6868 (url "https://github.com/ledger/cl-ledger")
6869 (commit commit)))
6870 (file-name (git-file-name name version))
6871 (sha256
6872 (base32
6873 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
6874 (build-system asdf-build-system/sbcl)
6875 (inputs
6876 `(("cambl" ,sbcl-cambl)
6877 ("cl-ppcre" ,sbcl-cl-ppcre)
6878 ("local-time" ,sbcl-local-time)
6879 ("periods-series" ,sbcl-periods-series)))
6880 (arguments
6881 '(#:phases
6882 (modify-phases %standard-phases
6883 (add-after 'unpack 'fix-system-definition
6884 (lambda _
6885 (substitute* "cl-ledger.asd"
6886 ((" :build-operation program-op") "")
6887 ((" :build-pathname \"cl-ledger\"") "")
6888 ((" :entry-point \"ledger::main\"") ""))
6889 #t)))))
6890 (synopsis "Common Lisp port of the Ledger accounting system")
6891 (description
6892 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
6893 system.")
6894 (home-page "https://github.com/ledger/cl-ledger")
6895 (license license:bsd-3))))
6896
6897 (define-public cl-ledger
6898 (sbcl-package->cl-source-package sbcl-cl-ledger))
6899
6900 (define-public ecl-cl-ledger
6901 (sbcl-package->ecl-package sbcl-cl-ledger))
6902
6903 (define-public sbcl-bst
6904 (let ((commit "34f9c7e8e0a9f2c952fe310ab36cb630d5d9c15a")
6905 (revision "1"))
6906 (package
6907 (name "sbcl-bst")
6908 (version (git-version "1.1" revision commit))
6909 (source
6910 (origin
6911 (method git-fetch)
6912 (uri (git-reference
6913 (url "https://github.com/glv2/bst")
6914 (commit commit)))
6915 (file-name (git-file-name name version))
6916 (sha256
6917 (base32
6918 "1amxns7hvvh4arwbh8ciwfzplg127vh37dnbamv1m1kmmnmihfc8"))))
6919 (build-system asdf-build-system/sbcl)
6920 (native-inputs
6921 `(("alexandria" ,sbcl-alexandria)
6922 ("fiveam" ,sbcl-fiveam)))
6923 (synopsis "Binary search tree for Common Lisp")
6924 (description
6925 "BST is a Common Lisp library for working with binary search trees that
6926 can contain any kind of values.")
6927 (home-page "https://github.com/glv2/bst")
6928 (license license:gpl3))))
6929
6930 (define-public cl-bst
6931 (sbcl-package->cl-source-package sbcl-bst))
6932
6933 (define-public ecl-bst
6934 (sbcl-package->ecl-package sbcl-bst))
6935
6936 (define-public sbcl-cl-octet-streams
6937 (package
6938 (name "sbcl-cl-octet-streams")
6939 (version "1.0")
6940 (source
6941 (origin
6942 (method git-fetch)
6943 (uri (git-reference
6944 (url "https://github.com/glv2/cl-octet-streams")
6945 (commit (string-append "v" version))))
6946 (file-name (git-file-name name version))
6947 (sha256
6948 (base32
6949 "1d7mn6ydv0j2x4r7clpc9ijjwrnfpxmvhifv8n5j7jh7s744sf8d"))))
6950 (build-system asdf-build-system/sbcl)
6951 (native-inputs
6952 `(("fiveam" ,sbcl-fiveam)))
6953 (inputs
6954 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
6955 (synopsis "In-memory octet streams for Common Lisp")
6956 (description
6957 "CL-octet-streams is a library implementing in-memory octet
6958 streams for Common Lisp. It was inspired by the trivial-octet-streams and
6959 cl-plumbing libraries.")
6960 (home-page "https://github.com/glv2/cl-octet-streams")
6961 (license license:gpl3+)))
6962
6963 (define-public cl-octet-streams
6964 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
6965
6966 (define-public ecl-cl-octet-streams
6967 (sbcl-package->ecl-package sbcl-cl-octet-streams))
6968
6969 (define-public sbcl-lzlib
6970 (let ((commit "0de1db7129fef9a58a059d35a2fa2ecfc5b47b47")
6971 (revision "1"))
6972 (package
6973 (name "sbcl-lzlib")
6974 (version (git-version "1.0" revision commit))
6975 (source
6976 (origin
6977 (method git-fetch)
6978 (uri (git-reference
6979 (url "https://github.com/glv2/cl-lzlib")
6980 (commit commit)))
6981 (file-name (git-file-name name version))
6982 (sha256
6983 (base32
6984 "12ny7vj52fgnd8hb8fc8mry92vq4c1x72x2350191m4476j95clz"))))
6985 (build-system asdf-build-system/sbcl)
6986 (native-inputs
6987 `(("fiveam" ,sbcl-fiveam)))
6988 (inputs
6989 `(("cffi" ,sbcl-cffi)
6990 ("cl-octet-streams" ,sbcl-cl-octet-streams)
6991 ("lzlib" ,lzlib)))
6992 (arguments
6993 '(#:phases
6994 (modify-phases %standard-phases
6995 (add-after 'unpack 'fix-paths
6996 (lambda* (#:key inputs #:allow-other-keys)
6997 (substitute* "src/lzlib.lisp"
6998 (("liblz\\.so")
6999 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
7000 #t)))))
7001 (synopsis "Common Lisp library for lzip (de)compression")
7002 (description
7003 "This Common Lisp library provides functions for lzip (LZMA)
7004 compression/decompression using bindings to the lzlib C library.")
7005 (home-page "https://github.com/glv2/cl-lzlib")
7006 (license license:gpl3+))))
7007
7008 (define-public cl-lzlib
7009 (sbcl-package->cl-source-package sbcl-lzlib))
7010
7011 (define-public ecl-lzlib
7012 (sbcl-package->ecl-package sbcl-lzlib))
7013
7014 (define-public sbcl-chanl
7015 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
7016 (revision "1"))
7017 (package
7018 (name "sbcl-chanl")
7019 (version (git-version "0.4.1" revision commit))
7020 (source
7021 (origin
7022 (method git-fetch)
7023 (uri (git-reference
7024 (url "https://github.com/zkat/chanl")
7025 (commit commit)))
7026 (file-name (git-file-name name version))
7027 (sha256
7028 (base32
7029 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
7030 (build-system asdf-build-system/sbcl)
7031 (native-inputs
7032 `(("fiveam" ,sbcl-fiveam)))
7033 (inputs
7034 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
7035 (synopsis "Portable channel-based concurrency for Common Lisp")
7036 (description "Common Lisp library for channel-based concurrency. In
7037 a nutshell, you create various threads sequentially executing tasks you need
7038 done, and use channel objects to communicate and synchronize the state of these
7039 threads.")
7040 (home-page "https://github.com/zkat/chanl")
7041 (license (list license:expat license:bsd-3)))))
7042
7043 (define-public cl-chanl
7044 (sbcl-package->cl-source-package sbcl-chanl))
7045
7046 (define-public ecl-chanl
7047 (sbcl-package->ecl-package sbcl-chanl))
7048
7049 (define-public sbcl-cl-store
7050 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
7051 (revision "1"))
7052 (package
7053 (name "sbcl-cl-store")
7054 (version (git-version "0.8.11" revision commit))
7055 (source
7056 (origin
7057 (method git-fetch)
7058 (uri (git-reference
7059 (url "https://github.com/skypher/cl-store")
7060 (commit commit)))
7061 (file-name (git-file-name name version))
7062 (sha256
7063 (base32
7064 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
7065 (build-system asdf-build-system/sbcl)
7066 (native-inputs
7067 `(("rt" ,sbcl-rt)))
7068 (synopsis "Common Lisp library to serialize data")
7069 (description
7070 "CL-STORE is a portable serialization package which should give you the
7071 ability to store all Common Lisp data types into streams.")
7072 (home-page "https://www.common-lisp.net/project/cl-store/")
7073 (license license:expat))))
7074
7075 (define-public cl-store
7076 (sbcl-package->cl-source-package sbcl-cl-store))
7077
7078 (define-public ecl-cl-store
7079 (sbcl-package->ecl-package sbcl-cl-store))
7080
7081 (define-public sbcl-cl-gobject-introspection
7082 (let ((commit "7b703e2384945ea0ac39d9b766de434a08d81560")
7083 (revision "0"))
7084 (package
7085 (name "sbcl-cl-gobject-introspection")
7086 (version (git-version "0.3" revision commit))
7087 (home-page "https://github.com/andy128k/cl-gobject-introspection")
7088 (source
7089 (origin
7090 (method git-fetch)
7091 (uri (git-reference
7092 (url home-page)
7093 (commit commit)))
7094 (file-name (git-file-name name version))
7095 (sha256
7096 (base32
7097 "1zcqd2qj14f6b38vys8gr89s6cijsp9r8j43xa8lynilwva7bwyh"))))
7098 (build-system asdf-build-system/sbcl)
7099 (inputs
7100 `(("alexandria" ,sbcl-alexandria)
7101 ("cffi" ,sbcl-cffi)
7102 ("iterate" ,sbcl-iterate)
7103 ("trivial-garbage" ,sbcl-trivial-garbage)
7104 ("glib" ,glib)
7105 ("gobject-introspection" ,gobject-introspection)))
7106 (native-inputs
7107 `(("fiveam" ,sbcl-fiveam)))
7108 (arguments
7109 ;; TODO: Tests fail, see
7110 ;; https://github.com/andy128k/cl-gobject-introspection/issues/70.
7111 '(#:tests? #f
7112 #:phases
7113 (modify-phases %standard-phases
7114 (add-after (quote unpack) (quote fix-paths)
7115 (lambda* (#:key inputs #:allow-other-keys)
7116 (substitute* "src/init.lisp"
7117 (("libgobject-2\\.0\\.so")
7118 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
7119 (("libgirepository-1\\.0\\.so")
7120 (string-append (assoc-ref inputs "gobject-introspection")
7121 "/lib/libgirepository-1.0.so")))
7122 #t)))))
7123 (synopsis "Common Lisp bindings to GObject Introspection")
7124 (description
7125 "This library is a bridge between Common Lisp and GObject
7126 Introspection, which enables Common Lisp programs to access the full interface
7127 of C+GObject libraries without the need of writing dedicated bindings.")
7128 (license (list license:bsd-3
7129 ;; Tests are under a different license.
7130 license:llgpl)))))
7131
7132 (define-public cl-gobject-introspection
7133 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
7134
7135 (define-public sbcl-string-case
7136 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
7137 (revision "0"))
7138 (package
7139 (name "sbcl-string-case")
7140 (version (git-version "0.0.2" revision commit))
7141 (home-page "https://github.com/pkhuong/string-case")
7142 (source
7143 (origin
7144 (method git-fetch)
7145 (uri (git-reference
7146 (url home-page)
7147 (commit commit)))
7148 (file-name (git-file-name name version))
7149 (sha256
7150 (base32
7151 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
7152 (build-system asdf-build-system/sbcl)
7153 (synopsis "Efficient string= case in Common Lisp")
7154 (description
7155 "@code{string-case} is a Common Lisp macro that generates specialised decision
7156 trees to dispatch on string equality.")
7157 (license license:bsd-3))))
7158
7159 (define-public cl-string-case
7160 (sbcl-package->cl-source-package sbcl-string-case))
7161
7162 (define-public ecl-string-case
7163 (sbcl-package->ecl-package sbcl-string-case))
7164
7165 (define-public sbcl-global-vars
7166 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7167 (revision "0"))
7168 (package
7169 (name "sbcl-global-vars")
7170 (version (git-version "1.0.0" revision commit))
7171 (home-page "https://github.com/lmj/global-vars")
7172 (source
7173 (origin
7174 (method git-fetch)
7175 (uri (git-reference
7176 (url home-page)
7177 (commit commit)))
7178 (file-name (git-file-name name version))
7179 (sha256
7180 (base32
7181 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7182 (build-system asdf-build-system/sbcl)
7183 (synopsis "Efficient global variables in Common Lisp")
7184 (description
7185 "In Common Lisp, a special variable that is never dynamically bound
7186 typically serves as a stand-in for a global variable. The @code{global-vars}
7187 library provides true global variables that are implemented by some compilers.
7188 An attempt to rebind a global variable properly results in a compiler error.
7189 That is, a global variable cannot be dynamically bound.
7190
7191 Global variables therefore allow us to communicate an intended usage that
7192 differs from special variables. Global variables are also more efficient than
7193 special variables, especially in the presence of threads.")
7194 (license license:expat))))
7195
7196 (define-public cl-global-vars
7197 (sbcl-package->cl-source-package sbcl-global-vars))
7198
7199 (define-public ecl-global-vars
7200 (sbcl-package->ecl-package sbcl-global-vars))
7201
7202 (define-public sbcl-trivial-file-size
7203 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7204 (revision "0"))
7205 (package
7206 (name "sbcl-trivial-file-size")
7207 (version (git-version "0.0.0" revision commit))
7208 (home-page "https://github.com/ruricolist/trivial-file-size")
7209 (source
7210 (origin
7211 (method git-fetch)
7212 (uri (git-reference
7213 (url home-page)
7214 (commit commit)))
7215 (file-name (git-file-name name version))
7216 (sha256
7217 (base32
7218 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7219 (build-system asdf-build-system/sbcl)
7220 (native-inputs
7221 `(("fiveam" ,sbcl-fiveam)))
7222 (synopsis "Size of a file in bytes in Common Lisp")
7223 (description
7224 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7225 is to open the file with an element type of (unsigned-byte 8) and then
7226 calculate the length of the stream. This is less than ideal. In most cases
7227 it is better to get the size of the file from its metadata, using a system
7228 call.
7229
7230 This library exports a single function, file-size-in-octets. It returns the
7231 size of a file in bytes, using system calls when possible.")
7232 (license license:expat))))
7233
7234 (define-public cl-trivial-file-size
7235 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7236
7237 (define-public ecl-trivial-file-size
7238 (sbcl-package->ecl-package sbcl-trivial-file-size))
7239
7240 (define-public sbcl-trivial-macroexpand-all
7241 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7242 (revision "0"))
7243 (package
7244 (name "sbcl-trivial-macroexpand-all")
7245 (version (git-version "0.0.0" revision commit))
7246 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7247 (source
7248 (origin
7249 (method git-fetch)
7250 (uri (git-reference
7251 (url home-page)
7252 (commit commit)))
7253 (file-name (git-file-name name version))
7254 (sha256
7255 (base32
7256 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7257 (build-system asdf-build-system/sbcl)
7258 (native-inputs
7259 `(("fiveam" ,sbcl-fiveam)))
7260 (synopsis "Portable macroexpand-all for Common Lisp")
7261 (description
7262 "This library provides a macroexpand-all function that calls the
7263 implementation specific equivalent.")
7264 (license license:unlicense))))
7265
7266 (define-public cl-trivial-macroexpand-all
7267 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7268
7269 (define-public ecl-trivial-macroexpand-all
7270 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7271
7272 (define-public sbcl-serapeum
7273 (let ((commit "a2ca90cbdcb9f76c2822286110c7abe9ba5b76c2")
7274 (revision "2"))
7275 (package
7276 (name "sbcl-serapeum")
7277 (version (git-version "0.0.0" revision commit))
7278 (home-page "https://github.com/ruricolist/serapeum")
7279 (source
7280 (origin
7281 (method git-fetch)
7282 (uri (git-reference
7283 (url home-page)
7284 (commit commit)))
7285 (file-name (git-file-name name version))
7286 (sha256
7287 (base32
7288 "1lrk2kf7qh5g6f8xvyg8wf89frzb5mw6m1jzgy46jy744f459i8q"))))
7289 (build-system asdf-build-system/sbcl)
7290 (inputs
7291 `(("alexandria" ,sbcl-alexandria)
7292 ("trivia" ,sbcl-trivia)
7293 ("trivia.quasiquote" ,sbcl-trivia.quasiquote)
7294 ("split-sequence" ,sbcl-split-sequence)
7295 ("string-case" ,sbcl-string-case)
7296 ("parse-number" ,sbcl-parse-number)
7297 ("trivial-garbage" ,sbcl-trivial-garbage)
7298 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7299 ("named-readtables" ,sbcl-named-readtables)
7300 ("fare-quasiquote-extras" ,sbcl-fare-quasiquote-extras)
7301 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7302 ("global-vars" ,sbcl-global-vars)
7303 ("trivial-file-size" ,sbcl-trivial-file-size)
7304 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7305 (native-inputs
7306 `(("fiveam" ,sbcl-fiveam)
7307 ("local-time" ,sbcl-local-time)))
7308 (arguments
7309 '(#:phases
7310 (modify-phases %standard-phases
7311 (add-after 'unpack 'disable-failing-tests
7312 (lambda* (#:key inputs #:allow-other-keys)
7313 (substitute* "serapeum.asd"
7314 ;; Guix does not have Quicklisp, and probably never will.
7315 (("\\(:file \"quicklisp\"\\)") ""))
7316 #t)))))
7317 (synopsis "Common Lisp utility library beyond Alexandria")
7318 (description
7319 "Serapeum is a conservative library of Common Lisp utilities. It is a
7320 supplement, not a competitor, to Alexandria.")
7321 (license license:expat))))
7322
7323 (define-public cl-serapeum
7324 (sbcl-package->cl-source-package sbcl-serapeum))
7325
7326 (define-public sbcl-arrows
7327 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7328 (revision "0"))
7329 (package
7330 (name "sbcl-arrows")
7331 (version (git-version "0.2.0" revision commit))
7332 (source
7333 (origin
7334 (method git-fetch)
7335 (uri (git-reference
7336 (url "https://gitlab.com/Harleqin/arrows.git")
7337 (commit commit)))
7338 (file-name (git-file-name name version))
7339 (sha256
7340 (base32
7341 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7342 (build-system asdf-build-system/sbcl)
7343 (native-inputs
7344 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7345 (synopsis "Clojure-like arrow macros for Common Lisp")
7346 (description
7347 "This library implements the @code{->} and @code{->>} macros from
7348 Clojure, as well as several expansions on the idea.")
7349 (home-page "https://gitlab.com/Harleqin/arrows")
7350 (license license:public-domain))))
7351
7352 (define-public cl-arrows
7353 (sbcl-package->cl-source-package sbcl-arrows))
7354
7355 (define-public ecl-arrows
7356 (sbcl-package->ecl-package sbcl-arrows))
7357
7358 (define-public sbcl-simple-parallel-tasks
7359 (let ((commit "db460f7a3f7bbfe2d3a2223ed21e162068d04dda")
7360 (revision "0"))
7361 (package
7362 (name "sbcl-simple-parallel-tasks")
7363 (version (git-version "1.0" revision commit))
7364 (source
7365 (origin
7366 (method git-fetch)
7367 (uri (git-reference
7368 (url "https://github.com/glv2/simple-parallel-tasks")
7369 (commit commit)))
7370 (file-name (git-file-name name version))
7371 (sha256
7372 (base32
7373 "0amw3qk23wnlyrsgzszs6rs7y4zvxv8dr03rnqhc60mnm8ds4dd5"))))
7374 (build-system asdf-build-system/sbcl)
7375 (native-inputs
7376 `(("fiveam" ,sbcl-fiveam)))
7377 (inputs
7378 `(("chanl" ,sbcl-chanl)))
7379 (synopsis "Common Lisp library to evaluate some forms in parallel")
7380 (description "This is a simple Common Lisp library to evaluate some
7381 forms in parallel.")
7382 (home-page "https://github.com/glv2/simple-parallel-tasks")
7383 (license license:gpl3))))
7384
7385 (define-public cl-simple-parallel-tasks
7386 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7387
7388 (define-public ecl-simple-parallel-tasks
7389 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7390
7391 (define-public sbcl-cl-heap
7392 (package
7393 (name "sbcl-cl-heap")
7394 (version "0.1.6")
7395 (source
7396 (origin
7397 (method url-fetch)
7398 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7399 "cl-heap_" version ".tar.gz"))
7400 (sha256
7401 (base32
7402 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7403 (build-system asdf-build-system/sbcl)
7404 (native-inputs
7405 `(("xlunit" ,sbcl-xlunit)))
7406 (arguments
7407 `(#:test-asd-file "cl-heap-tests.asd"))
7408 (synopsis "Heap and priority queue data structures for Common Lisp")
7409 (description
7410 "CL-HEAP provides various implementations of heap data structures (a
7411 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7412 (home-page "https://common-lisp.net/project/cl-heap/")
7413 (license license:gpl3+)))
7414
7415 (define-public cl-heap
7416 (sbcl-package->cl-source-package sbcl-cl-heap))
7417
7418 (define-public ecl-cl-heap
7419 (sbcl-package->ecl-package sbcl-cl-heap))
7420
7421 (define-public sbcl-curry-compose-reader-macros
7422 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7423 (revision "0"))
7424 (package
7425 (name "sbcl-curry-compose-reader-macros")
7426 (version (git-version "1.0.0" revision commit))
7427 (source
7428 (origin
7429 (method git-fetch)
7430 (uri
7431 (git-reference
7432 (url "https://github.com/eschulte/curry-compose-reader-macros")
7433 (commit commit)))
7434 (file-name (git-file-name name version))
7435 (sha256
7436 (base32
7437 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7438 (build-system asdf-build-system/sbcl)
7439 (inputs
7440 `(("alexandria" ,sbcl-alexandria)
7441 ("named-readtables" ,sbcl-named-readtables)))
7442 (synopsis "Reader macros for partial application and composition")
7443 (description
7444 "This Common Lisp library provides reader macros for concise expression
7445 of function partial application and composition.")
7446 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7447 (license license:public-domain))))
7448
7449 (define-public cl-curry-compose-reader-macros
7450 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7451
7452 (define-public ecl-curry-compose-reader-macros
7453 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7454
7455 (define-public sbcl-yason
7456 (package
7457 (name "sbcl-yason")
7458 (version "0.7.7")
7459 (source
7460 (origin
7461 (method git-fetch)
7462 (uri (git-reference
7463 (url "https://github.com/phmarek/yason")
7464 (commit (string-append "v" version))))
7465 (file-name (git-file-name name version))
7466 (sha256
7467 (base32
7468 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7469 (build-system asdf-build-system/sbcl)
7470 (inputs
7471 `(("alexandria" ,sbcl-alexandria)
7472 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7473 (synopsis "Common Lisp JSON parser/encoder")
7474 (description
7475 "YASON is a Common Lisp library for encoding and decoding data in the
7476 JSON interchange format.")
7477 (home-page "https://github.com/phmarek/yason")
7478 (license license:bsd-3)))
7479
7480 (define-public cl-yason
7481 (sbcl-package->cl-source-package sbcl-yason))
7482
7483 (define-public ecl-yason
7484 (sbcl-package->ecl-package sbcl-yason))
7485
7486 (define-public sbcl-stefil
7487 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7488 (revision "0"))
7489 (package
7490 (name "sbcl-stefil")
7491 (version (git-version "0.1" revision commit))
7492 (source
7493 (origin
7494 (method git-fetch)
7495 (uri (git-reference
7496 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7497 (commit commit)))
7498 (file-name (git-file-name name version))
7499 (sha256
7500 (base32
7501 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7502 (build-system asdf-build-system/sbcl)
7503 (inputs
7504 `(("alexandria" ,sbcl-alexandria)
7505 ("iterate" ,sbcl-iterate)
7506 ("metabang-bind" ,sbcl-metabang-bind)))
7507 (propagated-inputs
7508 ;; Swank doesn't have a pre-compiled package, therefore we must
7509 ;; propagate its sources.
7510 `(("swank" ,cl-slime-swank)))
7511 (arguments
7512 '(#:phases
7513 (modify-phases %standard-phases
7514 (add-after 'unpack 'drop-unnecessary-dependency
7515 (lambda _
7516 (substitute* "package.lisp"
7517 ((":stefil-system") ""))
7518 #t)))))
7519 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7520 (synopsis "Simple test framework")
7521 (description
7522 "Stefil is a simple test framework for Common Lisp, with a focus on
7523 interactive development.")
7524 (license license:public-domain))))
7525
7526 (define-public cl-stefil
7527 (sbcl-package->cl-source-package sbcl-stefil))
7528
7529 (define-public sbcl-graph
7530 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7531 (revision "0"))
7532 (package
7533 (name "sbcl-graph")
7534 (version (git-version "0.0.0" revision commit))
7535 (source
7536 (origin
7537 (method git-fetch)
7538 (uri
7539 (git-reference
7540 (url "https://github.com/eschulte/graph")
7541 (commit commit)))
7542 (file-name (git-file-name name version))
7543 (sha256
7544 (base32
7545 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))
7546 (patches (search-patches "sbcl-graph-asdf-definitions.patch"))))
7547 (build-system asdf-build-system/sbcl)
7548 (native-inputs
7549 `(("stefil" ,sbcl-stefil)))
7550 (inputs
7551 `(("alexandria" ,sbcl-alexandria)
7552 ("cl-heap" ,sbcl-cl-heap)
7553 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7554 ("metabang-bind" ,sbcl-metabang-bind)
7555 ("named-readtables" ,sbcl-named-readtables)))
7556 (arguments
7557 '(#:test-asd-file "graph-test.asd"))
7558 (synopsis "Graph data structure and algorithms for Common Lisp")
7559 (description
7560 "The GRAPH Common Lisp library provides a data structures to represent
7561 graphs, as well as some graph manipulation and analysis algorithms (shortest
7562 path, maximum flow, minimum spanning tree, etc.).")
7563 (home-page "https://eschulte.github.io/graph/")
7564 (license license:gpl3+))))
7565
7566 (define-public cl-graph
7567 (sbcl-package->cl-source-package sbcl-graph))
7568
7569 (define-public sbcl-graph-dot
7570 (package
7571 (inherit sbcl-graph)
7572 (name "sbcl-graph-dot")
7573 (inputs
7574 `(("alexandria" ,sbcl-alexandria)
7575 ("cl-ppcre" ,sbcl-cl-ppcre)
7576 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7577 ("graph" ,sbcl-graph)
7578 ("metabang-bind" ,sbcl-metabang-bind)
7579 ("named-readtables" ,sbcl-named-readtables)))
7580 (arguments
7581 (substitute-keyword-arguments (package-arguments sbcl-graph)
7582 ((#:asd-file _ "") "graph-dot.asd")
7583 ((#:asd-system-name _ #f) "graph-dot")))
7584 (synopsis "Serialize graphs to and from DOT format")))
7585
7586 (define-public sbcl-graph-json
7587 (package
7588 (inherit sbcl-graph)
7589 (name "sbcl-graph-json")
7590 (inputs
7591 `(("alexandria" ,sbcl-alexandria)
7592 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7593 ("graph" ,sbcl-graph)
7594 ("metabang-bind" ,sbcl-metabang-bind)
7595 ("named-readtables" ,sbcl-named-readtables)
7596 ("yason" ,sbcl-yason)))
7597 (arguments
7598 (substitute-keyword-arguments (package-arguments sbcl-graph)
7599 ((#:asd-file _ "") "graph-json.asd")
7600 ((#:asd-system-name _ #f) "graph-json")))
7601 (synopsis "Serialize graphs to and from JSON format")))
7602
7603 (define-public sbcl-trivial-indent
7604 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7605 (revision "0"))
7606 (package
7607 (name "sbcl-trivial-indent")
7608 (version (git-version "1.0.0" revision commit))
7609 (source
7610 (origin
7611 (method git-fetch)
7612 (uri
7613 (git-reference
7614 (url "https://github.com/Shinmera/trivial-indent")
7615 (commit commit)))
7616 (file-name (git-file-name name version))
7617 (sha256
7618 (base32
7619 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7620 (build-system asdf-build-system/sbcl)
7621 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7622 (description
7623 "This library allows you to define custom indentation hints for your
7624 macros if the one recognised by SLIME automatically produces unwanted
7625 results.")
7626 (home-page "https://shinmera.github.io/trivial-indent/")
7627 (license license:zlib))))
7628
7629 (define-public cl-trivial-indent
7630 (sbcl-package->cl-source-package sbcl-trivial-indent))
7631
7632 (define-public sbcl-documentation-utils
7633 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7634 (revision "0"))
7635 (package
7636 (name "sbcl-documentation-utils")
7637 (version (git-version "1.2.0" revision commit))
7638 (source
7639 (origin
7640 (method git-fetch)
7641 (uri
7642 (git-reference
7643 (url "https://github.com/Shinmera/documentation-utils")
7644 (commit commit)))
7645 (file-name (git-file-name name version))
7646 (sha256
7647 (base32
7648 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7649 (build-system asdf-build-system/sbcl)
7650 (inputs
7651 `(("trivial-indent" ,sbcl-trivial-indent)))
7652 (synopsis "Few simple tools to document Common Lisp libraries")
7653 (description
7654 "This is a small library to help you with managing the Common Lisp
7655 docstrings for your library.")
7656 (home-page "https://shinmera.github.io/documentation-utils/")
7657 (license license:zlib))))
7658
7659 (define-public cl-documentation-utils
7660 (sbcl-package->cl-source-package sbcl-documentation-utils))
7661
7662 (define-public ecl-documentation-utils
7663 (sbcl-package->ecl-package sbcl-documentation-utils))
7664
7665 (define-public sbcl-form-fiddle
7666 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7667 (revision "0"))
7668 (package
7669 (name "sbcl-form-fiddle")
7670 (version (git-version "1.1.0" revision commit))
7671 (source
7672 (origin
7673 (method git-fetch)
7674 (uri
7675 (git-reference
7676 (url "https://github.com/Shinmera/form-fiddle")
7677 (commit commit)))
7678 (file-name (git-file-name name version))
7679 (sha256
7680 (base32
7681 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7682 (build-system asdf-build-system/sbcl)
7683 (inputs
7684 `(("documentation-utils" ,sbcl-documentation-utils)))
7685 (synopsis "Utilities to destructure Common Lisp lambda forms")
7686 (description
7687 "Often times we need to destructure a form definition in a Common Lisp
7688 macro. This library provides a set of simple utilities to help with that.")
7689 (home-page "https://shinmera.github.io/form-fiddle/")
7690 (license license:zlib))))
7691
7692 (define-public cl-form-fiddle
7693 (sbcl-package->cl-source-package sbcl-form-fiddle))
7694
7695 (define-public sbcl-parachute
7696 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7697 (revision "0"))
7698 (package
7699 (name "sbcl-parachute")
7700 (version (git-version "1.1.1" revision commit))
7701 (source
7702 (origin
7703 (method git-fetch)
7704 (uri
7705 (git-reference
7706 (url "https://github.com/Shinmera/parachute")
7707 (commit commit)))
7708 (file-name (git-file-name name version))
7709 (sha256
7710 (base32
7711 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7712 (build-system asdf-build-system/sbcl)
7713 (inputs
7714 `(("documentation-utils" ,sbcl-documentation-utils)
7715 ("form-fiddle" ,sbcl-form-fiddle)))
7716 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7717 (description
7718 "Parachute is a simple-to-use and extensible testing framework.
7719 In Parachute, things are organised as a bunch of named tests within a package.
7720 Each test can contain a bunch of test forms that make up its body.")
7721 (home-page "https://shinmera.github.io/parachute/")
7722 (license license:zlib))))
7723
7724 (define-public cl-parachute
7725 (sbcl-package->cl-source-package sbcl-parachute))
7726
7727 (define-public sbcl-array-utils
7728 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7729 (revision "0"))
7730 (package
7731 (name "sbcl-array-utils")
7732 (version (git-version "1.1.1" revision commit))
7733 (source
7734 (origin
7735 (method git-fetch)
7736 (uri
7737 (git-reference
7738 (url "https://github.com/Shinmera/array-utils")
7739 (commit commit)))
7740 (file-name (git-file-name name version))
7741 (sha256
7742 (base32
7743 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
7744 (build-system asdf-build-system/sbcl)
7745 (native-inputs
7746 `(("parachute" ,sbcl-parachute)))
7747 (inputs
7748 `(("documentation-utils" ,sbcl-documentation-utils)))
7749 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
7750 (description
7751 "A miniature toolkit that contains some useful shifting/popping/pushing
7752 functions for arrays and vectors. Originally from Plump.")
7753 (home-page "https://shinmera.github.io/array-utils/")
7754 (license license:zlib))))
7755
7756 (define-public cl-array-utils
7757 (sbcl-package->cl-source-package sbcl-array-utils))
7758
7759 (define-public sbcl-plump
7760 (let ((commit "34f890fe46efdebe7bb70d218f1937e98f632bf9")
7761 (revision "1"))
7762 (package
7763 (name "sbcl-plump")
7764 (version (git-version "2.0.0" revision commit))
7765 (source
7766 (origin
7767 (method git-fetch)
7768 (uri
7769 (git-reference
7770 (url "https://github.com/Shinmera/plump")
7771 (commit commit)))
7772 (file-name (git-file-name name version))
7773 (sha256
7774 (base32
7775 "0a0x8wn6vv1ylxcwck12k18gy0a366kdm6ddxxk7yynl4mwnqgkh"))))
7776 (build-system asdf-build-system/sbcl)
7777 (inputs
7778 `(("array-utils" ,sbcl-array-utils)
7779 ("documentation-utils" ,sbcl-documentation-utils)))
7780 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
7781 (description
7782 "Plump is a parser for HTML/XML-like documents, focusing on being
7783 lenient towards invalid markup. It can handle things like invalid attributes,
7784 bad closing tag order, unencoded entities, inexistent tag types, self-closing
7785 tags and so on. It parses documents to a class representation and offers a
7786 small set of DOM functions to manipulate it. It can be extended to parse to
7787 your own classes.")
7788 (home-page "https://shinmera.github.io/plump/")
7789 (license license:zlib))))
7790
7791 (define-public cl-plump
7792 (sbcl-package->cl-source-package sbcl-plump))
7793
7794 (define-public sbcl-antik-base
7795 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
7796 (revision "1"))
7797 (package
7798 (name "sbcl-antik-base")
7799 (version (git-version "0.0.0" revision commit))
7800 (source
7801 (origin
7802 (method git-fetch)
7803 (uri (git-reference
7804 (url "https://gitlab.common-lisp.net/antik/antik.git")
7805 (commit commit)))
7806 (file-name (git-file-name name version))
7807 (sha256
7808 (base32
7809 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
7810 (build-system asdf-build-system/sbcl)
7811 (inputs
7812 `(("alexandria" ,sbcl-alexandria)
7813 ("cl-ppcre" ,sbcl-cl-ppcre)
7814 ("iterate" ,sbcl-iterate)
7815 ("metabang-bind" ,sbcl-metabang-bind)
7816 ("named-readtables" ,sbcl-named-readtables)
7817 ("split-sequence" ,sbcl-split-sequence)))
7818 (native-inputs
7819 `(("lisp-unit" ,sbcl-lisp-unit)))
7820 (synopsis "Scientific and engineering computation in Common Lisp")
7821 (description
7822 "Antik provides a foundation for scientific and engineering
7823 computation in Common Lisp. It is designed not only to facilitate
7824 numerical computations, but to permit the use of numerical computation
7825 libraries and the interchange of data and procedures, whether
7826 foreign (non-Lisp) or Lisp libraries. It is named after the
7827 Antikythera mechanism, one of the oldest examples of a scientific
7828 computer known.")
7829 (home-page "https://common-lisp.net/project/antik/")
7830 (license license:gpl3))))
7831
7832 (define-public cl-antik-base
7833 (sbcl-package->cl-source-package sbcl-antik-base))
7834
7835 (define-public ecl-antik-base
7836 (sbcl-package->ecl-package sbcl-antik-base))
7837
7838 (define-public sbcl-foreign-array
7839 (package
7840 (inherit sbcl-antik-base)
7841 (name "sbcl-foreign-array")
7842 (arguments
7843 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7844 ((#:asd-file _ "") "foreign-array.asd")
7845 ((#:asd-system-name _ #f) "foreign-array")))
7846 (inputs
7847 `(("antik-base" ,sbcl-antik-base)
7848 ("cffi" ,sbcl-cffi)
7849 ("trivial-garbage" ,sbcl-trivial-garbage)
7850 ("static-vectors" ,sbcl-static-vectors)))
7851 (synopsis "Common Lisp library providing access to foreign arrays")))
7852
7853 (define-public cl-foreign-array
7854 (sbcl-package->cl-source-package sbcl-foreign-array))
7855
7856 (define-public ecl-foreign-array
7857 (sbcl-package->ecl-package sbcl-foreign-array))
7858
7859 (define-public sbcl-physical-dimension
7860 (package
7861 (inherit sbcl-antik-base)
7862 (name "sbcl-physical-dimension")
7863 (inputs
7864 `(("fare-utils" ,sbcl-fare-utils)
7865 ("foreign-array" ,sbcl-foreign-array)
7866 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
7867 (arguments
7868 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7869 ((#:asd-file _ "") "physical-dimension.asd")
7870 ((#:asd-system-name _ #f) "physical-dimension")))
7871 (synopsis
7872 "Common Lisp library providing computations with physical units")))
7873
7874 (define-public cl-physical-dimension
7875 (sbcl-package->cl-source-package sbcl-physical-dimension))
7876
7877 (define-public sbcl-science-data
7878 (package
7879 (inherit sbcl-antik-base)
7880 (name "sbcl-science-data")
7881 (inputs
7882 `(("physical-dimension" ,sbcl-physical-dimension)
7883 ("drakma" ,sbcl-drakma)))
7884 (arguments
7885 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7886 ((#:asd-file _ "") "science-data.asd")
7887 ((#:asd-system-name _ #f) "science-data")))
7888 (synopsis
7889 "Common Lisp library for scientific and engineering numerical data")))
7890
7891 (define-public cl-science-data
7892 (sbcl-package->cl-source-package sbcl-science-data))
7893
7894 (define-public sbcl-gsll
7895 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
7896 (revision "1"))
7897 (package
7898 (name "sbcl-gsll")
7899 (version (git-version "0.0.0" revision commit))
7900 (source
7901 (origin
7902 (method git-fetch)
7903 (uri (git-reference
7904 (url "https://gitlab.common-lisp.net/antik/gsll.git")
7905 (commit commit)))
7906 (file-name (git-file-name name version))
7907 (sha256
7908 (base32
7909 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
7910 (build-system asdf-build-system/sbcl)
7911 (native-inputs
7912 `(("lisp-unit" ,sbcl-lisp-unit)))
7913 (inputs
7914 `(("alexandria" ,sbcl-alexandria)
7915 ("cffi-grovel" ,sbcl-cffi-grovel)
7916 ("cffi-libffi" ,sbcl-cffi-libffi)
7917 ("foreign-array" ,sbcl-foreign-array)
7918 ("gsl" ,gsl)
7919 ("metabang-bind" ,sbcl-metabang-bind)
7920 ("trivial-features" ,sbcl-trivial-features)
7921 ("trivial-garbage" ,sbcl-trivial-garbage)))
7922 (arguments
7923 `(#:tests? #f
7924 #:phases
7925 (modify-phases %standard-phases
7926 (add-after 'unpack 'fix-cffi-paths
7927 (lambda* (#:key inputs #:allow-other-keys)
7928 (substitute* "gsll.asd"
7929 ((":depends-on \\(#:foreign-array")
7930 ":depends-on (#:foreign-array #:cffi-libffi"))
7931 (substitute* "init/init.lisp"
7932 (("libgslcblas.so" all)
7933 (string-append
7934 (assoc-ref inputs "gsl") "/lib/" all)))
7935 (substitute* "init/init.lisp"
7936 (("libgsl.so" all)
7937 (string-append
7938 (assoc-ref inputs "gsl") "/lib/" all))))))))
7939 (synopsis "GNU Scientific Library for Lisp")
7940 (description
7941 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
7942 GNU Scientific Library (GSL) from Common Lisp. This library provides a
7943 full range of common mathematical operations useful to scientific and
7944 engineering applications. The design of the GSLL interface is such
7945 that access to most of the GSL library is possible in a Lisp-natural
7946 way; the intent is that the user not be hampered by the restrictions
7947 of the C language in which GSL has been written. GSLL thus provides
7948 interactive use of GSL for getting quick answers, even for someone not
7949 intending to program in Lisp.")
7950 (home-page "https://common-lisp.net/project/gsll/")
7951 (license license:gpl3))))
7952
7953 (define-public cl-gsll
7954 (sbcl-package->cl-source-package sbcl-gsll))
7955
7956 (define-public sbcl-antik
7957 (package
7958 (inherit sbcl-antik-base)
7959 (name "sbcl-antik")
7960 (inputs
7961 `(("gsll" ,sbcl-gsll)
7962 ("physical-dimension" ,sbcl-physical-dimension)))
7963 (arguments
7964 (substitute-keyword-arguments (package-arguments sbcl-antik-base)
7965 ((#:asd-file _ "") "antik.asd")
7966 ((#:asd-system-name _ #f) "antik")))))
7967
7968 (define-public cl-antik
7969 (sbcl-package->cl-source-package sbcl-antik))
7970
7971 (define-public sbcl-cl-interpol
7972 (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4")
7973 (revision "1"))
7974 (package
7975 (name "sbcl-cl-interpol")
7976 (version (git-version "0.2.6" revision commit))
7977 (source
7978 (origin
7979 (method git-fetch)
7980 (uri (git-reference
7981 (url "https://github.com/edicl/cl-interpol")
7982 (commit commit)))
7983 (file-name (git-file-name name version))
7984 (sha256
7985 (base32
7986 "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn"))))
7987 (build-system asdf-build-system/sbcl)
7988 (inputs
7989 `(("cl-unicode" ,sbcl-cl-unicode)
7990 ("named-readtables" ,sbcl-named-readtables)))
7991 (native-inputs
7992 `(("flexi-streams" ,sbcl-flexi-streams)))
7993 (synopsis "String interpolation for Common Lisp")
7994 (description
7995 "CL-INTERPOL is a library for Common Lisp which modifies the
7996 reader so that you can have interpolation within strings similar to
7997 Perl or Unix Shell scripts. It also provides various ways to insert
7998 arbitrary characters into literal strings even if your editor/IDE
7999 doesn't support them.")
8000 (home-page "https://edicl.github.io/cl-interpol/")
8001 (license license:bsd-3))))
8002
8003 (define-public cl-interpol
8004 (sbcl-package->cl-source-package sbcl-cl-interpol))
8005
8006 (define-public ecl-cl-interpol
8007 (sbcl-package->ecl-package sbcl-cl-interpol))
8008
8009 (define sbcl-symbol-munger-boot0
8010 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8011 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8012 (let ((commit "cc2bb4b7acd454d756484aec81ba487648385fc3")
8013 (revision "1"))
8014 (package
8015 (name "sbcl-symbol-munger-boot0")
8016 (version (git-version "0.0.1" revision commit))
8017 (source
8018 (origin
8019 (method git-fetch)
8020 (uri (git-reference
8021 (url "https://github.com/AccelerationNet/symbol-munger")
8022 (commit commit)))
8023 (file-name (git-file-name name version))
8024 (sha256
8025 (base32
8026 "0diav5ricqsybqvbp4bkxyj3bn3v9n7xb2pqqc4vg1algsw2pyjl"))))
8027 (build-system asdf-build-system/sbcl)
8028 (arguments
8029 `(#:asd-file "symbol-munger.asd"
8030 #:asd-system-name "symbol-munger"))
8031 (inputs
8032 `(("iterate" ,sbcl-iterate)
8033 ("alexandria" ,sbcl-alexandria)))
8034 (native-inputs
8035 `(("lisp-unit" ,sbcl-lisp-unit)))
8036 (synopsis
8037 "Capitalization and spacing conversion functions for Common Lisp")
8038 (description
8039 "This is a Common Lisp library to change the capitalization and spacing
8040 of a string or a symbol. It can convert to and from Lisp, english, underscore
8041 and camel-case rules.")
8042 (home-page "https://github.com/AccelerationNet/symbol-munger")
8043 ;; The package declares a BSD license, but all of the license
8044 ;; text is MIT.
8045 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
8046 (license license:expat))))
8047
8048 (define sbcl-lisp-unit2-boot0
8049 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8050 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8051 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
8052 (revision "1"))
8053 (package
8054 (name "sbcl-lisp-unit2-boot0")
8055 (version (git-version "0.2.0" revision commit))
8056 (source
8057 (origin
8058 (method git-fetch)
8059 (uri (git-reference
8060 (url "https://github.com/AccelerationNet/lisp-unit2")
8061 (commit commit)))
8062 (file-name (git-file-name name version))
8063 (sha256
8064 (base32
8065 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
8066 (build-system asdf-build-system/sbcl)
8067 (arguments
8068 `(#:asd-file "lisp-unit2.asd"
8069 #:asd-system-name "lisp-unit2"))
8070 (inputs
8071 `(("alexandria" ,sbcl-alexandria)
8072 ("cl-interpol" ,sbcl-cl-interpol)
8073 ("iterate" ,sbcl-iterate)
8074 ("symbol-munger-boot0" ,sbcl-symbol-munger-boot0)))
8075 (synopsis "Test Framework for Common Lisp")
8076 (description
8077 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
8078 style of JUnit for Java. It is a new version of the lisp-unit library written
8079 by Chris Riesbeck.")
8080 (home-page "https://github.com/AccelerationNet/lisp-unit2")
8081 (license license:expat))))
8082
8083 (define-public sbcl-symbol-munger
8084 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
8085 (revision "1"))
8086 (package
8087 (name "sbcl-symbol-munger")
8088 (version (git-version "0.0.1" revision commit))
8089 (source
8090 (origin
8091 (method git-fetch)
8092 (uri (git-reference
8093 (url "https://github.com/AccelerationNet/symbol-munger")
8094 (commit commit)))
8095 (file-name (git-file-name name version))
8096 (sha256
8097 (base32
8098 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
8099 (build-system asdf-build-system/sbcl)
8100 (inputs
8101 `(("alexandria" ,sbcl-alexandria)
8102 ("iterate" ,sbcl-iterate)))
8103 (native-inputs
8104 `(("lisp-unit2-boot0" ,sbcl-lisp-unit2-boot0)))
8105 (synopsis
8106 "Capitalization and spacing conversion functions for Common Lisp")
8107 (description
8108 "This is a Common Lisp library to change the capitalization and spacing
8109 of a string or a symbol. It can convert to and from Lisp, english, underscore
8110 and camel-case rules.")
8111 (home-page "https://github.com/AccelerationNet/symbol-munger")
8112 ;; The package declares a BSD license, but all of the license
8113 ;; text is MIT.
8114 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
8115 (license license:expat))))
8116
8117 (define-public cl-symbol-munger
8118 (sbcl-package->cl-source-package sbcl-symbol-munger))
8119
8120 (define-public ecl-symbol-munger
8121 (sbcl-package->ecl-package sbcl-symbol-munger))
8122
8123 (define-public sbcl-lisp-unit2
8124 (package
8125 (inherit sbcl-lisp-unit2-boot0)
8126 (name "sbcl-lisp-unit2")
8127 (inputs
8128 `(("alexandria" ,sbcl-alexandria)
8129 ("cl-interpol" ,sbcl-cl-interpol)
8130 ("iterate" ,sbcl-iterate)
8131 ("symbol-munger" ,sbcl-symbol-munger)))))
8132
8133 (define-public cl-lisp-unit2
8134 (sbcl-package->cl-source-package sbcl-lisp-unit2))
8135
8136 (define-public ecl-lisp-unit2
8137 (sbcl-package->ecl-package sbcl-lisp-unit2))
8138
8139 (define-public sbcl-cl-csv
8140 (let ((commit "3eba29c8364b033fbe0d189c2500559278b6a362")
8141 (revision "1"))
8142 (package
8143 (name "sbcl-cl-csv")
8144 (version (git-version "1.0.6" revision commit))
8145 (source
8146 (origin
8147 (method git-fetch)
8148 (uri (git-reference
8149 (url "https://github.com/AccelerationNet/cl-csv")
8150 (commit commit)))
8151 (file-name (git-file-name name version))
8152 (sha256
8153 (base32
8154 "07h4ni89jzx93clx453hlnnb5g53hhlcmz5hghqv6ysam48lc8g6"))))
8155 (build-system asdf-build-system/sbcl)
8156 (arguments
8157 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
8158 `(#:tests? #f))
8159 (inputs
8160 `(("alexandria" ,sbcl-alexandria)
8161 ("cl-interpol" ,sbcl-cl-interpol)
8162 ("iterate" ,sbcl-iterate)))
8163 (native-inputs
8164 `(("lisp-unit2" ,sbcl-lisp-unit2)))
8165 (synopsis "Common lisp library for comma-separated values")
8166 (description
8167 "This is a Common Lisp library providing functions to read/write CSV
8168 from/to strings, streams and files.")
8169 (home-page "https://github.com/AccelerationNet/cl-csv")
8170 (license license:bsd-3))))
8171
8172 (define-public cl-csv
8173 (sbcl-package->cl-source-package sbcl-cl-csv))
8174
8175 (define-public ecl-cl-csv
8176 (sbcl-package->ecl-package sbcl-cl-csv))
8177
8178 (define-public sbcl-external-program
8179 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8180 (revision "1"))
8181 (package
8182 (name "sbcl-external-program")
8183 (version (git-version "0.0.6" revision commit))
8184 (source
8185 (origin
8186 (method git-fetch)
8187 (uri (git-reference
8188 (url "https://github.com/sellout/external-program")
8189 (commit commit)))
8190 (file-name (git-file-name name version))
8191 (sha256
8192 (base32
8193 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8194 (build-system asdf-build-system/sbcl)
8195 (inputs
8196 `(("trivial-features" ,sbcl-trivial-features)))
8197 (native-inputs
8198 `(("fiveam" ,sbcl-fiveam)))
8199 (synopsis "Common Lisp library for running external programs")
8200 (description
8201 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8202 process. It is an attempt to make the RUN-PROGRAM functionality in
8203 implementations like SBCL and CCL as portable as possible without
8204 sacrificing much in the way of power.")
8205 (home-page "https://github.com/sellout/external-program")
8206 (license license:llgpl))))
8207
8208 (define-public cl-external-program
8209 (sbcl-package->cl-source-package sbcl-external-program))
8210
8211 (define-public ecl-external-program
8212 (sbcl-package->ecl-package sbcl-external-program))
8213
8214 (define sbcl-cl-ana-boot0
8215 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8216 (revision "1"))
8217 (package
8218 (name "sbcl-cl-ana-boot0")
8219 (version (git-version "0.0.0" revision commit))
8220 (source
8221 (origin
8222 (method git-fetch)
8223 (uri (git-reference
8224 (url "https://github.com/ghollisjr/cl-ana")
8225 (commit commit)))
8226 (file-name (git-file-name name version))
8227 (sha256
8228 (base32
8229 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
8230 (build-system asdf-build-system/sbcl)
8231 (synopsis "Common Lisp data analysis library")
8232 (description
8233 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8234 binned data analysis along with nonlinear least squares fitting and
8235 visualization.")
8236 (home-page "https://github.com/ghollisjr/cl-ana")
8237 (license license:gpl3))))
8238
8239 (define-public sbcl-cl-ana.pathname-utils
8240 (package
8241 (inherit sbcl-cl-ana-boot0)
8242 (name "sbcl-cl-ana.pathname-utils")
8243 (arguments
8244 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8245 ((#:asd-file _ "") "pathname-utils/cl-ana.pathname-utils.asd")
8246 ((#:asd-system-name _ #f) "cl-ana.pathname-utils")))))
8247
8248 (define-public cl-ana.pathname-utils
8249 (sbcl-package->cl-source-package sbcl-cl-ana.pathname-utils))
8250
8251 (define-public ecl-cl-ana.pathname-utils
8252 (sbcl-package->ecl-package sbcl-cl-ana.pathname-utils))
8253
8254 (define-public sbcl-cl-ana.package-utils
8255 (package
8256 (inherit sbcl-cl-ana-boot0)
8257 (name "sbcl-cl-ana.package-utils")
8258 (inputs
8259 `(("alexandria" ,sbcl-alexandria)))
8260 (arguments
8261 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8262 ((#:asd-file _ "") "package-utils/cl-ana.package-utils.asd")
8263 ((#:asd-system-name _ #f) "cl-ana.package-utils")))))
8264
8265 (define-public cl-ana.package-utils
8266 (sbcl-package->cl-source-package sbcl-cl-ana.package-utils))
8267
8268 (define-public ecl-cl-ana.package-utils
8269 (sbcl-package->ecl-package sbcl-cl-ana.package-utils))
8270
8271 (define-public sbcl-cl-ana.string-utils
8272 (package
8273 (inherit sbcl-cl-ana-boot0)
8274 (name "sbcl-cl-ana.string-utils")
8275 (inputs
8276 `(("split-sequence" ,sbcl-split-sequence)))
8277 (arguments
8278 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8279 ((#:asd-file _ "") "string-utils/cl-ana.string-utils.asd")
8280 ((#:asd-system-name _ #f) "cl-ana.string-utils")))))
8281
8282 (define-public cl-ana.string-utils
8283 (sbcl-package->cl-source-package sbcl-cl-ana.string-utils))
8284
8285 (define-public ecl-cl-ana.string-utils
8286 (sbcl-package->ecl-package sbcl-cl-ana.string-utils))
8287
8288 (define-public sbcl-cl-ana.functional-utils
8289 (package
8290 (inherit sbcl-cl-ana-boot0)
8291 (name "sbcl-cl-ana.functional-utils")
8292 (arguments
8293 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8294 ((#:asd-file _ "") "functional-utils/cl-ana.functional-utils.asd")
8295 ((#:asd-system-name _ #f) "cl-ana.functional-utils")))))
8296
8297 (define-public cl-ana.functional-utils
8298 (sbcl-package->cl-source-package sbcl-cl-ana.functional-utils))
8299
8300 (define-public ecl-cl-ana.functional-utils
8301 (sbcl-package->ecl-package sbcl-cl-ana.functional-utils))
8302
8303 (define-public sbcl-cl-ana.list-utils
8304 (package
8305 (inherit sbcl-cl-ana-boot0)
8306 (name "sbcl-cl-ana.list-utils")
8307 (inputs
8308 `(("alexandria" ,sbcl-alexandria)
8309 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8310 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)))
8311 (arguments
8312 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8313 ((#:asd-file _ "") "list-utils/cl-ana.list-utils.asd")
8314 ((#:asd-system-name _ #f) "cl-ana.list-utils")))))
8315
8316 (define-public cl-ana.list-utils
8317 (sbcl-package->cl-source-package sbcl-cl-ana.list-utils))
8318
8319 (define-public ecl-cl-ana.list-utils
8320 (sbcl-package->ecl-package sbcl-cl-ana.list-utils))
8321
8322 (define-public sbcl-cl-ana.generic-math
8323 (package
8324 (inherit sbcl-cl-ana-boot0)
8325 (name "sbcl-cl-ana.generic-math")
8326 (inputs
8327 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8328 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)))
8329 (arguments
8330 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8331 ((#:asd-file _ "") "generic-math/cl-ana.generic-math.asd")
8332 ((#:asd-system-name _ #f) "cl-ana.generic-math")))))
8333
8334 (define-public cl-ana.generic-math
8335 (sbcl-package->cl-source-package sbcl-cl-ana.generic-math))
8336
8337 (define-public ecl-cl-ana.generic-math
8338 (sbcl-package->ecl-package sbcl-cl-ana.generic-math))
8339
8340 (define-public sbcl-cl-ana.math-functions
8341 (package
8342 (inherit sbcl-cl-ana-boot0)
8343 (name "sbcl-cl-ana.math-functions")
8344 (inputs
8345 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8346 ("gsll" ,sbcl-gsll)))
8347 (arguments
8348 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8349 ((#:asd-file _ "") "math-functions/cl-ana.math-functions.asd")
8350 ((#:asd-system-name _ #f) "cl-ana.math-functions")))))
8351
8352 (define-public cl-ana.math-functions
8353 (sbcl-package->cl-source-package sbcl-cl-ana.math-functions))
8354
8355 (define-public sbcl-cl-ana.calculus
8356 (package
8357 (inherit sbcl-cl-ana-boot0)
8358 (name "sbcl-cl-ana.calculus")
8359 (inputs
8360 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)))
8361 (arguments
8362 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8363 ((#:asd-file _ "") "calculus/cl-ana.calculus.asd")
8364 ((#:asd-system-name _ #f) "cl-ana.calculus")))))
8365
8366 (define-public cl-ana.calculus
8367 (sbcl-package->cl-source-package sbcl-cl-ana.calculus))
8368
8369 (define-public ecl-cl-ana.calculus
8370 (sbcl-package->ecl-package sbcl-cl-ana.calculus))
8371
8372 (define-public sbcl-cl-ana.symbol-utils
8373 (package
8374 (inherit sbcl-cl-ana-boot0)
8375 (name "sbcl-cl-ana.symbol-utils")
8376 (inputs
8377 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)))
8378 (arguments
8379 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8380 ((#:asd-file _ "") "symbol-utils/cl-ana.symbol-utils.asd")
8381 ((#:asd-system-name _ #f) "cl-ana.symbol-utils")))))
8382
8383 (define-public cl-ana.symbol-utils
8384 (sbcl-package->cl-source-package sbcl-cl-ana.symbol-utils))
8385
8386 (define-public ecl-cl-ana.symbol-utils
8387 (sbcl-package->ecl-package sbcl-cl-ana.symbol-utils))
8388
8389 (define-public sbcl-cl-ana.macro-utils
8390 (package
8391 (inherit sbcl-cl-ana-boot0)
8392 (name "sbcl-cl-ana.macro-utils")
8393 (inputs
8394 `(("alexandria" ,sbcl-alexandria)
8395 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8396 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8397 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8398 ("split-sequence" ,sbcl-split-sequence)))
8399 (arguments
8400 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8401 ((#:asd-file _ "") "macro-utils/cl-ana.macro-utils.asd")
8402 ((#:asd-system-name _ #f) "cl-ana.macro-utils")))))
8403
8404 (define-public cl-ana.macro-utils
8405 (sbcl-package->cl-source-package sbcl-cl-ana.macro-utils))
8406
8407 (define-public ecl-cl-ana.macro-utils
8408 (sbcl-package->ecl-package sbcl-cl-ana.macro-utils))
8409
8410 (define-public sbcl-cl-ana.binary-tree
8411 (package
8412 (inherit sbcl-cl-ana-boot0)
8413 (name "sbcl-cl-ana.binary-tree")
8414 (inputs
8415 `(("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8416 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8417 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)))
8418 (arguments
8419 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8420 ((#:asd-file _ "") "binary-tree/cl-ana.binary-tree.asd")
8421 ((#:asd-system-name _ #f) "cl-ana.binary-tree")))))
8422
8423 (define-public cl-ana.binary-tree
8424 (sbcl-package->cl-source-package sbcl-cl-ana.binary-tree))
8425
8426 (define-public ecl-cl-ana.binary-tree
8427 (sbcl-package->ecl-package sbcl-cl-ana.binary-tree))
8428
8429 (define-public sbcl-cl-ana.tensor
8430 (package
8431 (inherit sbcl-cl-ana-boot0)
8432 (name "sbcl-cl-ana.tensor")
8433 (inputs
8434 `(("alexandria" ,sbcl-alexandria)
8435 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8436 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8437 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8438 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8439 (arguments
8440 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8441 ((#:asd-file _ "") "tensor/cl-ana.tensor.asd")
8442 ((#:asd-system-name _ #f) "cl-ana.tensor")))))
8443
8444 (define-public cl-ana.tensor
8445 (sbcl-package->cl-source-package sbcl-cl-ana.tensor))
8446
8447 (define-public ecl-cl-ana.tensor
8448 (sbcl-package->ecl-package sbcl-cl-ana.tensor))
8449
8450 (define-public sbcl-cl-ana.error-propogation
8451 (package
8452 (inherit sbcl-cl-ana-boot0)
8453 (name "sbcl-cl-ana.error-propogation")
8454 (inputs
8455 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8456 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)))
8457 (arguments
8458 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8459 ((#:asd-file _ "") "error-propogation/cl-ana.error-propogation.asd")
8460 ((#:asd-system-name _ #f) "cl-ana.error-propogation")))))
8461
8462 (define-public cl-ana.error-propogation
8463 (sbcl-package->cl-source-package sbcl-cl-ana.error-propogation))
8464
8465 (define-public sbcl-cl-ana.quantity
8466 (package
8467 (inherit sbcl-cl-ana-boot0)
8468 (name "sbcl-cl-ana.quantity")
8469 (inputs
8470 `(("alexandria" ,sbcl-alexandria)
8471 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8472 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8473 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8474 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8475 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8476 (arguments
8477 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8478 ((#:asd-file _ "") "quantity/cl-ana.quantity.asd")
8479 ((#:asd-system-name _ #f) "cl-ana.quantity")))))
8480
8481 (define-public cl-ana.quantity
8482 (sbcl-package->cl-source-package sbcl-cl-ana.quantity))
8483
8484 (define-public sbcl-cl-ana.table
8485 (package
8486 (inherit sbcl-cl-ana-boot0)
8487 (name "sbcl-cl-ana.table")
8488 (inputs
8489 `(("alexandria" ,sbcl-alexandria)
8490 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8491 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8492 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8493 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8494 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)))
8495 (arguments
8496 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8497 ((#:asd-file _ "") "table/cl-ana.table.asd")
8498 ((#:asd-system-name _ #f) "cl-ana.table")))))
8499
8500 (define-public cl-ana.table
8501 (sbcl-package->cl-source-package sbcl-cl-ana.table))
8502
8503 (define-public ecl-cl-ana.table
8504 (sbcl-package->ecl-package sbcl-cl-ana.table))
8505
8506 (define-public sbcl-cl-ana.table-utils
8507 (package
8508 (inherit sbcl-cl-ana-boot0)
8509 (name "sbcl-cl-ana.table-utils")
8510 (inputs
8511 `(("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8512 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8513 ("cl-ana.table" ,sbcl-cl-ana.table)))
8514 (arguments
8515 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8516 ((#:asd-file _ "") "table-utils/cl-ana.table-utils.asd")
8517 ((#:asd-system-name _ #f) "cl-ana.table-utils")))))
8518
8519 (define-public cl-ana.table-utils
8520 (sbcl-package->cl-source-package sbcl-cl-ana.table-utils))
8521
8522 (define-public ecl-cl-ana.table-utils
8523 (sbcl-package->ecl-package sbcl-cl-ana.table-utils))
8524
8525 (define-public sbcl-cl-ana.hdf-cffi
8526 (package
8527 (inherit sbcl-cl-ana-boot0)
8528 (name "sbcl-cl-ana.hdf-cffi")
8529 (inputs
8530 `(("cffi" ,sbcl-cffi)
8531 ("hdf5" ,hdf5-parallel-openmpi)))
8532 (arguments
8533 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8534 ((#:asd-file _ "") "hdf-cffi/cl-ana.hdf-cffi.asd")
8535 ((#:asd-system-name _ #f) "cl-ana.hdf-cffi")
8536 ((#:phases phases '%standard-phases)
8537 `(modify-phases ,phases
8538 (add-after 'unpack 'fix-paths
8539 (lambda* (#:key inputs #:allow-other-keys)
8540 (substitute* "hdf-cffi/hdf-cffi.lisp"
8541 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8542 (string-append
8543 (assoc-ref inputs "hdf5")
8544 "/lib/libhdf5.so")))))))))))
8545
8546 (define-public cl-ana.hdf-cffi
8547 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-cffi))
8548
8549 (define-public ecl-cl-ana.hdf-cffi
8550 (sbcl-package->ecl-package sbcl-cl-ana.hdf-cffi))
8551
8552 (define-public sbcl-cl-ana.int-char
8553 (package
8554 (inherit sbcl-cl-ana-boot0)
8555 (name "sbcl-cl-ana.int-char")
8556 (arguments
8557 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8558 ((#:asd-file _ "") "int-char/cl-ana.int-char.asd")
8559 ((#:asd-system-name _ #f) "cl-ana.int-char")))))
8560
8561 (define-public cl-ana.int-char
8562 (sbcl-package->cl-source-package sbcl-cl-ana.int-char))
8563
8564 (define-public ecl-cl-ana.int-char
8565 (sbcl-package->ecl-package sbcl-cl-ana.int-char))
8566
8567 (define-public sbcl-cl-ana.memoization
8568 (package
8569 (inherit sbcl-cl-ana-boot0)
8570 (name "sbcl-cl-ana.memoization")
8571 (inputs
8572 `(("alexandria" ,sbcl-alexandria)))
8573 (arguments
8574 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8575 ((#:asd-file _ "") "memoization/cl-ana.memoization.asd")
8576 ((#:asd-system-name _ #f) "cl-ana.memoization")))))
8577
8578 (define-public cl-ana.memoization
8579 (sbcl-package->cl-source-package sbcl-cl-ana.memoization))
8580
8581 (define-public ecl-cl-ana.memoization
8582 (sbcl-package->ecl-package sbcl-cl-ana.memoization))
8583
8584 (define-public sbcl-cl-ana.typespec
8585 (package
8586 (inherit sbcl-cl-ana-boot0)
8587 (name "sbcl-cl-ana.typespec")
8588 (inputs
8589 `(("alexandria" ,sbcl-alexandria)
8590 ("cffi" ,sbcl-cffi)
8591 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
8592 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8593 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8594 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8595 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8596 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8597 (arguments
8598 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8599 ((#:asd-file _ "") "typespec/cl-ana.typespec.asd")
8600 ((#:asd-system-name _ #f) "cl-ana.typespec")))))
8601
8602 (define-public cl-ana.typespec
8603 (sbcl-package->cl-source-package sbcl-cl-ana.typespec))
8604
8605 (define-public ecl-cl-ana.typespec
8606 (sbcl-package->ecl-package sbcl-cl-ana.typespec))
8607
8608 (define-public sbcl-cl-ana.hdf-typespec
8609 (package
8610 (inherit sbcl-cl-ana-boot0)
8611 (name "sbcl-cl-ana.hdf-typespec")
8612 (inputs
8613 `(("alexandria" ,sbcl-alexandria)
8614 ("cffi" ,sbcl-cffi)
8615 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8616 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8617 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8618 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8619 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8620 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8621 (arguments
8622 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8623 ((#:asd-file _ "") "hdf-typespec/cl-ana.hdf-typespec.asd")
8624 ((#:asd-system-name _ #f) "cl-ana.hdf-typespec")))))
8625
8626 (define-public cl-ana.hdf-typespec
8627 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-typespec))
8628
8629 (define-public ecl-cl-ana.hdf-typespec
8630 (sbcl-package->ecl-package sbcl-cl-ana.hdf-typespec))
8631
8632 (define-public sbcl-cl-ana.hdf-utils
8633 (package
8634 (inherit sbcl-cl-ana-boot0)
8635 (name "sbcl-cl-ana.hdf-utils")
8636 (inputs
8637 `(("alexandria" ,sbcl-alexandria)
8638 ("cffi" ,sbcl-cffi)
8639 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8640 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8641 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8642 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8643 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8644 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8645 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8646 (arguments
8647 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8648 ((#:asd-file _ "") "hdf-utils/cl-ana.hdf-utils.asd")
8649 ((#:asd-system-name _ #f) "cl-ana.hdf-utils")))))
8650
8651 (define-public cl-ana.hdf-utils
8652 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-utils))
8653
8654 (define-public ecl-cl-ana.hdf-utils
8655 (sbcl-package->ecl-package sbcl-cl-ana.hdf-utils))
8656
8657 (define-public sbcl-cl-ana.typed-table
8658 (package
8659 (inherit sbcl-cl-ana-boot0)
8660 (name "sbcl-cl-ana.typed-table")
8661 (inputs
8662 `(("alexandria" ,sbcl-alexandria)
8663 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8664 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8665 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8666 ("cl-ana.table" ,sbcl-cl-ana.table)
8667 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8668 (arguments
8669 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8670 ((#:asd-file _ "") "typed-table/cl-ana.typed-table.asd")
8671 ((#:asd-system-name _ #f) "cl-ana.typed-table")))))
8672
8673 (define-public cl-ana.typed-table
8674 (sbcl-package->cl-source-package sbcl-cl-ana.typed-table))
8675
8676 (define-public ecl-cl-ana.typed-table
8677 (sbcl-package->ecl-package sbcl-cl-ana.typed-table))
8678
8679 (define-public sbcl-cl-ana.hdf-table
8680 (package
8681 (inherit sbcl-cl-ana-boot0)
8682 (name "sbcl-cl-ana.hdf-table")
8683 (inputs
8684 `(("alexandria" ,sbcl-alexandria)
8685 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8686 ("cl-ana.hdf-cffi" ,sbcl-cl-ana.hdf-cffi)
8687 ("cl-ana.hdf-typespec" ,sbcl-cl-ana.hdf-typespec)
8688 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
8689 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8690 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
8691 ("cl-ana.table" ,sbcl-cl-ana.table)
8692 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8693 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
8694 (arguments
8695 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8696 ((#:asd-file _ "") "hdf-table/cl-ana.hdf-table.asd")
8697 ((#:asd-system-name _ #f) "cl-ana.hdf-table")))))
8698
8699 (define-public cl-ana.hdf-table
8700 (sbcl-package->cl-source-package sbcl-cl-ana.hdf-table))
8701
8702 (define-public ecl-cl-ana.hdf-table
8703 (sbcl-package->ecl-package sbcl-cl-ana.hdf-table))
8704
8705 (define-public sbcl-cl-ana.gsl-cffi
8706 (package
8707 (inherit sbcl-cl-ana-boot0)
8708 (name "sbcl-cl-ana.gsl-cffi")
8709 (inputs
8710 `(("cffi" ,sbcl-cffi)
8711 ("gsl" ,gsl)))
8712 (arguments
8713 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8714 ((#:asd-file _ "") "gsl-cffi/cl-ana.gsl-cffi.asd")
8715 ((#:asd-system-name _ #f) "cl-ana.gsl-cffi")
8716 ((#:phases phases '%standard-phases)
8717 `(modify-phases ,phases
8718 (add-after 'unpack 'fix-paths
8719 (lambda* (#:key inputs #:allow-other-keys)
8720 (substitute* "gsl-cffi/gsl-cffi.lisp"
8721 (("define-foreign-library gsl-cffi" all)
8722 (string-append all " (:unix "
8723 (assoc-ref inputs "gsl")
8724 "/lib/libgsl.so)")))))))))))
8725
8726 (define-public cl-ana.gsl-cffi
8727 (sbcl-package->cl-source-package sbcl-cl-ana.gsl-cffi))
8728
8729 (define-public ecl-cl-ana.gsl-cffi
8730 (sbcl-package->ecl-package sbcl-cl-ana.gsl-cffi))
8731
8732 (define-public sbcl-cl-ana.ntuple-table
8733 (package
8734 (inherit sbcl-cl-ana-boot0)
8735 (name "sbcl-cl-ana.ntuple-table")
8736 (inputs
8737 `(("alexandria" ,sbcl-alexandria)
8738 ("cffi" ,sbcl-cffi)
8739 ("cl-ana.gsl-cffi" ,sbcl-cl-ana.gsl-cffi)
8740 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8741 ("cl-ana.table" ,sbcl-cl-ana.table)
8742 ("cl-ana.typed-table" ,sbcl-cl-ana.typed-table)
8743 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)
8744 ("gsll" ,sbcl-gsll)))
8745 (arguments
8746 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8747 ((#:asd-file _ "") "ntuple-table/cl-ana.ntuple-table.asd")
8748 ((#:asd-system-name _ #f) "cl-ana.ntuple-table")))))
8749
8750 (define-public cl-ana.ntuple-table
8751 (sbcl-package->cl-source-package sbcl-cl-ana.ntuple-table))
8752
8753 (define-public sbcl-cl-ana.csv-table
8754 (package
8755 (inherit sbcl-cl-ana-boot0)
8756 (name "sbcl-cl-ana.csv-table")
8757 (inputs
8758 `(("alexandria" ,sbcl-alexandria)
8759 ("antik" ,sbcl-antik)
8760 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8761 ("cl-ana.table" ,sbcl-cl-ana.table)
8762 ("cl-csv" ,sbcl-cl-csv)
8763 ("iterate" ,sbcl-iterate)))
8764 (arguments
8765 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8766 ((#:asd-file _ "") "csv-table/cl-ana.csv-table.asd")
8767 ((#:asd-system-name _ #f) "cl-ana.csv-table")))))
8768
8769 (define-public cl-ana.csv-table
8770 (sbcl-package->cl-source-package sbcl-cl-ana.csv-table))
8771
8772 (define-public sbcl-cl-ana.reusable-table
8773 (package
8774 (inherit sbcl-cl-ana-boot0)
8775 (name "sbcl-cl-ana.reusable-table")
8776 (inputs
8777 `(("alexandria" ,sbcl-alexandria)
8778 ("cl-ana.table" ,sbcl-cl-ana.table)))
8779 (arguments
8780 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8781 ((#:asd-file _ "") "reusable-table/cl-ana.reusable-table.asd")
8782 ((#:asd-system-name _ #f) "cl-ana.reusable-table")))))
8783
8784 (define-public cl-ana.reusable-table
8785 (sbcl-package->cl-source-package sbcl-cl-ana.reusable-table))
8786
8787 (define-public ecl-cl-ana.reusable-table
8788 (sbcl-package->ecl-package sbcl-cl-ana.reusable-table))
8789
8790 (define-public sbcl-cl-ana.linear-algebra
8791 (package
8792 (inherit sbcl-cl-ana-boot0)
8793 (name "sbcl-cl-ana.linear-algebra")
8794 (inputs
8795 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8796 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8797 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8798 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8799 ("gsll" ,sbcl-gsll)))
8800 (arguments
8801 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8802 ((#:asd-file _ "") "linear-algebra/cl-ana.linear-algebra.asd")
8803 ((#:asd-system-name _ #f) "cl-ana.linear-algebra")))))
8804
8805 (define-public cl-ana.linear-algebra
8806 (sbcl-package->cl-source-package sbcl-cl-ana.linear-algebra))
8807
8808 (define-public sbcl-cl-ana.lorentz
8809 (package
8810 (inherit sbcl-cl-ana-boot0)
8811 (name "sbcl-cl-ana.lorentz")
8812 (inputs
8813 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8814 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
8815 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8816 ("iterate" ,sbcl-iterate)))
8817 (arguments
8818 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8819 ((#:asd-file _ "") "lorentz/cl-ana.lorentz.asd")
8820 ((#:asd-system-name _ #f) "cl-ana.lorentz")))))
8821
8822 (define-public cl-ana.lorentz
8823 (sbcl-package->cl-source-package sbcl-cl-ana.lorentz))
8824
8825 (define-public sbcl-cl-ana.clos-utils
8826 (package
8827 (inherit sbcl-cl-ana-boot0)
8828 (name "sbcl-cl-ana.clos-utils")
8829 (inputs
8830 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8831 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
8832 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8833 ("closer-mop" ,sbcl-closer-mop)))
8834 (arguments
8835 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8836 ((#:asd-file _ "") "clos-utils/cl-ana.clos-utils.asd")
8837 ((#:asd-system-name _ #f) "cl-ana.clos-utils")))))
8838
8839 (define-public cl-ana.clos-utils
8840 (sbcl-package->cl-source-package sbcl-cl-ana.clos-utils))
8841
8842 (define-public ecl-cl-ana.clos-utils
8843 (sbcl-package->ecl-package sbcl-cl-ana.clos-utils))
8844
8845 (define-public sbcl-cl-ana.hash-table-utils
8846 (package
8847 (inherit sbcl-cl-ana-boot0)
8848 (name "sbcl-cl-ana.hash-table-utils")
8849 (arguments
8850 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8851 ((#:asd-file _ "") "hash-table-utils/cl-ana.hash-table-utils.asd")
8852 ((#:asd-system-name _ #f) "cl-ana.hash-table-utils")))))
8853
8854 (define-public cl-ana.hash-table-utils
8855 (sbcl-package->cl-source-package sbcl-cl-ana.hash-table-utils))
8856
8857 (define-public ecl-cl-ana.hash-table-utils
8858 (sbcl-package->ecl-package sbcl-cl-ana.hash-table-utils))
8859
8860 (define-public sbcl-cl-ana.map
8861 (package
8862 (inherit sbcl-cl-ana-boot0)
8863 (name "sbcl-cl-ana.map")
8864 (inputs
8865 `(("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)))
8866 (arguments
8867 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8868 ((#:asd-file _ "") "map/cl-ana.map.asd")
8869 ((#:asd-system-name _ #f) "cl-ana.map")))))
8870
8871 (define-public cl-ana.map
8872 (sbcl-package->cl-source-package sbcl-cl-ana.map))
8873
8874 (define-public ecl-cl-ana.map
8875 (sbcl-package->ecl-package sbcl-cl-ana.map))
8876
8877 (define-public sbcl-cl-ana.fitting
8878 (package
8879 (inherit sbcl-cl-ana-boot0)
8880 (name "sbcl-cl-ana.fitting")
8881 (inputs
8882 `(("alexandria" ,sbcl-alexandria)
8883 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8884 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8885 ("cl-ana.map" ,sbcl-cl-ana.map)
8886 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8887 ("gsll" ,sbcl-gsll)))
8888 (arguments
8889 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8890 ((#:asd-file _ "") "fitting/cl-ana.fitting.asd")
8891 ((#:asd-system-name _ #f) "cl-ana.fitting")))))
8892
8893 (define-public cl-ana.fitting
8894 (sbcl-package->cl-source-package sbcl-cl-ana.fitting))
8895
8896 (define-public sbcl-cl-ana.histogram
8897 (package
8898 (inherit sbcl-cl-ana-boot0)
8899 (name "sbcl-cl-ana.histogram")
8900 (inputs
8901 `(("alexandria" ,sbcl-alexandria)
8902 ("iterate" ,sbcl-iterate)
8903 ("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
8904 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
8905 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
8906 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8907 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8908 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
8909 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8910 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8911 ("cl-ana.map" ,sbcl-cl-ana.map)
8912 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)))
8913 (arguments
8914 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8915 ((#:asd-file _ "") "histogram/cl-ana.histogram.asd")
8916 ((#:asd-system-name _ #f) "cl-ana.histogram")))))
8917
8918 (define-public cl-ana.histogram
8919 (sbcl-package->cl-source-package sbcl-cl-ana.histogram))
8920
8921 (define-public sbcl-cl-ana.file-utils
8922 (package
8923 (inherit sbcl-cl-ana-boot0)
8924 (name "sbcl-cl-ana.file-utils")
8925 (inputs
8926 `(("external-program" ,sbcl-external-program)
8927 ("split-sequence" ,sbcl-split-sequence)))
8928 (arguments
8929 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8930 ((#:asd-file _ "") "file-utils/cl-ana.file-utils.asd")
8931 ((#:asd-system-name _ #f) "cl-ana.file-utils")))))
8932
8933 (define-public cl-ana.file-utils
8934 (sbcl-package->cl-source-package sbcl-cl-ana.file-utils))
8935
8936 (define-public ecl-cl-ana.file-utils
8937 (sbcl-package->ecl-package sbcl-cl-ana.file-utils))
8938
8939 (define-public sbcl-cl-ana.statistics
8940 (package
8941 (inherit sbcl-cl-ana-boot0)
8942 (name "sbcl-cl-ana.statistics")
8943 (inputs
8944 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8945 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8946 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8947 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8948 ("cl-ana.map" ,sbcl-cl-ana.map)))
8949 (arguments
8950 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8951 ((#:asd-file _ "") "statistics/cl-ana.statistics.asd")
8952 ((#:asd-system-name _ #f) "cl-ana.statistics")))))
8953
8954 (define-public cl-ana.statistics
8955 (sbcl-package->cl-source-package sbcl-cl-ana.statistics))
8956
8957 (define-public sbcl-cl-ana.gnuplot-interface
8958 (package
8959 (inherit sbcl-cl-ana-boot0)
8960 (name "sbcl-cl-ana.gnuplot-interface")
8961 (inputs
8962 `(("external-program" ,sbcl-external-program)))
8963 (arguments
8964 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8965 ((#:asd-file _ "") "gnuplot-interface/cl-ana.gnuplot-interface.asd")
8966 ((#:asd-system-name _ #f) "cl-ana.gnuplot-interface")))))
8967
8968 (define-public cl-ana.gnuplot-interface
8969 (sbcl-package->cl-source-package sbcl-cl-ana.gnuplot-interface))
8970
8971 (define-public ecl-cl-ana.gnuplot-interface
8972 (sbcl-package->ecl-package sbcl-cl-ana.gnuplot-interface))
8973
8974 (define-public sbcl-cl-ana.plotting
8975 (package
8976 (inherit sbcl-cl-ana-boot0)
8977 (name "sbcl-cl-ana.plotting")
8978 (inputs
8979 `(("alexandria" ,sbcl-alexandria)
8980 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
8981 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
8982 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
8983 ("cl-ana.gnuplot-interface" ,sbcl-cl-ana.gnuplot-interface)
8984 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
8985 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
8986 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
8987 ("cl-ana.map" ,sbcl-cl-ana.map)
8988 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
8989 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
8990 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
8991 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
8992 ("external-program" ,sbcl-external-program)
8993 ("split-sequence" ,sbcl-split-sequence)))
8994 (arguments
8995 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
8996 ((#:asd-file _ "") "plotting/cl-ana.plotting.asd")
8997 ((#:asd-system-name _ #f) "cl-ana.plotting")))))
8998
8999 (define-public cl-ana.plotting
9000 (sbcl-package->cl-source-package sbcl-cl-ana.plotting))
9001
9002 (define-public sbcl-cl-ana.table-viewing
9003 (package
9004 (inherit sbcl-cl-ana-boot0)
9005 (name "sbcl-cl-ana.table-viewing")
9006 (inputs
9007 `(("alexandria" ,sbcl-alexandria)
9008 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9009 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9010 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9011 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9012 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9013 ("cl-ana.table" ,sbcl-cl-ana.table)))
9014 (arguments
9015 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9016 ((#:asd-file _ "") "table-viewing/cl-ana.table-viewing.asd")
9017 ((#:asd-system-name _ #f) "cl-ana.table-viewing")))))
9018
9019 (define-public cl-ana.table-viewing
9020 (sbcl-package->cl-source-package sbcl-cl-ana.table-viewing))
9021
9022 (define-public sbcl-cl-ana.serialization
9023 (package
9024 (inherit sbcl-cl-ana-boot0)
9025 (name "sbcl-cl-ana.serialization")
9026 (inputs
9027 `(("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
9028 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
9029 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9030 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9031 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
9032 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9033 ("cl-ana.typespec" ,sbcl-cl-ana.typespec)))
9034 (arguments
9035 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9036 ((#:asd-file _ "") "serialization/cl-ana.serialization.asd")
9037 ((#:asd-system-name _ #f) "cl-ana.serialization")))))
9038
9039 (define-public cl-ana.serialization
9040 (sbcl-package->cl-source-package sbcl-cl-ana.serialization))
9041
9042 (define-public sbcl-cl-ana.makeres
9043 (package
9044 (inherit sbcl-cl-ana-boot0)
9045 (name "sbcl-cl-ana.makeres")
9046 (inputs
9047 `(("alexandria" ,sbcl-alexandria)
9048 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
9049 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9050 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9051 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9052 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9053 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
9054 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9055 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9056 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9057 ("cl-ana.map" ,sbcl-cl-ana.map)
9058 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
9059 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9060 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9061 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9062 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
9063 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9064 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
9065 ("cl-ana.table" ,sbcl-cl-ana.table)
9066 ("external-program" ,sbcl-external-program)))
9067 (native-inputs
9068 `(("cl-fad" ,sbcl-cl-fad)))
9069 (arguments
9070 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9071 ((#:asd-file _ "") "makeres/cl-ana.makeres.asd")
9072 ((#:asd-system-name _ #f) "cl-ana.makeres")))))
9073
9074 (define-public cl-ana.makeres
9075 (sbcl-package->cl-source-package sbcl-cl-ana.makeres))
9076
9077 (define-public sbcl-cl-ana.makeres-macro
9078 (package
9079 (inherit sbcl-cl-ana-boot0)
9080 (name "sbcl-cl-ana.makeres-macro")
9081 (inputs
9082 `(("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9083 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9084 (arguments
9085 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9086 ((#:asd-file _ "") "makeres-macro/cl-ana.makeres-macro.asd")
9087 ((#:asd-system-name _ #f) "cl-ana.makeres-macro")))))
9088
9089 (define-public cl-ana.makeres-macro
9090 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-macro))
9091
9092 (define-public sbcl-cl-ana.makeres-block
9093 (package
9094 (inherit sbcl-cl-ana-boot0)
9095 (name "sbcl-cl-ana.makeres-block")
9096 (inputs
9097 `(("alexandria" ,sbcl-alexandria)
9098 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9099 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9100 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9101 (arguments
9102 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9103 ((#:asd-file _ "") "makeres-block/cl-ana.makeres-block.asd")
9104 ((#:asd-system-name _ #f) "cl-ana.makeres-block")))))
9105
9106 (define-public cl-ana.makeres-block
9107 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-block))
9108
9109 (define-public sbcl-cl-ana.makeres-progress
9110 (package
9111 (inherit sbcl-cl-ana-boot0)
9112 (name "sbcl-cl-ana.makeres-progress")
9113 (inputs
9114 `(("alexandria" ,sbcl-alexandria)
9115 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9116 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9117 (arguments
9118 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9119 ((#:asd-file _ "") "makeres-progress/cl-ana.makeres-progress.asd")
9120 ((#:asd-system-name _ #f) "cl-ana.makeres-progress")))))
9121
9122 (define-public cl-ana.makeres-progress
9123 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-progress))
9124
9125 (define-public sbcl-cl-ana.makeres-table
9126 (package
9127 (inherit sbcl-cl-ana-boot0)
9128 (name "sbcl-cl-ana.makeres-table")
9129 (inputs
9130 `(("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9131 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9132 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9133 ("cl-ana.hdf-utils" ,sbcl-cl-ana.hdf-utils)
9134 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9135 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9136 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9137 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9138 ("cl-ana.memoization" ,sbcl-cl-ana.memoization)
9139 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9140 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9141 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9142 ("cl-ana.table" ,sbcl-cl-ana.table)))
9143 (native-inputs
9144 `(("cl-fad" ,sbcl-cl-fad)))
9145 (arguments
9146 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9147 ((#:asd-file _ "") "makeres-table/cl-ana.makeres-table.asd")
9148 ((#:asd-system-name _ #f) "cl-ana.makeres-table")))))
9149
9150 (define-public cl-ana.makeres-table
9151 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-table))
9152
9153 (define-public sbcl-cl-ana.makeres-graphviz
9154 (package
9155 (inherit sbcl-cl-ana-boot0)
9156 (name "sbcl-cl-ana.makeres-graphviz")
9157 (inputs
9158 `(("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9159 ("external-program" ,sbcl-external-program)))
9160 (arguments
9161 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9162 ((#:asd-file _ "") "makeres-graphviz/cl-ana.makeres-graphviz.asd")
9163 ((#:asd-system-name _ #f) "cl-ana.makeres-graphviz")))))
9164
9165 (define-public cl-ana.makeres-graphviz
9166 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-graphviz))
9167
9168 (define-public sbcl-cl-ana.makeres-branch
9169 (package
9170 (inherit sbcl-cl-ana-boot0)
9171 (name "sbcl-cl-ana.makeres-branch")
9172 (inputs
9173 `(("alexandria" ,sbcl-alexandria)
9174 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9175 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9176 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9177 ("cl-ana.map" ,sbcl-cl-ana.map)
9178 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)))
9179 (arguments
9180 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9181 ((#:asd-file _ "") "makeres-branch/cl-ana.makeres-branch.asd")
9182 ((#:asd-system-name _ #f) "cl-ana.makeres-branch")))))
9183
9184 (define-public cl-ana.makeres-branch
9185 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-branch))
9186
9187 (define-public sbcl-cl-ana.makeres-utils
9188 (package
9189 (inherit sbcl-cl-ana-boot0)
9190 (name "sbcl-cl-ana.makeres-utils")
9191 (inputs
9192 `(("alexandria" ,sbcl-alexandria)
9193 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9194 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9195 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9196 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9197 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9198 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9199 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9200 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9201 ("cl-ana.map" ,sbcl-cl-ana.map)
9202 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9203 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9204 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9205 ("cl-ana.string-utils" ,sbcl-cl-ana.string-utils)
9206 ("cl-ana.symbol-utils" ,sbcl-cl-ana.symbol-utils)
9207 ("cl-ana.table" ,sbcl-cl-ana.table)))
9208 (native-inputs
9209 `(("cl-fad" ,sbcl-cl-fad)))
9210 (arguments
9211 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9212 ((#:asd-file _ "") "makeres-utils/cl-ana.makeres-utils.asd")
9213 ((#:asd-system-name _ #f) "cl-ana.makeres-utils")))))
9214
9215 (define-public cl-ana.makeres-utils
9216 (sbcl-package->cl-source-package sbcl-cl-ana.makeres-utils))
9217
9218 (define-public sbcl-cl-ana.statistical-learning
9219 (package
9220 (inherit sbcl-cl-ana-boot0)
9221 (name "sbcl-cl-ana.statistical-learning")
9222 (inputs
9223 `(("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9224 ("cl-ana.functional-utils" ,sbcl-cl-ana.functional-utils)
9225 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9226 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9227 ("cl-ana.list-utils" ,sbcl-cl-ana.list-utils)
9228 ("cl-ana.macro-utils" ,sbcl-cl-ana.macro-utils)
9229 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9230 ("cl-ana.map" ,sbcl-cl-ana.map)
9231 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)))
9232 (native-inputs
9233 `(("cl-fad" ,sbcl-cl-fad)))
9234 (arguments
9235 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9236 ((#:asd-file _ "")
9237 "statistical-learning/cl-ana.statistical-learning.asd")
9238 ((#:asd-system-name _ #f) "cl-ana.statistical-learning")))))
9239
9240 (define-public cl-ana.statistical-learning
9241 (sbcl-package->cl-source-package sbcl-cl-ana.statistical-learning))
9242
9243 (define-public sbcl-cl-ana
9244 (package
9245 (inherit sbcl-cl-ana-boot0)
9246 (name "sbcl-cl-ana")
9247 (inputs
9248 `(("cl-ana.binary-tree" ,sbcl-cl-ana.binary-tree)
9249 ("cl-ana.calculus" ,sbcl-cl-ana.calculus)
9250 ("cl-ana.clos-utils" ,sbcl-cl-ana.clos-utils)
9251 ("cl-ana.csv-table" ,sbcl-cl-ana.csv-table)
9252 ("cl-ana.error-propogation" ,sbcl-cl-ana.error-propogation)
9253 ("cl-ana.file-utils" ,sbcl-cl-ana.file-utils)
9254 ("cl-ana.fitting" ,sbcl-cl-ana.fitting)
9255 ("cl-ana.generic-math" ,sbcl-cl-ana.generic-math)
9256 ("cl-ana.hash-table-utils" ,sbcl-cl-ana.hash-table-utils)
9257 ("cl-ana.hdf-table" ,sbcl-cl-ana.hdf-table)
9258 ("cl-ana.histogram" ,sbcl-cl-ana.histogram)
9259 ("cl-ana.int-char" ,sbcl-cl-ana.int-char)
9260 ("cl-ana.linear-algebra" ,sbcl-cl-ana.linear-algebra)
9261 ("cl-ana.lorentz" ,sbcl-cl-ana.lorentz)
9262 ("cl-ana.map" ,sbcl-cl-ana.map)
9263 ("cl-ana.makeres" ,sbcl-cl-ana.makeres)
9264 ("cl-ana.makeres-block" ,sbcl-cl-ana.makeres-block)
9265 ("cl-ana.makeres-branch" ,sbcl-cl-ana.makeres-branch)
9266 ("cl-ana.makeres-graphviz" ,sbcl-cl-ana.makeres-graphviz)
9267 ("cl-ana.makeres-macro" ,sbcl-cl-ana.makeres-macro)
9268 ("cl-ana.makeres-progress" ,sbcl-cl-ana.makeres-progress)
9269 ("cl-ana.makeres-table" ,sbcl-cl-ana.makeres-table)
9270 ("cl-ana.makeres-utils" ,sbcl-cl-ana.makeres-utils)
9271 ("cl-ana.math-functions" ,sbcl-cl-ana.math-functions)
9272 ("cl-ana.ntuple-table" ,sbcl-cl-ana.ntuple-table)
9273 ("cl-ana.package-utils" ,sbcl-cl-ana.package-utils)
9274 ("cl-ana.pathname-utils" ,sbcl-cl-ana.pathname-utils)
9275 ("cl-ana.plotting" ,sbcl-cl-ana.plotting)
9276 ("cl-ana.quantity" ,sbcl-cl-ana.quantity)
9277 ("cl-ana.reusable-table" ,sbcl-cl-ana.reusable-table)
9278 ("cl-ana.serialization" ,sbcl-cl-ana.serialization)
9279 ("cl-ana.statistics" ,sbcl-cl-ana.statistics)
9280 ("cl-ana.statistical-learning" ,sbcl-cl-ana.statistical-learning)
9281 ("cl-ana.table" ,sbcl-cl-ana.table)
9282 ("cl-ana.table-utils" ,sbcl-cl-ana.table-utils)
9283 ("cl-ana.table-viewing" ,sbcl-cl-ana.table-viewing)
9284 ("cl-ana.tensor" ,sbcl-cl-ana.tensor)
9285 ("libffi" ,libffi)))
9286 (native-inputs
9287 `(("cl-fad" ,sbcl-cl-fad)))
9288 (arguments
9289 (substitute-keyword-arguments (package-arguments sbcl-cl-ana-boot0)
9290 ((#:asd-file _ "") "cl-ana.asd")
9291 ((#:asd-system-name _ #f) "cl-ana")))))
9292
9293 (define-public cl-ana
9294 (sbcl-package->cl-source-package sbcl-cl-ana))
9295
9296 (define-public sbcl-archive
9297 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
9298 (revision "1"))
9299 (package
9300 (name "sbcl-archive")
9301 (version (git-version "0.9" revision commit))
9302 (source (origin
9303 (method git-fetch)
9304 (uri (git-reference
9305 (url "https://github.com/sharplispers/archive")
9306 (commit commit)))
9307 (file-name (git-file-name name version))
9308 (sha256
9309 (base32
9310 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
9311 (build-system asdf-build-system/sbcl)
9312 (inputs
9313 `(("cl-fad" ,sbcl-cl-fad)
9314 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9315 (synopsis "Common Lisp library for tar and cpio archives")
9316 (description
9317 "This is a Common Lisp library to read and write disk-based file
9318 archives such as those generated by the tar and cpio programs on Unix.")
9319 (home-page "https://github.com/sharplispers/archive")
9320 (license license:bsd-3))))
9321
9322 (define-public cl-archive
9323 (sbcl-package->cl-source-package sbcl-archive))
9324
9325 (define-public ecl-archive
9326 (sbcl-package->ecl-package sbcl-archive))
9327
9328 (define-public sbcl-misc-extensions
9329 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
9330 (revision "1"))
9331 (package
9332 (name "sbcl-misc-extensions")
9333 (version (git-version "3.3" revision commit))
9334 (source
9335 (origin
9336 (method git-fetch)
9337 (uri (git-reference
9338 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
9339 (commit commit)))
9340 (file-name (git-file-name name version))
9341 (sha256
9342 (base32
9343 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
9344 (build-system asdf-build-system/sbcl)
9345 (synopsis "Collection of small macros and extensions for Common Lisp")
9346 (description
9347 "This project is intended as a catchall for small, general-purpose
9348 extensions to Common Lisp. It contains:
9349
9350 @itemize
9351 @item @code{new-let}, a macro that combines and generalizes @code{let},
9352 @code{let*} and @code{multiple-value-bind},
9353 @item @code{gmap}, an iteration macro that generalizes @code{map}.
9354 @end itemize\n")
9355 (home-page "https://common-lisp.net/project/misc-extensions/")
9356 (license license:public-domain))))
9357
9358 (define-public cl-misc-extensions
9359 (sbcl-package->cl-source-package sbcl-misc-extensions))
9360
9361 (define-public ecl-misc-extensions
9362 (sbcl-package->ecl-package sbcl-misc-extensions))
9363
9364 (define-public sbcl-mt19937
9365 (package
9366 (name "sbcl-mt19937")
9367 (version "1.1")
9368 (source
9369 (origin
9370 (method url-fetch)
9371 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
9372 "mt19937-latest.tar.gz"))
9373 (sha256
9374 (base32
9375 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
9376 (build-system asdf-build-system/sbcl)
9377 (synopsis "Mersenne Twister pseudo-random number generator")
9378 (description
9379 "MT19937 is a portable Mersenne Twister pseudo-random number generator
9380 for Common Lisp.")
9381 (home-page "https://www.cliki.net/mt19937")
9382 (license license:public-domain)))
9383
9384 (define-public cl-mt19937
9385 (sbcl-package->cl-source-package sbcl-mt19937))
9386
9387 (define-public ecl-mt19937
9388 (sbcl-package->ecl-package sbcl-mt19937))
9389
9390 (define-public sbcl-fset
9391 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
9392 (revision "1"))
9393 (package
9394 (name "sbcl-fset")
9395 (version (git-version "1.3.2" revision commit))
9396 (source
9397 (origin
9398 (method git-fetch)
9399 (uri (git-reference
9400 (url "https://github.com/slburson/fset")
9401 (commit commit)))
9402 (file-name (git-file-name name version))
9403 (sha256
9404 (base32
9405 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
9406 (snippet '(begin
9407 ;; Remove obsolete copy of system definition.
9408 (delete-file "Code/fset.asd")
9409 #t))))
9410 (build-system asdf-build-system/sbcl)
9411 (inputs
9412 `(("misc-extensions" ,sbcl-misc-extensions)
9413 ("mt19937" ,sbcl-mt19937)
9414 ("named-readtables" ,sbcl-named-readtables)))
9415 (synopsis "Functional set-theoretic collections library")
9416 (description
9417 "FSet is a functional set-theoretic collections library for Common Lisp.
9418 Functional means that all update operations return a new collection rather than
9419 modifying an existing one in place. Set-theoretic means that collections may
9420 be nested arbitrarily with no additional programmer effort; for instance, sets
9421 may contain sets, maps may be keyed by sets, etc.")
9422 (home-page "https://common-lisp.net/project/fset/Site/index.html")
9423 (license license:llgpl))))
9424
9425 (define-public cl-fset
9426 (sbcl-package->cl-source-package sbcl-fset))
9427
9428 (define-public sbcl-cl-cont
9429 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
9430 (revision "1"))
9431 (package
9432 (name "sbcl-cl-cont")
9433 (version (git-version "0.3.8" revision commit))
9434 (source
9435 (origin
9436 (method git-fetch)
9437 (uri (git-reference
9438 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
9439 (commit commit)))
9440 (file-name (git-file-name name version))
9441 (sha256
9442 (base32
9443 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
9444 (build-system asdf-build-system/sbcl)
9445 (inputs
9446 `(("alexandria" ,sbcl-alexandria)
9447 ("closer-mop" ,sbcl-closer-mop)))
9448 (native-inputs
9449 `(("rt" ,sbcl-rt)))
9450 (synopsis "Delimited continuations for Common Lisp")
9451 (description
9452 "This is a library that implements delimited continuations by
9453 transforming Common Lisp code to continuation passing style.")
9454 (home-page "https://common-lisp.net/project/cl-cont/")
9455 (license license:llgpl))))
9456
9457 (define-public cl-cont
9458 (sbcl-package->cl-source-package sbcl-cl-cont))
9459
9460 (define-public ecl-cl-cont
9461 (sbcl-package->ecl-package sbcl-cl-cont))
9462
9463 (define-public sbcl-cl-coroutine
9464 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
9465 (revision "1"))
9466 (package
9467 (name "sbcl-cl-coroutine")
9468 (version (git-version "0.1" revision commit))
9469 (source
9470 (origin
9471 (method git-fetch)
9472 (uri (git-reference
9473 (url "https://github.com/takagi/cl-coroutine")
9474 (commit commit)))
9475 (file-name (git-file-name name version))
9476 (sha256
9477 (base32
9478 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
9479 (build-system asdf-build-system/sbcl)
9480 (inputs
9481 `(("alexandria" ,sbcl-alexandria)
9482 ("cl-cont" ,sbcl-cl-cont)))
9483 (native-inputs
9484 `(("prove" ,sbcl-prove)))
9485 (arguments
9486 `(;; TODO: Fix the tests. They fail with:
9487 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
9488 #:tests? #f
9489 #:phases
9490 (modify-phases %standard-phases
9491 (add-after 'unpack 'fix-tests
9492 (lambda _
9493 (substitute* "cl-coroutine-test.asd"
9494 (("cl-test-more")
9495 "prove"))
9496 #t)))))
9497 (synopsis "Coroutine library for Common Lisp")
9498 (description
9499 "This is a coroutine library for Common Lisp implemented using the
9500 continuations of the @code{cl-cont} library.")
9501 (home-page "https://github.com/takagi/cl-coroutine")
9502 (license license:llgpl))))
9503
9504 (define-public cl-coroutine
9505 (sbcl-package->cl-source-package sbcl-cl-coroutine))
9506
9507 (define-public ecl-cl-coroutine
9508 (sbcl-package->ecl-package sbcl-cl-coroutine))
9509
9510 (define-public sbcl-vom
9511 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
9512 (revision "1"))
9513 (package
9514 (name "sbcl-vom")
9515 (version (git-version "0.1.4" revision commit))
9516 (source
9517 (origin
9518 (method git-fetch)
9519 (uri (git-reference
9520 (url "https://github.com/orthecreedence/vom")
9521 (commit commit)))
9522 (file-name (git-file-name name version))
9523 (sha256
9524 (base32
9525 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
9526 (build-system asdf-build-system/sbcl)
9527 (synopsis "Tiny logging utility for Common Lisp")
9528 (description
9529 "Vom is a logging library for Common Lisp. It's goal is to be useful
9530 and small. It does not provide a lot of features as other loggers do, but
9531 has a small codebase that's easy to understand and use.")
9532 (home-page "https://github.com/orthecreedence/vom")
9533 (license license:expat))))
9534
9535 (define-public cl-vom
9536 (sbcl-package->cl-source-package sbcl-vom))
9537
9538 (define-public ecl-vom
9539 (sbcl-package->ecl-package sbcl-vom))
9540
9541 (define-public sbcl-cl-libuv
9542 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
9543 (revision "1"))
9544 (package
9545 (name "sbcl-cl-libuv")
9546 (version (git-version "0.1.6" revision commit))
9547 (source
9548 (origin
9549 (method git-fetch)
9550 (uri (git-reference
9551 (url "https://github.com/orthecreedence/cl-libuv")
9552 (commit commit)))
9553 (file-name (git-file-name name version))
9554 (sha256
9555 (base32
9556 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
9557 (build-system asdf-build-system/sbcl)
9558 (inputs
9559 `(("alexandria" ,sbcl-alexandria)
9560 ("cffi" ,sbcl-cffi)
9561 ("cffi-grovel" ,sbcl-cffi-grovel)
9562 ("libuv" ,libuv)))
9563 (arguments
9564 `(#:phases
9565 (modify-phases %standard-phases
9566 (add-after 'unpack 'fix-paths
9567 (lambda* (#:key inputs #:allow-other-keys)
9568 (substitute* "lib.lisp"
9569 (("/usr/lib/libuv.so")
9570 (string-append (assoc-ref inputs "libuv")
9571 "/lib/libuv.so")))
9572 #t))
9573 (add-after 'fix-paths 'fix-system-definition
9574 (lambda _
9575 (substitute* "cl-libuv.asd"
9576 (("#:cffi #:alexandria")
9577 "#:cffi #:cffi-grovel #:alexandria"))
9578 #t)))))
9579 (synopsis "Common Lisp bindings to libuv")
9580 (description
9581 "This library provides low-level libuv bindings for Common Lisp.")
9582 (home-page "https://github.com/orthecreedence/cl-libuv")
9583 (license license:expat))))
9584
9585 (define-public cl-libuv
9586 (sbcl-package->cl-source-package sbcl-cl-libuv))
9587
9588 (define-public ecl-cl-libuv
9589 (sbcl-package->ecl-package sbcl-cl-libuv))
9590
9591 (define-public sbcl-cl-async-base
9592 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
9593 (revision "1"))
9594 (package
9595 (name "sbcl-cl-async-base")
9596 (version (git-version "0.6.1" revision commit))
9597 (source
9598 (origin
9599 (method git-fetch)
9600 (uri (git-reference
9601 (url "https://github.com/orthecreedence/cl-async")
9602 (commit commit)))
9603 (file-name (git-file-name name version))
9604 (sha256
9605 (base32
9606 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
9607 (build-system asdf-build-system/sbcl)
9608 (inputs
9609 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9610 ("cffi" ,sbcl-cffi)
9611 ("cl-libuv" ,sbcl-cl-libuv)))
9612 (arguments
9613 `(#:asd-file "cl-async.asd"))
9614 (synopsis "Base system for cl-async")
9615 (description
9616 "Cl-async is a library for general purpose, non-blocking programming in
9617 Common Lisp. It uses the libuv library as backend.")
9618 (home-page "https://orthecreedence.github.io/cl-async/")
9619 (license license:expat))))
9620
9621 (define-public cl-async-base
9622 (sbcl-package->cl-source-package sbcl-cl-async-base))
9623
9624 (define-public ecl-cl-async-base
9625 (sbcl-package->ecl-package sbcl-cl-async-base))
9626
9627 (define-public sbcl-cl-async-util
9628 (package
9629 (inherit sbcl-cl-async-base)
9630 (name "sbcl-cl-async-util")
9631 (inputs
9632 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9633 ("cffi" ,sbcl-cffi)
9634 ("cl-async-base" ,sbcl-cl-async-base)
9635 ("cl-libuv" ,sbcl-cl-libuv)
9636 ("cl-ppcre" ,sbcl-cl-ppcre)
9637 ("fast-io" ,sbcl-fast-io)
9638 ("vom" ,sbcl-vom)))
9639 (synopsis "Internal utilities for cl-async")))
9640
9641 (define-public cl-async-util
9642 (sbcl-package->cl-source-package sbcl-cl-async-util))
9643
9644 (define-public ecl-cl-async-util
9645 (sbcl-package->ecl-package sbcl-cl-async-util))
9646
9647 (define-public sbcl-cl-async
9648 (package
9649 (inherit sbcl-cl-async-base)
9650 (name "sbcl-cl-async")
9651 (inputs
9652 `(("babel" ,sbcl-babel)
9653 ("cffi" ,sbcl-cffi)
9654 ("cl-async-base" ,sbcl-cl-async-base)
9655 ("cl-async-util" ,sbcl-cl-async-util)
9656 ("cl-libuv" ,sbcl-cl-libuv)
9657 ("cl-ppcre" ,sbcl-cl-ppcre)
9658 ("static-vectors" ,sbcl-static-vectors)
9659 ("trivial-features" ,sbcl-trivial-features)
9660 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
9661 (synopsis "Asynchronous operations for Common Lisp")))
9662
9663 (define-public cl-async
9664 (sbcl-package->cl-source-package sbcl-cl-async))
9665
9666 (define-public ecl-cl-async
9667 (sbcl-package->ecl-package sbcl-cl-async))
9668
9669 (define-public sbcl-cl-async-repl
9670 (package
9671 (inherit sbcl-cl-async-base)
9672 (name "sbcl-cl-async-repl")
9673 (inputs
9674 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9675 ("cl-async" ,sbcl-cl-async)))
9676 (arguments
9677 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9678 ((#:asd-file _ "") "cl-async-repl.asd")))
9679 (synopsis "REPL integration for cl-async")))
9680
9681 (define-public cl-async-repl
9682 (sbcl-package->cl-source-package sbcl-cl-async-repl))
9683
9684 (define-public ecl-cl-async-repl
9685 (sbcl-package->ecl-package sbcl-cl-async-repl))
9686
9687 (define-public sbcl-cl-async-ssl
9688 (package
9689 (inherit sbcl-cl-async-base)
9690 (name "sbcl-cl-async-ssl")
9691 (inputs
9692 `(("cffi" ,sbcl-cffi)
9693 ("cl-async" ,sbcl-cl-async)
9694 ("openssl" ,openssl)
9695 ("vom" ,sbcl-vom)))
9696 (arguments
9697 (substitute-keyword-arguments (package-arguments sbcl-cl-async-base)
9698 ((#:asd-file _ "") "cl-async-ssl.asd")
9699 ((#:phases phases '%standard-phases)
9700 `(modify-phases ,phases
9701 (add-after 'unpack 'fix-paths
9702 (lambda* (#:key inputs #:allow-other-keys)
9703 (substitute* "src/ssl/package.lisp"
9704 (("libcrypto\\.so")
9705 (string-append (assoc-ref inputs "openssl")
9706 "/lib/libcrypto.so"))
9707 (("libssl\\.so")
9708 (string-append (assoc-ref inputs "openssl")
9709 "/lib/libssl.so")))
9710 #t))))))
9711 (synopsis "SSL wrapper around cl-async socket implementation")))
9712
9713 (define-public cl-async-ssl
9714 (sbcl-package->cl-source-package sbcl-cl-async-ssl))
9715
9716 (define-public ecl-cl-async-ssl
9717 (sbcl-package->ecl-package sbcl-cl-async-ssl))
9718
9719 (define-public sbcl-blackbird
9720 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
9721 (revision "1"))
9722 (package
9723 (name "sbcl-blackbird")
9724 (version (git-version "0.5.2" revision commit))
9725 (source
9726 (origin
9727 (method git-fetch)
9728 (uri (git-reference
9729 (url "https://github.com/orthecreedence/blackbird")
9730 (commit commit)))
9731 (file-name (git-file-name name version))
9732 (sha256
9733 (base32
9734 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
9735 (build-system asdf-build-system/sbcl)
9736 (inputs
9737 `(("vom" ,sbcl-vom)))
9738 (native-inputs
9739 `(("cl-async" ,sbcl-cl-async)
9740 ("fiveam" ,sbcl-fiveam)))
9741 (synopsis "Promise implementation for Common Lisp")
9742 (description
9743 "This is a standalone promise implementation for Common Lisp. It is
9744 the successor to the now-deprecated cl-async-future project.")
9745 (home-page "https://orthecreedence.github.io/blackbird/")
9746 (license license:expat))))
9747
9748 (define-public cl-blackbird
9749 (sbcl-package->cl-source-package sbcl-blackbird))
9750
9751 (define-public ecl-blackbird
9752 (sbcl-package->ecl-package sbcl-blackbird))
9753
9754 (define-public sbcl-cl-async-future
9755 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
9756 (revision "1"))
9757 (package
9758 (name "sbcl-cl-async-future")
9759 (version (git-version "0.4.4.1" revision commit))
9760 (source
9761 (origin
9762 (method git-fetch)
9763 (uri (git-reference
9764 (url "https://github.com/orthecreedence/cl-async-future")
9765 (commit commit)))
9766 (file-name (git-file-name name version))
9767 (sha256
9768 (base32
9769 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
9770 (build-system asdf-build-system/sbcl)
9771 (inputs
9772 `(("blackbird" ,sbcl-blackbird)))
9773 (native-inputs
9774 `(("cl-async" ,sbcl-cl-async)
9775 ("eos" ,sbcl-eos)))
9776 (synopsis "Futures implementation for Common Lisp")
9777 (description
9778 "This is futures implementation for Common Lisp. It plugs in nicely
9779 to cl-async.")
9780 (home-page "https://orthecreedence.github.io/cl-async/future")
9781 (license license:expat))))
9782
9783 (define-public cl-async-future
9784 (sbcl-package->cl-source-package sbcl-cl-async-future))
9785
9786 (define-public ecl-cl-async-future
9787 (sbcl-package->ecl-package sbcl-cl-async-future))
9788
9789 (define-public sbcl-green-threads
9790 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
9791 (revision "1"))
9792 (package
9793 (name "sbcl-green-threads")
9794 (version (git-version "0.3" revision commit))
9795 (source
9796 (origin
9797 (method git-fetch)
9798 (uri (git-reference
9799 (url "https://github.com/thezerobit/green-threads")
9800 (commit commit)))
9801 (file-name (git-file-name name version))
9802 (sha256
9803 (base32
9804 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
9805 (build-system asdf-build-system/sbcl)
9806 (inputs
9807 `(("cl-async-future" ,sbcl-cl-async-future)
9808 ("cl-cont" ,sbcl-cl-cont)))
9809 (native-inputs
9810 `(("prove" ,sbcl-prove)))
9811 (arguments
9812 `(;; TODO: Fix the tests. They fail with:
9813 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
9814 #:tests? #f
9815 #:phases
9816 (modify-phases %standard-phases
9817 (add-after 'unpack 'fix-tests
9818 (lambda _
9819 (substitute* "green-threads-test.asd"
9820 (("cl-test-more")
9821 "prove"))
9822 #t)))))
9823 (synopsis "Cooperative multitasking library for Common Lisp")
9824 (description
9825 "This library allows for cooperative multitasking with help of cl-cont
9826 for continuations. It tries to mimic the API of bordeaux-threads as much as
9827 possible.")
9828 (home-page "https://github.com/thezerobit/green-threads")
9829 (license license:bsd-3))))
9830
9831 (define-public cl-green-threads
9832 (sbcl-package->cl-source-package sbcl-green-threads))
9833
9834 (define-public ecl-green-threads
9835 (sbcl-package->ecl-package sbcl-green-threads))
9836
9837 (define-public sbcl-cl-base32
9838 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
9839 (revision "1"))
9840 (package
9841 (name "sbcl-cl-base32")
9842 (version (git-version "0.1" revision commit))
9843 (source
9844 (origin
9845 (method git-fetch)
9846 (uri (git-reference
9847 (url "https://github.com/hargettp/cl-base32")
9848 (commit commit)))
9849 (file-name (git-file-name name version))
9850 (sha256
9851 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
9852 (build-system asdf-build-system/sbcl)
9853 (native-inputs
9854 `(("lisp-unit" ,sbcl-lisp-unit)))
9855 (synopsis "Common Lisp library for base32 encoding and decoding")
9856 (description
9857 "This package provides functions for base32 encoding and decoding as
9858 defined in RFC4648.")
9859 (home-page "https://github.com/hargettp/cl-base32")
9860 (license license:expat))))
9861
9862 (define-public cl-base32
9863 (sbcl-package->cl-source-package sbcl-cl-base32))
9864
9865 (define-public ecl-cl-base32
9866 (sbcl-package->ecl-package sbcl-cl-base32))
9867
9868 (define-public sbcl-cl-z85
9869 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
9870 (revision "1"))
9871 (package
9872 (name "sbcl-cl-z85")
9873 (version (git-version "1.0" revision commit))
9874 (source
9875 (origin
9876 (method git-fetch)
9877 (uri (git-reference
9878 (url "https://github.com/glv2/cl-z85")
9879 (commit commit)))
9880 (file-name (git-file-name name version))
9881 (sha256
9882 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
9883 (build-system asdf-build-system/sbcl)
9884 (native-inputs
9885 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
9886 ("fiveam" ,sbcl-fiveam)))
9887 (synopsis "Common Lisp library for Z85 encoding and decoding")
9888 (description
9889 "This package provides functions to encode or decode byte vectors or
9890 byte streams using the Z85 format, which is a base-85 encoding used by
9891 ZeroMQ.")
9892 (home-page "https://github.com/glv2/cl-z85")
9893 (license license:gpl3+))))
9894
9895 (define-public cl-z85
9896 (sbcl-package->cl-source-package sbcl-cl-z85))
9897
9898 (define-public ecl-cl-z85
9899 (sbcl-package->ecl-package sbcl-cl-z85))
9900
9901 (define-public sbcl-ltk
9902 (package
9903 (name "sbcl-ltk")
9904 (version "0.992")
9905 (source
9906 (origin
9907 (method git-fetch)
9908 (uri (git-reference
9909 (url "https://github.com/herth/ltk")
9910 (commit version)))
9911 (file-name (git-file-name name version))
9912 (sha256
9913 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
9914 (build-system asdf-build-system/sbcl)
9915 (inputs
9916 `(("imagemagick" ,imagemagick)
9917 ("tk" ,tk)))
9918 (arguments
9919 `(#:asd-file "ltk/ltk.asd"
9920 #:tests? #f
9921 #:phases (modify-phases %standard-phases
9922 (add-after 'unpack 'fix-paths
9923 (lambda* (#:key inputs #:allow-other-keys)
9924 (substitute* "ltk/ltk.lisp"
9925 (("#-freebsd \"wish\"")
9926 (string-append "#-freebsd \""
9927 (assoc-ref inputs "tk")
9928 "/bin/wish\""))
9929 (("do-execute \"convert\"")
9930 (string-append "do-execute \""
9931 (assoc-ref inputs "imagemagick")
9932 "/bin/convert\"")))
9933 #t)))))
9934 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9935 (description
9936 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
9937 in pure Common Lisp and does not require any Tk knowledge for its usage.")
9938 (home-page "http://www.peter-herth.de/ltk/")
9939 (license license:llgpl)))
9940
9941 (define-public cl-ltk
9942 (sbcl-package->cl-source-package sbcl-ltk))
9943
9944 (define-public ecl-ltk
9945 (sbcl-package->ecl-package sbcl-ltk))
9946
9947 (define-public sbcl-ltk-mw
9948 (package
9949 (inherit sbcl-ltk)
9950 (name "sbcl-ltk-mw")
9951 (inputs
9952 `(("ltk" ,sbcl-ltk)))
9953 (arguments
9954 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9955 ((#:asd-file _) "ltk/ltk-mw.asd")
9956 ((#:phases _) '%standard-phases)))
9957 (synopsis "Extra widgets for LTK")
9958 (description
9959 "This is a collection of higher-level widgets built on top of LTK.")))
9960
9961 (define-public cl-ltk-mw
9962 (sbcl-package->cl-source-package sbcl-ltk-mw))
9963
9964 (define-public ecl-ltk-mw
9965 (sbcl-package->ecl-package sbcl-ltk-mw))
9966
9967 (define-public sbcl-ltk-remote
9968 (package
9969 (inherit sbcl-ltk)
9970 (name "sbcl-ltk-remote")
9971 (inputs
9972 `(("ltk" ,sbcl-ltk)))
9973 (arguments
9974 (substitute-keyword-arguments (package-arguments sbcl-ltk)
9975 ((#:asd-file _) "ltk/ltk-remote.asd")
9976 ((#:phases _) '%standard-phases)))
9977 (synopsis "Remote GUI support for LTK")
9978 (description
9979 "This LTK extension allows the GUI to be displayed on a computer different
9980 from the one running the Lisp program by using a TCP connection.")))
9981
9982 (define-public cl-ltk-remote
9983 (sbcl-package->cl-source-package sbcl-ltk-remote))
9984
9985 (define-public sbcl-cl-lex
9986 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
9987 (revision "1"))
9988 (package
9989 (name "sbcl-cl-lex")
9990 (version (git-version "1.1.3" revision commit))
9991 (source
9992 (origin
9993 (method git-fetch)
9994 (uri (git-reference
9995 (url "https://github.com/djr7C4/cl-lex")
9996 (commit commit)))
9997 (file-name (git-file-name name version))
9998 (sha256
9999 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
10000 (build-system asdf-build-system/sbcl)
10001 (inputs
10002 `(("cl-ppcre" ,sbcl-cl-ppcre)))
10003 (synopsis "Common Lisp macros for generating lexical analyzers")
10004 (description
10005 "This is a Common Lisp library providing a set of macros for generating
10006 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
10007 be used with @code{cl-yacc}.")
10008 (home-page "https://github.com/djr7C4/cl-lex")
10009 (license license:gpl3))))
10010
10011 (define-public cl-lex
10012 (sbcl-package->cl-source-package sbcl-cl-lex))
10013
10014 (define-public ecl-cl-lex
10015 (sbcl-package->ecl-package sbcl-cl-lex))
10016
10017 (define-public sbcl-clunit2
10018 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
10019 (revision "1"))
10020 (package
10021 (name "sbcl-clunit2")
10022 (version (git-version "0.2.4" revision commit))
10023 (source
10024 (origin
10025 (method git-fetch)
10026 (uri (git-reference
10027 (url "https://notabug.org/cage/clunit2.git")
10028 (commit commit)))
10029 (file-name (git-file-name name version))
10030 (sha256
10031 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
10032 (build-system asdf-build-system/sbcl)
10033 (synopsis "Unit testing framework for Common Lisp")
10034 (description
10035 "CLUnit is a Common Lisp unit testing framework. It is designed to be
10036 easy to use so that you can quickly start testing.")
10037 (home-page "https://notabug.org/cage/clunit2")
10038 (license license:expat))))
10039
10040 (define-public cl-clunit2
10041 (sbcl-package->cl-source-package sbcl-clunit2))
10042
10043 (define-public ecl-clunit2
10044 (sbcl-package->ecl-package sbcl-clunit2))
10045
10046 (define-public sbcl-cl-colors2
10047 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
10048 (revision "1"))
10049 (package
10050 (name "sbcl-cl-colors2")
10051 (version (git-version "0.2.1" revision commit))
10052 (source
10053 (origin
10054 (method git-fetch)
10055 (uri (git-reference
10056 (url "https://notabug.org/cage/cl-colors2.git")
10057 (commit commit)))
10058 (file-name (git-file-name name version))
10059 (sha256
10060 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
10061 (build-system asdf-build-system/sbcl)
10062 (native-inputs
10063 `(("clunit2" ,sbcl-clunit2)))
10064 (inputs
10065 `(("alexandria" ,sbcl-alexandria)
10066 ("cl-ppcre" ,sbcl-cl-ppcre)))
10067 (synopsis "Color library for Common Lisp")
10068 (description
10069 "This is a very simple color library for Common Lisp, providing:
10070
10071 @itemize
10072 @item Types for representing colors in HSV and RGB spaces.
10073 @item Simple conversion functions between the above types (and also
10074 hexadecimal representation for RGB).
10075 @item Some predefined colors (currently X11 color names -- of course
10076 the library does not depend on X11).
10077 @end itemize\n")
10078 (home-page "https://notabug.org/cage/cl-colors2")
10079 (license license:boost1.0))))
10080
10081 (define-public cl-colors2
10082 (sbcl-package->cl-source-package sbcl-cl-colors2))
10083
10084 (define-public ecl-cl-colors2
10085 (sbcl-package->ecl-package sbcl-cl-colors2))
10086
10087 (define-public sbcl-cl-jpeg
10088 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
10089 (revision "1"))
10090 (package
10091 (name "sbcl-cl-jpeg")
10092 (version (git-version "2.8" revision commit))
10093 (source
10094 (origin
10095 (method git-fetch)
10096 (uri (git-reference
10097 (url "https://github.com/sharplispers/cl-jpeg")
10098 (commit commit)))
10099 (file-name (git-file-name name version))
10100 (sha256
10101 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
10102 (build-system asdf-build-system/sbcl)
10103 (synopsis "JPEG image library for Common Lisp")
10104 (description
10105 "This is a baseline JPEG codec written in Common Lisp. It can be used
10106 for reading and writing JPEG image files.")
10107 (home-page "https://github.com/sharplispers/cl-jpeg")
10108 (license license:bsd-3))))
10109
10110 (define-public cl-jpeg
10111 (sbcl-package->cl-source-package sbcl-cl-jpeg))
10112
10113 (define-public ecl-cl-jpeg
10114 (sbcl-package->ecl-package sbcl-cl-jpeg))
10115
10116 (define-public sbcl-nodgui
10117 (let ((commit "bc59ed9b787dfc9e68ae3bd7f7e8507c5c619212")
10118 (revision "1"))
10119 (package
10120 (name "sbcl-nodgui")
10121 (version (git-version "0.0.5" revision commit))
10122 (source
10123 (origin
10124 (method git-fetch)
10125 (uri (git-reference
10126 (url "https://notabug.org/cage/nodgui.git")
10127 (commit commit)))
10128 (file-name (git-file-name name version))
10129 (sha256
10130 (base32 "0xx0dk54d882i598ydnwmy7mnfk0b7vib3ddsgpqxhjck1rwq8l8"))))
10131 (build-system asdf-build-system/sbcl)
10132 (inputs
10133 `(("alexandria" ,sbcl-alexandria)
10134 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10135 ("cl-colors2" ,sbcl-cl-colors2)
10136 ("cl-jpeg" ,sbcl-cl-jpeg)
10137 ("cl-lex" ,sbcl-cl-lex)
10138 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
10139 ("cl-unicode" ,sbcl-cl-unicode)
10140 ("cl-yacc" ,sbcl-cl-yacc)
10141 ("clunit2" ,sbcl-clunit2)
10142 ("named-readtables" ,sbcl-named-readtables)
10143 ("parse-number" ,sbcl-parse-number)
10144 ("tk" ,tk)))
10145 (arguments
10146 `(#:phases (modify-phases %standard-phases
10147 (add-after 'unpack 'fix-paths
10148 (lambda* (#:key inputs #:allow-other-keys)
10149 (substitute* "src/wish-communication.lisp"
10150 (("#-freebsd \"wish\"")
10151 (string-append "#-freebsd \""
10152 (assoc-ref inputs "tk")
10153 "/bin/wish\"")))
10154 #t)))))
10155 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
10156 (description
10157 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
10158 toolkit. It also provides a few additional widgets more than the standard Tk
10159 ones.")
10160 (home-page "https://www.autistici.org/interzona/nodgui.html")
10161 (license license:llgpl))))
10162
10163 (define-public cl-nodgui
10164 (sbcl-package->cl-source-package sbcl-nodgui))
10165
10166 (define-public ecl-nodgui
10167 (sbcl-package->ecl-package sbcl-nodgui))
10168
10169 (define-public sbcl-salza2
10170 (package
10171 (name "sbcl-salza2")
10172 (version "2.0.9")
10173 (source
10174 (origin
10175 (method git-fetch)
10176 (uri (git-reference
10177 (url "https://github.com/xach/salza2")
10178 (commit (string-append "release-" version))))
10179 (file-name (git-file-name name version))
10180 (sha256
10181 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
10182 (build-system asdf-build-system/sbcl)
10183 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
10184 (description
10185 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
10186 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
10187 respectively.")
10188 (home-page "https://www.xach.com/lisp/salza2/")
10189 (license license:bsd-2)))
10190
10191 (define-public cl-salza2
10192 (sbcl-package->cl-source-package sbcl-salza2))
10193
10194 (define-public ecl-salza2
10195 (sbcl-package->ecl-package sbcl-salza2))
10196
10197 (define-public sbcl-png-read
10198 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
10199 (revision "1"))
10200 (package
10201 (name "sbcl-png-read")
10202 (version (git-version "0.3.1" revision commit))
10203 (source
10204 (origin
10205 (method git-fetch)
10206 (uri (git-reference
10207 (url "https://github.com/Ramarren/png-read")
10208 (commit commit)))
10209 (file-name (git-file-name name version))
10210 (sha256
10211 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
10212 (build-system asdf-build-system/sbcl)
10213 (inputs
10214 `(("babel" ,sbcl-babel)
10215 ("chipz" ,sbcl-chipz)
10216 ("iterate" ,sbcl-iterate)))
10217 (synopsis "PNG decoder for Common Lisp")
10218 (description "This is a Common Lisp library for reading PNG images.")
10219 (home-page "https://github.com/Ramarren/png-read")
10220 (license license:bsd-3))))
10221
10222 (define-public cl-png-read
10223 (sbcl-package->cl-source-package sbcl-png-read))
10224
10225 (define-public ecl-png-read
10226 (sbcl-package->ecl-package sbcl-png-read))
10227
10228 (define-public sbcl-zpng
10229 (package
10230 (name "sbcl-zpng")
10231 (version "1.2.2")
10232 (source
10233 (origin
10234 (method git-fetch)
10235 (uri (git-reference
10236 (url "https://github.com/xach/zpng")
10237 (commit (string-append "release-" version))))
10238 (file-name (git-file-name name version))
10239 (sha256
10240 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
10241 (build-system asdf-build-system/sbcl)
10242 (inputs
10243 `(("salza2" ,sbcl-salza2)))
10244 (synopsis "PNG encoder for Common Lisp")
10245 (description "This is a Common Lisp library for creating PNG images.")
10246 (home-page "https://www.xach.com/lisp/zpng/")
10247 (license license:bsd-2)))
10248
10249 (define-public cl-zpng
10250 (sbcl-package->cl-source-package sbcl-zpng))
10251
10252 (define-public ecl-zpng
10253 (sbcl-package->ecl-package sbcl-zpng))
10254
10255 (define-public sbcl-cl-qrencode
10256 (package
10257 (name "sbcl-cl-qrencode")
10258 (version "0.1.2")
10259 (source
10260 (origin
10261 (method git-fetch)
10262 (uri (git-reference
10263 (url "https://github.com/jnjcc/cl-qrencode")
10264 (commit (string-append "v" version))))
10265 (file-name (git-file-name name version))
10266 (sha256
10267 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
10268 (build-system asdf-build-system/sbcl)
10269 (native-inputs
10270 `(("lisp-unit" ,sbcl-lisp-unit)))
10271 (inputs
10272 `(("zpng" ,sbcl-zpng)))
10273 (synopsis "QR code encoder for Common Lisp")
10274 (description
10275 "This Common Lisp library provides function to make QR codes and to save
10276 them as PNG files.")
10277 (home-page "https://github.com/jnjcc/cl-qrencode")
10278 (license license:gpl2+)))
10279
10280 (define-public cl-qrencode
10281 (sbcl-package->cl-source-package sbcl-cl-qrencode))
10282
10283 (define-public ecl-cl-qrencode
10284 (sbcl-package->ecl-package sbcl-cl-qrencode))
10285
10286 (define-public sbcl-hdf5-cffi
10287 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
10288 (revision "1"))
10289 (package
10290 (name "sbcl-hdf5-cffi")
10291 (version (git-version "1.8.18" revision commit))
10292 (source
10293 (origin
10294 (method git-fetch)
10295 (uri (git-reference
10296 (url "https://github.com/hdfgroup/hdf5-cffi")
10297 (commit commit)))
10298 (file-name (git-file-name name version))
10299 (sha256
10300 (base32
10301 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
10302 (build-system asdf-build-system/sbcl)
10303 (synopsis "Common Lisp bindings for the HDF5 library")
10304 (description
10305 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
10306 (home-page "https://github.com/hdfgroup/hdf5-cffi")
10307 (license (license:non-copyleft
10308 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
10309 commit
10310 "/LICENSE")))
10311 (inputs
10312 `(("cffi" ,sbcl-cffi)
10313 ("cffi-grovel" ,sbcl-cffi-grovel)
10314 ("hdf5" ,hdf5-1.10)))
10315 (native-inputs
10316 `(("fiveam" ,sbcl-fiveam)))
10317 (arguments
10318 `(#:asd-system-name "hdf5-cffi"
10319 #:asd-file "hdf5-cffi.asd"
10320 #:test-asd-file "hdf5-cffi.test.asd"
10321 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
10322 ;; I don't know if there is a way to tell asdf-build-system to load
10323 ;; an additional system first, so tests are disabled.
10324 #:tests? #f
10325 #:phases
10326 (modify-phases %standard-phases
10327 (add-after 'unpack 'fix-paths
10328 (lambda* (#:key inputs #:allow-other-keys)
10329 (substitute* "src/library.lisp"
10330 (("libhdf5.so")
10331 (string-append
10332 (assoc-ref inputs "hdf5")
10333 "/lib/libhdf5.so")))))
10334 (add-after 'unpack 'fix-dependencies
10335 (lambda* (#:key inputs #:allow-other-keys)
10336 (substitute* "hdf5-cffi.asd"
10337 ((":depends-on \\(:cffi\\)")
10338 ":depends-on (:cffi :cffi-grovel)"))
10339 (substitute* "hdf5-cffi.test.asd"
10340 ((":depends-on \\(:cffi :hdf5-cffi")
10341 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
10342
10343 (define-public cl-hdf5-cffi
10344 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
10345
10346 (define-public ecl-hdf5-cffi
10347 (sbcl-package->ecl-package sbcl-hdf5-cffi))
10348
10349 (define-public sbcl-cl-randist
10350 (package
10351 (name "sbcl-cl-randist")
10352 (version "0.4.2")
10353 (source
10354 (origin
10355 (method git-fetch)
10356 (uri (git-reference
10357 (url "https://github.com/lvaruzza/cl-randist")
10358 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
10359 (file-name (git-file-name name version))
10360 (sha256
10361 (base32
10362 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
10363 (build-system asdf-build-system/sbcl)
10364 (synopsis "Random distributions for Common Lisp")
10365 (description
10366 "Manual translation from C to Common Lisp of some random number
10367 generation functions from the GSL library.")
10368 (home-page "https://github.com/lvaruzza/cl-randist")
10369 (license license:bsd-2)
10370 (arguments
10371 `(#:asd-system-name "cl-randist"
10372 #:asd-file "cl-randist.asd"
10373 #:tests? #f))))
10374
10375 (define-public cl-randist
10376 (sbcl-package->cl-source-package sbcl-cl-randist))
10377
10378 (define-public ecl-cl-randist
10379 (sbcl-package->ecl-package sbcl-cl-randist))
10380
10381 (define-public sbcl-float-features
10382 (package
10383 (name "sbcl-float-features")
10384 (version "1.0.0")
10385 (source
10386 (origin
10387 (method git-fetch)
10388 (uri (git-reference
10389 (url "https://github.com/Shinmera/float-features")
10390 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
10391 (file-name (git-file-name name version))
10392 (sha256
10393 (base32
10394 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
10395 (build-system asdf-build-system/sbcl)
10396 (synopsis "Common Lisp IEEE float portability library")
10397 (description
10398 "Portability library for IEEE float features that are not
10399 covered by the Common Lisp standard.")
10400 (home-page "https://github.com/Shinmera/float-features")
10401 (license license:zlib)
10402 (inputs
10403 `(("documentation-utils" ,sbcl-documentation-utils)))
10404 (arguments
10405 `(#:asd-system-name "float-features"
10406 #:asd-file "float-features.asd"
10407 #:tests? #f))))
10408
10409 (define-public cl-float-features
10410 (sbcl-package->cl-source-package sbcl-float-features))
10411
10412 (define-public ecl-float-features
10413 (sbcl-package->ecl-package sbcl-float-features))
10414
10415 (define-public sbcl-function-cache
10416 (package
10417 (name "sbcl-function-cache")
10418 (version "1.0.3")
10419 (source
10420 (origin
10421 (method git-fetch)
10422 (uri (git-reference
10423 (url "https://github.com/AccelerationNet/function-cache")
10424 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
10425 (file-name (git-file-name name version))
10426 (sha256
10427 (base32
10428 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
10429 (build-system asdf-build-system/sbcl)
10430 (synopsis "Function caching / memoization library for Common Lisp")
10431 (description
10432 "A common lisp library that provides extensible function result
10433 caching based on arguments (an expanded form of memoization).")
10434 (home-page "https://github.com/AccelerationNet/function-cache")
10435 (license
10436 (license:non-copyleft
10437 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
10438 (inputs
10439 `(("alexandria" ,sbcl-alexandria)
10440 ("cl-interpol" ,sbcl-cl-interpol)
10441 ("iterate" ,sbcl-iterate)
10442 ("symbol-munger" ,sbcl-symbol-munger)
10443 ("closer-mop" ,sbcl-closer-mop)))
10444 (arguments
10445 `(#:asd-system-name "function-cache"
10446 #:asd-file "function-cache.asd"
10447 #:tests? #f))))
10448
10449 (define-public cl-function-cache
10450 (sbcl-package->cl-source-package sbcl-function-cache))
10451
10452 (define-public ecl-function-cache
10453 (sbcl-package->ecl-package sbcl-function-cache))
10454
10455 (define-public sbcl-type-r
10456 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
10457 (revision "1"))
10458 (package
10459 (name "sbcl-type-r")
10460 (version (git-version "0.0.0" revision commit))
10461 (source
10462 (origin
10463 (method git-fetch)
10464 (uri (git-reference
10465 (url "https://github.com/guicho271828/type-r")
10466 (commit commit)))
10467 (file-name (git-file-name name version))
10468 (sha256
10469 (base32
10470 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
10471 (build-system asdf-build-system/sbcl)
10472 (synopsis "Parser interface for Common Lisp built-in compound types")
10473 (description
10474 "Collections of accessor functions and patterns to access
10475 the elements in compound type specifier, e.g. @code{dimensions} in
10476 @code{(array element-type dimensions)}")
10477 (home-page "https://github.com/guicho271828/type-r")
10478 (license license:lgpl3+)
10479 (inputs
10480 `(("trivia" ,sbcl-trivia)
10481 ("alexandria" ,sbcl-alexandria)))
10482 (native-inputs
10483 `(("fiveam" ,sbcl-fiveam)))
10484 (arguments
10485 `(#:asd-system-name "type-r"
10486 #:asd-file "type-r.asd"
10487 #:test-asd-file "type-r.test.asd")))))
10488
10489 (define-public cl-type-r
10490 (sbcl-package->cl-source-package sbcl-type-r))
10491
10492 (define-public sbcl-trivialib-type-unify
10493 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
10494 (revision "1"))
10495 (package
10496 (name "sbcl-trivialib-type-unify")
10497 (version (git-version "0.1" revision commit))
10498 (source
10499 (origin
10500 (method git-fetch)
10501 (uri (git-reference
10502 (url "https://github.com/guicho271828/trivialib.type-unify")
10503 (commit commit)))
10504 (file-name (git-file-name name version))
10505 (sha256
10506 (base32
10507 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
10508 (build-system asdf-build-system/sbcl)
10509 (synopsis "Common Lisp type unification")
10510 (description
10511 "Unifies a parametrized type specifier against an actual type specifier.
10512 Importantly, it handles complicated array-subtypes and number-related types
10513 correctly.")
10514 (home-page "https://github.com/guicho271828/trivialib.type-unify")
10515 (license license:lgpl3+)
10516 (inputs
10517 `(("alexandria" ,sbcl-alexandria)
10518 ("trivia" ,sbcl-trivia)
10519 ("introspect-environment" ,sbcl-introspect-environment)
10520 ("type-r" ,sbcl-type-r)))
10521 (native-inputs
10522 `(("fiveam" ,sbcl-fiveam)))
10523 (arguments
10524 `(#:asd-system-name "trivialib.type-unify"
10525 #:asd-file "trivialib.type-unify.asd"
10526 #:test-asd-file "trivialib.type-unify.test.asd")))))
10527
10528 (define-public cl-trivialib-type-unify
10529 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
10530
10531 (define-public sbcl-specialized-function
10532 (let ((commit "b96b6afaf8358bf91cc0703e62a5a4ee20d2b7bc")
10533 (revision "1"))
10534 (package
10535 (name "sbcl-specialized-function")
10536 (version (git-version "0.0.0" revision commit))
10537 (source
10538 (origin
10539 (method git-fetch)
10540 (uri (git-reference
10541 (url "https://github.com/numcl/specialized-function")
10542 (commit commit)))
10543 (file-name (git-file-name name version))
10544 (sha256
10545 (base32
10546 "12j45ff0n26578vmfbhb9mfbdchw4wy023k0m2ppgl9s0z4bhjaj"))))
10547 (build-system asdf-build-system/sbcl)
10548 (synopsis "Julia-like dispatch for Common Lisp")
10549 (description
10550 "This library is part of NUMCL. It provides a macro
10551 @code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
10552 lazily compiling a type-specific version of the function from the same
10553 code. The main target of this macro is speed.")
10554 (home-page "https://github.com/numcl/specialized-function")
10555 (license license:lgpl3+)
10556 (inputs
10557 `(("trivia" ,sbcl-trivia)
10558 ("alexandria" ,sbcl-alexandria)
10559 ("iterate" ,sbcl-iterate)
10560 ("lisp-namespace" ,sbcl-lisp-namespace)
10561 ("type-r" ,sbcl-type-r)
10562 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
10563 (native-inputs
10564 `(("fiveam" ,sbcl-fiveam)))
10565 (arguments
10566 `(#:asd-system-name "specialized-function"
10567 #:asd-file "specialized-function.asd"
10568 #:test-asd-file "specialized-function.test.asd")))))
10569
10570 (define-public cl-specialized-function
10571 (sbcl-package->cl-source-package sbcl-specialized-function))
10572
10573 (define-public sbcl-constantfold
10574 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
10575 (revision "1"))
10576 (package
10577 (name "sbcl-constantfold")
10578 (version (git-version "0.1" revision commit))
10579 (source
10580 (origin
10581 (method git-fetch)
10582 (uri (git-reference
10583 (url "https://github.com/numcl/constantfold")
10584 (commit commit)))
10585 (file-name (git-file-name name version))
10586 (sha256
10587 (base32
10588 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
10589 (build-system asdf-build-system/sbcl)
10590 (synopsis "Support library for numcl")
10591 (description
10592 "Support library for numcl. Registers a function as an
10593 additional form that is considered as a candidate for a constant.")
10594 (home-page "https://github.com/numcl/constantfold")
10595 (license license:lgpl3+)
10596 (inputs
10597 `(("trivia" ,sbcl-trivia)
10598 ("alexandria" ,sbcl-alexandria)
10599 ("iterate" ,sbcl-iterate)
10600 ("lisp-namespace" ,sbcl-lisp-namespace)))
10601 (native-inputs
10602 `(("fiveam" ,sbcl-fiveam)))
10603 (arguments
10604 `(#:asd-system-name "constantfold"
10605 #:asd-file "constantfold.asd"
10606 #:test-asd-file "constantfold.test.asd")))))
10607
10608 (define-public cl-constantfold
10609 (sbcl-package->cl-source-package sbcl-constantfold))
10610
10611 (define-public sbcl-gtype
10612 (let ((commit "42275e3606242ae91e9c8dfa30c18ced50a35b66")
10613 (revision "1"))
10614 (package
10615 (name "sbcl-gtype")
10616 (version (git-version "0.1" revision commit))
10617 (source
10618 (origin
10619 (method git-fetch)
10620 (uri (git-reference
10621 (url "https://github.com/numcl/gtype")
10622 (commit commit)))
10623 (file-name (git-file-name name version))
10624 (sha256
10625 (base32
10626 "1f56dba998v945jcxhha391557n6md1ql25b7icfwwfivhmlaa9b"))))
10627 (build-system asdf-build-system/sbcl)
10628 (synopsis "C++/Julia-like parametric types in Common Lisp")
10629 (description
10630 "Support library for numcl that provides Julia-like runtime parametric
10631 type correctness in Common Lisp. It is based on CLtL2 extensions.")
10632 (home-page "https://github.com/numcl/gtype")
10633 (license license:lgpl3+)
10634 (inputs
10635 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
10636 ("trivial-cltl2" ,sbcl-trivial-cltl2)
10637 ("trivia" ,sbcl-trivia)
10638 ("alexandria" ,sbcl-alexandria)
10639 ("iterate" ,sbcl-iterate)
10640 ("type-r" ,sbcl-type-r)))
10641 (native-inputs
10642 `(("fiveam" ,sbcl-fiveam)))
10643 (arguments
10644 `(#:asd-system-name "gtype"
10645 #:asd-file "gtype.asd"
10646 #:test-asd-file "gtype.test.asd")))))
10647
10648 (define-public cl-gtype
10649 (sbcl-package->cl-source-package sbcl-gtype))
10650
10651 (define-public sbcl-numcl
10652 (let ((commit "1cf7dfa59f763a24a501092870e9c5ee745d0c17")
10653 (revision "1"))
10654 (package
10655 (name "sbcl-numcl")
10656 (version (git-version "0.1.0" revision commit))
10657 (source
10658 (origin
10659 (method git-fetch)
10660 (uri (git-reference
10661 (url "https://github.com/numcl/numcl")
10662 (commit commit)))
10663 (file-name (git-file-name name version))
10664 (sha256
10665 (base32
10666 "0i3jby9hf4ii7blivgyza80g0vmjfhk8537i5i7kqqk0i5sdnym2"))))
10667 (build-system asdf-build-system/sbcl)
10668 (synopsis "Numpy clone in Common Lisp")
10669 (description
10670 "This is a Numpy clone in Common Lisp. At the moment the
10671 library is written in pure Common Lisp, focusing more on correctness
10672 and usefulness, not speed. Track the progress at
10673 @url{https://github.com/numcl/numcl/projects/1}.")
10674 (home-page "https://github.com/numcl/numcl")
10675 (license license:lgpl3+)
10676 (inputs
10677 `(("trivia" ,sbcl-trivia)
10678 ("alexandria" ,sbcl-alexandria)
10679 ("iterate" ,sbcl-iterate)
10680 ("lisp-namespace" ,sbcl-lisp-namespace)
10681 ("type-r" ,sbcl-type-r)
10682 ("constantfold" ,sbcl-constantfold)
10683 ("cl-randist" ,sbcl-cl-randist)
10684 ("float-features" ,sbcl-float-features)
10685 ("function-cache" ,sbcl-function-cache)
10686 ("specialized-function" ,sbcl-specialized-function)
10687 ("gtype" ,sbcl-gtype)))
10688 (native-inputs
10689 `(("fiveam" ,sbcl-fiveam)))
10690 (arguments
10691 `(#:asd-system-name "numcl"
10692 #:asd-file "numcl.asd"
10693 #:test-asd-file "numcl.test.asd")))))
10694
10695 (define-public cl-numcl
10696 (sbcl-package->cl-source-package sbcl-numcl))
10697
10698 (define-public sbcl-pzmq
10699 (let ((commit "7c7390eedc469d033c72dc497984d1536ee75826")
10700 (revision "1"))
10701 (package
10702 (name "sbcl-pzmq")
10703 (version (git-version "0.0.0" revision commit))
10704 (source
10705 (origin
10706 (method git-fetch)
10707 (uri (git-reference
10708 (url "https://github.com/orivej/pzmq")
10709 (commit commit)))
10710 (file-name (git-file-name name version))
10711 (sha256
10712 (base32 "0gmwzf7h90wa7v4wnk49g0hv2mdalljpwhyigxcb967wzv8lqci9"))))
10713 (build-system asdf-build-system/sbcl)
10714 (native-inputs
10715 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10716 ("fiveam" ,sbcl-fiveam)
10717 ("let-plus" ,sbcl-let-plus)))
10718 (inputs
10719 `(("cffi" ,sbcl-cffi)
10720 ("cffi-grovel" ,sbcl-cffi-grovel)
10721 ("zeromq" ,zeromq)))
10722 (arguments
10723 `(#:phases (modify-phases %standard-phases
10724 (add-after 'unpack 'fix-paths
10725 (lambda* (#:key inputs #:allow-other-keys)
10726 (substitute* "c-api.lisp"
10727 (("\"libzmq")
10728 (string-append "\""
10729 (assoc-ref inputs "zeromq")
10730 "/lib/libzmq")))
10731 #t)))))
10732 (synopsis "Common Lisp bindings for the ZeroMQ library")
10733 (description "This Common Lisp library provides bindings for the ZeroMQ
10734 lightweight messaging kernel.")
10735 (home-page "https://github.com/orivej/pzmq")
10736 (license license:unlicense))))
10737
10738 (define-public cl-pzmq
10739 (sbcl-package->cl-source-package sbcl-pzmq))
10740
10741 (define-public ecl-pzmq
10742 (sbcl-package->ecl-package sbcl-pzmq))
10743
10744 (define-public sbcl-clss
10745 (let ((revision "1")
10746 (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d"))
10747 (package
10748 (name "sbcl-clss")
10749 (version (git-version "0.3.1" revision commit))
10750 (source
10751 (origin
10752 (method git-fetch)
10753 (uri
10754 (git-reference
10755 (url "https://github.com/Shinmera/clss")
10756 (commit commit)))
10757 (sha256
10758 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91"))
10759 (file-name (git-file-name name version))))
10760 (inputs
10761 `(("array-utils" ,sbcl-array-utils)
10762 ("plump" ,sbcl-plump)))
10763 (build-system asdf-build-system/sbcl)
10764 (synopsis "DOM tree searching engine based on CSS selectors")
10765 (description "CLSS is a DOM traversal engine based on CSS
10766 selectors. It makes use of the Plump-DOM and is used by lQuery.")
10767 (home-page "https://github.com/Shinmera/clss")
10768 (license license:zlib))))
10769
10770 (define-public cl-clss
10771 (sbcl-package->cl-source-package sbcl-clss))
10772
10773 (define-public ecl-clss
10774 (sbcl-package->ecl-package sbcl-clss))
10775
10776 (define-public sbcl-lquery
10777 (let ((revision "1")
10778 (commit "8048111c6b83956daa632e7a3ffbd8c9c203bd8d"))
10779 (package
10780 (name "sbcl-lquery")
10781 (version (git-version "3.2.1" revision commit))
10782 (source
10783 (origin
10784 (method git-fetch)
10785 (uri
10786 (git-reference
10787 (url "https://github.com/Shinmera/lquery")
10788 (commit commit)))
10789 (sha256
10790 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w"))
10791 (file-name (git-file-name name version))))
10792 (native-inputs
10793 `(("fiveam" ,sbcl-fiveam)))
10794 (inputs
10795 `(("array-utils" ,sbcl-array-utils)
10796 ("form-fiddle" ,sbcl-form-fiddle)
10797 ("plump" ,sbcl-plump)
10798 ("clss" ,sbcl-clss)))
10799 (build-system asdf-build-system/sbcl)
10800 (synopsis "Library to allow jQuery-like HTML/DOM manipulation")
10801 (description "@code{lQuery} is a DOM manipulation library written in
10802 Common Lisp, inspired by and based on the jQuery syntax and
10803 functions. It uses Plump and CLSS as DOM and selector engines. The
10804 main idea behind lQuery is to provide a simple interface for crawling
10805 and modifying HTML sites, as well as to allow for an alternative
10806 approach to templating.")
10807 (home-page "https://github.com/Shinmera/lquery")
10808 (license license:zlib))))
10809
10810 (define-public cl-lquery
10811 (sbcl-package->cl-source-package sbcl-lquery))
10812
10813 (define-public ecl-lquery
10814 (sbcl-package->ecl-package sbcl-lquery))
10815
10816 (define-public sbcl-cl-mysql
10817 (let ((commit "ab56c279c1815aec6ca0bfe85164ff7e85cfb6f9")
10818 (revision "1"))
10819 (package
10820 (name "sbcl-cl-mysql")
10821 (version (git-version "0.1" revision commit))
10822 (source
10823 (origin
10824 (method git-fetch)
10825 (uri (git-reference
10826 (url "https://github.com/hackinghat/cl-mysql")
10827 (commit commit)))
10828 (file-name (git-file-name name version))
10829 (sha256
10830 (base32 "0dg5ynx2ww94d0qfwrdrm7plkn43h64hs4iiq9mj2s1s4ixnp3lr"))))
10831 (build-system asdf-build-system/sbcl)
10832 (native-inputs
10833 `(("stefil" ,sbcl-stefil)))
10834 (inputs
10835 `(("cffi" ,sbcl-cffi)
10836 ("mariadb-lib" ,mariadb "lib")))
10837 (arguments
10838 `(#:tests? #f ; TODO: Tests require a running server
10839 #:phases
10840 (modify-phases %standard-phases
10841 (add-after 'unpack 'fix-paths
10842 (lambda* (#:key inputs #:allow-other-keys)
10843 (substitute* "system.lisp"
10844 (("libmysqlclient_r" all)
10845 (string-append (assoc-ref inputs "mariadb-lib")
10846 "/lib/"
10847 all)))
10848 #t)))))
10849 (synopsis "Common Lisp wrapper for MySQL")
10850 (description
10851 "@code{cl-mysql} is a Common Lisp implementation of a MySQL wrapper.")
10852 (home-page "http://www.hackinghat.com/index.php/cl-mysql")
10853 (license license:expat))))
10854
10855 (define-public cl-mysql
10856 (sbcl-package->cl-source-package sbcl-cl-mysql))
10857
10858 (define-public sbcl-simple-date
10859 (let ((commit "74469b25bbda990ec9b77e0d0eccdba0cd7e721a")
10860 (revision "1"))
10861 (package
10862 (name "sbcl-simple-date")
10863 (version (git-version "1.19" revision commit))
10864 (source
10865 (origin
10866 (method git-fetch)
10867 (uri (git-reference
10868 (url "https://github.com/marijnh/Postmodern")
10869 (commit commit)))
10870 (file-name (git-file-name name version))
10871 (sha256
10872 (base32 "0im7ymnyxjhn2w74jfg76k5gpr0gl33n31akx33hl28722ljd0hd"))))
10873 (build-system asdf-build-system/sbcl)
10874 (native-inputs
10875 `(("fiveam" ,sbcl-fiveam)))
10876 (synopsis "Basic date and time objects for Common Lisp")
10877 (description
10878 "@code{simple-date} is a very basic implementation of date and time
10879 objects, used to support storing and retrieving time-related SQL types.")
10880 (home-page "https://marijnhaverbeke.nl/postmodern/")
10881 (license license:zlib))))
10882
10883 (define-public cl-simple-date
10884 (sbcl-package->cl-source-package sbcl-simple-date))
10885
10886 (define-public ecl-simple-date
10887 (sbcl-package->ecl-package sbcl-simple-date))
10888
10889 (define-public sbcl-cl-postgres
10890 (package
10891 (inherit sbcl-simple-date)
10892 (name "sbcl-cl-postgres")
10893 (native-inputs
10894 `(("fiveam" ,sbcl-fiveam)
10895 ("simple-date" ,sbcl-simple-date)))
10896 (inputs
10897 `(("md5" ,sbcl-md5)
10898 ("split-sequence" ,sbcl-split-sequence)
10899 ("usocket" ,sbcl-usocket)))
10900 (arguments
10901 `(#:tests? #f)) ; TODO: Break simple-date/postgres-glue circular dependency
10902 (synopsis "Common Lisp interface for PostgreSQL")
10903 (description
10904 "@code{cl-postgres} is a low-level library used for interfacing with
10905 a PostgreSQL server over a socket.")))
10906
10907 (define-public cl-postgres
10908 (sbcl-package->cl-source-package sbcl-cl-postgres))
10909
10910 (define-public sbcl-simple-date-postgres-glue
10911 (package
10912 (inherit sbcl-simple-date)
10913 (name "sbcl-simple-date-postgres-glue")
10914 (inputs
10915 `(("cl-postgres" ,sbcl-cl-postgres)
10916 ("simple-date" ,sbcl-simple-date)))
10917 (arguments
10918 `(#:asd-file "simple-date.asd"
10919 #:asd-system-name "simple-date/postgres-glue"))))
10920
10921 (define-public cl-simple-date-postgres-glue
10922 (sbcl-package->cl-source-package sbcl-simple-date-postgres-glue))
10923
10924 (define-public sbcl-s-sql
10925 (package
10926 (inherit sbcl-simple-date)
10927 (name "sbcl-s-sql")
10928 (inputs
10929 `(("alexandria" ,sbcl-alexandria)
10930 ("cl-postgres" ,sbcl-cl-postgres)))
10931 (arguments
10932 `(#:tests? #f)) ; TODO: Break postmodern circular dependency
10933 (synopsis "Lispy DSL for SQL")
10934 (description
10935 "@code{s-sql} is a Common Lisp library that can be used to compile
10936 s-expressions to strings of SQL code, escaping any Lisp values inside, and
10937 doing as much as possible of the work at compile time.")))
10938
10939 (define-public cl-s-sql
10940 (sbcl-package->cl-source-package sbcl-s-sql))
10941
10942 (define-public sbcl-postmodern
10943 (package
10944 (inherit sbcl-simple-date)
10945 (name "sbcl-postmodern")
10946 (native-inputs
10947 `(("fiveam" ,sbcl-fiveam)
10948 ("simple-date" ,sbcl-simple-date)
10949 ("simple-date-postgres-glue" ,sbcl-simple-date-postgres-glue)))
10950 (inputs
10951 `(("alexandria" ,sbcl-alexandria)
10952 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10953 ("cl-postgres" ,sbcl-cl-postgres)
10954 ("closer-mop" ,sbcl-closer-mop)
10955 ("global-vars" ,sbcl-global-vars)
10956 ("s-sql" ,sbcl-s-sql)
10957 ("split-sequence" ,sbcl-split-sequence)))
10958 (arguments
10959 ;; TODO: Fix missing dependency errors for simple-date/postgres-glue,
10960 ;; cl-postgres/tests and s-sql/tests.
10961 `(#:tests? #f))
10962 (synopsis "Common Lisp library for interacting with PostgreSQL")
10963 (description
10964 "@code{postmodern} is a Common Lisp library for interacting with
10965 PostgreSQL databases. It provides the following features:
10966
10967 @itemize
10968 @item Efficient communication with the database server without need for
10969 foreign libraries.
10970 @item Support for UTF-8 on Unicode-aware Lisp implementations.
10971 @item A syntax for mixing SQL and Lisp code.
10972 @item Convenient support for prepared statements and stored procedures.
10973 @item A metaclass for simple database-access objects.
10974 @end itemize\n")))
10975
10976 (define-public cl-postmodern
10977 (sbcl-package->cl-source-package sbcl-postmodern))
10978
10979 (define-public sbcl-dbi
10980 (package
10981 (name "sbcl-dbi")
10982 (version "0.9.4")
10983 (source
10984 (origin
10985 (method git-fetch)
10986 (uri (git-reference
10987 (url "https://github.com/fukamachi/cl-dbi")
10988 (commit version)))
10989 (file-name (git-file-name name version))
10990 (sha256
10991 (base32 "0m1fsravfaizamdak84adh3jxc4j91maqnrb4m08bfbmb04cdqhs"))))
10992 (build-system asdf-build-system/sbcl)
10993 (inputs
10994 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10995 ("closer-mop" ,sbcl-closer-mop)
10996 ("split-sequence" ,sbcl-split-sequence)))
10997 (arguments
10998 `(#:tests? #f)) ; TODO: Break circular dependency with dbd-*
10999 (synopsis "Database independent interface for Common Lisp")
11000 (description
11001 "@code{dbi} is a Common Lisp library providing a database independent
11002 interface for MySQL, PostgreSQL and SQLite.")
11003 (home-page "https://github.com/fukamachi/cl-dbi")
11004 (license license:llgpl)))
11005
11006 (define-public cl-dbi
11007 (sbcl-package->cl-source-package sbcl-dbi))
11008
11009 (define-public sbcl-dbd-mysql
11010 (package
11011 (inherit sbcl-dbi)
11012 (name "sbcl-dbd-mysql")
11013 (inputs
11014 `(("cl-mysql" ,sbcl-cl-mysql)
11015 ("dbi" ,sbcl-dbi)))
11016 (synopsis "Database driver for MySQL")))
11017
11018 (define-public cl-dbd-mysql
11019 (sbcl-package->cl-source-package sbcl-dbd-mysql))
11020
11021 (define-public sbcl-dbd-postgres
11022 (package
11023 (inherit sbcl-dbi)
11024 (name "sbcl-dbd-postgres")
11025 (inputs
11026 `(("cl-postgres" ,sbcl-cl-postgres)
11027 ("dbi" ,sbcl-dbi)
11028 ("trivial-garbage" ,sbcl-trivial-garbage)))
11029 (synopsis "Database driver for PostgreSQL")))
11030
11031 (define-public cl-dbd-postgres
11032 (sbcl-package->cl-source-package sbcl-dbd-postgres))
11033
11034 (define-public sbcl-dbd-sqlite3
11035 (package
11036 (inherit sbcl-dbi)
11037 (name "sbcl-dbd-sqlite3")
11038 (inputs
11039 `(("cl-sqlite" ,sbcl-cl-sqlite)
11040 ("dbi" ,sbcl-dbi)
11041 ("trivial-garbage" ,sbcl-trivial-garbage)))
11042 (synopsis "Database driver for SQLite3")))
11043
11044 (define-public cl-dbd-sqlite3
11045 (sbcl-package->cl-source-package sbcl-dbd-sqlite3))
11046
11047 (define-public sbcl-uffi
11048 (package
11049 (name "sbcl-uffi")
11050 (version "2.1.2")
11051 (source
11052 (origin
11053 (method git-fetch)
11054 (uri (git-reference
11055 (url "http://git.kpe.io/uffi.git")
11056 (commit (string-append "v" version))))
11057 (file-name (git-file-name name version))
11058 (sha256
11059 (base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
11060 (build-system asdf-build-system/sbcl)
11061 (arguments
11062 `(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
11063 #:phases
11064 (modify-phases %standard-phases
11065 (add-after 'unpack 'fix-permissions
11066 (lambda _
11067 (make-file-writable "doc/html.tar.gz")
11068 #t)))))
11069 (synopsis "Universal foreign function library for Common Lisp")
11070 (description
11071 "UFFI provides a universal foreign function interface (FFI)
11072 for Common Lisp.")
11073 (home-page "http://quickdocs.org/uffi/")
11074 (license license:llgpl)))
11075
11076 (define-public cl-uffi
11077 (package
11078 (inherit (sbcl-package->cl-source-package sbcl-uffi))
11079 (arguments
11080 `(#:phases
11081 ;; asdf-build-system/source has its own phases and does not inherit
11082 ;; from asdf-build-system/sbcl phases.
11083 (modify-phases %standard-phases/source
11084 (add-after 'unpack 'fix-permissions
11085 (lambda _
11086 (make-file-writable "doc/html.tar.gz")
11087 #t)))))))
11088
11089 (define-public sbcl-clsql
11090 (package
11091 (name "sbcl-clsql")
11092 (version "6.7.0")
11093 (source
11094 (origin
11095 (method git-fetch)
11096 (uri (git-reference
11097 (url "http://git.kpe.io/clsql.git")
11098 (commit (string-append "v" version))))
11099 (file-name (git-file-name name version))
11100 (sha256
11101 (base32 "1v1k3s5bsy3lgd9gk459bzpb1r0kdjda25s29samxw4gsgf1fqvp"))
11102 (snippet
11103 '(begin
11104 ;; Remove precompiled libraries.
11105 (delete-file "db-mysql/clsql_mysql.dll")
11106 (delete-file "uffi/clsql_uffi.dll")
11107 (delete-file "uffi/clsql_uffi.lib")
11108 #t))))
11109 (build-system asdf-build-system/sbcl)
11110 (native-inputs
11111 `(("cffi-uffi-compat" ,sbcl-cffi-uffi-compat)
11112 ("rt" ,sbcl-rt)
11113 ("uffi" ,sbcl-uffi)))
11114 (arguments
11115 `(#:phases
11116 (modify-phases %standard-phases
11117 (add-after 'unpack 'fix-permissions
11118 (lambda _
11119 (make-file-writable "doc/html.tar.gz")
11120 #t))
11121 (add-after 'unpack 'fix-tests
11122 (lambda _
11123 (substitute* "clsql.asd"
11124 (("clsql-tests :force t")
11125 "clsql-tests"))
11126 #t)))))
11127 (synopsis "Common Lisp SQL Interface library")
11128 (description
11129 "@code{clsql} is a Common Lisp interface to SQL RDBMS based on the
11130 Xanalys CommonSQL interface for Lispworks. It provides low-level database
11131 interfaces as well as a functional and an object oriented interface.")
11132 (home-page "http://clsql.kpe.io/")
11133 (license license:llgpl)))
11134
11135 (define-public cl-clsql
11136 (package
11137 (inherit (sbcl-package->cl-source-package sbcl-clsql))
11138 (native-inputs
11139 `(("rt" ,cl-rt)))
11140 (inputs
11141 `(("mysql" ,mysql)
11142 ("postgresql" ,postgresql)
11143 ("sqlite" ,sqlite)
11144 ("zlib" ,zlib)))
11145 (propagated-inputs
11146 `(("cl-postgres" ,cl-postgres)
11147 ("cffi-uffi-compat" ,cl-cffi-uffi-compat)
11148 ("md5" ,cl-md5)
11149 ("uffi" ,cl-uffi)))
11150 (arguments
11151 `(#:phases
11152 ;; asdf-build-system/source has its own phases and does not inherit
11153 ;; from asdf-build-system/sbcl phases.
11154 (modify-phases %standard-phases/source
11155 (add-after 'unpack 'fix-permissions
11156 (lambda _
11157 (make-file-writable "doc/html.tar.gz")
11158 #t)))))))
11159
11160 (define-public sbcl-clsql-uffi
11161 (package
11162 (inherit sbcl-clsql)
11163 (name "sbcl-clsql-uffi")
11164 (inputs
11165 `(("cffi-uffi-compat" ,sbcl-cffi-uffi-compat)
11166 ("clsql" ,sbcl-clsql)
11167 ("uffi" ,sbcl-uffi)))
11168 (synopsis "UFFI helper functions for Common Lisp SQL interface library")))
11169
11170 (define-public sbcl-clsql-sqlite3
11171 (package
11172 (inherit sbcl-clsql)
11173 (name "sbcl-clsql-sqlite3")
11174 (inputs
11175 `(("clsql" ,sbcl-clsql)
11176 ("clsql-uffi" ,sbcl-clsql-uffi)
11177 ("sqlite" ,sqlite)))
11178 (arguments
11179 (substitute-keyword-arguments (package-arguments sbcl-clsql)
11180 ((#:phases phases '%standard-phases)
11181 `(modify-phases ,phases
11182 (add-after 'unpack 'fix-paths
11183 (lambda* (#:key inputs #:allow-other-keys)
11184 (substitute* "db-sqlite3/sqlite3-loader.lisp"
11185 (("libsqlite3")
11186 (string-append (assoc-ref inputs "sqlite")
11187 "/lib/libsqlite3")))
11188 #t))))))
11189 (synopsis "SQLite3 driver for Common Lisp SQL interface library")))
11190
11191 (define-public sbcl-clsql-postgresql
11192 (package
11193 (inherit sbcl-clsql)
11194 (name "sbcl-clsql-postgresql")
11195 (inputs
11196 `(("clsql" ,sbcl-clsql)
11197 ("clsql-uffi" ,sbcl-clsql-uffi)
11198 ("postgresql" ,postgresql)))
11199 (arguments
11200 (substitute-keyword-arguments (package-arguments sbcl-clsql)
11201 ((#:phases phases '%standard-phases)
11202 `(modify-phases ,phases
11203 (add-after 'unpack 'fix-paths
11204 (lambda* (#:key inputs #:allow-other-keys)
11205 (substitute* "db-postgresql/postgresql-loader.lisp"
11206 (("libpq")
11207 (string-append (assoc-ref inputs "postgresql")
11208 "/lib/libpq")))
11209 #t))))))
11210 (synopsis "PostgreSQL driver for Common Lisp SQL interface library")))
11211
11212 (define-public sbcl-clsql-postgresql-socket3
11213 (package
11214 (inherit sbcl-clsql)
11215 (name "sbcl-clsql-postgresql-socket3")
11216 (inputs
11217 `(("cl-postgres" ,sbcl-cl-postgres)
11218 ("clsql" ,sbcl-clsql)
11219 ("md5" ,sbcl-md5)))
11220 (arguments
11221 (substitute-keyword-arguments (package-arguments sbcl-clsql)
11222 ((#:phases phases '%standard-phases)
11223 `(modify-phases ,phases
11224 (add-after 'create-asd-file 'fix-asd-file
11225 (lambda* (#:key outputs #:allow-other-keys)
11226 (let* ((out (assoc-ref outputs "out"))
11227 (lib (string-append out "/lib/" (%lisp-type)))
11228 (asd (string-append lib "/clsql-postgresql-socket3.asd")))
11229 (substitute* asd
11230 (("CLSQL-POSTGRESQL-SOCKET-SYSTEM::")
11231 "")))
11232 #t))))))
11233 (synopsis "PostgreSQL driver for Common Lisp SQL interface library")))
11234
11235 (define-public sbcl-clsql-mysql
11236 (package
11237 (inherit sbcl-clsql)
11238 (name "sbcl-clsql-mysql")
11239 (inputs
11240 `(("mysql" ,mysql)
11241 ("sbcl-clsql" ,sbcl-clsql)
11242 ("sbcl-clsql-uffi" ,sbcl-clsql-uffi)
11243 ("zlib" ,zlib)))
11244 (arguments
11245 (substitute-keyword-arguments (package-arguments sbcl-clsql)
11246 ((#:phases phases '%standard-phases)
11247 `(modify-phases ,phases
11248 (add-after 'unpack 'fix-paths
11249 (lambda* (#:key inputs outputs #:allow-other-keys)
11250 (let ((lib (string-append "#p\""
11251 (assoc-ref outputs "out")
11252 "/lib/\"")))
11253 (substitute* "clsql-mysql.asd"
11254 (("#p\"/usr/lib/clsql/clsql_mysql\\.so\"")
11255 lib))
11256 (substitute* "db-mysql/mysql-loader.lisp"
11257 (("libmysqlclient" all)
11258 (string-append (assoc-ref inputs "mysql") "/lib/" all))
11259 (("clsql-mysql-system::\\*library-file-dir\\*")
11260 lib)))
11261 #t))
11262 (add-before 'build 'build-helper-library
11263 (lambda* (#:key inputs outputs #:allow-other-keys)
11264 (let* ((mysql (assoc-ref inputs "mysql"))
11265 (inc-dir (string-append mysql "/include/mysql"))
11266 (lib-dir (string-append mysql "/lib"))
11267 (shared-lib-dir (string-append (assoc-ref outputs "out")
11268 "/lib"))
11269 (shared-lib (string-append shared-lib-dir
11270 "/clsql_mysql.so")))
11271 (mkdir-p shared-lib-dir)
11272 (invoke "gcc" "-fPIC" "-shared"
11273 "-I" inc-dir
11274 "db-mysql/clsql_mysql.c"
11275 "-Wl,-soname=clsql_mysql"
11276 "-L" lib-dir "-lmysqlclient" "-lz"
11277 "-o" shared-lib)
11278 #t)))))))
11279 (synopsis "MySQL driver for Common Lisp SQL interface library")))
11280
11281 (define-public sbcl-sycamore
11282 (let ((commit "fd2820fec165ad514493426dea209728f64e6d18"))
11283 (package
11284 (name "sbcl-sycamore")
11285 (version "0.0.20120604")
11286 (source
11287 (origin
11288 (method git-fetch)
11289 (uri (git-reference
11290 (url "https://github.com/ndantam/sycamore/")
11291 (commit commit)))
11292 (file-name (git-file-name name version))
11293 (sha256
11294 (base32 "00bv1aj89q5vldmq92zp2364jq312zjq2mbd3iyz1s2b4widzhl7"))))
11295 (build-system asdf-build-system/sbcl)
11296 (arguments
11297 `(#:asd-file "src/sycamore.asd"))
11298 (inputs
11299 `(("alexandria" ,sbcl-alexandria)
11300 ("cl-ppcre" ,sbcl-cl-ppcre)))
11301 (synopsis "Purely functional data structure library in Common Lisp")
11302 (description
11303 "Sycamore is a fast, purely functional data structure library in Common Lisp.
11304 If features:
11305
11306 @itemize
11307 @item Fast, purely functional weight-balanced binary trees.
11308 @item Leaf nodes are simple-vectors, greatly reducing tree height.
11309 @item Interfaces for tree Sets and Maps (dictionaries).
11310 @item Ropes.
11311 @item Purely functional pairing heaps.
11312 @item Purely functional amortized queue.
11313 @end itemize\n")
11314 (home-page "http://ndantam.github.io/sycamore/")
11315 (license license:bsd-3))))
11316
11317 (define-public cl-sycamore
11318 (sbcl-package->cl-source-package sbcl-sycamore))
11319
11320 (define-public sbcl-trivial-package-local-nicknames
11321 (package
11322 (name "sbcl-trivial-package-local-nicknames")
11323 (version "0.2")
11324 (home-page "https://github.com/phoe/trivial-package-local-nicknames")
11325 (source
11326 (origin
11327 (method git-fetch)
11328 (uri (git-reference
11329 (url home-page)
11330 (commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
11331 (file-name (git-file-name name version))
11332 (sha256
11333 (base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
11334 (build-system asdf-build-system/sbcl)
11335 (synopsis "Common Lisp compatibility library for package local nicknames")
11336 (description
11337 "This library is a portable compatibility layer around package local nicknames (PLN).
11338 This was done so there is a portability library for the PLN API not included
11339 in DEFPACKAGE.")
11340 (license license:unlicense)))
11341
11342 (define-public cl-trivial-package-local-nicknames
11343 (sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))
11344
11345 (define-public sbcl-enchant
11346 (let ((commit "6af162a7bf10541cbcfcfa6513894900329713fa"))
11347 (package
11348 (name "sbcl-enchant")
11349 (version (git-version "0.0.0" "1" commit))
11350 (home-page "https://github.com/tlikonen/cl-enchant")
11351 (source
11352 (origin
11353 (method git-fetch)
11354 (uri (git-reference
11355 (url home-page)
11356 (commit commit)))
11357 (file-name (git-file-name name version))
11358 (sha256
11359 (base32 "19yh5ihirzi1d8xqy1cjqipzd6ly3245cfxa5s9xx496rryz0s01"))))
11360 (build-system asdf-build-system/sbcl)
11361 (inputs
11362 `(("enchant" ,enchant)
11363 ("cffi" ,sbcl-cffi)))
11364 (arguments
11365 `(#:phases
11366 (modify-phases %standard-phases
11367 (add-after 'unpack 'fix-paths
11368 (lambda* (#:key inputs #:allow-other-keys)
11369 (substitute* "load-enchant.lisp"
11370 (("libenchant")
11371 (string-append
11372 (assoc-ref inputs "enchant") "/lib/libenchant-2"))))))))
11373 (synopsis "Common Lisp interface for the Enchant spell-checker library")
11374 (description
11375 "Enchant is a Common Lisp interface for the Enchant spell-checker
11376 library. The Enchant library is a generic spell-checker library which uses
11377 other spell-checkers transparently as back-end. The library supports the
11378 multiple checkers, including Aspell and Hunspell.")
11379 (license license:public-domain))))
11380
11381 (define-public cl-enchant
11382 (sbcl-package->cl-source-package sbcl-enchant))
11383
11384 (define-public sbcl-cl-change-case
11385 (let ((commit "5ceff2a5f8bd845b6cb510c6364176b27a238fd3"))
11386 (package
11387 (name "sbcl-cl-change-case")
11388 (version (git-version "0.1.0" "1" commit))
11389 (home-page "https://github.com/rudolfochrist/cl-change-case")
11390 (source
11391 (origin
11392 (method git-fetch)
11393 (uri (git-reference
11394 (url home-page)
11395 (commit commit)))
11396 (file-name (git-file-name name version))
11397 (sha256
11398 (base32 "1afyglglk9z3yg8gylcl301bl2r8vq3sllyznzj9s5xi5gs6qyf2"))))
11399 (build-system asdf-build-system/sbcl)
11400 (inputs
11401 `(("cl-ppcre" ,sbcl-cl-ppcre)
11402 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
11403 (native-inputs
11404 `(("fiveam" ,sbcl-fiveam)))
11405 (arguments
11406 '(;; FIXME: Test pass but phase fails with 'Component
11407 ;; "cl-change-case-test" not found, required by'.
11408 #:tests? #f
11409 #:test-asd-file "cl-change-case-test.asd"))
11410 (synopsis "Convert Common Lisp strings between camelCase, PascalCase and more")
11411 (description
11412 "@code{cl-change-case} is library to convert strings between camelCase,
11413 PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
11414 (license license:llgpl))))
11415
11416 (define-public cl-change-case
11417 (sbcl-package->cl-source-package sbcl-cl-change-case))
11418
11419 (define-public sbcl-moptilities
11420 (let ((commit "a436f16b357c96b82397ec018ea469574c10dd41"))
11421 (package
11422 (name "sbcl-moptilities")
11423 (version (git-version "0.3.13" "1" commit))
11424 (home-page "https://github.com/gwkkwg/moptilities/")
11425 (source
11426 (origin
11427 (method git-fetch)
11428 (uri (git-reference
11429 (url home-page)
11430 (commit commit)))
11431 (file-name (git-file-name name version))
11432 (sha256
11433 (base32 "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc"))))
11434 (build-system asdf-build-system/sbcl)
11435 (inputs
11436 `(("closer-mop" ,sbcl-closer-mop)))
11437 (native-inputs
11438 `(("lift" ,sbcl-lift)))
11439 (synopsis "Compatibility layer for Common Lisp MOP implementation differences")
11440 (description
11441 "MOP utilities provide a common interface between Lisps and make the
11442 MOP easier to use.")
11443 (license license:expat))))
11444
11445 (define-public cl-moptilities
11446 (sbcl-package->cl-source-package sbcl-moptilities))
11447
11448 (define-public sbcl-osicat
11449 (let ((commit "de0c18a367eedc857e1902a7319828af072a0d97"))
11450 (package
11451 (name "sbcl-osicat")
11452 (version (git-version "0.7.0" "1" commit))
11453 (home-page "http://www.common-lisp.net/project/osicat/")
11454 (source
11455 (origin
11456 (method git-fetch)
11457 (uri (git-reference
11458 (url "https://github.com/osicat/osicat")
11459 (commit commit)))
11460 (file-name (git-file-name name version))
11461 (sha256
11462 (base32 "15viw5pi5sa7qq9b4n2rr3dj2jkqr180rh9z1lh8w3rgl42i2adc"))))
11463 (build-system asdf-build-system/sbcl)
11464 (arguments
11465 `(#:phases
11466 (modify-phases %standard-phases
11467 ;; The cleanup phase moves files around but we need to keep the
11468 ;; directory structure for the grovel-generated library.
11469 (replace 'cleanup
11470 (lambda* (#:key outputs #:allow-other-keys)
11471 (let* ((out (assoc-ref outputs "out"))
11472 (lib (string-append out "/lib/sbcl/")))
11473 (delete-file-recursively (string-append lib "src"))
11474 (delete-file-recursively (string-append lib "tests"))
11475 (for-each delete-file
11476 (filter (lambda (file)
11477 (not (member (basename file) '("libosicat.so"))))
11478 (find-files (string-append lib "posix") ".*"))))
11479 #t)))))
11480 (inputs
11481 `(("alexandria" ,sbcl-alexandria)
11482 ("cffi" ,sbcl-cffi)
11483 ("trivial-features" ,sbcl-trivial-features)))
11484 (native-inputs
11485 `(("cffi-grovel" ,sbcl-cffi-grovel)
11486 ("rt" ,sbcl-rt)))
11487 (synopsis "Operating system interface for Common Lisp")
11488 (description
11489 "Osicat is a lightweight operating system interface for Common Lisp on
11490 Unix-platforms. It is not a POSIX-style API, but rather a simple lispy
11491 accompaniment to the standard ANSI facilities.")
11492 (license license:expat))))
11493
11494 (define-public cl-osicat
11495 (sbcl-package->cl-source-package sbcl-osicat))
11496
11497 (define-public sbcl-clx-xembed
11498 (let ((commit "a5c4b844d31ee68ffa58c933cc1cdddde6990743")
11499 (revision "1"))
11500 (package
11501 (name "sbcl-clx-xembed")
11502 (version (git-version "0.1" revision commit))
11503 (home-page "https://github.com/laynor/clx-xembed")
11504 (source
11505 (origin
11506 (method git-fetch)
11507 (uri (git-reference
11508 (url "https://github.com/laynor/clx-xembed")
11509 (commit commit)))
11510 (file-name (git-file-name name version))
11511 (sha256
11512 (base32 "1abx4v36ycmfjdwpjk4hh8058ya8whwia7ds9vd96q2qsrs57f12"))))
11513 (build-system asdf-build-system/sbcl)
11514 (arguments
11515 `(#:asd-system-name "xembed"))
11516 (inputs
11517 `(("sbcl-clx" ,sbcl-clx)))
11518 (synopsis "CL(x) xembed protocol implementation ")
11519 (description "CL(x) xembed protocol implementation")
11520 ;; MIT License
11521 (license license:expat))))
11522
11523 (define-public cl-clx-xembed
11524 (sbcl-package->cl-source-package sbcl-clx-xembed))
11525
11526 (define-public ecl-clx-xembed
11527 (sbcl-package->ecl-package sbcl-clx-xembed))
11528
11529 (define-public sbcl-quantile-estimator
11530 (package
11531 (name "sbcl-quantile-estimator")
11532 (version "0.0.1")
11533 (source
11534 (origin
11535 (method git-fetch)
11536 (uri (git-reference
11537 (url "https://github.com/deadtrickster/quantile-estimator.cl")
11538 (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
11539 (file-name (git-file-name name version))
11540 (sha256
11541 (base32
11542 "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
11543 (build-system asdf-build-system/sbcl)
11544 (arguments
11545 '(#:asd-system-name "quantile-estimator"))
11546 (inputs
11547 `(("alexandria" ,sbcl-alexandria)))
11548 (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
11549 (synopsis
11550 "Effective computation of biased quantiles over data streams")
11551 (description
11552 "Common Lisp implementation of Graham Cormode and S.
11553 Muthukrishnan's Effective Computation of Biased Quantiles over Data
11554 Streams in ICDE’05.")
11555 (license license:expat)))
11556
11557 (define-public cl-quantile-estimator
11558 (sbcl-package->cl-source-package sbcl-quantile-estimator))
11559
11560 (define-public ecl-quantile-estimator
11561 (sbcl-package->ecl-package sbcl-quantile-estimator))
11562
11563 (define-public sbcl-prometheus
11564 (package
11565 (name "sbcl-prometheus")
11566 (version "0.4.1")
11567 (source
11568 (origin
11569 (method git-fetch)
11570 (uri (git-reference
11571 (url "https://github.com/deadtrickster/prometheus.cl")
11572 (commit "7352b92296996ff383503e19bdd3bcea30409a15")))
11573 (file-name (git-file-name name version))
11574 (sha256
11575 (base32
11576 "0fzczls2kfgdx18pja4lqxjrz72i583185d8nq0pb3s331hhzh0z"))))
11577 (build-system asdf-build-system/sbcl)
11578 (inputs
11579 `(("alexandria" ,sbcl-alexandria)
11580 ("bordeaux-threads" ,sbcl-bordeaux-threads)
11581 ("cl-ppcre" ,sbcl-cl-ppcre)
11582 ("local-time" ,sbcl-local-time)
11583 ("quantile-estimator" ,sbcl-quantile-estimator)))
11584 (home-page "https://github.com/deadtrickster/prometheus.cl")
11585 (synopsis "Prometheus.io Common Lisp client")
11586 (description "Prometheus.io Common Lisp client.")
11587 (license license:expat)))
11588
11589 (define-public cl-prometheus
11590 (sbcl-package->cl-source-package sbcl-prometheus))
11591
11592 (define-public ecl-prometheus
11593 (sbcl-package->ecl-package sbcl-prometheus))
11594
11595 (define-public sbcl-prometheus.collectors.sbcl
11596 (package
11597 (inherit sbcl-prometheus)
11598 (name "sbcl-prometheus.collectors.sbcl")
11599 (inputs `(("prometheus" ,sbcl-prometheus)))
11600 (synopsis "Prometheus collector for SBCL metrics")
11601 (description "Prometheus collector for SBCL metrics.")))
11602
11603 (define-public cl-prometheus.collectors.sbcl
11604 (sbcl-package->cl-source-package sbcl-prometheus.collectors.sbcl))
11605
11606 (define-public sbcl-prometheus.collectors.process
11607 (package
11608 (inherit sbcl-prometheus)
11609 (name "sbcl-prometheus.collectors.process")
11610 (inputs
11611 `(("cffi" ,sbcl-cffi)
11612 ("cffi-grovel" ,sbcl-cffi-grovel)
11613 ("cl-fad" ,sbcl-cl-fad)
11614 ("prometheus" ,sbcl-prometheus)
11615 ("split-sequence" ,sbcl-split-sequence)))
11616 (synopsis "Prometheus collector for process metrics")
11617 (description "Prometheus collector for process metrics.")))
11618
11619 (define-public cl-prometheus.collectors.process
11620 (sbcl-package->cl-source-package sbcl-prometheus.collectors.process))
11621
11622 (define-public ecl-prometheus.collectors.process
11623 (sbcl-package->ecl-package sbcl-prometheus.collectors.process))
11624
11625 (define-public sbcl-prometheus.formats.text
11626 (package
11627 (inherit sbcl-prometheus)
11628 (name "sbcl-prometheus.formats.text")
11629 (inputs
11630 `(("alexandria" ,sbcl-alexandria)
11631 ("prometheus" ,sbcl-prometheus)))
11632 (synopsis "Prometheus client text format")
11633 (description "Prometheus client text format.")))
11634
11635 (define-public cl-prometheus.formats.text
11636 (sbcl-package->cl-source-package sbcl-prometheus.formats.text))
11637
11638 (define-public ecl-prometheus.formats.text
11639 (sbcl-package->ecl-package sbcl-prometheus.formats.text))
11640
11641 (define-public sbcl-prometheus.exposers.hunchentoot
11642 (package
11643 (inherit sbcl-prometheus)
11644 (name "sbcl-prometheus.exposers.hunchentoot")
11645 (inputs
11646 `(("hunchentoot" ,sbcl-hunchentoot)
11647 ("prometheus" ,sbcl-prometheus)
11648 ("prometheus.formats.text" ,sbcl-prometheus.formats.text)
11649 ("salza2" ,sbcl-salza2)
11650 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
11651 (synopsis "Prometheus collector for Hunchentoot metrics")
11652 (description "Prometheus collector for Hunchentoot metrics")))
11653
11654 (define-public cl-prometheus.exposers.hunchentoot
11655 (sbcl-package->cl-source-package sbcl-prometheus.exposers.hunchentoot))
11656
11657 (define-public sbcl-prometheus.pushgateway
11658 (package
11659 (inherit sbcl-prometheus)
11660 (name "sbcl-prometheus.pushgateway")
11661 (inputs
11662 `(("drakma" ,sbcl-drakma)
11663 ("prometheus" ,sbcl-prometheus)
11664 ("prometheus.formats.text" ,sbcl-prometheus.formats.text)))
11665 (synopsis "Prometheus Pushgateway client")
11666 (description "Prometheus Pushgateway client.")))
11667
11668 (define-public cl-prometheus.pushgateway
11669 (sbcl-package->cl-source-package sbcl-prometheus.pushgateway))
11670
11671 (define-public ecl-prometheus.pushgateway
11672 (sbcl-package->ecl-package sbcl-prometheus.pushgateway))
11673
11674 (define-public sbcl-uuid
11675 (let ((commit "e7d6680c3138385c0708f7aaf0c96622eeb140e8"))
11676 (package
11677 (name "sbcl-uuid")
11678 (version (git-version "2012.12.26" "1" commit))
11679 (source
11680 (origin
11681 (method git-fetch)
11682 (uri (git-reference
11683 (url "https://github.com/dardoria/uuid")
11684 (commit commit)))
11685 (file-name (git-file-name name version))
11686 (sha256
11687 (base32
11688 "0jnyp2kibcf5cwi60l6grjrj8wws9chasjvsw7xzwyym2lyid46f"))))
11689 (build-system asdf-build-system/sbcl)
11690 (inputs
11691 `(("ironclad" ,sbcl-ironclad)
11692 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
11693 (home-page "https://github.com/dardoria/uuid")
11694 (synopsis
11695 "Common Lisp implementation of UUIDs according to RFC4122")
11696 (description
11697 "Common Lisp implementation of UUIDs according to RFC4122.")
11698 (license license:llgpl))))
11699
11700 (define-public cl-uuid
11701 (sbcl-package->cl-source-package sbcl-uuid))
11702
11703 (define-public ecl-uuid
11704 (sbcl-package->ecl-package sbcl-uuid))
11705
11706 (define-public sbcl-dissect
11707 (let ((commit "cffd38479f0e64e805f167bbdb240b783ecc8d45"))
11708 (package
11709 (name "sbcl-dissect")
11710 (version (git-version "1.0.0" "1" commit))
11711 (source
11712 (origin
11713 (method git-fetch)
11714 (uri (git-reference
11715 (url "https://github.com/Shinmera/dissect")
11716 (commit commit)))
11717 (file-name (git-file-name name version))
11718 (sha256
11719 (base32
11720 "0rmsjkgjl90gl6ssvgd60hb0d5diyhsiyypvw9hbc0ripvbmk5r5"))))
11721 (build-system asdf-build-system/sbcl)
11722 (inputs
11723 `(("cl-ppcre" ,sbcl-cl-ppcre)))
11724 (home-page "https://shinmera.github.io/dissect/")
11725 (synopsis
11726 "Introspection library for the call stack and restarts")
11727 (description
11728 "Dissect is a small Common Lisp library for introspecting the call stack
11729 and active restarts.")
11730 (license license:zlib))))
11731
11732 (define-public cl-dissect
11733 (sbcl-package->cl-source-package sbcl-dissect))
11734
11735 (define-public ecl-dissect
11736 (sbcl-package->ecl-package sbcl-dissect))
11737
11738 ;; TODO: Uses ASDF's package-inferred-system which is not supported by
11739 ;; asdf-build-system/sbcl as of 2020-05-21. We should fix
11740 ;; asdf-build-system/sbcl.
11741 (define-public sbcl-rove
11742 (package
11743 (name "sbcl-rove")
11744 (version "0.9.6")
11745 (source
11746 (origin
11747 (method git-fetch)
11748 (uri (git-reference
11749 (url "https://github.com/fukamachi/rove")
11750 (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21")))
11751 (file-name (git-file-name name version))
11752 (sha256
11753 (base32
11754 "07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q"))))
11755 (build-system asdf-build-system/sbcl)
11756 (inputs
11757 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11758 ("dissect" ,sbcl-dissect)
11759 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
11760 (home-page "https://github.com/fukamachi/rove")
11761 (synopsis
11762 "Yet another common lisp testing library")
11763 (description
11764 "Rove is a unit testing framework for Common Lisp applications.
11765 This is intended to be a successor of Prove.")
11766 (license license:bsd-3)))
11767
11768 (define-public cl-rove
11769 (sbcl-package->cl-source-package sbcl-rove))
11770
11771 (define-public ecl-rove
11772 (sbcl-package->ecl-package sbcl-rove))
11773
11774 (define-public sbcl-exponential-backoff
11775 (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
11776 (package
11777 (name "sbcl-exponential-backoff")
11778 (version (git-version "0" "1" commit))
11779 (source
11780 (origin
11781 (method git-fetch)
11782 (uri (git-reference
11783 (url "https://github.com/death/exponential-backoff")
11784 (commit commit)))
11785 (file-name (git-file-name name version))
11786 (sha256
11787 (base32
11788 "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
11789 (build-system asdf-build-system/sbcl)
11790 (home-page "https://github.com/death/exponential-backoff")
11791 (synopsis "Exponential backoff algorithm in Common Lisp")
11792 (description
11793 "An implementation of the exponential backoff algorithm in Common Lisp.
11794 Inspired by the implementation found in Chromium. Read the header file to
11795 learn about each of the parameters.")
11796 (license license:expat))))
11797
11798 (define-public cl-exponential-backoff
11799 (sbcl-package->cl-source-package sbcl-exponential-backoff))
11800
11801 (define-public ecl-exponential-backoff
11802 (sbcl-package->ecl-package sbcl-exponential-backoff))
11803
11804 (define-public sbcl-sxql
11805 (let ((commit "5aa8b739492c5829e8623432b5d46482263990e8"))
11806 (package
11807 (name "sbcl-sxql")
11808 (version (git-version "0.1.0" "1" commit))
11809 (source
11810 (origin
11811 (method git-fetch)
11812 (uri (git-reference
11813 (url "https://github.com/fukamachi/sxql")
11814 (commit commit)))
11815 (file-name (git-file-name name version))
11816 (sha256
11817 (base32
11818 "0k25p6w2ld9cn8q8s20lda6yjfyp4q89219sviayfgixnj27avnj"))))
11819 (build-system asdf-build-system/sbcl)
11820 (arguments
11821 `(#:test-asd-file "sxql-test.asd"))
11822 (inputs
11823 `(("alexandria" ,sbcl-alexandria)
11824 ("cl-syntax-annot" ,sbcl-cl-syntax-annot)
11825 ("iterate" ,sbcl-iterate)
11826 ("optima" ,sbcl-optima)
11827 ("split-sequence" ,sbcl-split-sequence)
11828 ("trivial-types" ,sbcl-trivial-types)))
11829 (native-inputs
11830 `(("prove" ,sbcl-prove)
11831 ("prove-asdf" ,sbcl-prove-asdf)))
11832 (home-page "https://github.com/fukamachi/sxql")
11833 (synopsis "SQL generator for Common Lisp")
11834 (description "SQL generator for Common Lisp.")
11835 (license license:bsd-3))))
11836
11837 (define-public cl-sxql
11838 (sbcl-package->cl-source-package sbcl-sxql))
11839
11840 (define-public ecl-sxql
11841 (sbcl-package->ecl-package sbcl-sxql))
11842
11843 (define-public sbcl-1am
11844 (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
11845 (package
11846 (name "sbcl-1am")
11847 (version (git-version "0.0" "1" commit))
11848 (source
11849 (origin
11850 (method git-fetch)
11851 (uri (git-reference
11852 (url "https://github.com/lmj/1am")
11853 (commit commit)))
11854 (file-name (git-file-name name version))
11855 (sha256
11856 (base32
11857 "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
11858 (build-system asdf-build-system/sbcl)
11859 (arguments
11860 `(#:asd-system-name "1am"))
11861 (home-page "https://github.com/lmj/1am")
11862 (synopsis "Minimal testing framework for Common Lisp")
11863 (description "A minimal testing framework for Common Lisp.")
11864 (license license:expat))))
11865
11866 (define-public cl-1am
11867 (sbcl-package->cl-source-package sbcl-1am))
11868
11869 (define-public ecl-1am
11870 (sbcl-package->ecl-package sbcl-1am))
11871
11872 (define-public sbcl-cl-ascii-table
11873 (let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
11874 (revision "1"))
11875 (package
11876 (name "sbcl-cl-ascii-table")
11877 (version (git-version "0.0.0" revision commit))
11878 (source
11879 (origin
11880 (method git-fetch)
11881 (uri (git-reference
11882 (url "https://github.com/telephil/cl-ascii-table")
11883 (commit commit)))
11884 (file-name (git-file-name name version))
11885 (sha256
11886 (base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
11887 (build-system asdf-build-system/sbcl)
11888 (synopsis "Library to make ascii-art tables")
11889 (description
11890 "This is a Common Lisp library to present tabular data in ascii-art
11891 tables.")
11892 (home-page "https://github.com/telephil/cl-ascii-table")
11893 (license license:expat))))
11894
11895 (define-public cl-ascii-table
11896 (sbcl-package->cl-source-package sbcl-cl-ascii-table))
11897
11898 (define-public ecl-cl-ascii-table
11899 (sbcl-package->ecl-package sbcl-cl-ascii-table))
11900
11901 (define-public sbcl-cl-rdkafka
11902 (package
11903 (name "sbcl-cl-rdkafka")
11904 (version "1.0.2")
11905 (source
11906 (origin
11907 (method git-fetch)
11908 (uri (git-reference
11909 (url "https://github.com/SahilKang/cl-rdkafka")
11910 (commit (string-append "v" version))))
11911 (file-name (git-file-name name version))
11912 (sha256
11913 (base32
11914 "1qcgfd4h7syilzmrmd4z2vknbvawda3q3ykw7xm8n381syry4g82"))))
11915 (build-system asdf-build-system/sbcl)
11916 (arguments
11917 `(#:tests? #f ; Attempts to connect to locally running Kafka
11918 #:phases
11919 (modify-phases %standard-phases
11920 (add-after 'unpack 'fix-paths
11921 (lambda* (#:key inputs #:allow-other-keys)
11922 (substitute* "src/low-level/librdkafka-bindings.lisp"
11923 (("librdkafka" all)
11924 (string-append (assoc-ref inputs "librdkafka") "/lib/"
11925 all)))))
11926 (add-before 'cleanup 'move-bundle
11927 (lambda* (#:key outputs #:allow-other-keys)
11928 (let* ((out (assoc-ref outputs "out"))
11929 (actual (string-append out "/lib/sbcl/src/cl-rdkafka.fasl"))
11930 (expected (string-append
11931 out "/lib/sbcl/cl-rdkafka--system.fasl")))
11932 (copy-file actual expected)
11933 #t))))))
11934 (inputs
11935 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11936 ("cffi" ,sbcl-cffi)
11937 ("cffi-grovel" ,sbcl-cffi-grovel)
11938 ("librdkafka" ,librdkafka)
11939 ("lparallel" ,sbcl-lparallel)
11940 ("trivial-garbage" ,sbcl-trivial-garbage)))
11941 (home-page "https://github.com/SahilKang/cl-rdkafka")
11942 (synopsis "Common Lisp client library for Apache Kafka")
11943 (description "A Common Lisp client library for Apache Kafka.")
11944 (license license:gpl3)))
11945
11946 (define-public cl-rdkafka
11947 (sbcl-package->cl-source-package sbcl-cl-rdkafka))
11948
11949 (define-public sbcl-acclimation
11950 (let ((commit "4d51150902568fcd59335f4cc4cfa022df6116a5"))
11951 (package
11952 (name "sbcl-acclimation")
11953 (version (git-version "0.0.0" "1" commit))
11954 (source
11955 (origin
11956 (method git-fetch)
11957 (uri (git-reference
11958 (url "https://github.com/robert-strandh/Acclimation")
11959 (commit commit)))
11960 (file-name (git-file-name name version))
11961 (sha256
11962 (base32
11963 "1aw7rarjl8ai57h0jxnp9hr3dka7qrs55mmbl1p6rhd6xj8mp9wq"))))
11964 (build-system asdf-build-system/sbcl)
11965 (home-page "https://github.com/robert-strandh/Acclimation")
11966 (synopsis "Internationalization library for Common Lisp")
11967 (description "This project is meant to provide tools for
11968 internationalizing Common Lisp programs.
11969
11970 One important aspect of internationalization is of course the language used in
11971 error messages, documentation strings, etc. But with this project we provide
11972 tools for all other aspects of internationalization as well, including dates,
11973 weight, temperature, names of physical quantitites, etc.")
11974 (license license:bsd-2))))
11975
11976 (define-public cl-acclimation
11977 (sbcl-package->cl-source-package sbcl-acclimation))
11978
11979 (define-public sbcl-clump-2-3-tree
11980 (let ((commit "1ea4dbac1cb86713acff9ae58727dd187d21048a"))
11981 (package
11982 (name "sbcl-clump-2-3-tree")
11983 (version (git-version "0.0.0" "1" commit))
11984 (source
11985 (origin
11986 (method git-fetch)
11987 (uri (git-reference
11988 (url "https://github.com/robert-strandh/Clump")
11989 (commit commit)))
11990 (file-name (git-file-name name version))
11991 (sha256
11992 (base32
11993 "1639msyagsswj85gc0wd90jgh8588j3qg5q70by9s2brf2q6w4lh"))))
11994 (arguments
11995 '(#:asd-file "2-3-tree/clump-2-3-tree.asd"
11996 #:asd-system-name "clump-2-3-tree"))
11997 (inputs
11998 `(("acclimation" ,sbcl-acclimation)))
11999 (build-system asdf-build-system/sbcl)
12000 (home-page "https://github.com/robert-strandh/Clump")
12001 (synopsis "Implementation of 2-3 trees for Common Lisp")
12002 (description "The purpose of this library is to provide a collection of
12003 implementations of trees.
12004
12005 In contrast to existing libraries such as cl-containers, it does not impose a
12006 particular use for the trees. Instead, it aims for a stratified design,
12007 allowing client code to choose between different levels of abstraction.
12008
12009 As a consequence of this policy, low-level interfaces are provided where
12010 the concrete representation is exposed, but also high level interfaces
12011 where the trees can be used as search trees or as trees that represent
12012 sequences of objects.")
12013 (license license:bsd-2))))
12014
12015 (define-public sbcl-clump-binary-tree
12016 (package
12017 (inherit sbcl-clump-2-3-tree)
12018 (name "sbcl-clump-binary-tree")
12019 (arguments
12020 '(#:asd-file "Binary-tree/clump-binary-tree.asd"
12021 #:asd-system-name "clump-binary-tree"))
12022 (synopsis "Implementation of binary trees for Common Lisp")))
12023
12024 (define-public sbcl-clump
12025 (package
12026 (inherit sbcl-clump-2-3-tree)
12027 (name "sbcl-clump")
12028 (arguments
12029 '(#:asd-file "clump.asd"
12030 #:asd-system-name "clump"))
12031 (inputs
12032 `(("clump-2-3-tree" ,sbcl-clump-2-3-tree)
12033 ("clump-binary-tree" ,sbcl-clump-binary-tree)))
12034 (synopsis "Collection of tree implementations for Common Lisp")))
12035
12036 (define-public cl-clump
12037 (sbcl-package->cl-source-package sbcl-clump))
12038
12039 (define-public sbcl-cluffer-base
12040 (let ((commit "4aad29c276a58a593064e79972ee4d77cae0af4a"))
12041 (package
12042 (name "sbcl-cluffer-base")
12043 (version (git-version "0.0.0" "1" commit))
12044 (source
12045 (origin
12046 (method git-fetch)
12047 (uri (git-reference
12048 (url "https://github.com/robert-strandh/cluffer")
12049 (commit commit)))
12050 (file-name (git-file-name name version))
12051 (sha256
12052 (base32
12053 "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"))))
12054 (arguments
12055 '(#:asd-file "Base/cluffer-base.asd"
12056 #:asd-system-name "cluffer-base"))
12057 (inputs
12058 `(("acclimation" ,sbcl-acclimation)))
12059 (build-system asdf-build-system/sbcl)
12060 (home-page "https://github.com/robert-strandh/cluffer")
12061 (synopsis "Common Lisp library providing a protocol for text-editor buffers")
12062 (description "Cluffer is a library for representing the buffer of a text
12063 editor. As such, it defines a set of CLOS protocols for client code to
12064 interact with the buffer contents in various ways, and it supplies different
12065 implementations of those protocols for different purposes.")
12066 (license license:bsd-2))))
12067
12068 (define-public sbcl-cluffer-standard-line
12069 (package
12070 (inherit sbcl-cluffer-base)
12071 (name "sbcl-cluffer-standard-line")
12072 (arguments
12073 '(#:asd-file "Standard-line/cluffer-standard-line.asd"
12074 #:asd-system-name "cluffer-standard-line"))
12075 (inputs
12076 `(("cluffer-base" ,sbcl-cluffer-base)))))
12077
12078 (define-public sbcl-cluffer-standard-buffer
12079 (package
12080 (inherit sbcl-cluffer-base)
12081 (name "sbcl-cluffer-standard-buffer")
12082 (arguments
12083 '(#:asd-file "Standard-buffer/cluffer-standard-buffer.asd"
12084 #:asd-system-name "cluffer-standard-buffer"))
12085 (inputs
12086 `(("cluffer-base" ,sbcl-cluffer-base)
12087 ("clump" ,sbcl-clump)))))
12088
12089 (define-public sbcl-cluffer-simple-line
12090 (package
12091 (inherit sbcl-cluffer-base)
12092 (name "sbcl-cluffer-simple-line")
12093 (arguments
12094 '(#:asd-file "Simple-line/cluffer-simple-line.asd"
12095 #:asd-system-name "cluffer-simple-line"))
12096 (inputs
12097 `(("cluffer-base" ,sbcl-cluffer-base)))))
12098
12099 (define-public sbcl-cluffer-simple-buffer
12100 (package
12101 (inherit sbcl-cluffer-base)
12102 (name "sbcl-cluffer-simple-buffer")
12103 (arguments
12104 '(#:asd-file "Simple-buffer/cluffer-simple-buffer.asd"
12105 #:asd-system-name "cluffer-simple-buffer"))
12106 (inputs
12107 `(("cluffer-base" ,sbcl-cluffer-base)))))
12108
12109 (define-public sbcl-cluffer
12110 (package
12111 (inherit sbcl-cluffer-base)
12112 (name "sbcl-cluffer")
12113 (arguments
12114 '(#:asd-file "cluffer.asd"
12115 #:asd-system-name "cluffer"))
12116 (inputs
12117 `(("cluffer-base" ,sbcl-cluffer-base)
12118 ("cluffer-standard-line" ,sbcl-cluffer-standard-line)
12119 ("cluffer-standard-buffer" ,sbcl-cluffer-standard-buffer)
12120 ("cluffer-simple-line" ,sbcl-cluffer-simple-line)
12121 ("cluffer-simple-buffer" ,sbcl-cluffer-simple-buffer)))))
12122
12123 (define-public cl-cluffer
12124 (sbcl-package->cl-source-package sbcl-cluffer))
12125
12126 (define-public sbcl-cl-libsvm-format
12127 (let ((commit "3300f84fd8d9f5beafc114f543f9d83417c742fb")
12128 (revision "0"))
12129 (package
12130 (name "sbcl-cl-libsvm-format")
12131 (version (git-version "0.1.0" revision commit))
12132 (source
12133 (origin
12134 (method git-fetch)
12135 (uri (git-reference
12136 (url "https://github.com/masatoi/cl-libsvm-format")
12137 (commit commit)))
12138 (file-name (git-file-name name version))
12139 (sha256
12140 (base32
12141 "0284aj84xszhkhlivaigf9qj855fxad3mzmv3zfr0qzb5k0nzwrg"))))
12142 (build-system asdf-build-system/sbcl)
12143 (native-inputs
12144 `(("prove" ,sbcl-prove)
12145 ("prove-asdf" ,sbcl-prove-asdf)))
12146 (inputs
12147 `(("alexandria" ,sbcl-alexandria)))
12148 (synopsis "LibSVM data format reader for Common Lisp")
12149 (description
12150 "This Common Lisp library provides a fast reader for data in LibSVM
12151 format.")
12152 (home-page "https://github.com/masatoi/cl-libsvm-format")
12153 (license license:expat))))
12154
12155 (define-public cl-libsvm-format
12156 (sbcl-package->cl-source-package sbcl-cl-libsvm-format))
12157
12158 (define-public ecl-cl-libsvm-format
12159 (sbcl-package->ecl-package sbcl-cl-libsvm-format))
12160
12161 (define-public sbcl-cl-online-learning
12162 (let ((commit "fc7a34f4f161cd1c7dd747d2ed8f698947781423")
12163 (revision "0"))
12164 (package
12165 (name "sbcl-cl-online-learning")
12166 (version (git-version "0.5" revision commit))
12167 (source
12168 (origin
12169 (method git-fetch)
12170 (uri (git-reference
12171 (url "https://github.com/masatoi/cl-online-learning")
12172 (commit commit)))
12173 (file-name (git-file-name name version))
12174 (sha256
12175 (base32
12176 "14x95rlg80ay5hv645ki57pqvy12v28hz4k1w0f6bsfi2rmpxchq"))))
12177 (build-system asdf-build-system/sbcl)
12178 (native-inputs
12179 `(("prove" ,sbcl-prove)
12180 ("prove-asdf" ,sbcl-prove-asdf)))
12181 (inputs
12182 `(("cl-libsvm-format" ,sbcl-cl-libsvm-format)
12183 ("cl-store" ,sbcl-cl-store)))
12184 (arguments
12185 `(;; FIXME: Tests pass but then the check phase crashes
12186 #:tests? #f))
12187 (synopsis "Online Machine Learning for Common Lisp")
12188 (description
12189 "This library contains a collection of machine learning algorithms for
12190 online linear classification written in Common Lisp.")
12191 (home-page "https://github.com/masatoi/cl-online-learning")
12192 (license license:expat))))
12193
12194 (define-public cl-online-learning
12195 (sbcl-package->cl-source-package sbcl-cl-online-learning))
12196
12197 (define-public ecl-cl-online-learning
12198 (sbcl-package->ecl-package sbcl-cl-online-learning))
12199
12200 (define-public sbcl-cl-random-forest
12201 (let ((commit "fedb36ce99bb6f4d7e3a7dd6d8b058f331308f91")
12202 (revision "1"))
12203 (package
12204 (name "sbcl-cl-random-forest")
12205 (version (git-version "0.1" revision commit))
12206 (source
12207 (origin
12208 (method git-fetch)
12209 (uri (git-reference
12210 (url "https://github.com/masatoi/cl-random-forest")
12211 (commit commit)))
12212 (file-name (git-file-name name version))
12213 (sha256
12214 (base32
12215 "0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
12216 (build-system asdf-build-system/sbcl)
12217 (native-inputs
12218 `(("prove" ,sbcl-prove)
12219 ("prove-asdf" ,sbcl-prove-asdf)
12220 ("trivial-garbage" ,sbcl-trivial-garbage)))
12221 (inputs
12222 `(("alexandria" ,sbcl-alexandria)
12223 ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
12224 ("cl-online-learning" ,sbcl-cl-online-learning)
12225 ("lparallel" ,sbcl-lparallel)))
12226 (arguments
12227 `(#:tests? #f)) ; The tests download data from the Internet
12228 (synopsis "Random Forest and Global Refinement for Common Lisp")
12229 (description
12230 "CL-random-forest is an implementation of Random Forest for multiclass
12231 classification and univariate regression written in Common Lisp. It also
12232 includes an implementation of Global Refinement of Random Forest.")
12233 (home-page "https://github.com/masatoi/cl-random-forest")
12234 (license license:expat))))
12235
12236 (define-public cl-random-forest
12237 (sbcl-package->cl-source-package sbcl-cl-random-forest))
12238
12239 (define-public ecl-cl-random-forest
12240 (sbcl-package->ecl-package sbcl-cl-random-forest))
12241
12242 (define-public sbcl-bordeaux-fft
12243 (let ((commit "4a1f5600cae59bdabcb32de4ee2d7d73a9450d6e")
12244 (revision "0"))
12245 (package
12246 (name "sbcl-bordeaux-fft")
12247 (version (git-version "1.0.1" revision commit))
12248 (source
12249 (origin
12250 (method git-fetch)
12251 (uri (git-reference
12252 (url "https://github.com/ahefner/bordeaux-fft")
12253 (commit commit)))
12254 (file-name (git-file-name name version))
12255 (sha256
12256 (base32 "0j584w6kq2k6r8lp2i14f9605rxhp3r15s33xs08iz1pndn6iwqf"))))
12257 (build-system asdf-build-system/sbcl)
12258 (home-page "http://vintage-digital.com/hefner/software/bordeaux-fft/")
12259 (synopsis "Fast Fourier Transform for Common Lisp")
12260 (description
12261 "The Bordeaux-FFT library provides a reasonably efficient implementation
12262 of the Fast Fourier Transform and its inverse for complex-valued inputs, in
12263 portable Common Lisp.")
12264 (license license:gpl2+))))
12265
12266 (define-public cl-bordeaux-fft
12267 (sbcl-package->cl-source-package sbcl-bordeaux-fft))
12268
12269 (define-public ecl-bordeaux-fft
12270 (sbcl-package->ecl-package sbcl-bordeaux-fft))
12271
12272 (define-public sbcl-napa-fft3
12273 (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236")
12274 (revision "0"))
12275 (package
12276 (name "sbcl-napa-fft3")
12277 (version (git-version "0.0.1" revision commit))
12278 (source
12279 (origin
12280 (method git-fetch)
12281 (uri (git-reference
12282 (url "https://github.com/pkhuong/Napa-FFT3")
12283 (commit commit)))
12284 (file-name (git-file-name name version))
12285 (sha256
12286 (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp"))))
12287 (build-system asdf-build-system/sbcl)
12288 (home-page "https://github.com/pkhuong/Napa-FFT3")
12289 (synopsis "Fast Fourier Transform routines in Common Lisp")
12290 (description
12291 "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also
12292 buildings blocks to express common operations that involve DFTs: filtering,
12293 convolutions, etc.")
12294 (license license:bsd-3))))
12295
12296 (define-public cl-napa-fft3
12297 (sbcl-package->cl-source-package sbcl-napa-fft3))
12298
12299 (define-public sbcl-cl-tga
12300 (let ((commit "4dc2f7b8a259b9360862306640a07a23d4afaacc")
12301 (revision "0"))
12302 (package
12303 (name "sbcl-cl-tga")
12304 (version (git-version "0.0.0" revision commit))
12305 (source
12306 (origin
12307 (method git-fetch)
12308 (uri (git-reference
12309 (url "https://github.com/fisxoj/cl-tga")
12310 (commit commit)))
12311 (file-name (git-file-name name version))
12312 (sha256
12313 (base32 "03k3npmn0xd3fd2m7vwxph82av2xrfb150imqrinlzqmzvz1v1br"))))
12314 (build-system asdf-build-system/sbcl)
12315 (home-page "https://github.com/fisxoj/cl-tga")
12316 (synopsis "TGA file loader for Common Lisp")
12317 (description
12318 "Cl-tga was written to facilitate loading @emph{.tga} files into OpenGL
12319 programs. It's a very simple library, and, at the moment, only supports
12320 non-RLE encoded forms of the files.")
12321 (license license:expat))))
12322
12323 (define-public cl-tga
12324 (sbcl-package->cl-source-package sbcl-cl-tga))
12325
12326 (define-public ecl-cl-tga
12327 (sbcl-package->ecl-package sbcl-cl-tga))
12328
12329 (define-public sbcl-com.gigamonkeys.binary-data
12330 (let ((commit "22e908976d7f3e2318b7168909f911b4a00963ee")
12331 (revision "0"))
12332 (package
12333 (name "sbcl-com.gigamonkeys.binary-data")
12334 (version (git-version "0.0.0" revision commit))
12335 (source
12336 (origin
12337 (method git-fetch)
12338 (uri (git-reference
12339 (url "https://github.com/gigamonkey/monkeylib-binary-data")
12340 (commit commit)))
12341 (file-name (git-file-name name version))
12342 (sha256
12343 (base32 "072v417vmcnvmyh8ddq9vmwwrizm7zwz9dpzi14qy9nsw8q649zw"))))
12344 (build-system asdf-build-system/sbcl)
12345 (inputs
12346 `(("alexandria" ,sbcl-alexandria)))
12347 (home-page "https://github.com/gigamonkey/monkeylib-binary-data")
12348 (synopsis "Common Lisp library for reading and writing binary data")
12349 (description
12350 "This a Common Lisp library for reading and writing binary data. It is
12351 based on code from chapter 24 of the book @emph{Practical Common Lisp}.")
12352 (license license:bsd-3))))
12353
12354 (define-public cl-com.gigamonkeys.binary-data
12355 (sbcl-package->cl-source-package sbcl-com.gigamonkeys.binary-data))
12356
12357 (define-public ecl-com.gigamonkeys.binary-data
12358 (sbcl-package->ecl-package sbcl-com.gigamonkeys.binary-data))
12359
12360 (define-public sbcl-deflate
12361 (package
12362 (name "sbcl-deflate")
12363 (version "1.0.3")
12364 (source
12365 (origin
12366 (method git-fetch)
12367 (uri (git-reference
12368 (url "https://github.com/pmai/Deflate")
12369 (commit (string-append "release-" version))))
12370 (file-name (git-file-name name version))
12371 (sha256
12372 (base32 "1jpdjnxh6cw2d8hk70r2sxn92is52s9b855irvwkdd777fdciids"))))
12373 (build-system asdf-build-system/sbcl)
12374 (home-page "https://github.com/pmai/Deflate")
12375 (synopsis "Native deflate decompression for Common Lisp")
12376 (description
12377 "This library is an implementation of Deflate (RFC 1951) decompression,
12378 with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952)
12379 wrappers of deflate streams. It currently does not handle compression.")
12380 (license license:expat)))
12381
12382 (define-public cl-deflate
12383 (sbcl-package->cl-source-package sbcl-deflate))
12384
12385 (define-public ecl-deflate
12386 (sbcl-package->ecl-package sbcl-deflate))
12387
12388 (define-public sbcl-skippy
12389 (let ((commit "e456210202ca702c792292c5060a264d45e47090")
12390 (revision "0"))
12391 (package
12392 (name "sbcl-skippy")
12393 (version (git-version "1.3.12" revision commit))
12394 (source
12395 (origin
12396 (method git-fetch)
12397 (uri (git-reference
12398 (url "https://github.com/xach/skippy")
12399 (commit commit)))
12400 (file-name (git-file-name name version))
12401 (sha256
12402 (base32 "1sxbn5nh24qpx9w64x8mhp259cxcl1x8p126wk3b91ijjsj7l5vj"))))
12403 (build-system asdf-build-system/sbcl)
12404 (home-page "https://xach.com/lisp/skippy/")
12405 (synopsis "Common Lisp library for GIF images")
12406 (description
12407 "Skippy is a Common Lisp library to read and write GIF image files.")
12408 (license license:bsd-2))))
12409
12410 (define-public cl-skippy
12411 (sbcl-package->cl-source-package sbcl-skippy))
12412
12413 (define-public ecl-skippy
12414 (sbcl-package->ecl-package sbcl-skippy))