gnu: Add cl-pcg.
[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, 2020 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, 2021 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, 2021 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 ;;; Copyright © 2020, 2021 Adam Kandur <rndd@tuta.io>
23 ;;; Copyright © 2020, 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
24 ;;; Copyright © 2021 Aurora <rind38@disroot.org>
25 ;;; Copyright © 2021 Matthew Kraai <kraai@ftbfs.org>
26 ;;;
27 ;;; This file is part of GNU Guix.
28 ;;;
29 ;;; GNU Guix is free software; you can redistribute it and/or modify it
30 ;;; under the terms of the GNU General Public License as published by
31 ;;; the Free Software Foundation; either version 3 of the License, or (at
32 ;;; your option) any later version.
33 ;;;
34 ;;; GNU Guix is distributed in the hope that it will be useful, but
35 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
36 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
37 ;;; GNU General Public License for more details.
38 ;;;
39 ;;; You should have received a copy of the GNU General Public License
40 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
41
42 ;;; This file only contains Common Lisp libraries.
43 ;;; Common Lisp compilers and tooling go to lisp.scm.
44 ;;; Common Lisp applications should go to the most appropriate file,
45 ;;; e.g. StumpWM is in wm.scm.
46
47 (define-module (gnu packages lisp-xyz)
48 #:use-module (gnu packages)
49 #:use-module ((guix licenses) #:prefix license:)
50 #:use-module (guix packages)
51 #:use-module (guix download)
52 #:use-module (guix git-download)
53 #:use-module (guix hg-download)
54 #:use-module (guix utils)
55 #:use-module (guix build-system asdf)
56 #:use-module (guix build-system trivial)
57 #:use-module (gnu packages base)
58 #:use-module (gnu packages c)
59 #:use-module (gnu packages compression)
60 #:use-module (gnu packages databases)
61 #:use-module (gnu packages enchant)
62 #:use-module (gnu packages file)
63 #:use-module (gnu packages fonts)
64 #:use-module (gnu packages fontutils)
65 #:use-module (gnu packages glib)
66 #:use-module (gnu packages gtk)
67 #:use-module (gnu packages imagemagick)
68 #:use-module (gnu packages libevent)
69 #:use-module (gnu packages libffi)
70 #:use-module (gnu packages linux)
71 #:use-module (gnu packages lisp)
72 #:use-module (gnu packages maths)
73 #:use-module (gnu packages mp3)
74 #:use-module (gnu packages networking)
75 #:use-module (gnu packages pkg-config)
76 #:use-module (gnu packages python)
77 #:use-module (gnu packages python-xyz)
78 #:use-module (gnu packages sqlite)
79 #:use-module (gnu packages tcl)
80 #:use-module (gnu packages tls)
81 #:use-module (gnu packages web)
82 #:use-module (gnu packages webkit)
83 #:use-module (gnu packages xdisorg)
84 #:use-module (ice-9 match)
85 #:use-module (srfi srfi-1)
86 #:use-module (srfi srfi-19))
87
88 (define-public sbcl-alexandria
89 (package
90 (name "sbcl-alexandria")
91 (version "1.2")
92 (source
93 (origin
94 (method git-fetch)
95 (uri (git-reference
96 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
97 (commit (string-append "v" version))))
98 (sha256
99 (base32
100 "0bcqs0z9xlqgjz43qzgq9i07vdlnjllpm1wwa37wpkg0w975r712"))
101 (file-name (git-file-name name version))))
102 (build-system asdf-build-system/sbcl)
103 (native-inputs
104 `(("rt" ,sbcl-rt)))
105 (synopsis "Collection of portable utilities for Common Lisp")
106 (description
107 "Alexandria is a collection of portable utilities. It does not contain
108 conceptual extensions to Common Lisp. It is conservative in scope, and
109 portable between implementations.")
110 (home-page "https://common-lisp.net/project/alexandria/")
111 (license license:public-domain)))
112
113 (define-public cl-alexandria
114 (sbcl-package->cl-source-package sbcl-alexandria))
115
116 (define-public ecl-alexandria
117 (sbcl-package->ecl-package sbcl-alexandria))
118
119 (define-public sbcl-golden-utils
120 (let ((commit "9424419d867d5c2f819196ee41667a818a5058e7")
121 (revision "1"))
122 (package
123 (name "sbcl-golden-utils")
124 (version (git-version "0.0.0" revision commit))
125 (source
126 (origin
127 (method git-fetch)
128 (uri (git-reference
129 (url "https://git.mfiano.net/mfiano/golden-utils")
130 (commit commit)))
131 (file-name (git-file-name name version))
132 (sha256
133 (base32 "15x0phm6820yj3h37ibi06gjyh6z45sd2nz2n8lcbfflwm086q0h"))))
134 (build-system asdf-build-system/sbcl)
135 (inputs
136 `(("alexandria" ,sbcl-alexandria)))
137 (home-page "https://git.mfiano.net/mfiano/golden-utils")
138 (synopsis "Common Lisp utility library")
139 (description
140 "This is a Common Lisp library providing various utilities.")
141 (license license:expat))))
142
143 (define-public ecl-golden-utils
144 (sbcl-package->ecl-package sbcl-golden-utils))
145
146 (define-public cl-golden-utils
147 (sbcl-package->cl-source-package sbcl-golden-utils))
148
149 (define-public sbcl-asdf-finalizers
150 (let ((commit "7f537f6c598b662ae987c6acc268dd27c25977e0")
151 (revision "1"))
152 (package
153 (name "sbcl-asdf-finalizers")
154 (version (git-version "0.0.0" revision commit))
155 (source
156 (origin
157 (method git-fetch)
158 (uri (git-reference
159 (url "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
160 (commit commit)))
161 (file-name (git-file-name name version))
162 (sha256
163 (base32 "1w56c9yjjydjshsgqxz57qlp2v3r4ilbisnsgiqphvxnhvd41y0v"))))
164 (build-system asdf-build-system/sbcl)
165 (native-inputs
166 `(("fare-utils" ,sbcl-fare-utils)
167 ("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
168 (arguments
169 `(#:asd-files '("asdf-finalizers.asd"
170 "list-of.asd"
171 "asdf-finalizers-test.asd")
172 #:asd-systems '("asdf-finalizers"
173 "list-of")))
174 (home-page "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
175 (synopsis "Enforced calling of finalizers for Lisp code")
176 (description "This library allows you to implement and enforce proper
177 finalization of compile-time constructs while building Lisp source files.
178
179 It produces two systems: asdf-finalizers and list-of.")
180 (license license:expat))))
181
182 (define-public ecl-asdf-finalizers
183 (sbcl-package->ecl-package sbcl-asdf-finalizers))
184
185 (define-public cl-asdf-finalizers
186 (sbcl-package->cl-source-package sbcl-asdf-finalizers))
187
188 (define-public sbcl-net.didierverna.asdf-flv
189 (package
190 (name "sbcl-net.didierverna.asdf-flv")
191 (version "2.1")
192 (source
193 (origin
194 (method git-fetch)
195 (uri (git-reference
196 (url "https://github.com/didierverna/asdf-flv")
197 (commit (string-append "version-" version))))
198 (file-name (git-file-name "asdf-flv" version))
199 (sha256
200 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
201 (build-system asdf-build-system/sbcl)
202 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
203 (description "ASDF-FLV provides support for file-local variables through
204 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
205 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
206 dynamic binding is created before processing the file, so that any
207 modification to the variable becomes essentially file-local.
208
209 In order to make one or several variables file-local, use the macros
210 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
211 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
212 (license (license:non-copyleft
213 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
214 "GNU All-Permissive License"))))
215
216 (define-public cl-net.didierverna.asdf-flv
217 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
218
219 (define-public ecl-net.didierverna.asdf-flv
220 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
221
222 (define-public sbcl-command-line-arguments
223 (let ((commit "fbac862fb01c0e368141204f3f639920462c23fe")
224 (revision "1"))
225 (package
226 (name "sbcl-command-line-arguments")
227 (version (git-version "2.0.0" revision commit))
228 (source
229 (origin
230 (method git-fetch)
231 (uri (git-reference
232 (url "https://github.com/fare/command-line-arguments")
233 (commit commit)))
234 (file-name (git-file-name name version))
235 (sha256
236 (base32 "054m1ikndzqf72mb9ajaa64136cwr3bgag4yfbi1574a9vq75mjq"))))
237 (build-system asdf-build-system/sbcl)
238 (home-page "https://github.com/fare/command-line-arguments")
239 (synopsis "Trivial command-line argument parsing library for Common Lisp")
240 (description "This is a library to abstract away the parsing of
241 Unix-style command-line arguments. Use it in conjunction with asdf:program-op
242 or cl-launch for portable processing of command-line arguments.")
243 (license license:expat))))
244
245 (define-public ecl-command-line-arguments
246 (sbcl-package->ecl-package sbcl-command-line-arguments))
247
248 (define-public cl-command-line-arguments
249 (sbcl-package->cl-source-package sbcl-command-line-arguments))
250
251 (define-public sbcl-fiveam
252 (package
253 (name "sbcl-fiveam")
254 (version "1.4.1")
255 (source
256 (origin
257 (method git-fetch)
258 (uri (git-reference
259 (url "https://github.com/sionescu/fiveam")
260 (commit (string-append "v" version))))
261 (file-name (git-file-name "fiveam" version))
262 (sha256
263 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
264 (inputs
265 `(("alexandria" ,sbcl-alexandria)
266 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
267 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
268 (build-system asdf-build-system/sbcl)
269 (synopsis "Common Lisp testing framework")
270 (description "FiveAM is a simple (as far as writing and running tests
271 goes) regression testing framework. It has been designed with Common Lisp's
272 interactive development model in mind.")
273 (home-page "https://common-lisp.net/project/fiveam/")
274 (license license:bsd-3)))
275
276 (define-public cl-fiveam
277 (sbcl-package->cl-source-package sbcl-fiveam))
278
279 (define-public ecl-fiveam
280 (sbcl-package->ecl-package sbcl-fiveam))
281
282 (define-public sbcl-trivial-timeout
283 (let ((commit "feb869357f40f5e109570fb40abad215fb370c6c")
284 (revision "1"))
285 (package
286 (name "sbcl-trivial-timeout")
287 (version (git-version "0.1.5" revision commit))
288 (source
289 (origin
290 (method git-fetch)
291 (uri (git-reference
292 (url "https://github.com/gwkkwg/trivial-timeout/")
293 (commit commit)))
294 (file-name (git-file-name "trivial-timeout" version))
295 (sha256
296 (base32 "1kninxwvvih9nhh7a9y8lfgi7pdr76675y1clw4ss17vz8fbim5p"))))
297 (build-system asdf-build-system/sbcl)
298 (native-inputs
299 `(("lift" ,sbcl-lift)))
300 (arguments
301 ;; NOTE: (Sharlatan-20210202T231437+0000): Due to the age of this library
302 ;; tests use some deprecated functionality and keep failing.
303 `(#:tests? #f))
304 (home-page "https://github.com/gwkkwg/trivial-timeout/")
305 (synopsis "Timeout library for Common Lisp")
306 (description
307 "This library provides an OS and implementation independent access to
308 timeouts.")
309 (license license:expat))))
310
311 (define-public ecl-trivial-timeout
312 (sbcl-package->ecl-package sbcl-trivial-timeout))
313
314 (define-public cl-trivial-timeout
315 (sbcl-package->cl-source-package sbcl-trivial-timeout))
316
317 (define-public sbcl-bordeaux-threads
318 (package
319 (name "sbcl-bordeaux-threads")
320 (version "0.8.8")
321 (source (origin
322 (method git-fetch)
323 (uri (git-reference
324 (url "https://github.com/sionescu/bordeaux-threads")
325 (commit (string-append "v" version))))
326 (sha256
327 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"))
328 (file-name
329 (git-file-name "bordeaux-threads" version))))
330 (inputs `(("alexandria" ,sbcl-alexandria)))
331 (native-inputs `(("fiveam" ,sbcl-fiveam)))
332 (build-system asdf-build-system/sbcl)
333 (synopsis "Portable shared-state concurrency library for Common Lisp")
334 (description "BORDEAUX-THREADS is a proposed standard for a minimal
335 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
336 support.")
337 (home-page "https://common-lisp.net/project/bordeaux-threads/")
338 (license license:x11)))
339
340 (define-public cl-bordeaux-threads
341 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
342
343 (define-public ecl-bordeaux-threads
344 (sbcl-package->ecl-package sbcl-bordeaux-threads))
345
346 (define-public sbcl-trivial-gray-streams
347 (let ((revision "1")
348 (commit "ebd59b1afed03b9dc8544320f8f432fdf92ab010"))
349 (package
350 (name "sbcl-trivial-gray-streams")
351 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
352 (source
353 (origin
354 (method git-fetch)
355 (uri
356 (git-reference
357 (url "https://github.com/trivial-gray-streams/trivial-gray-streams")
358 (commit commit)))
359 (sha256
360 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94"))
361 (file-name
362 (string-append "trivial-gray-streams-" version "-checkout"))))
363 (build-system asdf-build-system/sbcl)
364 (synopsis "Compatibility layer for Gray streams implementations")
365 (description "Gray streams is an interface proposed for inclusion with
366 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
367 popular CL implementations implement it. This package provides an extremely
368 thin compatibility layer for gray streams.")
369 (home-page "https://www.cliki.net/trivial-gray-streams")
370 (license license:x11))))
371
372 (define-public cl-trivial-gray-streams
373 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
374
375 (define-public ecl-trivial-gray-streams
376 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
377
378 (define-public sbcl-fiasco
379 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
380 (revision "1"))
381 (package
382 (name "sbcl-fiasco")
383 (version (git-version "0.0.1" revision commit))
384 (source
385 (origin
386 (method git-fetch)
387 (uri (git-reference
388 (url "https://github.com/joaotavora/fiasco")
389 (commit commit)))
390 (file-name (git-file-name "fiasco" version))
391 (sha256
392 (base32
393 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
394 (build-system asdf-build-system/sbcl)
395 (inputs
396 `(("alexandria" ,sbcl-alexandria)
397 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
398 (synopsis "Simple and powerful test framework for Common Lisp")
399 (description "A Common Lisp test framework that treasures your failures,
400 logical continuation of Stefil. It focuses on interactive debugging.")
401 (home-page "https://github.com/joaotavora/fiasco")
402 ;; LICENCE specifies this is public-domain unless the legislation
403 ;; doesn't allow or recognize it. In that case it falls back to a
404 ;; permissive licence.
405 (license (list license:public-domain
406 (license:x11-style "file://LICENCE"))))))
407
408 (define-public cl-fiasco
409 (sbcl-package->cl-source-package sbcl-fiasco))
410
411 (define-public ecl-fiasco
412 (sbcl-package->ecl-package sbcl-fiasco))
413
414 (define-public sbcl-flexi-streams
415 (package
416 (name "sbcl-flexi-streams")
417 (version "1.0.18")
418 (source
419 (origin
420 (method git-fetch)
421 (uri (git-reference
422 (url "https://github.com/edicl/flexi-streams")
423 (commit (string-append "v" version))))
424 (file-name (git-file-name "flexi-streams" version))
425 (sha256
426 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
427 (build-system asdf-build-system/sbcl)
428 (arguments
429 `(#:phases
430 (modify-phases %standard-phases
431 (add-after 'unpack 'make-git-checkout-writable
432 (lambda _
433 (for-each make-file-writable (find-files "."))
434 #t)))))
435 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
436 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
437 (description "Flexi-streams is an implementation of \"virtual\" bivalent
438 streams that can be layered atop real binary or bivalent streams and that can
439 be used to read and write character data in various single- or multi-octet
440 encodings which can be changed on the fly. It also supplies in-memory binary
441 streams which are similar to string streams.")
442 (home-page "http://weitz.de/flexi-streams/")
443 (license license:bsd-3)))
444
445 (define-public cl-flexi-streams
446 (sbcl-package->cl-source-package sbcl-flexi-streams))
447
448 (define-public ecl-flexi-streams
449 (sbcl-package->ecl-package sbcl-flexi-streams))
450
451 (define-public sbcl-cl-abnf
452 ;; There are no releases
453 (let ((commit "ba1fbb104dedbdaddb1ef93d2e4da711bd96cd70")
454 (revision "1"))
455 (package
456 (name "sbcl-cl-abnf")
457 (version (git-version "0.0.0" revision commit))
458 (source
459 (origin
460 (method git-fetch)
461 (uri (git-reference
462 (url "https://github.com/dimitri/cl-abnf")
463 (commit commit)))
464 (file-name (git-file-name "cl-abnf" version))
465 (sha256
466 (base32 "0f09nsndxa90acm71zd4qdnp40v705a4sqm04mnv9x76h6dlggmz"))))
467 (build-system asdf-build-system/sbcl)
468 (inputs
469 `(("cl-ppcre" ,sbcl-cl-ppcre)
470 ("esrap" ,sbcl-esrap)))
471 (arguments
472 `(#:asd-systems '("abnf")))
473 (home-page "https://github.com/dimitri/cl-abnf")
474 (synopsis "ABNF parser generator for Common Lisp")
475 (description "This Common Lisp library implements a parser generator for
476 the ABNF grammar format as described in RFC2234. The generated parser is a
477 regular expression scanner provided by the cl-ppcre lib, which means that we
478 can't parse recursive grammar definition. One such definition is the ABNF
479 definition as given by the RFC. Fortunately, as you have this lib, you most
480 probably don't need to generate another parser to handle that particular ABNF
481 grammar.")
482 (license license:expat))))
483
484 (define-public cl-abnf
485 (sbcl-package->cl-source-package sbcl-cl-abnf))
486
487 (define-public ecl-cl-abnf
488 (sbcl-package->ecl-package sbcl-cl-abnf))
489
490 (define-public sbcl-cl-ppcre
491 (package
492 (name "sbcl-cl-ppcre")
493 (version "2.1.1")
494 (source
495 (origin
496 (method git-fetch)
497 (uri (git-reference
498 (url "https://github.com/edicl/cl-ppcre")
499 (commit (string-append "v" version))))
500 (file-name (git-file-name "cl-ppcre" version))
501 (sha256
502 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
503 (build-system asdf-build-system/sbcl)
504 (native-inputs
505 `(("flexi-streams" ,sbcl-flexi-streams)))
506 (arguments
507 `(#:phases
508 (modify-phases %standard-phases
509 (add-after 'unpack 'disable-ppcre-unicode
510 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
511 ;; to work around the circular dependency between edicl/cl-ppcre
512 ;; and edicl/cl-unicode.
513 (lambda _
514 (delete-file "cl-ppcre-unicode.asd")
515 #t)))))
516 (synopsis "Portable regular expression library for Common Lisp")
517 (description "CL-PPCRE is a portable regular expression library for Common
518 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
519 compatible with ANSI-compliant Common Lisp implementations.")
520 (home-page "http://weitz.de/cl-ppcre/")
521 (license license:bsd-2)))
522
523 (define-public cl-ppcre
524 (sbcl-package->cl-source-package sbcl-cl-ppcre))
525
526 (define-public ecl-cl-ppcre
527 (sbcl-package->ecl-package sbcl-cl-ppcre))
528
529 (define-public sbcl-ubiquitous
530 (let ((commit "35eb7bd9e1b3daee1705f6b41260775180cce8af")
531 (revision "1"))
532 (package
533 (name "sbcl-ubiquitous")
534 (version (git-version "2.0.0" revision commit))
535 (source
536 (origin
537 (method git-fetch)
538 (uri (git-reference
539 (url "https://github.com/Shinmera/ubiquitous")
540 (commit commit)))
541 (file-name (git-file-name "ubiquitous" version))
542 (sha256
543 (base32 "1xlkaqmjcpkiv2xl2s2pvvrv976dlc846wm16s1lj62iy1315i49"))))
544 (build-system asdf-build-system/sbcl)
545 (inputs
546 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
547 (arguments
548 '(#:asd-systems '("ubiquitous"
549 "ubiquitous-concurrent")))
550 (home-page "https://shinmera.github.io/ubiquitous/")
551 (synopsis "Application configuration mechanism for Common Lisp")
552 (description
553 "@code{UBIQUITOUS} is a very easy-to-use library for persistent
554 configuration storage. It automatically takes care of finding a suitable place
555 to save your data, and provides simple functions to access and modify the data
556 within.")
557 (license license:zlib))))
558
559 (define-public ecl-ubiquitous
560 (sbcl-package->ecl-package sbcl-ubiquitous))
561
562 (define-public cl-ubiquitous
563 (sbcl-package->cl-source-package sbcl-ubiquitous))
564
565 (define-public sbcl-uax-15
566 (package
567 (name "sbcl-uax-15")
568 (version "0.1.1")
569 (source
570 (origin
571 (method git-fetch)
572 (uri (git-reference
573 (url "https://github.com/sabracrolleton/uax-15")
574 (commit (string-append "v" version))))
575 (file-name (git-file-name "uax-15" version))
576 (sha256
577 (base32 "0p2ckw7mzxhwa9vbwj2q2dzayz9dl94d9yqd2ynp0pc5v8i0n2fr"))))
578 (build-system asdf-build-system/sbcl)
579 (arguments
580 `(#:asd-systems
581 '("uax-15")))
582 (native-inputs
583 `(("fiveam" ,sbcl-fiveam)))
584 (inputs
585 `(("cl-ppcre" ,sbcl-cl-ppcre)
586 ("split-sequence" ,sbcl-split-sequence)))
587 (home-page "https://github.com/sabracrolleton/uax-15")
588 (synopsis "Common Lisp implementation of unicode normalization functions")
589 (description
590 "This package provides supports for unicode normalization, RFC8264 and
591 RFC7564.")
592 (license license:expat)))
593
594 (define-public cl-uax-15
595 (sbcl-package->cl-source-package sbcl-uax-15))
596
597 (define-public ecl-uax-15
598 (sbcl-package->ecl-package sbcl-uax-15))
599
600 (define-public sbcl-cl-unicode
601 (package
602 (name "sbcl-cl-unicode")
603 (version "0.1.6")
604 (source (origin
605 (method git-fetch)
606 (uri (git-reference
607 (url "https://github.com/edicl/cl-unicode")
608 (commit (string-append "v" version))))
609 (file-name (git-file-name name version))
610 (sha256
611 (base32
612 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
613 (build-system asdf-build-system/sbcl)
614 (native-inputs
615 `(("flexi-streams" ,sbcl-flexi-streams)))
616 (inputs
617 `(("cl-ppcre" ,sbcl-cl-ppcre)))
618 (home-page "http://weitz.de/cl-unicode/")
619 (synopsis "Portable Unicode library for Common Lisp")
620 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
621 is compatible with perl. It is pretty fast, thread-safe, and compatible with
622 ANSI-compliant Common Lisp implementations.")
623 (license license:bsd-2)))
624
625 (define-public ecl-cl-unicode
626 (sbcl-package->ecl-package sbcl-cl-unicode))
627
628 (define-public cl-unicode
629 (sbcl-package->cl-source-package sbcl-cl-unicode))
630
631 (define-public sbcl-cl-ppcre-unicode
632 (package (inherit sbcl-cl-ppcre)
633 (name "sbcl-cl-ppcre-unicode")
634 (inputs
635 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
636 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))
637 (arguments
638 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
639 #:phases
640 (modify-phases %standard-phases
641 (add-after 'unpack 'disable-ppcre
642 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
643 ;; to work around the circular dependency between edicl/cl-ppcre
644 ;; and edicl/cl-unicode.
645 (lambda _
646 (delete-file "cl-ppcre.asd")
647 #t)))))))
648
649 (define-public cl-ppcre-unicode
650 (sbcl-package->cl-source-package sbcl-cl-ppcre-unicode))
651
652 (define-public ecl-cl-ppcre-unicode
653 (sbcl-package->ecl-package sbcl-cl-ppcre-unicode))
654
655 (define-public sbcl-zpb-ttf
656 (package
657 (name "sbcl-zpb-ttf")
658 (version "1.0.3")
659 (source
660 (origin
661 (method git-fetch)
662 (uri (git-reference
663 (url "https://github.com/xach/zpb-ttf")
664 (commit (string-append "release-" version))))
665 (file-name (git-file-name name version))
666 (sha256
667 (base32
668 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
669 (build-system asdf-build-system/sbcl)
670 (home-page "https://github.com/xach/zpb-ttf")
671 (synopsis "TrueType font file access for Common Lisp")
672 (description
673 "ZPB-TTF is a TrueType font file parser that provides an interface for
674 reading typographic metrics, glyph outlines, and other information from the
675 file.")
676 (license license:bsd-2)))
677
678 (define-public ecl-zpb-ttf
679 (sbcl-package->ecl-package sbcl-zpb-ttf))
680
681 (define-public cl-zpb-ttf
682 (sbcl-package->cl-source-package sbcl-zpb-ttf))
683
684 (define-public sbcl-cl-vectors
685 (package
686 (name "sbcl-cl-vectors")
687 (version "0.1.5")
688 (source
689 (origin
690 (method url-fetch)
691 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
692 "files/cl-vectors-" version ".tar.gz"))
693 (sha256
694 (base32
695 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
696 (build-system asdf-build-system/sbcl)
697 (inputs
698 `(("zpb-ttf" ,sbcl-zpb-ttf)))
699 (arguments
700 '(#:asd-systems '("cl-vectors"
701 "cl-paths-ttf")))
702 (home-page "http://projects.tuxee.net/cl-vectors/")
703 (synopsis "Create, transform and render anti-aliased vectorial paths")
704 (description
705 "This is a pure Common Lisp library to create, transform and render
706 anti-aliased vectorial paths.")
707 (license license:expat)))
708
709 (define-public ecl-cl-vectors
710 (sbcl-package->ecl-package sbcl-cl-vectors))
711
712 (define-public cl-vectors
713 (sbcl-package->cl-source-package sbcl-cl-vectors))
714
715 (define-public sbcl-spatial-trees
716 ;; There have been no releases.
717 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
718 (revision "1"))
719 (package
720 (name "sbcl-spatial-trees")
721 (version (git-version "0" revision commit))
722 (source
723 (origin
724 (method git-fetch)
725 (uri (git-reference
726 (url "https://github.com/rpav/spatial-trees")
727 (commit commit)))
728 (file-name (git-file-name name version))
729 (sha256
730 (base32
731 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
732 (build-system asdf-build-system/sbcl)
733 (arguments
734 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
735 #:test-asd-file "spatial-trees.test.asd"))
736 (native-inputs
737 `(("fiveam" ,sbcl-fiveam)))
738 (home-page "https://github.com/rpav/spatial-trees")
739 (synopsis "Dynamic index data structures for spatially-extended data")
740 (description
741 "Spatial-trees is a set of dynamic index data structures for
742 spatially-extended data.")
743 (license license:bsd-3))))
744
745 (define-public ecl-spatial-trees
746 (sbcl-package->ecl-package sbcl-spatial-trees))
747
748 (define-public cl-spatial-trees
749 (sbcl-package->cl-source-package sbcl-spatial-trees))
750
751 (define-public sbcl-flexichain
752 ;; There are no releases.
753 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
754 (revision "1"))
755 (package
756 (name "sbcl-flexichain")
757 (version "1.5.1")
758 (source
759 (origin
760 (method git-fetch)
761 (uri (git-reference
762 (url "https://github.com/robert-strandh/Flexichain")
763 (commit commit)))
764 (file-name (git-file-name name version))
765 (sha256
766 (base32
767 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
768 (build-system asdf-build-system/sbcl)
769 (home-page "https://github.com/robert-strandh/Flexichain.git")
770 (synopsis "Dynamically add elements to or remove them from sequences")
771 (description
772 "This package provides an implementation of the flexichain protocol,
773 allowing client code to dynamically add elements to, and delete elements from
774 a sequence (or chain) of such elements.")
775 (license license:lgpl2.1+))))
776
777 (define-public ecl-flexichain
778 (sbcl-package->ecl-package sbcl-flexichain))
779
780 (define-public cl-flexichain
781 (sbcl-package->cl-source-package sbcl-flexichain))
782
783 (define-public sbcl-cl-pdf
784 ;; There are no releases
785 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
786 (revision "1"))
787 (package
788 (name "sbcl-cl-pdf")
789 (version (git-version "0" revision commit))
790 (source
791 (origin
792 (method git-fetch)
793 (uri (git-reference
794 (url "https://github.com/mbattyani/cl-pdf")
795 (commit commit)))
796 (file-name (git-file-name name version))
797 (sha256
798 (base32
799 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
800 (build-system asdf-build-system/sbcl)
801 (inputs
802 `(("iterate" ,sbcl-iterate)
803 ("zpb-ttf" ,sbcl-zpb-ttf)))
804 (home-page "https://github.com/mbattyani/cl-pdf")
805 (synopsis "Common Lisp library for generating PDF files")
806 (description
807 "CL-PDF is a cross-platform Common Lisp library for generating PDF
808 files.")
809 (license license:bsd-2))))
810
811 (define-public ecl-cl-pdf
812 (sbcl-package->ecl-package sbcl-cl-pdf))
813
814 (define-public cl-pdf
815 (sbcl-package->cl-source-package sbcl-cl-pdf))
816
817 (define-public sbcl-clx
818 (package
819 (name "sbcl-clx")
820 (version "0.7.5")
821 (source
822 (origin
823 (method git-fetch)
824 (uri
825 (git-reference
826 (url "https://github.com/sharplispers/clx")
827 (commit version)))
828 (sha256
829 (base32
830 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
831 (file-name (string-append "clx-" version))))
832 (build-system asdf-build-system/sbcl)
833 (native-inputs
834 `(("fiasco" ,sbcl-fiasco)))
835 (home-page "https://www.cliki.net/portable-clx")
836 (synopsis "X11 client library for Common Lisp")
837 (description "CLX is an X11 client library for Common Lisp. The code was
838 originally taken from a CMUCL distribution, was modified somewhat in order to
839 make it compile and run under SBCL, then a selection of patches were added
840 from other CLXes around the net.")
841 (license license:x11)))
842
843 (define-public cl-clx
844 (sbcl-package->cl-source-package sbcl-clx))
845
846 (define-public ecl-clx
847 (sbcl-package->ecl-package sbcl-clx))
848
849 (define-public sbcl-clx-truetype
850 (let ((commit "c6e10a918d46632324d5863a8ed067a83fc26de8")
851 (revision "1"))
852 (package
853 (name "sbcl-clx-truetype")
854 (version (git-version "0.0.1" revision commit))
855 (source
856 (origin
857 (method git-fetch)
858 (uri (git-reference
859 (url "https://github.com/l04m33/clx-truetype")
860 (commit commit)))
861 (file-name (git-file-name name version))
862 (sha256
863 (base32
864 "079hyp92cjkdfn6bhkxsrwnibiqbz4y4af6nl31lzw6nm91j5j37"))
865 (modules '((guix build utils)))
866 (snippet
867 '(begin
868 (substitute* "package.lisp"
869 ((":export") ":export\n :+font-cache-filename+"))
870 #t))))
871 (build-system asdf-build-system/sbcl)
872 (inputs
873 `(("clx" ,sbcl-clx)
874 ("zpb-ttf" ,sbcl-zpb-ttf)
875 ("cl-vectors" ,sbcl-cl-vectors)
876 ("cl-fad" ,sbcl-cl-fad)
877 ("cl-store" ,sbcl-cl-store)
878 ("trivial-features" ,sbcl-trivial-features)))
879 (home-page "https://github.com/l04m33/clx-truetype")
880 (synopsis "Antialiased TrueType font rendering using CLX and XRender")
881 (description "CLX-TrueType is pure common lisp solution for
882 antialiased TrueType font rendering using CLX and XRender extension.")
883 (license license:expat))))
884
885 (define-public cl-clx-truetype
886 (sbcl-package->cl-source-package sbcl-clx-truetype))
887
888 (define-public ecl-clx-truetype
889 (sbcl-package->ecl-package sbcl-clx-truetype))
890
891 (define-public sbcl-slynk
892 (let ((commit "0f46f91a9542599d62c0c332b39636b2941ea372"))
893 (package
894 (name "sbcl-slynk")
895 (version (git-version "1.0.43" "3" commit))
896 (source
897 (origin
898 (method git-fetch)
899 (uri
900 (git-reference
901 (url "https://github.com/joaotavora/sly")
902 (commit commit)))
903 (sha256
904 (base32 "0p3j0zylacy6vms8ngis2hx2351xnwfzsw3zy043q6vmqd14wrf1"))
905 (file-name (git-file-name "slynk" version))))
906 (build-system asdf-build-system/sbcl)
907 (outputs '("out" "image"))
908 (arguments
909 `(#:phases
910 (modify-phases %standard-phases
911 (add-after 'create-asdf-configuration 'build-image
912 (lambda* (#:key outputs #:allow-other-keys)
913 (build-image (string-append
914 (assoc-ref %outputs "image")
915 "/bin/slynk")
916 %outputs
917 #:dependencies '("slynk"
918 "slynk/arglists"
919 "slynk/fancy-inspector"
920 "slynk/package-fu"
921 "slynk/mrepl"
922 "slynk/trace-dialog"
923 "slynk/profiler"
924 "slynk/stickers"
925 "slynk/indentation"
926 "slynk/retro"))
927 #t)))))
928 (synopsis "Common Lisp IDE for Emacs")
929 (description "SLY is a fork of SLIME, an IDE backend for Common Lisp.
930 It also features a completely redesigned REPL based on Emacs's own
931 full-featured @code{comint-mode}, live code annotations, and a consistent interactive
932 button interface. Everything can be copied to the REPL. One can create
933 multiple inspectors with independent history.")
934 (home-page "https://github.com/joaotavora/sly")
935 (license license:public-domain)
936 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
937
938 (define-public cl-slynk
939 (sbcl-package->cl-source-package sbcl-slynk))
940
941 (define-public ecl-slynk
942 (let ((pkg (sbcl-package->ecl-package sbcl-slynk)))
943 (package
944 (inherit pkg)
945 (outputs '("out"))
946 (arguments
947 (substitute-keyword-arguments (package-arguments pkg)
948 ((#:phases phases)
949 `(modify-phases ,phases
950 (delete 'build-image))))))))
951
952 (define-public sbcl-parse-js
953 (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6")
954 (revision "1"))
955 (package
956 (name "sbcl-parse-js")
957 (version (string-append "0.0.0-" revision "." (string-take commit 9)))
958 (source
959 (origin
960 (method git-fetch)
961 (uri (git-reference
962 (url "http://marijn.haverbeke.nl/git/parse-js")
963 (commit commit)))
964 (file-name (string-append name "-" commit "-checkout"))
965 (sha256
966 (base32
967 "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39"))))
968 (build-system asdf-build-system/sbcl)
969 (home-page "https://marijnhaverbeke.nl/parse-js/")
970 (synopsis "Parse JavaScript")
971 (description "Parse-js is a Common Lisp package for parsing
972 JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
973 (license license:zlib))))
974
975 (define-public cl-parse-js
976 (sbcl-package->cl-source-package sbcl-parse-js))
977
978 (define-public ecl-parse-js
979 (sbcl-package->ecl-package sbcl-parse-js))
980
981 (define-public sbcl-parse-number
982 (package
983 (name "sbcl-parse-number")
984 (version "1.7")
985 (source
986 (origin
987 (method git-fetch)
988 (uri (git-reference
989 (url "https://github.com/sharplispers/parse-number/")
990 (commit (string-append "v" version))))
991 (file-name (git-file-name name version))
992 (sha256
993 (base32
994 "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"))))
995 (build-system asdf-build-system/sbcl)
996 (home-page "https://www.cliki.net/PARSE-NUMBER")
997 (synopsis "Parse numbers")
998 (description "@code{parse-number} is a library of functions for parsing
999 strings into one of the standard Common Lisp number types without using the
1000 reader. @code{parse-number} accepts an arbitrary string and attempts to parse
1001 the string into one of the standard Common Lisp number types, if possible, or
1002 else @code{parse-number} signals an error of type @code{invalid-number}.")
1003 (license license:bsd-3)))
1004
1005 (define-public cl-parse-number
1006 (sbcl-package->cl-source-package sbcl-parse-number))
1007
1008 (define-public ecl-parse-number
1009 (sbcl-package->ecl-package sbcl-parse-number))
1010
1011 (define-public sbcl-iterate
1012 (package
1013 (name "sbcl-iterate")
1014 (version "1.5")
1015 (source
1016 (origin
1017 (method url-fetch)
1018 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
1019 "iterate-" version ".tar.gz"))
1020 (sha256
1021 (base32
1022 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
1023 (build-system asdf-build-system/sbcl)
1024 (native-inputs
1025 `(("rt" ,sbcl-rt)))
1026 (home-page "https://common-lisp.net/project/iterate/")
1027 (synopsis "Iteration construct for Common Lisp")
1028 (description "@code{iterate} is an iteration construct for Common Lisp.
1029 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
1030
1031 @itemize
1032 @item it is extensible,
1033 @item it helps editors like Emacs indent iterate forms by having a more
1034 lisp-like syntax, and
1035 @item it isn't part of the ANSI standard for Common Lisp.
1036 @end itemize\n")
1037 (license license:expat)))
1038
1039 (define-public cl-iterate
1040 (sbcl-package->cl-source-package sbcl-iterate))
1041
1042 (define-public ecl-iterate
1043 (sbcl-package->ecl-package sbcl-iterate))
1044
1045 (define-public sbcl-cl-uglify-js
1046 ;; There have been many bug fixes since the 2010 release.
1047 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
1048 (revision "1"))
1049 (package
1050 (name "sbcl-cl-uglify-js")
1051 (version (string-append "0.1-" revision "." (string-take commit 9)))
1052 (source
1053 (origin
1054 (method git-fetch)
1055 (uri (git-reference
1056 (url "https://github.com/mishoo/cl-uglify-js")
1057 (commit commit)))
1058 (file-name (git-file-name name version))
1059 (sha256
1060 (base32
1061 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1062 (build-system asdf-build-system/sbcl)
1063 (inputs
1064 `(("sbcl-parse-js" ,sbcl-parse-js)
1065 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1066 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1067 ("sbcl-parse-number" ,sbcl-parse-number)
1068 ("sbcl-iterate" ,sbcl-iterate)))
1069 (home-page "https://github.com/mishoo/cl-uglify-js")
1070 (synopsis "JavaScript compressor library for Common Lisp")
1071 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1072 compressor. It works on data produced by @code{parse-js} to generate a
1073 @dfn{minified} version of the code. Currently it can:
1074
1075 @itemize
1076 @item reduce variable names (usually to single letters)
1077 @item join consecutive @code{var} statements
1078 @item resolve simple binary expressions
1079 @item group most consecutive statements using the @code{sequence} operator (comma)
1080 @item remove unnecessary blocks
1081 @item convert @code{IF} expressions in various ways that result in smaller code
1082 @item remove some unreachable code
1083 @end itemize\n")
1084 (license license:zlib))))
1085
1086 (define-public cl-uglify-js
1087 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1088
1089 (define-public ecl-cl-uglify-js
1090 (sbcl-package->ecl-package sbcl-cl-uglify-js))
1091
1092 (define-public uglify-js
1093 (package
1094 (inherit sbcl-cl-uglify-js)
1095 (name "uglify-js")
1096 (build-system trivial-build-system)
1097 (arguments
1098 `(#:modules ((guix build utils))
1099 #:builder
1100 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1101 (script (string-append bin "uglify-js")))
1102 (use-modules (guix build utils))
1103 (mkdir-p bin)
1104 (with-output-to-file script
1105 (lambda _
1106 (format #t "#!~a/bin/sbcl --script
1107
1108 (require :asdf)
1109 (asdf:initialize-source-registry
1110 #p\"~a/etc/common-lisp/source-registry.conf.d/\")
1111 (asdf:initialize-output-translations
1112 #p\"~a/etc/common-lisp/asdf-output-translations.conf.d/\")"
1113 (assoc-ref %build-inputs "sbcl")
1114 (assoc-ref %build-inputs "sbcl-cl-uglify-js")
1115 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1116 ;; FIXME: cannot use progn here because otherwise it fails to
1117 ;; find cl-uglify-js.
1118 (for-each
1119 write
1120 '(;; Quiet, please!
1121 (let ((*standard-output* (make-broadcast-stream))
1122 (*error-output* (make-broadcast-stream)))
1123 (asdf:load-system :cl-uglify-js))
1124 (let ((file (cadr *posix-argv*)))
1125 (if file
1126 (format t "~a"
1127 (cl-uglify-js:ast-gen-code
1128 (cl-uglify-js:ast-mangle
1129 (cl-uglify-js:ast-squeeze
1130 (with-open-file (in file)
1131 (parse-js:parse-js in))))
1132 :beautify nil))
1133 (progn
1134 (format *error-output*
1135 "Please provide a JavaScript file.~%")
1136 (sb-ext:exit :code 1))))))))
1137 (chmod script #o755)
1138 #t)))
1139 (inputs
1140 `(("sbcl" ,sbcl)
1141 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1142 (synopsis "JavaScript compressor")))
1143
1144 (define-public sbcl-cl-strings
1145 (let ((revision "1")
1146 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1147 (package
1148 (name "sbcl-cl-strings")
1149 (version (git-version "0.0.0" revision commit))
1150 (source
1151 (origin
1152 (method git-fetch)
1153 (uri (git-reference
1154 (url "https://github.com/diogoalexandrefranco/cl-strings")
1155 (commit commit)))
1156 (sha256
1157 (base32
1158 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1159 (file-name (string-append "cl-strings-" version "-checkout"))))
1160 (build-system asdf-build-system/sbcl)
1161 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1162 (description
1163 "@command{cl-strings} is a small, portable, dependency-free set of
1164 utilities that make it even easier to manipulate text in Common Lisp. It has
1165 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1166 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1167 (license license:expat))))
1168
1169 (define-public cl-strings
1170 (sbcl-package->cl-source-package sbcl-cl-strings))
1171
1172 (define-public ecl-cl-strings
1173 (sbcl-package->ecl-package sbcl-cl-strings))
1174
1175 (define-public sbcl-trivial-features
1176 ;; No release since 2014.
1177 (let ((commit "870d03de0ed44067963350936856e17ee725153e"))
1178 (package
1179 (name "sbcl-trivial-features")
1180 (version (git-version "0.8" "1" commit))
1181 (source
1182 (origin
1183 (method git-fetch)
1184 (uri (git-reference
1185 (url "https://github.com/trivial-features/trivial-features")
1186 (commit commit)))
1187 (file-name (git-file-name "trivial-features" version))
1188 (sha256
1189 (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
1190 (build-system asdf-build-system/sbcl)
1191 (arguments
1192 '(#:asd-files '("trivial-features.asd")
1193 #:tests? #f))
1194 (home-page "https://cliki.net/trivial-features")
1195 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1196 (description "Trivial-features ensures that @code{*FEATURES*} is
1197 consistent across multiple Common Lisp implementations.")
1198 (license license:expat))))
1199
1200 (define-public cl-trivial-features
1201 (sbcl-package->cl-source-package sbcl-trivial-features))
1202
1203 (define-public ecl-trivial-features
1204 (sbcl-package->ecl-package sbcl-trivial-features))
1205
1206 (define-public sbcl-hu.dwim.asdf
1207 (package
1208 (name "sbcl-hu.dwim.asdf")
1209 (version "20190521")
1210 (source
1211 (origin
1212 (method url-fetch)
1213 (uri (string-append "http://beta.quicklisp.org/archive/hu.dwim.asdf/"
1214 "2019-05-21/hu.dwim.asdf-" version "-darcs.tgz"))
1215 (sha256
1216 (base32
1217 "0rsbv71vyszy8w35yjwb5h6zcmknjq223hkzir79y72qdsc6sabn"))))
1218 (build-system asdf-build-system/sbcl)
1219 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1220 (synopsis "Extensions to ASDF")
1221 (description "Various ASDF extensions such as attached test and
1222 documentation system, explicit development support, etc.")
1223 (license license:public-domain)))
1224
1225 (define-public cl-hu.dwim.asdf
1226 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1227
1228 (define-public ecl-hu.dwim.asdf
1229 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1230
1231 (define-public sbcl-hu.dwim.stefil
1232 (let ((commit "ab6d1aa8995878a1b66d745dfd0ba021090bbcf9"))
1233 (package
1234 (name "sbcl-hu.dwim.stefil")
1235 (version (git-version "0.0.0" "1" commit))
1236 (source
1237 (origin
1238 (method git-fetch)
1239 (uri
1240 (git-reference
1241 (url "https://gitlab.common-lisp.net/xcvb/hu.dwim.stefil.git")
1242 (commit commit)))
1243 (sha256
1244 (base32 "1d8yccw65zj3zh46cbi3x6nmn1dwdb76s9d0av035077mvyirqqp"))
1245 (file-name (git-file-name "hu.dwim.stefil" version))))
1246 (build-system asdf-build-system/sbcl)
1247 (native-inputs
1248 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1249 (inputs
1250 `(("sbcl-alexandria" ,sbcl-alexandria)))
1251 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.stefil")
1252 (synopsis "Simple test framework")
1253 (description "Stefil is a simple test framework for Common Lisp,
1254 with a focus on interactive development.")
1255 (license license:public-domain))))
1256
1257 (define-public cl-hu.dwim.stefil
1258 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1259
1260 (define-public ecl-hu.dwim.stefil
1261 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1262
1263 (define-public sbcl-babel
1264 ;; No release since 2014.
1265 (let ((commit "aeed2d1b76358db48e6b70a64399c05678a6b9ea"))
1266 (package
1267 (name "sbcl-babel")
1268 (version (git-version "0.5.0" "1" commit))
1269 (source
1270 (origin
1271 (method git-fetch)
1272 (uri (git-reference
1273 (url "https://github.com/cl-babel/babel")
1274 (commit commit)))
1275 (file-name (git-file-name "babel" version))
1276 (sha256
1277 (base32 "0lkvv4xdpv4cv1y2bqillmabx8sdb2y4l6pbinq6mjh33w2brpvb"))))
1278 (build-system asdf-build-system/sbcl)
1279 (native-inputs
1280 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1281 (inputs
1282 `(("sbcl-alexandria" ,sbcl-alexandria)
1283 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1284 (home-page "https://common-lisp.net/project/babel/")
1285 (synopsis "Charset encoding and decoding library")
1286 (description "Babel is a charset encoding and decoding library, not unlike
1287 GNU libiconv, but completely written in Common Lisp.")
1288 (license license:expat))))
1289
1290 (define-public cl-babel
1291 (sbcl-package->cl-source-package sbcl-babel))
1292
1293 (define-public ecl-babel
1294 (sbcl-package->ecl-package sbcl-babel))
1295
1296 (define-public sbcl-cl-yacc
1297 (package
1298 (name "sbcl-cl-yacc")
1299 (version "0.3")
1300 (source
1301 (origin
1302 (method git-fetch)
1303 (uri (git-reference
1304 (url "https://github.com/jech/cl-yacc")
1305 (commit (string-append "cl-yacc-" version))))
1306 (sha256
1307 (base32
1308 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1309 (file-name (string-append "cl-yacc-" version "-checkout"))))
1310 (build-system asdf-build-system/sbcl)
1311 (arguments
1312 `(#:asd-systems '("yacc")))
1313 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1314 (description
1315 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1316 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1317
1318 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1319 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1320 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1321 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1322 (license license:expat)))
1323
1324 (define-public cl-yacc
1325 (sbcl-package->cl-source-package sbcl-cl-yacc))
1326
1327 (define-public ecl-cl-yacc
1328 (sbcl-package->ecl-package sbcl-cl-yacc))
1329
1330 (define-public sbcl-eager-future2
1331 (let ((commit "54df8effd9d9eccac917509590286b5ac5f9cb30"))
1332 (package
1333 (name "sbcl-eager-future2")
1334 (version (git-version "0.0.0" "1" commit))
1335 (source
1336 (origin
1337 (method git-fetch)
1338 (uri (git-reference
1339 (url "https://gitlab.common-lisp.net/vsedach/eager-future2.git")
1340 (commit commit)))
1341 (file-name (git-file-name name version))
1342 (sha256
1343 (base32
1344 "1qs1bv3m0ki8l5czhsflxcryh22r9d9g9a3a3b0cr0pl954q5rld"))))
1345 (build-system asdf-build-system/sbcl)
1346 (inputs
1347 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1348 ("trivial-garbage" ,sbcl-trivial-garbage)))
1349 (synopsis "Futures promises synchronization mechanism for Common Lisp")
1350 (description
1351 "Eager Future2 is a Common Lisp library that provides composable
1352 concurrency primitives that unify parallel and lazy evaluation, are integrated
1353 with the Common Lisp condition system, and have automatic resource
1354 management.")
1355 (home-page "https://gitlab.common-lisp.net/vsedach/eager-future2")
1356 (license license:lgpl3+))))
1357
1358 (define-public cl-eager-future2
1359 (sbcl-package->cl-source-package sbcl-eager-future2))
1360
1361 (define-public ecl-eager-future2
1362 (sbcl-package->ecl-package sbcl-eager-future2))
1363
1364 (define-public sbcl-jpl-util
1365 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1366 (package
1367 (name "sbcl-jpl-util")
1368 (version "20151005")
1369 (source
1370 (origin
1371 (method git-fetch)
1372 (uri (git-reference
1373 ;; Quicklisp uses this fork.
1374 (url "https://github.com/hawkir/cl-jpl-util")
1375 (commit commit)))
1376 (file-name
1377 (git-file-name "jpl-util" version))
1378 (sha256
1379 (base32
1380 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1381 (build-system asdf-build-system/sbcl)
1382 (synopsis "Collection of Common Lisp utility functions and macros")
1383 (description
1384 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1385 and macros, primarily for software projects written in CL by the author.")
1386 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1387 (license license:isc))))
1388
1389 (define-public cl-jpl-util
1390 (sbcl-package->cl-source-package sbcl-jpl-util))
1391
1392 (define-public ecl-jpl-util
1393 (sbcl-package->ecl-package sbcl-jpl-util))
1394
1395 (define-public sbcl-piping
1396 (let ((commit "c7a4163c00dea7e72bf6ad33d6abac0d5826a656")
1397 (revision "1"))
1398 (package
1399 (name "sbcl-piping")
1400 (version (git-version "2.0.0" revision commit))
1401 (source
1402 (origin
1403 (method git-fetch)
1404 (uri (git-reference
1405 (url "https://github.com/Shinmera/piping/")
1406 (commit commit)))
1407 (file-name (git-file-name "piping" version))
1408 (sha256
1409 (base32 "0in84qnfkynm36d4n4d6v87vprpi27xrydnga462wfhplji6klv5"))))
1410 (build-system asdf-build-system/sbcl)
1411 (home-page "https://shinmera.github.io/piping/")
1412 (synopsis "Library to enable simple message pipelines")
1413 (description
1414 "This is a Common Lisp library to enable simple message pipelines.")
1415 (license license:zlib))))
1416
1417 (define-public ecl-piping
1418 (sbcl-package->ecl-package sbcl-piping))
1419
1420 (define-public cl-piping
1421 (sbcl-package->cl-source-package sbcl-piping))
1422
1423 (define-public sbcl-cl-pcg
1424 (let ((commit "8263d85ab0ca17fb05637a4430c2d564456bce8f")
1425 (revision "1"))
1426 (package
1427 (name "sbcl-cl-pcg")
1428 (version (git-version "1.0.0" revision commit))
1429 (source
1430 (origin
1431 (method git-fetch)
1432 (uri (git-reference
1433 (url "https://github.com/sjl/cl-pcg")
1434 (commit commit)))
1435 (file-name (git-file-name "cl-pcg" version))
1436 (sha256
1437 (base32 "0s57wvvlvshp1gcp9i9d3qcmqhswnxps3i0y7wbb0v8i1a3p46m4"))))
1438 (build-system asdf-build-system/sbcl)
1439 (native-inputs
1440 `(("1am" ,sbcl-1am)))
1441 (home-page "https://github.com/sjl/cl-pcg")
1442 (synopsis "Permuted congruential generators in Common Lisp")
1443 (description
1444 "This is a bare-bones Permuted Congruential Generator implementation in
1445 pure Common Lisp.")
1446 (license license:expat))))
1447
1448 (define-public ecl-cl-pcg
1449 (sbcl-package->ecl-package sbcl-cl-pcg))
1450
1451 (define-public cl-pcg
1452 (sbcl-package->cl-source-package sbcl-cl-pcg))
1453
1454 (define-public sbcl-jpl-queues
1455 (package
1456 (name "sbcl-jpl-queues")
1457 (version "0.1")
1458 (source
1459 (origin
1460 (method url-fetch)
1461 (uri (string-append
1462 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1463 version
1464 ".tar.gz"))
1465 (sha256
1466 (base32
1467 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1468 (build-system asdf-build-system/sbcl)
1469 (inputs
1470 `(("jpl-util" ,sbcl-jpl-util)
1471 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1472 (arguments
1473 ;; Tests seem to be broken.
1474 `(#:tests? #f))
1475 (synopsis "Common Lisp library implementing a few different kinds of queues")
1476 (description
1477 "A Common Lisp library implementing a few different kinds of queues:
1478
1479 @itemize
1480 @item Bounded and unbounded FIFO queues.
1481 @item Lossy bounded FIFO queues that drop elements when full.
1482 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1483 @end itemize
1484
1485 Additionally, a synchronization wrapper is provided to make any queue
1486 conforming to the @command{jpl-queues} API thread-safe for lightweight
1487 multithreading applications. (See Calispel for a more sophisticated CL
1488 multithreaded message-passing library with timeouts and alternation among
1489 several blockable channels.)")
1490 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1491 (license license:isc)))
1492
1493 (define-public cl-jpl-queues
1494 (sbcl-package->cl-source-package sbcl-jpl-queues))
1495
1496 (define-public ecl-jpl-queues
1497 (sbcl-package->ecl-package sbcl-jpl-queues))
1498
1499 (define-public sbcl-calispel
1500 (let ((commit "e9f2f9c1af97f4d7bb4c8ac25fb2a8f3e8fada7a"))
1501 (package
1502 (name "sbcl-calispel")
1503 (version (git-version "0.1" "1" commit))
1504 (source
1505 (origin
1506 (method git-fetch)
1507 (uri (git-reference
1508 ;; This fork replaces the dependency on the obsolete
1509 ;; eager-future with eager-future2.
1510 (url "https://github.com/hawkir/calispel")
1511 (commit commit)))
1512 (file-name (git-file-name name version))
1513 (sha256
1514 (base32
1515 "08bmf3pi7n5hadpmqqkg65cxcj6kbvm997wcs1f53ml1nb79d9z8"))))
1516 (build-system asdf-build-system/sbcl)
1517 (inputs
1518 `(("jpl-queues" ,sbcl-jpl-queues)
1519 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1520 (native-inputs
1521 `(("eager-future2" ,sbcl-eager-future2)))
1522 (synopsis "Thread-safe message-passing channels in Common Lisp")
1523 (description
1524 "Calispel is a Common Lisp library for thread-safe message-passing
1525 channels, in the style of the occam programming language, also known as
1526 communicating sequential processes (CSP). See
1527 @url{https://en.wikipedia.org/wiki/Communicating_sequential_processes}.
1528
1529 Calispel channels let one thread communicate with another, facilitating
1530 unidirectional communication of any Lisp object. Channels may be unbuffered,
1531 where a sender waits for a receiver (or vice versa) before either operation can
1532 continue, or channels may be buffered with flexible policy options.
1533
1534 Because sending and receiving on a channel may block, either operation can time
1535 out after a specified amount of time.
1536
1537 A syntax for alternation is provided (like @code{ALT} in occam, or Unix
1538 @code{select()}): given a sequence of operations, any or all of which may
1539 block, alternation selects the first operation that doesn't block and executes
1540 associated code. Alternation can also time out, executing an \"otherwise\"
1541 clause if no operation becomes available within a set amount of time.
1542
1543 Calispel is a message-passing library, and as such leaves the role of
1544 threading abstractions and utilities left to be filled by complementary
1545 libraries such as Bordeaux-Threads and Eager Future.")
1546 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1547 (license license:isc))))
1548
1549 (define-public cl-calispel
1550 (sbcl-package->cl-source-package sbcl-calispel))
1551
1552 (define-public ecl-calispel
1553 (sbcl-package->ecl-package sbcl-calispel))
1554
1555 (define-public sbcl-eos
1556 (let ((commit "b4413bccc4d142cbe1bf49516c3a0a22c9d99243")
1557 (revision "2"))
1558 (package
1559 (name "sbcl-eos")
1560 (version (git-version "0.0.0" revision commit))
1561 (source
1562 (origin
1563 (method git-fetch)
1564 (uri (git-reference
1565 (url "https://github.com/adlai/Eos")
1566 (commit commit)))
1567 (sha256
1568 (base32 "1afllvmlnx97yzz404gycl3pa3kwx427k3hrbf37rpmjlv47knhk"))
1569 (file-name (git-file-name "eos" version))))
1570 (build-system asdf-build-system/sbcl)
1571 (synopsis "Unit Testing for Common Lisp")
1572 (description
1573 "Eos was a unit testing library for Common Lisp.
1574 It began as a fork of FiveAM; however, FiveAM development has continued, while
1575 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1576 (home-page "https://github.com/adlai/Eos")
1577 (license license:expat))))
1578
1579 (define-public cl-eos
1580 (sbcl-package->cl-source-package sbcl-eos))
1581
1582 (define-public ecl-eos
1583 (sbcl-package->ecl-package sbcl-eos))
1584
1585 (define-public sbcl-esrap
1586 (let ((commit "133be8b05c2aae48696fe5b739eea2fa573fa48d"))
1587 (package
1588 (name "sbcl-esrap")
1589 (version (git-version "0.0.0" "1" commit))
1590 (source
1591 (origin
1592 (method git-fetch)
1593 (uri (git-reference
1594 (url "https://github.com/nikodemus/esrap")
1595 (commit commit)))
1596 (sha256
1597 (base32
1598 "02d5clihsdryhf7pix8c5di2571fdsffh75d40fkzhws90r5mksl"))
1599 (file-name (git-file-name "esrap" version))))
1600 (build-system asdf-build-system/sbcl)
1601 (native-inputs
1602 `(("eos" ,sbcl-eos))) ;For testing only.
1603 (inputs
1604 `(("alexandria" ,sbcl-alexandria)))
1605 (synopsis "Common Lisp packrat parser")
1606 (description
1607 "A packrat parser for Common Lisp.
1608 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1609
1610 @itemize
1611 @item dynamic redefinition of nonterminals
1612 @item inline grammars
1613 @item semantic predicates
1614 @item introspective facilities (describing grammars, tracing, setting breaks)
1615 @end itemize\n")
1616 (home-page "https://nikodemus.github.io/esrap/")
1617 (license license:expat))))
1618
1619 (define-public cl-esrap
1620 (sbcl-package->cl-source-package sbcl-esrap))
1621
1622 (define-public ecl-esrap
1623 (sbcl-package->ecl-package sbcl-esrap))
1624
1625 (define-public sbcl-split-sequence
1626 (package
1627 (name "sbcl-split-sequence")
1628 (version "2.0.0")
1629 (source
1630 (origin
1631 (method git-fetch)
1632 (uri (git-reference
1633 (url "https://github.com/sharplispers/split-sequence")
1634 (commit (string-append "v" version))))
1635 (sha256
1636 (base32
1637 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
1638 (file-name (git-file-name "split-sequence" version))))
1639 (build-system asdf-build-system/sbcl)
1640 (native-inputs
1641 `(("fiveam" ,sbcl-fiveam)))
1642 (synopsis "Member of the Common Lisp Utilities family of programs")
1643 (description
1644 "Splits sequence into a list of subsequences delimited by objects
1645 satisfying the test.")
1646 (home-page "https://cliki.net/split-sequence")
1647 (license license:expat)))
1648
1649 (define-public cl-split-sequence
1650 (sbcl-package->cl-source-package sbcl-split-sequence))
1651
1652 (define-public ecl-split-sequence
1653 (sbcl-package->ecl-package sbcl-split-sequence))
1654
1655 (define-public sbcl-html-encode
1656 (package
1657 (name "sbcl-html-encode")
1658 (version "1.2")
1659 (source
1660 (origin
1661 (method url-fetch)
1662 (uri (string-append
1663 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1664 version ".tgz"))
1665 (sha256
1666 (base32
1667 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1668 (file-name (string-append "colorize" version "-checkout"))))
1669 (build-system asdf-build-system/sbcl)
1670 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1671 (description
1672 "A library for encoding text in various web-savvy encodings.")
1673 (home-page "http://quickdocs.org/html-encode/")
1674 (license license:expat)))
1675
1676 (define-public cl-html-encode
1677 (sbcl-package->cl-source-package sbcl-html-encode))
1678
1679 (define-public ecl-html-encode
1680 (sbcl-package->ecl-package sbcl-html-encode))
1681
1682 (define-public sbcl-colorize
1683 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1684 (package
1685 (name "sbcl-colorize")
1686 (version (git-version "0.0.0" "1" commit))
1687 (source
1688 (origin
1689 (method git-fetch)
1690 (uri (git-reference
1691 (url "https://github.com/kingcons/colorize")
1692 (commit commit)))
1693 (sha256
1694 (base32
1695 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1696 (file-name (git-file-name "colorize" version))))
1697 (build-system asdf-build-system/sbcl)
1698 (inputs
1699 `(("alexandria" ,sbcl-alexandria)
1700 ("split-sequence" ,sbcl-split-sequence)
1701 ("html-encode" ,sbcl-html-encode)))
1702 (synopsis "Common Lisp for syntax highlighting")
1703 (description
1704 "@command{colorize} is a Lisp library for syntax highlighting
1705 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1706 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1707 (home-page "https://github.com/kingcons/colorize")
1708 ;; TODO: Missing license?
1709 (license license:expat))))
1710
1711 (define-public cl-colorize
1712 (sbcl-package->cl-source-package sbcl-colorize))
1713
1714 (define-public ecl-colorize
1715 (sbcl-package->ecl-package sbcl-colorize))
1716
1717 (define-public sbcl-3bmd
1718 (let ((commit "6fc5759448f6f6df6f6df556e020a289a2643288")
1719 (revision "2"))
1720 (package
1721 (name "sbcl-3bmd")
1722 (version (git-version "0.0.0" revision commit))
1723 (source
1724 (origin
1725 (method git-fetch)
1726 (uri (git-reference
1727 (url "https://github.com/3b/3bmd")
1728 (commit commit)))
1729 (sha256
1730 (base32 "1avmbp8xdjlbqpqk7p3vmj7abiw5p3vb5mrxp4wlvgql4sf6z3p4"))
1731 (file-name (git-file-name "3bmd" version))))
1732 (build-system asdf-build-system/sbcl)
1733 (arguments
1734 ;; FIXME: #41437 - Build fails when package name starts from a digit
1735 `(#:asd-systems
1736 '("3bmd"
1737 "3bmd-ext-definition-lists"
1738 "3bmd-ext-math"
1739 "3bmd-ext-tables"
1740 "3bmd-ext-wiki-links"
1741 "3bmd-youtube"
1742 "3bmd-ext-code-blocks")))
1743 (inputs
1744 `(("alexandria" ,sbcl-alexandria)
1745 ("colorize" ,sbcl-colorize)
1746 ("esrap" ,sbcl-esrap)
1747 ("split-sequence" ,sbcl-split-sequence)))
1748 (home-page "https://github.com/3b/3bmd")
1749 (synopsis "Markdown processor in Command Lisp using esrap parser")
1750 (description
1751 "This is a Common Lisp Markdown to HTML converter, using @command{esrap}
1752 for parsing, and grammar based on @command{peg-markdown}.")
1753 (license license:expat))))
1754
1755 (define-public cl-3bmd
1756 (sbcl-package->cl-source-package sbcl-3bmd))
1757
1758 (define-public ecl-3bmd
1759 (sbcl-package->ecl-package sbcl-3bmd))
1760
1761 (define-public sbcl-cl-fad
1762 (package
1763 (name "sbcl-cl-fad")
1764 (version "0.7.6")
1765 (source
1766 (origin
1767 (method git-fetch)
1768 (uri (git-reference
1769 (url "https://github.com/edicl/cl-fad/")
1770 (commit (string-append "v" version))))
1771 (sha256
1772 (base32
1773 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
1774 (file-name (string-append "cl-fad" version "-checkout"))))
1775 (build-system asdf-build-system/sbcl)
1776 (inputs
1777 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
1778 (synopsis "Portable pathname library for Common Lisp")
1779 (description
1780 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
1781 Lisp's standard pathname functions. It is intended to provide some
1782 unification between current CL implementations on Windows, OS X, Linux, and
1783 Unix. Most of the code was written by Peter Seibel for his book Practical
1784 Common Lisp.")
1785 (home-page "https://edicl.github.io/cl-fad/")
1786 (license license:bsd-2)))
1787
1788 (define-public cl-fad
1789 (sbcl-package->cl-source-package sbcl-cl-fad))
1790
1791 (define-public ecl-cl-fad
1792 (sbcl-package->ecl-package sbcl-cl-fad))
1793
1794 (define-public sbcl-fn
1795 (let ((commit "8d8587d03a7b5e26b306fc90018e385d9e5acc2c")
1796 (revision "1"))
1797 (package
1798 (name "sbcl-fn")
1799 (version (git-version "0.0.0" revision commit))
1800 (source
1801 (origin
1802 (method git-fetch)
1803 (uri (git-reference
1804 (url "https://github.com/cbaggers/fn")
1805 (commit commit)))
1806 (file-name (git-file-name "fn" version))
1807 (sha256
1808 (base32 "0yyp9z6iwx476whz0n1rpjznjyqqhlylhzwpgg5xx92lxmskl752"))))
1809 (build-system asdf-build-system/sbcl)
1810 (inputs
1811 `(("named-readtables" ,sbcl-named-readtables)))
1812 (home-page "https://github.com/cbaggers/fn")
1813 (synopsis "Macros for lambda brevity")
1814 (description
1815 "This is a Common Lisp library providing lambda shorthand macros aiming
1816 to be used in cases where the word @emph{lambda} and the arguments are longer
1817 than the body of the lambda.")
1818 (license license:public-domain))))
1819
1820 (define-public ecl-fn
1821 (sbcl-package->ecl-package sbcl-fn))
1822
1823 (define-public cl-fn
1824 (sbcl-package->cl-source-package sbcl-fn))
1825
1826 (define-public sbcl-rt
1827 (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
1828 (revision "1"))
1829 (package
1830 (name "sbcl-rt")
1831 (version (git-version "1990.12.19" revision commit))
1832 (source
1833 (origin
1834 (method git-fetch)
1835 (uri (git-reference
1836 (url "http://git.kpe.io/rt.git")
1837 (commit commit)))
1838 (file-name (git-file-name name version))
1839 (sha256
1840 (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
1841 (build-system asdf-build-system/sbcl)
1842 (synopsis "MIT Regression Tester")
1843 (description
1844 "RT provides a framework for writing regression test suites.")
1845 (home-page "https://www.cliki.net/rt")
1846 (license license:expat))))
1847
1848 (define-public cl-rt
1849 (sbcl-package->cl-source-package sbcl-rt))
1850
1851 (define-public ecl-rt
1852 (sbcl-package->ecl-package sbcl-rt))
1853
1854 (define-public sbcl-nibbles
1855 ;; No tagged release since 2018.
1856 (let ((commit "8e6b9b42d9f69000f55e5c45ad974d9e376ffdbd")
1857 (revision "1"))
1858 (package
1859 (name "sbcl-nibbles")
1860 (version (git-version "0.14" revision commit))
1861 (source
1862 (origin
1863 (method git-fetch)
1864 (uri (git-reference
1865 (url "https://github.com/sharplispers/nibbles/")
1866 (commit commit)))
1867 (sha256
1868 (base32 "15qlsm82h36pjgvfnbzdg60l21qxbaii4d049jc5y0dn56y93amb"))
1869 (file-name (git-file-name "nibbles" version))))
1870 (build-system asdf-build-system/sbcl)
1871 (native-inputs
1872 ;; Tests only.
1873 `(("rt" ,sbcl-rt)))
1874 (synopsis
1875 "Common Lisp library for accessing octet-addressed blocks of data")
1876 (description
1877 "When dealing with network protocols and file formats, it's common to
1878 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
1879 flavors. Common Lisp sort of supports this by specifying :element-type for
1880 streams, but that facility is underspecified and there's nothing similar for
1881 read/write from octet vectors. What most people wind up doing is rolling their
1882 own small facility for their particular needs and calling it a day.
1883
1884 This library attempts to be comprehensive and centralize such
1885 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
1886 vectors in signed or unsigned flavors are provided; these functions are also
1887 SETFable. Since it's sometimes desirable to read/write directly from streams,
1888 functions for doing so are also provided. On some implementations,
1889 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
1890 also be supported.")
1891 (home-page "https://github.com/sharplispers/nibbles")
1892 (license license:bsd-3))))
1893
1894 (define-public cl-nibbles
1895 (sbcl-package->cl-source-package sbcl-nibbles))
1896
1897 (define-public ecl-nibbles
1898 (sbcl-package->ecl-package sbcl-nibbles))
1899
1900 (define-public sbcl-ironclad
1901 (package
1902 (name "sbcl-ironclad")
1903 (version "0.54")
1904 (source
1905 (origin
1906 (method git-fetch)
1907 (uri (git-reference
1908 (url "https://github.com/sharplispers/ironclad/")
1909 (commit (string-append "v" version))))
1910 (sha256
1911 (base32 "07g0wpvfqq2yk23prs890d4qvbnr3xd6w8ssd88g89xdg483wpvk"))
1912 (file-name (git-file-name name version))))
1913 (build-system asdf-build-system/sbcl)
1914 (native-inputs
1915 ;; Tests only.
1916 `(("rt" ,sbcl-rt)))
1917 (inputs
1918 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1919 ("flexi-streams" ,sbcl-flexi-streams)))
1920 (synopsis "Cryptographic toolkit written in Common Lisp")
1921 (description
1922 "Ironclad is a cryptography library written entirely in Common Lisp.
1923 It includes support for several popular ciphers, digests, MACs and public key
1924 cryptography algorithms. For several implementations that support Gray
1925 streams, support is included for convenient stream wrappers.")
1926 (home-page "https://github.com/sharplispers/ironclad")
1927 (license license:bsd-3)))
1928
1929 (define-public cl-ironclad
1930 (sbcl-package->cl-source-package sbcl-ironclad))
1931
1932 (define-public ecl-ironclad
1933 (sbcl-package->ecl-package sbcl-ironclad))
1934
1935 (define-public sbcl-named-readtables
1936 (let ((commit "585a28eee8b1b1999279b48cb7e9731187e14b66")
1937 (revision "3"))
1938 (package
1939 (name "sbcl-named-readtables")
1940 (version (git-version "0.9" revision commit))
1941 (source
1942 (origin
1943 (method git-fetch)
1944 (uri (git-reference
1945 (url "https://github.com/melisgl/named-readtables")
1946 (commit commit)))
1947 (sha256
1948 (base32 "072p5djqq9pliw9r20rmpz5r5q5yn6rhbp98vkkp7gfcnp5ppj51"))
1949 (file-name (git-file-name "named-readtables" version))))
1950 (build-system asdf-build-system/sbcl)
1951 (home-page "https://github.com/melisgl/named-readtables/")
1952 (synopsis "Library that creates a namespace for named readtables")
1953 (description
1954 "Named readtables is a library that creates a namespace for named
1955 readtables, which is akin to package namespacing in Common Lisp.")
1956 (license license:bsd-3))))
1957
1958 (define-public cl-named-readtables
1959 (sbcl-package->cl-source-package sbcl-named-readtables))
1960
1961 (define-public ecl-named-readtables
1962 (sbcl-package->ecl-package sbcl-named-readtables))
1963
1964 (define-public sbcl-py-configparser
1965 ;; NOTE: (Sharlatan <2021-01-05 Tue> <19:52:19 UTC+0000>) Project updated last
1966 ;; time 8y ago, it looks like abandoned. VCS of the project:
1967 ;; https://svn.common-lisp.net/py-configparser/trunk
1968 (package
1969 (name "sbcl-py-configparser")
1970 (version "1.0.3")
1971 (source
1972 (origin
1973 (method url-fetch)
1974 (uri (string-append
1975 "https://common-lisp.net/project/py-configparser/releases/"
1976 "py-configparser-" version ".tar.gz"))
1977 (sha256
1978 (base32 "0i4rqz5cv7d7c2w81x5lwy05s6fbi3zikf4k5kpi3bkx3cabwdxj"))))
1979 (build-system asdf-build-system/sbcl)
1980 (inputs
1981 `(("parse-number" ,sbcl-parse-number)))
1982 (home-page "http://common-lisp.net/project/py-configparser/")
1983 (synopsis "ConfigParser Python module functionality for Common Lisp")
1984 (description "The py-configparser package implements the ConfigParser
1985 Python module functionality in Common Lisp. In short, it implements reading
1986 and writing of .INI-file style configuration files with sections containing
1987 key/value pairs of configuration options. In line with the functionalities in
1988 the python module, does this package implement basic interpolation of option
1989 values in other options.")
1990 (license license:expat)))
1991
1992 (define-public cl-py-configparser
1993 (sbcl-package->cl-source-package sbcl-py-configparser))
1994
1995 (define-public ecl-py-configparser
1996 (sbcl-package->ecl-package sbcl-py-configparser))
1997
1998 (define-public sbcl-pythonic-string-reader
1999 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
2000 (package
2001 (name "sbcl-pythonic-string-reader")
2002 (version (git-version "0.0.0" "1" commit))
2003 (source
2004 (origin
2005 (method git-fetch)
2006 (uri (git-reference
2007 (url "https://github.com/smithzvk/pythonic-string-reader/")
2008 (commit commit)))
2009 (sha256
2010 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
2011 (file-name (git-file-name "pythonic-string-reader" version))))
2012 (build-system asdf-build-system/sbcl)
2013 (inputs
2014 `(("named-readtables" ,sbcl-named-readtables)))
2015 (home-page "https://github.com/smithzvk/pythonic-string-reader")
2016 (synopsis "Read table modification inspired by Python's three quote strings")
2017 (description "This piece of code sets up some reader macros that make it
2018 simpler to input string literals which contain backslashes and double quotes
2019 This is very useful for writing complicated docstrings and, as it turns out,
2020 writing code that contains string literals that contain code themselves.")
2021 (license license:bsd-3))))
2022
2023 (define-public cl-pythonic-string-reader
2024 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
2025
2026 (define-public ecl-pythonic-string-reader
2027 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
2028
2029 (define-public sbcl-slime-swank
2030 (package
2031 (name "sbcl-slime-swank")
2032 (version "2.26")
2033 (source
2034 (origin
2035 (file-name (git-file-name "slime-swank" version))
2036 (method git-fetch)
2037 (uri (git-reference
2038 (url "https://github.com/slime/slime/")
2039 (commit (string-append "v" version))))
2040 (sha256
2041 (base32
2042 "0mxb1wnw19v0s72w2wkz5afdlzvpy5nn7pr4vav403qybac0sw5c"))))
2043 (build-system asdf-build-system/sbcl)
2044 (arguments
2045 '(#:asd-systems '("swank")))
2046 (home-page "https://github.com/slime/slime")
2047 (synopsis "Common Lisp Swank server")
2048 (description
2049 "This is only useful if you want to start a Swank server in a Lisp
2050 processes that doesn't run under Emacs. Lisp processes created by
2051 @command{M-x slime} automatically start the server.")
2052 (license (list license:gpl2+ license:public-domain))))
2053
2054 (define-public cl-slime-swank
2055 (sbcl-package->cl-source-package sbcl-slime-swank))
2056
2057 (define-public ecl-slime-swank
2058 (sbcl-package->ecl-package sbcl-slime-swank))
2059
2060 (define-public sbcl-mgl-pax
2061 (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
2062 (package
2063 (name "sbcl-mgl-pax")
2064 (version (git-version "0.0.0" "1" commit))
2065 (source
2066 (origin
2067 (method git-fetch)
2068 (uri (git-reference
2069 (url "https://github.com/melisgl/mgl-pax")
2070 (commit commit)))
2071 (sha256
2072 (base32
2073 "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
2074 (file-name (git-file-name "mgl-pax" version))))
2075 (build-system asdf-build-system/sbcl)
2076 (inputs
2077 `(("3bmd" ,sbcl-3bmd)
2078 ("babel" ,sbcl-babel)
2079 ("cl-fad" ,sbcl-cl-fad)
2080 ("ironclad" ,sbcl-ironclad)
2081 ("named-readtables" ,sbcl-named-readtables)
2082 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)
2083 ("swank" ,sbcl-slime-swank)))
2084 (synopsis "Exploratory programming environment and documentation generator")
2085 (description
2086 "PAX provides an extremely poor man's Explorable Programming
2087 environment. Narrative primarily lives in so called sections that mix markdown
2088 docstrings with references to functions, variables, etc, all of which should
2089 probably have their own docstrings.
2090
2091 The primary focus is on making code easily explorable by using SLIME's
2092 @command{M-.} (@command{slime-edit-definition}). See how to enable some
2093 fanciness in Emacs Integration. Generating documentation from sections and all
2094 the referenced items in Markdown or HTML format is also implemented.
2095
2096 With the simplistic tools provided, one may accomplish similar effects as with
2097 Literate Programming, but documentation is generated from code, not vice versa
2098 and there is no support for chunking yet. Code is first, code must look
2099 pretty, documentation is code.")
2100 (home-page "http://quotenil.com/")
2101 (license license:expat))))
2102
2103 (define-public cl-mgl-pax
2104 (sbcl-package->cl-source-package sbcl-mgl-pax))
2105
2106 (define-public ecl-mgl-pax
2107 (let ((pkg (sbcl-package->ecl-package sbcl-mgl-pax)))
2108 (package
2109 (inherit pkg)
2110 (arguments
2111 (substitute-keyword-arguments (package-arguments pkg)
2112 ;; TODO: Find why the tests fail on ECL.
2113 ((#:tests? _ #f) #f))))))
2114
2115 (define-public sbcl-mssql
2116 (let ((commit "045602a19a32254108f2b75871049293f49731eb")
2117 (revision "1"))
2118 (package
2119 (name "sbcl-mssql")
2120 (version (git-version "0.0.3" revision commit))
2121 (source
2122 (origin
2123 (method git-fetch)
2124 (uri (git-reference
2125 (url "https://github.com/archimag/cl-mssql")
2126 (commit commit)))
2127 (file-name (git-file-name "cl-mssql" version))
2128 (sha256
2129 (base32 "09i50adppgc1ybm3ka9vbindhwa2x29f9n3n0jkrryymdhb8zknm"))))
2130 (build-system asdf-build-system/sbcl)
2131 (inputs
2132 `(("cffi" ,sbcl-cffi)
2133 ("freetds" ,freetds)
2134 ("garbage-pools" ,sbcl-garbage-pools)
2135 ("iterate" ,sbcl-iterate)
2136 ("parse-number" ,sbcl-parse-number)))
2137 (arguments
2138 `(#:phases
2139 (modify-phases %standard-phases
2140 (add-after 'unpack 'fix-paths
2141 (lambda* (#:key inputs #:allow-other-keys)
2142 (substitute* "src/mssql.lisp"
2143 (("libsybdb" all)
2144 (string-append (assoc-ref inputs "freetds") "/lib/" all)))
2145 #t)))))
2146 (home-page "https://github.com/archimag/cl-mssql")
2147 (synopsis "Common Lisp library to interact with MS SQL Server databases")
2148 (description
2149 "@code{cl-mssql} provides an interface to connect to Microsoft SQL
2150 server. It uses the @code{libsybdb} foreign library provided by the FreeTDS
2151 project.")
2152 (license license:llgpl))))
2153
2154 (define-public ecl-mssql
2155 (sbcl-package->ecl-package sbcl-mssql))
2156
2157 (define-public cl-mssql
2158 (sbcl-package->cl-source-package sbcl-mssql))
2159
2160 (define-public sbcl-lisp-unit
2161 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
2162 (package
2163 (name "sbcl-lisp-unit")
2164 (version (git-version "0.0.0" "1" commit))
2165 (source
2166 (origin
2167 (method git-fetch)
2168 (uri (git-reference
2169 (url "https://github.com/OdonataResearchLLC/lisp-unit")
2170 (commit commit)))
2171 (sha256
2172 (base32
2173 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
2174 (file-name (git-file-name "lisp-unit" version))))
2175 (build-system asdf-build-system/sbcl)
2176 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
2177 (description
2178 "@command{lisp-unit} is a Common Lisp library that supports unit
2179 testing. It is an extension of the library written by Chris Riesbeck.")
2180 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
2181 (license license:expat))))
2182
2183 (define-public cl-lisp-unit
2184 (sbcl-package->cl-source-package sbcl-lisp-unit))
2185
2186 (define-public ecl-lisp-unit
2187 (sbcl-package->ecl-package sbcl-lisp-unit))
2188
2189 (define-public sbcl-anaphora
2190 (package
2191 (name "sbcl-anaphora")
2192 (version "0.9.6")
2193 (source
2194 (origin
2195 (method git-fetch)
2196 (uri (git-reference
2197 (url "https://github.com/tokenrove/anaphora")
2198 (commit version)))
2199 (sha256
2200 (base32
2201 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
2202 (file-name (git-file-name "anaphora" version))))
2203 (build-system asdf-build-system/sbcl)
2204 (native-inputs
2205 `(("rt" ,sbcl-rt)))
2206 (synopsis "The anaphoric macro collection from Hell")
2207 (description
2208 "Anaphora is the anaphoric macro collection from Hell: it includes many
2209 new fiends in addition to old friends like @command{aif} and
2210 @command{awhen}.")
2211 (home-page "https://github.com/tokenrove/anaphora")
2212 (license license:public-domain)))
2213
2214 (define-public cl-anaphora
2215 (sbcl-package->cl-source-package sbcl-anaphora))
2216
2217 (define-public ecl-anaphora
2218 (sbcl-package->ecl-package sbcl-anaphora))
2219
2220 (define-public sbcl-lift
2221 (let ((commit "7d49a66c62759535624037826891152223d4206c"))
2222 (package
2223 (name "sbcl-lift")
2224 (version (git-version "1.7.1" "1" commit))
2225 (source
2226 (origin
2227 (method git-fetch)
2228 (uri (git-reference
2229 (url "https://github.com/gwkkwg/lift")
2230 (commit commit)))
2231 (sha256
2232 (base32
2233 "127v5avpz1i4m0lkaxqrq8hrl69rdazqaxf6s8awf0nd7wj2g4dp"))
2234 (file-name (git-file-name "lift" version))
2235 (modules '((guix build utils)))
2236 (snippet
2237 ;; Don't keep the bundled website
2238 `(begin
2239 (delete-file-recursively "website")
2240 #t))))
2241 (build-system asdf-build-system/sbcl)
2242 (arguments
2243 ;; The tests require a debugger, but we run with the debugger disabled.
2244 '(#:tests? #f))
2245 (synopsis "LIsp Framework for Testing")
2246 (description
2247 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
2248 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
2249 testcases are organized into hierarchical testsuites each of which can have
2250 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
2251 supports randomized testing, benchmarking, profiling, and reporting.")
2252 (home-page "https://github.com/gwkkwg/lift")
2253 (license license:expat))))
2254
2255 (define-public cl-lift
2256 (sbcl-package->cl-source-package sbcl-lift))
2257
2258 (define-public ecl-lift
2259 (sbcl-package->ecl-package sbcl-lift))
2260
2261 (define-public sbcl-let-plus
2262 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
2263 (package
2264 (name "sbcl-let-plus")
2265 (version (git-version "0.0.0" "1" commit))
2266 (source
2267 (origin
2268 (method git-fetch)
2269 (uri (git-reference
2270 (url "https://github.com/sharplispers/let-plus")
2271 (commit commit)))
2272 (sha256
2273 (base32
2274 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
2275 (file-name (git-file-name "let-plus" version))))
2276 (build-system asdf-build-system/sbcl)
2277 (inputs
2278 `(("alexandria" ,sbcl-alexandria)
2279 ("anaphora" ,sbcl-anaphora)))
2280 (native-inputs
2281 `(("lift" ,sbcl-lift)))
2282 (synopsis "Destructuring extension of let*")
2283 (description
2284 "This library implements the let+ macro, which is a dectructuring
2285 extension of let*. It features:
2286
2287 @itemize
2288 @item Clean, consistent syntax and small implementation (less than 300 LOC,
2289 not counting tests)
2290 @item Placeholder macros allow editor hints and syntax highlighting
2291 @item @command{&ign} for ignored values (in forms where that makes sense)
2292 @item Very easy to extend
2293 @end itemize\n")
2294 (home-page "https://github.com/sharplispers/let-plus")
2295 (license license:boost1.0))))
2296
2297 (define-public cl-let-plus
2298 (sbcl-package->cl-source-package sbcl-let-plus))
2299
2300 (define-public ecl-let-plus
2301 (sbcl-package->ecl-package sbcl-let-plus))
2302
2303 (define-public sbcl-cl-colors
2304 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
2305 (package
2306 (name "sbcl-cl-colors")
2307 (version (git-version "0.0.0" "1" commit))
2308 (source
2309 (origin
2310 (method git-fetch)
2311 (uri (git-reference
2312 (url "https://github.com/tpapp/cl-colors")
2313 (commit commit)))
2314 (sha256
2315 (base32
2316 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2317 (file-name (git-file-name "cl-colors" version))))
2318 (build-system asdf-build-system/sbcl)
2319 (inputs
2320 `(("alexandria" ,sbcl-alexandria)
2321 ("let-plus" ,sbcl-let-plus)))
2322 (synopsis "Simple color library for Common Lisp")
2323 (description
2324 "This is a very simple color library for Common Lisp, providing
2325
2326 @itemize
2327 @item Types for representing colors in HSV and RGB spaces.
2328 @item Simple conversion functions between the above types (and also
2329 hexadecimal representation for RGB).
2330 @item Some predefined colors (currently X11 color names – of course the
2331 library does not depend on X11).Because color in your terminal is nice.
2332 @end itemize
2333
2334 This library is no longer supported by its author.")
2335 (home-page "https://github.com/tpapp/cl-colors")
2336 (license license:boost1.0))))
2337
2338 (define-public cl-colors
2339 (sbcl-package->cl-source-package sbcl-cl-colors))
2340
2341 (define-public ecl-cl-colors
2342 (sbcl-package->ecl-package sbcl-cl-colors))
2343
2344 (define-public sbcl-cl-ansi-text
2345 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2346 (package
2347 (name "sbcl-cl-ansi-text")
2348 (version (git-version "1.0.0" "1" commit))
2349 (source
2350 (origin
2351 (method git-fetch)
2352 (uri (git-reference
2353 (url "https://github.com/pnathan/cl-ansi-text")
2354 (commit commit)))
2355 (sha256
2356 (base32
2357 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2358 (file-name (git-file-name "cl-ansi-text" version))))
2359 (build-system asdf-build-system/sbcl)
2360 (inputs
2361 `(("alexandria" ,sbcl-alexandria)
2362 ("cl-colors" ,sbcl-cl-colors)))
2363 (native-inputs
2364 `(("fiveam" ,sbcl-fiveam)))
2365 (synopsis "ANSI terminal color implementation for Common Lisp")
2366 (description
2367 "@command{cl-ansi-text} provides utilities which enable printing to an
2368 ANSI terminal with colored text. It provides the macro @command{with-color}
2369 which causes everything printed in the body to be displayed with the provided
2370 color. It further provides functions which will print the argument with the
2371 named color.")
2372 (home-page "https://github.com/pnathan/cl-ansi-text")
2373 (license license:llgpl))))
2374
2375 (define-public cl-ansi-text
2376 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2377
2378 (define-public ecl-cl-ansi-text
2379 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2380
2381 (define-public sbcl-prove
2382 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2383 (package
2384 (name "sbcl-prove")
2385 (version (git-version "1.0.0" "1" commit))
2386 (source
2387 (origin
2388 (method git-fetch)
2389 (uri (git-reference
2390 (url "https://github.com/fukamachi/prove")
2391 (commit commit)))
2392 (sha256
2393 (base32
2394 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2395 (file-name (git-file-name "prove" version))))
2396 (build-system asdf-build-system/sbcl)
2397 (inputs
2398 `(("alexandria" ,sbcl-alexandria)
2399 ("cl-ppcre" ,sbcl-cl-ppcre)
2400 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2401 (synopsis "Yet another unit testing framework for Common Lisp")
2402 (description
2403 "This project was originally called @command{cl-test-more}.
2404 @command{prove} is yet another unit testing framework for Common Lisp. The
2405 advantages of @command{prove} are:
2406
2407 @itemize
2408 @item Various simple functions for testing and informative error messages
2409 @item ASDF integration
2410 @item Extensible test reporters
2411 @item Colorizes the report if it's available (note for SLIME)
2412 @item Reports test durations
2413 @end itemize\n")
2414 (home-page "https://github.com/fukamachi/prove")
2415 (license license:expat))))
2416
2417 (define-public cl-prove
2418 (sbcl-package->cl-source-package sbcl-prove))
2419
2420 (define-public ecl-prove
2421 (sbcl-package->ecl-package sbcl-prove))
2422
2423 (define-public sbcl-proc-parse
2424 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2425 (package
2426 (name "sbcl-proc-parse")
2427 (version (git-version "0.0.0" "1" commit))
2428 (source
2429 (origin
2430 (method git-fetch)
2431 (uri (git-reference
2432 (url "https://github.com/fukamachi/proc-parse")
2433 (commit commit)))
2434 (sha256
2435 (base32
2436 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2437 (file-name (git-file-name "proc-parse" version))))
2438 (build-system asdf-build-system/sbcl)
2439 (inputs
2440 `(("alexandria" ,sbcl-alexandria)
2441 ("babel" ,sbcl-babel)))
2442 (native-inputs
2443 `(("prove" ,sbcl-prove)))
2444 (arguments
2445 ;; TODO: Tests don't find "proc-parse-test", why?
2446 `(#:tests? #f))
2447 (synopsis "Procedural vector parser")
2448 (description
2449 "This is a string/octets parser library for Common Lisp with speed and
2450 readability in mind. Unlike other libraries, the code is not a
2451 pattern-matching-like, but a char-by-char procedural parser.")
2452 (home-page "https://github.com/fukamachi/proc-parse")
2453 (license license:bsd-2))))
2454
2455 (define-public cl-proc-parse
2456 (sbcl-package->cl-source-package sbcl-proc-parse))
2457
2458 (define-public ecl-proc-parse
2459 (sbcl-package->ecl-package sbcl-proc-parse))
2460
2461 (define-public sbcl-parse-float
2462 (let ((commit "3074765101e41222b6b624a66aaf1e6416379f9c")
2463 (revision "2"))
2464 (package
2465 (name "sbcl-parse-float")
2466 (version (git-version "0.0.0" revision commit))
2467 (source
2468 (origin
2469 (method git-fetch)
2470 (uri (git-reference
2471 (url "https://github.com/soemraws/parse-float")
2472 (commit commit)))
2473 (sha256
2474 (base32 "0jd2spawc3v8vzqf8ky4cngl45jm65fhkrdf20mf6dcbn3mzpkmr"))
2475 (file-name (git-file-name "proc-parse" version))))
2476 (build-system asdf-build-system/sbcl)
2477 (arguments
2478 ;; FIXME: https://github.com/soemraws/parse-float/issues/12
2479 `(#:asd-systems '("parse-float" "parse-float-tests")))
2480 (native-inputs
2481 `(("lisp-unit" ,sbcl-lisp-unit)))
2482 (inputs
2483 `(("alexandria" ,sbcl-alexandria)))
2484 (home-page "https://github.com/soemraws/parse-float")
2485 (synopsis "Parse a floating point value from a string in Common Lisp")
2486 (description
2487 "This package exports the following function to parse floating-point
2488 values from a string in Common Lisp.")
2489 (license license:public-domain))))
2490
2491 (define-public cl-parse-float
2492 (sbcl-package->cl-source-package sbcl-parse-float))
2493
2494 (define-public ecl-parse-float
2495 (sbcl-package->ecl-package sbcl-parse-float))
2496
2497 (define-public sbcl-cl-string-match
2498 (let ((revision "1")
2499 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2500 (package
2501 (name "sbcl-cl-string-match")
2502 (version (git-version "0" revision changeset))
2503 (source
2504 (origin
2505 (method hg-fetch)
2506 (uri (hg-reference
2507 (url "https://bitbucket.org/vityok/cl-string-match/")
2508 (changeset changeset)))
2509 (sha256
2510 (base32
2511 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2512 (file-name (git-file-name "cl-string-match" version))))
2513 (build-system asdf-build-system/sbcl)
2514 (inputs
2515 `(("alexandria" ,sbcl-alexandria)
2516 ("babel" ,sbcl-babel)
2517 ("iterate" ,sbcl-iterate)
2518 ("jpl-queues" ,sbcl-jpl-queues)
2519 ("jpl-util" ,sbcl-jpl-util)
2520 ("mgl-pax" ,sbcl-mgl-pax)
2521 ("parse-float" ,sbcl-parse-float)
2522 ("proc-parse" ,sbcl-proc-parse)
2523 ("yacc" ,sbcl-cl-yacc)))
2524 ;; TODO: Tests are not evaluated properly.
2525 (native-inputs
2526 ;; For testing:
2527 `(("lisp-unit" ,sbcl-lisp-unit)))
2528 (arguments
2529 `(#:tests? #f))
2530 (synopsis "Set of utilities to manipulate strings in Common Lisp")
2531 (description
2532 "@command{cl-strings} is a small, portable, dependency-free set of
2533 utilities that make it even easier to manipulate text in Common Lisp. It has
2534 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
2535 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2536 (license license:bsd-3))))
2537
2538 (define-public cl-string-match
2539 (sbcl-package->cl-source-package sbcl-cl-string-match))
2540
2541 (define-public ecl-cl-string-match
2542 (sbcl-package->ecl-package sbcl-cl-string-match))
2543
2544 (define-public sbcl-ptester
2545 (let ((commit "fe69fde54f4bce00ce577feb918796c293fc7253")
2546 (revision "1"))
2547 (package
2548 (name "sbcl-ptester")
2549 (version (git-version "2.1.3" revision commit))
2550 (source
2551 (origin
2552 (method git-fetch)
2553 (uri (git-reference
2554 (url "http://git.kpe.io/ptester.git")
2555 (commit commit)))
2556 (file-name (git-file-name name version))
2557 (sha256
2558 (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf"))))
2559 (build-system asdf-build-system/sbcl)
2560 (home-page "http://quickdocs.org/ptester/")
2561 (synopsis "Portable test harness package")
2562 (description
2563 "@command{ptester} is a portable testing framework based on Franz's
2564 tester module.")
2565 (license license:llgpl))))
2566
2567 (define-public cl-ptester
2568 (sbcl-package->cl-source-package sbcl-ptester))
2569
2570 (define-public ecl-ptester
2571 (sbcl-package->ecl-package sbcl-ptester))
2572
2573 (define-public sbcl-puri
2574 (let ((commit "4bbab89d9ccbb26346899d1f496c97604fec567b")
2575 (revision "2"))
2576 (package
2577 (name "sbcl-puri")
2578 (version (git-version "1.5.7" revision commit))
2579 (source
2580 (origin
2581 (method git-fetch)
2582 (uri (git-reference
2583 (url "http://git.kpe.io/puri.git")
2584 (commit commit)))
2585 (file-name (git-file-name "puri" version))
2586 (sha256
2587 (base32 "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd"))))
2588 (build-system asdf-build-system/sbcl)
2589 (native-inputs
2590 `(("ptester" ,sbcl-ptester)))
2591 (home-page "http://puri.kpe.io/")
2592 (synopsis "Portable URI Library")
2593 (description
2594 "This is a portable Universal Resource Identifier library for Common
2595 Lisp programs. It parses URI according to the RFC 2396 specification.")
2596 (license license:llgpl))))
2597
2598 (define-public cl-puri
2599 (sbcl-package->cl-source-package sbcl-puri))
2600
2601 (define-public ecl-puri
2602 (sbcl-package->ecl-package sbcl-puri))
2603
2604 (define-public sbcl-qmynd
2605 (let ((commit "7e56daf73f0ed5f49a931c01af75fb874bcf3445")
2606 (revision "1"))
2607 (package
2608 (name "sbcl-qmynd")
2609 (version (git-version "1.0.0" revision commit))
2610 (source
2611 (origin
2612 (method git-fetch)
2613 (uri (git-reference
2614 (url "https://github.com/qitab/qmynd")
2615 (commit commit)))
2616 (file-name (git-file-name name version))
2617 (sha256
2618 (base32
2619 "06gw5wxcpdclb6a5i5k9lbmdlyqsp182czrm9bm1cpklzbj0ihrl"))))
2620 (build-system asdf-build-system/sbcl)
2621 (inputs
2622 `(("asdf-finalizers" ,sbcl-asdf-finalizers)
2623 ("babel" ,sbcl-babel)
2624 ("chipz" ,sbcl-chipz)
2625 ("cl+ssl" ,sbcl-cl+ssl)
2626 ("flexi-streams" ,sbcl-flexi-streams)
2627 ("ironclad" ,sbcl-ironclad)
2628 ("salza2" ,sbcl-salza2)
2629 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
2630 ("usocket" ,sbcl-usocket)))
2631 (home-page "https://github.com/qitab/qmynd")
2632 (synopsis "QITAB MySQL Native Driver for Common Lisp")
2633 (description "QMyND, the QITAB MySQL Native Driver, is a MySQL client
2634 library that directly talks to a MySQL server in its native network protocol.
2635
2636 It's a part of QITAB umbrella project.")
2637 (license license:expat))))
2638
2639 (define-public ecl-qmynd
2640 (sbcl-package->ecl-package sbcl-qmynd))
2641
2642 (define-public cl-qmynd
2643 (sbcl-package->cl-source-package sbcl-qmynd))
2644
2645 (define-public sbcl-queues
2646 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2647 (package
2648 (name "sbcl-queues")
2649 (version (git-version "0.0.0" "1" commit))
2650 (source
2651 (origin
2652 (method git-fetch)
2653 (uri (git-reference
2654 (url "https://github.com/oconnore/queues")
2655 (commit commit)))
2656 (file-name (git-file-name "queues" version))
2657 (sha256
2658 (base32
2659 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2660 (build-system asdf-build-system/sbcl)
2661 (inputs
2662 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
2663 (arguments
2664 '(#:asd-systems '("queues"
2665 "queues.simple-queue"
2666 "queues.simple-cqueue"
2667 "queues.priority-queue"
2668 "queues.priority-cqueue")))
2669 (home-page "https://github.com/oconnore/queues")
2670 (synopsis "Common Lisp queue library")
2671 (description
2672 "This is a simple queue library for Common Lisp with features such as
2673 non-consing thread safe queues and fibonacci priority queues.")
2674 (license license:expat))))
2675
2676 (define-public cl-queues
2677 (sbcl-package->cl-source-package sbcl-queues))
2678
2679 (define-public ecl-queues
2680 (sbcl-package->ecl-package sbcl-queues))
2681
2682 (define-public sbcl-glsl-spec
2683 (let ((commit "f04476f7da89355ae6856b33283c60ba95c6555d")
2684 (revision "1"))
2685 (package
2686 (name "sbcl-glsl-spec")
2687 (version (git-version "0.0.0" revision commit))
2688 (source
2689 (origin
2690 (method git-fetch)
2691 (uri (git-reference
2692 (url "https://github.com/cbaggers/glsl-spec")
2693 (commit commit)))
2694 (file-name (git-file-name "glsl-spec" version))
2695 (sha256
2696 (base32 "01ipspr22fgfj3w8wq2y81lzrjc4vpfiwnr3dqhjlpzzra46am8c"))))
2697 (build-system asdf-build-system/sbcl)
2698 (arguments
2699 `(#:asd-systems '("glsl-spec" "glsl-symbols" "glsl-docs")))
2700 (home-page "https://github.com/cbaggers/glsl-spec")
2701 (synopsis "Common Lisp GLSL specification as a datastructure")
2702 (description
2703 "This package contains the specification of all functions and variables
2704 from GLSL as data.")
2705 (license license:unlicense))))
2706
2707 (define-public ecl-glsl-spec
2708 (sbcl-package->ecl-package sbcl-glsl-spec))
2709
2710 (define-public cl-glsl-spec
2711 (sbcl-package->cl-source-package sbcl-glsl-spec))
2712
2713 (define-public sbcl-varjo
2714 (let ((commit "9e77f30220053155d2ef8870ceba157f75e538d4")
2715 (revision "1"))
2716 (package
2717 (name "sbcl-varjo")
2718 (version (git-version "0.0.0" revision commit))
2719 (source
2720 (origin
2721 (method git-fetch)
2722 (uri (git-reference
2723 (url "https://github.com/cbaggers/varjo")
2724 (commit commit)))
2725 (file-name (git-file-name "varjo" version))
2726 (sha256
2727 (base32 "1p9x1wj576x5d31yvls9r1avkjkyhri7kyxbjfkg9z93a1w18j9z"))))
2728 (build-system asdf-build-system/sbcl)
2729 (native-inputs
2730 `(("fiveam" ,sbcl-fiveam)))
2731 (inputs
2732 `(("alexandria" ,sbcl-alexandria)
2733 ("cl-ppcre" ,sbcl-cl-ppcre)
2734 ("documentation-utils" ,sbcl-documentation-utils)
2735 ("fn" ,sbcl-fn)
2736 ("glsl-spec" ,sbcl-glsl-spec)
2737 ("named-readtables" ,sbcl-named-readtables)
2738 ("parse-float" ,sbcl-parse-float)
2739 ("vas-string-metrics" ,sbcl-vas-string-metrics)))
2740 (home-page "https://github.com/cbaggers/varjo")
2741 (synopsis "Lisp to GLSL Language Translator")
2742 (description
2743 "Varjo is a Lisp to GLSL compiler. Vari is the dialect of lisp Varjo
2744 compiles. It aims to be as close to Common Lisp as possible, but naturally it
2745 is statically typed so there are differences.")
2746 (license license:bsd-2))))
2747
2748 (define-public ecl-varjo
2749 (sbcl-package->ecl-package sbcl-varjo))
2750
2751 (define-public cl-varjo
2752 (sbcl-package->cl-source-package sbcl-varjo))
2753
2754 (define-public sbcl-cffi
2755 (package
2756 (name "sbcl-cffi")
2757 (version "0.23.0")
2758 (source
2759 (origin
2760 (method git-fetch)
2761 (uri (git-reference
2762 (url "https://github.com/cffi/cffi")
2763 (commit (string-append "v" version))))
2764 (file-name (git-file-name "cffi-bootstrap" version))
2765 (sha256
2766 (base32 "03s98imc5niwnpj3hhrafl7dmxq45g74h96sm68976k7ahi3vl5b"))))
2767 (build-system asdf-build-system/sbcl)
2768 (inputs
2769 `(("alexandria" ,sbcl-alexandria)
2770 ("babel" ,sbcl-babel)
2771 ("libffi" ,libffi)
2772 ("trivial-features" ,sbcl-trivial-features)))
2773 (native-inputs
2774 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2775 ("pkg-config" ,pkg-config)
2776 ("rt" ,sbcl-rt)))
2777 (arguments
2778 '(#:phases
2779 (modify-phases %standard-phases
2780 (add-after 'unpack 'fix-arm-support
2781 (lambda _
2782 ;; This is apparently deprecated since libffi-3.3.
2783 (substitute* "libffi/libffi-types.lisp"
2784 (("\\\(\\\(:unix64.*") ")\n"))
2785 #t))
2786 (add-after 'unpack 'fix-paths
2787 (lambda* (#:key inputs #:allow-other-keys)
2788 (substitute* "libffi/libffi.lisp"
2789 (("libffi.so.7" all) (string-append
2790 (assoc-ref inputs "libffi")
2791 "/lib/" all)))
2792 (substitute* "toolchain/c-toolchain.lisp"
2793 (("\"cc\"") (format #f "~S" (which "gcc"))))))
2794 (add-after 'build 'install-headers
2795 (lambda* (#:key outputs #:allow-other-keys)
2796 (install-file "grovel/common.h"
2797 (string-append
2798 (assoc-ref outputs "out")
2799 "/include/grovel")))))
2800 #:asd-files '("cffi.asd"
2801 "cffi-toolchain.asd"
2802 "cffi-grovel.asd"
2803 "cffi-libffi.asd"
2804 "cffi-uffi-compat.asd")
2805 #:asd-systems '("cffi"
2806 "cffi-libffi"
2807 "cffi-uffi-compat")))
2808 (home-page "https://common-lisp.net/project/cffi/")
2809 (synopsis "Common Foreign Function Interface for Common Lisp")
2810 (description "The Common Foreign Function Interface (CFFI)
2811 purports to be a portable foreign function interface for Common Lisp.
2812 The CFFI library is composed of a Lisp-implementation-specific backend
2813 in the CFFI-SYS package, and a portable frontend in the CFFI
2814 package.")
2815 (license license:expat)))
2816
2817 (define-public cl-cffi
2818 (sbcl-package->cl-source-package sbcl-cffi))
2819
2820 (define-public ecl-cffi
2821 (sbcl-package->ecl-package sbcl-cffi))
2822
2823 (define-public sbcl-cl-sqlite
2824 (package
2825 (name "sbcl-cl-sqlite")
2826 (version "0.2.1")
2827 (source
2828 (origin
2829 (method git-fetch)
2830 (uri (git-reference
2831 (url "https://github.com/dmitryvk/cl-sqlite")
2832 (commit version)))
2833 (file-name (git-file-name "cl-sqlite" version))
2834 (sha256
2835 (base32
2836 "08iv7b4m0hh7qx2cvq4f510nrgdld0vicnvmqsh9w0fgrcgmyg4k"))))
2837 (build-system asdf-build-system/sbcl)
2838 (inputs
2839 `(("iterate" ,sbcl-iterate)
2840 ("cffi" ,sbcl-cffi)
2841 ("sqlite" ,sqlite)))
2842 (native-inputs
2843 `(("fiveam" ,sbcl-fiveam)
2844 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2845 (arguments
2846 `(#:asd-systems '("sqlite")
2847 #:phases
2848 (modify-phases %standard-phases
2849 (add-after 'unpack 'fix-paths
2850 (lambda* (#:key inputs #:allow-other-keys)
2851 (substitute* "sqlite-ffi.lisp"
2852 (("libsqlite3" all) (string-append
2853 (assoc-ref inputs "sqlite")"/lib/" all))))))))
2854 (home-page "https://common-lisp.net/project/cl-sqlite/")
2855 (synopsis "Common Lisp binding for SQLite")
2856 (description
2857 "The @command{cl-sqlite} package is an interface to the SQLite embedded
2858 relational database engine.")
2859 (license license:public-domain)))
2860
2861 (define-public cl-sqlite
2862 (sbcl-package->cl-source-package sbcl-cl-sqlite))
2863
2864 (define-public ecl-cl-sqlite
2865 (sbcl-package->ecl-package sbcl-cl-sqlite))
2866
2867 (define-public sbcl-parenscript
2868 ;; Source archives are overwritten on every release, we use the Git repo instead.
2869 (let ((commit "7a1ac46353cecd144fc91915ba9f122aafcf4766"))
2870 (package
2871 (name "sbcl-parenscript")
2872 (version (git-version "2.7.1" "1" commit))
2873 (source
2874 (origin
2875 (method git-fetch)
2876 (uri (git-reference
2877 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
2878 (commit commit)))
2879 (file-name (git-file-name "parenscript" version))
2880 (sha256
2881 (base32
2882 "0c22lqarrpbq82dg1sb3y6mp6w2faczp34ymzhnmff88yfq1xzsf"))))
2883 (build-system asdf-build-system/sbcl)
2884 (inputs
2885 `(("cl-ppcre" ,sbcl-cl-ppcre)
2886 ("anaphora" ,sbcl-anaphora)
2887 ("named-readtables" ,sbcl-named-readtables)))
2888 (home-page "https://common-lisp.net/project/parenscript/")
2889 (synopsis "Translator from a subset of Common Lisp to JavaScript")
2890 (description
2891 "Parenscript is a translator from an extended subset of Common Lisp to
2892 JavaScript. Parenscript code can run almost identically on both the
2893 browser (as JavaScript) and server (as Common Lisp).
2894
2895 Parenscript code is treated the same way as Common Lisp code, making the full
2896 power of Lisp macros available for JavaScript. This provides a web
2897 development environment that is unmatched in its ability to reduce code
2898 duplication and provide advanced meta-programming facilities to web
2899 developers.
2900
2901 At the same time, Parenscript is different from almost all other \"language
2902 X\" to JavaScript translators in that it imposes almost no overhead:
2903
2904 @itemize
2905 @item No run-time dependencies: Any piece of Parenscript code is runnable
2906 as-is. There are no JavaScript files to include.
2907 @item Native types: Parenscript works entirely with native JavaScript data
2908 types. There are no new types introduced, and object prototypes are not
2909 touched.
2910 @item Native calling convention: Any JavaScript code can be called without the
2911 need for bindings. Likewise, Parenscript can be used to make efficient,
2912 self-contained JavaScript libraries.
2913 @item Readable code: Parenscript generates concise, formatted, idiomatic
2914 JavaScript code. Identifier names are preserved. This enables seamless
2915 debugging in tools like Firebug.
2916 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
2917 Lisp features. The generated code is almost as fast as hand-written
2918 JavaScript.
2919 @end itemize\n")
2920 (license license:bsd-3))))
2921
2922 (define-public cl-parenscript
2923 (sbcl-package->cl-source-package sbcl-parenscript))
2924
2925 (define-public ecl-parenscript
2926 (sbcl-package->ecl-package sbcl-parenscript))
2927
2928 (define-public sbcl-cl-json
2929 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
2930 (package
2931 (name "sbcl-cl-json")
2932 (version (git-version "0.5" "1" commit))
2933 (source
2934 (origin
2935 (method git-fetch)
2936 (uri (git-reference
2937 (url "https://github.com/hankhero/cl-json")
2938 (commit commit)))
2939 (file-name (git-file-name "cl-json" version))
2940 (sha256
2941 (base32
2942 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
2943 (build-system asdf-build-system/sbcl)
2944 (native-inputs
2945 `(("fiveam" ,sbcl-fiveam)))
2946 (home-page "https://github.com/hankhero/cl-json")
2947 (synopsis "JSON encoder and decoder for Common-Lisp")
2948 (description
2949 "@command{cl-json} provides an encoder of Lisp objects to JSON format
2950 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
2951 and the decoder are highly customizable; at the same time, the default
2952 settings ensure a very simple mode of operation, similar to that provided by
2953 @command{yason} or @command{st-json}.")
2954 (license license:expat))))
2955
2956 (define-public cl-json
2957 (sbcl-package->cl-source-package sbcl-cl-json))
2958
2959 (define-public ecl-cl-json
2960 (sbcl-package->ecl-package sbcl-cl-json))
2961
2962 (define-public sbcl-unix-opts
2963 (package
2964 (name "sbcl-unix-opts")
2965 (version "0.1.7")
2966 (source
2967 (origin
2968 (method git-fetch)
2969 (uri (git-reference
2970 (url "https://github.com/libre-man/unix-opts")
2971 (commit version)))
2972 (file-name (git-file-name "unix-opts" version))
2973 (sha256
2974 (base32
2975 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
2976 (build-system asdf-build-system/sbcl)
2977 (home-page "https://github.com/hankhero/cl-json")
2978 (synopsis "Unix-style command line options parser")
2979 (description
2980 "This is a minimalistic parser of command line options. The main
2981 advantage of the library is the ability to concisely define command line
2982 options once and then use this definition for parsing and extraction of
2983 command line arguments, as well as printing description of command line
2984 options (you get --help for free). This way you don't need to repeat
2985 yourself. Also, @command{unix-opts} doesn't depend on anything and
2986 precisely controls the behavior of the parser via Common Lisp restarts.")
2987 (license license:expat)))
2988
2989 (define-public cl-unix-opts
2990 (sbcl-package->cl-source-package sbcl-unix-opts))
2991
2992 (define-public ecl-unix-opts
2993 (sbcl-package->ecl-package sbcl-unix-opts))
2994
2995 (define-public sbcl-trivial-garbage
2996 (package
2997 (name "sbcl-trivial-garbage")
2998 (version "0.21")
2999 (source
3000 (origin
3001 (method git-fetch)
3002 (uri (git-reference
3003 (url "https://github.com/trivial-garbage/trivial-garbage")
3004 (commit (string-append "v" version))))
3005 (file-name (git-file-name "trivial-garbage" version))
3006 (sha256
3007 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
3008 (build-system asdf-build-system/sbcl)
3009 (native-inputs
3010 `(("rt" ,sbcl-rt)))
3011 (home-page "https://common-lisp.net/project/trivial-garbage/")
3012 (synopsis "Portable GC-related APIs for Common Lisp")
3013 (description "@command{trivial-garbage} provides a portable API to
3014 finalizers, weak hash-tables and weak pointers on all major implementations of
3015 the Common Lisp programming language.")
3016 (license license:public-domain)))
3017
3018 (define-public cl-trivial-garbage
3019 (sbcl-package->cl-source-package sbcl-trivial-garbage))
3020
3021 (define-public ecl-trivial-garbage
3022 (sbcl-package->ecl-package sbcl-trivial-garbage))
3023
3024 (define-public sbcl-closer-mop
3025 (let ((commit "19c9d33f576e10715fd79cc1d4f688dab0f241d6"))
3026 (package
3027 (name "sbcl-closer-mop")
3028 (version (git-version "1.0.0" "2" commit))
3029 (source
3030 (origin
3031 (method git-fetch)
3032 (uri (git-reference
3033 (url "https://github.com/pcostanza/closer-mop")
3034 (commit commit)))
3035 (sha256
3036 (base32 "1w3x087wvlwkd6swfdgbvjfs6kazf0la8ax4pjfzikwjch4snn2c"))
3037 (file-name (git-file-name "closer-mop" version ))))
3038 (build-system asdf-build-system/sbcl)
3039 (home-page "https://github.com/pcostanza/closer-mop")
3040 (synopsis "Rectifies absent or incorrect CLOS MOP features")
3041 (description "Closer to MOP is a compatibility layer that rectifies many
3042 of the absent or incorrect CLOS MOP features across a broad range of Common
3043 Lisp implementations.")
3044 (license license:expat))))
3045
3046 (define-public cl-closer-mop
3047 (sbcl-package->cl-source-package sbcl-closer-mop))
3048
3049 (define-public ecl-closer-mop
3050 (sbcl-package->ecl-package sbcl-closer-mop))
3051
3052 (define-public sbcl-cl-cffi-gtk
3053 (let ((commit "e9a46df65995d9a16e6c8dbdc1e09b775eb4a966"))
3054 (package
3055 (name "sbcl-cl-cffi-gtk")
3056 (version (git-version "0.11.2" "2" commit))
3057 (source
3058 (origin
3059 (method git-fetch)
3060 (uri (git-reference
3061 (url "https://github.com/Ferada/cl-cffi-gtk/")
3062 (commit commit)))
3063 (file-name (git-file-name "cl-cffi-gtk" version))
3064 (sha256
3065 (base32
3066 "04vix0gmqsj91lm975sx7jhlnz5gq1xf9jp873mp7c8frc5dk1jj"))))
3067 (build-system asdf-build-system/sbcl)
3068 (native-inputs
3069 `(("fiveam" ,sbcl-fiveam)))
3070 (inputs
3071 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3072 ("cairo" ,cairo)
3073 ("cffi" ,sbcl-cffi)
3074 ("closer-mop" ,sbcl-closer-mop)
3075 ("gdk-pixbuf" ,gdk-pixbuf)
3076 ("glib" ,glib)
3077 ("gtk" ,gtk+)
3078 ("iterate" ,sbcl-iterate)
3079 ("pango" ,pango)
3080 ("trivial-features" ,sbcl-trivial-features)
3081 ("trivial-garbage" ,sbcl-trivial-garbage)))
3082 (arguments
3083 `(#:asd-files '("gtk/cl-cffi-gtk.asd"
3084 "glib/cl-cffi-gtk-glib.asd"
3085 "gobject/cl-cffi-gtk-gobject.asd"
3086 "gio/cl-cffi-gtk-gio.asd"
3087 "cairo/cl-cffi-gtk-cairo.asd"
3088 "pango/cl-cffi-gtk-pango.asd"
3089 "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
3090 "gdk/cl-cffi-gtk-gdk.asd")
3091 #:test-asd-file "test/cl-cffi-gtk-test.asd"
3092 ;; TODO: Tests fail with memory fault.
3093 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
3094 #:tests? #f
3095 #:phases
3096 (modify-phases %standard-phases
3097 (add-after 'unpack 'fix-paths
3098 (lambda* (#:key inputs #:allow-other-keys)
3099 (substitute* "glib/glib.init.lisp"
3100 (("libglib|libgthread" all)
3101 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3102 (substitute* "gobject/gobject.init.lisp"
3103 (("libgobject" all)
3104 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3105 (substitute* "gio/gio.init.lisp"
3106 (("libgio" all)
3107 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3108 (substitute* "cairo/cairo.init.lisp"
3109 (("libcairo" all)
3110 (string-append (assoc-ref inputs "cairo") "/lib/" all)))
3111 (substitute* "pango/pango.init.lisp"
3112 (("libpango" all)
3113 (string-append (assoc-ref inputs "pango") "/lib/" all)))
3114 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
3115 (("libgdk_pixbuf" all)
3116 (string-append (assoc-ref inputs "gdk-pixbuf") "/lib/" all)))
3117 (substitute* "gdk/gdk.init.lisp"
3118 (("libgdk" all)
3119 (string-append (assoc-ref inputs "gtk") "/lib/" all)))
3120 (substitute* "gdk/gdk.package.lisp"
3121 (("libgtk" all)
3122 (string-append (assoc-ref inputs "gtk") "/lib/" all))))))))
3123 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
3124 (synopsis "Common Lisp binding for GTK+3")
3125 (description
3126 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
3127 is a library for creating graphical user interfaces.")
3128 (license license:lgpl3))))
3129
3130 (define-public cl-cffi-gtk
3131 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
3132
3133 (define-public ecl-cl-cffi-gtk
3134 (sbcl-package->ecl-package sbcl-cl-cffi-gtk))
3135
3136 (define-public sbcl-cl-webkit
3137 (let ((commit "0bc05cc73257670ab241853b9cc9ccb68940fe44"))
3138 (package
3139 (name "sbcl-cl-webkit")
3140 (version (git-version "2.4" "10" commit))
3141 (source
3142 (origin
3143 (method git-fetch)
3144 (uri (git-reference
3145 (url "https://github.com/joachifm/cl-webkit")
3146 (commit commit)))
3147 (file-name (git-file-name "cl-webkit" version))
3148 (sha256
3149 (base32
3150 "1kg6illspvb5647pm0x819ag2n7njnqvrm18jzgd28vk6nlkrcmq"))))
3151 (build-system asdf-build-system/sbcl)
3152 (inputs
3153 `(("cffi" ,sbcl-cffi)
3154 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3155 ("webkitgtk" ,webkitgtk)))
3156 (arguments
3157 `(#:asd-systems '("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 ecl-cl-webkit
3179 (sbcl-package->ecl-package sbcl-cl-webkit))
3180
3181 (define-public sbcl-lparallel
3182 (package
3183 (name "sbcl-lparallel")
3184 (version "2.8.4")
3185 (source
3186 (origin
3187 (method git-fetch)
3188 (uri (git-reference
3189 (url "https://github.com/lmj/lparallel/")
3190 (commit (string-append "lparallel-" version))))
3191 (file-name (git-file-name "lparallel" version))
3192 (sha256
3193 (base32
3194 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3195 (build-system asdf-build-system/sbcl)
3196 (inputs
3197 `(("alexandria" ,sbcl-alexandria)
3198 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3199 ("trivial-garbage" ,sbcl-trivial-garbage)))
3200 (arguments
3201 `(#:phases
3202 (modify-phases %standard-phases
3203 (add-after 'unpack 'fix-dependency
3204 ;; lparallel loads a SBCL specific system in its asd file. This is
3205 ;; not carried over into the fasl which is generated. In order for
3206 ;; it to be carried over, it needs to be listed as a dependency.
3207 (lambda _
3208 (substitute* "lparallel.asd"
3209 ((":depends-on \\(:alexandria" all)
3210 (string-append all " #+sbcl :sb-cltl2"))))))))
3211 (home-page "https://lparallel.org/")
3212 (synopsis "Parallelism for Common Lisp")
3213 (description
3214 "@command{lparallel} is a library for parallel programming in Common
3215 Lisp, featuring:
3216
3217 @itemize
3218 @item a simple model of task submission with receiving queue,
3219 @item constructs for expressing fine-grained parallelism,
3220 @item asynchronous condition handling across thread boundaries,
3221 @item parallel versions of map, reduce, sort, remove, and many others,
3222 @item promises, futures, and delayed evaluation constructs,
3223 @item computation trees for parallelizing interconnected tasks,
3224 @item bounded and unbounded FIFO queues,
3225 @item high and low priority tasks,
3226 @item task killing by category,
3227 @item integrated timeouts.
3228 @end itemize\n")
3229 (license license:expat)))
3230
3231 (define-public cl-lparallel
3232 (sbcl-package->cl-source-package sbcl-lparallel))
3233
3234 (define-public ecl-lparallel
3235 (package
3236 (inherit (sbcl-package->ecl-package sbcl-lparallel))
3237 (arguments
3238 ;; TODO: Find why the tests get stuck forever; disable them for now.
3239 `(#:tests? #f))))
3240
3241 (define-public sbcl-cl-markup
3242 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3243 (package
3244 (name "sbcl-cl-markup")
3245 (version (git-version "0.1" "1" commit))
3246 (source
3247 (origin
3248 (method git-fetch)
3249 (uri (git-reference
3250 (url "https://github.com/arielnetworks/cl-markup/")
3251 (commit commit)))
3252 (file-name (git-file-name "cl-markup" version))
3253 (sha256
3254 (base32
3255 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3256 (build-system asdf-build-system/sbcl)
3257 (home-page "https://github.com/arielnetworks/cl-markup/")
3258 (synopsis "Markup generation library for Common Lisp")
3259 (description
3260 "A modern markup generation library for Common Lisp that features:
3261
3262 @itemize
3263 @item Fast (even faster through compiling the code)
3264 @item Safety
3265 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3266 @item Output with doctype
3267 @item Direct output to stream
3268 @end itemize\n")
3269 (license license:lgpl3+))))
3270
3271 (define-public cl-markup
3272 (sbcl-package->cl-source-package sbcl-cl-markup))
3273
3274 (define-public ecl-cl-markup
3275 (sbcl-package->ecl-package sbcl-cl-markup))
3276
3277 (define-public sbcl-cl-mustache
3278 (package
3279 (name "sbcl-cl-mustache")
3280 (version "0.12.1")
3281 (source
3282 (origin
3283 (method git-fetch)
3284 (uri (git-reference
3285 (url "https://github.com/kanru/cl-mustache")
3286 (commit (string-append "v" version))))
3287 (file-name (git-file-name "cl-mustache" version))
3288 (sha256
3289 (base32 "149xbb6wxq1napliwm9cv729hwcgfnjli6y8hingfixz7f10lhks"))))
3290 (build-system asdf-build-system/sbcl)
3291 (home-page "https://github.com/kanru/cl-mustache")
3292 (synopsis "Common Lisp Mustache template renderer")
3293 (description "This is a Common Lisp implementation for the Mustache
3294 template system. More details on the standard are available at
3295 @url{https://mustache.github.io}.")
3296 (license license:expat)))
3297
3298 (define-public cl-mustache
3299 (sbcl-package->cl-source-package sbcl-cl-mustache))
3300
3301 (define-public ecl-cl-mustache
3302 (sbcl-package->ecl-package sbcl-cl-mustache))
3303
3304 (define-public sbcl-cl-css
3305 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3306 (package
3307 (name "sbcl-cl-css")
3308 (version (git-version "0.1" "1" commit))
3309 (source
3310 (origin
3311 (method git-fetch)
3312 (uri (git-reference
3313 (url "https://github.com/inaimathi/cl-css/")
3314 (commit commit)))
3315 (file-name (git-file-name "cl-css" version))
3316 (sha256
3317 (base32
3318 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3319 (build-system asdf-build-system/sbcl)
3320 (home-page "https://github.com/inaimathi/cl-css/")
3321 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3322 (description
3323 "This is a dead-simple, non validating, inline CSS generator for Common
3324 Lisp. Its goals are axiomatic syntax, simple implementation to support
3325 portability, and boilerplate reduction in CSS.")
3326 (license license:expat))))
3327
3328 (define-public cl-css
3329 (sbcl-package->cl-source-package sbcl-cl-css))
3330
3331 (define-public ecl-cl-css
3332 (sbcl-package->ecl-package sbcl-cl-css))
3333
3334 (define-public sbcl-portable-threads
3335 (let ((commit "aa26bf38338a6b068bf8bfb3375d8d8c3b0a28df"))
3336 (package
3337 (name "sbcl-portable-threads")
3338 (version (git-version "2.3" "2" commit))
3339 (source
3340 (origin
3341 (method git-fetch)
3342 (uri (git-reference
3343 (url "https://github.com/binghe/portable-threads/")
3344 (commit commit)))
3345 (file-name (git-file-name "portable-threads" version))
3346 (sha256
3347 (base32 "058ksi07vfdmhrf5mdlc833s82m1rcqfja2266520m3r8bzs8bvs"))))
3348 (build-system asdf-build-system/sbcl)
3349 (arguments
3350 `(;; Tests seem broken.
3351 #:tests? #f))
3352 (home-page "https://github.com/binghe/portable-threads")
3353 (synopsis "Portable threads API for Common Lisp")
3354 (description
3355 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3356 Lisp (from GBBopen project).")
3357 (license license:asl2.0))))
3358
3359 (define-public cl-portable-threads
3360 (sbcl-package->cl-source-package sbcl-portable-threads))
3361
3362 (define-public ecl-portable-threads
3363 (sbcl-package->ecl-package sbcl-portable-threads))
3364
3365 (define-public sbcl-usocket
3366 (package
3367 (name "sbcl-usocket")
3368 (version "0.8.3")
3369 (source
3370 (origin
3371 (method git-fetch)
3372 (uri (git-reference
3373 (url "https://github.com/usocket/usocket/")
3374 (commit (string-append "v" version))))
3375 (file-name (git-file-name "usocket" version))
3376 (sha256
3377 (base32
3378 "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"))))
3379 (build-system asdf-build-system/sbcl)
3380 (native-inputs
3381 `(("rt" ,sbcl-rt)))
3382 (inputs
3383 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3384 ("split-sequence" ,sbcl-split-sequence)))
3385 (arguments
3386 `(#:tests? #f ; FIXME: Tests need network access?
3387 #:asd-systems '("usocket"
3388 "usocket-server")))
3389 (home-page "https://common-lisp.net/project/usocket/")
3390 (synopsis "Universal socket library for Common Lisp")
3391 (description
3392 "This library strives to provide a portable TCP/IP and UDP/IP socket
3393 interface for as many Common Lisp implementations as possible, while keeping
3394 the abstraction and portability layer as thin as possible.")
3395 (license license:expat)))
3396
3397 (define-public cl-usocket
3398 (sbcl-package->cl-source-package sbcl-usocket))
3399
3400 (define-public ecl-usocket
3401 (sbcl-package->ecl-package sbcl-usocket))
3402
3403 (define-public sbcl-s-xml
3404 (package
3405 (name "sbcl-s-xml")
3406 (version "3")
3407 (source
3408 (origin
3409 (method url-fetch)
3410 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3411 (sha256
3412 (base32
3413 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3414 (build-system asdf-build-system/sbcl)
3415 (home-page "https://common-lisp.net/project/s-xml/")
3416 (synopsis "Simple XML parser implemented in Common Lisp")
3417 (description
3418 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3419 parser implementation has the following features:
3420
3421 @itemize
3422 @item It works (handling many common XML usages).
3423 @item It is very small (the core is about 700 lines of code, including
3424 comments and whitespace).
3425 @item It has a core API that is simple, efficient and pure functional, much
3426 like that from SSAX (see also http://ssax.sourceforge.net).
3427 @item It supports different DOM models: an XSML-based one, an LXML-based one
3428 and a classic xml-element struct based one.
3429 @item It is reasonably time and space efficient (internally avoiding garbage
3430 generatation as much as possible).
3431 @item It does support CDATA.
3432 @item It should support the same character sets as your Common Lisp
3433 implementation.
3434 @item It does support XML name spaces.
3435 @end itemize
3436
3437 This XML parser implementation has the following limitations:
3438
3439 @itemize
3440 @item It does not support any special tags (like processing instructions).
3441 @item It is not validating, even skips DTD's all together.
3442 @end itemize\n")
3443 (license license:lgpl3+)))
3444
3445 (define-public cl-s-xml
3446 (sbcl-package->cl-source-package sbcl-s-xml))
3447
3448 (define-public ecl-s-xml
3449 (sbcl-package->ecl-package sbcl-s-xml))
3450
3451 (define-public sbcl-s-xml-rpc
3452 (package
3453 (name "sbcl-s-xml-rpc")
3454 (version "7")
3455 (source
3456 (origin
3457 (method url-fetch)
3458 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3459 (sha256
3460 (base32
3461 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3462 (build-system asdf-build-system/sbcl)
3463 (inputs
3464 `(("s-xml" ,sbcl-s-xml)))
3465 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3466 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3467 (description
3468 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3469 client and server.")
3470 (license license:lgpl3+)))
3471
3472 (define-public cl-s-xml-rpc
3473 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3474
3475 (define-public ecl-s-xml-rpc
3476 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3477
3478 (define-public sbcl-trivial-arguments
3479 (let ((commit "ecd84ed9cf9ef8f1e873d7409e6bd04979372aa7")
3480 (revision "1"))
3481 (package
3482 (name "sbcl-trivial-arguments")
3483 (version (git-version "1.1.0" revision commit))
3484 (source
3485 (origin
3486 (method git-fetch)
3487 (uri (git-reference
3488 (url "https://github.com/Shinmera/trivial-arguments")
3489 (commit commit)))
3490 (file-name (git-file-name "trivial-arguments" version))
3491 (sha256
3492 (base32 "02vaqfavhj8jqxnr68nnzvzshm8jbgcy6m9lvyv4daa6f7ihqf88"))))
3493 (build-system asdf-build-system/sbcl)
3494 (home-page "https://github.com/Shinmera/trivial-arguments")
3495 (synopsis "Common Lisp library to retrieve a function's lambda-list")
3496 (description
3497 "This is a simple library to retrieve the argument list of a function.")
3498 (license license:zlib))))
3499
3500 (define-public ecl-trivial-arguments
3501 (sbcl-package->ecl-package sbcl-trivial-arguments))
3502
3503 (define-public cl-trivial-arguments
3504 (sbcl-package->cl-source-package sbcl-trivial-arguments))
3505
3506 (define-public sbcl-trivial-clipboard
3507 (let ((commit "afcd3743b842f5a81fc86dba60f9db59970f49c5"))
3508 (package
3509 (name "sbcl-trivial-clipboard")
3510 (version (git-version "0.0.0.0" "3" commit))
3511 (source
3512 (origin
3513 (method git-fetch)
3514 (uri (git-reference
3515 (url "https://github.com/snmsts/trivial-clipboard")
3516 (commit commit)))
3517 (file-name (git-file-name "trivial-clipboard" version))
3518 (sha256
3519 (base32
3520 "1qfbvkzmvkbqpc5s3sx31c5653sy6qlcixafgzd10qpykb843prr"))))
3521 (build-system asdf-build-system/sbcl)
3522 (inputs
3523 `(("xclip" ,xclip)))
3524 (native-inputs
3525 `(("fiveam" ,sbcl-fiveam)))
3526 (arguments
3527 `(#:phases
3528 (modify-phases %standard-phases
3529 (add-after 'unpack 'fix-paths
3530 (lambda* (#:key inputs #:allow-other-keys)
3531 (substitute* "src/text.lisp"
3532 (("\\(executable-find \"xclip\"\\)")
3533 (string-append "(executable-find \""
3534 (assoc-ref inputs "xclip")
3535 "/bin/xclip\")"))))))))
3536 (home-page "https://github.com/snmsts/trivial-clipboard")
3537 (synopsis "Access system clipboard in Common Lisp")
3538 (description
3539 "@command{trivial-clipboard} gives access to the system clipboard.")
3540 (license license:expat))))
3541
3542 (define-public cl-trivial-clipboard
3543 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3544
3545 (define-public ecl-trivial-clipboard
3546 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3547
3548 (define-public sbcl-trivial-backtrace
3549 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3550 (revision "1"))
3551 (package
3552 (name "sbcl-trivial-backtrace")
3553 (version (git-version "0.0.0" revision commit))
3554 (source
3555 (origin
3556 (method git-fetch)
3557 (uri (git-reference
3558 (url "https://github.com/gwkkwg/trivial-backtrace")
3559 (commit commit)))
3560 (file-name (git-file-name "trivial-backtrace" version))
3561 (sha256
3562 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3563 (build-system asdf-build-system/sbcl)
3564 (inputs
3565 `(("sbcl-lift" ,sbcl-lift)))
3566 (arguments
3567 `(#:phases
3568 (modify-phases %standard-phases
3569 (add-after 'check 'delete-test-results
3570 (lambda* (#:key outputs #:allow-other-keys)
3571 (let ((test-results (string-append (assoc-ref outputs "out")
3572 "/share/common-lisp/"
3573 (%lisp-type)
3574 "/trivial-backtrace"
3575 "/test-results")))
3576 (when (file-exists? test-results)
3577 (delete-file-recursively test-results)))
3578 #t)))))
3579 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3580 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3581 (description
3582 "One of the many things that didn't quite get into the Common Lisp
3583 standard was how to get a Lisp to output its call stack when something has
3584 gone wrong. As such, each Lisp has developed its own notion of what to
3585 display, how to display it, and what sort of arguments can be used to
3586 customize it. @code{trivial-backtrace} is a simple solution to generating a
3587 backtrace portably.")
3588 (license license:expat))))
3589
3590 (define-public cl-trivial-backtrace
3591 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3592
3593 (define-public ecl-trivial-backtrace
3594 (sbcl-package->ecl-package sbcl-trivial-backtrace))
3595
3596 (define-public sbcl-rfc2388
3597 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3598 (revision "1"))
3599 (package
3600 (name "sbcl-rfc2388")
3601 (version (git-version "0.0.0" revision commit))
3602 (source
3603 (origin
3604 (method git-fetch)
3605 (uri (git-reference
3606 (url "https://github.com/jdz/rfc2388")
3607 (commit commit)))
3608 (file-name (git-file-name "rfc2388" version))
3609 (sha256
3610 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3611 (build-system asdf-build-system/sbcl)
3612 (home-page "https://github.com/jdz/rfc2388/")
3613 (synopsis "An implementation of RFC 2388 in Common Lisp")
3614 (description
3615 "This package contains an implementation of RFC 2388, which is used to
3616 process form data posted with HTTP POST method using enctype
3617 \"multipart/form-data\".")
3618 (license license:bsd-2))))
3619
3620 (define-public cl-rfc2388
3621 (sbcl-package->cl-source-package sbcl-rfc2388))
3622
3623 (define-public ecl-rfc2388
3624 (sbcl-package->ecl-package sbcl-rfc2388))
3625
3626 (define-public sbcl-md5
3627 (package
3628 (name "sbcl-md5")
3629 (version "2.0.4")
3630 (source
3631 (origin
3632 (method git-fetch)
3633 (uri (git-reference
3634 (url "https://github.com/pmai/md5")
3635 (commit (string-append "release-" version))))
3636 (file-name (git-file-name "md5" version))
3637 (sha256
3638 (base32 "1waqxzm7vlc22n92hv8r27anlvvjkkh9slhrky1ww7mdx4mmxwb8"))))
3639 (build-system asdf-build-system/sbcl)
3640 (home-page "https://github.com/pmai/md5")
3641 (synopsis
3642 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3643 (description
3644 "This package implements The MD5 Message-Digest Algorithm, as defined in
3645 RFC 1321 by R. Rivest, published April 1992.")
3646 (license license:public-domain)))
3647
3648 (define-public cl-md5
3649 (sbcl-package->cl-source-package sbcl-md5))
3650
3651 (define-public ecl-md5
3652 (package
3653 (inherit (sbcl-package->ecl-package sbcl-md5))
3654 (inputs
3655 `(("flexi-streams" ,ecl-flexi-streams)))))
3656
3657 (define-public sbcl-cl+ssl
3658 (let ((commit "701e645081e6533a3f0f0b3ac86389d6f506c4b5")
3659 (revision "1"))
3660 (package
3661 (name "sbcl-cl+ssl")
3662 (version (git-version "0.0.0" revision commit))
3663 (source
3664 (origin
3665 (method git-fetch)
3666 (uri (git-reference
3667 (url "https://github.com/cl-plus-ssl/cl-plus-ssl")
3668 (commit commit)))
3669 (file-name (git-file-name "cl+ssl" version))
3670 (sha256
3671 (base32 "0nfl275nwhff3m25872y388cydz14kqb6zbwywa6nj85r9k8bgs0"))))
3672 (build-system asdf-build-system/sbcl)
3673 (arguments
3674 '(#:phases
3675 (modify-phases %standard-phases
3676 (add-after 'unpack 'fix-paths
3677 (lambda* (#:key inputs #:allow-other-keys)
3678 (substitute* "src/reload.lisp"
3679 (("libssl.so" all)
3680 (string-append
3681 (assoc-ref inputs "openssl") "/lib/" all))))))))
3682 (inputs
3683 `(("openssl" ,openssl)
3684 ("sbcl-cffi" ,sbcl-cffi)
3685 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
3686 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3687 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
3688 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
3689 ("sbcl-alexandria" ,sbcl-alexandria)
3690 ("sbcl-trivial-features" ,sbcl-trivial-features)))
3691 (home-page "https://common-lisp.net/project/cl-plus-ssl/")
3692 (synopsis "Common Lisp bindings to OpenSSL")
3693 (description
3694 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
3695 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
3696 Development into CL+SSL was done by David Lichteblau.")
3697 (license license:expat))))
3698
3699 (define-public cl-cl+ssl
3700 (sbcl-package->cl-source-package sbcl-cl+ssl))
3701
3702 (define-public ecl-cl+ssl
3703 (sbcl-package->ecl-package sbcl-cl+ssl))
3704
3705 (define-public sbcl-kmrcl
3706 (let ((version "1.111")
3707 (commit "4a27407aad9deb607ffb8847630cde3d041ea25a")
3708 (revision "1"))
3709 (package
3710 (name "sbcl-kmrcl")
3711 (version (git-version version revision commit))
3712 (source
3713 (origin
3714 (method git-fetch)
3715 (uri (git-reference
3716 (url "http://git.kpe.io/kmrcl.git/")
3717 (commit commit)))
3718 (file-name (git-file-name name version))
3719 (sha256
3720 (base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))))
3721 (build-system asdf-build-system/sbcl)
3722 (inputs
3723 `(("sbcl-rt" ,sbcl-rt)))
3724 (home-page "http://files.kpe.io/kmrcl/")
3725 (synopsis "General utilities for Common Lisp programs")
3726 (description
3727 "KMRCL is a collection of utilities used by a number of Kevin
3728 Rosenberg's Common Lisp packages.")
3729 (license license:llgpl))))
3730
3731 (define-public cl-kmrcl
3732 (sbcl-package->cl-source-package sbcl-kmrcl))
3733
3734 (define-public ecl-kmrcl
3735 (sbcl-package->ecl-package sbcl-kmrcl))
3736
3737 (define-public sbcl-cl-base64
3738 ;; 3.3.4 tests are broken, upstream fixes them.
3739 (let ((commit "577683b18fd880b82274d99fc96a18a710e3987a"))
3740 (package
3741 (name "sbcl-cl-base64")
3742 (version (git-version "3.3.4" "1" commit))
3743 (source
3744 (origin
3745 (method git-fetch)
3746 (uri (git-reference
3747 (url "http://git.kpe.io/cl-base64.git/")
3748 (commit commit)))
3749 (file-name (git-file-name name version))
3750 (sha256
3751 (base32 "12jj54h0fs6n237cvnp8v6hn0imfksammq22ys6pi0gwz2w47rbj"))))
3752 (build-system asdf-build-system/sbcl)
3753 (native-inputs ; For tests.
3754 `(("sbcl-ptester" ,sbcl-ptester)
3755 ("sbcl-kmrcl" ,sbcl-kmrcl)))
3756 (home-page "http://files.kpe.io/cl-base64/")
3757 (synopsis
3758 "Common Lisp package to encode and decode base64 with URI support")
3759 (description
3760 "This package provides highly optimized base64 encoding and decoding.
3761 Besides conversion to and from strings, integer conversions are supported.
3762 Encoding with Uniform Resource Identifiers is supported by using a modified
3763 encoding table that uses only URI-compatible characters.")
3764 (license license:bsd-3))))
3765
3766 (define-public cl-base64
3767 (sbcl-package->cl-source-package sbcl-cl-base64))
3768
3769 (define-public ecl-cl-base64
3770 (sbcl-package->ecl-package sbcl-cl-base64))
3771
3772 (define-public sbcl-chunga
3773 (package
3774 (name "sbcl-chunga")
3775 (version "1.1.7")
3776 (source
3777 (origin
3778 (method git-fetch)
3779 (uri (git-reference
3780 (url "https://github.com/edicl/chunga")
3781 (commit (string-append "v" version))))
3782 (file-name (git-file-name name version))
3783 (sha256
3784 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
3785 (build-system asdf-build-system/sbcl)
3786 (inputs
3787 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
3788 (home-page "https://edicl.github.io/chunga/")
3789 (synopsis "Portable chunked streams for Common Lisp")
3790 (description
3791 "Chunga implements streams capable of chunked encoding on demand as
3792 defined in RFC 2616.")
3793 (license license:bsd-2)))
3794
3795 (define-public cl-chunga
3796 (sbcl-package->cl-source-package sbcl-chunga))
3797
3798 (define-public ecl-chunga
3799 (sbcl-package->ecl-package sbcl-chunga))
3800
3801 (define-public sbcl-cl-who
3802 (let ((version "1.1.4")
3803 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
3804 (revision "1"))
3805 (package
3806 (name "sbcl-cl-who")
3807 (version (git-version version revision commit))
3808 (source
3809 (origin
3810 (method git-fetch)
3811 (uri (git-reference
3812 (url "https://github.com/edicl/cl-who")
3813 (commit commit)))
3814 (file-name (git-file-name name version))
3815 (sha256
3816 (base32
3817 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
3818 (build-system asdf-build-system/sbcl)
3819 (native-inputs
3820 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3821 (home-page "https://edicl.github.io/cl-who/")
3822 (synopsis "Yet another Lisp markup language")
3823 (description
3824 "There are plenty of Lisp Markup Languages out there - every Lisp
3825 programmer seems to write at least one during his career - and CL-WHO (where
3826 WHO means \"with-html-output\" for want of a better acronym) is probably just
3827 as good or bad as the next one.")
3828 (license license:bsd-2))))
3829
3830 (define-public cl-who
3831 (sbcl-package->cl-source-package sbcl-cl-who))
3832
3833 (define-public ecl-cl-who
3834 (sbcl-package->ecl-package sbcl-cl-who))
3835
3836 (define-public sbcl-chipz
3837 (let ((version "0.8")
3838 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
3839 (revision "1"))
3840 (package
3841 (name "sbcl-chipz")
3842 (version (git-version version revision commit))
3843 (source
3844 (origin
3845 (method git-fetch)
3846 (uri (git-reference
3847 (url "https://github.com/froydnj/chipz")
3848 (commit commit)))
3849 (file-name (git-file-name name version))
3850 (sha256
3851 (base32
3852 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
3853 (build-system asdf-build-system/sbcl)
3854 (native-inputs
3855 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3856 (home-page "http://method-combination.net/lisp/chipz/")
3857 (synopsis
3858 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
3859 data")
3860 (description
3861 "DEFLATE data, defined in RFC1951, forms the core of popular
3862 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
3863 Chipz also provides for decompressing data in those formats as well. BZIP2 is
3864 the format used by the popular compression tool bzip2.")
3865 ;; The author describes it as "MIT-like"
3866 (license license:expat))))
3867
3868 (define-public cl-chipz
3869 (sbcl-package->cl-source-package sbcl-chipz))
3870
3871 (define-public ecl-chipz
3872 (sbcl-package->ecl-package sbcl-chipz))
3873
3874 (define-public sbcl-drakma
3875 (package
3876 (name "sbcl-drakma")
3877 (version "2.0.7")
3878 (source
3879 (origin
3880 (method git-fetch)
3881 (uri (git-reference
3882 (url "https://github.com/edicl/drakma")
3883 (commit (string-append "v" version))))
3884 (file-name (git-file-name name version))
3885 (sha256
3886 (base32
3887 "1441idnyif9xzx3ln1p3fg36k2v9h4wasjqrzc8y52j61420qpci"))))
3888 (build-system asdf-build-system/sbcl)
3889 (inputs
3890 `(("sbcl-puri" ,sbcl-puri)
3891 ("sbcl-cl-base64" ,sbcl-cl-base64)
3892 ("sbcl-chunga" ,sbcl-chunga)
3893 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3894 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3895 ("sbcl-chipz" ,sbcl-chipz)
3896 ("sbcl-usocket" ,sbcl-usocket)
3897 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
3898 (native-inputs
3899 `(("sbcl-fiveam" ,sbcl-fiveam)))
3900 (home-page "https://edicl.github.io/drakma/")
3901 (synopsis "HTTP client written in Common Lisp")
3902 (description
3903 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
3904 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
3905 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
3906 (license license:bsd-2)))
3907
3908 (define-public cl-drakma
3909 (sbcl-package->cl-source-package sbcl-drakma))
3910
3911 (define-public ecl-drakma
3912 (sbcl-package->ecl-package sbcl-drakma))
3913
3914 (define-public sbcl-hunchentoot
3915 (package
3916 (name "sbcl-hunchentoot")
3917 (version "1.2.38")
3918 (source
3919 (origin
3920 (method git-fetch)
3921 (uri (git-reference
3922 (url "https://github.com/edicl/hunchentoot")
3923 (commit (string-append "v" version))))
3924 (file-name (git-file-name "hunchentoot" version))
3925 (sha256
3926 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
3927 (build-system asdf-build-system/sbcl)
3928 (native-inputs
3929 `(("sbcl-cl-who" ,sbcl-cl-who)
3930 ("sbcl-drakma" ,sbcl-drakma)))
3931 (inputs
3932 `(("sbcl-chunga" ,sbcl-chunga)
3933 ("sbcl-cl-base64" ,sbcl-cl-base64)
3934 ("sbcl-cl-fad" ,sbcl-cl-fad)
3935 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3936 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3937 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
3938 ("sbcl-md5" ,sbcl-md5)
3939 ("sbcl-rfc2388" ,sbcl-rfc2388)
3940 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
3941 ("sbcl-usocket" ,sbcl-usocket)))
3942 (home-page "https://edicl.github.io/hunchentoot/")
3943 (synopsis "Web server written in Common Lisp")
3944 (description
3945 "Hunchentoot is a web server written in Common Lisp and at the same
3946 time a toolkit for building dynamic websites. As a stand-alone web server,
3947 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
3948 connections (keep-alive), and SSL.")
3949 (license license:bsd-2)))
3950
3951 (define-public cl-hunchentoot
3952 (sbcl-package->cl-source-package sbcl-hunchentoot))
3953
3954 (define-public ecl-hunchentoot
3955 (package
3956 (inherit (sbcl-package->ecl-package sbcl-hunchentoot))
3957 (arguments
3958 ;; Tests fail on ECL with 'Socket error in "socket": EINVAL'.
3959 '(#:tests? #f))))
3960
3961 (define-public sbcl-trivial-types
3962 (package
3963 (name "sbcl-trivial-types")
3964 (version "0.0.1")
3965 (source
3966 (origin
3967 (method git-fetch)
3968 (uri (git-reference
3969 (url "https://github.com/m2ym/trivial-types")
3970 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
3971 (file-name (git-file-name name version))
3972 (sha256
3973 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
3974 (build-system asdf-build-system/sbcl)
3975 (home-page "https://github.com/m2ym/trivial-types")
3976 (synopsis "Trivial type definitions for Common Lisp")
3977 (description
3978 "TRIVIAL-TYPES provides missing but important type definitions such as
3979 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
3980 (license license:llgpl)))
3981
3982 (define-public cl-trivial-types
3983 (sbcl-package->cl-source-package sbcl-trivial-types))
3984
3985 (define-public ecl-trivial-types
3986 (sbcl-package->ecl-package sbcl-trivial-types))
3987
3988 (define-public sbcl-cl-annot
3989 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
3990 (revision "1"))
3991 (package
3992 (name "sbcl-cl-annot")
3993 (version (git-version "0.0.0" revision commit))
3994 (source
3995 (origin
3996 (method git-fetch)
3997 (uri (git-reference
3998 (url "https://github.com/m2ym/cl-annot")
3999 (commit commit)))
4000 (file-name (git-file-name name version))
4001 (sha256
4002 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
4003 (build-system asdf-build-system/sbcl)
4004 (inputs
4005 `(("sbcl-alexandria" ,sbcl-alexandria)))
4006 (home-page "https://github.com/m2ym/cl-annot")
4007 (synopsis "Python-like Annotation Syntax for Common Lisp.")
4008 (description
4009 "@code{cl-annot} is an general annotation library for Common Lisp.")
4010 (license license:llgpl))))
4011
4012 (define-public cl-annot
4013 (sbcl-package->cl-source-package sbcl-cl-annot))
4014
4015 (define-public ecl-cl-annot
4016 (sbcl-package->ecl-package sbcl-cl-annot))
4017
4018 (define-public sbcl-cl-syntax
4019 (package
4020 (name "sbcl-cl-syntax")
4021 (version "0.0.3")
4022 (source
4023 (origin
4024 (method git-fetch)
4025 (uri (git-reference
4026 (url "https://github.com/m2ym/cl-syntax")
4027 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
4028 (file-name (git-file-name "cl-syntax" version))
4029 (sha256
4030 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
4031 (build-system asdf-build-system/sbcl)
4032 (inputs
4033 `(("cl-annot" ,sbcl-cl-annot)
4034 ("cl-interpol" ,sbcl-cl-interpol)
4035 ("named-readtables" ,sbcl-named-readtables)
4036 ("trivial-types" ,sbcl-trivial-types)))
4037 (arguments
4038 '(#:asd-systems '("cl-syntax"
4039 "cl-syntax-annot"
4040 "cl-syntax-interpol")))
4041 (home-page "https://github.com/m2ym/cl-syntax")
4042 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
4043 (description
4044 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
4045 (license license:llgpl)))
4046
4047 (define-public cl-syntax
4048 (sbcl-package->cl-source-package sbcl-cl-syntax))
4049
4050 (define-public ecl-cl-syntax
4051 (sbcl-package->ecl-package sbcl-cl-syntax))
4052
4053 (define-public sbcl-cl-utilities
4054 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
4055 (revision "1"))
4056 (package
4057 (name "sbcl-cl-utilities")
4058 (version (git-version "0.0.0" revision commit))
4059 (source
4060 (origin
4061 (method url-fetch)
4062 (uri
4063 (string-append
4064 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
4065 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
4066 (sha256
4067 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
4068 (build-system asdf-build-system/sbcl)
4069 (arguments
4070 '(#:phases
4071 (modify-phases %standard-phases
4072 (add-after 'unpack 'fix-paths
4073 (lambda* (#:key inputs #:allow-other-keys)
4074 (substitute* "rotate-byte.lisp"
4075 (("in-package :cl-utilities)" all)
4076 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
4077 (home-page "http://common-lisp.net/project/cl-utilities")
4078 (synopsis "A collection of semi-standard utilities")
4079 (description
4080 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
4081 is a collection of Common Lisp Utilities, things that everybody writes since
4082 they're not part of the official standard. There are some very useful things
4083 there; the only problems are that they aren't implemented as well as you'd
4084 like (some aren't implemented at all) and they aren't conveniently packaged
4085 and maintained. It takes quite a bit of work to carefully implement utilities
4086 for common use, commented and documented, with error checking placed
4087 everywhere some dumb user might make a mistake.")
4088 (license license:public-domain))))
4089
4090 (define-public cl-utilities
4091 (sbcl-package->cl-source-package sbcl-cl-utilities))
4092
4093 (define-public ecl-cl-utilities
4094 (sbcl-package->ecl-package sbcl-cl-utilities))
4095
4096 (define-public sbcl-map-set
4097 (let ((commit "7b4b545b68b8")
4098 (revision "1"))
4099 (package
4100 (name "sbcl-map-set")
4101 (version (git-version "0.0.0" revision commit))
4102 (source
4103 (origin
4104 (method url-fetch)
4105 (uri (string-append
4106 "https://bitbucket.org/tarballs_are_good/map-set/get/"
4107 commit ".tar.gz"))
4108 (sha256
4109 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
4110 (build-system asdf-build-system/sbcl)
4111 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
4112 (synopsis "Set-like data structure")
4113 (description
4114 "Implementation of a set-like data structure with constant time
4115 addition, removal, and random selection.")
4116 (license license:bsd-3))))
4117
4118 (define-public cl-map-set
4119 (sbcl-package->cl-source-package sbcl-map-set))
4120
4121 (define-public ecl-map-set
4122 (sbcl-package->ecl-package sbcl-map-set))
4123
4124 (define-public sbcl-quri
4125 (let ((commit "d7f2720568146c6674187f625f115925e6364a7f")
4126 (revision "4"))
4127 (package
4128 (name "sbcl-quri")
4129 (version (git-version "0.1.0" revision commit))
4130 (source
4131 (origin
4132 (method git-fetch)
4133 (uri (git-reference
4134 (url "https://github.com/fukamachi/quri")
4135 (commit commit)))
4136 (file-name (git-file-name name version))
4137 (sha256
4138 (base32 "0yrcvz5ksfr7x8yx741vp65il0fxxaskppq3iyk9bq895s1jn37w"))))
4139 (build-system asdf-build-system/sbcl)
4140 (arguments
4141 ;; Test system must be loaded before, otherwise tests fail with:
4142 ;; Component QURI-ASD::QURI-TEST not found, required by #<SYSTEM
4143 ;; "quri">.
4144 '(#:asd-systems '("quri-test"
4145 "quri")))
4146 (native-inputs `(("sbcl-prove" ,sbcl-prove)))
4147 (inputs `(("sbcl-babel" ,sbcl-babel)
4148 ("sbcl-split-sequence" ,sbcl-split-sequence)
4149 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
4150 ("sbcl-alexandria" ,sbcl-alexandria)))
4151 (home-page "https://github.com/fukamachi/quri")
4152 (synopsis "Yet another URI library for Common Lisp")
4153 (description
4154 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
4155 Lisp. It is intended to be a replacement of PURI.")
4156 (license license:bsd-3))))
4157
4158 (define-public cl-quri
4159 (sbcl-package->cl-source-package sbcl-quri))
4160
4161 (define-public ecl-quri
4162 (sbcl-package->ecl-package sbcl-quri))
4163
4164 (define-public sbcl-myway
4165 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
4166 (revision "1"))
4167 (package
4168 (name "sbcl-myway")
4169 (version (git-version "0.1.0" revision commit))
4170 (source
4171 (origin
4172 (method git-fetch)
4173 (uri (git-reference
4174 (url "https://github.com/fukamachi/myway")
4175 (commit commit)))
4176 (file-name (git-file-name "myway" version))
4177 (sha256
4178 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
4179 (build-system asdf-build-system/sbcl)
4180 (arguments
4181 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
4182 ;; by #<SYSTEM "myway">. Why?
4183 '(#:tests? #f))
4184 (native-inputs
4185 `(("sbcl-prove" ,sbcl-prove)))
4186 (inputs
4187 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4188 ("sbcl-quri" ,sbcl-quri)
4189 ("sbcl-map-set" ,sbcl-map-set)))
4190 (home-page "https://github.com/fukamachi/myway")
4191 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
4192 (description "My Way is a Sinatra-compatible URL routing library.")
4193 (license license:llgpl))))
4194
4195 (define-public cl-myway
4196 (sbcl-package->cl-source-package sbcl-myway))
4197
4198 (define-public ecl-myway
4199 (sbcl-package->ecl-package sbcl-myway))
4200
4201 (define-public sbcl-xsubseq
4202 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
4203 (revision "1"))
4204 (package
4205 (name "sbcl-xsubseq")
4206 (version (git-version "0.0.1" revision commit))
4207 (source
4208 (origin
4209 (method git-fetch)
4210 (uri (git-reference
4211 (url "https://github.com/fukamachi/xsubseq")
4212 (commit commit)))
4213 (file-name (git-file-name name version))
4214 (sha256
4215 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4216 (build-system asdf-build-system/sbcl)
4217 (arguments
4218 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4219 ;; required by #<SYSTEM "xsubseq">. Why?
4220 '(#:tests? #f))
4221 (native-inputs
4222 `(("sbcl-prove" ,sbcl-prove)))
4223 (home-page "https://github.com/fukamachi/xsubseq")
4224 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4225 (description
4226 "XSubseq provides functions to be able to handle \"subseq\"s more
4227 effieiently.")
4228 (license license:bsd-2))))
4229
4230 (define-public cl-xsubseq
4231 (sbcl-package->cl-source-package sbcl-xsubseq))
4232
4233 (define-public ecl-xsubseq
4234 (sbcl-package->ecl-package sbcl-xsubseq))
4235
4236 (define-public sbcl-smart-buffer
4237 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4238 (revision "1"))
4239 (package
4240 (name "sbcl-smart-buffer")
4241 (version (git-version "0.0.1" revision commit))
4242 (source
4243 (origin
4244 (method git-fetch)
4245 (uri (git-reference
4246 (url "https://github.com/fukamachi/smart-buffer")
4247 (commit commit)))
4248 (file-name (git-file-name name version))
4249 (sha256
4250 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4251 (build-system asdf-build-system/sbcl)
4252 (arguments
4253 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4254 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4255 `(#:tests? #f))
4256 (native-inputs
4257 `(("sbcl-prove" ,sbcl-prove)))
4258 (inputs
4259 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4260 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4261 (home-page "https://github.com/fukamachi/smart-buffer")
4262 (synopsis "Smart octets buffer")
4263 (description
4264 "Smart-buffer provides an output buffer which changes the destination
4265 depending on content size.")
4266 (license license:bsd-3))))
4267
4268 (define-public cl-smart-buffer
4269 (sbcl-package->cl-source-package sbcl-smart-buffer))
4270
4271 (define-public ecl-smart-buffer
4272 (sbcl-package->ecl-package sbcl-smart-buffer))
4273
4274 (define-public sbcl-fast-http
4275 (let ((commit "502a37715dcb8544cc8528b78143a942de662c5a")
4276 (revision "2"))
4277 (package
4278 (name "sbcl-fast-http")
4279 (version (git-version "0.2.0" revision commit))
4280 (source
4281 (origin
4282 (method git-fetch)
4283 (uri (git-reference
4284 (url "https://github.com/fukamachi/fast-http")
4285 (commit commit)))
4286 (file-name (git-file-name name version))
4287 (sha256
4288 (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
4289 (build-system asdf-build-system/sbcl)
4290 (arguments
4291 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4292 ;; required by #<SYSTEM "fast-http">. Why?
4293 `(#:tests? #f))
4294 (native-inputs
4295 `(("sbcl-prove" ,sbcl-prove)
4296 ("cl-syntax" ,sbcl-cl-syntax)))
4297 (inputs
4298 `(("sbcl-alexandria" ,sbcl-alexandria)
4299 ("sbcl-proc-parse" ,sbcl-proc-parse)
4300 ("sbcl-xsubseq" ,sbcl-xsubseq)
4301 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4302 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4303 (home-page "https://github.com/fukamachi/fast-http")
4304 (synopsis "HTTP request/response parser for Common Lisp")
4305 (description
4306 "@code{fast-http} is a HTTP request/response protocol parser for Common
4307 Lisp.")
4308 ;; Author specified the MIT license
4309 (license license:expat))))
4310
4311 (define-public cl-fast-http
4312 (sbcl-package->cl-source-package sbcl-fast-http))
4313
4314 (define-public ecl-fast-http
4315 (sbcl-package->ecl-package sbcl-fast-http))
4316
4317 (define-public sbcl-static-vectors
4318 (package
4319 (name "sbcl-static-vectors")
4320 (version "1.8.6")
4321 (source
4322 (origin
4323 (method git-fetch)
4324 (uri (git-reference
4325 (url "https://github.com/sionescu/static-vectors")
4326 (commit (string-append "v" version))))
4327 (file-name (git-file-name name version))
4328 (sha256
4329 (base32 "01hwxzhyjkhsd3949g70120g7msw01byf0ia0pbj319q1a3cq7j9"))))
4330 (native-inputs
4331 `(("sbcl-fiveam" ,sbcl-fiveam)))
4332 (inputs
4333 `(("sbcl-alexandria" ,sbcl-alexandria)
4334 ("sbcl-cffi" ,sbcl-cffi)))
4335 (build-system asdf-build-system/sbcl)
4336 (home-page "https://github.com/sionescu/static-vectors")
4337 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4338 (description
4339 "With @code{static-vectors}, you can create vectors allocated in static
4340 memory.")
4341 (license license:expat)))
4342
4343 (define-public cl-static-vectors
4344 (sbcl-package->cl-source-package sbcl-static-vectors))
4345
4346 (define-public ecl-static-vectors
4347 (sbcl-package->ecl-package sbcl-static-vectors))
4348
4349 (define-public sbcl-marshal
4350 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4351 (revision "1"))
4352 (package
4353 (name "sbcl-marshal")
4354 (version (git-version "1.3.0" revision commit))
4355 (source
4356 (origin
4357 (method git-fetch)
4358 (uri (git-reference
4359 (url "https://github.com/wlbr/cl-marshal")
4360 (commit commit)))
4361 (file-name (git-file-name name version))
4362 (sha256
4363 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4364 (build-system asdf-build-system/sbcl)
4365 (home-page "https://github.com/wlbr/cl-marshal")
4366 (synopsis "Simple (de)serialization of Lisp datastructures")
4367 (description
4368 "Simple and fast marshalling of Lisp datastructures. Convert any object
4369 into a string representation, put it on a stream an revive it from there.
4370 Only minimal changes required to make your CLOS objects serializable.")
4371 (license license:expat))))
4372
4373 (define-public cl-marshal
4374 (sbcl-package->cl-source-package sbcl-marshal))
4375
4376 (define-public ecl-marshal
4377 (sbcl-package->ecl-package sbcl-marshal))
4378
4379 (define-public sbcl-checkl
4380 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4381 (revision "1"))
4382 (package
4383 (name "sbcl-checkl")
4384 (version (git-version "0.0.0" revision commit))
4385 (source
4386 (origin
4387 (method git-fetch)
4388 (uri (git-reference
4389 (url "https://github.com/rpav/CheckL")
4390 (commit commit)))
4391 (file-name (git-file-name name version))
4392 (sha256
4393 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4394 (build-system asdf-build-system/sbcl)
4395 (arguments
4396 ;; Error while trying to load definition for system checkl-test from
4397 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4398 ;; is undefined.
4399 '(#:asd-files '("checkl.asd")
4400 #:tests? #f))
4401 (native-inputs
4402 `(("sbcl-fiveam" ,sbcl-fiveam)))
4403 (inputs
4404 `(("sbcl-marshal" ,sbcl-marshal)))
4405 (home-page "https://github.com/rpav/CheckL/")
4406 (synopsis "Dynamic testing for Common Lisp")
4407 (description
4408 "CheckL lets you write tests dynamically, it checks resulting values
4409 against the last run.")
4410 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4411 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4412 ;; stronger of the two and so I think only listing this should suffice.
4413 (license license:llgpl))))
4414
4415 (define-public cl-checkl
4416 (sbcl-package->cl-source-package sbcl-checkl))
4417
4418 (define-public ecl-checkl
4419 (sbcl-package->ecl-package sbcl-checkl))
4420
4421 (define-public sbcl-fast-io
4422 (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b")
4423 (revision "2"))
4424 (package
4425 (name "sbcl-fast-io")
4426 (version (git-version "1.0.0" revision commit))
4427 (source
4428 (origin
4429 (method git-fetch)
4430 (uri (git-reference
4431 (url "https://github.com/rpav/fast-io")
4432 (commit commit)))
4433 (file-name (git-file-name name version))
4434 (sha256
4435 (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n"))))
4436 (build-system asdf-build-system/sbcl)
4437 (arguments
4438 ;; Error while trying to load definition for system fast-io-test from
4439 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4440 ;; is undefined.
4441 '(#:tests? #f
4442 #:asd-files '("fast-io.asd")))
4443 (native-inputs
4444 `(("sbcl-fiveam" ,sbcl-fiveam)
4445 ("sbcl-checkl" ,sbcl-checkl)))
4446 (inputs
4447 `(("sbcl-alexandria" ,sbcl-alexandria)
4448 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4449 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4450 (home-page "https://github.com/rpav/fast-io")
4451 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4452 (description
4453 "Fast-io is about improving performance to octet-vectors and octet
4454 streams (though primarily the former, while wrapping the latter).")
4455 ;; Author specifies this as NewBSD which is an alias
4456 (license license:bsd-3))))
4457
4458 (define-public cl-fast-io
4459 (sbcl-package->cl-source-package sbcl-fast-io))
4460
4461 (define-public ecl-fast-io
4462 (sbcl-package->ecl-package sbcl-fast-io))
4463
4464 (define-public sbcl-jonathan
4465 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4466 (revision "1"))
4467 (package
4468 (name "sbcl-jonathan")
4469 (version (git-version "0.1.0" revision commit))
4470 (source
4471 (origin
4472 (method git-fetch)
4473 (uri (git-reference
4474 (url "https://github.com/Rudolph-Miller/jonathan")
4475 (commit commit)))
4476 (file-name (git-file-name name version))
4477 (sha256
4478 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4479 (build-system asdf-build-system/sbcl)
4480 (arguments
4481 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4482 ;; required by #<SYSTEM "jonathan">. Why?
4483 `(#:tests? #f))
4484 (native-inputs
4485 `(("sbcl-prove" ,sbcl-prove)))
4486 (inputs
4487 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4488 ("sbcl-fast-io" ,sbcl-fast-io)
4489 ("sbcl-proc-parse" ,sbcl-proc-parse)
4490 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4491 (home-page "https://rudolph-miller.github.io/jonathan/overview.html")
4492 (synopsis "JSON encoder and decoder")
4493 (description
4494 "High performance JSON encoder and decoder. Currently support: SBCL,
4495 CCL.")
4496 ;; Author specifies the MIT license
4497 (license license:expat))))
4498
4499 (define-public cl-jonathan
4500 (sbcl-package->cl-source-package sbcl-jonathan))
4501
4502 (define-public ecl-jonathan
4503 (sbcl-package->ecl-package sbcl-jonathan))
4504
4505 (define-public sbcl-http-body
4506 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4507 (revision "1"))
4508 (package
4509 (name "sbcl-http-body")
4510 (version (git-version "0.1.0" revision commit))
4511 (source
4512 (origin
4513 (method git-fetch)
4514 (uri (git-reference
4515 (url "https://github.com/fukamachi/http-body")
4516 (commit commit)))
4517 (file-name (git-file-name name version))
4518 (sha256
4519 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4520 (build-system asdf-build-system/sbcl)
4521 (arguments
4522 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4523 ;; found, required by #<SYSTEM "http-body">. Why?
4524 `(#:tests? #f))
4525 (native-inputs
4526 `(("sbcl-prove" ,sbcl-prove)))
4527 (inputs
4528 `(("sbcl-fast-http" ,sbcl-fast-http)
4529 ("sbcl-jonathan" ,sbcl-jonathan)
4530 ("sbcl-quri" ,sbcl-quri)))
4531 (home-page "https://github.com/fukamachi/http-body")
4532 (synopsis "HTTP POST data parser")
4533 (description
4534 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4535 supports application/x-www-form-urlencoded, application/json, and
4536 multipart/form-data.")
4537 (license license:bsd-2))))
4538
4539 (define-public cl-http-body
4540 (sbcl-package->cl-source-package sbcl-http-body))
4541
4542 (define-public ecl-http-body
4543 (sbcl-package->ecl-package sbcl-http-body))
4544
4545 (define-public sbcl-circular-streams
4546 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4547 (revision "1"))
4548 (package
4549 (name "sbcl-circular-streams")
4550 (version (git-version "0.1.0" revision commit))
4551 (source
4552 (origin
4553 (method git-fetch)
4554 (uri (git-reference
4555 (url "https://github.com/fukamachi/circular-streams")
4556 (commit commit)))
4557 (file-name (git-file-name name version))
4558 (sha256
4559 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4560 (build-system asdf-build-system/sbcl)
4561 (arguments
4562 ;; The tests depend on cl-test-more which is now prove. Prove
4563 ;; tests aren't working for some reason.
4564 `(#:tests? #f))
4565 (inputs
4566 `(("sbcl-fast-io" ,sbcl-fast-io)
4567 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4568 (home-page "https://github.com/fukamachi/circular-streams")
4569 (synopsis "Circularly readable streams for Common Lisp")
4570 (description
4571 "Circular-Streams allows you to read streams circularly by wrapping real
4572 streams. Once you reach end-of-file of a stream, it's file position will be
4573 reset to 0 and you're able to read it again.")
4574 (license license:llgpl))))
4575
4576 (define-public cl-circular-streams
4577 (sbcl-package->cl-source-package sbcl-circular-streams))
4578
4579 (define-public ecl-circular-streams
4580 (sbcl-package->ecl-package sbcl-circular-streams))
4581
4582 (define-public sbcl-lack
4583 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4584 (revision "1"))
4585 (package
4586 (name "sbcl-lack")
4587 (version (git-version "0.1.0" revision commit))
4588 (source
4589 (origin
4590 (method git-fetch)
4591 (uri (git-reference
4592 (url "https://github.com/fukamachi/lack")
4593 (commit commit)))
4594 (file-name (git-file-name "lack" version))
4595 (sha256
4596 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4597 (build-system asdf-build-system/sbcl)
4598 (native-inputs
4599 `(("prove" ,sbcl-prove)))
4600 (inputs
4601 `(("circular-streams" ,sbcl-circular-streams)
4602 ("http-body" ,sbcl-http-body)
4603 ("ironclad" ,sbcl-ironclad)
4604 ("local-time" ,sbcl-local-time)
4605 ("quri" ,sbcl-quri)
4606 ("trivial-mimes" ,sbcl-trivial-mimes)))
4607 (arguments
4608 '(#:asd-systems '("lack"
4609 "lack-request"
4610 "lack-response"
4611 "lack-component"
4612 "lack-util"
4613 "lack-middleware-backtrace"
4614 "lack-middleware-static")
4615 #:test-asd-file "t-lack.asd"
4616 ;; XXX: Component :CLACK not found
4617 #:tests? #f))
4618 (home-page "https://github.com/fukamachi/lack")
4619 (synopsis "Lack, the core of Clack")
4620 (description
4621 "Lack is a Common Lisp library which allows web applications to be
4622 constructed of modular components. It was originally a part of Clack, however
4623 it's going to be rewritten as an individual project since Clack v2 with
4624 performance and simplicity in mind.")
4625 (license license:llgpl))))
4626
4627 (define-public cl-lack
4628 (sbcl-package->cl-source-package sbcl-lack))
4629
4630 (define-public ecl-lack
4631 (sbcl-package->ecl-package sbcl-lack))
4632
4633 (define-public sbcl-local-time
4634 (let ((commit "a177eb911c0e8116e2bfceb79049265a884b701b")
4635 (revision "2"))
4636 (package
4637 (name "sbcl-local-time")
4638 (version (git-version "1.0.6" revision commit))
4639 (source
4640 (origin
4641 (method git-fetch)
4642 (uri (git-reference
4643 (url "https://github.com/dlowe-net/local-time")
4644 (commit commit)))
4645 (file-name (git-file-name name version))
4646 (sha256
4647 (base32 "0wld28xx20k0ysgg6akic5lg4vkjd0iyhv86m388xfrv8xh87wii"))))
4648 (build-system asdf-build-system/sbcl)
4649 (native-inputs
4650 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
4651 (home-page "https://common-lisp.net/project/local-time/")
4652 (synopsis "Time manipulation library for Common Lisp")
4653 (description
4654 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4655 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4656 Long Painful History of Time\".")
4657 (license license:expat))))
4658
4659 (define-public cl-local-time
4660 (sbcl-package->cl-source-package sbcl-local-time))
4661
4662 (define-public ecl-local-time
4663 (sbcl-package->ecl-package sbcl-local-time))
4664
4665 (define-public sbcl-trivial-mimes
4666 (let ((commit "a741fc2f567a4f86b853fd4677d75e62c03e51d9")
4667 (revision "2"))
4668 (package
4669 (name "sbcl-trivial-mimes")
4670 (version (git-version "1.1.0" revision commit))
4671 (source
4672 (origin
4673 (method git-fetch)
4674 (uri (git-reference
4675 (url "https://github.com/Shinmera/trivial-mimes")
4676 (commit commit)))
4677 (file-name (git-file-name name version))
4678 (sha256
4679 (base32 "00kcm17q5plpzdj1qwg83ldhxksilgpcdkf3m9azxcdr968xs9di"))))
4680 (build-system asdf-build-system/sbcl)
4681 (native-inputs
4682 `(("stefil" ,sbcl-hu.dwim.stefil)))
4683 (inputs
4684 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4685 (home-page "https://shinmera.github.io/trivial-mimes/")
4686 (synopsis "Tiny Common Lisp library to detect mime types in files")
4687 (description
4688 "This is a teensy library that provides some functions to determine the
4689 mime-type of a file.")
4690 (license license:zlib))))
4691
4692 (define-public cl-trivial-mimes
4693 (sbcl-package->cl-source-package sbcl-trivial-mimes))
4694
4695 (define-public ecl-trivial-mimes
4696 (sbcl-package->ecl-package sbcl-trivial-mimes))
4697
4698 (define-public sbcl-ningle
4699 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
4700 (revision "1"))
4701 (package
4702 (name "sbcl-ningle")
4703 (version (git-version "0.3.0" revision commit))
4704 (source
4705 (origin
4706 (method git-fetch)
4707 (uri (git-reference
4708 (url "https://github.com/fukamachi/ningle")
4709 (commit commit)))
4710 (file-name (git-file-name name version))
4711 (sha256
4712 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
4713 (build-system asdf-build-system/sbcl)
4714 (arguments
4715 ;; TODO: pull in clack-test
4716 '(#:tests? #f
4717 #:phases
4718 (modify-phases %standard-phases
4719 (delete 'cleanup-files)
4720 (delete 'cleanup)
4721 (add-before 'cleanup 'combine-fasls
4722 (lambda* (#:key outputs #:allow-other-keys)
4723 (let* ((out (assoc-ref outputs "out"))
4724 (lib (string-append out "/lib/sbcl"))
4725 (ningle-path (string-append lib "/ningle"))
4726 (fasl-files (find-files out "\\.fasl$")))
4727 (mkdir-p ningle-path)
4728 (let ((fasl-path (lambda (name)
4729 (string-append ningle-path
4730 "/"
4731 (basename name)
4732 "--system.fasl"))))
4733 (for-each (lambda (file)
4734 (rename-file file
4735 (fasl-path
4736 (basename file ".fasl"))))
4737 fasl-files))
4738 fasl-files)
4739 #t)))))
4740 (native-inputs
4741 `(("sbcl-prove" ,sbcl-prove)))
4742 (inputs
4743 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4744 ("sbcl-myway" ,sbcl-myway)
4745 ("sbcl-lack" ,sbcl-lack)
4746 ("sbcl-alexandria" ,sbcl-alexandria)
4747 ("sbcl-babel" ,sbcl-babel)))
4748 (home-page "https://8arrow.org/ningle/")
4749 (synopsis "Super micro framework for Common Lisp")
4750 (description
4751 "Ningle is a lightweight web application framework for Common Lisp.")
4752 (license license:llgpl))))
4753
4754 (define-public cl-ningle
4755 (sbcl-package->cl-source-package sbcl-ningle))
4756
4757 (define-public ecl-ningle
4758 (sbcl-package->ecl-package sbcl-ningle))
4759
4760 (define-public sbcl-cl-fastcgi
4761 (let ((commit "de8b49b26de9863996ec18db28af8ab7e8ac4e20")
4762 (revision "2"))
4763 (package
4764 (name "sbcl-cl-fastcgi")
4765 (version (git-version "0.2" revision commit))
4766 (source
4767 (origin
4768 (method git-fetch)
4769 (uri (git-reference
4770 (url "https://github.com/KDr2/cl-fastcgi/")
4771 (commit commit)))
4772 (file-name (git-file-name name version))
4773 (sha256
4774 (base32 "0xgmhx766q4nmrvn5z7ag3ikpr9phlh8ypi8b14azshq9lqbq0m7"))))
4775 (build-system asdf-build-system/sbcl)
4776 (inputs
4777 `(("usocket" ,sbcl-usocket)
4778 ("cffi" ,sbcl-cffi)
4779 ("fcgi" ,fcgi)))
4780 (arguments
4781 `(#:phases
4782 (modify-phases %standard-phases
4783 (add-after 'unpack 'fix-paths
4784 (lambda* (#:key inputs #:allow-other-keys)
4785 (substitute* "cl-fastcgi.lisp"
4786 (("\"libfcgi.so\"")
4787 (string-append
4788 "\""
4789 (assoc-ref inputs "fcgi") "/lib/libfcgi.so\""))))))))
4790 (home-page "https://kdr2.com/project/cl-fastcgi.html")
4791 (synopsis "FastCGI wrapper for Common Lisp")
4792 (description
4793 "CL-FastCGI is a generic version of SB-FastCGI, targeting to run on
4794 mostly Common Lisp implementation.")
4795 (license license:bsd-2))))
4796
4797 (define-public cl-fastcgi
4798 (sbcl-package->cl-source-package sbcl-cl-fastcgi))
4799
4800 (define-public ecl-cl-fastcgi
4801 (sbcl-package->ecl-package sbcl-cl-fastcgi))
4802
4803 (define-public sbcl-clack
4804 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
4805 (revision "1"))
4806 (package
4807 (name "sbcl-clack")
4808 (version (git-version "2.0.0" revision commit))
4809 (source
4810 (origin
4811 (method git-fetch)
4812 (uri (git-reference
4813 (url "https://github.com/fukamachi/clack")
4814 (commit commit)))
4815 (file-name (git-file-name name version))
4816 (sha256
4817 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
4818 (build-system asdf-build-system/sbcl)
4819 (inputs
4820 `(("alexandria" ,sbcl-alexandria)
4821 ("bordeaux-threads" ,sbcl-bordeaux-threads)
4822 ("cl-fastcgi" ,sbcl-cl-fastcgi)
4823 ("flexi-streams" ,sbcl-flexi-streams)
4824 ("hunchentoot" ,sbcl-hunchentoot)
4825 ("lack" ,sbcl-lack)
4826 ("split-sequence" ,sbcl-split-sequence)
4827 ("usocket" ,sbcl-usocket)
4828 ("quri" ,sbcl-quri)))
4829 (arguments
4830 '(#:asd-systems '("clack"
4831 "clack-handler-fcgi"
4832 "clack-socket"
4833 "clack-handler-hunchentoot")))
4834 (home-page "https://github.com/fukamachi/clack")
4835 (synopsis "Web Application Environment for Common Lisp")
4836 (description
4837 "Clack is a web application environment for Common Lisp inspired by
4838 Python's WSGI and Ruby's Rack.")
4839 (license license:llgpl))))
4840
4841 (define-public cl-clack
4842 (sbcl-package->cl-source-package sbcl-clack))
4843
4844 (define-public ecl-clack
4845 (sbcl-package->ecl-package sbcl-clack))
4846
4847 (define-public sbcl-cl-log
4848 (let ((commit "8f4b766d51e02245c310526cf1e4534ce634f837")
4849 (revision "1"))
4850 (package
4851 (name "sbcl-cl-log")
4852 (version "1.0.1")
4853 (source
4854 (origin
4855 (method git-fetch)
4856 (uri (git-reference
4857 (url "https://github.com/nicklevine/cl-log")
4858 (commit commit)))
4859 (sha256
4860 (base32 "1r3z9swy1b59swvaa5b97is9ysrfmjvjjhhw56p7p5hqg93b92ak"))
4861 (file-name (git-file-name "cl-log" version))))
4862 (build-system asdf-build-system/sbcl)
4863 (synopsis "Common Lisp general purpose logging utility")
4864 (description "CL-LOG is a general purpose logging utility, loosely modelled
4865 in some respects after Gary King's Log5. Its features include: logging to
4866 several destinations at once, via \"messengers\", each messenger is tailored to
4867 accept some log messages and reject others, and this tailoring can be changed
4868 on-the-fly, very rapid processing of messages which are rejected by all
4869 messengers, fully independent use of the utility by several different
4870 sub-systems in an application, support for messengers which cl:format text to a
4871 stream, support for messengers which do not invoke cl:format, timestamps in
4872 theory accurate to internal-time-units-per-second.")
4873 (home-page "https://github.com/nicklevine/cl-log")
4874 (license license:expat))))
4875
4876 (define-public cl-log
4877 (sbcl-package->cl-source-package sbcl-cl-log))
4878
4879 (define-public ecl-cl-log
4880 (sbcl-package->ecl-package sbcl-cl-log))
4881
4882 (define-public sbcl-log4cl
4883 (let ((commit "8c48d6f41d3a1475d0a91eed0638b9eecc398e35")
4884 (revision "1"))
4885 (package
4886 (name "sbcl-log4cl")
4887 (version (git-version "1.1.3" revision commit))
4888 (source
4889 (origin
4890 (method git-fetch)
4891 (uri (git-reference
4892 (url "https://github.com/sharplispers/log4cl")
4893 (commit commit)))
4894 (file-name (git-file-name "log4cl" version))
4895 (sha256
4896 (base32 "0166d9aip366pbpdk5gsi2f6xad6q61lssxgbrypa8zslwjn8736"))))
4897 (build-system asdf-build-system/sbcl)
4898 (native-inputs
4899 `(("stefil" ,sbcl-stefil)))
4900 (inputs
4901 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
4902 (home-page "https://github.com/7max/log4cl")
4903 (synopsis "Common Lisp logging framework, modeled after Log4J")
4904 (description
4905 "This is a Common Lisp logging framework that can log at various levels
4906 and mix text with expressions.")
4907 (license license:asl2.0))))
4908
4909 (define-public cl-log4cl
4910 (sbcl-package->cl-source-package sbcl-log4cl))
4911
4912 (define-public ecl-log4cl
4913 (sbcl-package->ecl-package sbcl-log4cl))
4914
4915 (define-public sbcl-printv
4916 (let ((commit "646d31978dbbb460fffb160fd65bb2be9a5a434e")
4917 (revision "1"))
4918 (package
4919 (name "sbcl-printv")
4920 (version (git-version "0.1.0" revision commit))
4921 (source
4922 (origin
4923 (method git-fetch)
4924 (uri (git-reference
4925 (url "https://github.com/danlentz/printv")
4926 (commit commit)))
4927 (file-name (git-file-name "printv" version))
4928 (sha256
4929 (base32 "08jvy82abm7qi3wrxh6gvmwg9gy0zzhg4cfqajdwrggbah8mj5a6"))))
4930 (build-system asdf-build-system/sbcl)
4931 (home-page "https://github.com/danlentz/printv")
4932 (synopsis "Common Lisp tracing and debug-logging macro")
4933 (description
4934 "@code{PRINTV} is a \"batteries-included\" tracing and debug-logging
4935 macro for Common Lisp.")
4936 (license license:asl2.0))))
4937
4938 (define-public ecl-printv
4939 (sbcl-package->ecl-package sbcl-printv))
4940
4941 (define-public cl-printv
4942 (sbcl-package->cl-source-package sbcl-printv))
4943
4944 (define-public sbcl-verbose
4945 (let ((commit "c5b7ecd465be61b35af17ef57564697b88397174")
4946 (revision "1"))
4947 (package
4948 (name "sbcl-verbose")
4949 (version (git-version "2.0.0" revision commit))
4950 (source
4951 (origin
4952 (method git-fetch)
4953 (uri (git-reference
4954 (url "https://github.com/Shinmera/verbose/")
4955 (commit commit)))
4956 (file-name (git-file-name "verbose" version))
4957 (sha256
4958 (base32 "0r51ydj5v7afi2jrlscbhxprv13d9vzg5316g1yzwaxc1kzsdsw6"))))
4959 (build-system asdf-build-system/sbcl)
4960 (inputs
4961 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
4962 ("dissect" ,sbcl-dissect)
4963 ("documentation-utils" ,sbcl-documentation-utils)
4964 ("local-time" ,sbcl-local-time)
4965 ("piping" ,sbcl-piping)))
4966 (home-page "https://shinmera.github.io/verbose/")
4967 (synopsis "Logging framework using the piping library")
4968 (description
4969 "This is a Common Lisp library providing logging faciltiy similar to
4970 @code{CL-LOG} and @code{LOG4CL}.")
4971 (license license:zlib))))
4972
4973 (define-public ecl-verbose
4974 (sbcl-package->ecl-package sbcl-verbose))
4975
4976 (define-public cl-verbose
4977 (sbcl-package->cl-source-package sbcl-verbose))
4978
4979 (define-public sbcl-find-port
4980 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
4981 (revision "1"))
4982 (package
4983 (name "sbcl-find-port")
4984 (build-system asdf-build-system/sbcl)
4985 (version "0.1")
4986 (home-page "https://github.com/eudoxia0/find-port")
4987 (source
4988 (origin
4989 (method git-fetch)
4990 (uri (git-reference
4991 (url home-page)
4992 (commit commit)))
4993 (file-name (git-file-name name version))
4994 (sha256
4995 (base32
4996 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
4997 (native-inputs
4998 `(("fiveam" ,sbcl-fiveam)))
4999 (inputs
5000 `(("sbcl-usocket" ,sbcl-usocket)))
5001 (synopsis "Find open ports programmatically in Common Lisp")
5002 (description "This is a small Common Lisp library that finds an open
5003 port within a range.")
5004 (license license:expat))))
5005
5006 (define-public cl-find-port
5007 (sbcl-package->cl-source-package sbcl-find-port))
5008
5009 (define-public ecl-find-port
5010 (sbcl-package->ecl-package sbcl-find-port))
5011
5012 (define-public sbcl-clunit
5013 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
5014 (revision "1"))
5015 (package
5016 (name "sbcl-clunit")
5017 (version (git-version "0.2.3" revision commit))
5018 (source
5019 (origin
5020 (method git-fetch)
5021 (uri (git-reference
5022 (url "https://github.com/tgutu/clunit")
5023 (commit commit)))
5024 (file-name (git-file-name name version))
5025 (sha256
5026 (base32
5027 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
5028 (build-system asdf-build-system/sbcl)
5029 (synopsis "CLUnit is a Common Lisp unit testing framework")
5030 (description
5031 "CLUnit is a Common Lisp unit testing framework. It is designed
5032 to be easy to use so that you can quickly start testing. CLUnit
5033 provides a rich set of features aimed at improving your unit testing
5034 experience.")
5035 (home-page "https://tgutu.github.io/clunit/")
5036 ;; MIT License
5037 (license license:expat))))
5038
5039 (define-public cl-clunit
5040 (sbcl-package->cl-source-package sbcl-clunit))
5041
5042 (define-public ecl-clunit
5043 (sbcl-package->ecl-package sbcl-clunit))
5044
5045 (define-public sbcl-py4cl
5046 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
5047 (revision "1"))
5048 (package
5049 (name "sbcl-py4cl")
5050 (version (git-version "0.0.0" revision commit))
5051 (source
5052 (origin
5053 (method git-fetch)
5054 (uri (git-reference
5055 (url "https://github.com/bendudson/py4cl")
5056 (commit commit)))
5057 (file-name (git-file-name name version))
5058 (sha256
5059 (base32
5060 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
5061 (modules '((guix build utils)))))
5062 (build-system asdf-build-system/sbcl)
5063 (native-inputs
5064 `(("sbcl-clunit" ,sbcl-clunit)))
5065 (inputs
5066 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5067 (propagated-inputs
5068 ;; This package doesn't do anything without python available
5069 `(("python" ,python)
5070 ;; For multi-dimensional array support
5071 ("python-numpy" ,python-numpy)))
5072 (arguments
5073 '(#:phases
5074 (modify-phases %standard-phases
5075 (add-after 'unpack 'replace-*base-directory*-var
5076 (lambda* (#:key outputs #:allow-other-keys)
5077 ;; In the ASD, the author makes an attempt to
5078 ;; programatically determine the location of the
5079 ;; source-code so lisp can call into "py4cl.py". We can
5080 ;; hard-code this since we know where this file will
5081 ;; reside.
5082 (substitute* "src/callpython.lisp"
5083 (("py4cl/config:\\*base-directory\\*")
5084 (string-append
5085 "\""
5086 (assoc-ref outputs "out")
5087 "/share/common-lisp/sbcl-source/py4cl/"
5088 "\""))))))))
5089 (synopsis "Call python from Common Lisp")
5090 (description
5091 "Py4CL is a bridge between Common Lisp and Python, which enables Common
5092 Lisp to interact with Python code. It uses streams to communicate with a
5093 separate python process, the approach taken by cl4py. This is different to
5094 the CFFI approach used by burgled-batteries, but has the same goal.")
5095 (home-page "https://github.com/bendudson/py4cl")
5096 ;; MIT License
5097 (license license:expat))))
5098
5099 (define-public cl-py4cl
5100 (sbcl-package->cl-source-package sbcl-py4cl))
5101
5102 (define-public ecl-py4cl
5103 (sbcl-package->ecl-package sbcl-py4cl))
5104
5105 (define-public sbcl-parse-declarations
5106 (let ((commit "549aebbfb9403a7fe948654126b9c814f443f4f2")
5107 (revision "1"))
5108 (package
5109 (name "sbcl-parse-declarations")
5110 (version (git-version "1.0.0" revision commit))
5111 (source
5112 (origin
5113 (method git-fetch)
5114 (uri (git-reference
5115 (url (string-append
5116 "https://gitlab.common-lisp.net/parse-declarations/"
5117 "parse-declarations.git"))
5118 (commit commit)))
5119 (file-name (git-file-name name version))
5120 (sha256
5121 (base32 "03g5qks4c59nmxa48pbslxkfh77h8hn8566jddp6m9pl15dzzpxd"))))
5122 (build-system asdf-build-system/sbcl)
5123 (arguments
5124 `(#:asd-systems '("parse-declarations-1.0")))
5125 (home-page "https://common-lisp.net/project/parse-declarations/")
5126 (synopsis "Parse, filter, and build declarations")
5127 (description
5128 "Parse-Declarations is a Common Lisp library to help writing
5129 macros which establish bindings. To be semantically correct, such
5130 macros must take user declarations into account, as these may affect
5131 the bindings they establish. Yet the ANSI standard of Common Lisp does
5132 not provide any operators to work with declarations in a convenient,
5133 high-level way. This library provides such operators.")
5134 ;; MIT License
5135 (license license:expat))))
5136
5137 (define-public cl-parse-declarations
5138 (sbcl-package->cl-source-package sbcl-parse-declarations))
5139
5140 (define-public ecl-parse-declarations
5141 (sbcl-package->ecl-package sbcl-parse-declarations))
5142
5143 (define-public sbcl-cl-quickcheck
5144 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
5145 (revision "1"))
5146 (package
5147 (name "sbcl-cl-quickcheck")
5148 (version (git-version "0.0.4" revision commit))
5149 (source
5150 (origin
5151 (method git-fetch)
5152 (uri (git-reference
5153 (url "https://github.com/mcandre/cl-quickcheck")
5154 (commit commit)))
5155 (file-name (git-file-name name version))
5156 (sha256
5157 (base32
5158 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5159 (build-system asdf-build-system/sbcl)
5160 (synopsis
5161 "Common Lisp port of the QuickCheck unit test framework")
5162 (description
5163 "Common Lisp port of the QuickCheck unit test framework")
5164 (home-page "https://github.com/mcandre/cl-quickcheck")
5165 ;; MIT
5166 (license license:expat))))
5167
5168 (define-public cl-quickcheck
5169 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5170
5171 (define-public ecl-cl-quickcheck
5172 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5173
5174 (define-public sbcl-burgled-batteries3
5175 (let ((commit "f65f454d13bb6c40e17e9ec62e41eb5069e09760")
5176 (revision "2"))
5177 (package
5178 (name "sbcl-burgled-batteries3")
5179 (version (git-version "0.0.0" revision commit))
5180 (source
5181 (origin
5182 (method git-fetch)
5183 (uri (git-reference
5184 (url "https://github.com/snmsts/burgled-batteries3")
5185 (commit commit)))
5186 (file-name (git-file-name name version))
5187 (sha256
5188 (base32
5189 "1nzn7jawrfajyzwfnzrg2cmn9xxadcqh4szbpg0jggkhdkdzz4wa"))))
5190 (build-system asdf-build-system/sbcl)
5191 (arguments
5192 `(#:tests? #f
5193 #:modules (((guix build python-build-system) #:select (python-version))
5194 ,@%asdf-build-system-modules)
5195 #:imported-modules ((guix build python-build-system)
5196 ,@%asdf-build-system-modules)
5197 #:phases
5198 (modify-phases (@ (guix build asdf-build-system) %standard-phases)
5199 (add-after 'unpack 'set-*cpython-include-dir*-var
5200 (lambda* (#:key inputs #:allow-other-keys)
5201 (let ((python (assoc-ref inputs "python")))
5202 (setenv "BB_PYTHON3_INCLUDE_DIR"
5203 (string-append python "/include/python"
5204 (python-version python)))
5205 (setenv "BB_PYTHON3_DYLIB"
5206 (string-append python "/lib/libpython3.so"))
5207 #t)))
5208 (add-after 'unpack 'adjust-for-python-3.8
5209 (lambda _
5210 ;; This method is no longer part of the public API.
5211 (substitute* "ffi-interface.lisp"
5212 ((".*PyEval_ReInitThreads.*")
5213 ""))
5214 #t)))))
5215 (native-inputs
5216 `(("sbcl-cl-fad" ,sbcl-cl-fad)
5217 ("sbcl-lift" ,sbcl-lift)
5218 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5219 (inputs
5220 `(("python" ,python)
5221 ("sbcl-cffi" ,sbcl-cffi)
5222 ("sbcl-alexandria" , sbcl-alexandria)
5223 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5224 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5225 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5226 (description
5227 "This package provides a shim between Python3 (specifically, the
5228 CPython implementation of Python) and Common Lisp.")
5229 (home-page "https://github.com/snmsts/burgled-batteries3")
5230 (license license:expat))))
5231
5232 (define-public cl-burgled-batteries3
5233 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5234
5235 (define-public ecl-burgled-batteries3
5236 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5237
5238 (define-public sbcl-metabang-bind
5239 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5240 (revision "1"))
5241 (package
5242 (name "sbcl-metabang-bind")
5243 (version (git-version "0.8.0" revision commit))
5244 (source
5245 (origin
5246 (method git-fetch)
5247 (uri (git-reference
5248 (url "https://github.com/gwkkwg/metabang-bind")
5249 (commit commit)))
5250 (file-name (git-file-name name version))
5251 (sha256
5252 (base32
5253 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5254 (build-system asdf-build-system/sbcl)
5255 (native-inputs
5256 `(("sbcl-lift" ,sbcl-lift)))
5257 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5258 (description
5259 "Bind extends the idea of of let and destructing to provide a uniform
5260 syntax for all your accessor needs. It combines @code{let},
5261 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5262 editing, property or association-lists, and @code{multiple-value-bind} and a
5263 whole lot more into a single form.")
5264 (home-page "https://common-lisp.net/project/metabang-bind/")
5265 ;; MIT License
5266 (license license:expat))))
5267
5268 (define-public cl-metabang-bind
5269 (sbcl-package->cl-source-package sbcl-metabang-bind))
5270
5271 (define-public ecl-metabang-bind
5272 (sbcl-package->ecl-package sbcl-metabang-bind))
5273
5274 (define-public sbcl-fare-utils
5275 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5276 (revision "1"))
5277 (package
5278 (name "sbcl-fare-utils")
5279 (version (git-version "1.0.0.5" revision commit))
5280 (source
5281 (origin
5282 (method git-fetch)
5283 (uri
5284 (git-reference
5285 (url
5286 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5287 (commit commit)))
5288 (file-name (git-file-name name version))
5289 (sha256
5290 (base32
5291 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5292 (build-system asdf-build-system/sbcl)
5293 (arguments
5294 `(#:test-asd-file "test/fare-utils-test.asd"))
5295 (native-inputs
5296 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5297 (synopsis "Collection of utilities and data structures")
5298 (description
5299 "fare-utils is a small collection of utilities. It contains a lot of
5300 basic everyday functions and macros.")
5301 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5302 ;; MIT License
5303 (license license:expat))))
5304
5305 (define-public cl-fare-utils
5306 (sbcl-package->cl-source-package sbcl-fare-utils))
5307
5308 (define-public ecl-fare-utils
5309 (sbcl-package->ecl-package sbcl-fare-utils))
5310
5311 (define-public sbcl-trivial-utf-8
5312 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5313 (revision "1"))
5314 (package
5315 (name "sbcl-trivial-utf-8")
5316 (version (git-version "0.0.0" revision commit))
5317 (source
5318 (origin
5319 (method git-fetch)
5320 (uri
5321 (git-reference
5322 (url (string-append "https://gitlab.common-lisp.net/"
5323 "trivial-utf-8/trivial-utf-8.git"))
5324 (commit commit)))
5325 (file-name (git-file-name name version))
5326 (sha256
5327 (base32
5328 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5329 (arguments
5330 ;; Guix incorrectly assumes the "8" is part of the version
5331 ;; number and lobs it off.
5332 `(#:asd-systems '("trivial-utf-8")))
5333 (build-system asdf-build-system/sbcl)
5334 (synopsis "UTF-8 input/output library")
5335 (description
5336 "The Babel library solves a similar problem while understanding more
5337 encodings. Trivial UTF-8 was written before Babel existed, but for new
5338 projects you might be better off going with Babel. The one plus that Trivial
5339 UTF-8 has is that it doesn't depend on any other libraries.")
5340 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5341 (license license:bsd-3))))
5342
5343 (define-public cl-trivial-utf-8
5344 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5345
5346 (define-public ecl-trivial-utf-8
5347 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5348
5349 (define-public sbcl-idna
5350 (package
5351 (name "sbcl-idna")
5352 (build-system asdf-build-system/sbcl)
5353 (version "0.2.2")
5354 (home-page "https://github.com/antifuchs/idna")
5355 (source
5356 (origin
5357 (method git-fetch)
5358 (uri (git-reference
5359 (url home-page)
5360 (commit version)))
5361 (file-name (git-file-name name version))
5362 (sha256
5363 (base32
5364 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5365 (inputs
5366 `(("split-sequence" ,sbcl-split-sequence)))
5367 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5368 (description "This Common Lisp library provides string encoding and
5369 decoding routines for IDNA, the International Domain Names in Applications.")
5370 (license license:expat)))
5371
5372 (define-public cl-idna
5373 (sbcl-package->cl-source-package sbcl-idna))
5374
5375 (define-public ecl-idna
5376 (sbcl-package->ecl-package sbcl-idna))
5377
5378 (define-public sbcl-swap-bytes
5379 (package
5380 (name "sbcl-swap-bytes")
5381 (build-system asdf-build-system/sbcl)
5382 (version "1.2")
5383 (home-page "https://github.com/sionescu/swap-bytes")
5384 (source
5385 (origin
5386 (method git-fetch)
5387 (uri (git-reference
5388 (url home-page)
5389 (commit (string-append "v" version))))
5390 (file-name (git-file-name name version))
5391 (sha256
5392 (base32
5393 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
5394 (inputs
5395 `(("trivial-features" ,sbcl-trivial-features)))
5396 (native-inputs
5397 `(("fiveam" ,sbcl-fiveam)))
5398 (synopsis "Efficient endianness conversion for Common Lisp")
5399 (description "This Common Lisp library provides optimized byte-swapping
5400 primitives. The library can change endianness of unsigned integers of length
5401 1/2/4/8. Very useful in implementing various network protocols and file
5402 formats.")
5403 (license license:expat)))
5404
5405 (define-public cl-swap-bytes
5406 (sbcl-package->cl-source-package sbcl-swap-bytes))
5407
5408 (define-public ecl-swap-bytes
5409 (sbcl-package->ecl-package sbcl-swap-bytes))
5410
5411 (define-public sbcl-iolib
5412 ;; Latest release is from June 2017.
5413 (let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
5414 (revision "2"))
5415 (package
5416 (name "sbcl-iolib")
5417 (version (git-version "0.8.3" revision commit))
5418 (home-page "https://github.com/sionescu/iolib")
5419 (source
5420 (origin
5421 (method git-fetch)
5422 (uri (git-reference
5423 (url home-page)
5424 (commit commit)))
5425 (file-name (git-file-name name version))
5426 (sha256
5427 (base32
5428 "1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
5429 (build-system asdf-build-system/sbcl)
5430 (inputs
5431 `(("alexandria" ,sbcl-alexandria)
5432 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5433 ("cffi" ,sbcl-cffi)
5434 ("idna" ,sbcl-idna)
5435 ("libfixposix" ,libfixposix)
5436 ("split-sequence" ,sbcl-split-sequence)
5437 ("swap-bytes" ,sbcl-swap-bytes)))
5438 (arguments
5439 '(#:asd-files '("iolib.asdf.asd"
5440 "iolib.conf.asd"
5441 "iolib.common-lisp.asd"
5442 "iolib.base.asd"
5443 "iolib.asd")
5444 #:phases
5445 (modify-phases %standard-phases
5446 (add-after 'unpack 'fix-paths
5447 (lambda* (#:key inputs #:allow-other-keys)
5448 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5449 (("\\(:default \"libfixposix\"\\)")
5450 (string-append
5451 "(:default \""
5452 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5453 ;; Socket tests need Internet access, disable them.
5454 (substitute* "iolib.asd"
5455 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5456 "")))))))
5457 (synopsis "Common Lisp I/O library")
5458 (description "IOlib is to be a better and more modern I/O library than
5459 the standard Common Lisp library. It contains a socket library, a DNS
5460 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5461 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5462 (license license:expat))))
5463
5464 (define-public cl-iolib
5465 (let ((parent (sbcl-package->cl-source-package sbcl-iolib)))
5466 (package
5467 (inherit parent)
5468 (propagated-inputs
5469 ;; Need header to compile.
5470 `(("libfixposix" ,libfixposix)
5471 ,@(package-propagated-inputs parent))))))
5472
5473 (define-public ecl-iolib
5474 (sbcl-package->ecl-package sbcl-iolib))
5475
5476 (define-public sbcl-ieee-floats
5477 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5478 (revision "1"))
5479 (package
5480 (name "sbcl-ieee-floats")
5481 (build-system asdf-build-system/sbcl)
5482 (version (git-version "20170924" revision commit))
5483 (home-page "https://github.com/marijnh/ieee-floats/")
5484 (source
5485 (origin
5486 (method git-fetch)
5487 (uri (git-reference
5488 (url home-page)
5489 (commit commit)))
5490 (file-name (git-file-name name version))
5491 (sha256
5492 (base32
5493 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5494 (native-inputs
5495 `(("fiveam" ,sbcl-fiveam)))
5496 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5497 (description "This is a Common Lisp library that converts
5498 floating point values to IEEE 754 binary representation.")
5499 (license license:bsd-3))))
5500
5501 (define-public cl-ieee-floats
5502 (sbcl-package->cl-source-package sbcl-ieee-floats))
5503
5504 (define-public ecl-ieee-floats
5505 (sbcl-package->ecl-package sbcl-ieee-floats))
5506
5507 (define sbcl-closure-common
5508 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5509 (revision "1"))
5510 (package
5511 (name "sbcl-closure-common")
5512 (build-system asdf-build-system/sbcl)
5513 (version (git-version "20101006" revision commit))
5514 (home-page "https://common-lisp.net/project/cxml/")
5515 (source
5516 (origin
5517 (method git-fetch)
5518 (uri (git-reference
5519 (url "https://github.com/sharplispers/closure-common")
5520 (commit commit)))
5521 (file-name (git-file-name name version))
5522 (sha256
5523 (base32
5524 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5525 (inputs
5526 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5527 ("babel" ,sbcl-babel)))
5528 (synopsis "Support Common Lisp library for CXML")
5529 (description "Closure-common is an internal helper library. The name
5530 Closure is a reference to the web browser it was originally written for.")
5531 ;; TODO: License?
5532 (license #f))))
5533
5534 (define-public sbcl-cxml
5535 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5536 (revision "1"))
5537 (package
5538 (name "sbcl-cxml")
5539 (version (git-version "0.0.0" revision commit))
5540 (source
5541 (origin
5542 (method git-fetch)
5543 (uri (git-reference
5544 (url "https://github.com/sharplispers/cxml")
5545 (commit commit)))
5546 (file-name (git-file-name name version))
5547 (sha256
5548 (base32
5549 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5550 (build-system asdf-build-system/sbcl)
5551 (inputs
5552 `(("closure-common" ,sbcl-closure-common)
5553 ("puri" ,sbcl-puri)
5554 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5555 (synopsis "Common Lisp XML parser")
5556 (description "CXML implements a namespace-aware, validating XML 1.0
5557 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5558 offered, one SAX-like, the other similar to StAX.")
5559 (home-page "https://common-lisp.net/project/cxml/")
5560 (license license:llgpl))))
5561
5562 (define-public cl-cxml
5563 (sbcl-package->cl-source-package sbcl-cxml))
5564
5565 (define-public ecl-cxml
5566 (sbcl-package->ecl-package sbcl-cxml))
5567
5568 (define-public sbcl-cl-reexport
5569 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5570 (revision "1"))
5571 (package
5572 (name "sbcl-cl-reexport")
5573 (build-system asdf-build-system/sbcl)
5574 (version (git-version "0.1" revision commit))
5575 (home-page "https://github.com/takagi/cl-reexport")
5576 (source
5577 (origin
5578 (method git-fetch)
5579 (uri (git-reference
5580 (url home-page)
5581 (commit commit)))
5582 (file-name (git-file-name name version))
5583 (sha256
5584 (base32
5585 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5586 (inputs
5587 `(("alexandria" ,sbcl-alexandria)))
5588 (arguments
5589 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5590 `(#:tests? #f))
5591 (synopsis "HTTP cookie manager for Common Lisp")
5592 (description "cl-cookie is a Common Lisp library featuring parsing of
5593 cookie headers, cookie creation, cookie jar creation and more.")
5594 (license license:llgpl))))
5595
5596 (define-public cl-reexport
5597 (sbcl-package->cl-source-package sbcl-cl-reexport))
5598
5599 (define-public ecl-cl-reexport
5600 (sbcl-package->ecl-package sbcl-cl-reexport))
5601
5602 (define-public sbcl-cl-cookie
5603 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5604 (revision "1"))
5605 (package
5606 (name "sbcl-cl-cookie")
5607 (build-system asdf-build-system/sbcl)
5608 (version (git-version "0.9.10" revision commit))
5609 (home-page "https://github.com/fukamachi/cl-cookie")
5610 (source
5611 (origin
5612 (method git-fetch)
5613 (uri (git-reference
5614 (url home-page)
5615 (commit commit)))
5616 (file-name (git-file-name name version))
5617 (sha256
5618 (base32
5619 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5620 (inputs
5621 `(("proc-parse" ,sbcl-proc-parse)
5622 ("alexandria" ,sbcl-alexandria)
5623 ("quri" ,sbcl-quri)
5624 ("cl-ppcre" ,sbcl-cl-ppcre)
5625 ("local-time" ,sbcl-local-time)))
5626 (native-inputs
5627 `(("prove" ,sbcl-prove)))
5628 (arguments
5629 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
5630 `(#:tests? #f))
5631 (synopsis "HTTP cookie manager for Common Lisp")
5632 (description "cl-cookie is a Common Lisp library featuring parsing of
5633 cookie headers, cookie creation, cookie jar creation and more.")
5634 (license license:bsd-2))))
5635
5636 (define-public cl-cookie
5637 (sbcl-package->cl-source-package sbcl-cl-cookie))
5638
5639 (define-public ecl-cl-cookie
5640 (sbcl-package->ecl-package sbcl-cl-cookie))
5641
5642 (define-public sbcl-dexador
5643 (let ((commit "953090f04c4d1a9ee6632b90133cdc297b68badc")
5644 (revision "1"))
5645 (package
5646 (name "sbcl-dexador")
5647 (build-system asdf-build-system/sbcl)
5648 (version "0.9.14" )
5649 (home-page "https://github.com/fukamachi/dexador")
5650 (source
5651 (origin
5652 (method git-fetch)
5653 (uri (git-reference
5654 (url home-page)
5655 (commit commit)))
5656 (file-name (git-file-name name version))
5657 (sha256
5658 (base32
5659 "0w18fz3301rpmwc3kwb810czcd24mbf7r1z8vdyc0v5crjfpw3mn"))))
5660 (inputs
5661 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5662 ("babel" ,sbcl-babel)
5663 ("usocket" ,sbcl-usocket)
5664 ("fast-http" ,sbcl-fast-http)
5665 ("quri" ,sbcl-quri)
5666 ("fast-io" ,sbcl-fast-io)
5667 ("chunga" ,sbcl-chunga)
5668 ("cl-ppcre" ,sbcl-cl-ppcre)
5669 ("cl-cookie" ,sbcl-cl-cookie)
5670 ("trivial-mimes" ,sbcl-trivial-mimes)
5671 ("chipz" ,sbcl-chipz)
5672 ("cl-base64" ,sbcl-cl-base64)
5673 ("cl-reexport" ,sbcl-cl-reexport)
5674 ("cl+ssl" ,sbcl-cl+ssl)
5675 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5676 ("alexandria" ,sbcl-alexandria)))
5677 (native-inputs
5678 `(("prove" ,sbcl-prove)
5679 ("lack" ,sbcl-lack)
5680 ("clack" ,sbcl-clack)
5681 ("babel" ,sbcl-babel)
5682 ("alexandria" ,sbcl-alexandria)
5683 ("cl-ppcre" ,sbcl-cl-ppcre)
5684 ("local-time" ,sbcl-local-time)
5685 ("trivial-features" ,sbcl-trivial-features)))
5686 (arguments
5687 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
5688 `(#:tests? #f
5689 #:phases
5690 (modify-phases %standard-phases
5691 (add-after 'unpack 'fix-permissions
5692 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
5693 (synopsis "Yet another HTTP client for Common Lisp")
5694 (description "Dexador is yet another HTTP client for Common Lisp with
5695 neat APIs and connection-pooling. It is meant to supersede Drakma.")
5696 (license license:expat))))
5697
5698 (define-public cl-dexador
5699 (package
5700 (inherit (sbcl-package->cl-source-package sbcl-dexador))
5701 (arguments
5702 `(#:phases
5703 ;; asdf-build-system/source has its own phases and does not inherit
5704 ;; from asdf-build-system/sbcl phases.
5705 (modify-phases %standard-phases/source
5706 ;; Already done in SBCL package.
5707 (delete 'reset-gzip-timestamps))))))
5708
5709 (define-public ecl-dexador
5710 (sbcl-package->ecl-package sbcl-dexador))
5711
5712 (define-public sbcl-lisp-namespace
5713 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
5714 (revision "1"))
5715 (package
5716 (name "sbcl-lisp-namespace")
5717 (build-system asdf-build-system/sbcl)
5718 (version (git-version "0.1" revision commit))
5719 (home-page "https://github.com/guicho271828/lisp-namespace")
5720 (source
5721 (origin
5722 (method git-fetch)
5723 (uri (git-reference
5724 (url home-page)
5725 (commit commit)))
5726 (file-name (git-file-name name version))
5727 (sha256
5728 (base32
5729 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
5730 (inputs
5731 `(("alexandria" ,sbcl-alexandria)))
5732 (native-inputs
5733 `(("fiveam" ,sbcl-fiveam)))
5734 (arguments
5735 `(#:test-asd-file "lisp-namespace.test.asd"
5736 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
5737 #:tests? #f))
5738 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
5739 (description "Common Lisp already has major 2 namespaces, function
5740 namespace and value namespace (or variable namespace), but there are actually
5741 more — e.g., class namespace.
5742 This library offers macros to deal with symbols from any namespace.")
5743 (license license:llgpl))))
5744
5745 (define-public cl-lisp-namespace
5746 (sbcl-package->cl-source-package sbcl-lisp-namespace))
5747
5748 (define-public ecl-lisp-namespace
5749 (sbcl-package->ecl-package sbcl-lisp-namespace))
5750
5751 (define-public sbcl-trivial-cltl2
5752 (let ((commit "8a3bda30dc25d2f65fcf514d0eb6e6db75252c61")
5753 (revision "2"))
5754 (package
5755 (name "sbcl-trivial-cltl2")
5756 (build-system asdf-build-system/sbcl)
5757 (version (git-version "0.1.1" revision commit))
5758 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
5759 (source
5760 (origin
5761 (method git-fetch)
5762 (uri (git-reference
5763 (url home-page)
5764 (commit commit)))
5765 (file-name (git-file-name name version))
5766 (sha256
5767 (base32
5768 "08cnzb9rnczn4pn2zpf0587ny4wjy1mjndy885fz9pw7xrlx37ip"))))
5769 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
5770 (description "This library is a portable compatibility layer around
5771 \"Common Lisp the Language, 2nd
5772 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
5773 and it exports symbols from implementation-specific packages.")
5774 (license license:llgpl))))
5775
5776 (define-public cl-trivial-cltl2
5777 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
5778
5779 (define-public ecl-trivial-cltl2
5780 (sbcl-package->ecl-package sbcl-trivial-cltl2))
5781
5782 (define-public sbcl-introspect-environment
5783 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
5784 (revision "1"))
5785 (package
5786 (name "sbcl-introspect-environment")
5787 (build-system asdf-build-system/sbcl)
5788 (version (git-version "0.1" revision commit))
5789 (home-page "https://github.com/Bike/introspect-environment")
5790 (source
5791 (origin
5792 (method git-fetch)
5793 (uri (git-reference
5794 (url home-page)
5795 (commit commit)))
5796 (file-name (git-file-name name version))
5797 (sha256
5798 (base32
5799 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
5800 (native-inputs
5801 `(("fiveam" ,sbcl-fiveam)))
5802 (synopsis "Common Lisp environment introspection portability layer")
5803 (description "This library is a small interface to portable but
5804 nonstandard introspection of Common Lisp environments. It is intended to
5805 allow a bit more compile-time introspection of environments in Common Lisp.
5806
5807 Quite a bit of information is available at the time a macro or compiler-macro
5808 runs; inlining info, type declarations, that sort of thing. This information
5809 is all standard - any Common Lisp program can @code{(declare (integer x))} and
5810 such.
5811
5812 This info ought to be accessible through the standard @code{&environment}
5813 parameters, but it is not. Several implementations keep the information for
5814 their own purposes but do not make it available to user programs, because
5815 there is no standard mechanism to do so.
5816
5817 This library uses implementation-specific hooks to make information available
5818 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
5819 implementations have implementations of the functions that do as much as they
5820 can and/or provide reasonable defaults.")
5821 (license license:wtfpl2))))
5822
5823 (define-public cl-introspect-environment
5824 (sbcl-package->cl-source-package sbcl-introspect-environment))
5825
5826 (define-public ecl-introspect-environment
5827 (sbcl-package->ecl-package sbcl-introspect-environment))
5828
5829 (define-public sbcl-type-i
5830 (let ((commit "d34440ab4ebf5a46a58deccb35950b15670e3667")
5831 (revision "2"))
5832 (package
5833 (name "sbcl-type-i")
5834 (build-system asdf-build-system/sbcl)
5835 (version (git-version "0.1" revision commit))
5836 (home-page "https://github.com/guicho271828/type-i")
5837 (source
5838 (origin
5839 (method git-fetch)
5840 (uri (git-reference
5841 (url home-page)
5842 (commit commit)))
5843 (file-name (git-file-name name version))
5844 (sha256
5845 (base32
5846 "12wsga0pwjkkr176lnjwkmmlm3ccp0n310sjj9h20lk53iyd0z69"))))
5847 (inputs
5848 `(("alexandria" ,sbcl-alexandria)
5849 ("introspect-environment" ,sbcl-introspect-environment)
5850 ("trivia.trivial" ,sbcl-trivia.trivial)))
5851 (native-inputs
5852 `(("fiveam" ,sbcl-fiveam)))
5853 (arguments
5854 `(#:test-asd-file "type-i.test.asd"))
5855 (synopsis "Type inference utility on unary predicates for Common Lisp")
5856 (description "This library tries to provide a way to detect what kind of
5857 type the given predicate is trying to check. This is different from inferring
5858 the return type of a function.")
5859 (license license:llgpl))))
5860
5861 (define-public cl-type-i
5862 (sbcl-package->cl-source-package sbcl-type-i))
5863
5864 (define-public ecl-type-i
5865 (package
5866 (inherit (sbcl-package->ecl-package sbcl-type-i))
5867 (arguments
5868 ;; The tests get stuck indefinitly
5869 '(#:tests? #f))))
5870
5871 (define-public sbcl-optima
5872 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
5873 (revision "1"))
5874 (package
5875 (name "sbcl-optima")
5876 (build-system asdf-build-system/sbcl)
5877 (version (git-version "1.0" revision commit))
5878 (home-page "https://github.com/m2ym/optima")
5879 (source
5880 (origin
5881 (method git-fetch)
5882 (uri (git-reference
5883 (url home-page)
5884 (commit commit)))
5885 (file-name (git-file-name name version))
5886 (sha256
5887 (base32
5888 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
5889 (inputs
5890 `(("alexandria" ,sbcl-alexandria)
5891 ("closer-mop" ,sbcl-closer-mop)))
5892 (native-inputs
5893 `(("eos" ,sbcl-eos)))
5894 (arguments
5895 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
5896 `(#:tests? #f
5897 #:test-asd-file "optima.test.asd"))
5898 (synopsis "Optimized pattern matching library for Common Lisp")
5899 (description "Optima is a fast pattern matching library which uses
5900 optimizing techniques widely used in the functional programming world.")
5901 (license license:expat))))
5902
5903 (define-public cl-optima
5904 (sbcl-package->cl-source-package sbcl-optima))
5905
5906 (define-public ecl-optima
5907 (sbcl-package->ecl-package sbcl-optima))
5908
5909 (define-public sbcl-fare-quasiquote
5910 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
5911 (revision "1"))
5912 (package
5913 (name "sbcl-fare-quasiquote")
5914 (build-system asdf-build-system/sbcl)
5915 (version (git-version "1.0.1" revision commit))
5916 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
5917 (source
5918 (origin
5919 (method git-fetch)
5920 (uri (git-reference
5921 (url (string-append "https://gitlab.common-lisp.net/frideau/"
5922 "fare-quasiquote.git"))
5923 (commit commit)))
5924 (file-name (git-file-name name version))
5925 (sha256
5926 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
5927 (inputs
5928 `(("fare-utils" ,sbcl-fare-utils)
5929 ("named-readtables" ,sbcl-named-readtables)
5930 ("optima" ,sbcl-optima)))
5931 (arguments
5932 ;; XXX: Circular dependencies: Tests depend on subsystems,
5933 ;; which depend on the main systems.
5934 `(#:tests? #f
5935 #:asd-systems '("fare-quasiquote"
5936 "fare-quasiquote-extras")
5937 #:phases
5938 (modify-phases %standard-phases
5939 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
5940 ;; commits after 1.0.0.5, but ASDF fails to read the
5941 ;; "-REVISION-COMMIT" part generated by Guix.
5942 (add-after 'unpack 'patch-requirement
5943 (lambda _
5944 (substitute* "fare-quasiquote.asd"
5945 (("\\(:version \"fare-utils\" \"1.0.0\"\\)")
5946 "\"fare-utils\""))
5947 (substitute* "fare-quasiquote-optima.asd"
5948 (("\\(:version \"optima\" \"1\\.0\"\\)")
5949 "\"optima\""))
5950 #t)))))
5951 (synopsis "Pattern-matching friendly implementation of quasiquote")
5952 (description "The main purpose of this n+2nd reimplementation of
5953 quasiquote is enable matching of quasiquoted patterns, using Optima or
5954 Trivia.")
5955 (license license:expat))))
5956
5957 (define-public cl-fare-quasiquote
5958 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
5959
5960 (define-public ecl-fare-quasiquote
5961 (sbcl-package->ecl-package sbcl-fare-quasiquote))
5962
5963 ;;; Split the trivia package in two to work around the circular dependency
5964 ;;; between guicho271828/trivia and guicho271828/type-i.
5965 (define-public sbcl-trivia.trivial
5966 (let ((commit "7286d5d2a4f685f1cac8370816f95276c0851111")
5967 (revision "3"))
5968 (package
5969 (name "sbcl-trivia.trivial")
5970 (version (git-version "0.0.0" revision commit))
5971 (source
5972 (origin
5973 (method git-fetch)
5974 (uri (git-reference
5975 (url "https://github.com/guicho271828/trivia")
5976 (commit commit)))
5977 (file-name (git-file-name "trivia" version))
5978 (sha256
5979 (base32
5980 "0ln0sj3jry7kzbmxhnin66kpbqan1wp8wwgdbw4k29afbdblkcca"))))
5981 (build-system asdf-build-system/sbcl)
5982 (inputs
5983 `(("alexandria" ,sbcl-alexandria)
5984 ("closer-mop" ,sbcl-closer-mop)
5985 ("lisp-namespace" ,sbcl-lisp-namespace)
5986 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
5987 (arguments
5988 '(#:phases
5989 (modify-phases %standard-phases
5990 (add-after 'unpack 'fix-build
5991 (lambda _
5992 (for-each delete-file
5993 '("trivia.balland2006.asd"
5994 "trivia.ppcre.asd"
5995 "trivia.quasiquote.asd"
5996 "trivia.cffi.asd"
5997 "trivia.asd"
5998 "trivia.test.asd"))
5999 #t)))))
6000 (synopsis "Pattern matching in Common Lisp")
6001 (description "Trivia is a pattern matching compiler that is compatible
6002 with Optima, another pattern matching library for Common Lisp. It is meant to
6003 be faster and more extensible than Optima.")
6004 (home-page "https://github.com/guicho271828/trivia")
6005 (license license:llgpl))))
6006
6007 (define-public cl-trivia.trivial
6008 (sbcl-package->cl-source-package sbcl-trivia.trivial))
6009
6010 (define-public ecl-trivia.trivial
6011 (sbcl-package->ecl-package sbcl-trivia.trivial))
6012
6013 (define-public sbcl-trivia
6014 (package
6015 (inherit sbcl-trivia.trivial)
6016 (name "sbcl-trivia")
6017 (native-inputs
6018 `(("fiveam" ,sbcl-fiveam)
6019 ("optima" ,sbcl-optima)))
6020 (inputs
6021 `(("alexandria" ,sbcl-alexandria)
6022 ("cffi" ,sbcl-cffi)
6023 ("cl-ppcre" ,sbcl-cl-ppcre)
6024 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6025 ("iterate" ,sbcl-iterate)
6026 ("trivia.trivial" ,sbcl-trivia.trivial)
6027 ("type-i" ,sbcl-type-i)))
6028 (arguments
6029 '(#:asd-systems '("trivia"
6030 "trivia.ppcre"
6031 "trivia.quasiquote"
6032 "trivia.cffi")
6033 #:test-asd-file "trivia.test.asd"
6034 #:phases
6035 (modify-phases %standard-phases
6036 (add-after 'unpack 'fix-build
6037 (lambda _
6038 (for-each delete-file
6039 '("trivia.level0.asd"
6040 "trivia.level1.asd"
6041 "trivia.level2.asd"
6042 "trivia.trivial.asd"))
6043 #t)))))))
6044
6045 (define-public cl-trivia
6046 (sbcl-package->cl-source-package sbcl-trivia))
6047
6048 (define-public ecl-trivia
6049 (sbcl-package->ecl-package sbcl-trivia))
6050
6051 (define-public sbcl-mk-string-metrics
6052 (package
6053 (name "sbcl-mk-string-metrics")
6054 (version "0.1.2")
6055 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6056 (source (origin
6057 (method git-fetch)
6058 (uri (git-reference
6059 (url home-page)
6060 (commit version)))
6061 (sha256
6062 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6063 (file-name (git-file-name name version))))
6064 (build-system asdf-build-system/sbcl)
6065 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6066 (description "This library implements efficient algorithms that calculate
6067 various string metrics in Common Lisp:
6068
6069 @itemize
6070 @item Damerau-Levenshtein distance
6071 @item Hamming distance
6072 @item Jaccard similarity coefficient
6073 @item Jaro distance
6074 @item Jaro-Winkler distance
6075 @item Levenshtein distance
6076 @item Normalized Damerau-Levenshtein distance
6077 @item Normalized Levenshtein distance
6078 @item Overlap coefficient
6079 @end itemize\n")
6080 (license license:x11)))
6081
6082 (define-public cl-mk-string-metrics
6083 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6084
6085 (define-public ecl-mk-string-metrics
6086 (sbcl-package->ecl-package sbcl-mk-string-metrics))
6087
6088 (define-public sbcl-cl-str
6089 (package
6090 (name "sbcl-cl-str")
6091 (version "0.19")
6092 (home-page "https://github.com/vindarel/cl-str")
6093 (source (origin
6094 (method git-fetch)
6095 (uri (git-reference
6096 (url home-page)
6097 (commit version)))
6098 (sha256
6099 (base32 "1jyza2jhn7w6fl4w87pv0m87z5ia48m6dqw12k0mdh7l3mgjq839"))
6100 (file-name (git-file-name name version))))
6101 (build-system asdf-build-system/sbcl)
6102 (inputs
6103 `(("cl-ppcre" ,sbcl-cl-ppcre)
6104 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
6105 ("cl-change-case" ,sbcl-cl-change-case)))
6106 (native-inputs
6107 `(("prove" ,sbcl-prove)))
6108 (arguments
6109 `(#:asd-systems '("str")
6110 #:test-asd-file "str.test.asd"))
6111 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6112 (description "A modern and consistent Common Lisp string manipulation
6113 library that focuses on modernity, simplicity and discoverability:
6114 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6115 @code{str:concat strings} instead of an unusual format construct; one
6116 discoverable library instead of many; consistency and composability, where
6117 @code{s} is always the last argument, which makes it easier to feed pipes and
6118 arrows.")
6119 (license license:expat)))
6120
6121 (define-public cl-str
6122 (sbcl-package->cl-source-package sbcl-cl-str))
6123
6124 (define-public ecl-cl-str
6125 (sbcl-package->ecl-package sbcl-cl-str))
6126
6127 (define-public sbcl-cl-xmlspam
6128 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6129 (package
6130 (name "sbcl-cl-xmlspam")
6131 (build-system asdf-build-system/sbcl)
6132 (version (git-version "0.0.0" "1" commit))
6133 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6134 (source
6135 (origin
6136 (method git-fetch)
6137 (uri (git-reference
6138 (url home-page)
6139 (commit commit)))
6140 (file-name (string-append name "-" version))
6141 (sha256
6142 (base32
6143 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6144 (inputs
6145 `(("cxml" ,sbcl-cxml)
6146 ("cl-ppcre" ,sbcl-cl-ppcre)))
6147 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6148 (description "CXML does an excellent job at parsing XML elements, but what
6149 do you do when you have a XML file that's larger than you want to fit in
6150 memory, and you want to extract some information from it? Writing code to deal
6151 with SAX events, or even using Klacks, quickly becomes tedious.
6152 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6153 to write code that mirrors the structure of the XML that it's parsing. It
6154 also makes it easy to shift paradigms when necessary - the usual Lisp control
6155 constructs can be used interchangeably with pattern matching, and the full
6156 power of CXML is available when necessary.")
6157 (license license:bsd-3))))
6158
6159 (define-public cl-xmlspam
6160 (sbcl-package->cl-source-package sbcl-cl-xmlspam))
6161
6162 (define-public ecl-cl-xmlspam
6163 (sbcl-package->ecl-package sbcl-cl-xmlspam))
6164
6165 (define-public sbcl-dbus
6166 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6167 (revision "1"))
6168 (package
6169 (name "sbcl-dbus")
6170 (version (git-version "20190408" revision commit))
6171 (home-page "https://github.com/death/dbus")
6172 (source
6173 (origin
6174 (method git-fetch)
6175 (uri (git-reference
6176 (url home-page)
6177 (commit commit)))
6178 (file-name (git-file-name name version))
6179 (sha256
6180 (base32
6181 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6182 (build-system asdf-build-system/sbcl)
6183 (inputs
6184 `(("alexandria" ,sbcl-alexandria)
6185 ("trivial-garbage" ,sbcl-trivial-garbage)
6186 ("babel" ,sbcl-babel)
6187 ("iolib" ,sbcl-iolib)
6188 ("ieee-floats" ,sbcl-ieee-floats)
6189 ("flexi-streams" ,sbcl-flexi-streams)
6190 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6191 ("ironclad" ,sbcl-ironclad)))
6192 (synopsis "D-Bus client library for Common Lisp")
6193 (description "This is a Common Lisp library that publishes D-Bus
6194 objects as well as send and notify other objects connected to a bus.")
6195 (license license:bsd-2))))
6196
6197 (define-public cl-dbus
6198 (sbcl-package->cl-source-package sbcl-dbus))
6199
6200 (define-public ecl-dbus
6201 (sbcl-package->ecl-package sbcl-dbus))
6202
6203 (define-public sbcl-cl-hooks
6204 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6205 (revision "1"))
6206 (package
6207 (name "sbcl-cl-hooks")
6208 (build-system asdf-build-system/sbcl)
6209 (version (git-version "0.2.1" revision commit))
6210 (home-page "https://github.com/scymtym/architecture.hooks")
6211 (source
6212 (origin
6213 (method git-fetch)
6214 (uri (git-reference
6215 (url home-page)
6216 (commit commit)))
6217 (file-name (git-file-name name version))
6218 (sha256
6219 (base32
6220 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6221 (inputs
6222 `(("alexandria" ,sbcl-alexandria)
6223 ("let-plus" ,sbcl-let-plus)
6224 ("trivial-garbage" ,sbcl-trivial-garbage)
6225 ("closer-mop" ,sbcl-closer-mop)))
6226 (native-inputs
6227 `(("fiveam" ,sbcl-fiveam)))
6228 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6229 (description "A hook, in the present context, is a certain kind of
6230 extension point in a program that allows interleaving the execution of
6231 arbitrary code with the execution of a the program without introducing any
6232 coupling between the two. Hooks are used extensively in the extensible editor
6233 Emacs.
6234
6235 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6236 possible using the flexible multi-method dispatch mechanism. It may even seem
6237 that the concept of hooks does not provide any benefits over the possibilities
6238 of CLOS. However, there are some differences:
6239
6240 @itemize
6241
6242 @item There can be only one method for each combination of specializers and
6243 qualifiers. As a result this kind of extension point cannot be used by
6244 multiple extensions independently.
6245 @item Removing code previously attached via a @code{:before}, @code{:after} or
6246 @code{:around} method can be cumbersome.
6247 @item There could be other or even multiple extension points besides @code{:before}
6248 and @code{:after} in a single method.
6249 @item Attaching codes to individual objects using eql specializers can be
6250 cumbersome.
6251 @item Introspection of code attached a particular extension point is
6252 cumbersome since this requires enumerating and inspecting the methods of a
6253 generic function.
6254 @end itemize
6255
6256 This library tries to complement some of these weaknesses of method-based
6257 extension-points via the concept of hooks.")
6258 (license license:llgpl))))
6259
6260 (define-public cl-hooks
6261 (sbcl-package->cl-source-package sbcl-cl-hooks))
6262
6263 (define-public ecl-cl-hooks
6264 (sbcl-package->ecl-package sbcl-cl-hooks))
6265
6266 (define-public sbcl-cl-autowrap
6267 (let ((revision "1")
6268 (commit "ae846d6968fc0d000de0c541638929a157f3009e"))
6269 ;; no taged branches
6270 (package
6271 (name "sbcl-cl-autowrap")
6272 (version (git-version "1.0" revision commit))
6273 (source
6274 (origin
6275 (method git-fetch)
6276 (uri (git-reference
6277 (url "https://github.com/rpav/cl-autowrap")
6278 (commit commit)))
6279 (file-name (git-file-name name version))
6280 (sha256
6281 (base32 "1gisldp2zns92kdcaikghm7c38ldy2d884n8bfg0wcjvbz78p3ar"))))
6282 (build-system asdf-build-system/sbcl)
6283 (inputs
6284 `(("alexandria" ,sbcl-alexandria)
6285 ("cffi" ,sbcl-cffi)
6286 ("cl-json" ,sbcl-cl-json)
6287 ("cl-ppcre" ,sbcl-cl-ppcre)
6288 ("defpackage-plus" ,sbcl-defpackage-plus)
6289 ("trivial-features" ,sbcl-trivial-features)))
6290 (home-page "https://github.com/rpav/cl-autowrap")
6291 (synopsis "FFI wrapper generator for Common Lisp")
6292 (description "This is a c2ffi-based wrapper generator for Common Lisp.")
6293 (license license:bsd-2))))
6294
6295 (define-public cl-autowrap
6296 (sbcl-package->cl-source-package sbcl-cl-autowrap))
6297
6298 (define-public ecl-cl-autowrap
6299 (sbcl-package->ecl-package sbcl-cl-autowrap))
6300
6301 (define-public sbcl-s-sysdeps
6302 ;; No release since 2013.
6303 (let ((commit "9aa23bbdceb24bcdbe0e7c39fa1901858f823106")
6304 (revision "2"))
6305 (package
6306 (name "sbcl-s-sysdeps")
6307 (build-system asdf-build-system/sbcl)
6308 (version (git-version "1" revision commit))
6309 (home-page "https://github.com/svenvc/s-sysdeps")
6310 (source
6311 (origin
6312 (method git-fetch)
6313 (uri (git-reference
6314 (url home-page)
6315 (commit commit)))
6316 (file-name (git-file-name name version))
6317 (sha256
6318 (base32
6319 "1fh8r7kf8s3hvqdg6b71b8p7w3v2kkga9bw8j3qqdxhzr6anpm0b"))))
6320 (inputs
6321 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
6322 ("usocket" ,sbcl-usocket)))
6323 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6324 (description "@code{s-sysdeps} is an abstraction layer over platform
6325 dependent functionality. This simple package is used as a building block in a
6326 number of other open source projects.
6327
6328 @code{s-sysdeps} abstracts:
6329
6330 @itemize
6331 @item managing processes,
6332 @item implementing a standard TCP/IP server,
6333 @item opening a client TCP/IP socket stream,
6334 @item working with process locks.
6335 @end itemize\n")
6336 (license license:llgpl))))
6337
6338 (define-public cl-s-sysdeps
6339 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6340
6341 (define-public ecl-s-sysdeps
6342 (sbcl-package->ecl-package sbcl-s-sysdeps))
6343
6344 (define-public sbcl-cl-prevalence
6345 (let ((commit "5a76be036092ed6c18cb695a9e03bce87e21b840")
6346 (revision "4"))
6347 (package
6348 (name "sbcl-cl-prevalence")
6349 (build-system asdf-build-system/sbcl)
6350 (version (git-version "5" revision commit))
6351 (home-page "https://github.com/40ants/cl-prevalence")
6352 (source
6353 (origin
6354 (method git-fetch)
6355 (uri (git-reference
6356 (url home-page)
6357 (commit commit)))
6358 (file-name (git-file-name name version))
6359 (sha256
6360 (base32
6361 "050h6hwv8f16b5v6fzba8zmih92hgaaq27i2x9wv1iib41gbia3r"))))
6362 (inputs
6363 `(("s-sysdeps" ,sbcl-s-sysdeps)
6364 ("s-xml" ,sbcl-s-xml)))
6365 (native-inputs
6366 `(("fiveam" ,sbcl-fiveam)))
6367 (synopsis "Implementation of object prevalence for Common Lisp")
6368 (description "This Common Lisp library implements object prevalence (see
6369 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6370 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6371 classes and cyclic data structures are supported.")
6372 (license license:llgpl))))
6373
6374 (define-public cl-prevalence
6375 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6376
6377 (define-public ecl-cl-prevalence
6378 (sbcl-package->ecl-package sbcl-cl-prevalence))
6379
6380 (define-public sbcl-series
6381 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6382 (revision "1"))
6383 (package
6384 (name "sbcl-series")
6385 (version (git-version "2.2.11" revision commit))
6386 (source
6387 (origin
6388 (method git-fetch)
6389 (uri (git-reference
6390 (url "git://git.code.sf.net/p/series/series")
6391 (commit commit)))
6392 (file-name (git-file-name name version))
6393 (sha256
6394 (base32
6395 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6396 (build-system asdf-build-system/sbcl)
6397 (arguments
6398 ;; Disable the tests, they are apparently buggy and I didn't find
6399 ;; a simple way to make them run and pass.
6400 '(#:tests? #f))
6401 (synopsis "Series data structure for Common Lisp")
6402 (description
6403 "This Common Lisp library provides a series data structure much like
6404 a sequence, with similar kinds of operations. The difference is that in many
6405 situations, operations on series may be composed functionally and yet execute
6406 iteratively, without the need to construct intermediate series values
6407 explicitly. In this manner, series provide both the clarity of a functional
6408 programming style and the efficiency of an iterative programming style.")
6409 (home-page "http://series.sourceforge.net/")
6410 (license license:expat))))
6411
6412 (define-public cl-series
6413 (sbcl-package->cl-source-package sbcl-series))
6414
6415 (define-public ecl-series
6416 (sbcl-package->ecl-package sbcl-series))
6417
6418 (define-public sbcl-periods
6419 (let ((commit "60383dcef88a1ac11f82804ae7a33c361dcd2949")
6420 (revision "2"))
6421 (package
6422 (name "sbcl-periods")
6423 (version (git-version "0.0.2" revision commit))
6424 (source
6425 (origin
6426 (method git-fetch)
6427 (uri (git-reference
6428 (url "https://github.com/jwiegley/periods")
6429 (commit commit)))
6430 (file-name (git-file-name name version))
6431 (sha256
6432 (base32
6433 "1ym2j4an9ig2hl210jg91gpf7xfnp6mlhkw3n9kkdnwiji3ipqlk"))))
6434 (build-system asdf-build-system/sbcl)
6435 (inputs
6436 `(("local-time" ,sbcl-local-time)
6437 ("series" ,sbcl-series)))
6438 (arguments
6439 '(#:asd-systems '("periods"
6440 "periods-series")))
6441 (synopsis "Common Lisp library for manipulating date/time objects")
6442 (description
6443 "Periods is a Common Lisp library providing a set of utilities for
6444 manipulating times, distances between times, and both contiguous and
6445 discontiguous ranges of time.")
6446 (home-page "https://github.com/jwiegley/periods")
6447 (license license:bsd-3))))
6448
6449 (define-public cl-periods
6450 (sbcl-package->cl-source-package sbcl-periods))
6451
6452 (define-public ecl-periods
6453 (sbcl-package->ecl-package sbcl-periods))
6454
6455 (define-public sbcl-metatilities-base
6456 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6457 (revision "1"))
6458 (package
6459 (name "sbcl-metatilities-base")
6460 (version (git-version "0.6.6" revision commit))
6461 (source
6462 (origin
6463 (method git-fetch)
6464 (uri (git-reference
6465 (url "https://github.com/gwkkwg/metatilities-base")
6466 (commit commit)))
6467 (file-name (git-file-name name version))
6468 (sha256
6469 (base32
6470 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6471 (build-system asdf-build-system/sbcl)
6472 (native-inputs
6473 `(("lift" ,sbcl-lift)))
6474 (synopsis "Core of the metatilities Common Lisp library")
6475 (description
6476 "Metatilities-base is the core of the metatilities Common Lisp library
6477 which implements a set of utilities.")
6478 (home-page "https://common-lisp.net/project/metatilities-base/")
6479 (license license:expat))))
6480
6481 (define-public cl-metatilities-base
6482 (sbcl-package->cl-source-package sbcl-metatilities-base))
6483
6484 (define-public ecl-metatilities-base
6485 (sbcl-package->ecl-package sbcl-metatilities-base))
6486
6487 (define-public sbcl-cl-containers
6488 (let ((commit "3d1df53c22403121bffb5d553cf7acb1503850e7")
6489 (revision "3"))
6490 (package
6491 (name "sbcl-cl-containers")
6492 (version (git-version "0.12.1" revision commit))
6493 (source
6494 (origin
6495 (method git-fetch)
6496 (uri (git-reference
6497 (url "https://github.com/gwkkwg/cl-containers")
6498 (commit commit)))
6499 (file-name (git-file-name name version))
6500 (sha256
6501 (base32
6502 "18s6jfq11n8nv9k4biz32pm1s7y9zl054ry1gmdbcf39nisy377y"))))
6503 (build-system asdf-build-system/sbcl)
6504 (native-inputs
6505 `(("lift" ,sbcl-lift)))
6506 (inputs
6507 `(("metatilities-base" ,sbcl-metatilities-base)))
6508 (arguments
6509 '(#:asd-files '("cl-containers.asd")
6510 #:phases
6511 (modify-phases %standard-phases
6512 (add-after 'unpack 'relax-version-checks
6513 (lambda _
6514 (substitute* "cl-containers.asd"
6515 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6516 "\"metatilities-base\""))
6517 (substitute* "cl-containers-test.asd"
6518 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6519 "\"lift\""))
6520 #t)))))
6521 (synopsis "Container library for Common Lisp")
6522 (description
6523 "Common Lisp ships with a set of powerful built in data structures
6524 including the venerable list, full featured arrays, and hash-tables.
6525 CL-containers enhances and builds on these structures by adding containers
6526 that are not available in native Lisp (for example: binary search trees,
6527 red-black trees, sparse arrays and so on), and by providing a standard
6528 interface so that they are simpler to use and so that changing design
6529 decisions becomes significantly easier.")
6530 (home-page "https://common-lisp.net/project/cl-containers/")
6531 (license license:expat))))
6532
6533 (define-public cl-containers
6534 (sbcl-package->cl-source-package sbcl-cl-containers))
6535
6536 (define-public ecl-cl-containers
6537 (sbcl-package->ecl-package sbcl-cl-containers))
6538
6539 (define-public sbcl-xlunit
6540 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6541 (revision "1"))
6542 (package
6543 (name "sbcl-xlunit")
6544 (version (git-version "0.6.3" revision commit))
6545 (source
6546 (origin
6547 (method git-fetch)
6548 (uri (git-reference
6549 (url "http://git.kpe.io/xlunit.git")
6550 (commit commit)))
6551 (file-name (git-file-name name version))
6552 (sha256
6553 (base32
6554 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6555 (build-system asdf-build-system/sbcl)
6556 (arguments
6557 '(#:phases
6558 (modify-phases %standard-phases
6559 (add-after 'unpack 'fix-tests
6560 (lambda _
6561 (substitute* "xlunit.asd"
6562 ((" :force t") ""))
6563 #t)))))
6564 (synopsis "Unit testing package for Common Lisp")
6565 (description
6566 "The XLUnit package is a toolkit for building test suites. It is based
6567 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6568 (home-page "http://quickdocs.org/xlunit/")
6569 (license license:bsd-3))))
6570
6571 (define-public cl-xlunit
6572 (sbcl-package->cl-source-package sbcl-xlunit))
6573
6574 (define-public ecl-xlunit
6575 (sbcl-package->ecl-package sbcl-xlunit))
6576
6577 (define-public sbcl-cambl
6578 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6579 (revision "1"))
6580 (package
6581 (name "sbcl-cambl")
6582 (version (git-version "4.0.0" revision commit))
6583 (source
6584 (origin
6585 (method git-fetch)
6586 (uri (git-reference
6587 (url "https://github.com/jwiegley/cambl")
6588 (commit commit)))
6589 (file-name (git-file-name "cambl" version))
6590 (sha256
6591 (base32 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6592 (build-system asdf-build-system/sbcl)
6593 (native-inputs
6594 `(("xlunit" ,sbcl-xlunit)))
6595 (inputs
6596 `(("alexandria" ,sbcl-alexandria)
6597 ("cl-containers" ,sbcl-cl-containers)
6598 ("local-time" ,sbcl-local-time)
6599 ("periods" ,sbcl-periods)))
6600 (arguments
6601 '(#:asd-files '("fprog.asd"
6602 "cambl.asd")))
6603 (synopsis "Commoditized amounts and balances for Common Lisp")
6604 (description
6605 "CAMBL is a Common Lisp library providing a convenient facility for
6606 working with commoditized values. It does not allow compound units (and so is
6607 not suited for scientific operations) but does work rather nicely for the
6608 purpose of financial calculations.")
6609 (home-page "https://github.com/jwiegley/cambl")
6610 (license license:bsd-3))))
6611
6612 (define-public cl-cambl
6613 (sbcl-package->cl-source-package sbcl-cambl))
6614
6615 (define-public ecl-cambl
6616 (sbcl-package->ecl-package sbcl-cambl))
6617
6618 (define-public sbcl-cl-ledger
6619 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6620 (revision "1"))
6621 (package
6622 (name "sbcl-cl-ledger")
6623 (version (git-version "4.0.0" revision commit))
6624 (source
6625 (origin
6626 (method git-fetch)
6627 (uri (git-reference
6628 (url "https://github.com/ledger/cl-ledger")
6629 (commit commit)))
6630 (file-name (git-file-name name version))
6631 (sha256
6632 (base32
6633 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
6634 (build-system asdf-build-system/sbcl)
6635 (inputs
6636 `(("cambl" ,sbcl-cambl)
6637 ("cl-ppcre" ,sbcl-cl-ppcre)
6638 ("local-time" ,sbcl-local-time)
6639 ("periods" ,sbcl-periods)))
6640 (arguments
6641 '(#:phases
6642 (modify-phases %standard-phases
6643 (add-after 'unpack 'fix-system-definition
6644 (lambda _
6645 (substitute* "cl-ledger.asd"
6646 ((" :build-operation program-op") "")
6647 ((" :build-pathname \"cl-ledger\"") "")
6648 ((" :entry-point \"ledger::main\"") ""))
6649 #t)))))
6650 (synopsis "Common Lisp port of the Ledger accounting system")
6651 (description
6652 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
6653 system.")
6654 (home-page "https://github.com/ledger/cl-ledger")
6655 (license license:bsd-3))))
6656
6657 (define-public cl-ledger
6658 (sbcl-package->cl-source-package sbcl-cl-ledger))
6659
6660 (define-public ecl-cl-ledger
6661 (sbcl-package->ecl-package sbcl-cl-ledger))
6662
6663 (define-public sbcl-bst
6664 (let ((commit "8545aed0d504df2829ad139566feeabe22305388")
6665 (revision "0"))
6666 (package
6667 (name "sbcl-bst")
6668 (version (git-version "2.0" revision commit))
6669 (source
6670 (origin
6671 (method git-fetch)
6672 (uri (git-reference
6673 (url "https://github.com/glv2/bst")
6674 (commit commit)))
6675 (file-name (git-file-name name version))
6676 (sha256
6677 (base32 "18ig7rvxcra69437g0i8sxyv7c5dg26jqnx1rc2f9pxmihdprgk8"))))
6678 (build-system asdf-build-system/sbcl)
6679 (native-inputs
6680 `(("alexandria" ,sbcl-alexandria)
6681 ("fiveam" ,sbcl-fiveam)))
6682 (synopsis "Binary search tree for Common Lisp")
6683 (description
6684 "BST is a Common Lisp library for working with binary search trees that
6685 can contain any kind of values.")
6686 (home-page "https://github.com/glv2/bst")
6687 (license license:gpl3))))
6688
6689 (define-public cl-bst
6690 (sbcl-package->cl-source-package sbcl-bst))
6691
6692 (define-public ecl-bst
6693 (sbcl-package->ecl-package sbcl-bst))
6694
6695 (define-public sbcl-cl-octet-streams
6696 (package
6697 (name "sbcl-cl-octet-streams")
6698 (version "1.2")
6699 (source
6700 (origin
6701 (method git-fetch)
6702 (uri (git-reference
6703 (url "https://github.com/glv2/cl-octet-streams")
6704 (commit (string-append "v" version))))
6705 (file-name (git-file-name name version))
6706 (sha256
6707 (base32 "1hffh98bv4w5yrchagzwqrc43d2p473pvw7ka4kyyvhrr52dk2f8"))))
6708 (build-system asdf-build-system/sbcl)
6709 (native-inputs
6710 `(("fiveam" ,sbcl-fiveam)))
6711 (inputs
6712 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
6713 (synopsis "In-memory octet streams for Common Lisp")
6714 (description
6715 "CL-octet-streams is a library implementing in-memory octet
6716 streams for Common Lisp. It was inspired by the trivial-octet-streams and
6717 cl-plumbing libraries.")
6718 (home-page "https://github.com/glv2/cl-octet-streams")
6719 (license license:gpl3+)))
6720
6721 (define-public cl-octet-streams
6722 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
6723
6724 (define-public ecl-cl-octet-streams
6725 (sbcl-package->ecl-package sbcl-cl-octet-streams))
6726
6727 (define-public sbcl-lzlib
6728 (let ((commit "cad10f5becbcfebb44b9d311a257563778803452")
6729 (revision "2"))
6730 (package
6731 (name "sbcl-lzlib")
6732 (version (git-version "1.1" revision commit))
6733 (source
6734 (origin
6735 (method git-fetch)
6736 (uri (git-reference
6737 (url "https://github.com/glv2/cl-lzlib")
6738 (commit commit)))
6739 (file-name (git-file-name name version))
6740 (sha256
6741 (base32 "09lp7li35h4jkls0448fj1sh6pjslr1w7ranbc4szjr8g0c2bdry"))))
6742 (build-system asdf-build-system/sbcl)
6743 (native-inputs
6744 `(("fiveam" ,sbcl-fiveam)))
6745 (inputs
6746 `(("cffi" ,sbcl-cffi)
6747 ("cl-octet-streams" ,sbcl-cl-octet-streams)
6748 ("lparallel" ,sbcl-lparallel)
6749 ("lzlib" ,lzlib)))
6750 (arguments
6751 '(#:phases
6752 (modify-phases %standard-phases
6753 (add-after 'unpack 'fix-paths
6754 (lambda* (#:key inputs #:allow-other-keys)
6755 (substitute* "src/lzlib.lisp"
6756 (("liblz\\.so")
6757 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
6758 #t)))))
6759 (synopsis "Common Lisp library for lzip (de)compression")
6760 (description
6761 "This Common Lisp library provides functions for lzip (LZMA)
6762 compression/decompression using bindings to the lzlib C library.")
6763 (home-page "https://github.com/glv2/cl-lzlib")
6764 (license license:gpl3+))))
6765
6766 (define-public cl-lzlib
6767 (sbcl-package->cl-source-package sbcl-lzlib))
6768
6769 (define-public ecl-lzlib
6770 (sbcl-package->ecl-package sbcl-lzlib))
6771
6772 (define-public sbcl-chanl
6773 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
6774 (revision "1"))
6775 (package
6776 (name "sbcl-chanl")
6777 (version (git-version "0.4.1" revision commit))
6778 (source
6779 (origin
6780 (method git-fetch)
6781 (uri (git-reference
6782 (url "https://github.com/zkat/chanl")
6783 (commit commit)))
6784 (file-name (git-file-name name version))
6785 (sha256
6786 (base32
6787 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
6788 (build-system asdf-build-system/sbcl)
6789 (native-inputs
6790 `(("fiveam" ,sbcl-fiveam)))
6791 (inputs
6792 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
6793 (synopsis "Portable channel-based concurrency for Common Lisp")
6794 (description "Common Lisp library for channel-based concurrency. In
6795 a nutshell, you create various threads sequentially executing tasks you need
6796 done, and use channel objects to communicate and synchronize the state of these
6797 threads.")
6798 (home-page "https://github.com/zkat/chanl")
6799 (license (list license:expat license:bsd-3)))))
6800
6801 (define-public cl-chanl
6802 (sbcl-package->cl-source-package sbcl-chanl))
6803
6804 (define-public ecl-chanl
6805 (sbcl-package->ecl-package sbcl-chanl))
6806
6807 (define-public sbcl-cl-store
6808 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
6809 (revision "1"))
6810 (package
6811 (name "sbcl-cl-store")
6812 (version (git-version "0.8.11" revision commit))
6813 (source
6814 (origin
6815 (method git-fetch)
6816 (uri (git-reference
6817 (url "https://github.com/skypher/cl-store")
6818 (commit commit)))
6819 (file-name (git-file-name name version))
6820 (sha256
6821 (base32
6822 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
6823 (build-system asdf-build-system/sbcl)
6824 (native-inputs
6825 `(("rt" ,sbcl-rt)))
6826 (synopsis "Common Lisp library to serialize data")
6827 (description
6828 "CL-STORE is a portable serialization package which should give you the
6829 ability to store all Common Lisp data types into streams.")
6830 (home-page "https://www.common-lisp.net/project/cl-store/")
6831 (license license:expat))))
6832
6833 (define-public cl-store
6834 (sbcl-package->cl-source-package sbcl-cl-store))
6835
6836 (define-public ecl-cl-store
6837 (sbcl-package->ecl-package sbcl-cl-store))
6838
6839 (define-public sbcl-specialization-store
6840 (let ((commit "8d39a866a6f24986aad3cc52349e9cb2653496f3")
6841 (revision "1"))
6842 (package
6843 (name "sbcl-specialization-store")
6844 (version (git-version "0.0.5" revision commit))
6845 (source
6846 (origin
6847 (method git-fetch)
6848 (uri (git-reference
6849 (url "https://github.com/markcox80/specialization-store")
6850 (commit commit)))
6851 (file-name (git-file-name "specialization-store" version))
6852 (sha256
6853 (base32 "0r0bgb46q4gy72l78s7djkxq8ibb4bb3yh9brsry5lih7br8lhi0"))))
6854 (build-system asdf-build-system/sbcl)
6855 (native-inputs
6856 `(("fiveam" ,sbcl-fiveam)))
6857 (inputs
6858 `(("alexandria" ,sbcl-alexandria)
6859 ("introspect-environment" ,sbcl-introspect-environment)))
6860 (home-page "https://github.com/markcox80/specialization-store")
6861 (synopsis "Different type of generic function for Common Lisp")
6862 (description
6863 "SPECIALIZATION-STORE system provides a new kind of function, called
6864 a store function, whose behavior depends on the types of objects passed to the
6865 function.")
6866 (license license:bsd-2))))
6867
6868 (define-public ecl-specialization-store
6869 (package
6870 (inherit (sbcl-package->ecl-package sbcl-specialization-store))
6871 (arguments
6872 ;; TODO: Find why the tests get stuck forever; disable them for now.
6873 `(#:tests? #f))))
6874
6875 (define-public cl-specialization-store
6876 (sbcl-package->cl-source-package sbcl-specialization-store))
6877
6878 (define-public sbcl-cl-gobject-introspection
6879 (let ((commit "d0136c8d9ade2560123af1fc55bbf70d2e3db539")
6880 (revision "1"))
6881 (package
6882 (name "sbcl-cl-gobject-introspection")
6883 (version (git-version "0.3" revision commit))
6884 (home-page "https://github.com/andy128k/cl-gobject-introspection")
6885 (source
6886 (origin
6887 (method git-fetch)
6888 (uri (git-reference
6889 (url home-page)
6890 (commit commit)))
6891 (file-name (git-file-name name version))
6892 (sha256
6893 (base32
6894 "0dz0r73pq7yhz2iq2jnkq977awx2zws2qfxdcy33329sys1ii32p"))))
6895 (build-system asdf-build-system/sbcl)
6896 (inputs
6897 `(("alexandria" ,sbcl-alexandria)
6898 ("cffi" ,sbcl-cffi)
6899 ("iterate" ,sbcl-iterate)
6900 ("trivial-garbage" ,sbcl-trivial-garbage)
6901 ("glib" ,glib)
6902 ("gobject-introspection" ,gobject-introspection)))
6903 (native-inputs
6904 `(("fiveam" ,sbcl-fiveam)))
6905 (arguments
6906 '(#:phases
6907 (modify-phases %standard-phases
6908 (add-after 'unpack 'fix-paths
6909 (lambda* (#:key inputs #:allow-other-keys)
6910 (substitute* "src/init.lisp"
6911 (("libgobject-2\\.0\\.so")
6912 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
6913 (("libgirepository-1\\.0\\.so")
6914 (string-append (assoc-ref inputs "gobject-introspection")
6915 "/lib/libgirepository-1.0.so")))
6916 #t)))))
6917 (synopsis "Common Lisp bindings to GObject Introspection")
6918 (description
6919 "This library is a bridge between Common Lisp and GObject
6920 Introspection, which enables Common Lisp programs to access the full interface
6921 of C+GObject libraries without the need of writing dedicated bindings.")
6922 (license (list license:bsd-3
6923 ;; Tests are under a different license.
6924 license:llgpl)))))
6925
6926 (define-public cl-gobject-introspection
6927 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
6928
6929 (define-public ecl-cl-gobject-introspection
6930 (sbcl-package->ecl-package sbcl-cl-gobject-introspection))
6931
6932 (define-public sbcl-cl-slug
6933 (let ((commit "ffb229d10f0d3f7f54e706791725225e200bf749")
6934 (revision "1"))
6935 (package
6936 (name "sbcl-cl-slug")
6937 (version (git-version "0.4.1" revision commit))
6938 (source
6939 (origin
6940 (method git-fetch)
6941 (uri (git-reference
6942 (url "https://github.com/EuAndreh/cl-slug")
6943 (commit commit)))
6944 (file-name (git-file-name "cl-slug" version))
6945 (sha256
6946 (base32 "1asdq6xllmsvfw5fky9wblqcx9isac9jrrlkfl7vyxcq1wxrnflx"))))
6947 (build-system asdf-build-system/sbcl)
6948 (arguments
6949 `(#:asd-files '("cl-slug-test.asd" "cl-slug.asd")
6950 #:asd-systems '("cl-slug-test" "cl-slug")))
6951 (native-inputs
6952 `(("prove" ,sbcl-prove)))
6953 (inputs
6954 `(("ppcre" ,sbcl-cl-ppcre)))
6955 (home-page "https://github.com/EuAndreh/cl-slug")
6956 (synopsis "Multi-language slug formater")
6957 (description
6958 "This is a small Common Lisp library to make slugs, mainly for URIs,
6959 from english and beyond.")
6960 (license license:llgpl))))
6961
6962 (define-public ecl-cl-slug
6963 (sbcl-package->ecl-package sbcl-cl-slug))
6964
6965 (define-public cl-slug
6966 (sbcl-package->cl-source-package sbcl-cl-slug))
6967
6968 (define-public sbcl-string-case
6969 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
6970 (revision "0"))
6971 (package
6972 (name "sbcl-string-case")
6973 (version (git-version "0.0.2" revision commit))
6974 (home-page "https://github.com/pkhuong/string-case")
6975 (source
6976 (origin
6977 (method git-fetch)
6978 (uri (git-reference
6979 (url home-page)
6980 (commit commit)))
6981 (file-name (git-file-name name version))
6982 (sha256
6983 (base32
6984 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
6985 (build-system asdf-build-system/sbcl)
6986 (synopsis "Efficient string= case in Common Lisp")
6987 (description
6988 "@code{string-case} is a Common Lisp macro that generates specialised decision
6989 trees to dispatch on string equality.")
6990 (license license:bsd-3))))
6991
6992 (define-public cl-string-case
6993 (sbcl-package->cl-source-package sbcl-string-case))
6994
6995 (define-public ecl-string-case
6996 (sbcl-package->ecl-package sbcl-string-case))
6997
6998 (define-public sbcl-garbage-pools
6999 (let ((commit "9a7cb7f48b04197c0495df3b6d2e8395ad13f790")
7000 (revision "1"))
7001 (package
7002 (name "sbcl-garbage-pools")
7003 (version (git-version "0.1.2" revision commit))
7004 (source
7005 (origin
7006 (method git-fetch)
7007 (uri (git-reference
7008 (url "https://github.com/archimag/garbage-pools")
7009 (commit commit)))
7010 (file-name (git-file-name name version))
7011 (sha256
7012 (base32 "04jqwr6j138him6wc4nrwjzm4lvyj5j31xqab02nkf8h9hmsf5v1"))))
7013 (build-system asdf-build-system/sbcl)
7014 (home-page "https://github.com/archimag/garbage-pools")
7015 (synopsis "Resource management pools for Common Lisp")
7016 (description "GARBAGE-POOLS is Common Lisp re-implementation of the APR
7017 Pools for resource management.")
7018 (license license:expat))))
7019
7020 (define-public ecl-garbage-pools
7021 (sbcl-package->ecl-package sbcl-garbage-pools))
7022
7023 (define-public cl-garbage-pools
7024 (sbcl-package->cl-source-package sbcl-garbage-pools))
7025
7026 (define-public sbcl-global-vars
7027 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7028 (revision "0"))
7029 (package
7030 (name "sbcl-global-vars")
7031 (version (git-version "1.0.0" revision commit))
7032 (home-page "https://github.com/lmj/global-vars")
7033 (source
7034 (origin
7035 (method git-fetch)
7036 (uri (git-reference
7037 (url home-page)
7038 (commit commit)))
7039 (file-name (git-file-name name version))
7040 (sha256
7041 (base32
7042 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7043 (build-system asdf-build-system/sbcl)
7044 (synopsis "Efficient global variables in Common Lisp")
7045 (description
7046 "In Common Lisp, a special variable that is never dynamically bound
7047 typically serves as a stand-in for a global variable. The @code{global-vars}
7048 library provides true global variables that are implemented by some compilers.
7049 An attempt to rebind a global variable properly results in a compiler error.
7050 That is, a global variable cannot be dynamically bound.
7051
7052 Global variables therefore allow us to communicate an intended usage that
7053 differs from special variables. Global variables are also more efficient than
7054 special variables, especially in the presence of threads.")
7055 (license license:expat))))
7056
7057 (define-public cl-global-vars
7058 (sbcl-package->cl-source-package sbcl-global-vars))
7059
7060 (define-public ecl-global-vars
7061 (sbcl-package->ecl-package sbcl-global-vars))
7062
7063 (define-public sbcl-trivial-file-size
7064 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7065 (revision "0"))
7066 (package
7067 (name "sbcl-trivial-file-size")
7068 (version (git-version "0.0.0" revision commit))
7069 (home-page "https://github.com/ruricolist/trivial-file-size")
7070 (source
7071 (origin
7072 (method git-fetch)
7073 (uri (git-reference
7074 (url home-page)
7075 (commit commit)))
7076 (file-name (git-file-name name version))
7077 (sha256
7078 (base32
7079 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7080 (build-system asdf-build-system/sbcl)
7081 (native-inputs
7082 `(("fiveam" ,sbcl-fiveam)))
7083 (synopsis "Size of a file in bytes in Common Lisp")
7084 (description
7085 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7086 is to open the file with an element type of (unsigned-byte 8) and then
7087 calculate the length of the stream. This is less than ideal. In most cases
7088 it is better to get the size of the file from its metadata, using a system
7089 call.
7090
7091 This library exports a single function, file-size-in-octets. It returns the
7092 size of a file in bytes, using system calls when possible.")
7093 (license license:expat))))
7094
7095 (define-public cl-trivial-file-size
7096 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7097
7098 (define-public ecl-trivial-file-size
7099 (sbcl-package->ecl-package sbcl-trivial-file-size))
7100
7101 (define-public sbcl-trivial-macroexpand-all
7102 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7103 (revision "0"))
7104 (package
7105 (name "sbcl-trivial-macroexpand-all")
7106 (version (git-version "0.0.0" revision commit))
7107 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7108 (source
7109 (origin
7110 (method git-fetch)
7111 (uri (git-reference
7112 (url home-page)
7113 (commit commit)))
7114 (file-name (git-file-name name version))
7115 (sha256
7116 (base32
7117 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7118 (build-system asdf-build-system/sbcl)
7119 (native-inputs
7120 `(("fiveam" ,sbcl-fiveam)))
7121 (synopsis "Portable macroexpand-all for Common Lisp")
7122 (description
7123 "This library provides a macroexpand-all function that calls the
7124 implementation specific equivalent.")
7125 (license license:unlicense))))
7126
7127 (define-public cl-trivial-macroexpand-all
7128 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7129
7130 (define-public ecl-trivial-macroexpand-all
7131 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7132
7133 (define-public sbcl-serapeum
7134 (let ((commit "263f415a350736b44e3878524ff3997e656fca32")
7135 (revision "4"))
7136 (package
7137 (name "sbcl-serapeum")
7138 (version (git-version "0.0.0" revision commit))
7139 (home-page "https://github.com/ruricolist/serapeum")
7140 (source
7141 (origin
7142 (method git-fetch)
7143 (uri (git-reference
7144 (url home-page)
7145 (commit commit)))
7146 (file-name (git-file-name name version))
7147 (sha256
7148 (base32
7149 "1669yidvxq41s3g6hb2jk21bcb5s2bnfsacpyd5b0hdxbmc7knq3"))))
7150 (build-system asdf-build-system/sbcl)
7151 (inputs
7152 `(("alexandria" ,sbcl-alexandria)
7153 ("trivia" ,sbcl-trivia)
7154 ("split-sequence" ,sbcl-split-sequence)
7155 ("string-case" ,sbcl-string-case)
7156 ("parse-number" ,sbcl-parse-number)
7157 ("trivial-garbage" ,sbcl-trivial-garbage)
7158 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7159 ("named-readtables" ,sbcl-named-readtables)
7160 ("fare-quasiquote" ,sbcl-fare-quasiquote)
7161 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7162 ("global-vars" ,sbcl-global-vars)
7163 ("trivial-file-size" ,sbcl-trivial-file-size)
7164 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7165 (native-inputs
7166 `(("fiveam" ,sbcl-fiveam)
7167 ("local-time" ,sbcl-local-time)))
7168 (arguments
7169 '(#:phases
7170 (modify-phases %standard-phases
7171 (add-after 'unpack 'disable-failing-tests
7172 (lambda* (#:key inputs #:allow-other-keys)
7173 (substitute* "serapeum.asd"
7174 ;; Guix does not have Quicklisp, and probably never will.
7175 (("\\(:file \"quicklisp\"\\)") ""))
7176 #t)))))
7177 (synopsis "Common Lisp utility library beyond Alexandria")
7178 (description
7179 "Serapeum is a conservative library of Common Lisp utilities. It is a
7180 supplement, not a competitor, to Alexandria.")
7181 (license license:expat))))
7182
7183 (define-public cl-serapeum
7184 (sbcl-package->cl-source-package sbcl-serapeum))
7185
7186 (define-public ecl-serapeum
7187 (sbcl-package->ecl-package sbcl-serapeum))
7188
7189 (define-public sbcl-arrows
7190 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7191 (revision "0"))
7192 (package
7193 (name "sbcl-arrows")
7194 (version (git-version "0.2.0" revision commit))
7195 (source
7196 (origin
7197 (method git-fetch)
7198 (uri (git-reference
7199 (url "https://gitlab.com/Harleqin/arrows.git")
7200 (commit commit)))
7201 (file-name (git-file-name name version))
7202 (sha256
7203 (base32
7204 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7205 (build-system asdf-build-system/sbcl)
7206 (native-inputs
7207 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7208 (synopsis "Clojure-like arrow macros for Common Lisp")
7209 (description
7210 "This library implements the @code{->} and @code{->>} macros from
7211 Clojure, as well as several expansions on the idea.")
7212 (home-page "https://gitlab.com/Harleqin/arrows")
7213 (license license:public-domain))))
7214
7215 (define-public cl-arrows
7216 (sbcl-package->cl-source-package sbcl-arrows))
7217
7218 (define-public ecl-arrows
7219 (sbcl-package->ecl-package sbcl-arrows))
7220
7221 (define-public sbcl-simple-parallel-tasks
7222 (let ((commit "ce7b60f788d8f68dfb69b24aac54c0e3b63379a6")
7223 (revision "1"))
7224 (package
7225 (name "sbcl-simple-parallel-tasks")
7226 (version (git-version "1.0" revision commit))
7227 (source
7228 (origin
7229 (method git-fetch)
7230 (uri (git-reference
7231 (url "https://github.com/glv2/simple-parallel-tasks")
7232 (commit commit)))
7233 (file-name (git-file-name name version))
7234 (sha256
7235 (base32 "0gvbpyff4siifp3cp86cpr9ksmakn66fx21f3h0hpn647zl07nj7"))))
7236 (build-system asdf-build-system/sbcl)
7237 (native-inputs
7238 `(("fiveam" ,sbcl-fiveam)))
7239 (inputs
7240 `(("chanl" ,sbcl-chanl)))
7241 (synopsis "Common Lisp library to evaluate some forms in parallel")
7242 (description "This is a simple Common Lisp library to evaluate some
7243 forms in parallel.")
7244 (home-page "https://github.com/glv2/simple-parallel-tasks")
7245 (license license:gpl3))))
7246
7247 (define-public cl-simple-parallel-tasks
7248 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7249
7250 (define-public ecl-simple-parallel-tasks
7251 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7252
7253 (define-public sbcl-cl-heap
7254 (package
7255 (name "sbcl-cl-heap")
7256 (version "0.1.6")
7257 (source
7258 (origin
7259 (method url-fetch)
7260 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7261 "cl-heap_" version ".tar.gz"))
7262 (sha256
7263 (base32
7264 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7265 (build-system asdf-build-system/sbcl)
7266 (native-inputs
7267 `(("xlunit" ,sbcl-xlunit)))
7268 (arguments
7269 `(#:test-asd-file "cl-heap-tests.asd"))
7270 (synopsis "Heap and priority queue data structures for Common Lisp")
7271 (description
7272 "CL-HEAP provides various implementations of heap data structures (a
7273 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7274 (home-page "https://common-lisp.net/project/cl-heap/")
7275 (license license:gpl3+)))
7276
7277 (define-public cl-heap
7278 (sbcl-package->cl-source-package sbcl-cl-heap))
7279
7280 (define-public ecl-cl-heap
7281 (sbcl-package->ecl-package sbcl-cl-heap))
7282
7283 (define-public sbcl-curry-compose-reader-macros
7284 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7285 (revision "0"))
7286 (package
7287 (name "sbcl-curry-compose-reader-macros")
7288 (version (git-version "1.0.0" revision commit))
7289 (source
7290 (origin
7291 (method git-fetch)
7292 (uri
7293 (git-reference
7294 (url "https://github.com/eschulte/curry-compose-reader-macros")
7295 (commit commit)))
7296 (file-name (git-file-name name version))
7297 (sha256
7298 (base32
7299 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7300 (build-system asdf-build-system/sbcl)
7301 (inputs
7302 `(("alexandria" ,sbcl-alexandria)
7303 ("named-readtables" ,sbcl-named-readtables)))
7304 (synopsis "Reader macros for partial application and composition")
7305 (description
7306 "This Common Lisp library provides reader macros for concise expression
7307 of function partial application and composition.")
7308 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7309 (license license:public-domain))))
7310
7311 (define-public cl-curry-compose-reader-macros
7312 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7313
7314 (define-public ecl-curry-compose-reader-macros
7315 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7316
7317 (define-public sbcl-yason
7318 (package
7319 (name "sbcl-yason")
7320 (version "0.7.7")
7321 (source
7322 (origin
7323 (method git-fetch)
7324 (uri (git-reference
7325 (url "https://github.com/phmarek/yason")
7326 (commit (string-append "v" version))))
7327 (file-name (git-file-name name version))
7328 (sha256
7329 (base32
7330 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7331 (build-system asdf-build-system/sbcl)
7332 (inputs
7333 `(("alexandria" ,sbcl-alexandria)
7334 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7335 (synopsis "Common Lisp JSON parser/encoder")
7336 (description
7337 "YASON is a Common Lisp library for encoding and decoding data in the
7338 JSON interchange format.")
7339 (home-page "https://github.com/phmarek/yason")
7340 (license license:bsd-3)))
7341
7342 (define-public cl-yason
7343 (sbcl-package->cl-source-package sbcl-yason))
7344
7345 (define-public ecl-yason
7346 (sbcl-package->ecl-package sbcl-yason))
7347
7348 (define-public sbcl-stefil
7349 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7350 (revision "0"))
7351 (package
7352 (name "sbcl-stefil")
7353 (version (git-version "0.1" revision commit))
7354 (source
7355 (origin
7356 (method git-fetch)
7357 (uri (git-reference
7358 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7359 (commit commit)))
7360 (file-name (git-file-name name version))
7361 (sha256
7362 (base32
7363 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7364 (build-system asdf-build-system/sbcl)
7365 (inputs
7366 `(("alexandria" ,sbcl-alexandria)
7367 ("iterate" ,sbcl-iterate)
7368 ("metabang-bind" ,sbcl-metabang-bind)
7369 ("swank" ,sbcl-slime-swank)))
7370 (arguments
7371 '(#:phases
7372 (modify-phases %standard-phases
7373 (add-after 'unpack 'drop-unnecessary-dependency
7374 (lambda _
7375 (substitute* "package.lisp"
7376 ((":stefil-system") ""))
7377 #t)))))
7378 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7379 (synopsis "Simple test framework")
7380 (description
7381 "Stefil is a simple test framework for Common Lisp, with a focus on
7382 interactive development.")
7383 (license license:public-domain))))
7384
7385 (define-public cl-stefil
7386 (sbcl-package->cl-source-package sbcl-stefil))
7387
7388 (define-public ecl-stefil
7389 (sbcl-package->ecl-package sbcl-stefil))
7390
7391 (define-public sbcl-graph
7392 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7393 (revision "0"))
7394 (package
7395 (name "sbcl-graph")
7396 (version (git-version "0.0.0" revision commit))
7397 (source
7398 (origin
7399 (method git-fetch)
7400 (uri
7401 (git-reference
7402 (url "https://github.com/eschulte/graph")
7403 (commit commit)))
7404 (file-name (git-file-name name version))
7405 (sha256
7406 (base32
7407 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))))
7408 (build-system asdf-build-system/sbcl)
7409 (native-inputs
7410 `(("stefil" ,sbcl-stefil)))
7411 (inputs
7412 `(("alexandria" ,sbcl-alexandria)
7413 ("cl-heap" ,sbcl-cl-heap)
7414 ("cl-ppcre" ,sbcl-cl-ppcre)
7415 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7416 ("metabang-bind" ,sbcl-metabang-bind)
7417 ("named-readtables" ,sbcl-named-readtables)
7418 ("yason" ,sbcl-yason)))
7419 (arguments
7420 '(#:asd-systems '("graph"
7421 "graph/dot"
7422 "graph/json")))
7423 (synopsis "Graph data structure and algorithms for Common Lisp")
7424 (description
7425 "The GRAPH Common Lisp library provides a data structures to represent
7426 graphs, as well as some graph manipulation and analysis algorithms (shortest
7427 path, maximum flow, minimum spanning tree, etc.).")
7428 (home-page "https://eschulte.github.io/graph/")
7429 (license license:gpl3+))))
7430
7431 (define-public cl-graph
7432 (sbcl-package->cl-source-package sbcl-graph))
7433
7434 (define-public ecl-graph
7435 (sbcl-package->ecl-package sbcl-graph))
7436
7437 (define-public sbcl-trivial-indent
7438 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7439 (revision "0"))
7440 (package
7441 (name "sbcl-trivial-indent")
7442 (version (git-version "1.0.0" revision commit))
7443 (source
7444 (origin
7445 (method git-fetch)
7446 (uri
7447 (git-reference
7448 (url "https://github.com/Shinmera/trivial-indent")
7449 (commit commit)))
7450 (file-name (git-file-name name version))
7451 (sha256
7452 (base32
7453 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7454 (build-system asdf-build-system/sbcl)
7455 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7456 (description
7457 "This library allows you to define custom indentation hints for your
7458 macros if the one recognised by SLIME automatically produces unwanted
7459 results.")
7460 (home-page "https://shinmera.github.io/trivial-indent/")
7461 (license license:zlib))))
7462
7463 (define-public cl-trivial-indent
7464 (sbcl-package->cl-source-package sbcl-trivial-indent))
7465
7466 (define-public ecl-trivial-indent
7467 (sbcl-package->ecl-package sbcl-trivial-indent))
7468
7469 (define-public sbcl-documentation-utils
7470 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7471 (revision "0"))
7472 (package
7473 (name "sbcl-documentation-utils")
7474 (version (git-version "1.2.0" revision commit))
7475 (source
7476 (origin
7477 (method git-fetch)
7478 (uri
7479 (git-reference
7480 (url "https://github.com/Shinmera/documentation-utils")
7481 (commit commit)))
7482 (file-name (git-file-name name version))
7483 (sha256
7484 (base32
7485 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7486 (build-system asdf-build-system/sbcl)
7487 (inputs
7488 `(("trivial-indent" ,sbcl-trivial-indent)))
7489 (synopsis "Few simple tools to document Common Lisp libraries")
7490 (description
7491 "This is a small library to help you with managing the Common Lisp
7492 docstrings for your library.")
7493 (home-page "https://shinmera.github.io/documentation-utils/")
7494 (license license:zlib))))
7495
7496 (define-public cl-documentation-utils
7497 (sbcl-package->cl-source-package sbcl-documentation-utils))
7498
7499 (define-public ecl-documentation-utils
7500 (sbcl-package->ecl-package sbcl-documentation-utils))
7501
7502 (define-public sbcl-documentation-utils-extensions
7503 (let ((commit "f67f8a05d583174662a594b79356b201c1d9d750"))
7504 (package
7505 (name "sbcl-documentation-utils-extensions")
7506 (version (git-version "0.0.0" "1" commit))
7507 (source
7508 (origin
7509 (method git-fetch)
7510 (uri
7511 (git-reference
7512 (url "https://github.com/sirherrbatka/documentation-utils-extensions/")
7513 (commit commit)))
7514 (file-name (git-file-name name version))
7515 (sha256
7516 (base32
7517 "0pn45c9rbxlnhn5nvhqz6kyv0nlirwxpg4j27niwdq80yxzsn51f"))))
7518 (build-system asdf-build-system/sbcl)
7519 (inputs
7520 `(("documentation-utils" ,sbcl-documentation-utils)))
7521 (home-page "https://github.com/sirherrbatka/documentation-utils-extensions")
7522 (synopsis "Set of extensions for documentation-utils")
7523 (description
7524 "Use @code{rich-formatter} to format documentation with sections @code{:syntax},
7525 @code{:arguments}, @code{:examples}, @code{:description}, @code{:returns},
7526 @code{:side-effects}, @code{:thread-safety}, @code{:affected-by},
7527 @code{:see-also} and @code{:notes}. Gather unformatted input by using
7528 @code{rich-aggregating-formatter} and @code{*DOCUMENTATION*} variable. Find
7529 gathered documentation with find-documentation function. Execute code stored
7530 in documentation with @code{execute-documentation}. See the examples in the
7531 @code{src/documentation.lisp} file. See the @code{documentation-utils} system
7532 for more information.")
7533 (license license:expat))))
7534
7535 (define-public cl-documentation-utils-extensions
7536 (sbcl-package->cl-source-package sbcl-documentation-utils-extensions))
7537
7538 (define-public ecl-documentation-utils-extensions
7539 (sbcl-package->ecl-package sbcl-documentation-utils-extensions))
7540
7541 (define-public sbcl-form-fiddle
7542 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7543 (revision "0"))
7544 (package
7545 (name "sbcl-form-fiddle")
7546 (version (git-version "1.1.0" revision commit))
7547 (source
7548 (origin
7549 (method git-fetch)
7550 (uri
7551 (git-reference
7552 (url "https://github.com/Shinmera/form-fiddle")
7553 (commit commit)))
7554 (file-name (git-file-name name version))
7555 (sha256
7556 (base32
7557 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7558 (build-system asdf-build-system/sbcl)
7559 (inputs
7560 `(("documentation-utils" ,sbcl-documentation-utils)))
7561 (synopsis "Utilities to destructure Common Lisp lambda forms")
7562 (description
7563 "Often times we need to destructure a form definition in a Common Lisp
7564 macro. This library provides a set of simple utilities to help with that.")
7565 (home-page "https://shinmera.github.io/form-fiddle/")
7566 (license license:zlib))))
7567
7568 (define-public cl-form-fiddle
7569 (sbcl-package->cl-source-package sbcl-form-fiddle))
7570
7571 (define-public ecl-form-fiddle
7572 (sbcl-package->ecl-package sbcl-form-fiddle))
7573
7574 (define-public sbcl-parachute
7575 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7576 (revision "0"))
7577 (package
7578 (name "sbcl-parachute")
7579 (version (git-version "1.1.1" revision commit))
7580 (source
7581 (origin
7582 (method git-fetch)
7583 (uri
7584 (git-reference
7585 (url "https://github.com/Shinmera/parachute")
7586 (commit commit)))
7587 (file-name (git-file-name name version))
7588 (sha256
7589 (base32
7590 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7591 (build-system asdf-build-system/sbcl)
7592 (inputs
7593 `(("documentation-utils" ,sbcl-documentation-utils)
7594 ("form-fiddle" ,sbcl-form-fiddle)))
7595 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7596 (description
7597 "Parachute is a simple-to-use and extensible testing framework.
7598 In Parachute, things are organised as a bunch of named tests within a package.
7599 Each test can contain a bunch of test forms that make up its body.")
7600 (home-page "https://shinmera.github.io/parachute/")
7601 (license license:zlib))))
7602
7603 (define-public cl-parachute
7604 (sbcl-package->cl-source-package sbcl-parachute))
7605
7606 (define-public ecl-parachute
7607 (sbcl-package->ecl-package sbcl-parachute))
7608
7609 (define-public sbcl-array-utils
7610 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7611 (revision "0"))
7612 (package
7613 (name "sbcl-array-utils")
7614 (version (git-version "1.1.1" revision commit))
7615 (source
7616 (origin
7617 (method git-fetch)
7618 (uri
7619 (git-reference
7620 (url "https://github.com/Shinmera/array-utils")
7621 (commit commit)))
7622 (file-name (git-file-name name version))
7623 (sha256
7624 (base32
7625 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
7626 (build-system asdf-build-system/sbcl)
7627 (native-inputs
7628 `(("parachute" ,sbcl-parachute)))
7629 (inputs
7630 `(("documentation-utils" ,sbcl-documentation-utils)))
7631 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
7632 (description
7633 "A miniature toolkit that contains some useful shifting/popping/pushing
7634 functions for arrays and vectors. Originally from Plump.")
7635 (home-page "https://shinmera.github.io/array-utils/")
7636 (license license:zlib))))
7637
7638 (define-public cl-array-utils
7639 (sbcl-package->cl-source-package sbcl-array-utils))
7640
7641 (define-public ecl-array-utils
7642 (sbcl-package->ecl-package sbcl-array-utils))
7643
7644 (define-public sbcl-plump
7645 (let ((commit "34f890fe46efdebe7bb70d218f1937e98f632bf9")
7646 (revision "1"))
7647 (package
7648 (name "sbcl-plump")
7649 (version (git-version "2.0.0" revision commit))
7650 (source
7651 (origin
7652 (method git-fetch)
7653 (uri
7654 (git-reference
7655 (url "https://github.com/Shinmera/plump")
7656 (commit commit)))
7657 (file-name (git-file-name name version))
7658 (sha256
7659 (base32
7660 "0a0x8wn6vv1ylxcwck12k18gy0a366kdm6ddxxk7yynl4mwnqgkh"))))
7661 (build-system asdf-build-system/sbcl)
7662 (inputs
7663 `(("array-utils" ,sbcl-array-utils)
7664 ("documentation-utils" ,sbcl-documentation-utils)))
7665 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
7666 (description
7667 "Plump is a parser for HTML/XML-like documents, focusing on being
7668 lenient towards invalid markup. It can handle things like invalid attributes,
7669 bad closing tag order, unencoded entities, inexistent tag types, self-closing
7670 tags and so on. It parses documents to a class representation and offers a
7671 small set of DOM functions to manipulate it. It can be extended to parse to
7672 your own classes.")
7673 (home-page "https://shinmera.github.io/plump/")
7674 (license license:zlib))))
7675
7676 (define-public cl-plump
7677 (sbcl-package->cl-source-package sbcl-plump))
7678
7679 (define-public ecl-plump
7680 (sbcl-package->ecl-package sbcl-plump))
7681
7682 ;;; Split the antik package in two to work around the circular dependency
7683 ;;; between antik/antik and antik/gsll.
7684 (define-public sbcl-antik-base
7685 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
7686 (revision "1"))
7687 (package
7688 (name "sbcl-antik-base")
7689 (version (git-version "0.0.0" revision commit))
7690 (source
7691 (origin
7692 (method git-fetch)
7693 (uri (git-reference
7694 (url "https://gitlab.common-lisp.net/antik/antik.git")
7695 (commit commit)))
7696 (file-name (git-file-name name version))
7697 (sha256
7698 (base32
7699 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
7700 (build-system asdf-build-system/sbcl)
7701 (inputs
7702 `(("alexandria" ,sbcl-alexandria)
7703 ("cffi" ,sbcl-cffi)
7704 ("cl-ppcre" ,sbcl-cl-ppcre)
7705 ("drakma" ,sbcl-drakma)
7706 ("fare-utils" ,sbcl-fare-utils)
7707 ("iterate" ,sbcl-iterate)
7708 ("metabang-bind" ,sbcl-metabang-bind)
7709 ("named-readtables" ,sbcl-named-readtables)
7710 ("split-sequence" ,sbcl-split-sequence)
7711 ("static-vectors" ,sbcl-static-vectors)
7712 ("trivial-garbage" ,sbcl-trivial-garbage)
7713 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
7714 (native-inputs
7715 `(("lisp-unit" ,sbcl-lisp-unit)))
7716 (arguments
7717 '(#:asd-systems '("antik-base"
7718 "foreign-array")
7719 #:phases
7720 (modify-phases %standard-phases
7721 (add-after 'unpack 'fix-build
7722 (lambda _
7723 (for-each delete-file
7724 '("antik.asd"
7725 "physical-dimension.asd"
7726 "science-data.asd"))
7727 #t)))))
7728 (synopsis "Scientific and engineering computation in Common Lisp")
7729 (description
7730 "Antik provides a foundation for scientific and engineering
7731 computation in Common Lisp. It is designed not only to facilitate
7732 numerical computations, but to permit the use of numerical computation
7733 libraries and the interchange of data and procedures, whether
7734 foreign (non-Lisp) or Lisp libraries. It is named after the
7735 Antikythera mechanism, one of the oldest examples of a scientific
7736 computer known.")
7737 (home-page "https://common-lisp.net/project/antik/")
7738 (license license:gpl3))))
7739
7740 (define-public cl-antik-base
7741 (sbcl-package->cl-source-package sbcl-antik-base))
7742
7743 (define-public ecl-antik-base
7744 (let ((pkg (sbcl-package->ecl-package sbcl-antik-base)))
7745 (package
7746 (inherit pkg)
7747 (arguments
7748 (substitute-keyword-arguments (package-arguments pkg)
7749 ((#:phases phases)
7750 `(modify-phases ,phases
7751 (add-after 'unpack 'fix-readtable
7752 (lambda _
7753 (substitute* "input-output/readtable.lisp"
7754 (("#-ccl")
7755 "#-(or ccl ecl)"))
7756 #t)))))))))
7757
7758 (define-public sbcl-gsll
7759 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
7760 (revision "1"))
7761 (package
7762 (name "sbcl-gsll")
7763 (version (git-version "0.0.0" revision commit))
7764 (source
7765 (origin
7766 (method git-fetch)
7767 (uri (git-reference
7768 (url "https://gitlab.common-lisp.net/antik/gsll.git")
7769 (commit commit)))
7770 (file-name (git-file-name name version))
7771 (sha256
7772 (base32
7773 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
7774 (build-system asdf-build-system/sbcl)
7775 (native-inputs
7776 `(("lisp-unit" ,sbcl-lisp-unit)))
7777 (inputs
7778 `(("alexandria" ,sbcl-alexandria)
7779 ("antik-base" ,sbcl-antik-base)
7780 ("cffi" ,sbcl-cffi)
7781 ("gsl" ,gsl)
7782 ("metabang-bind" ,sbcl-metabang-bind)
7783 ("trivial-features" ,sbcl-trivial-features)
7784 ("trivial-garbage" ,sbcl-trivial-garbage)))
7785 (arguments
7786 `(#:tests? #f
7787 #:phases
7788 (modify-phases %standard-phases
7789 (add-after 'unpack 'fix-cffi-paths
7790 (lambda* (#:key inputs #:allow-other-keys)
7791 (substitute* "gsll.asd"
7792 ((":depends-on \\(#:foreign-array")
7793 ":depends-on (#:foreign-array #:cffi-libffi"))
7794 (substitute* "init/init.lisp"
7795 (("libgslcblas.so" all)
7796 (string-append
7797 (assoc-ref inputs "gsl") "/lib/" all)))
7798 (substitute* "init/init.lisp"
7799 (("libgsl.so" all)
7800 (string-append
7801 (assoc-ref inputs "gsl") "/lib/" all))))))))
7802 (synopsis "GNU Scientific Library for Lisp")
7803 (description
7804 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
7805 GNU Scientific Library (GSL) from Common Lisp. This library provides a
7806 full range of common mathematical operations useful to scientific and
7807 engineering applications. The design of the GSLL interface is such
7808 that access to most of the GSL library is possible in a Lisp-natural
7809 way; the intent is that the user not be hampered by the restrictions
7810 of the C language in which GSL has been written. GSLL thus provides
7811 interactive use of GSL for getting quick answers, even for someone not
7812 intending to program in Lisp.")
7813 (home-page "https://common-lisp.net/project/gsll/")
7814 (license license:gpl3))))
7815
7816 (define-public cl-gsll
7817 (sbcl-package->cl-source-package sbcl-gsll))
7818
7819 (define-public ecl-gsll
7820 (sbcl-package->ecl-package sbcl-gsll))
7821
7822 (define-public sbcl-antik
7823 (package
7824 (inherit sbcl-antik-base)
7825 (name "sbcl-antik")
7826 (inputs
7827 `(("antik-base" ,sbcl-antik-base)
7828 ("gsll" ,sbcl-gsll)))
7829 (arguments
7830 '(#:asd-systems '("antik"
7831 "science-data")
7832 #:phases
7833 (modify-phases %standard-phases
7834 (add-after 'unpack 'fix-build
7835 (lambda _
7836 (for-each delete-file
7837 '("antik-base.asd"
7838 "foreign-array.asd"))
7839 #t)))))))
7840
7841 (define-public cl-antik
7842 (sbcl-package->cl-source-package sbcl-antik))
7843
7844 (define-public sbcl-cl-interpol
7845 (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4")
7846 (revision "1"))
7847 (package
7848 (name "sbcl-cl-interpol")
7849 (version (git-version "0.2.6" revision commit))
7850 (source
7851 (origin
7852 (method git-fetch)
7853 (uri (git-reference
7854 (url "https://github.com/edicl/cl-interpol")
7855 (commit commit)))
7856 (file-name (git-file-name name version))
7857 (sha256
7858 (base32
7859 "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn"))))
7860 (build-system asdf-build-system/sbcl)
7861 (inputs
7862 `(("cl-unicode" ,sbcl-cl-unicode)
7863 ("named-readtables" ,sbcl-named-readtables)))
7864 (native-inputs
7865 `(("flexi-streams" ,sbcl-flexi-streams)))
7866 (synopsis "String interpolation for Common Lisp")
7867 (description
7868 "CL-INTERPOL is a library for Common Lisp which modifies the
7869 reader so that you can have interpolation within strings similar to
7870 Perl or Unix Shell scripts. It also provides various ways to insert
7871 arbitrary characters into literal strings even if your editor/IDE
7872 doesn't support them.")
7873 (home-page "https://edicl.github.io/cl-interpol/")
7874 (license license:bsd-3))))
7875
7876 (define-public cl-interpol
7877 (sbcl-package->cl-source-package sbcl-cl-interpol))
7878
7879 (define-public ecl-cl-interpol
7880 (sbcl-package->ecl-package sbcl-cl-interpol))
7881
7882 (define-public sbcl-symbol-munger
7883 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
7884 (revision "1"))
7885 (package
7886 (name "sbcl-symbol-munger")
7887 (version (git-version "0.0.1" revision commit))
7888 (source
7889 (origin
7890 (method git-fetch)
7891 (uri (git-reference
7892 (url "https://github.com/AccelerationNet/symbol-munger")
7893 (commit commit)))
7894 (file-name (git-file-name name version))
7895 (sha256
7896 (base32
7897 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
7898 (build-system asdf-build-system/sbcl)
7899 (inputs
7900 `(("alexandria" ,sbcl-alexandria)
7901 ("iterate" ,sbcl-iterate)))
7902 (arguments
7903 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7904 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7905 '(#:tests? #f))
7906 (synopsis
7907 "Capitalization and spacing conversion functions for Common Lisp")
7908 (description
7909 "This is a Common Lisp library to change the capitalization and spacing
7910 of a string or a symbol. It can convert to and from Lisp, english, underscore
7911 and camel-case rules.")
7912 (home-page "https://github.com/AccelerationNet/symbol-munger")
7913 ;; The package declares a BSD license, but all of the license
7914 ;; text is MIT.
7915 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
7916 (license license:expat))))
7917
7918 (define-public cl-symbol-munger
7919 (sbcl-package->cl-source-package sbcl-symbol-munger))
7920
7921 (define-public ecl-symbol-munger
7922 (sbcl-package->ecl-package sbcl-symbol-munger))
7923
7924 (define-public sbcl-lisp-unit2
7925 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7926 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7927 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
7928 (revision "1"))
7929 (package
7930 (name "sbcl-lisp-unit2")
7931 (version (git-version "0.2.0" revision commit))
7932 (source
7933 (origin
7934 (method git-fetch)
7935 (uri (git-reference
7936 (url "https://github.com/AccelerationNet/lisp-unit2")
7937 (commit commit)))
7938 (file-name (git-file-name name version))
7939 (sha256
7940 (base32
7941 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
7942 (build-system asdf-build-system/sbcl)
7943 (inputs
7944 `(("alexandria" ,sbcl-alexandria)
7945 ("cl-interpol" ,sbcl-cl-interpol)
7946 ("iterate" ,sbcl-iterate)
7947 ("symbol-munger" ,sbcl-symbol-munger)))
7948 (synopsis "Test Framework for Common Lisp")
7949 (description
7950 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
7951 style of JUnit for Java. It is a new version of the lisp-unit library written
7952 by Chris Riesbeck.")
7953 (home-page "https://github.com/AccelerationNet/lisp-unit2")
7954 (license license:expat))))
7955
7956 (define-public cl-lisp-unit2
7957 (sbcl-package->cl-source-package sbcl-lisp-unit2))
7958
7959 (define-public ecl-lisp-unit2
7960 (sbcl-package->ecl-package sbcl-lisp-unit2))
7961
7962 (define-public sbcl-cl-csv
7963 (let ((commit "68ecb5d816545677513d7f6308d9e5e8d2265651")
7964 (revision "2"))
7965 (package
7966 (name "sbcl-cl-csv")
7967 (version (git-version "1.0.6" revision commit))
7968 (source
7969 (origin
7970 (method git-fetch)
7971 (uri (git-reference
7972 (url "https://github.com/AccelerationNet/cl-csv")
7973 (commit commit)))
7974 (file-name (git-file-name name version))
7975 (sha256
7976 (base32
7977 "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"))))
7978 (build-system asdf-build-system/sbcl)
7979 (arguments
7980 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
7981 `(#:tests? #f))
7982 (inputs
7983 `(("alexandria" ,sbcl-alexandria)
7984 ("cl-interpol" ,sbcl-cl-interpol)
7985 ("iterate" ,sbcl-iterate)))
7986 (native-inputs
7987 `(("lisp-unit2" ,sbcl-lisp-unit2)))
7988 (synopsis "Common lisp library for comma-separated values")
7989 (description
7990 "This is a Common Lisp library providing functions to read/write CSV
7991 from/to strings, streams and files.")
7992 (home-page "https://github.com/AccelerationNet/cl-csv")
7993 (license license:bsd-3))))
7994
7995 (define-public cl-csv
7996 (sbcl-package->cl-source-package sbcl-cl-csv))
7997
7998 (define-public ecl-cl-csv
7999 (sbcl-package->ecl-package sbcl-cl-csv))
8000
8001 (define-public sbcl-external-program
8002 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8003 (revision "1"))
8004 (package
8005 (name "sbcl-external-program")
8006 (version (git-version "0.0.6" revision commit))
8007 (source
8008 (origin
8009 (method git-fetch)
8010 (uri (git-reference
8011 (url "https://github.com/sellout/external-program")
8012 (commit commit)))
8013 (file-name (git-file-name name version))
8014 (sha256
8015 (base32
8016 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8017 (build-system asdf-build-system/sbcl)
8018 (inputs
8019 `(("trivial-features" ,sbcl-trivial-features)))
8020 (native-inputs
8021 `(("fiveam" ,sbcl-fiveam)))
8022 (synopsis "Common Lisp library for running external programs")
8023 (description
8024 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8025 process. It is an attempt to make the RUN-PROGRAM functionality in
8026 implementations like SBCL and CCL as portable as possible without
8027 sacrificing much in the way of power.")
8028 (home-page "https://github.com/sellout/external-program")
8029 (license license:llgpl))))
8030
8031 (define-public cl-external-program
8032 (sbcl-package->cl-source-package sbcl-external-program))
8033
8034 (define-public ecl-external-program
8035 (sbcl-package->ecl-package sbcl-external-program))
8036
8037 (define-public sbcl-cl-ana
8038 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8039 (revision "1"))
8040 (package
8041 (name "sbcl-cl-ana")
8042 (version (git-version "0.0.0" revision commit))
8043 (source
8044 (origin
8045 (method git-fetch)
8046 (uri (git-reference
8047 (url "https://github.com/ghollisjr/cl-ana")
8048 (commit commit)))
8049 (file-name (git-file-name name version))
8050 (sha256
8051 (base32 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
8052 (build-system asdf-build-system/sbcl)
8053 (native-inputs
8054 `(("cl-fad" ,sbcl-cl-fad)))
8055 (inputs
8056 `(("alexandria" ,sbcl-alexandria)
8057 ("antik" ,sbcl-antik)
8058 ("cffi" ,sbcl-cffi)
8059 ("cl-csv" ,sbcl-cl-csv)
8060 ("closer-mop" ,sbcl-closer-mop)
8061 ("external-program" ,sbcl-external-program)
8062 ("gsl" ,gsl)
8063 ("gsll" ,sbcl-gsll)
8064 ("hdf5" ,hdf5-parallel-openmpi)
8065 ("iterate" ,sbcl-iterate)
8066 ("libffi" ,libffi)
8067 ("split-sequence" ,sbcl-split-sequence)))
8068 (arguments
8069 `(#:phases
8070 (modify-phases %standard-phases
8071 (add-after 'unpack 'fix-paths
8072 (lambda* (#:key inputs #:allow-other-keys)
8073 (substitute* "hdf-cffi/hdf-cffi.lisp"
8074 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8075 (string-append (assoc-ref inputs "hdf5")
8076 "/lib/libhdf5.so")))
8077 (substitute* "gsl-cffi/gsl-cffi.lisp"
8078 (("define-foreign-library gsl-cffi" all)
8079 (string-append all " (:unix "
8080 (assoc-ref inputs "gsl")
8081 "/lib/libgsl.so)")))
8082 #t)))))
8083 (synopsis "Common Lisp data analysis library")
8084 (description
8085 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8086 binned data analysis along with nonlinear least squares fitting and
8087 visualization.")
8088 (home-page "https://github.com/ghollisjr/cl-ana")
8089 (license license:gpl3))))
8090
8091 (define-public cl-ana
8092 (sbcl-package->cl-source-package sbcl-cl-ana))
8093
8094 (define-public sbcl-archive
8095 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
8096 (revision "1"))
8097 (package
8098 (name "sbcl-archive")
8099 (version (git-version "0.9" revision commit))
8100 (source (origin
8101 (method git-fetch)
8102 (uri (git-reference
8103 (url "https://github.com/sharplispers/archive")
8104 (commit commit)))
8105 (file-name (git-file-name name version))
8106 (sha256
8107 (base32
8108 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
8109 (build-system asdf-build-system/sbcl)
8110 (inputs
8111 `(("cl-fad" ,sbcl-cl-fad)
8112 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
8113 (synopsis "Common Lisp library for tar and cpio archives")
8114 (description
8115 "This is a Common Lisp library to read and write disk-based file
8116 archives such as those generated by the tar and cpio programs on Unix.")
8117 (home-page "https://github.com/sharplispers/archive")
8118 (license license:bsd-3))))
8119
8120 (define-public cl-archive
8121 (sbcl-package->cl-source-package sbcl-archive))
8122
8123 (define-public ecl-archive
8124 (sbcl-package->ecl-package sbcl-archive))
8125
8126 (define-public sbcl-misc-extensions
8127 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
8128 (revision "1"))
8129 (package
8130 (name "sbcl-misc-extensions")
8131 (version (git-version "3.3" revision commit))
8132 (source
8133 (origin
8134 (method git-fetch)
8135 (uri (git-reference
8136 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
8137 (commit commit)))
8138 (file-name (git-file-name name version))
8139 (sha256
8140 (base32
8141 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
8142 (build-system asdf-build-system/sbcl)
8143 (synopsis "Collection of small macros and extensions for Common Lisp")
8144 (description
8145 "This project is intended as a catchall for small, general-purpose
8146 extensions to Common Lisp. It contains:
8147
8148 @itemize
8149 @item @code{new-let}, a macro that combines and generalizes @code{let},
8150 @code{let*} and @code{multiple-value-bind},
8151 @item @code{gmap}, an iteration macro that generalizes @code{map}.
8152 @end itemize\n")
8153 (home-page "https://common-lisp.net/project/misc-extensions/")
8154 (license license:public-domain))))
8155
8156 (define-public cl-misc-extensions
8157 (sbcl-package->cl-source-package sbcl-misc-extensions))
8158
8159 (define-public ecl-misc-extensions
8160 (sbcl-package->ecl-package sbcl-misc-extensions))
8161
8162 (define-public sbcl-mt19937
8163 (package
8164 (name "sbcl-mt19937")
8165 (version "1.1")
8166 (source
8167 (origin
8168 (method url-fetch)
8169 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
8170 "mt19937-latest.tar.gz"))
8171 (sha256
8172 (base32
8173 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
8174 (build-system asdf-build-system/sbcl)
8175 (synopsis "Mersenne Twister pseudo-random number generator")
8176 (description
8177 "MT19937 is a portable Mersenne Twister pseudo-random number generator
8178 for Common Lisp.")
8179 (home-page "https://www.cliki.net/mt19937")
8180 (license license:public-domain)))
8181
8182 (define-public cl-mt19937
8183 (sbcl-package->cl-source-package sbcl-mt19937))
8184
8185 (define-public ecl-mt19937
8186 (sbcl-package->ecl-package sbcl-mt19937))
8187
8188 (define-public sbcl-fset
8189 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
8190 (revision "1"))
8191 (package
8192 (name "sbcl-fset")
8193 (version (git-version "1.3.2" revision commit))
8194 (source
8195 (origin
8196 (method git-fetch)
8197 (uri (git-reference
8198 (url "https://github.com/slburson/fset")
8199 (commit commit)))
8200 (file-name (git-file-name name version))
8201 (sha256
8202 (base32
8203 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
8204 (snippet '(begin
8205 ;; Remove obsolete copy of system definition.
8206 (delete-file "Code/fset.asd")
8207 #t))))
8208 (build-system asdf-build-system/sbcl)
8209 (inputs
8210 `(("misc-extensions" ,sbcl-misc-extensions)
8211 ("mt19937" ,sbcl-mt19937)
8212 ("named-readtables" ,sbcl-named-readtables)))
8213 (synopsis "Functional set-theoretic collections library")
8214 (description
8215 "FSet is a functional set-theoretic collections library for Common Lisp.
8216 Functional means that all update operations return a new collection rather than
8217 modifying an existing one in place. Set-theoretic means that collections may
8218 be nested arbitrarily with no additional programmer effort; for instance, sets
8219 may contain sets, maps may be keyed by sets, etc.")
8220 (home-page "https://common-lisp.net/project/fset/Site/index.html")
8221 (license license:llgpl))))
8222
8223 (define-public cl-fset
8224 (sbcl-package->cl-source-package sbcl-fset))
8225
8226 (define-public ecl-fset
8227 (package
8228 (inherit (sbcl-package->ecl-package sbcl-fset))
8229 (arguments
8230 ;; Tests fails on ECL with "The function FSET::MAKE-CHAR is undefined".
8231 '(#:tests? #f))))
8232
8233 (define-public sbcl-cl-cont
8234 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
8235 (revision "1"))
8236 (package
8237 (name "sbcl-cl-cont")
8238 (version (git-version "0.3.8" revision commit))
8239 (source
8240 (origin
8241 (method git-fetch)
8242 (uri (git-reference
8243 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
8244 (commit commit)))
8245 (file-name (git-file-name name version))
8246 (sha256
8247 (base32
8248 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
8249 (build-system asdf-build-system/sbcl)
8250 (inputs
8251 `(("alexandria" ,sbcl-alexandria)
8252 ("closer-mop" ,sbcl-closer-mop)))
8253 (native-inputs
8254 `(("rt" ,sbcl-rt)))
8255 (synopsis "Delimited continuations for Common Lisp")
8256 (description
8257 "This is a library that implements delimited continuations by
8258 transforming Common Lisp code to continuation passing style.")
8259 (home-page "https://common-lisp.net/project/cl-cont/")
8260 (license license:llgpl))))
8261
8262 (define-public cl-cont
8263 (sbcl-package->cl-source-package sbcl-cl-cont))
8264
8265 (define-public ecl-cl-cont
8266 (sbcl-package->ecl-package sbcl-cl-cont))
8267
8268 (define-public sbcl-cl-coroutine
8269 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
8270 (revision "1"))
8271 (package
8272 (name "sbcl-cl-coroutine")
8273 (version (git-version "0.1" revision commit))
8274 (source
8275 (origin
8276 (method git-fetch)
8277 (uri (git-reference
8278 (url "https://github.com/takagi/cl-coroutine")
8279 (commit commit)))
8280 (file-name (git-file-name name version))
8281 (sha256
8282 (base32
8283 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
8284 (build-system asdf-build-system/sbcl)
8285 (inputs
8286 `(("alexandria" ,sbcl-alexandria)
8287 ("cl-cont" ,sbcl-cl-cont)))
8288 (native-inputs
8289 `(("prove" ,sbcl-prove)))
8290 (arguments
8291 `(;; TODO: Fix the tests. They fail with:
8292 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
8293 #:tests? #f
8294 #:phases
8295 (modify-phases %standard-phases
8296 (add-after 'unpack 'fix-tests
8297 (lambda _
8298 (substitute* "cl-coroutine-test.asd"
8299 (("cl-test-more")
8300 "prove"))
8301 #t)))))
8302 (synopsis "Coroutine library for Common Lisp")
8303 (description
8304 "This is a coroutine library for Common Lisp implemented using the
8305 continuations of the @code{cl-cont} library.")
8306 (home-page "https://github.com/takagi/cl-coroutine")
8307 (license license:llgpl))))
8308
8309 (define-public cl-coroutine
8310 (sbcl-package->cl-source-package sbcl-cl-coroutine))
8311
8312 (define-public ecl-cl-coroutine
8313 (sbcl-package->ecl-package sbcl-cl-coroutine))
8314
8315 (define-public sbcl-vas-string-metrics
8316 (let ((commit "f2e4500b180316123fbd549bd51c751ee2d6ba0f")
8317 (revision "1"))
8318 (package
8319 (name "sbcl-vas-string-metrics")
8320 (version (git-version "0.0.0" revision commit))
8321 (source
8322 (origin
8323 (method git-fetch)
8324 (uri (git-reference
8325 (url "https://github.com/vsedach/vas-string-metrics")
8326 (commit commit)))
8327 (file-name (git-file-name "vas-string-metrics" version))
8328 (sha256
8329 (base32 "11fcnd03ybzz37rkg3z0wsb727yqgcd9gn70sccfb34l89ia279k"))))
8330 (build-system asdf-build-system/sbcl)
8331 (arguments
8332 `(#:test-asd-file "test.vas-string-metrics.asd"))
8333 (home-page "https://github.com/vsedach/vas-string-metrics")
8334 (synopsis "String distance algorithms for Common Lisp")
8335 (description
8336 "VAS-STRING-METRICS provides the Jaro, Jaro-Winkler, Soerensen-Dice,
8337 Levenshtein, and normalized Levenshtein string distance/similarity metrics
8338 algorithms.")
8339 (license license:lgpl3+))))
8340
8341 (define-public ecl-vas-string-metrics
8342 (sbcl-package->ecl-package sbcl-vas-string-metrics))
8343
8344 (define-public cl-vas-string-metrics
8345 (sbcl-package->cl-source-package sbcl-vas-string-metrics))
8346
8347 (define-public sbcl-vom
8348 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
8349 (revision "1"))
8350 (package
8351 (name "sbcl-vom")
8352 (version (git-version "0.1.4" revision commit))
8353 (source
8354 (origin
8355 (method git-fetch)
8356 (uri (git-reference
8357 (url "https://github.com/orthecreedence/vom")
8358 (commit commit)))
8359 (file-name (git-file-name name version))
8360 (sha256
8361 (base32
8362 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
8363 (build-system asdf-build-system/sbcl)
8364 (synopsis "Tiny logging utility for Common Lisp")
8365 (description
8366 "Vom is a logging library for Common Lisp. It's goal is to be useful
8367 and small. It does not provide a lot of features as other loggers do, but
8368 has a small codebase that's easy to understand and use.")
8369 (home-page "https://github.com/orthecreedence/vom")
8370 (license license:expat))))
8371
8372 (define-public cl-vom
8373 (sbcl-package->cl-source-package sbcl-vom))
8374
8375 (define-public ecl-vom
8376 (sbcl-package->ecl-package sbcl-vom))
8377
8378 (define-public sbcl-cl-libuv
8379 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
8380 (revision "1"))
8381 (package
8382 (name "sbcl-cl-libuv")
8383 (version (git-version "0.1.6" revision commit))
8384 (source
8385 (origin
8386 (method git-fetch)
8387 (uri (git-reference
8388 (url "https://github.com/orthecreedence/cl-libuv")
8389 (commit commit)))
8390 (file-name (git-file-name name version))
8391 (sha256
8392 (base32
8393 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
8394 (build-system asdf-build-system/sbcl)
8395 (inputs
8396 `(("alexandria" ,sbcl-alexandria)
8397 ("cffi" ,sbcl-cffi)
8398 ("libuv" ,libuv)))
8399 (arguments
8400 `(#:phases
8401 (modify-phases %standard-phases
8402 (add-after 'unpack 'fix-paths
8403 (lambda* (#:key inputs #:allow-other-keys)
8404 (substitute* "lib.lisp"
8405 (("/usr/lib/libuv.so")
8406 (string-append (assoc-ref inputs "libuv")
8407 "/lib/libuv.so")))
8408 #t))
8409 (add-after 'fix-paths 'fix-system-definition
8410 (lambda _
8411 (substitute* "cl-libuv.asd"
8412 (("#:cffi #:alexandria")
8413 "#:cffi #:cffi-grovel #:alexandria"))
8414 #t)))))
8415 (synopsis "Common Lisp bindings to libuv")
8416 (description
8417 "This library provides low-level libuv bindings for Common Lisp.")
8418 (home-page "https://github.com/orthecreedence/cl-libuv")
8419 (license license:expat))))
8420
8421 (define-public cl-libuv
8422 (sbcl-package->cl-source-package sbcl-cl-libuv))
8423
8424 (define-public ecl-cl-libuv
8425 (sbcl-package->ecl-package sbcl-cl-libuv))
8426
8427 (define-public sbcl-cl-async
8428 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
8429 (revision "1"))
8430 (package
8431 (name "sbcl-cl-async")
8432 (version (git-version "0.6.1" revision commit))
8433 (source
8434 (origin
8435 (method git-fetch)
8436 (uri (git-reference
8437 (url "https://github.com/orthecreedence/cl-async")
8438 (commit commit)))
8439 (file-name (git-file-name name version))
8440 (sha256
8441 (base32
8442 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
8443 (build-system asdf-build-system/sbcl)
8444 (inputs
8445 `(("babel" ,sbcl-babel)
8446 ("bordeaux-threads" ,sbcl-bordeaux-threads)
8447 ("cffi" ,sbcl-cffi)
8448 ("cl-libuv" ,sbcl-cl-libuv)
8449 ("cl-ppcre" ,sbcl-cl-ppcre)
8450 ("fast-io" ,sbcl-fast-io)
8451 ("openssl" ,openssl)
8452 ("static-vectors" ,sbcl-static-vectors)
8453 ("trivial-features" ,sbcl-trivial-features)
8454 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
8455 ("vom" ,sbcl-vom)))
8456 (arguments
8457 `(#:asd-systems '("cl-async"
8458 "cl-async-repl"
8459 "cl-async-ssl")
8460 #:phases
8461 (modify-phases %standard-phases
8462 (add-after 'unpack 'fix-paths
8463 (lambda* (#:key inputs #:allow-other-keys)
8464 (substitute* "src/ssl/package.lisp"
8465 (("libcrypto\\.so")
8466 (string-append (assoc-ref inputs "openssl")
8467 "/lib/libcrypto.so"))
8468 (("libssl\\.so")
8469 (string-append (assoc-ref inputs "openssl")
8470 "/lib/libssl.so")))
8471 #t)))))
8472 (synopsis "Asynchronous operations for Common Lisp")
8473 (description
8474 "Cl-async is a library for general purpose, non-blocking programming in
8475 Common Lisp. It uses the libuv library as backend.")
8476 (home-page "https://orthecreedence.github.io/cl-async/")
8477 (license license:expat))))
8478
8479 (define-public cl-async
8480 (sbcl-package->cl-source-package sbcl-cl-async))
8481
8482 (define-public ecl-cl-async
8483 (sbcl-package->ecl-package sbcl-cl-async))
8484
8485 (define-public sbcl-blackbird
8486 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
8487 (revision "1"))
8488 (package
8489 (name "sbcl-blackbird")
8490 (version (git-version "0.5.2" revision commit))
8491 (source
8492 (origin
8493 (method git-fetch)
8494 (uri (git-reference
8495 (url "https://github.com/orthecreedence/blackbird")
8496 (commit commit)))
8497 (file-name (git-file-name name version))
8498 (sha256
8499 (base32
8500 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
8501 (build-system asdf-build-system/sbcl)
8502 (inputs
8503 `(("vom" ,sbcl-vom)))
8504 (native-inputs
8505 `(("cl-async" ,sbcl-cl-async)
8506 ("fiveam" ,sbcl-fiveam)))
8507 (synopsis "Promise implementation for Common Lisp")
8508 (description
8509 "This is a standalone promise implementation for Common Lisp. It is
8510 the successor to the now-deprecated cl-async-future project.")
8511 (home-page "https://orthecreedence.github.io/blackbird/")
8512 (license license:expat))))
8513
8514 (define-public cl-blackbird
8515 (sbcl-package->cl-source-package sbcl-blackbird))
8516
8517 (define-public ecl-blackbird
8518 (sbcl-package->ecl-package sbcl-blackbird))
8519
8520 (define-public sbcl-cl-async-future
8521 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
8522 (revision "1"))
8523 (package
8524 (name "sbcl-cl-async-future")
8525 (version (git-version "0.4.4.1" revision commit))
8526 (source
8527 (origin
8528 (method git-fetch)
8529 (uri (git-reference
8530 (url "https://github.com/orthecreedence/cl-async-future")
8531 (commit commit)))
8532 (file-name (git-file-name name version))
8533 (sha256
8534 (base32
8535 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
8536 (build-system asdf-build-system/sbcl)
8537 (inputs
8538 `(("blackbird" ,sbcl-blackbird)))
8539 (native-inputs
8540 `(("cl-async" ,sbcl-cl-async)
8541 ("eos" ,sbcl-eos)))
8542 (synopsis "Futures implementation for Common Lisp")
8543 (description
8544 "This is futures implementation for Common Lisp. It plugs in nicely
8545 to cl-async.")
8546 (home-page "https://orthecreedence.github.io/cl-async/future")
8547 (license license:expat))))
8548
8549 (define-public cl-async-future
8550 (sbcl-package->cl-source-package sbcl-cl-async-future))
8551
8552 (define-public ecl-cl-async-future
8553 (sbcl-package->ecl-package sbcl-cl-async-future))
8554
8555 (define-public sbcl-green-threads
8556 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
8557 (revision "1"))
8558 (package
8559 (name "sbcl-green-threads")
8560 (version (git-version "0.3" revision commit))
8561 (source
8562 (origin
8563 (method git-fetch)
8564 (uri (git-reference
8565 (url "https://github.com/thezerobit/green-threads")
8566 (commit commit)))
8567 (file-name (git-file-name name version))
8568 (sha256
8569 (base32
8570 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
8571 (build-system asdf-build-system/sbcl)
8572 (inputs
8573 `(("cl-async-future" ,sbcl-cl-async-future)
8574 ("cl-cont" ,sbcl-cl-cont)))
8575 (native-inputs
8576 `(("prove" ,sbcl-prove)))
8577 (arguments
8578 `(;; TODO: Fix the tests. They fail with:
8579 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
8580 #:tests? #f
8581 #:phases
8582 (modify-phases %standard-phases
8583 (add-after 'unpack 'fix-tests
8584 (lambda _
8585 (substitute* "green-threads-test.asd"
8586 (("cl-test-more")
8587 "prove"))
8588 #t)))))
8589 (synopsis "Cooperative multitasking library for Common Lisp")
8590 (description
8591 "This library allows for cooperative multitasking with help of cl-cont
8592 for continuations. It tries to mimic the API of bordeaux-threads as much as
8593 possible.")
8594 (home-page "https://github.com/thezerobit/green-threads")
8595 (license license:bsd-3))))
8596
8597 (define-public cl-green-threads
8598 (sbcl-package->cl-source-package sbcl-green-threads))
8599
8600 (define-public ecl-green-threads
8601 (sbcl-package->ecl-package sbcl-green-threads))
8602
8603 (define-public sbcl-cl-base32
8604 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
8605 (revision "1"))
8606 (package
8607 (name "sbcl-cl-base32")
8608 (version (git-version "0.1" revision commit))
8609 (source
8610 (origin
8611 (method git-fetch)
8612 (uri (git-reference
8613 (url "https://github.com/hargettp/cl-base32")
8614 (commit commit)))
8615 (file-name (git-file-name name version))
8616 (sha256
8617 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
8618 (build-system asdf-build-system/sbcl)
8619 (native-inputs
8620 `(("lisp-unit" ,sbcl-lisp-unit)))
8621 (synopsis "Common Lisp library for base32 encoding and decoding")
8622 (description
8623 "This package provides functions for base32 encoding and decoding as
8624 defined in RFC4648.")
8625 (home-page "https://github.com/hargettp/cl-base32")
8626 (license license:expat))))
8627
8628 (define-public cl-base32
8629 (sbcl-package->cl-source-package sbcl-cl-base32))
8630
8631 (define-public ecl-cl-base32
8632 (sbcl-package->ecl-package sbcl-cl-base32))
8633
8634 (define-public sbcl-cl-z85
8635 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
8636 (revision "1"))
8637 (package
8638 (name "sbcl-cl-z85")
8639 (version (git-version "1.0" revision commit))
8640 (source
8641 (origin
8642 (method git-fetch)
8643 (uri (git-reference
8644 (url "https://github.com/glv2/cl-z85")
8645 (commit commit)))
8646 (file-name (git-file-name name version))
8647 (sha256
8648 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
8649 (build-system asdf-build-system/sbcl)
8650 (native-inputs
8651 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
8652 ("fiveam" ,sbcl-fiveam)))
8653 (synopsis "Common Lisp library for Z85 encoding and decoding")
8654 (description
8655 "This package provides functions to encode or decode byte vectors or
8656 byte streams using the Z85 format, which is a base-85 encoding used by
8657 ZeroMQ.")
8658 (home-page "https://github.com/glv2/cl-z85")
8659 (license license:gpl3+))))
8660
8661 (define-public cl-z85
8662 (sbcl-package->cl-source-package sbcl-cl-z85))
8663
8664 (define-public ecl-cl-z85
8665 (sbcl-package->ecl-package sbcl-cl-z85))
8666
8667 (define-public sbcl-ltk
8668 (package
8669 (name "sbcl-ltk")
8670 (version "0.992")
8671 (source
8672 (origin
8673 (method git-fetch)
8674 (uri (git-reference
8675 (url "https://github.com/herth/ltk")
8676 (commit version)))
8677 (file-name (git-file-name name version))
8678 (sha256
8679 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
8680 (build-system asdf-build-system/sbcl)
8681 (inputs
8682 `(("imagemagick" ,imagemagick)
8683 ("tk" ,tk)))
8684 (arguments
8685 `(#:asd-systems '("ltk"
8686 "ltk-mw"
8687 "ltk-remote")
8688 #:tests? #f
8689 #:phases
8690 (modify-phases %standard-phases
8691 (add-after 'unpack 'fix-paths
8692 (lambda* (#:key inputs #:allow-other-keys)
8693 (substitute* "ltk/ltk.lisp"
8694 (("#-freebsd \"wish\"")
8695 (string-append "#-freebsd \""
8696 (assoc-ref inputs "tk")
8697 "/bin/wish\""))
8698 (("do-execute \"convert\"")
8699 (string-append "do-execute \""
8700 (assoc-ref inputs "imagemagick")
8701 "/bin/convert\"")))
8702 #t))
8703 (add-after 'unpack 'fix-build
8704 (lambda _
8705 (substitute* "ltk/ltk-remote.lisp"
8706 (("\\(:export")
8707 "(:shadow #:raise) (:export"))
8708 #t)))))
8709 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
8710 (description
8711 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
8712 in pure Common Lisp and does not require any Tk knowledge for its usage.")
8713 (home-page "http://www.peter-herth.de/ltk/")
8714 (license license:llgpl)))
8715
8716 (define-public cl-ltk
8717 (sbcl-package->cl-source-package sbcl-ltk))
8718
8719 (define-public ecl-ltk
8720 (sbcl-package->ecl-package sbcl-ltk))
8721
8722 (define-public sbcl-cl-lex
8723 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
8724 (revision "1"))
8725 (package
8726 (name "sbcl-cl-lex")
8727 (version (git-version "1.1.3" revision commit))
8728 (source
8729 (origin
8730 (method git-fetch)
8731 (uri (git-reference
8732 (url "https://github.com/djr7C4/cl-lex")
8733 (commit commit)))
8734 (file-name (git-file-name name version))
8735 (sha256
8736 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
8737 (build-system asdf-build-system/sbcl)
8738 (inputs
8739 `(("cl-ppcre" ,sbcl-cl-ppcre)))
8740 (synopsis "Common Lisp macros for generating lexical analyzers")
8741 (description
8742 "This is a Common Lisp library providing a set of macros for generating
8743 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
8744 be used with @code{cl-yacc}.")
8745 (home-page "https://github.com/djr7C4/cl-lex")
8746 (license license:gpl3))))
8747
8748 (define-public cl-lex
8749 (sbcl-package->cl-source-package sbcl-cl-lex))
8750
8751 (define-public ecl-cl-lex
8752 (sbcl-package->ecl-package sbcl-cl-lex))
8753
8754 (define-public sbcl-clunit2
8755 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
8756 (revision "1"))
8757 (package
8758 (name "sbcl-clunit2")
8759 (version (git-version "0.2.4" revision commit))
8760 (source
8761 (origin
8762 (method git-fetch)
8763 (uri (git-reference
8764 (url "https://notabug.org/cage/clunit2.git")
8765 (commit commit)))
8766 (file-name (git-file-name name version))
8767 (sha256
8768 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
8769 (build-system asdf-build-system/sbcl)
8770 (synopsis "Unit testing framework for Common Lisp")
8771 (description
8772 "CLUnit is a Common Lisp unit testing framework. It is designed to be
8773 easy to use so that you can quickly start testing.")
8774 (home-page "https://notabug.org/cage/clunit2")
8775 (license license:expat))))
8776
8777 (define-public cl-clunit2
8778 (sbcl-package->cl-source-package sbcl-clunit2))
8779
8780 (define-public ecl-clunit2
8781 (sbcl-package->ecl-package sbcl-clunit2))
8782
8783 (define-public sbcl-cl-colors2
8784 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
8785 (revision "1"))
8786 (package
8787 (name "sbcl-cl-colors2")
8788 (version (git-version "0.2.1" revision commit))
8789 (source
8790 (origin
8791 (method git-fetch)
8792 (uri (git-reference
8793 (url "https://notabug.org/cage/cl-colors2.git")
8794 (commit commit)))
8795 (file-name (git-file-name name version))
8796 (sha256
8797 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
8798 (build-system asdf-build-system/sbcl)
8799 (native-inputs
8800 `(("clunit2" ,sbcl-clunit2)))
8801 (inputs
8802 `(("alexandria" ,sbcl-alexandria)
8803 ("cl-ppcre" ,sbcl-cl-ppcre)))
8804 (synopsis "Color library for Common Lisp")
8805 (description
8806 "This is a very simple color library for Common Lisp, providing:
8807
8808 @itemize
8809 @item Types for representing colors in HSV and RGB spaces.
8810 @item Simple conversion functions between the above types (and also
8811 hexadecimal representation for RGB).
8812 @item Some predefined colors (currently X11 color names -- of course
8813 the library does not depend on X11).
8814 @end itemize\n")
8815 (home-page "https://notabug.org/cage/cl-colors2")
8816 (license license:boost1.0))))
8817
8818 (define-public cl-colors2
8819 (sbcl-package->cl-source-package sbcl-cl-colors2))
8820
8821 (define-public ecl-cl-colors2
8822 (sbcl-package->ecl-package sbcl-cl-colors2))
8823
8824 (define-public sbcl-cl-jpeg
8825 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
8826 (revision "1"))
8827 (package
8828 (name "sbcl-cl-jpeg")
8829 (version (git-version "2.8" revision commit))
8830 (source
8831 (origin
8832 (method git-fetch)
8833 (uri (git-reference
8834 (url "https://github.com/sharplispers/cl-jpeg")
8835 (commit commit)))
8836 (file-name (git-file-name name version))
8837 (sha256
8838 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
8839 (build-system asdf-build-system/sbcl)
8840 (synopsis "JPEG image library for Common Lisp")
8841 (description
8842 "This is a baseline JPEG codec written in Common Lisp. It can be used
8843 for reading and writing JPEG image files.")
8844 (home-page "https://github.com/sharplispers/cl-jpeg")
8845 (license license:bsd-3))))
8846
8847 (define-public cl-jpeg
8848 (sbcl-package->cl-source-package sbcl-cl-jpeg))
8849
8850 (define-public ecl-cl-jpeg
8851 (sbcl-package->ecl-package sbcl-cl-jpeg))
8852
8853 (define-public sbcl-nodgui
8854 (let ((commit "bc59ed9b787dfc9e68ae3bd7f7e8507c5c619212")
8855 (revision "1"))
8856 (package
8857 (name "sbcl-nodgui")
8858 (version (git-version "0.0.5" revision commit))
8859 (source
8860 (origin
8861 (method git-fetch)
8862 (uri (git-reference
8863 (url "https://notabug.org/cage/nodgui.git")
8864 (commit commit)))
8865 (file-name (git-file-name name version))
8866 (sha256
8867 (base32 "0xx0dk54d882i598ydnwmy7mnfk0b7vib3ddsgpqxhjck1rwq8l8"))))
8868 (build-system asdf-build-system/sbcl)
8869 (inputs
8870 `(("alexandria" ,sbcl-alexandria)
8871 ("bordeaux-threads" ,sbcl-bordeaux-threads)
8872 ("cl-colors2" ,sbcl-cl-colors2)
8873 ("cl-jpeg" ,sbcl-cl-jpeg)
8874 ("cl-lex" ,sbcl-cl-lex)
8875 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
8876 ("cl-unicode" ,sbcl-cl-unicode)
8877 ("cl-yacc" ,sbcl-cl-yacc)
8878 ("clunit2" ,sbcl-clunit2)
8879 ("named-readtables" ,sbcl-named-readtables)
8880 ("parse-number" ,sbcl-parse-number)
8881 ("tk" ,tk)))
8882 (arguments
8883 `(#:phases (modify-phases %standard-phases
8884 (add-after 'unpack 'fix-paths
8885 (lambda* (#:key inputs #:allow-other-keys)
8886 (substitute* "src/wish-communication.lisp"
8887 (("#-freebsd \"wish\"")
8888 (string-append "#-freebsd \""
8889 (assoc-ref inputs "tk")
8890 "/bin/wish\"")))
8891 #t)))))
8892 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
8893 (description
8894 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
8895 toolkit. It also provides a few additional widgets more than the standard Tk
8896 ones.")
8897 (home-page "https://www.autistici.org/interzona/nodgui.html")
8898 (license license:llgpl))))
8899
8900 (define-public cl-nodgui
8901 (sbcl-package->cl-source-package sbcl-nodgui))
8902
8903 (define-public ecl-nodgui
8904 (sbcl-package->ecl-package sbcl-nodgui))
8905
8906 (define-public sbcl-salza2
8907 (package
8908 (name "sbcl-salza2")
8909 (version "2.0.9")
8910 (source
8911 (origin
8912 (method git-fetch)
8913 (uri (git-reference
8914 (url "https://github.com/xach/salza2")
8915 (commit (string-append "release-" version))))
8916 (file-name (git-file-name name version))
8917 (sha256
8918 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
8919 (build-system asdf-build-system/sbcl)
8920 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
8921 (description
8922 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
8923 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
8924 respectively.")
8925 (home-page "https://www.xach.com/lisp/salza2/")
8926 (license license:bsd-2)))
8927
8928 (define-public cl-salza2
8929 (sbcl-package->cl-source-package sbcl-salza2))
8930
8931 (define-public ecl-salza2
8932 (sbcl-package->ecl-package sbcl-salza2))
8933
8934 (define-public sbcl-origin
8935 (let ((commit "d646134302456408d6d43580bb05299f1695ab8e")
8936 (revision "1"))
8937 (package
8938 (name "sbcl-origin")
8939 (version (git-version "2.0.0" revision commit))
8940 (source
8941 (origin
8942 (method git-fetch)
8943 (uri (git-reference
8944 (url "https://git.mfiano.net/mfiano/origin")
8945 (commit commit)))
8946 (file-name (git-file-name "origin" version))
8947 (sha256
8948 (base32 "1n9aszaif3yh8prs5r8v51fbj4r5jd1a048mivd5yij3hplkm82b"))))
8949 (build-system asdf-build-system/sbcl)
8950 (native-inputs
8951 `(("parachute" ,sbcl-parachute)))
8952 (inputs
8953 `(("golden-utils" ,sbcl-golden-utils)
8954 ("specialization-store" ,sbcl-specialization-store)))
8955 (home-page "https://git.mfiano.net/mfiano/origin")
8956 (synopsis "Common Lisp graphics math library")
8957 (description
8958 "This is a native Common Lisp graphics math library with an emphasis on
8959 performance and correctness.")
8960 (license license:expat))))
8961
8962 (define-public ecl-origin
8963 (sbcl-package->ecl-package sbcl-origin))
8964
8965 (define-public cl-origin
8966 (sbcl-package->cl-source-package sbcl-origin))
8967
8968 (define-public sbcl-png-read
8969 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
8970 (revision "1"))
8971 (package
8972 (name "sbcl-png-read")
8973 (version (git-version "0.3.1" revision commit))
8974 (source
8975 (origin
8976 (method git-fetch)
8977 (uri (git-reference
8978 (url "https://github.com/Ramarren/png-read")
8979 (commit commit)))
8980 (file-name (git-file-name name version))
8981 (sha256
8982 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
8983 (build-system asdf-build-system/sbcl)
8984 (inputs
8985 `(("babel" ,sbcl-babel)
8986 ("chipz" ,sbcl-chipz)
8987 ("iterate" ,sbcl-iterate)))
8988 (synopsis "PNG decoder for Common Lisp")
8989 (description "This is a Common Lisp library for reading PNG images.")
8990 (home-page "https://github.com/Ramarren/png-read")
8991 (license license:bsd-3))))
8992
8993 (define-public cl-png-read
8994 (sbcl-package->cl-source-package sbcl-png-read))
8995
8996 (define-public ecl-png-read
8997 (sbcl-package->ecl-package sbcl-png-read))
8998
8999 (define-public sbcl-3b-bmfont
9000 (let ((commit "d1b5bec0de580c2d08ec947a93c56b1400f2a37a")
9001 (revision "1"))
9002 (package
9003 (name "sbcl-3b-bmfont")
9004 (version (git-version "0.0.1" revision commit))
9005 (source
9006 (origin
9007 (method git-fetch)
9008 (uri (git-reference
9009 (url "https://github.com/3b/3b-bmfont/")
9010 (commit commit)))
9011 (file-name (git-file-name "3b-bmfont" version))
9012 (sha256
9013 (base32 "12sgf7m0h6fqzhvkas7vmci6mprj3j3fnz778jlbqbsydln6v2yc"))))
9014 (build-system asdf-build-system/sbcl)
9015 (arguments
9016 `(#:asd-systems
9017 '("3b-bmfont"
9018 "3b-bmfont/text"
9019 "3b-bmfont/common"
9020 "3b-bmfont/xml"
9021 "3b-bmfont/json")))
9022 (inputs
9023 `(("alexandria" ,sbcl-alexandria)
9024 ("cxml" ,sbcl-cxml)
9025 ("flexi-streams" ,sbcl-flexi-streams)
9026 ("jsown" ,sbcl-jsown)
9027 ("split-sequence" ,sbcl-split-sequence)))
9028 (home-page "https://github.com/3b/3b-bmfont/")
9029 (synopsis "Read/write bmfont metadata files")
9030 (description
9031 "This is a Common Lisp library which provides functionality to
9032 read/write Bit Map Font (BMF) into text, JSON and XML.")
9033 (license license:expat))))
9034
9035 (define-public ecl-3b-bmfont
9036 (sbcl-package->ecl-package sbcl-3b-bmfont))
9037
9038 (define-public cl-3b-bmfont
9039 (sbcl-package->cl-source-package sbcl-3b-bmfont))
9040
9041 (define-public sbcl-zpng
9042 (package
9043 (name "sbcl-zpng")
9044 (version "1.2.2")
9045 (source
9046 (origin
9047 (method git-fetch)
9048 (uri (git-reference
9049 (url "https://github.com/xach/zpng")
9050 (commit (string-append "release-" version))))
9051 (file-name (git-file-name name version))
9052 (sha256
9053 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
9054 (build-system asdf-build-system/sbcl)
9055 (inputs
9056 `(("salza2" ,sbcl-salza2)))
9057 (synopsis "PNG encoder for Common Lisp")
9058 (description "This is a Common Lisp library for creating PNG images.")
9059 (home-page "https://www.xach.com/lisp/zpng/")
9060 (license license:bsd-2)))
9061
9062 (define-public cl-zpng
9063 (sbcl-package->cl-source-package sbcl-zpng))
9064
9065 (define-public ecl-zpng
9066 (sbcl-package->ecl-package sbcl-zpng))
9067
9068 (define-public sbcl-cl-qrencode
9069 (package
9070 (name "sbcl-cl-qrencode")
9071 (version "0.1.2")
9072 (source
9073 (origin
9074 (method git-fetch)
9075 (uri (git-reference
9076 (url "https://github.com/jnjcc/cl-qrencode")
9077 (commit (string-append "v" version))))
9078 (file-name (git-file-name name version))
9079 (sha256
9080 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
9081 (build-system asdf-build-system/sbcl)
9082 (native-inputs
9083 `(("lisp-unit" ,sbcl-lisp-unit)))
9084 (inputs
9085 `(("zpng" ,sbcl-zpng)))
9086 (synopsis "QR code encoder for Common Lisp")
9087 (description
9088 "This Common Lisp library provides function to make QR codes and to save
9089 them as PNG files.")
9090 (home-page "https://github.com/jnjcc/cl-qrencode")
9091 (license license:gpl2+)))
9092
9093 (define-public cl-qrencode
9094 (sbcl-package->cl-source-package sbcl-cl-qrencode))
9095
9096 (define-public ecl-cl-qrencode
9097 (sbcl-package->ecl-package sbcl-cl-qrencode))
9098
9099 (define-public sbcl-hdf5-cffi
9100 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
9101 (revision "1"))
9102 (package
9103 (name "sbcl-hdf5-cffi")
9104 (version (git-version "1.8.18" revision commit))
9105 (source
9106 (origin
9107 (method git-fetch)
9108 (uri (git-reference
9109 (url "https://github.com/hdfgroup/hdf5-cffi")
9110 (commit commit)))
9111 (file-name (git-file-name name version))
9112 (sha256
9113 (base32
9114 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
9115 (build-system asdf-build-system/sbcl)
9116 (synopsis "Common Lisp bindings for the HDF5 library")
9117 (description
9118 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
9119 (home-page "https://github.com/hdfgroup/hdf5-cffi")
9120 (license (license:non-copyleft
9121 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
9122 commit
9123 "/LICENSE")))
9124 (inputs
9125 `(("cffi" ,sbcl-cffi)
9126 ("hdf5" ,hdf5-1.10)))
9127 (native-inputs
9128 `(("fiveam" ,sbcl-fiveam)))
9129 (arguments
9130 `(#:test-asd-file "hdf5-cffi.test.asd"
9131 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
9132 ;; I don't know if there is a way to tell asdf-build-system to load
9133 ;; an additional system first, so tests are disabled.
9134 #:tests? #f
9135 #:phases
9136 (modify-phases %standard-phases
9137 (add-after 'unpack 'fix-paths
9138 (lambda* (#:key inputs #:allow-other-keys)
9139 (substitute* "src/library.lisp"
9140 (("libhdf5.so")
9141 (string-append
9142 (assoc-ref inputs "hdf5")
9143 "/lib/libhdf5.so")))))
9144 (add-after 'unpack 'fix-dependencies
9145 (lambda* (#:key inputs #:allow-other-keys)
9146 (substitute* "hdf5-cffi.asd"
9147 ((":depends-on \\(:cffi\\)")
9148 ":depends-on (:cffi :cffi-grovel)"))
9149 (substitute* "hdf5-cffi.test.asd"
9150 ((":depends-on \\(:cffi :hdf5-cffi")
9151 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
9152
9153 (define-public cl-hdf5-cffi
9154 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
9155
9156 (define-public ecl-hdf5-cffi
9157 (sbcl-package->ecl-package sbcl-hdf5-cffi))
9158
9159 (define-public sbcl-cl-randist
9160 (package
9161 (name "sbcl-cl-randist")
9162 (version "0.4.2")
9163 (source
9164 (origin
9165 (method git-fetch)
9166 (uri (git-reference
9167 (url "https://github.com/lvaruzza/cl-randist")
9168 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
9169 (file-name (git-file-name name version))
9170 (sha256
9171 (base32
9172 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
9173 (build-system asdf-build-system/sbcl)
9174 (synopsis "Random distributions for Common Lisp")
9175 (description
9176 "Manual translation from C to Common Lisp of some random number
9177 generation functions from the GSL library.")
9178 (home-page "https://github.com/lvaruzza/cl-randist")
9179 (license license:bsd-2)
9180 (arguments
9181 `(#:tests? #f))))
9182
9183 (define-public cl-randist
9184 (sbcl-package->cl-source-package sbcl-cl-randist))
9185
9186 (define-public ecl-cl-randist
9187 (sbcl-package->ecl-package sbcl-cl-randist))
9188
9189 (define-public sbcl-float-features
9190 (package
9191 (name "sbcl-float-features")
9192 (version "1.0.0")
9193 (source
9194 (origin
9195 (method git-fetch)
9196 (uri (git-reference
9197 (url "https://github.com/Shinmera/float-features")
9198 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
9199 (file-name (git-file-name name version))
9200 (sha256
9201 (base32
9202 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
9203 (build-system asdf-build-system/sbcl)
9204 (synopsis "Common Lisp IEEE float portability library")
9205 (description
9206 "Portability library for IEEE float features that are not
9207 covered by the Common Lisp standard.")
9208 (home-page "https://github.com/Shinmera/float-features")
9209 (license license:zlib)
9210 (inputs
9211 `(("documentation-utils" ,sbcl-documentation-utils)))
9212 (arguments
9213 `(#:tests? #f))))
9214
9215 (define-public cl-float-features
9216 (sbcl-package->cl-source-package sbcl-float-features))
9217
9218 (define-public ecl-float-features
9219 (sbcl-package->ecl-package sbcl-float-features))
9220
9221 (define-public sbcl-function-cache
9222 (package
9223 (name "sbcl-function-cache")
9224 (version "1.0.3")
9225 (source
9226 (origin
9227 (method git-fetch)
9228 (uri (git-reference
9229 (url "https://github.com/AccelerationNet/function-cache")
9230 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
9231 (file-name (git-file-name name version))
9232 (sha256
9233 (base32
9234 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
9235 (build-system asdf-build-system/sbcl)
9236 (synopsis "Function caching / memoization library for Common Lisp")
9237 (description
9238 "A common lisp library that provides extensible function result
9239 caching based on arguments (an expanded form of memoization).")
9240 (home-page "https://github.com/AccelerationNet/function-cache")
9241 (license
9242 (license:non-copyleft
9243 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
9244 (inputs
9245 `(("alexandria" ,sbcl-alexandria)
9246 ("cl-interpol" ,sbcl-cl-interpol)
9247 ("iterate" ,sbcl-iterate)
9248 ("symbol-munger" ,sbcl-symbol-munger)
9249 ("closer-mop" ,sbcl-closer-mop)))
9250 (arguments
9251 `(#:tests? #f))))
9252
9253 (define-public cl-function-cache
9254 (sbcl-package->cl-source-package sbcl-function-cache))
9255
9256 (define-public ecl-function-cache
9257 (sbcl-package->ecl-package sbcl-function-cache))
9258
9259 (define-public sbcl-type-r
9260 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
9261 (revision "1"))
9262 (package
9263 (name "sbcl-type-r")
9264 (version (git-version "0.0.0" revision commit))
9265 (source
9266 (origin
9267 (method git-fetch)
9268 (uri (git-reference
9269 (url "https://github.com/guicho271828/type-r")
9270 (commit commit)))
9271 (file-name (git-file-name name version))
9272 (sha256
9273 (base32
9274 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
9275 (build-system asdf-build-system/sbcl)
9276 (synopsis "Parser interface for Common Lisp built-in compound types")
9277 (description
9278 "Collections of accessor functions and patterns to access
9279 the elements in compound type specifier, e.g. @code{dimensions} in
9280 @code{(array element-type dimensions)}")
9281 (home-page "https://github.com/guicho271828/type-r")
9282 (license license:lgpl3+)
9283 (inputs
9284 `(("trivia" ,sbcl-trivia)
9285 ("alexandria" ,sbcl-alexandria)))
9286 (native-inputs
9287 `(("fiveam" ,sbcl-fiveam)))
9288 (arguments
9289 `(#:test-asd-file "type-r.test.asd")))))
9290
9291 (define-public cl-type-r
9292 (sbcl-package->cl-source-package sbcl-type-r))
9293
9294 (define-public ecl-type-r
9295 (sbcl-package->ecl-package sbcl-type-r))
9296
9297 (define-public sbcl-trivialib-type-unify
9298 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
9299 (revision "1"))
9300 (package
9301 (name "sbcl-trivialib-type-unify")
9302 (version (git-version "0.1" revision commit))
9303 (source
9304 (origin
9305 (method git-fetch)
9306 (uri (git-reference
9307 (url "https://github.com/guicho271828/trivialib.type-unify")
9308 (commit commit)))
9309 (file-name (git-file-name name version))
9310 (sha256
9311 (base32
9312 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
9313 (build-system asdf-build-system/sbcl)
9314 (synopsis "Common Lisp type unification")
9315 (description
9316 "Unifies a parametrized type specifier against an actual type specifier.
9317 Importantly, it handles complicated array-subtypes and number-related types
9318 correctly.")
9319 (home-page "https://github.com/guicho271828/trivialib.type-unify")
9320 (license license:lgpl3+)
9321 (inputs
9322 `(("alexandria" ,sbcl-alexandria)
9323 ("trivia" ,sbcl-trivia)
9324 ("introspect-environment" ,sbcl-introspect-environment)
9325 ("type-r" ,sbcl-type-r)))
9326 (native-inputs
9327 `(("fiveam" ,sbcl-fiveam)))
9328 (arguments
9329 `(#:asd-systems '("trivialib.type-unify")
9330 #:test-asd-file "trivialib.type-unify.test.asd")))))
9331
9332 (define-public cl-trivialib-type-unify
9333 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
9334
9335 (define-public ecl-trivialib-type-unify
9336 (sbcl-package->ecl-package sbcl-trivialib-type-unify))
9337
9338 (define-public sbcl-specialized-function
9339 (let ((commit "dee56d2d2b6ecd10500ad291c56217698604ec35")
9340 (revision "2"))
9341 (package
9342 (name "sbcl-specialized-function")
9343 (version (git-version "0.0.0" revision commit))
9344 (source
9345 (origin
9346 (method git-fetch)
9347 (uri (git-reference
9348 (url "https://github.com/numcl/specialized-function")
9349 (commit commit)))
9350 (file-name (git-file-name name version))
9351 (sha256
9352 (base32 "1mcc7mmpbnmgnr1cl2jl5r1ai54gn7fbisv2c14sh9za5w4sib82"))))
9353 (build-system asdf-build-system/sbcl)
9354 (synopsis "Julia-like dispatch for Common Lisp")
9355 (description
9356 "This library is part of NUMCL. It provides a macro
9357 @code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
9358 lazily compiling a type-specific version of the function from the same
9359 code. The main target of this macro is speed.")
9360 (home-page "https://github.com/numcl/specialized-function")
9361 (license license:lgpl3+)
9362 (inputs
9363 `(("trivia" ,sbcl-trivia)
9364 ("alexandria" ,sbcl-alexandria)
9365 ("iterate" ,sbcl-iterate)
9366 ("lisp-namespace" ,sbcl-lisp-namespace)
9367 ("type-r" ,sbcl-type-r)
9368 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
9369 (native-inputs
9370 `(("fiveam" ,sbcl-fiveam)))
9371 (arguments
9372 `(#:asd-files '("specialized-function.asd")
9373 #:test-asd-file "specialized-function.test.asd"
9374 ;; Tests fail because they try to use an internal symbol of SBCL
9375 ;; that does not exists in recent versions:
9376 ;; "The variable SB-VM:COMPLEX-VECTOR-NIL-WIDETAG is unbound."
9377 #:tests? #f)))))
9378
9379 (define-public cl-specialized-function
9380 (sbcl-package->cl-source-package sbcl-specialized-function))
9381
9382 (define-public ecl-specialized-function
9383 (sbcl-package->ecl-package sbcl-specialized-function))
9384
9385 (define-public sbcl-constantfold
9386 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
9387 (revision "1"))
9388 (package
9389 (name "sbcl-constantfold")
9390 (version (git-version "0.1" revision commit))
9391 (source
9392 (origin
9393 (method git-fetch)
9394 (uri (git-reference
9395 (url "https://github.com/numcl/constantfold")
9396 (commit commit)))
9397 (file-name (git-file-name name version))
9398 (sha256
9399 (base32
9400 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
9401 (build-system asdf-build-system/sbcl)
9402 (synopsis "Support library for numcl")
9403 (description
9404 "Support library for numcl. Registers a function as an
9405 additional form that is considered as a candidate for a constant.")
9406 (home-page "https://github.com/numcl/constantfold")
9407 (license license:lgpl3+)
9408 (inputs
9409 `(("trivia" ,sbcl-trivia)
9410 ("alexandria" ,sbcl-alexandria)
9411 ("iterate" ,sbcl-iterate)
9412 ("lisp-namespace" ,sbcl-lisp-namespace)))
9413 (native-inputs
9414 `(("fiveam" ,sbcl-fiveam)))
9415 (arguments
9416 `(#:asd-files '("constantfold.asd")
9417 #:test-asd-file "constantfold.test.asd")))))
9418
9419 (define-public cl-constantfold
9420 (sbcl-package->cl-source-package sbcl-constantfold))
9421
9422 (define-public ecl-constantfold
9423 (sbcl-package->ecl-package sbcl-constantfold))
9424
9425 (define-public sbcl-gtype
9426 (let ((commit "2442e32485635525af278ebd8fa69a27d5b8cf18")
9427 (revision "2"))
9428 (package
9429 (name "sbcl-gtype")
9430 (version (git-version "0.1" revision commit))
9431 (source
9432 (origin
9433 (method git-fetch)
9434 (uri (git-reference
9435 (url "https://github.com/numcl/gtype")
9436 (commit commit)))
9437 (file-name (git-file-name name version))
9438 (sha256
9439 (base32 "0hbkfdw00v7bsa6zbric34p5w6hfwxycccg8wc2faq0cxhsvpv9h"))))
9440 (build-system asdf-build-system/sbcl)
9441 (synopsis "C++/Julia-like parametric types in Common Lisp")
9442 (description
9443 "Support library for numcl that provides Julia-like runtime parametric
9444 type correctness in Common Lisp. It is based on CLtL2 extensions.")
9445 (home-page "https://github.com/numcl/gtype")
9446 (license license:lgpl3+)
9447 (inputs
9448 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
9449 ("trivial-cltl2" ,sbcl-trivial-cltl2)
9450 ("trivia" ,sbcl-trivia)
9451 ("alexandria" ,sbcl-alexandria)
9452 ("iterate" ,sbcl-iterate)
9453 ("type-r" ,sbcl-type-r)))
9454 (native-inputs
9455 `(("fiveam" ,sbcl-fiveam)))
9456 (arguments
9457 `(#:asd-files '("gtype.asd")
9458 #:test-asd-file "gtype.test.asd")))))
9459
9460 (define-public cl-gtype
9461 (sbcl-package->cl-source-package sbcl-gtype))
9462
9463 (define-public ecl-gtype
9464 (let ((pkg (sbcl-package->ecl-package sbcl-gtype)))
9465 (package
9466 (inherit pkg)
9467 (arguments
9468 (substitute-keyword-arguments (package-arguments pkg)
9469 ;; The tests fail on ECL with a COMPILE-FILE-ERROR for t/package.lisp.
9470 ((#:tests? _ #f) #f))))))
9471
9472 (define-public sbcl-numcl
9473 (let ((commit "3e8d40bf774e070e7af1d3dbf01bc8c37dbebd3a")
9474 (revision "2"))
9475 (package
9476 (name "sbcl-numcl")
9477 (version (git-version "0.1.0" revision commit))
9478 (source
9479 (origin
9480 (method git-fetch)
9481 (uri (git-reference
9482 (url "https://github.com/numcl/numcl")
9483 (commit commit)))
9484 (file-name (git-file-name name version))
9485 (sha256
9486 (base32 "1hqpr68f6xkxaj1hjjayyh97wcdmj51k20qrd3nsv1rcpmdc5ll4"))))
9487 (build-system asdf-build-system/sbcl)
9488 (synopsis "Numpy clone in Common Lisp")
9489 (description
9490 "This is a Numpy clone in Common Lisp. At the moment the
9491 library is written in pure Common Lisp, focusing more on correctness
9492 and usefulness, not speed. Track the progress at
9493 @url{https://github.com/numcl/numcl/projects/1}.")
9494 (home-page "https://github.com/numcl/numcl")
9495 (license license:lgpl3+)
9496 (inputs
9497 `(("trivia" ,sbcl-trivia)
9498 ("alexandria" ,sbcl-alexandria)
9499 ("iterate" ,sbcl-iterate)
9500 ("lisp-namespace" ,sbcl-lisp-namespace)
9501 ("type-r" ,sbcl-type-r)
9502 ("constantfold" ,sbcl-constantfold)
9503 ("cl-randist" ,sbcl-cl-randist)
9504 ("float-features" ,sbcl-float-features)
9505 ("function-cache" ,sbcl-function-cache)
9506 ("specialized-function" ,sbcl-specialized-function)
9507 ("gtype" ,sbcl-gtype)))
9508 (native-inputs
9509 `(("fiveam" ,sbcl-fiveam)))
9510 (arguments
9511 `(#:asd-files '("numcl.asd")
9512 #:test-asd-file "numcl.test.asd"
9513 ;; Tests fail on SBCL with "Heap exhausted, game over",
9514 ;; but they pass on ECL.
9515 #:tests? #f)))))
9516
9517 (define-public cl-numcl
9518 (sbcl-package->cl-source-package sbcl-numcl))
9519
9520 (define-public ecl-numcl
9521 (let ((pkg (sbcl-package->ecl-package sbcl-numcl)))
9522 (package
9523 (inherit pkg)
9524 (arguments
9525 (substitute-keyword-arguments (package-arguments pkg)
9526 ((#:tests? _ #f) #t))))))
9527
9528 (define-public sbcl-pzmq
9529 (let ((commit "7c7390eedc469d033c72dc497984d1536ee75826")
9530 (revision "1"))
9531 (package
9532 (name "sbcl-pzmq")
9533 (version (git-version "0.0.0" revision commit))
9534 (source
9535 (origin
9536 (method git-fetch)
9537 (uri (git-reference
9538 (url "https://github.com/orivej/pzmq")
9539 (commit commit)))
9540 (file-name (git-file-name name version))
9541 (sha256
9542 (base32 "0gmwzf7h90wa7v4wnk49g0hv2mdalljpwhyigxcb967wzv8lqci9"))))
9543 (build-system asdf-build-system/sbcl)
9544 (native-inputs
9545 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9546 ("fiveam" ,sbcl-fiveam)
9547 ("let-plus" ,sbcl-let-plus)))
9548 (inputs
9549 `(("cffi" ,sbcl-cffi)
9550 ("zeromq" ,zeromq)))
9551 (arguments
9552 `(#:phases (modify-phases %standard-phases
9553 (add-after 'unpack 'fix-paths
9554 (lambda* (#:key inputs #:allow-other-keys)
9555 (substitute* "c-api.lisp"
9556 (("\"libzmq")
9557 (string-append "\""
9558 (assoc-ref inputs "zeromq")
9559 "/lib/libzmq")))
9560 #t)))))
9561 (synopsis "Common Lisp bindings for the ZeroMQ library")
9562 (description "This Common Lisp library provides bindings for the ZeroMQ
9563 lightweight messaging kernel.")
9564 (home-page "https://github.com/orivej/pzmq")
9565 (license license:unlicense))))
9566
9567 (define-public cl-pzmq
9568 (sbcl-package->cl-source-package sbcl-pzmq))
9569
9570 (define-public ecl-pzmq
9571 (sbcl-package->ecl-package sbcl-pzmq))
9572
9573 (define-public sbcl-clss
9574 (let ((revision "1")
9575 (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d"))
9576 (package
9577 (name "sbcl-clss")
9578 (version (git-version "0.3.1" revision commit))
9579 (source
9580 (origin
9581 (method git-fetch)
9582 (uri
9583 (git-reference
9584 (url "https://github.com/Shinmera/clss")
9585 (commit commit)))
9586 (sha256
9587 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91"))
9588 (file-name (git-file-name name version))))
9589 (inputs
9590 `(("array-utils" ,sbcl-array-utils)
9591 ("plump" ,sbcl-plump)))
9592 (build-system asdf-build-system/sbcl)
9593 (synopsis "DOM tree searching engine based on CSS selectors")
9594 (description "CLSS is a DOM traversal engine based on CSS
9595 selectors. It makes use of the Plump-DOM and is used by lQuery.")
9596 (home-page "https://github.com/Shinmera/clss")
9597 (license license:zlib))))
9598
9599 (define-public cl-clss
9600 (sbcl-package->cl-source-package sbcl-clss))
9601
9602 (define-public ecl-clss
9603 (sbcl-package->ecl-package sbcl-clss))
9604
9605 (define-public sbcl-lquery
9606 (let ((revision "1")
9607 (commit "8048111c6b83956daa632e7a3ffbd8c9c203bd8d"))
9608 (package
9609 (name "sbcl-lquery")
9610 (version (git-version "3.2.1" revision commit))
9611 (source
9612 (origin
9613 (method git-fetch)
9614 (uri
9615 (git-reference
9616 (url "https://github.com/Shinmera/lquery")
9617 (commit commit)))
9618 (sha256
9619 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w"))
9620 (file-name (git-file-name name version))))
9621 (native-inputs
9622 `(("fiveam" ,sbcl-fiveam)))
9623 (inputs
9624 `(("array-utils" ,sbcl-array-utils)
9625 ("form-fiddle" ,sbcl-form-fiddle)
9626 ("plump" ,sbcl-plump)
9627 ("clss" ,sbcl-clss)))
9628 (build-system asdf-build-system/sbcl)
9629 (synopsis "Library to allow jQuery-like HTML/DOM manipulation")
9630 (description "@code{lQuery} is a DOM manipulation library written in
9631 Common Lisp, inspired by and based on the jQuery syntax and
9632 functions. It uses Plump and CLSS as DOM and selector engines. The
9633 main idea behind lQuery is to provide a simple interface for crawling
9634 and modifying HTML sites, as well as to allow for an alternative
9635 approach to templating.")
9636 (home-page "https://github.com/Shinmera/lquery")
9637 (license license:zlib))))
9638
9639 (define-public cl-lquery
9640 (sbcl-package->cl-source-package sbcl-lquery))
9641
9642 (define-public ecl-lquery
9643 (sbcl-package->ecl-package sbcl-lquery))
9644
9645 (define-public sbcl-cl-mysql
9646 (let ((commit "ab56c279c1815aec6ca0bfe85164ff7e85cfb6f9")
9647 (revision "1"))
9648 (package
9649 (name "sbcl-cl-mysql")
9650 (version (git-version "0.1" revision commit))
9651 (source
9652 (origin
9653 (method git-fetch)
9654 (uri (git-reference
9655 (url "https://github.com/hackinghat/cl-mysql")
9656 (commit commit)))
9657 (file-name (git-file-name name version))
9658 (sha256
9659 (base32 "0dg5ynx2ww94d0qfwrdrm7plkn43h64hs4iiq9mj2s1s4ixnp3lr"))))
9660 (build-system asdf-build-system/sbcl)
9661 (native-inputs
9662 `(("stefil" ,sbcl-stefil)))
9663 (inputs
9664 `(("cffi" ,sbcl-cffi)
9665 ("mariadb-lib" ,mariadb "lib")))
9666 (arguments
9667 `(#:tests? #f ; TODO: Tests require a running server
9668 #:phases
9669 (modify-phases %standard-phases
9670 (add-after 'unpack 'fix-paths
9671 (lambda* (#:key inputs #:allow-other-keys)
9672 (substitute* "system.lisp"
9673 (("libmysqlclient_r" all)
9674 (string-append (assoc-ref inputs "mariadb-lib")
9675 "/lib/"
9676 all)))
9677 #t)))))
9678 (synopsis "Common Lisp wrapper for MySQL")
9679 (description
9680 "@code{cl-mysql} is a Common Lisp implementation of a MySQL wrapper.")
9681 (home-page "http://www.hackinghat.com/index.php/cl-mysql")
9682 (license license:expat))))
9683
9684 (define-public cl-mysql
9685 (sbcl-package->cl-source-package sbcl-cl-mysql))
9686
9687 (define-public ecl-cl-mysql
9688 (sbcl-package->ecl-package sbcl-cl-mysql))
9689
9690 (define-public sbcl-postmodern
9691 (package
9692 (name "sbcl-postmodern")
9693 (version "1.32.8")
9694 (source
9695 (origin
9696 (method git-fetch)
9697 (uri (git-reference
9698 (url "https://github.com/marijnh/Postmodern")
9699 (commit (string-append "v" version))))
9700 (file-name (git-file-name name version))
9701 (sha256
9702 (base32 "0vr5inbr8dldf6dsl0qj3h2yrnnsayzfwxfzwkn1pk7xbns2l78q"))))
9703 (build-system asdf-build-system/sbcl)
9704 (native-inputs
9705 `(("fiveam" ,sbcl-fiveam)))
9706 (inputs
9707 `(("alexandria" ,sbcl-alexandria)
9708 ("bordeaux-threads" ,sbcl-bordeaux-threads)
9709 ("cl-base64" ,sbcl-cl-base64)
9710 ("cl-unicode" ,sbcl-cl-unicode)
9711 ("closer-mop" ,sbcl-closer-mop)
9712 ("global-vars" ,sbcl-global-vars)
9713 ("ironclad" ,sbcl-ironclad)
9714 ("local-time" ,sbcl-local-time)
9715 ("md5" ,sbcl-md5)
9716 ("split-sequence" ,sbcl-split-sequence)
9717 ("uax-15" ,sbcl-uax-15)
9718 ("usocket" ,sbcl-usocket)))
9719 (arguments
9720 ;; TODO: (Sharlatan-20210114T171037+0000) tests still failing but on other
9721 ;; step, some functionality in `local-time' prevents passing tests.
9722 ;; Error:
9723 ;;
9724 ;; Can't create directory
9725 ;; /gnu/store
9726 ;; /4f47agf1kyiz057ppy6x5p98i7mcbfsv-sbcl-local-time-1.0.6-2.a177eb9
9727 ;; /lib/common-lisp/sbcl/local-time/src/integration/
9728 ;;
9729 ;; NOTE: (Sharlatan-20210124T191940+0000): When set env HOME to /tmp above
9730 ;; issue is resolved but it required live test database to connect to now.
9731 ;; Keep tests switched off.
9732 `(#:tests? #f
9733 #:asd-systems '("cl-postgres"
9734 "s-sql"
9735 "postmodern"
9736 "simple-date"
9737 "simple-date/postgres-glue")))
9738 (synopsis "Common Lisp library for interacting with PostgreSQL")
9739 (description
9740 "@code{postmodern} is a Common Lisp library for interacting with
9741 PostgreSQL databases. It provides the following features:
9742
9743 @itemize
9744 @item Efficient communication with the database server without need for
9745 foreign libraries.
9746 @item Support for UTF-8 on Unicode-aware Lisp implementations.
9747 @item A syntax for mixing SQL and Lisp code.
9748 @item Convenient support for prepared statements and stored procedures.
9749 @item A metaclass for simple database-access objects.
9750 @end itemize\n
9751
9752 This package produces 4 systems: postmodern, cl-postgres, s-sql, simple-date
9753
9754 @code{SIMPLE-DATE} is a very basic implementation of date and time objects, used
9755 to support storing and retrieving time-related SQL types. It is not loaded by
9756 default and you can use local-time (which has support for timezones) instead.
9757
9758 @code{S-SQL} is used to compile s-expressions to strings of SQL code, escaping
9759 any Lisp values inside, and doing as much as possible of the work at compile
9760 time.
9761
9762 @code{CL-POSTGRES} is the low-level library used for interfacing with a PostgreSQL
9763 server over a socket.
9764
9765 @code{POSTMODERN} itself is a wrapper around these packages and provides higher
9766 level functions, a very simple data access object that can be mapped directly to
9767 database tables and some convient utilities. It then tries to put all these
9768 things together into a convenient programming interface")
9769 (home-page "https://marijnhaverbeke.nl/postmodern/")
9770 (license license:zlib)))
9771
9772 (define-public cl-postmodern
9773 (sbcl-package->cl-source-package sbcl-postmodern))
9774
9775 (define-public ecl-postmodern
9776 (package
9777 (inherit (sbcl-package->ecl-package sbcl-postmodern))
9778 (arguments
9779 `(#:tests? #f
9780 #:asd-systems '("cl-postgres"
9781 "s-sql"
9782 "postmodern"
9783 "simple-date"
9784 "simple-date/postgres-glue")
9785 #:phases
9786 (modify-phases %standard-phases
9787 (add-after 'unpack 'fix-build
9788 (lambda _
9789 (substitute* "cl-postgres.asd"
9790 ((":or :sbcl :allegro :ccl :clisp" all)
9791 (string-append all " :ecl")))
9792 #t)))))))
9793
9794 (define-public sbcl-db3
9795 (let ((commit "38e5ad35f025769fb7f8dcdc6e56df3e8efd8e6d")
9796 (revision "1"))
9797 (package
9798 (name "sbcl-db3")
9799 (version (git-version "0.0.0" revision commit))
9800 (source
9801 (origin
9802 (method git-fetch)
9803 (uri (git-reference
9804 (url "https://github.com/dimitri/cl-db3")
9805 (commit commit)))
9806 (file-name (git-file-name "cl-db3" version))
9807 (sha256
9808 (base32 "1i7j0mlri6kbklcx1lsm464s8kmyhhij5c4xh4aybrw8m4ixn1s5"))))
9809 (build-system asdf-build-system/sbcl)
9810 (home-page "https://github.com/dimitri/cl-db3")
9811 (synopsis "Common Lisp library to read dBase III database files")
9812 (description
9813 "This is a Common Lisp library for processing data found in dBase III
9814 database files (dbf and db3 files).")
9815 (license license:public-domain))))
9816
9817 (define-public ecl-db3
9818 (sbcl-package->ecl-package sbcl-db3))
9819
9820 (define-public cl-db3
9821 (sbcl-package->cl-source-package sbcl-db3))
9822
9823 (define-public sbcl-dbi
9824 ;; Master includes a breaking change which other packages depend on since
9825 ;; Quicklisp decided to follow it:
9826 ;; https://github.com/fukamachi/cl-dbi/commit/31c46869722f77fd5292a81b5b101f1347d7fce1
9827 (let ((commit "31c46869722f77fd5292a81b5b101f1347d7fce1"))
9828 (package
9829 (name "sbcl-dbi")
9830 (version (git-version "0.9.4" "1" commit))
9831 (source
9832 (origin
9833 (method git-fetch)
9834 (uri (git-reference
9835 (url "https://github.com/fukamachi/cl-dbi")
9836 (commit commit)))
9837 (file-name (git-file-name name version))
9838 (sha256
9839 (base32 "0r3n4rw12qqxad0cryym2ibm4ddl49gbq4ra227afibsr43nw5k3"))))
9840 (build-system asdf-build-system/sbcl)
9841 (native-inputs
9842 `(("rove" ,sbcl-rove)
9843 ("trivial-types" ,sbcl-trivial-types)))
9844 (inputs
9845 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9846 ("cl-mysql" ,sbcl-cl-mysql)
9847 ("cl-sqlite" ,sbcl-cl-sqlite)
9848 ("closer-mop" ,sbcl-closer-mop)
9849 ("postmodern" ,sbcl-postmodern)
9850 ("split-sequence" ,sbcl-split-sequence)
9851 ("trivial-garbage" ,sbcl-trivial-garbage)))
9852 (arguments
9853 `(#:asd-systems '("dbi"
9854 "dbd-mysql"
9855 "dbd-postgres"
9856 "dbd-sqlite3")))
9857 (synopsis "Database independent interface for Common Lisp")
9858 (description
9859 "@code{dbi} is a Common Lisp library providing a database independent
9860 interface for MySQL, PostgreSQL and SQLite.")
9861 (home-page "https://github.com/fukamachi/cl-dbi")
9862 (license license:llgpl))))
9863
9864 (define-public cl-dbi
9865 (sbcl-package->cl-source-package sbcl-dbi))
9866
9867 (define-public ecl-dbi
9868 (sbcl-package->ecl-package sbcl-dbi))
9869
9870 (define-public sbcl-uffi
9871 (package
9872 (name "sbcl-uffi")
9873 (version "2.1.2")
9874 (source
9875 (origin
9876 (method git-fetch)
9877 (uri (git-reference
9878 (url "http://git.kpe.io/uffi.git")
9879 (commit (string-append "v" version))))
9880 (file-name (git-file-name name version))
9881 (sha256
9882 (base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
9883 (build-system asdf-build-system/sbcl)
9884 (arguments
9885 `(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
9886 #:asd-files '("uffi.asd")
9887 #:phases
9888 (modify-phases %standard-phases
9889 (add-after 'unpack 'fix-permissions
9890 (lambda _
9891 (make-file-writable "doc/html.tar.gz")
9892 #t)))))
9893 (synopsis "Universal foreign function library for Common Lisp")
9894 (description
9895 "UFFI provides a universal foreign function interface (FFI)
9896 for Common Lisp.")
9897 (home-page "http://quickdocs.org/uffi/")
9898 (license license:llgpl)))
9899
9900 (define-public cl-uffi
9901 (package
9902 (inherit (sbcl-package->cl-source-package sbcl-uffi))
9903 (arguments
9904 `(#:phases
9905 ;; asdf-build-system/source has its own phases and does not inherit
9906 ;; from asdf-build-system/sbcl phases.
9907 (modify-phases %standard-phases/source
9908 ;; Already done in SBCL package.
9909 (delete 'reset-gzip-timestamps))))))
9910
9911 (define-public sbcl-clsql
9912 (package
9913 (name "sbcl-clsql")
9914 (version "6.7.0")
9915 (source
9916 (origin
9917 (method git-fetch)
9918 (uri (git-reference
9919 (url "http://git.kpe.io/clsql.git")
9920 (commit (string-append "v" version))))
9921 (file-name (git-file-name name version))
9922 (sha256
9923 (base32 "1v1k3s5bsy3lgd9gk459bzpb1r0kdjda25s29samxw4gsgf1fqvp"))
9924 (snippet
9925 '(begin
9926 ;; Remove precompiled libraries.
9927 (delete-file "db-mysql/clsql_mysql.dll")
9928 (delete-file "uffi/clsql_uffi.dll")
9929 (delete-file "uffi/clsql_uffi.lib")
9930 #t))))
9931 (build-system asdf-build-system/sbcl)
9932 (native-inputs
9933 `(("rt" ,sbcl-rt)))
9934 (inputs
9935 `(("cffi" ,sbcl-cffi)
9936 ("md5" ,sbcl-md5)
9937 ("mysql" ,mysql)
9938 ("postgresql" ,postgresql)
9939 ("postmodern" ,sbcl-postmodern)
9940 ("sqlite" ,sqlite)
9941 ("uffi" ,sbcl-uffi)
9942 ("zlib" ,zlib)))
9943 (arguments
9944 `(#:asd-files '("clsql.asd"
9945 "clsql-uffi.asd"
9946 "clsql-sqlite3.asd"
9947 "clsql-postgresql.asd"
9948 "clsql-postgresql-socket3.asd"
9949 "clsql-mysql.asd")
9950 #:asd-systems '("clsql"
9951 "clsql-sqlite3"
9952 "clsql-postgresql"
9953 "clsql-postgresql-socket3"
9954 "clsql-mysql")
9955 #:phases
9956 (modify-phases %standard-phases
9957 (add-after 'unpack 'fix-permissions
9958 (lambda _
9959 (make-file-writable "doc/html.tar.gz")
9960 #t))
9961 (add-after 'unpack 'fix-build
9962 (lambda _
9963 (substitute* "clsql-uffi.asd"
9964 (("\\(:version uffi \"2.0\"\\)")
9965 "uffi"))
9966 (substitute* "db-postgresql/postgresql-api.lisp"
9967 (("\\(data :cstring\\)")
9968 "(data :string)"))
9969 #t))
9970 (add-after 'unpack 'fix-paths
9971 (lambda* (#:key inputs outputs #:allow-other-keys)
9972 (substitute* "db-sqlite3/sqlite3-loader.lisp"
9973 (("libsqlite3")
9974 (string-append (assoc-ref inputs "sqlite")
9975 "/lib/libsqlite3")))
9976 (substitute* "db-postgresql/postgresql-loader.lisp"
9977 (("libpq")
9978 (string-append (assoc-ref inputs "postgresql")
9979 "/lib/libpq")))
9980 (let ((lib (string-append "#p\""
9981 (assoc-ref outputs "out")
9982 "/lib/\"")))
9983 (substitute* "clsql-mysql.asd"
9984 (("#p\"/usr/lib/clsql/clsql_mysql\\.so\"")
9985 lib))
9986 (substitute* "db-mysql/mysql-loader.lisp"
9987 (("libmysqlclient" all)
9988 (string-append (assoc-ref inputs "mysql") "/lib/" all))
9989 (("clsql-mysql-system::\\*library-file-dir\\*")
9990 lib)))
9991 #t))
9992 (add-before 'build 'build-helper-library
9993 (lambda* (#:key inputs outputs #:allow-other-keys)
9994 (let* ((mysql (assoc-ref inputs "mysql"))
9995 (inc-dir (string-append mysql "/include/mysql"))
9996 (lib-dir (string-append mysql "/lib"))
9997 (shared-lib-dir (string-append (assoc-ref outputs "out")
9998 "/lib"))
9999 (shared-lib (string-append shared-lib-dir
10000 "/clsql_mysql.so")))
10001 (mkdir-p shared-lib-dir)
10002 (invoke "gcc" "-fPIC" "-shared"
10003 "-I" inc-dir
10004 "db-mysql/clsql_mysql.c"
10005 "-Wl,-soname=clsql_mysql"
10006 "-L" lib-dir "-lmysqlclient" "-lz"
10007 "-o" shared-lib)
10008 #t)))
10009 (add-after 'unpack 'fix-tests
10010 (lambda _
10011 (substitute* "clsql.asd"
10012 (("clsql-tests :force t")
10013 "clsql-tests"))
10014 #t)))))
10015 (synopsis "Common Lisp SQL Interface library")
10016 (description
10017 "@code{clsql} is a Common Lisp interface to SQL RDBMS based on the
10018 Xanalys CommonSQL interface for Lispworks. It provides low-level database
10019 interfaces as well as a functional and an object oriented interface.")
10020 (home-page "http://clsql.kpe.io/")
10021 (license license:llgpl)))
10022
10023 (define-public cl-clsql
10024 (package
10025 (inherit (sbcl-package->cl-source-package sbcl-clsql))
10026 (native-inputs
10027 `(("rt" ,cl-rt)))
10028 (inputs
10029 `(("mysql" ,mysql)
10030 ("postgresql" ,postgresql)
10031 ("sqlite" ,sqlite)
10032 ("zlib" ,zlib)))
10033 (propagated-inputs
10034 `(("cffi" ,cl-cffi)
10035 ("md5" ,cl-md5)
10036 ("postmodern" ,cl-postmodern)
10037 ("uffi" ,cl-uffi)))
10038 (arguments
10039 `(#:phases
10040 ;; asdf-build-system/source has its own phases and does not inherit
10041 ;; from asdf-build-system/sbcl phases.
10042 (modify-phases %standard-phases/source
10043 (add-after 'unpack 'fix-permissions
10044 (lambda _
10045 (make-file-writable "doc/html.tar.gz")
10046 #t)))))))
10047
10048 (define-public ecl-clsql
10049 (let ((pkg (sbcl-package->ecl-package sbcl-clsql)))
10050 (package
10051 (inherit pkg)
10052 (inputs
10053 (alist-delete "uffi" (package-inputs pkg)))
10054 (arguments
10055 (substitute-keyword-arguments (package-arguments pkg)
10056 ((#:asd-files asd-files '())
10057 `(cons "clsql-cffi.asd" ,asd-files)))))))
10058
10059 (define-public sbcl-sycamore
10060 (let ((commit "fd2820fec165ad514493426dea209728f64e6d18"))
10061 (package
10062 (name "sbcl-sycamore")
10063 (version "0.0.20120604")
10064 (source
10065 (origin
10066 (method git-fetch)
10067 (uri (git-reference
10068 (url "https://github.com/ndantam/sycamore/")
10069 (commit commit)))
10070 (file-name (git-file-name name version))
10071 (sha256
10072 (base32 "00bv1aj89q5vldmq92zp2364jq312zjq2mbd3iyz1s2b4widzhl7"))))
10073 (build-system asdf-build-system/sbcl)
10074 (inputs
10075 `(("alexandria" ,sbcl-alexandria)
10076 ("cl-ppcre" ,sbcl-cl-ppcre)))
10077 (synopsis "Purely functional data structure library in Common Lisp")
10078 (description
10079 "Sycamore is a fast, purely functional data structure library in Common Lisp.
10080 If features:
10081
10082 @itemize
10083 @item Fast, purely functional weight-balanced binary trees.
10084 @item Leaf nodes are simple-vectors, greatly reducing tree height.
10085 @item Interfaces for tree Sets and Maps (dictionaries).
10086 @item Ropes.
10087 @item Purely functional pairing heaps.
10088 @item Purely functional amortized queue.
10089 @end itemize\n")
10090 (home-page "http://ndantam.github.io/sycamore/")
10091 (license license:bsd-3))))
10092
10093 (define-public cl-sycamore
10094 (sbcl-package->cl-source-package sbcl-sycamore))
10095
10096 (define-public ecl-sycamore
10097 (sbcl-package->ecl-package sbcl-sycamore))
10098
10099 (define-public sbcl-trivial-package-local-nicknames
10100 (package
10101 (name "sbcl-trivial-package-local-nicknames")
10102 (version "0.2")
10103 (home-page "https://github.com/phoe/trivial-package-local-nicknames")
10104 (source
10105 (origin
10106 (method git-fetch)
10107 (uri (git-reference
10108 (url home-page)
10109 (commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
10110 (file-name (git-file-name name version))
10111 (sha256
10112 (base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
10113 (build-system asdf-build-system/sbcl)
10114 (synopsis "Common Lisp compatibility library for package local nicknames")
10115 (description
10116 "This library is a portable compatibility layer around package local nicknames (PLN).
10117 This was done so there is a portability library for the PLN API not included
10118 in DEFPACKAGE.")
10119 (license license:unlicense)))
10120
10121 (define-public cl-trivial-package-local-nicknames
10122 (sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))
10123
10124 (define-public ecl-trivial-package-local-nicknames
10125 (sbcl-package->ecl-package sbcl-trivial-package-local-nicknames))
10126
10127 (define-public sbcl-enchant
10128 (let ((commit "6af162a7bf10541cbcfcfa6513894900329713fa"))
10129 (package
10130 (name "sbcl-enchant")
10131 (version (git-version "0.0.0" "1" commit))
10132 (home-page "https://github.com/tlikonen/cl-enchant")
10133 (source
10134 (origin
10135 (method git-fetch)
10136 (uri (git-reference
10137 (url home-page)
10138 (commit commit)))
10139 (file-name (git-file-name name version))
10140 (sha256
10141 (base32 "19yh5ihirzi1d8xqy1cjqipzd6ly3245cfxa5s9xx496rryz0s01"))))
10142 (build-system asdf-build-system/sbcl)
10143 (inputs
10144 `(("enchant" ,enchant)
10145 ("cffi" ,sbcl-cffi)))
10146 (arguments
10147 `(#:phases
10148 (modify-phases %standard-phases
10149 (add-after 'unpack 'fix-paths
10150 (lambda* (#:key inputs #:allow-other-keys)
10151 (substitute* "load-enchant.lisp"
10152 (("libenchant")
10153 (string-append
10154 (assoc-ref inputs "enchant") "/lib/libenchant-2"))))))))
10155 (synopsis "Common Lisp interface for the Enchant spell-checker library")
10156 (description
10157 "Enchant is a Common Lisp interface for the Enchant spell-checker
10158 library. The Enchant library is a generic spell-checker library which uses
10159 other spell-checkers transparently as back-end. The library supports the
10160 multiple checkers, including Aspell and Hunspell.")
10161 (license license:public-domain))))
10162
10163 (define-public cl-enchant
10164 (sbcl-package->cl-source-package sbcl-enchant))
10165
10166 (define-public ecl-enchant
10167 (sbcl-package->ecl-package sbcl-enchant))
10168
10169 (define-public sbcl-cl-change-case
10170 (let ((commit "5ceff2a5f8bd845b6cb510c6364176b27a238fd3"))
10171 (package
10172 (name "sbcl-cl-change-case")
10173 (version (git-version "0.1.0" "1" commit))
10174 (home-page "https://github.com/rudolfochrist/cl-change-case")
10175 (source
10176 (origin
10177 (method git-fetch)
10178 (uri (git-reference
10179 (url home-page)
10180 (commit commit)))
10181 (file-name (git-file-name name version))
10182 (sha256
10183 (base32 "1afyglglk9z3yg8gylcl301bl2r8vq3sllyznzj9s5xi5gs6qyf2"))))
10184 (build-system asdf-build-system/sbcl)
10185 (inputs
10186 `(("cl-ppcre" ,sbcl-cl-ppcre)
10187 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
10188 (native-inputs
10189 `(("fiveam" ,sbcl-fiveam)))
10190 (arguments
10191 '(;; FIXME: Test pass but phase fails with 'Component
10192 ;; "cl-change-case-test" not found, required by'.
10193 #:tests? #f
10194 #:test-asd-file "cl-change-case-test.asd"))
10195 (synopsis "Convert Common Lisp strings between camelCase, PascalCase and more")
10196 (description
10197 "@code{cl-change-case} is library to convert strings between camelCase,
10198 PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
10199 (license license:llgpl))))
10200
10201 (define-public cl-change-case
10202 (sbcl-package->cl-source-package sbcl-cl-change-case))
10203
10204 (define-public ecl-cl-change-case
10205 (sbcl-package->ecl-package sbcl-cl-change-case))
10206
10207 (define-public sbcl-modularize
10208 (let ((commit "86c5d9a11fbd2df9f0f03ac10b5d71837c8934ba")
10209 (revision "1"))
10210 (package
10211 (name "sbcl-modularize")
10212 (version (git-version "1.0.0" revision commit))
10213 (source
10214 (origin
10215 (method git-fetch)
10216 (uri (git-reference
10217 (url "https://github.com/Shinmera/modularize")
10218 (commit commit)))
10219 (file-name (git-file-name name version))
10220 (sha256
10221 (base32 "1zys29rfkb649rkgl3snxhajk8d5yf7ryxkrwy020kwdh7zdsg7d"))))
10222 (build-system asdf-build-system/sbcl)
10223 (arguments
10224 `(#:test-asd-file "modularize-test-module.asd"
10225 #:asd-files '("modularize.asd" "modularize-test-module.asd")
10226 #:asd-systems '("modularize" "modularize-test-module")))
10227 (inputs
10228 `(("documentation-utils" ,sbcl-documentation-utils)
10229 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)))
10230 (home-page "https://shinmera.github.io/modularize/")
10231 (synopsis "Common Lisp modularization framework")
10232 (description
10233 "@code{MODULARIZE} is an attempt at providing a common interface to
10234 segregate major application components. This is achieved by adding special
10235 treatment to packages. Each module is a package that is specially registered,
10236 which allows it to interact and co-exist with other modules in better ways. For
10237 instance, by adding module definition options you can introduce mechanisms to
10238 tie modules together in functionality, hook into each other and so on.")
10239 (license license:zlib))))
10240
10241 (define-public ecl-modularize
10242 (sbcl-package->ecl-package sbcl-modularize))
10243
10244 (define-public cl-modularize
10245 (sbcl-package->cl-source-package sbcl-modularize))
10246
10247 (define-public sbcl-modularize-hooks
10248 (let ((commit "e0348ed3ffd59a9ec31ca4ab28289e748bfbf96a")
10249 (revision "1"))
10250 (package
10251 (name "sbcl-modularize-hooks")
10252 (version (git-version "1.0.2" revision commit))
10253 (source
10254 (origin
10255 (method git-fetch)
10256 (uri (git-reference
10257 (url "https://github.com/Shinmera/modularize-hooks")
10258 (commit commit)))
10259 (file-name (git-file-name "modularize-hooks" version))
10260 (sha256
10261 (base32 "12kjvin8hxidwkzfb7inqv5b6g5qzcssnj9wc497v2ixc56fqdz7"))))
10262 (build-system asdf-build-system/sbcl)
10263 (inputs
10264 `(("closer-mop" ,sbcl-closer-mop)
10265 ("lambda-fiddle" ,sbcl-lambda-fiddle)
10266 ("modularize" ,sbcl-modularize)
10267 ("trivial-arguments" ,sbcl-trivial-arguments)))
10268 (home-page "https://shinmera.github.io/modularize-hooks/")
10269 (synopsis "Generic hooks and triggers extension for Modularize")
10270 (description
10271 "This is a simple extension to @code{MODULARIZE} that allows modules to
10272 define and trigger hooks, which other modules can hook on to.")
10273 (license license:zlib))))
10274
10275 (define-public ecl-modularize-hooks
10276 (sbcl-package->ecl-package sbcl-modularize-hooks))
10277
10278 (define-public cl-modularize-hooks
10279 (sbcl-package->cl-source-package sbcl-modularize-hooks))
10280
10281 (define-public sbcl-modularize-interfaces
10282 (let ((commit "96353657afb8c7aeba7ef5b51eb04c5ed3bcb6ef")
10283 (revision "1"))
10284 (package
10285 (name "sbcl-modularize-interfaces")
10286 (version (git-version "0.9.3" revision commit))
10287 (source
10288 (origin
10289 (method git-fetch)
10290 (uri (git-reference
10291 (url "https://github.com/Shinmera/modularize-interfaces")
10292 (commit commit)))
10293 (file-name (git-file-name "modularize-interfaces" version))
10294 (sha256
10295 (base32 "0bjf4wy39cwf75m7vh0r7mmcchs09yz2lrbyap98hnq8blq70fhc"))))
10296 (build-system asdf-build-system/sbcl)
10297 (inputs
10298 `(("lambda-fiddle" ,sbcl-lambda-fiddle)
10299 ("modularize" ,sbcl-modularize)
10300 ("trivial-arguments" ,sbcl-trivial-arguments)
10301 ("trivial-indent" ,sbcl-trivial-indent)))
10302 (home-page "https://shinmera.github.io/modularize-interfaces/")
10303 (synopsis "Programmatical interfaces extension for Modularize")
10304 (description
10305 "This is an extension to @code{MODULARIZE} that allows your application
10306 to define interfaces in-code that serve both as a primary documentation and as
10307 compliance control.")
10308 (license license:zlib))))
10309
10310 (define-public ecl-modularize-interfaces
10311 (sbcl-package->ecl-package sbcl-modularize-interfaces))
10312
10313 (define-public cl-modularize-interfaces
10314 (sbcl-package->cl-source-package sbcl-modularize-interfaces))
10315
10316 (define-public sbcl-moptilities
10317 (let ((commit "a436f16b357c96b82397ec018ea469574c10dd41"))
10318 (package
10319 (name "sbcl-moptilities")
10320 (version (git-version "0.3.13" "1" commit))
10321 (home-page "https://github.com/gwkkwg/moptilities/")
10322 (source
10323 (origin
10324 (method git-fetch)
10325 (uri (git-reference
10326 (url home-page)
10327 (commit commit)))
10328 (file-name (git-file-name name version))
10329 (sha256
10330 (base32 "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc"))))
10331 (build-system asdf-build-system/sbcl)
10332 (inputs
10333 `(("closer-mop" ,sbcl-closer-mop)))
10334 (native-inputs
10335 `(("lift" ,sbcl-lift)))
10336 (arguments
10337 `(#:phases
10338 (modify-phases %standard-phases
10339 (add-after 'unpack 'fix-tests
10340 (lambda _
10341 (substitute* "lift-standard.config"
10342 ((":relative-to lift-test")
10343 ":relative-to moptilities-test"))
10344 #t)))))
10345 (synopsis "Compatibility layer for Common Lisp MOP implementation differences")
10346 (description
10347 "MOP utilities provide a common interface between Lisps and make the
10348 MOP easier to use.")
10349 (license license:expat))))
10350
10351 (define-public cl-moptilities
10352 (sbcl-package->cl-source-package sbcl-moptilities))
10353
10354 (define-public sbcl-osicat
10355 (let ((commit "de0c18a367eedc857e1902a7319828af072a0d97"))
10356 (package
10357 (name "sbcl-osicat")
10358 (version (git-version "0.7.0" "1" commit))
10359 (home-page "http://www.common-lisp.net/project/osicat/")
10360 (source
10361 (origin
10362 (method git-fetch)
10363 (uri (git-reference
10364 (url "https://github.com/osicat/osicat")
10365 (commit commit)))
10366 (file-name (git-file-name name version))
10367 (sha256
10368 (base32 "15viw5pi5sa7qq9b4n2rr3dj2jkqr180rh9z1lh8w3rgl42i2adc"))))
10369 (build-system asdf-build-system/sbcl)
10370 (inputs
10371 `(("alexandria" ,sbcl-alexandria)
10372 ("cffi" ,sbcl-cffi)
10373 ("trivial-features" ,sbcl-trivial-features)))
10374 (native-inputs
10375 `(("rt" ,sbcl-rt)))
10376 (synopsis "Operating system interface for Common Lisp")
10377 (description
10378 "Osicat is a lightweight operating system interface for Common Lisp on
10379 Unix-platforms. It is not a POSIX-style API, but rather a simple lispy
10380 accompaniment to the standard ANSI facilities.")
10381 (license license:expat))))
10382
10383 (define-public cl-osicat
10384 (sbcl-package->cl-source-package sbcl-osicat))
10385
10386 (define-public ecl-osicat
10387 (sbcl-package->ecl-package sbcl-osicat))
10388
10389 (define-public sbcl-clx-xembed
10390 (let ((commit "a5c4b844d31ee68ffa58c933cc1cdddde6990743")
10391 (revision "1"))
10392 (package
10393 (name "sbcl-clx-xembed")
10394 (version (git-version "0.1" revision commit))
10395 (home-page "https://github.com/laynor/clx-xembed")
10396 (source
10397 (origin
10398 (method git-fetch)
10399 (uri (git-reference
10400 (url "https://github.com/laynor/clx-xembed")
10401 (commit commit)))
10402 (file-name (git-file-name name version))
10403 (sha256
10404 (base32 "1abx4v36ycmfjdwpjk4hh8058ya8whwia7ds9vd96q2qsrs57f12"))))
10405 (build-system asdf-build-system/sbcl)
10406 (arguments
10407 `(#:asd-systems '("xembed")))
10408 (inputs
10409 `(("sbcl-clx" ,sbcl-clx)))
10410 (synopsis "CL(x) xembed protocol implementation ")
10411 (description "CL(x) xembed protocol implementation")
10412 ;; MIT License
10413 (license license:expat))))
10414
10415 (define-public cl-clx-xembed
10416 (sbcl-package->cl-source-package sbcl-clx-xembed))
10417
10418 (define-public ecl-clx-xembed
10419 (sbcl-package->ecl-package sbcl-clx-xembed))
10420
10421 (define-public sbcl-quantile-estimator
10422 (package
10423 (name "sbcl-quantile-estimator")
10424 (version "0.0.1")
10425 (source
10426 (origin
10427 (method git-fetch)
10428 (uri (git-reference
10429 (url "https://github.com/deadtrickster/quantile-estimator.cl")
10430 (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
10431 (file-name (git-file-name name version))
10432 (sha256
10433 (base32
10434 "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
10435 (build-system asdf-build-system/sbcl)
10436 (arguments
10437 '(#:asd-files '("quantile-estimator.asd")))
10438 (inputs
10439 `(("alexandria" ,sbcl-alexandria)))
10440 (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
10441 (synopsis
10442 "Effective computation of biased quantiles over data streams")
10443 (description
10444 "Common Lisp implementation of Graham Cormode and S.
10445 Muthukrishnan's Effective Computation of Biased Quantiles over Data
10446 Streams in ICDE’05.")
10447 (license license:expat)))
10448
10449 (define-public cl-quantile-estimator
10450 (sbcl-package->cl-source-package sbcl-quantile-estimator))
10451
10452 (define-public ecl-quantile-estimator
10453 (sbcl-package->ecl-package sbcl-quantile-estimator))
10454
10455 (define-public sbcl-prometheus
10456 (package
10457 (name "sbcl-prometheus")
10458 (version "0.4.1")
10459 (source
10460 (origin
10461 (method git-fetch)
10462 (uri (git-reference
10463 (url "https://github.com/deadtrickster/prometheus.cl")
10464 (commit "7352b92296996ff383503e19bdd3bcea30409a15")))
10465 (file-name (git-file-name name version))
10466 (sha256
10467 (base32
10468 "0fzczls2kfgdx18pja4lqxjrz72i583185d8nq0pb3s331hhzh0z"))))
10469 (build-system asdf-build-system/sbcl)
10470 (inputs
10471 `(("alexandria" ,sbcl-alexandria)
10472 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10473 ("cffi" ,sbcl-cffi)
10474 ("cl-fad" ,sbcl-cl-fad)
10475 ("cl-ppcre" ,sbcl-cl-ppcre)
10476 ("drakma" ,sbcl-drakma)
10477 ("hunchentoot" ,sbcl-hunchentoot)
10478 ("local-time" ,sbcl-local-time)
10479 ("quantile-estimator" ,sbcl-quantile-estimator)
10480 ("salza2" ,sbcl-salza2)
10481 ("split-sequence" ,sbcl-split-sequence)
10482 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10483 (arguments
10484 '(#:asd-files '("prometheus.asd"
10485 "prometheus.collectors.sbcl.asd"
10486 "prometheus.collectors.process.asd"
10487 "prometheus.formats.text.asd"
10488 "prometheus.exposers.hunchentoot.asd"
10489 "prometheus.pushgateway.asd")
10490 #:asd-systems '("prometheus"
10491 "prometheus.collectors.sbcl"
10492 "prometheus.collectors.process"
10493 "prometheus.formats.text"
10494 "prometheus.exposers.hunchentoot"
10495 "prometheus.pushgateway")))
10496 (home-page "https://github.com/deadtrickster/prometheus.cl")
10497 (synopsis "Prometheus.io Common Lisp client")
10498 (description "Prometheus.io Common Lisp client.")
10499 (license license:expat)))
10500
10501 (define-public cl-prometheus
10502 (sbcl-package->cl-source-package sbcl-prometheus))
10503
10504 (define-public ecl-prometheus
10505 (sbcl-package->ecl-package sbcl-prometheus))
10506
10507 (define-public sbcl-uuid
10508 (let ((commit "e7d6680c3138385c0708f7aaf0c96622eeb140e8"))
10509 (package
10510 (name "sbcl-uuid")
10511 (version (git-version "2012.12.26" "1" commit))
10512 (source
10513 (origin
10514 (method git-fetch)
10515 (uri (git-reference
10516 (url "https://github.com/dardoria/uuid")
10517 (commit commit)))
10518 (file-name (git-file-name name version))
10519 (sha256
10520 (base32
10521 "0jnyp2kibcf5cwi60l6grjrj8wws9chasjvsw7xzwyym2lyid46f"))))
10522 (build-system asdf-build-system/sbcl)
10523 (inputs
10524 `(("ironclad" ,sbcl-ironclad)
10525 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10526 (home-page "https://github.com/dardoria/uuid")
10527 (synopsis
10528 "Common Lisp implementation of UUIDs according to RFC4122")
10529 (description
10530 "Common Lisp implementation of UUIDs according to RFC4122.")
10531 (license license:llgpl))))
10532
10533 (define-public cl-uuid
10534 (sbcl-package->cl-source-package sbcl-uuid))
10535
10536 (define-public ecl-uuid
10537 (sbcl-package->ecl-package sbcl-uuid))
10538
10539 (define-public sbcl-dissect
10540 (let ((commit "cffd38479f0e64e805f167bbdb240b783ecc8d45"))
10541 (package
10542 (name "sbcl-dissect")
10543 (version (git-version "1.0.0" "1" commit))
10544 (source
10545 (origin
10546 (method git-fetch)
10547 (uri (git-reference
10548 (url "https://github.com/Shinmera/dissect")
10549 (commit commit)))
10550 (file-name (git-file-name name version))
10551 (sha256
10552 (base32
10553 "0rmsjkgjl90gl6ssvgd60hb0d5diyhsiyypvw9hbc0ripvbmk5r5"))))
10554 (build-system asdf-build-system/sbcl)
10555 (inputs
10556 `(("cl-ppcre" ,sbcl-cl-ppcre)))
10557 (home-page "https://shinmera.github.io/dissect/")
10558 (synopsis
10559 "Introspection library for the call stack and restarts")
10560 (description
10561 "Dissect is a small Common Lisp library for introspecting the call stack
10562 and active restarts.")
10563 (license license:zlib))))
10564
10565 (define-public cl-dissect
10566 (sbcl-package->cl-source-package sbcl-dissect))
10567
10568 (define-public ecl-dissect
10569 (sbcl-package->ecl-package sbcl-dissect))
10570
10571 (define-public sbcl-rove
10572 (package
10573 (name "sbcl-rove")
10574 (version "0.9.6")
10575 (source
10576 (origin
10577 (method git-fetch)
10578 (uri (git-reference
10579 (url "https://github.com/fukamachi/rove")
10580 (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21")))
10581 (file-name (git-file-name name version))
10582 (sha256
10583 (base32
10584 "07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q"))))
10585 (build-system asdf-build-system/sbcl)
10586 (inputs
10587 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10588 ("dissect" ,sbcl-dissect)
10589 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
10590 (home-page "https://github.com/fukamachi/rove")
10591 (synopsis
10592 "Yet another common lisp testing library")
10593 (description
10594 "Rove is a unit testing framework for Common Lisp applications.
10595 This is intended to be a successor of Prove.")
10596 (license license:bsd-3)))
10597
10598 (define-public cl-rove
10599 (sbcl-package->cl-source-package sbcl-rove))
10600
10601 (define-public ecl-rove
10602 (sbcl-package->ecl-package sbcl-rove))
10603
10604 (define-public sbcl-exponential-backoff
10605 (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
10606 (package
10607 (name "sbcl-exponential-backoff")
10608 (version (git-version "0" "1" commit))
10609 (source
10610 (origin
10611 (method git-fetch)
10612 (uri (git-reference
10613 (url "https://github.com/death/exponential-backoff")
10614 (commit commit)))
10615 (file-name (git-file-name name version))
10616 (sha256
10617 (base32
10618 "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
10619 (build-system asdf-build-system/sbcl)
10620 (home-page "https://github.com/death/exponential-backoff")
10621 (synopsis "Exponential backoff algorithm in Common Lisp")
10622 (description
10623 "An implementation of the exponential backoff algorithm in Common Lisp.
10624 Inspired by the implementation found in Chromium. Read the header file to
10625 learn about each of the parameters.")
10626 (license license:expat))))
10627
10628 (define-public cl-exponential-backoff
10629 (sbcl-package->cl-source-package sbcl-exponential-backoff))
10630
10631 (define-public ecl-exponential-backoff
10632 (sbcl-package->ecl-package sbcl-exponential-backoff))
10633
10634 (define-public sbcl-sxql
10635 (let ((commit "5aa8b739492c5829e8623432b5d46482263990e8"))
10636 (package
10637 (name "sbcl-sxql")
10638 (version (git-version "0.1.0" "1" commit))
10639 (source
10640 (origin
10641 (method git-fetch)
10642 (uri (git-reference
10643 (url "https://github.com/fukamachi/sxql")
10644 (commit commit)))
10645 (file-name (git-file-name name version))
10646 (sha256
10647 (base32
10648 "0k25p6w2ld9cn8q8s20lda6yjfyp4q89219sviayfgixnj27avnj"))))
10649 (build-system asdf-build-system/sbcl)
10650 (arguments
10651 `(#:test-asd-file "sxql-test.asd"))
10652 (inputs
10653 `(("alexandria" ,sbcl-alexandria)
10654 ("cl-syntax" ,sbcl-cl-syntax)
10655 ("iterate" ,sbcl-iterate)
10656 ("optima" ,sbcl-optima)
10657 ("split-sequence" ,sbcl-split-sequence)
10658 ("trivial-types" ,sbcl-trivial-types)))
10659 (native-inputs
10660 `(("prove" ,sbcl-prove)))
10661 (home-page "https://github.com/fukamachi/sxql")
10662 (synopsis "SQL generator for Common Lisp")
10663 (description "SQL generator for Common Lisp.")
10664 (license license:bsd-3))))
10665
10666 (define-public cl-sxql
10667 (sbcl-package->cl-source-package sbcl-sxql))
10668
10669 (define-public ecl-sxql
10670 (sbcl-package->ecl-package sbcl-sxql))
10671
10672 (define-public sbcl-1am
10673 (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
10674 (package
10675 (name "sbcl-1am")
10676 (version (git-version "0.0" "1" commit))
10677 (source
10678 (origin
10679 (method git-fetch)
10680 (uri (git-reference
10681 (url "https://github.com/lmj/1am")
10682 (commit commit)))
10683 (file-name (git-file-name name version))
10684 (sha256
10685 (base32
10686 "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
10687 (build-system asdf-build-system/sbcl)
10688 (arguments
10689 `(#:asd-systems '("1am")))
10690 (home-page "https://github.com/lmj/1am")
10691 (synopsis "Minimal testing framework for Common Lisp")
10692 (description "A minimal testing framework for Common Lisp.")
10693 (license license:expat))))
10694
10695 (define-public cl-1am
10696 (sbcl-package->cl-source-package sbcl-1am))
10697
10698 (define-public ecl-1am
10699 (sbcl-package->ecl-package sbcl-1am))
10700
10701 (define-public sbcl-cl-ascii-table
10702 (let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
10703 (revision "1"))
10704 (package
10705 (name "sbcl-cl-ascii-table")
10706 (version (git-version "0.0.0" revision commit))
10707 (source
10708 (origin
10709 (method git-fetch)
10710 (uri (git-reference
10711 (url "https://github.com/telephil/cl-ascii-table")
10712 (commit commit)))
10713 (file-name (git-file-name name version))
10714 (sha256
10715 (base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
10716 (build-system asdf-build-system/sbcl)
10717 (synopsis "Library to make ascii-art tables")
10718 (description
10719 "This is a Common Lisp library to present tabular data in ascii-art
10720 tables.")
10721 (home-page "https://github.com/telephil/cl-ascii-table")
10722 (license license:expat))))
10723
10724 (define-public cl-ascii-table
10725 (sbcl-package->cl-source-package sbcl-cl-ascii-table))
10726
10727 (define-public ecl-cl-ascii-table
10728 (sbcl-package->ecl-package sbcl-cl-ascii-table))
10729
10730 (define-public sbcl-cl-rdkafka
10731 (package
10732 (name "sbcl-cl-rdkafka")
10733 (version "1.1.0")
10734 (source
10735 (origin
10736 (method git-fetch)
10737 (uri (git-reference
10738 (url "https://github.com/SahilKang/cl-rdkafka")
10739 (commit (string-append "v" version))))
10740 (file-name (git-file-name name version))
10741 (sha256
10742 (base32
10743 "0z2g0k0xy8k1p9g93h8dy9wbygaq7ziwagm4yz93zk67mhc0b84v"))))
10744 (build-system asdf-build-system/sbcl)
10745 (arguments
10746 `(#:tests? #f ; Attempts to connect to locally running Kafka
10747 #:phases
10748 (modify-phases %standard-phases
10749 (add-after 'unpack 'fix-paths
10750 (lambda* (#:key inputs #:allow-other-keys)
10751 (substitute* "src/low-level/librdkafka-bindings.lisp"
10752 (("librdkafka" all)
10753 (string-append (assoc-ref inputs "librdkafka") "/lib/"
10754 all))))))))
10755 (inputs
10756 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10757 ("cffi" ,sbcl-cffi)
10758 ("librdkafka" ,librdkafka)
10759 ("lparallel" ,sbcl-lparallel)
10760 ("trivial-garbage" ,sbcl-trivial-garbage)))
10761 (home-page "https://github.com/SahilKang/cl-rdkafka")
10762 (synopsis "Common Lisp client library for Apache Kafka")
10763 (description "A Common Lisp client library for Apache Kafka.")
10764 (license license:gpl3)))
10765
10766 (define-public cl-rdkafka
10767 (sbcl-package->cl-source-package sbcl-cl-rdkafka))
10768
10769 (define-public ecl-cl-rdkafka
10770 (sbcl-package->ecl-package sbcl-cl-rdkafka))
10771
10772 (define-public sbcl-acclimation
10773 (let ((commit "4d51150902568fcd59335f4cc4cfa022df6116a5"))
10774 (package
10775 (name "sbcl-acclimation")
10776 (version (git-version "0.0.0" "1" commit))
10777 (source
10778 (origin
10779 (method git-fetch)
10780 (uri (git-reference
10781 (url "https://github.com/robert-strandh/Acclimation")
10782 (commit commit)))
10783 (file-name (git-file-name name version))
10784 (sha256
10785 (base32
10786 "1aw7rarjl8ai57h0jxnp9hr3dka7qrs55mmbl1p6rhd6xj8mp9wq"))))
10787 (build-system asdf-build-system/sbcl)
10788 (home-page "https://github.com/robert-strandh/Acclimation")
10789 (synopsis "Internationalization library for Common Lisp")
10790 (description "This project is meant to provide tools for
10791 internationalizing Common Lisp programs.
10792
10793 One important aspect of internationalization is of course the language used in
10794 error messages, documentation strings, etc. But with this project we provide
10795 tools for all other aspects of internationalization as well, including dates,
10796 weight, temperature, names of physical quantitites, etc.")
10797 (license license:bsd-2))))
10798
10799 (define-public cl-acclimation
10800 (sbcl-package->cl-source-package sbcl-acclimation))
10801
10802 (define-public ecl-acclimation
10803 (sbcl-package->ecl-package sbcl-acclimation))
10804
10805 (define-public sbcl-clump
10806 (let ((commit "1ea4dbac1cb86713acff9ae58727dd187d21048a"))
10807 (package
10808 (name "sbcl-clump")
10809 (version (git-version "0.0.0" "1" commit))
10810 (source
10811 (origin
10812 (method git-fetch)
10813 (uri (git-reference
10814 (url "https://github.com/robert-strandh/Clump")
10815 (commit commit)))
10816 (file-name (git-file-name name version))
10817 (sha256
10818 (base32
10819 "1639msyagsswj85gc0wd90jgh8588j3qg5q70by9s2brf2q6w4lh"))))
10820 (inputs
10821 `(("acclimation" ,sbcl-acclimation)))
10822 (build-system asdf-build-system/sbcl)
10823 (home-page "https://github.com/robert-strandh/Clump")
10824 (synopsis "Collection of tree implementations for Common Lisp")
10825 (description "The purpose of this library is to provide a collection of
10826 implementations of trees.
10827
10828 In contrast to existing libraries such as cl-containers, it does not impose a
10829 particular use for the trees. Instead, it aims for a stratified design,
10830 allowing client code to choose between different levels of abstraction.
10831
10832 As a consequence of this policy, low-level interfaces are provided where
10833 the concrete representation is exposed, but also high level interfaces
10834 where the trees can be used as search trees or as trees that represent
10835 sequences of objects.")
10836 (license license:bsd-2))))
10837
10838 (define-public cl-clump
10839 (sbcl-package->cl-source-package sbcl-clump))
10840
10841 (define-public ecl-clump
10842 (sbcl-package->ecl-package sbcl-clump))
10843
10844 (define-public sbcl-cluffer
10845 (let ((commit "4aad29c276a58a593064e79972ee4d77cae0af4a"))
10846 (package
10847 (name "sbcl-cluffer")
10848 (version (git-version "0.0.0" "1" commit))
10849 (source
10850 (origin
10851 (method git-fetch)
10852 (uri (git-reference
10853 (url "https://github.com/robert-strandh/cluffer")
10854 (commit commit)))
10855 (file-name (git-file-name name version))
10856 (sha256
10857 (base32
10858 "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"))))
10859 (build-system asdf-build-system/sbcl)
10860 (inputs
10861 `(("acclimation" ,sbcl-acclimation)
10862 ("clump" ,sbcl-clump)))
10863 (home-page "https://github.com/robert-strandh/cluffer")
10864 (synopsis "Common Lisp library providing a protocol for text-editor buffers")
10865 (description "Cluffer is a library for representing the buffer of a text
10866 editor. As such, it defines a set of CLOS protocols for client code to
10867 interact with the buffer contents in various ways, and it supplies different
10868 implementations of those protocols for different purposes.")
10869 (license license:bsd-2))))
10870
10871 (define-public cl-cluffer
10872 (sbcl-package->cl-source-package sbcl-cluffer))
10873
10874 (define-public ecl-cluffer
10875 (sbcl-package->ecl-package sbcl-cluffer))
10876
10877 (define-public sbcl-cl-libsvm-format
10878 (let ((commit "3300f84fd8d9f5beafc114f543f9d83417c742fb")
10879 (revision "0"))
10880 (package
10881 (name "sbcl-cl-libsvm-format")
10882 (version (git-version "0.1.0" revision commit))
10883 (source
10884 (origin
10885 (method git-fetch)
10886 (uri (git-reference
10887 (url "https://github.com/masatoi/cl-libsvm-format")
10888 (commit commit)))
10889 (file-name (git-file-name name version))
10890 (sha256
10891 (base32
10892 "0284aj84xszhkhlivaigf9qj855fxad3mzmv3zfr0qzb5k0nzwrg"))))
10893 (build-system asdf-build-system/sbcl)
10894 (native-inputs
10895 `(("prove" ,sbcl-prove)))
10896 (inputs
10897 `(("alexandria" ,sbcl-alexandria)))
10898 (synopsis "LibSVM data format reader for Common Lisp")
10899 (description
10900 "This Common Lisp library provides a fast reader for data in LibSVM
10901 format.")
10902 (home-page "https://github.com/masatoi/cl-libsvm-format")
10903 (license license:expat))))
10904
10905 (define-public cl-libsvm-format
10906 (sbcl-package->cl-source-package sbcl-cl-libsvm-format))
10907
10908 (define-public ecl-cl-libsvm-format
10909 (sbcl-package->ecl-package sbcl-cl-libsvm-format))
10910
10911 (define-public sbcl-cl-online-learning
10912 (let ((commit "87fbef8a340219e853adb3a5bf44a0470da76964")
10913 (revision "1"))
10914 (package
10915 (name "sbcl-cl-online-learning")
10916 (version (git-version "0.5" revision commit))
10917 (source
10918 (origin
10919 (method git-fetch)
10920 (uri (git-reference
10921 (url "https://github.com/masatoi/cl-online-learning")
10922 (commit commit)))
10923 (file-name (git-file-name "cl-online-learning" version))
10924 (sha256
10925 (base32
10926 "1lfq04lnxivx59nq5dd02glyqsqzf3vdn4s9b8wnaln5fs8g2ph9"))))
10927 (build-system asdf-build-system/sbcl)
10928 (native-inputs
10929 `(("prove" ,sbcl-prove)))
10930 (inputs
10931 `(("cl-libsvm-format" ,sbcl-cl-libsvm-format)
10932 ("cl-store" ,sbcl-cl-store)))
10933 (arguments
10934 `(#:test-asd-file "cl-online-learning-test.asd"
10935 #:asd-systems '("cl-online-learning-test"
10936 "cl-online-learning")))
10937 (home-page "https://github.com/masatoi/cl-online-learning")
10938 (synopsis "Online Machine Learning for Common Lisp")
10939 (description
10940 "This library contains a collection of machine learning algorithms for
10941 online linear classification written in Common Lisp.")
10942 (license license:expat))))
10943
10944 (define-public cl-online-learning
10945 (sbcl-package->cl-source-package sbcl-cl-online-learning))
10946
10947 (define-public ecl-cl-online-learning
10948 (sbcl-package->ecl-package sbcl-cl-online-learning))
10949
10950 (define-public sbcl-cl-mpg123
10951 (let ((commit "5f042c839d2ea4a2ff2a7b60c839d8633d64161d")
10952 (revision "1"))
10953 (package
10954 (name "sbcl-cl-mpg123")
10955 (version (git-version "1.0.0" revision commit))
10956 (source
10957 (origin
10958 (method git-fetch)
10959 (uri (git-reference
10960 (url "https://github.com/Shirakumo/cl-mpg123")
10961 (commit commit)))
10962 (file-name (git-file-name "cl-mpg123" version))
10963 (sha256
10964 (base32 "1hl721xaczxck008ax2y3jpkm509ry1sg3lklh2k76764m3ndrjf"))
10965 (modules '((guix build utils)))
10966 (snippet
10967 '(begin
10968 ;; Remove bundled pre-compiled libraries.
10969 (delete-file-recursively "static")
10970 #t))))
10971 (build-system asdf-build-system/sbcl)
10972 (arguments
10973 `(#:asd-files '("cl-mpg123.asd" "cl-mpg123-example.asd")
10974 #:asd-systems '("cl-mpg123" "cl-mpg123-example")
10975 #:phases
10976 (modify-phases %standard-phases
10977 (add-after 'unpack 'fix-paths
10978 (lambda* (#:key inputs #:allow-other-keys)
10979 (substitute* "low-level.lisp"
10980 (("libmpg123.so" all)
10981 (string-append (assoc-ref inputs "libmpg123")
10982 "/lib/" all))))))))
10983 (inputs
10984 `(("cffi" ,sbcl-cffi)
10985 ("cl-out123" ,sbcl-cl-out123)
10986 ("documentation-utils" ,sbcl-documentation-utils)
10987 ("libmpg123" ,mpg123)
10988 ("trivial-features" ,sbcl-trivial-features)
10989 ("trivial-garbage" ,sbcl-trivial-garbage)
10990 ("verbose" ,sbcl-verbose)))
10991 (home-page "https://shirakumo.github.io/cl-mpg123/")
10992 (synopsis "Common Lisp bindings to libmpg123")
10993 (description
10994 "This is a bindings and wrapper library to @code{libmpg123} allowing for
10995 convenient, extensive, and fast decoding of MPEG1/2/3 (most prominently mp3)
10996 files.")
10997 (license license:zlib))))
10998
10999 (define-public ecl-cl-mpg123
11000 (sbcl-package->ecl-package sbcl-cl-mpg123))
11001
11002 (define-public cl-mpg123
11003 (sbcl-package->cl-source-package sbcl-cl-mpg123))
11004
11005 (define-public sbcl-cl-out123
11006 (let ((commit "6b58d3f8c2a28ad09059ac4c60fb3c781b9b421b")
11007 (revision "1"))
11008 (package
11009 (name "sbcl-cl-out123")
11010 (version (git-version "1.0.0" revision commit))
11011 (source
11012 (origin
11013 (method git-fetch)
11014 (uri (git-reference
11015 (url "https://github.com/Shirakumo/cl-out123")
11016 (commit commit)))
11017 (file-name (git-file-name "cl-out123" version))
11018 (sha256
11019 (base32 "0mdwgfax6sq68wvdgjjp78i40ah7wqkpqnvaq8a1c509k7ghdgv1"))
11020 (modules '((guix build utils)))
11021 (snippet
11022 '(begin
11023 ;; Remove bundled pre-compiled libraries.
11024 (delete-file-recursively "static")
11025 #t))))
11026 (build-system asdf-build-system/sbcl)
11027 (arguments
11028 `(#:phases
11029 (modify-phases %standard-phases
11030 (add-after 'unpack 'fix-paths
11031 (lambda* (#:key inputs #:allow-other-keys)
11032 (substitute* "low-level.lisp"
11033 (("libout123.so" all)
11034 (string-append (assoc-ref inputs "libout123")
11035 "/lib/" all)))))
11036 ;; NOTE: (Sharlatan-20210129T134529+0000): ECL package `ext' has no
11037 ;; exported macro `without-interrupts' it's moved to `mp' package
11038 ;; https://github.com/Shirakumo/cl-out123/issues/2
11039 ;; https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/mp.lsp
11040 (add-after 'unpack 'fix-ecl-package-name
11041 (lambda _
11042 (substitute* "wrapper.lisp"
11043 (("ext:without-interrupts.*") "mp:without-interrupts\n"))
11044 #t)))))
11045 (inputs
11046 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11047 ("cffi" ,sbcl-cffi)
11048 ("documentation-utils" ,sbcl-documentation-utils)
11049 ("libout123" ,mpg123)
11050 ("trivial-features" ,sbcl-trivial-features)
11051 ("trivial-garbage" ,sbcl-trivial-garbage)))
11052 (home-page "https://shirakumo.github.io/cl-out123/")
11053 (synopsis "Common Lisp bindings to libout123")
11054 (description
11055 "This is a bindings library to @code{libout123} which allows easy
11056 cross-platform audio playback.")
11057 (license license:zlib))))
11058
11059 (define-public ecl-cl-out123
11060 (sbcl-package->ecl-package sbcl-cl-out123))
11061
11062 (define-public cl-out123
11063 (sbcl-package->cl-source-package sbcl-cl-out123))
11064
11065 (define-public sbcl-cl-random-forest
11066 (let ((commit "fedb36ce99bb6f4d7e3a7dd6d8b058f331308f91")
11067 (revision "1"))
11068 (package
11069 (name "sbcl-cl-random-forest")
11070 (version (git-version "0.1" revision commit))
11071 (source
11072 (origin
11073 (method git-fetch)
11074 (uri (git-reference
11075 (url "https://github.com/masatoi/cl-random-forest")
11076 (commit commit)))
11077 (file-name (git-file-name name version))
11078 (sha256
11079 (base32
11080 "0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
11081 (build-system asdf-build-system/sbcl)
11082 (native-inputs
11083 `(("prove" ,sbcl-prove)
11084 ("trivial-garbage" ,sbcl-trivial-garbage)))
11085 (inputs
11086 `(("alexandria" ,sbcl-alexandria)
11087 ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
11088 ("cl-online-learning" ,sbcl-cl-online-learning)
11089 ("lparallel" ,sbcl-lparallel)))
11090 (arguments
11091 `(#:tests? #f)) ; The tests download data from the Internet
11092 (synopsis "Random Forest and Global Refinement for Common Lisp")
11093 (description
11094 "CL-random-forest is an implementation of Random Forest for multiclass
11095 classification and univariate regression written in Common Lisp. It also
11096 includes an implementation of Global Refinement of Random Forest.")
11097 (home-page "https://github.com/masatoi/cl-random-forest")
11098 (license license:expat))))
11099
11100 (define-public cl-random-forest
11101 (sbcl-package->cl-source-package sbcl-cl-random-forest))
11102
11103 (define-public ecl-cl-random-forest
11104 (sbcl-package->ecl-package sbcl-cl-random-forest))
11105
11106 (define-public sbcl-bordeaux-fft
11107 (let ((commit "4a1f5600cae59bdabcb32de4ee2d7d73a9450d6e")
11108 (revision "0"))
11109 (package
11110 (name "sbcl-bordeaux-fft")
11111 (version (git-version "1.0.1" revision commit))
11112 (source
11113 (origin
11114 (method git-fetch)
11115 (uri (git-reference
11116 (url "https://github.com/ahefner/bordeaux-fft")
11117 (commit commit)))
11118 (file-name (git-file-name name version))
11119 (sha256
11120 (base32 "0j584w6kq2k6r8lp2i14f9605rxhp3r15s33xs08iz1pndn6iwqf"))))
11121 (build-system asdf-build-system/sbcl)
11122 (home-page "http://vintage-digital.com/hefner/software/bordeaux-fft/")
11123 (synopsis "Fast Fourier Transform for Common Lisp")
11124 (description
11125 "The Bordeaux-FFT library provides a reasonably efficient implementation
11126 of the Fast Fourier Transform and its inverse for complex-valued inputs, in
11127 portable Common Lisp.")
11128 (license license:gpl2+))))
11129
11130 (define-public cl-bordeaux-fft
11131 (sbcl-package->cl-source-package sbcl-bordeaux-fft))
11132
11133 (define-public ecl-bordeaux-fft
11134 (sbcl-package->ecl-package sbcl-bordeaux-fft))
11135
11136 (define-public sbcl-napa-fft3
11137 (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236")
11138 (revision "0"))
11139 (package
11140 (name "sbcl-napa-fft3")
11141 (version (git-version "0.0.1" revision commit))
11142 (source
11143 (origin
11144 (method git-fetch)
11145 (uri (git-reference
11146 (url "https://github.com/pkhuong/Napa-FFT3")
11147 (commit commit)))
11148 (file-name (git-file-name name version))
11149 (sha256
11150 (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp"))))
11151 (build-system asdf-build-system/sbcl)
11152 (home-page "https://github.com/pkhuong/Napa-FFT3")
11153 (synopsis "Fast Fourier Transform routines in Common Lisp")
11154 (description
11155 "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also
11156 buildings blocks to express common operations that involve DFTs: filtering,
11157 convolutions, etc.")
11158 (license license:bsd-3))))
11159
11160 (define-public cl-napa-fft3
11161 (sbcl-package->cl-source-package sbcl-napa-fft3))
11162
11163 (define-public sbcl-cl-tga
11164 (let ((commit "4dc2f7b8a259b9360862306640a07a23d4afaacc")
11165 (revision "0"))
11166 (package
11167 (name "sbcl-cl-tga")
11168 (version (git-version "0.0.0" revision commit))
11169 (source
11170 (origin
11171 (method git-fetch)
11172 (uri (git-reference
11173 (url "https://github.com/fisxoj/cl-tga")
11174 (commit commit)))
11175 (file-name (git-file-name name version))
11176 (sha256
11177 (base32 "03k3npmn0xd3fd2m7vwxph82av2xrfb150imqrinlzqmzvz1v1br"))))
11178 (build-system asdf-build-system/sbcl)
11179 (home-page "https://github.com/fisxoj/cl-tga")
11180 (synopsis "TGA file loader for Common Lisp")
11181 (description
11182 "Cl-tga was written to facilitate loading @emph{.tga} files into OpenGL
11183 programs. It's a very simple library, and, at the moment, only supports
11184 non-RLE encoded forms of the files.")
11185 (license license:expat))))
11186
11187 (define-public cl-tga
11188 (sbcl-package->cl-source-package sbcl-cl-tga))
11189
11190 (define-public ecl-cl-tga
11191 (sbcl-package->ecl-package sbcl-cl-tga))
11192
11193 (define-public sbcl-com.gigamonkeys.binary-data
11194 (let ((commit "22e908976d7f3e2318b7168909f911b4a00963ee")
11195 (revision "0"))
11196 (package
11197 (name "sbcl-com.gigamonkeys.binary-data")
11198 (version (git-version "0.0.0" revision commit))
11199 (source
11200 (origin
11201 (method git-fetch)
11202 (uri (git-reference
11203 (url "https://github.com/gigamonkey/monkeylib-binary-data")
11204 (commit commit)))
11205 (file-name (git-file-name name version))
11206 (sha256
11207 (base32 "072v417vmcnvmyh8ddq9vmwwrizm7zwz9dpzi14qy9nsw8q649zw"))))
11208 (build-system asdf-build-system/sbcl)
11209 (inputs
11210 `(("alexandria" ,sbcl-alexandria)))
11211 (home-page "https://github.com/gigamonkey/monkeylib-binary-data")
11212 (synopsis "Common Lisp library for reading and writing binary data")
11213 (description
11214 "This a Common Lisp library for reading and writing binary data. It is
11215 based on code from chapter 24 of the book @emph{Practical Common Lisp}.")
11216 (license license:bsd-3))))
11217
11218 (define-public cl-com.gigamonkeys.binary-data
11219 (sbcl-package->cl-source-package sbcl-com.gigamonkeys.binary-data))
11220
11221 (define-public ecl-com.gigamonkeys.binary-data
11222 (sbcl-package->ecl-package sbcl-com.gigamonkeys.binary-data))
11223
11224 (define-public sbcl-deflate
11225 (package
11226 (name "sbcl-deflate")
11227 (version "1.0.3")
11228 (source
11229 (origin
11230 (method git-fetch)
11231 (uri (git-reference
11232 (url "https://github.com/pmai/Deflate")
11233 (commit (string-append "release-" version))))
11234 (file-name (git-file-name name version))
11235 (sha256
11236 (base32 "1jpdjnxh6cw2d8hk70r2sxn92is52s9b855irvwkdd777fdciids"))))
11237 (build-system asdf-build-system/sbcl)
11238 (home-page "https://github.com/pmai/Deflate")
11239 (synopsis "Native deflate decompression for Common Lisp")
11240 (description
11241 "This library is an implementation of Deflate (RFC 1951) decompression,
11242 with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952)
11243 wrappers of deflate streams. It currently does not handle compression.")
11244 (license license:expat)))
11245
11246 (define-public cl-deflate
11247 (sbcl-package->cl-source-package sbcl-deflate))
11248
11249 (define-public ecl-deflate
11250 (sbcl-package->ecl-package sbcl-deflate))
11251
11252 (define-public sbcl-skippy
11253 (let ((commit "e456210202ca702c792292c5060a264d45e47090")
11254 (revision "0"))
11255 (package
11256 (name "sbcl-skippy")
11257 (version (git-version "1.3.12" revision commit))
11258 (source
11259 (origin
11260 (method git-fetch)
11261 (uri (git-reference
11262 (url "https://github.com/xach/skippy")
11263 (commit commit)))
11264 (file-name (git-file-name name version))
11265 (sha256
11266 (base32 "1sxbn5nh24qpx9w64x8mhp259cxcl1x8p126wk3b91ijjsj7l5vj"))))
11267 (build-system asdf-build-system/sbcl)
11268 (home-page "https://xach.com/lisp/skippy/")
11269 (synopsis "Common Lisp library for GIF images")
11270 (description
11271 "Skippy is a Common Lisp library to read and write GIF image files.")
11272 (license license:bsd-2))))
11273
11274 (define-public cl-skippy
11275 (sbcl-package->cl-source-package sbcl-skippy))
11276
11277 (define-public ecl-skippy
11278 (sbcl-package->ecl-package sbcl-skippy))
11279
11280 (define-public sbcl-cl-freetype2
11281 (let ((commit "96058da730b4812df916c1f4ee18c99b3b15a3de")
11282 (revision "0"))
11283 (package
11284 (name "sbcl-cl-freetype2")
11285 (version (git-version "1.1" revision commit))
11286 (source
11287 (origin
11288 (method git-fetch)
11289 (uri (git-reference
11290 (url "https://github.com/rpav/cl-freetype2")
11291 (commit commit)))
11292 (file-name (git-file-name name version))
11293 (sha256
11294 (base32 "0f8darhairgxnb5bzqcny7nh7ss3471bdzix5rzcyiwdbr5kymjl"))))
11295 (build-system asdf-build-system/sbcl)
11296 (native-inputs
11297 `(("fiveam" ,sbcl-fiveam)))
11298 (inputs
11299 `(("alexandria" ,sbcl-alexandria)
11300 ("cffi" ,sbcl-cffi)
11301 ("freetype" ,freetype)
11302 ("trivial-garbage" ,sbcl-trivial-garbage)))
11303 (arguments
11304 `(#:phases
11305 (modify-phases %standard-phases
11306 (add-after 'unpack 'fix-paths
11307 (lambda* (#:key inputs #:allow-other-keys)
11308 (substitute* "src/ffi/ft2-lib.lisp"
11309 (("\"libfreetype\"")
11310 (string-append "\"" (assoc-ref inputs "freetype")
11311 "/lib/libfreetype\"")))
11312 (substitute* "src/ffi/grovel/grovel-freetype2.lisp"
11313 (("-I/usr/include/freetype")
11314 (string-append "-I" (assoc-ref inputs "freetype")
11315 "/include/freetype")))
11316 #t)))))
11317 (home-page "https://github.com/rpav/cl-freetype2")
11318 (synopsis "Common Lisp bindings for Freetype 2")
11319 (description
11320 "This is a general Freetype 2 wrapper for Common Lisp using CFFI. It's
11321 geared toward both using Freetype directly by providing a simplified API, as
11322 well as providing access to the underlying C structures and functions for use
11323 with other libraries which may also use Freetype.")
11324 (license license:bsd-3))))
11325
11326 (define-public cl-freetype2
11327 (sbcl-package->cl-source-package sbcl-cl-freetype2))
11328
11329 (define-public ecl-cl-freetype2
11330 (sbcl-package->ecl-package sbcl-cl-freetype2))
11331
11332 (define-public sbcl-opticl-core
11333 (let ((commit "b7cd13d26df6b824b216fbc360dc27bfadf04999")
11334 (revision "0"))
11335 (package
11336 (name "sbcl-opticl-core")
11337 (version (git-version "0.0.0" revision commit))
11338 (source
11339 (origin
11340 (method git-fetch)
11341 (uri (git-reference
11342 (url "https://github.com/slyrus/opticl-core")
11343 (commit commit)))
11344 (file-name (git-file-name name version))
11345 (sha256
11346 (base32 "0458bllabcdjghfrqx6aki49c9qmvfmkk8jl75cfpi7q0i12kh95"))))
11347 (build-system asdf-build-system/sbcl)
11348 (inputs
11349 `(("alexandria" ,sbcl-alexandria)))
11350 (home-page "https://github.com/slyrus/opticl-core")
11351 (synopsis "Core classes and pixel access macros for Opticl")
11352 (description
11353 "This Common Lisp library contains the core classes and pixel access
11354 macros for the Opticl image processing library.")
11355 (license license:bsd-2))))
11356
11357 (define-public cl-opticl-core
11358 (sbcl-package->cl-source-package sbcl-opticl-core))
11359
11360 (define-public ecl-opticl-core
11361 (sbcl-package->ecl-package sbcl-opticl-core))
11362
11363 (define-public sbcl-retrospectiff
11364 (let ((commit "c2a69d77d5010f8cdd9045b3e36a08a73da5d321")
11365 (revision "0"))
11366 (package
11367 (name "sbcl-retrospectiff")
11368 (version (git-version "0.2" revision commit))
11369 (source
11370 (origin
11371 (method git-fetch)
11372 (uri (git-reference
11373 (url "https://github.com/slyrus/retrospectiff")
11374 (commit commit)))
11375 (file-name (git-file-name name version))
11376 (sha256
11377 (base32 "0qsn9hpd8j2kp43dk05j8dczz9zppdff5rrclbp45n3ksk9inw8i"))))
11378 (build-system asdf-build-system/sbcl)
11379 (native-inputs
11380 `(("fiveam" ,sbcl-fiveam)))
11381 (inputs
11382 `(("cl-jpeg" ,sbcl-cl-jpeg)
11383 ("com.gigamonkeys.binary-data" ,sbcl-com.gigamonkeys.binary-data)
11384 ("deflate" ,sbcl-deflate)
11385 ("flexi-streams" ,sbcl-flexi-streams)
11386 ("ieee-floats" ,sbcl-ieee-floats)
11387 ("opticl-core" ,sbcl-opticl-core)))
11388 (home-page "https://github.com/slyrus/retrospectiff")
11389 (synopsis "Common Lisp library for TIFF images")
11390 (description
11391 "Retrospectiff is a common lisp library for reading and writing images
11392 in the TIFF (Tagged Image File Format) format.")
11393 (license license:bsd-2))))
11394
11395 (define-public cl-retrospectif
11396 (sbcl-package->cl-source-package sbcl-retrospectiff))
11397
11398 (define-public ecl-retrospectiff
11399 (sbcl-package->ecl-package sbcl-retrospectiff))
11400
11401 (define-public sbcl-mmap
11402 (let ((commit "ba2e98c67e25f0fb8ff838238561120a23903ce7")
11403 (revision "0"))
11404 (package
11405 (name "sbcl-mmap")
11406 (version (git-version "1.0.0" revision commit))
11407 (source
11408 (origin
11409 (method git-fetch)
11410 (uri (git-reference
11411 (url "https://github.com/Shinmera/mmap")
11412 (commit commit)))
11413 (file-name (git-file-name name version))
11414 (sha256
11415 (base32 "0qd0xp20i1pcfn12kkapv9pirb6hd4ns7kz4zf1mmjwykpsln96q"))))
11416 (build-system asdf-build-system/sbcl)
11417 (native-inputs
11418 `(("alexandria" ,sbcl-alexandria)
11419 ("cffi" ,sbcl-cffi)
11420 ("parachute" ,sbcl-parachute)
11421 ("trivial-features" ,sbcl-trivial-features)))
11422 (inputs
11423 `(("cffi" ,sbcl-cffi)
11424 ("documentation-utils" ,sbcl-documentation-utils)))
11425 (home-page "https://shinmera.github.io/mmap/")
11426 (synopsis "File memory mapping for Common Lisp")
11427 (description
11428 "This is a utility library providing access to the @emph{mmap} family of
11429 functions in a portable way. It allows you to directly map a file into the
11430 address space of your process without having to manually read it into memory
11431 sequentially. Typically this is much more efficient for files that are larger
11432 than a few Kb.")
11433 (license license:zlib))))
11434
11435 (define-public cl-mmap
11436 (sbcl-package->cl-source-package sbcl-mmap))
11437
11438 (define-public ecl-mmap
11439 (sbcl-package->ecl-package sbcl-mmap))
11440
11441 (define-public sbcl-3bz
11442 (let ((commit "569614c40408f3aefc77ba233e0e4bd66d3850ad")
11443 (revision "1"))
11444 (package
11445 (name "sbcl-3bz")
11446 (version (git-version "0.0.0" revision commit))
11447 (source
11448 (origin
11449 (method git-fetch)
11450 (uri (git-reference
11451 (url "https://github.com/3b/3bz")
11452 (commit commit)))
11453 (file-name (git-file-name name version))
11454 (sha256
11455 (base32 "0kvvlvf50jhhw1s510f3clpr1a68632bq6d698yxcrx722igcrg4"))))
11456 (build-system asdf-build-system/sbcl)
11457 (inputs
11458 `(("alexandria" ,sbcl-alexandria)
11459 ("babel" ,sbcl-babel)
11460 ("cffi" ,sbcl-cffi)
11461 ("mmap" ,sbcl-mmap)
11462 ("nibbles" ,sbcl-nibbles)
11463 ("trivial-features" ,sbcl-trivial-features)))
11464 (arguments
11465 ;; FIXME: #41437 - Build fails when package name starts from a digit
11466 `(#:asd-systems '("3bz")))
11467 (home-page "https://github.com/3b/3bz")
11468 (synopsis "Deflate decompression for Common Lisp")
11469 (description
11470 "3bz is an implementation of Deflate decompression (RFC 1951) optionally
11471 with zlib (RFC 1950) or gzip (RFC 1952) wrappers, with support for reading from
11472 foreign pointers (for use with mmap and similar, etc), and from CL octet
11473 vectors and streams.")
11474 (license license:expat))))
11475
11476 (define-public cl-3bz
11477 (sbcl-package->cl-source-package sbcl-3bz))
11478
11479 (define-public ecl-3bz
11480 (sbcl-package->ecl-package sbcl-3bz))
11481
11482 (define-public sbcl-zpb-exif
11483 (package
11484 (name "sbcl-zpb-exif")
11485 (version "1.2.4")
11486 (source
11487 (origin
11488 (method git-fetch)
11489 (uri (git-reference
11490 (url "https://github.com/xach/zpb-exif")
11491 (commit (string-append "release-" version))))
11492 (file-name (git-file-name name version))
11493 (sha256
11494 (base32 "15s227jhby55cisz14xafb0p1ws2jmrg2rrbbd00lrb97im84hy6"))))
11495 (build-system asdf-build-system/sbcl)
11496 (home-page "https://xach.com/lisp/zpb-exif/")
11497 (synopsis "EXIF information extractor for Common Lisp")
11498 (description
11499 "This is a Common Lisp library to extract EXIF information from image
11500 files.")
11501 (license license:bsd-2)))
11502
11503 (define-public cl-zpb-exif
11504 (sbcl-package->cl-source-package sbcl-zpb-exif))
11505
11506 (define-public ecl-zpb-exif
11507 (sbcl-package->ecl-package sbcl-zpb-exif))
11508
11509 (define-public sbcl-pngload
11510 (package
11511 (name "sbcl-pngload")
11512 (version "2.0.0")
11513 (source
11514 (origin
11515 (method git-fetch)
11516 (uri (git-reference
11517 (url "https://github.com/bufferswap/pngload")
11518 (commit version)))
11519 (file-name (git-file-name name version))
11520 (sha256
11521 (base32 "1ix8dd0fxlf8xm0bszh1s7sx83hn0vqq8b8c9gkrd5m310w8mpvh"))))
11522 (build-system asdf-build-system/sbcl)
11523 (inputs
11524 `(("3bz" ,sbcl-3bz)
11525 ("alexandria" ,sbcl-alexandria)
11526 ("cffi" ,sbcl-cffi)
11527 ("mmap" ,sbcl-mmap)
11528 ("parse-float" ,sbcl-parse-float)
11529 ("static-vectors" ,sbcl-static-vectors)
11530 ("swap-bytes" ,sbcl-swap-bytes)
11531 ("zpb-exif" ,sbcl-zpb-exif)))
11532 (arguments
11533 ;; Test suite disabled because of a dependency cycle.
11534 ;; pngload tests depend on opticl which depends on pngload.
11535 '(#:tests? #f))
11536 (home-page "https://github.com/bufferswap/pngload")
11537 (synopsis "PNG image decoder for Common Lisp")
11538 (description
11539 "This is a Common Lisp library to load images in the PNG image format,
11540 both from files on disk, or streams in memory.")
11541 (license license:expat)))
11542
11543 (define-public cl-pngload
11544 (sbcl-package->cl-source-package sbcl-pngload))
11545
11546 (define-public ecl-pngload
11547 (sbcl-package->ecl-package sbcl-pngload))
11548
11549 (define-public sbcl-opticl
11550 (let ((commit "e8684416eca2e78e82a7b436d436ef2ea24c019d")
11551 (revision "0"))
11552 (package
11553 (name "sbcl-opticl")
11554 (version (git-version "0.0.0" revision commit))
11555 (source
11556 (origin
11557 (method git-fetch)
11558 (uri (git-reference
11559 (url "https://github.com/slyrus/opticl")
11560 (commit commit)))
11561 (file-name (git-file-name name version))
11562 (sha256
11563 (base32 "03rirnnhhisjbimlmpi725h1d3x0cfv00r57988am873dyzawmm1"))))
11564 (build-system asdf-build-system/sbcl)
11565 (native-inputs
11566 `(("fiveam" ,sbcl-fiveam)))
11567 (inputs
11568 `(("alexandria" ,sbcl-alexandria)
11569 ("cl-jpeg" ,sbcl-cl-jpeg)
11570 ("cl-tga" ,sbcl-cl-tga)
11571 ("png-read" ,sbcl-png-read)
11572 ("pngload" ,sbcl-pngload)
11573 ("retrospectiff" ,sbcl-retrospectiff)
11574 ("skippy" ,sbcl-skippy)
11575 ("zpng" ,sbcl-zpng)))
11576 (arguments
11577 '(#:asd-files '("opticl.asd")))
11578 (home-page "https://github.com/slyrus/opticl")
11579 (synopsis "Image processing library for Common Lisp")
11580 (description
11581 "Opticl is a Common Lisp library for representing, processing, loading,
11582 and saving 2-dimensional pixel-based images.")
11583 (license license:bsd-2))))
11584
11585 (define-public cl-opticl
11586 (sbcl-package->cl-source-package sbcl-opticl))
11587
11588 (define-public ecl-opticl
11589 (sbcl-package->ecl-package sbcl-opticl))
11590
11591 (define-public sbcl-mcclim
11592 (let ((commit "04cc542dd4b461b9d56406e40681d1a8f080730f")
11593 (revision "1"))
11594 (package
11595 (name "sbcl-mcclim")
11596 (version (git-version "0.9.7" revision commit))
11597 (source
11598 (origin
11599 (method git-fetch)
11600 (uri (git-reference
11601 (url "https://github.com/mcclim/mcclim")
11602 (commit commit)))
11603 (file-name (git-file-name name version))
11604 (sha256
11605 (base32 "1xjly8i62z72hfhlnz5kjd9i8xhrwckc7avyizxvhih67pkjmsx0"))))
11606 (build-system asdf-build-system/sbcl)
11607 (native-inputs
11608 `(("fiveam" ,sbcl-fiveam)
11609 ("pkg-config" ,pkg-config)))
11610 (inputs
11611 `(("alexandria" ,sbcl-alexandria)
11612 ("babel" ,sbcl-babel)
11613 ("bordeaux-threads" ,sbcl-bordeaux-threads)
11614 ("cl-freetype2" ,sbcl-cl-freetype2)
11615 ("cl-pdf" ,sbcl-cl-pdf)
11616 ("cffi" ,sbcl-cffi)
11617 ("cl-unicode" ,sbcl-cl-unicode)
11618 ("cl-vectors" ,sbcl-cl-vectors)
11619 ("closer-mop" ,sbcl-closer-mop)
11620 ("clx" ,sbcl-clx)
11621 ("flexi-streams" ,sbcl-flexi-streams)
11622 ("flexichain" ,sbcl-flexichain)
11623 ("font-dejavu" ,font-dejavu)
11624 ("fontconfig" ,fontconfig)
11625 ("freetype" ,freetype)
11626 ("harfbuzz" ,harfbuzz)
11627 ("log4cl" ,sbcl-log4cl)
11628 ("opticl" ,sbcl-opticl)
11629 ("spatial-trees" ,sbcl-spatial-trees)
11630 ("swank" ,sbcl-slime-swank)
11631 ("trivial-features" ,sbcl-trivial-features)
11632 ("trivial-garbage" ,sbcl-trivial-garbage)
11633 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
11634 ("zpb-ttf" ,sbcl-zpb-ttf)))
11635 (arguments
11636 '(#:asd-systems '("mcclim"
11637 "clim-examples")
11638 #:phases
11639 (modify-phases %standard-phases
11640 (add-after 'unpack 'fix-paths
11641 (lambda* (#:key inputs #:allow-other-keys)
11642 ;; mcclim-truetype uses DejaVu as default font and
11643 ;; sets the path at build time.
11644 (substitute* "Extensions/fonts/fontconfig.lisp"
11645 (("/usr/share/fonts/truetype/dejavu/")
11646 (string-append (assoc-ref inputs "font-dejavu")
11647 "/share/fonts/truetype/")))
11648 (substitute* "Extensions/fontconfig/src/functions.lisp"
11649 (("libfontconfig\\.so")
11650 (string-append (assoc-ref inputs "fontconfig")
11651 "/lib/libfontconfig.so")))
11652 (substitute* "Extensions/harfbuzz/src/functions.lisp"
11653 (("libharfbuzz\\.so")
11654 (string-append (assoc-ref inputs "harfbuzz")
11655 "/lib/libharfbuzz.so")))
11656 #t))
11657 (add-after 'unpack 'fix-build
11658 (lambda _
11659 ;; The cffi-grovel system does not get loaded automatically,
11660 ;; so we load it explicitly.
11661 (substitute* "Extensions/fontconfig/mcclim-fontconfig.asd"
11662 (("\\(asdf:defsystem #:mcclim-fontconfig" all)
11663 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
11664 (substitute* "Extensions/harfbuzz/mcclim-harfbuzz.asd"
11665 (("\\(asdf:defsystem #:mcclim-harfbuzz" all)
11666 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
11667 #t)))))
11668 (home-page "https://common-lisp.net/project/mcclim/")
11669 (synopsis "Common Lisp GUI toolkit")
11670 (description
11671 "McCLIM is an implementation of the @emph{Common Lisp Interface Manager
11672 specification}, a toolkit for writing GUIs in Common Lisp.")
11673 (license license:lgpl2.1+))))
11674
11675 (define-public cl-mcclim
11676 (sbcl-package->cl-source-package sbcl-mcclim))
11677
11678 (define-public ecl-mcclim
11679 (sbcl-package->ecl-package sbcl-mcclim))
11680
11681 (define-public sbcl-cl-inflector
11682 (let ((commit "f1ab16919ccce3bd82a0042677d9616dde2034fe")
11683 (revision "1"))
11684 (package
11685 (name "sbcl-cl-inflector")
11686 (version (git-version "0.2" revision commit))
11687 (source
11688 (origin
11689 (method git-fetch)
11690 (uri (git-reference
11691 (url "https://github.com/AccelerationNet/cl-inflector")
11692 (commit commit)))
11693 (file-name (git-file-name name version))
11694 (sha256
11695 (base32 "1xwwlhik1la4fp984qnx2dqq24v012qv4x0y49sngfpwg7n0ya7y"))))
11696 (build-system asdf-build-system/sbcl)
11697 (native-inputs
11698 `(("lisp-unit2" ,sbcl-lisp-unit2)))
11699 (inputs
11700 `(("alexandria" ,sbcl-alexandria)
11701 ("cl-ppcre" ,sbcl-cl-ppcre)))
11702 (home-page "https://github.com/AccelerationNet/cl-inflector")
11703 (synopsis "Library to pluralize/singularize English and Portuguese words")
11704 (description
11705 "This is a common lisp library to easily pluralize and singularize
11706 English and Portuguese words. This is a port of the ruby ActiveSupport
11707 Inflector module.")
11708 (license license:expat))))
11709
11710 (define-public cl-inflector
11711 (sbcl-package->cl-source-package sbcl-cl-inflector))
11712
11713 (define-public ecl-cl-inflector
11714 (sbcl-package->ecl-package sbcl-cl-inflector))
11715
11716 (define-public sbcl-ixf
11717 (let ((commit "ed26f87e4127e4a9e3aac4ff1e60d1f39cca5183")
11718 (revision "1"))
11719 (package
11720 (name "sbcl-ixf")
11721 (version (git-version "0.1.0" revision commit))
11722 (source
11723 (origin
11724 (method git-fetch)
11725 (uri (git-reference
11726 (url "https://github.com/dimitri/cl-ixf")
11727 (commit commit)))
11728 (file-name (git-file-name "cl-ixf" version))
11729 (sha256
11730 (base32 "1wjdnf4vr9z7lcfc49kl43g6l2i23q9n81siy494k17d766cdvqa"))))
11731 (build-system asdf-build-system/sbcl)
11732 (inputs
11733 `(("alexandria" ,sbcl-alexandria)
11734 ("babel" ,sbcl-babel)
11735 ("cl-ppcre" ,sbcl-cl-ppcre)
11736 ("ieee-floats" ,sbcl-ieee-floats)
11737 ("local-time" ,sbcl-local-time)
11738 ("md5" ,sbcl-md5)
11739 ("split-sequence" ,sbcl-split-sequence)))
11740 (home-page "https://github.com/dimitri/cl-ixf")
11741 (synopsis "Parse IBM IXF file format")
11742 (description
11743 "This is a Common Lisp library to handle the IBM PC version of the IXF
11744 (Integration Exchange Format) file format.")
11745 (license license:public-domain))))
11746
11747 (define-public ecl-ixf
11748 (sbcl-package->ecl-package sbcl-ixf))
11749
11750 (define-public cl-ixf
11751 (sbcl-package->cl-source-package sbcl-ixf))
11752
11753 (define-public sbcl-qbase64
11754 (package
11755 (name "sbcl-qbase64")
11756 (version "0.3.0")
11757 (source
11758 (origin
11759 (method git-fetch)
11760 (uri (git-reference
11761 (url "https://github.com/chaitanyagupta/qbase64")
11762 (commit version)))
11763 (file-name (git-file-name name version))
11764 (sha256
11765 (base32 "1dir0s70ca3hagxv9x15zq4p4ajgl7jrcgqsza2n2y7iqbxh0dwi"))))
11766 (build-system asdf-build-system/sbcl)
11767 (inputs
11768 `(("metabang-bind" ,sbcl-metabang-bind)
11769 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
11770 (native-inputs
11771 `(("fiveam" ,sbcl-fiveam)))
11772 (home-page "https://github.com/chaitanyagupta/qbase64")
11773 (synopsis "Base64 encoder and decoder for Common Lisp")
11774 (description "@code{qbase64} provides a fast and flexible base64 encoder
11775 and decoder for Common Lisp.")
11776 (license license:bsd-3)))
11777
11778 (define-public cl-qbase64
11779 (sbcl-package->cl-source-package sbcl-qbase64))
11780
11781 (define-public ecl-qbase64
11782 (sbcl-package->ecl-package sbcl-qbase64))
11783
11784 (define-public sbcl-lw-compat
11785 ;; No release since 2013.
11786 (let ((commit "aabfe28c6c1a4949f9d7b3cb30319367c9fd1c0d"))
11787 (package
11788 (name "sbcl-lw-compat")
11789 (version (git-version "1.0.0" "1" commit))
11790 (source
11791 (origin
11792 (method git-fetch)
11793 (uri (git-reference
11794 (url "https://github.com/pcostanza/lw-compat/")
11795 (commit commit)))
11796 (file-name (git-file-name name version))
11797 (sha256
11798 (base32 "131rq5k2mlv9bfhmafiv6nfsivl4cxx13d9wr06v5jrqnckh4aav"))))
11799 (build-system asdf-build-system/sbcl)
11800 (home-page "https://github.com/pcostanza/lw-compat/")
11801 (synopsis "LispWorks utilities ported to other Common Lisp implementations")
11802 (description "This package contains a few utility functions from the
11803 LispWorks library that are used in software such as ContextL.")
11804 (license license:expat))))
11805
11806 (define-public cl-lw-compat
11807 (sbcl-package->cl-source-package sbcl-lw-compat))
11808
11809 (define-public ecl-lw-compat
11810 (sbcl-package->ecl-package sbcl-lw-compat))
11811
11812 (define-public sbcl-contextl
11813 ;; No release since 2013.
11814 (let ((commit "5d18a71a85824f6c25a9f35a21052f967b8b6bb9"))
11815 (package
11816 (name "sbcl-contextl")
11817 (version (git-version "1.0.0" "1" commit))
11818 (source
11819 (origin
11820 (method git-fetch)
11821 (uri (git-reference
11822 (url "https://github.com/pcostanza/contextl/")
11823 (commit commit)))
11824 (file-name (git-file-name name version))
11825 (sha256
11826 (base32 "0gk1izx6l6g48nypmnm9r6mzjx0jixqjj2kc6klf8a88rr5xd226"))))
11827 (build-system asdf-build-system/sbcl)
11828 (inputs
11829 `(("closer-mop" ,sbcl-closer-mop)
11830 ("lw-compat" ,sbcl-lw-compat)))
11831 (home-page "https://github.com/pcostanza/contextl")
11832 (synopsis "Context-oriented programming for Common Lisp")
11833 (description "ContextL is a CLOS extension for Context-Oriented
11834 Programming (COP).
11835
11836 Find overview of ContextL's features in an overview paper:
11837 @url{http://www.p-cos.net/documents/contextl-soa.pdf}. See also this general
11838 overview article about COP which also contains some ContextL examples:
11839 @url{http://www.jot.fm/issues/issue_2008_03/article4/}.")
11840 (license license:expat))))
11841
11842 (define-public cl-contextl
11843 (sbcl-package->cl-source-package sbcl-contextl))
11844
11845 (define-public ecl-contextl
11846 (sbcl-package->ecl-package sbcl-contextl))
11847
11848 (define-public sbcl-hu.dwim.common-lisp
11849 (package
11850 (name "sbcl-hu.dwim.common-lisp")
11851 (version "2015-07-09")
11852 (source
11853 (origin
11854 (method url-fetch)
11855 (uri (string-append
11856 "http://beta.quicklisp.org/archive/hu.dwim.common-lisp/"
11857 version "/hu.dwim.common-lisp-"
11858 (string-replace-substring version "-" "")
11859 "-darcs.tgz"))
11860 (sha256
11861 (base32 "13cxrvh55rw080mvfir7s7k735l9rcfh3khxp97qfwd5rz0gadb9"))))
11862 (build-system asdf-build-system/sbcl)
11863 (native-inputs
11864 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11865 (home-page "http://dwim.hu/")
11866 (synopsis "Redefine some standard Common Lisp names")
11867 (description "This library is a redefinition of the standard Common Lisp
11868 package that includes a number of renames and shadows. ")
11869 (license license:public-domain)))
11870
11871 (define-public cl-hu.dwim.common-lisp
11872 (sbcl-package->cl-source-package sbcl-hu.dwim.common-lisp))
11873
11874 (define-public ecl-hu.dwim.common-lisp
11875 (sbcl-package->ecl-package sbcl-hu.dwim.common-lisp))
11876
11877 (define-public sbcl-hu.dwim.common
11878 (package
11879 (name "sbcl-hu.dwim.common")
11880 (version "2015-07-09")
11881 (source
11882 (origin
11883 (method url-fetch)
11884 (uri (string-append
11885 "http://beta.quicklisp.org/archive/hu.dwim.common/"
11886 version "/hu.dwim.common-"
11887 (string-replace-substring version "-" "")
11888 "-darcs.tgz"))
11889 (sha256
11890 (base32 "12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp"))))
11891 (build-system asdf-build-system/sbcl)
11892 (native-inputs
11893 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11894 (inputs
11895 `(("alexandria" ,sbcl-alexandria)
11896 ("anaphora" ,sbcl-anaphora)
11897 ("closer-mop" ,sbcl-closer-mop)
11898 ("hu.dwim.common-lisp" ,sbcl-hu.dwim.common-lisp)
11899 ("iterate" ,sbcl-iterate)
11900 ("metabang-bind" ,sbcl-metabang-bind)))
11901 (home-page "http://dwim.hu/")
11902 (synopsis "Common Lisp library shared by other hu.dwim systems")
11903 (description "This package contains a support library for other
11904 hu.dwim systems.")
11905 (license license:public-domain)))
11906
11907 (define-public cl-hu.dwim.common
11908 (sbcl-package->cl-source-package sbcl-hu.dwim.common))
11909
11910 (define-public ecl-hu.dwim.common
11911 (sbcl-package->ecl-package sbcl-hu.dwim.common))
11912
11913 (define-public sbcl-hu.dwim.defclass-star
11914 (let ((commit "39d458f1b1bc830d1f5e18a6a35bf0e96a2cfd61"))
11915 (package
11916 (name "sbcl-hu.dwim.defclass-star")
11917 ;; We used to set version from the date when it was a darcs repo, so we
11918 ;; keep the year so that package gets updated on previous installs.
11919 (version (git-version "2021" "1" commit))
11920 (source
11921 (origin
11922 (method git-fetch)
11923 (uri (git-reference
11924 (url "https://github.com/hu-dwim/hu.dwim.defclass-star")
11925 (commit commit)))
11926 (file-name (git-file-name name version))
11927 (sha256
11928 (base32 "0hfkq2wad98vkyxdg1wh18y86d9w9yqkm8lxkk96szvpwymm7lmq"))))
11929 (build-system asdf-build-system/sbcl)
11930 (native-inputs
11931 `( ;; These 2 inputs are only needed tests which are disabled, see below.
11932 ;; ("hu.dwim.common" ,sbcl-hu.dwim.common)
11933 ;; Need cl- package for the :hu.dwim.stefil+hu.dwim.def+swank system.
11934 ;; ("hu.dwim.stefil" ,cl-hu.dwim.stefil)
11935 ("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11936 (arguments
11937 `(#:test-asd-file "hu.dwim.defclass-star.test.asd"
11938 ;; Tests require a circular dependency: hu.dwim.stefil -> hu.dwim.def
11939 ;; -> hu.dwim.util -> hu.dwim.defclass-star.
11940 #:tests? #f))
11941 (home-page "https://github.com/hu-dwim/hu.dwim.defclass-star")
11942 (synopsis "Simplify definitions with defclass* and friends in Common Lisp")
11943 (description "@code{defclass-star} provides defclass* and defcondition* to
11944 simplify class and condition declarations. Features include:
11945
11946 @itemize
11947 @item Automatically export all or select slots at compile time.
11948 @item Define the @code{:initarg} and @code{:accessor} automatically.
11949 @item Specify a name transformer for both the @code{:initarg} and
11950 @code{:accessor}, etc.
11951 @item Specify the @code{:initform} as second slot value.
11952 @end itemize
11953
11954 See
11955 @url{https://common-lisp.net/project/defclass-star/configuration.lisp.html}
11956 for an example.")
11957 (license license:public-domain))))
11958
11959 (define-public cl-hu.dwim.defclass-star
11960 (sbcl-package->cl-source-package sbcl-hu.dwim.defclass-star))
11961
11962 (define-public ecl-hu.dwim.defclass-star
11963 (sbcl-package->ecl-package sbcl-hu.dwim.defclass-star))
11964
11965 (define-public sbcl-livesupport
11966 (let ((commit "71e6e412df9f3759ad8378fabb203913d82e228a")
11967 (revision "1"))
11968 (package
11969 (name "sbcl-livesupport")
11970 (version (git-version "0.0.0" revision commit))
11971 (source
11972 (origin
11973 (method git-fetch)
11974 (uri (git-reference
11975 (url "https://github.com/cbaggers/livesupport")
11976 (commit commit)))
11977 (file-name (git-file-name name version))
11978 (sha256
11979 (base32 "1rvnl0mncylbx63608pz5llss7y92j7z3ydambk9mcnjg2mjaapg"))))
11980 (build-system asdf-build-system/sbcl)
11981 (home-page "https://github.com/cbaggers/livesupport")
11982 (synopsis "Some helpers that make livecoding a little easier")
11983 (description "This package provides a macro commonly used in livecoding to
11984 enable continuing when errors are raised. Simply wrap around a chunk of code
11985 and it provides a restart called @code{continue} which ignores the error and
11986 carrys on from the end of the body.")
11987 (license license:bsd-2))))
11988
11989 (define-public cl-livesupport
11990 (sbcl-package->cl-source-package sbcl-livesupport))
11991
11992 (define-public ecl-livesupport
11993 (sbcl-package->ecl-package sbcl-livesupport))
11994
11995 (define-public sbcl-envy
11996 (let ((commit "956321b2852d58ba71c6fe621f5c2924178e9f88")
11997 (revision "1"))
11998 (package
11999 (name "sbcl-envy")
12000 (version (git-version "0.1" revision commit))
12001 (home-page "https://github.com/fukamachi/envy")
12002 (source
12003 (origin
12004 (method git-fetch)
12005 (uri (git-reference
12006 (url home-page)
12007 (commit commit)))
12008 (file-name (git-file-name name version))
12009 (sha256
12010 (base32 "17iwrfxcdinjbb2h6l09qf40s7xkbhrpmnljlwpjy8l8rll8h3vg"))))
12011 (build-system asdf-build-system/sbcl)
12012 ;; (native-inputs ; Only for tests.
12013 ;; `(("prove" ,sbcl-prove)
12014 ;; ("osicat" ,sbcl-osicat)))
12015 (arguments
12016 '(#:phases
12017 (modify-phases %standard-phases
12018 (add-after 'unpack 'fix-tests
12019 (lambda _
12020 (substitute* "envy-test.asd"
12021 (("cl-test-more") "prove"))
12022 #t)))
12023 ;; Tests fail with
12024 ;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
12025 ;; like xsubseq. Why?
12026 #:tests? #f))
12027 (synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV.")
12028 (description "Envy is a configuration manager for various applications.
12029 Envy uses an environment variable to determine a configuration to use. This
12030 can separate configuration system from an implementation.")
12031 (license license:bsd-2))))
12032
12033 (define-public cl-envy
12034 (sbcl-package->cl-source-package sbcl-envy))
12035
12036 (define-public ecl-envy
12037 (sbcl-package->ecl-package sbcl-envy))
12038
12039 (define-public sbcl-mito
12040 (let ((commit "d3b9e375ef364a65692da2185085a08c969ac88a")
12041 (revision "1"))
12042 (package
12043 (name "sbcl-mito")
12044 (version (git-version "0.1" revision commit))
12045 (home-page "https://github.com/fukamachi/mito")
12046 (source
12047 (origin
12048 (method git-fetch)
12049 (uri (git-reference
12050 (url home-page)
12051 (commit commit)))
12052 (file-name (git-file-name name version))
12053 (sha256
12054 (base32 "08mncgzjnbbsf1a6am3l73iw4lyfvz5ldjg5g84awfaxml4p73mb"))))
12055 (build-system asdf-build-system/sbcl)
12056 (native-inputs
12057 `(("prove" ,sbcl-prove)))
12058 (inputs
12059 `(("alexandria" ,sbcl-alexandria)
12060 ("cl-ppcre" ,sbcl-cl-ppcre)
12061 ("cl-reexport" ,sbcl-cl-reexport)
12062 ("closer-mop" ,sbcl-closer-mop)
12063 ("dbi" ,sbcl-dbi)
12064 ("dissect" ,sbcl-dissect)
12065 ("esrap" ,sbcl-esrap)
12066 ("local-time" ,sbcl-local-time)
12067 ("optima" ,sbcl-optima)
12068 ("sxql" ,sbcl-sxql)
12069 ("uuid" ,sbcl-uuid)))
12070 (arguments
12071 '(#:phases
12072 (modify-phases %standard-phases
12073 (add-after 'unpack 'remove-non-functional-tests
12074 (lambda _
12075 (substitute* "mito-test.asd"
12076 (("\\(:test-file \"db/mysql\"\\)") "")
12077 (("\\(:test-file \"db/postgres\"\\)") "")
12078 (("\\(:test-file \"dao\"\\)") "")
12079 ;; TODO: migration/sqlite3 should work, re-enable once
12080 ;; upstream has fixed it:
12081 ;; https://github.com/fukamachi/mito/issues/70
12082 (("\\(:test-file \"migration/sqlite3\"\\)") "")
12083 (("\\(:test-file \"migration/mysql\"\\)") "")
12084 (("\\(:test-file \"migration/postgres\"\\)") "")
12085 (("\\(:test-file \"postgres-types\"\\)") "")
12086 (("\\(:test-file \"mixin\"\\)") ""))
12087 #t)))
12088 ;; TODO: While all enabled tests pass, the phase fails with:
12089 ;; Component MITO-ASD::MITO-TEST not found, required by #<SYSTEM "mito">
12090 #:tests? #f))
12091 (synopsis "ORM for Common Lisp with migrations and relationships support")
12092 (description "Mito is yet another object relational mapper, and it aims
12093 to be a successor of Integral.
12094
12095 @itemize
12096 @item Support MySQL, PostgreSQL and SQLite3.
12097 @item Add id (serial/uuid primary key), created_at and updated_at by default
12098 like Ruby's ActiveRecord.
12099 @item Migrations.
12100 @item Database schema versioning.
12101 @end itemize\n")
12102 (license license:llgpl))))
12103
12104 (define-public cl-mito
12105 (sbcl-package->cl-source-package sbcl-mito))
12106
12107 (define-public ecl-mito
12108 (sbcl-package->ecl-package sbcl-mito))
12109
12110 (define-public sbcl-kebab
12111 (let ((commit "e7f77644c4e46131e7b8039d191d35fe6211f31b")
12112 (revision "1"))
12113 (package
12114 (name "sbcl-kebab")
12115 (version (git-version "0.1" revision commit))
12116 (home-page "https://github.com/pocket7878/kebab")
12117 (source
12118 (origin
12119 (method git-fetch)
12120 (uri (git-reference
12121 (url home-page)
12122 (commit commit)))
12123 (file-name (git-file-name name version))
12124 (sha256
12125 (base32 "0j5haabnvj0vz0rx9mwyfsb3qzpga9nickbjw8xs6vypkdzlqv1b"))))
12126 (build-system asdf-build-system/sbcl)
12127 (inputs
12128 `(("cl-ppcre" ,sbcl-cl-ppcre)
12129 ("alexandria" ,sbcl-alexandria)
12130 ("cl-interpol" ,sbcl-cl-interpol)
12131 ("split-sequence" ,sbcl-split-sequence)))
12132 (native-inputs
12133 `(("prove" ,sbcl-prove)))
12134 (arguments
12135 ;; Tests passes but the phase fails with
12136 ;; Component KEBAB-ASD::KEBAB-TEST not found, required by #<SYSTEM "kebab">.
12137 `(#:tests? #f))
12138 (synopsis "Common Lisp case converter")
12139 (description "This Common Lisp library converts strings, symbols and
12140 keywords between any of the following typographical cases: PascalCase,
12141 camelCase, snake_case, kebab-case (lisp-case).")
12142 (license license:llgpl))))
12143
12144 (define-public cl-kebab
12145 (sbcl-package->cl-source-package sbcl-kebab))
12146
12147 (define-public ecl-kebab
12148 (sbcl-package->ecl-package sbcl-kebab))
12149
12150 (define-public sbcl-datafly
12151 (let ((commit "adece27fcbc4b5ea39ad1a105048b6b7166e3b0d")
12152 (revision "1"))
12153 (package
12154 (name "sbcl-datafly")
12155 (version (git-version "0.1" revision commit))
12156 (home-page "https://github.com/fukamachi/datafly")
12157 (source
12158 (origin
12159 (method git-fetch)
12160 (uri (git-reference
12161 (url home-page)
12162 (commit commit)))
12163 (file-name (git-file-name name version))
12164 (sha256
12165 (base32 "16b78kzmglp2a4nxlxxl7rpf5zaibsgagn0p3c56fsxvx0c4hszv"))))
12166 (build-system asdf-build-system/sbcl)
12167 (inputs
12168 `(("alexandria" ,sbcl-alexandria)
12169 ("iterate" ,sbcl-iterate)
12170 ("optima" ,sbcl-optima)
12171 ("trivial-types" ,sbcl-trivial-types)
12172 ("closer-mop" ,sbcl-closer-mop)
12173 ("cl-syntax" ,sbcl-cl-syntax)
12174 ("sxql" ,sbcl-sxql)
12175 ("dbi" ,sbcl-dbi)
12176 ("babel" ,sbcl-babel)
12177 ("local-time" ,sbcl-local-time)
12178 ("function-cache" ,sbcl-function-cache)
12179 ("jonathan" ,sbcl-jonathan)
12180 ("kebab" ,sbcl-kebab)
12181 ("log4cl" ,sbcl-log4cl)))
12182 (native-inputs
12183 `(("prove" ,sbcl-prove)))
12184 (arguments
12185 ;; TODO: Tests fail with
12186 ;; While evaluating the form starting at line 22, column 0
12187 ;; of #P"/tmp/guix-build-sbcl-datafly-0.1-1.adece27.drv-0/source/t/datafly.lisp":
12188 ;; Unhandled SQLITE:SQLITE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
12189 ;; {10009F8083}>:
12190 ;; Error when binding parameter 1 to value NIL.
12191 ;; Code RANGE: column index out of range.
12192 `(#:tests? #f))
12193 (synopsis "Lightweight database library for Common Lisp")
12194 (description "Datafly is a lightweight database library for Common Lisp.")
12195 (license license:bsd-3))))
12196
12197 (define-public cl-datafly
12198 (sbcl-package->cl-source-package sbcl-datafly))
12199
12200 (define-public ecl-datafly
12201 (sbcl-package->ecl-package sbcl-datafly))
12202
12203 (define-public sbcl-do-urlencode
12204 (let ((commit "199846441dad5dfac5478b8dee4b4e20d107af6a")
12205 (revision "1"))
12206 (package
12207 (name "sbcl-do-urlencode")
12208 (version (git-version "0.0.0" revision commit))
12209 (home-page "https://github.com/drdo/do-urlencode")
12210 (source
12211 (origin
12212 (method git-fetch)
12213 (uri (git-reference
12214 (url home-page)
12215 (commit commit)))
12216 (file-name (git-file-name name version))
12217 (sha256
12218 (base32 "0k2i3d4k9cpci235mwfm0c5a4yqfkijr716bjv7cdlpzx88lazm9"))))
12219 (build-system asdf-build-system/sbcl)
12220 (inputs
12221 `(("alexandria" ,sbcl-alexandria)
12222 ("babel" ,sbcl-babel)))
12223 (synopsis "Percent Encoding (aka URL Encoding) Common Lisp library")
12224 (description "This library provides trivial percent encoding and
12225 decoding functions for URLs.")
12226 (license license:isc))))
12227
12228 (define-public cl-do-urlencode
12229 (sbcl-package->cl-source-package sbcl-do-urlencode))
12230
12231 (define-public ecl-do-urlencode
12232 (sbcl-package->ecl-package sbcl-do-urlencode))
12233
12234 (define-public sbcl-cl-emb
12235 (let ((commit "fd8652174d048d4525a81f38cdf42f4fa519f840")
12236 (revision "1"))
12237 (package
12238 (name "sbcl-cl-emb")
12239 (version (git-version "0.4.3" revision commit))
12240 (home-page "https://common-lisp.net/project/cl-emb/")
12241 (source
12242 (origin
12243 (method git-fetch)
12244 (uri (git-reference
12245 (url "https://github.com/38a938c2/cl-emb")
12246 (commit commit)))
12247 (file-name (git-file-name name version))
12248 (sha256
12249 (base32 "1xcm31n7afh5316lwz8iqbjx7kn5lw0l11arg8mhdmkx42aj4gkk"))))
12250 (build-system asdf-build-system/sbcl)
12251 (inputs
12252 `(("cl-ppcre" ,sbcl-cl-ppcre)))
12253 (synopsis "Templating system for Common Lisp")
12254 (description "A mixture of features from eRuby and HTML::Template. You
12255 could name it \"Yet Another LSP\" (LispServer Pages) but it's a bit more than
12256 that and not limited to a certain server or text format.")
12257 (license license:llgpl))))
12258
12259 (define-public cl-emb
12260 (sbcl-package->cl-source-package sbcl-cl-emb))
12261
12262 (define-public ecl-cl-emb
12263 (sbcl-package->ecl-package sbcl-cl-emb))
12264
12265 (define-public sbcl-cl-project
12266 (let ((commit "151107014e534fc4666222d57fec2cc8549c8814")
12267 (revision "1"))
12268 (package
12269 (name "sbcl-cl-project")
12270 (version (git-version "0.3.1" revision commit))
12271 (home-page "https://github.com/fukamachi/cl-project")
12272 (source
12273 (origin
12274 (method git-fetch)
12275 (uri (git-reference
12276 (url home-page)
12277 (commit commit)))
12278 (file-name (git-file-name name version))
12279 (sha256
12280 (base32 "1rmh6s1ncv8s2yrr14ja9wisgg745sq6xibqwb341ikdicxdp26y"))))
12281 (build-system asdf-build-system/sbcl)
12282 (inputs
12283 `(("cl-emb" ,sbcl-cl-emb)
12284 ("cl-ppcre" ,sbcl-cl-ppcre)
12285 ("local-time" ,sbcl-local-time)
12286 ("prove" ,sbcl-prove)))
12287 (arguments
12288 ;; Tests depend on caveman, which in turns depends on cl-project.
12289 '(#:tests? #f
12290 #:asd-files '("cl-project.asd")))
12291 (synopsis "Generate a skeleton for modern Common Lisp projects")
12292 (description "This library provides a modern project skeleton generator.
12293 In contract with other generators, CL-Project generates one package per file
12294 and encourages unit testing by generating a system for unit testing, so you
12295 can begin writing unit tests as soon as the project is generated.")
12296 (license license:llgpl))))
12297
12298 (define-public cl-project
12299 (sbcl-package->cl-source-package sbcl-cl-project))
12300
12301 (define-public ecl-cl-project
12302 (sbcl-package->ecl-package sbcl-cl-project))
12303
12304 (define-public sbcl-caveman
12305 (let ((commit "faa5f7e3b364fd7e7096af9a7bb06728b8d80441") ; No release since 2012
12306 (revision "1"))
12307 (package
12308 (name "sbcl-caveman")
12309 (version (git-version "2.4.0" revision commit))
12310 (home-page "http://8arrow.org/caveman/")
12311 (source
12312 (origin
12313 (method git-fetch)
12314 (uri (git-reference
12315 (url "https://github.com/fukamachi/caveman/")
12316 (commit commit)))
12317 (file-name (git-file-name name version))
12318 (sha256
12319 (base32 "0kh0gx05pczk8f7r9qdi4zn1p3d0a2prps27k7jpgvc1dxkl8qhq"))))
12320 (build-system asdf-build-system/sbcl)
12321 (inputs
12322 `(("ningle" ,cl-ningle)
12323 ("lack" ,sbcl-lack)
12324 ("cl-project" ,sbcl-cl-project)
12325 ("dbi" ,sbcl-dbi)
12326 ("cl-syntax" ,sbcl-cl-syntax)
12327 ("myway" ,sbcl-myway)
12328 ("quri" ,sbcl-quri)))
12329 (native-inputs
12330 `(("usocket" ,sbcl-usocket)
12331 ("dexador" ,sbcl-dexador)))
12332 (arguments
12333 `(#:asd-files '("caveman2.asd")
12334 #:asd-systems '("caveman2")
12335 #:phases
12336 (modify-phases %standard-phases
12337 (add-after 'unpack 'remove-v1
12338 (lambda _
12339 (delete-file-recursively "v1")
12340 (for-each delete-file
12341 '("README.v1.markdown" "caveman.asd" "caveman-test.asd")))))
12342 ;; TODO: Tests fail with:
12343 ;; writing /gnu/store/...-sbcl-caveman-2.4.0-1.faa5f7e/share/common-lisp/sbcl-source/caveman2/v2/t/tmp/myapp573/tests/myapp573.lisp
12344 ;; While evaluating the form starting at line 38, column 0
12345 ;; of #P"/tmp/guix-build-sbcl-caveman-2.4.0-1.faa5f7e.drv-0/source/v2/t/caveman.lisp":
12346 ;; Unhandled ASDF/FIND-COMPONENT:MISSING-COMPONENT in thread #<SB-THREAD:THREAD "main thread" RUNNING
12347 ;; {10009F8083}>:
12348 ;; Component "myapp573" not found
12349 #:tests? #f))
12350 (synopsis "Lightweight web application framework in Common Lisp")
12351 (description "Caveman is intended to be a collection of common parts for
12352 web applications. Caveman2 has three design goals:
12353
12354 @itemize
12355 @item Be extensible.
12356 @item Be practical.
12357 @item Don't force anything.
12358 @end itemize\n")
12359 (license license:llgpl))))
12360
12361 (define-public cl-caveman
12362 (package
12363 (inherit
12364 (sbcl-package->cl-source-package sbcl-caveman))
12365 (propagated-inputs
12366 `(("ningle" ,cl-ningle)))))
12367
12368 (define-public ecl-caveman
12369 (sbcl-package->ecl-package sbcl-caveman))
12370
12371 (define-public sbcl-lambda-fiddle
12372 (let ((commit "d16bba55acf6065b412f64ab8fdff679a4a32b1e") ;; no tagged branch
12373 (revision "1"))
12374 (package
12375 (name "sbcl-lambda-fiddle")
12376 (version (git-version "1.0.0" revision commit))
12377 (source
12378 (origin
12379 (method git-fetch)
12380 (uri (git-reference
12381 (url "https://github.com/Shinmera/lambda-fiddle")
12382 (commit commit)))
12383 (file-name (git-file-name name version))
12384 (sha256
12385 (base32 "1zarj1pqjqmk95kdx1axkgpwy2wq3canczk7f9z5hvaw5an6gand"))))
12386 (build-system asdf-build-system/sbcl)
12387 (home-page "https://github.com/Shinmera/lambda-fiddle")
12388 (synopsis "Collection of utilities to process lambda-lists")
12389 (description "This collection of utilities is useful in contexts where
12390 you want a macro that uses lambda-lists in some fashion but need more precise
12391 processing.")
12392 (license license:zlib))))
12393
12394 (define-public cl-lambda-fiddle
12395 (sbcl-package->cl-source-package sbcl-lambda-fiddle))
12396
12397 (define-public ecl-lambda-fiddle
12398 (sbcl-package->ecl-package sbcl-lambda-fiddle))
12399
12400 (define-public sbcl-xmls
12401 (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
12402 (revision "1"))
12403 (package
12404 (name "sbcl-xmls")
12405 (version (git-version "3.0.2" revision commit))
12406 (source
12407 (origin
12408 (method git-fetch)
12409 (uri (git-reference
12410 (url "https://github.com/rpgoldman/xmls")
12411 (commit commit)))
12412 (file-name (git-file-name name version))
12413 (sha256
12414 (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
12415 (native-inputs
12416 `(("fiveam" ,sbcl-fiveam)))
12417 (build-system asdf-build-system/sbcl)
12418 (home-page "https://github.com/rpgoldman/xmls")
12419 (synopsis "Non-validating XML parser for Common Lisp")
12420 (description "Xmls is a self-contained, easily embedded parser that
12421 recognizes a useful subset of the XML spec. It provides a simple mapping from
12422 XML to Lisp structures or s-expressions and back.")
12423 (license license:bsd-2))))
12424
12425 (define-public cl-xmls
12426 (sbcl-package->cl-source-package sbcl-xmls))
12427
12428 (define-public ecl-xmls
12429 (sbcl-package->ecl-package sbcl-xmls))
12430
12431 (define-public sbcl-geco
12432 (package
12433 (name "sbcl-geco")
12434 (version "2.1.1")
12435 (source
12436 (origin
12437 (method git-fetch)
12438 (uri (git-reference
12439 (url "https://github.com/gpwwjr/GECO")
12440 (commit (string-append "v" version))))
12441 (file-name (git-file-name "geco" version))
12442 (sha256
12443 (base32 "1rc8a4mk40hjx5qy980hjylv6xxqdbq38hg8c4w30y93abfd519s"))))
12444 (build-system asdf-build-system/sbcl)
12445 (home-page "http://hiwaay.net/~gpw/geco/geco.html")
12446 (synopsis "Genetic algorithm toolkit for Common Lisp")
12447 (description
12448 "GECO (Genetic Evolution through Combination of Objects) is an extensible,
12449 object-oriented framework for prototyping genetic algorithms in Common Lisp.")
12450 (license license:lgpl2.1+)))
12451
12452 (define-public cl-geco
12453 (sbcl-package->cl-source-package sbcl-geco))
12454
12455 (define-public ecl-geco
12456 (sbcl-package->ecl-package sbcl-geco))
12457
12458 (define-public sbcl-html-entities
12459 (let ((commit "4af018048e891f41d77e7d680ed3aeb639e1eedb"))
12460 (package
12461 (name "sbcl-html-entities")
12462 (version (git-version "0.02" "1" commit))
12463 (source
12464 (origin
12465 (method git-fetch)
12466 (uri (git-reference
12467 (url "https://github.com/BnMcGn/html-entities/")
12468 (commit commit)))
12469 (file-name (git-file-name name version))
12470 (sha256
12471 (base32 "1b2yl6lf6vis17y4n5s505p7ica96bdafcl6vydy1hg50fy33nfr"))))
12472 (build-system asdf-build-system/sbcl)
12473 (inputs
12474 `(("ppcre" ,sbcl-cl-ppcre)))
12475 (native-inputs
12476 `(("fiveam" ,sbcl-fiveam)))
12477 (home-page "https://github.com/BnMcGn/html-entities/")
12478 (synopsis "Encode and decode entities in HTML with Common Lisp")
12479 (description "Html-entities is a Common Lisp library that lets you
12480 encode and decode entities in HTML.")
12481 (license license:expat))))
12482
12483 (define-public cl-html-entities
12484 (sbcl-package->cl-source-package sbcl-html-entities))
12485
12486 (define-public ecl-html-entities
12487 (sbcl-package->ecl-package sbcl-html-entities))
12488
12489 (define-public sbcl-quicksearch
12490 (let ((commit "fb02ecf7c876ec580ab18c7d2c8c7814c06af599"))
12491 (package
12492 (name "sbcl-quicksearch")
12493 (version (git-version "0.01.04" "1" commit))
12494 (source
12495 (origin
12496 (method git-fetch)
12497 (uri (git-reference
12498 (url "https://github.com/tkych/quicksearch/")
12499 (commit commit)))
12500 (file-name (git-file-name name version))
12501 (sha256
12502 (base32 "16k19zjkhh7r64vjq371k5jwjs7cdfjz83flh561n4h4v1z89fps"))))
12503 (build-system asdf-build-system/sbcl)
12504 (inputs
12505 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
12506 ("iterate" ,sbcl-iterate)
12507 ("alexandria" ,sbcl-alexandria)
12508 ("anaphora" ,sbcl-anaphora)
12509 ("ppcre" ,sbcl-cl-ppcre)
12510 ("drakma" ,sbcl-drakma)
12511 ("html-entities" ,sbcl-html-entities)
12512 ("yason" ,sbcl-yason)
12513 ("flexi-streams" ,sbcl-flexi-streams)
12514 ("do-urlencode" ,sbcl-do-urlencode)))
12515 (home-page "https://github.com/tkych/quicksearch/")
12516 (synopsis "Search Engine Interface for Common Lisp packages")
12517 (description "Quicksearch is a search-engine-interface for Common Lisp.
12518 The goal of Quicksearch is to find the Common Lisp library quickly. For
12519 example, if you will find the library about json, just type @code{(qs:?
12520 'json)} at REPL.
12521
12522 The function @code{quicksearch} searches for Common Lisp projects in
12523 Quicklisp, Cliki, GitHub and BitBucket, then outputs results in REPL. The
12524 function @code{?} is abbreviation wrapper for @code{quicksearch}.")
12525 (license license:expat))))
12526
12527 (define-public cl-quicksearch
12528 (sbcl-package->cl-source-package sbcl-quicksearch))
12529
12530 (define-public ecl-quicksearch
12531 (sbcl-package->ecl-package sbcl-quicksearch))
12532
12533 (define-public sbcl-agutil
12534 (let ((commit "df188d754d472da9faa1601a48f1f37bb7b34d68"))
12535 (package
12536 (name "sbcl-agutil")
12537 (version (git-version "0.0.1" "1" commit))
12538 (source
12539 (origin
12540 (method git-fetch)
12541 (uri (git-reference
12542 (url "https://github.com/alex-gutev/agutil/")
12543 (commit commit)))
12544 (file-name (git-file-name name version))
12545 (sha256
12546 (base32 "1xpnyzksk2xld64b6lw6rw0gn5zxlb77jwna59sd4yl7kxhxlfpf"))))
12547 (build-system asdf-build-system/sbcl)
12548 (inputs
12549 `(("alexandria" ,sbcl-alexandria)
12550 ("trivia" ,sbcl-trivia)))
12551 (home-page "https://github.com/alex-gutev/agutil/")
12552 (synopsis "Collection of Common Lisp utilities")
12553 (description "A collection of Common Lisp utility functions and macros
12554 mostly not found in other utility packages.")
12555 (license license:expat))))
12556
12557 (define-public cl-agutil
12558 (sbcl-package->cl-source-package sbcl-agutil))
12559
12560 (define-public ecl-agutil
12561 (sbcl-package->ecl-package sbcl-agutil))
12562
12563 (define-public sbcl-custom-hash-table
12564 (let ((commit "f26983133940f5edf826ebbc8077acc04816ddfa"))
12565 (package
12566 (name "sbcl-custom-hash-table")
12567 (version (git-version "0.3" "1" commit))
12568 (source
12569 (origin
12570 (method git-fetch)
12571 (uri (git-reference
12572 (url "https://github.com/metawilm/cl-custom-hash-table")
12573 (commit commit)))
12574 (file-name (git-file-name name version))
12575 (sha256
12576 (base32 "1k4mvrpbqqds2fwjxp1bxmrfmr8ch4dkwhnkbw559knbqshvrlj5"))))
12577 (build-system asdf-build-system/sbcl)
12578 (arguments
12579 '(#:asd-files '("cl-custom-hash-table.asd")
12580 #:asd-systems '("cl-custom-hash-table")))
12581 (home-page "https://github.com/metawilm/cl-custom-hash-table")
12582 (synopsis "Custom hash tables for Common Lisp")
12583 (description "This library allows creation of hash tables with arbitrary
12584 @code{test}/@code{hash} functions, in addition to the @code{test} functions
12585 allowed by the standard (@code{EQ}, @code{EQL}, @code{EQUAL} and
12586 @code{EQUALP}), even in implementations that don't support this functionality
12587 directly.")
12588 (license license:expat))))
12589
12590 (define-public cl-custom-hash-table
12591 (sbcl-package->cl-source-package sbcl-custom-hash-table))
12592
12593 (define-public ecl-custom-hash-table
12594 (sbcl-package->ecl-package sbcl-custom-hash-table))
12595
12596 (define-public sbcl-collectors
12597 (let ((commit "13acef25d8422d1d82e067b1861e513587c166ee"))
12598 (package
12599 (name "sbcl-collectors")
12600 (version (git-version "0.1" "1" commit))
12601 (source
12602 (origin
12603 (method git-fetch)
12604 (uri (git-reference
12605 (url "https://github.com/AccelerationNet/collectors")
12606 (commit commit)))
12607 (file-name (git-file-name name version))
12608 (sha256
12609 (base32 "1si68n1j6rpns8jw6ksqjpb937pdl30v7xza8rld7j5vh0jhy2yi"))))
12610 (build-system asdf-build-system/sbcl)
12611 (inputs
12612 `(("alexandria" ,sbcl-alexandria)
12613 ("closer-mop" ,sbcl-closer-mop)
12614 ("symbol-munger" ,sbcl-symbol-munger)))
12615 (native-inputs
12616 `(("lisp-unit2" ,sbcl-lisp-unit2)))
12617 (home-page "https://github.com/AccelerationNet/collectors/")
12618 (synopsis "Common lisp library providing collector macros")
12619 (description "A small collection of common lisp macros to make
12620 collecting values easier.")
12621 (license license:bsd-3))))
12622
12623 (define-public cl-collectors
12624 (sbcl-package->cl-source-package sbcl-collectors))
12625
12626 (define-public ecl-collectors
12627 (sbcl-package->ecl-package sbcl-collectors))
12628
12629 (define-public sbcl-cl-environments
12630 (let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years.
12631 (package
12632 (name "sbcl-cl-environments")
12633 (version (git-version "0.2.3" "1" commit))
12634 (source
12635 (origin
12636 (method git-fetch)
12637 (uri (git-reference
12638 (url "https://github.com/alex-gutev/cl-environments")
12639 (commit commit)))
12640 (file-name (git-file-name name version))
12641 (sha256
12642 (base32
12643 "18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
12644 (build-system asdf-build-system/sbcl)
12645 (inputs
12646 `(("alexandria" ,sbcl-alexandria)
12647 ("anaphora" ,sbcl-anaphora)
12648 ("collectors" ,sbcl-collectors)
12649 ("optima" ,sbcl-optima)))
12650 (native-inputs
12651 `(("prove" ,sbcl-prove)))
12652 (home-page "https://github.com/alex-gutev/cl-environments")
12653 (synopsis "Implements the Common Lisp standard environment access API")
12654 (description "This library provides a uniform API, as specified in Common
12655 Lisp the Language 2, for accessing information about variable and function
12656 bindings from implementation-defined lexical environment objects. All major
12657 Common Lisp implementations are supported, even those which don't support the
12658 CLTL2 environment access API.")
12659 (license license:expat))))
12660
12661 (define-public cl-environments
12662 (sbcl-package->cl-source-package sbcl-cl-environments))
12663
12664 (define-public ecl-environments
12665 (sbcl-package->ecl-package sbcl-cl-environments))
12666
12667 (define-public sbcl-static-dispatch
12668 (let ((commit "6243afcd152854c52ba33daef7394367b657d9c6")
12669 (revision "1"))
12670 (package
12671 (name "sbcl-static-dispatch")
12672 (version (git-version "0.3" revision commit))
12673 (source
12674 (origin
12675 (method git-fetch)
12676 (uri (git-reference
12677 (url "https://github.com/alex-gutev/static-dispatch")
12678 (commit commit)))
12679 (file-name (git-file-name "static-dispatch" version))
12680 (sha256
12681 (base32 "1lli9ar1xbnhkgb5d01rlw4pvfylg2arrw68np2c07fpkkafimg7"))))
12682 (build-system asdf-build-system/sbcl)
12683 (native-inputs
12684 `(("prove" ,sbcl-prove)))
12685 (inputs
12686 `(("agutil" ,sbcl-agutil)
12687 ("alexandria" ,sbcl-alexandria)
12688 ("anaphora" ,sbcl-anaphora)
12689 ("arrows" ,sbcl-arrows)
12690 ("cl-environments" ,sbcl-cl-environments)
12691 ("closer-mop" ,sbcl-closer-mop)
12692 ("iterate" ,sbcl-iterate)
12693 ("trivia" ,sbcl-trivia)))
12694 (home-page "https://github.com/alex-gutev/static-dispatch")
12695 (synopsis "Static generic function dispatch for Common Lisp")
12696 (description "Static dispatch is a Common Lisp library, inspired by
12697 @code{inlined-generic-function}, which allows standard Common Lisp generic
12698 function dispatch to be performed statically (at compile time) rather than
12699 dynamically (runtime). This is similar to what is known as \"overloading\" in
12700 languages such as C++ and Java.
12701
12702 The purpose of static dispatch is to provide an optimization in cases where
12703 the usual dynamic dispatch is too slow, and the dynamic features of generic
12704 functions, such as adding/removing methods at runtime are not required. An
12705 example of such a case is a generic equality comparison function. Currently
12706 generic functions are considered far too slow to implement generic arithmetic
12707 and comparison operations when used heavily in numeric code.")
12708 (license license:expat))))
12709
12710 (define-public cl-static-dispatch
12711 (sbcl-package->cl-source-package sbcl-static-dispatch))
12712
12713 (define-public ecl-static-dispatch
12714 (sbcl-package->ecl-package sbcl-static-dispatch))
12715
12716 (define-public sbcl-generic-cl
12717 ;; Latest commit includes a necessary fix for our Guix build.
12718 (let ((commit "8e5a81487ee3c13fe5ffdc8bdda161d476639535"))
12719 (package
12720 (name "sbcl-generic-cl")
12721 (version (git-version "0.7.1" "1" commit))
12722 (source
12723 (origin
12724 (method git-fetch)
12725 (uri (git-reference
12726 (url "https://github.com/alex-gutev/generic-cl")
12727 (commit commit)))
12728 (file-name (git-file-name name version))
12729 (sha256
12730 (base32
12731 "11w0g79s4wmc78vmfng437rmsgnp5qn246zcyr540fp5nw0ad6ix"))))
12732 (build-system asdf-build-system/sbcl)
12733 (inputs
12734 `(("agutil" ,sbcl-agutil)
12735 ("alexandria" ,sbcl-alexandria)
12736 ("anaphora" ,sbcl-anaphora)
12737 ("arrows" ,sbcl-arrows)
12738 ("cl-custom-hash-table" ,sbcl-custom-hash-table)
12739 ("static-dispatch" ,sbcl-static-dispatch)
12740 ("trivia" ,sbcl-trivia)))
12741 (native-inputs
12742 `(("prove" ,sbcl-prove)))
12743 (arguments
12744 ;; Tests fail because SBCL head size is not high enough.
12745 ;; https://github.com/alex-gutev/generic-cl/issues/6
12746 `(#:tests? #f))
12747 (home-page "https://alex-gutev.github.io/generic-cl/")
12748 (synopsis "Generic function interface to standard Common Lisp functions")
12749 (description "@code{generic-cl} provides a generic function wrapper over
12750 various functions in the Common Lisp standard, such as equality predicates and
12751 sequence operations. The goal of this wrapper is to provide a standard
12752 interface to common operations, such as testing for the equality of two
12753 objects, which is extensible to user-defined types.")
12754 (license license:expat))))
12755
12756 (define-public cl-generic-cl
12757 (sbcl-package->cl-source-package sbcl-generic-cl))
12758
12759 (define-public ecl-generic-cl
12760 (sbcl-package->ecl-package sbcl-generic-cl))
12761
12762 (define-public sbcl-defpackage-plus
12763 (let ((revision "0")
12764 (commit "5492e27e0bdb7b75fa5177ea4388519dc7a75f11"))
12765 (package
12766 (name "sbcl-defpackage-plus")
12767 (version (git-version "1.0" revision commit))
12768 (source
12769 (origin
12770 (method git-fetch)
12771 (uri (git-reference
12772 (url "https://github.com/rpav/defpackage-plus")
12773 (commit commit)))
12774 (file-name (git-file-name name version))
12775 (sha256
12776 (base32 "0lzljvf343xb6mlh6lni2i27hpm5qd376522mk6hr2pa20vd6rdq"))))
12777 (build-system asdf-build-system/sbcl)
12778 (inputs
12779 `(("alexandria" ,sbcl-alexandria)))
12780 (home-page "https://github.com/rpav/defpackage-plus")
12781 (synopsis "Extensible @code{DEFPACKAGE} variant with version support")
12782 (description
12783 "@code{DEFPACKAGE-PLUS} is an extensible @code{DEFPACKAGE} variant with
12784 predictable cross-platform behavior and some utilities useful for versioning.")
12785 (license license:bsd-2))))
12786
12787 (define-public cl-defpackage-plus
12788 (sbcl-package->cl-source-package sbcl-defpackage-plus))
12789
12790 (define-public ecl-defpackage-plus
12791 (sbcl-package->ecl-package sbcl-defpackage-plus))
12792
12793 (define-public sbcl-deploy
12794 (let ((commit "9b20e64fe924b9e31832304d87a3a72c383dc6d8")
12795 (revision "2"))
12796 (package
12797 (name "sbcl-deploy")
12798 (version (git-version "1.0.0" revision commit))
12799 (source
12800 (origin
12801 (method git-fetch)
12802 (uri (git-reference
12803 (url "https://github.com/Shinmera/deploy")
12804 (commit commit)))
12805 (file-name (git-file-name "deploy" version))
12806 (sha256
12807 (base32 "07pfkibaridihg8lbq2czwa4iqifqk24n6rx7bfnv7i49p1ppja1"))))
12808 (build-system asdf-build-system/sbcl)
12809 (arguments
12810 `(#:test-asd-file "deploy-test.asd"
12811 #:asd-files '("deploy.asd"
12812 "deploy-test.asd")))
12813 (native-inputs
12814 `(("cl-mpg123" ,sbcl-cl-mpg123)
12815 ("cl-out123" ,sbcl-cl-out123)))
12816 (inputs
12817 `(("cffi" ,sbcl-cffi)
12818 ("documentation-utils" ,sbcl-documentation-utils)
12819 ("trivial-features" ,sbcl-trivial-features)))
12820 (home-page "https://shinmera.github.io/deploy/")
12821 (synopsis "Deployment tools for standalone Common Lisp application")
12822 (description
12823 "This is a system to help you easily and quickly deploy standalone
12824 common lisp applications as binaries. Specifically it is geared towards
12825 applications with foreign library dependencies that run some kind of GUI.")
12826 (license license:artistic2.0))))
12827
12828 (define-public cl-deploy
12829 (sbcl-package->cl-source-package sbcl-deploy))
12830
12831 (define-public ecl-deploy
12832 (sbcl-package->ecl-package sbcl-deploy))
12833
12834 (define-public sbcl-deeds
12835 ;; taged branch is outdated
12836 (let ((revision "1")
12837 (commit "f5df54eac79b58a34030e0eb8acf3952c788410d"))
12838 (package
12839 (name "sbcl-deeds")
12840 (version (git-version "1.1.1" revision commit))
12841 (source
12842 (origin
12843 (method git-fetch)
12844 (uri (git-reference
12845 (url "https://github.com/Shinmera/deeds")
12846 (commit commit)))
12847 (file-name (git-file-name name version))
12848 (sha256
12849 (base32 "062cnb2dwli6pw3zvv46jfxyxdzcbzwsck5pa6nw03qf1j1hyg3k"))))
12850 (build-system asdf-build-system/sbcl)
12851 (inputs
12852 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
12853 ("closer-mop" ,sbcl-closer-mop)
12854 ("form-fiddle" ,sbcl-form-fiddle)
12855 ("lambda-fiddle" ,sbcl-lambda-fiddle)))
12856 (home-page "https://github.com/Shinmera/deeds")
12857 (synopsis "Extensible Event Delivery System")
12858 (description
12859 "@code{deeds} allows for efficient event delivery to multiple handlers
12860 with a complex event filtering system.")
12861 (license license:zlib))))
12862
12863 (define-public cl-deeds
12864 (sbcl-package->cl-source-package sbcl-deeds))
12865
12866 (define-public ecl-deeds
12867 (sbcl-package->ecl-package sbcl-deeds))
12868
12869 (define-public sbcl-make-hash
12870 ;; no tagged branch
12871 (let ((revision "1")
12872 (commit "ae0909cd8e697520a1085fac6f54ac2b448ebd21"))
12873 (package
12874 (name "sbcl-make-hash")
12875 (version (git-version "1.0.2" revision commit))
12876 (source
12877 (origin
12878 (method git-fetch)
12879 (uri (git-reference
12880 (url "https://github.com/genovese/make-hash")
12881 (commit commit)))
12882 (file-name (git-file-name name version))
12883 (sha256
12884 (base32 "1qa4mcmb3pv44py0j129dd8hjx09c2akpnds53b69151mgwv5qz8"))))
12885 (build-system asdf-build-system/sbcl)
12886 (home-page "https://github.com/genovese/make-hash")
12887 (synopsis "Common Lisp package for flexible hash table creation")
12888 (description
12889 "This is a Common Lisp package for hash table creation with flexible,
12890 extensible initializers.")
12891 (license license:bsd-3))))
12892
12893 (define-public cl-make-hash
12894 (sbcl-package->cl-source-package sbcl-make-hash))
12895
12896 (define-public ecl-make-hash
12897 (sbcl-package->ecl-package sbcl-make-hash))
12898
12899 (define-public sbcl-claw-support
12900 (package
12901 (name "sbcl-claw-support")
12902 (version "1.0.0")
12903 (source
12904 (origin
12905 (method git-fetch)
12906 (uri (git-reference
12907 (url "https://github.com/borodust/claw-support")
12908 (commit "9a15c8bed04585f45e6a461bcda1b475144dbd0b")))
12909 (file-name (git-file-name name version))
12910 (sha256
12911 (base32 "1my2ka7h72ipx5n3b465g6kjkasrhsvhqlijwcg6dhlzs5yygl23"))))
12912 (build-system asdf-build-system/sbcl)
12913 (home-page "https://github.com/borodust/claw-support")
12914 (synopsis "Support routines for claw")
12915 (description
12916 "This package provides support routines for the @code{claw} Common Lisp
12917 package.")
12918 (license license:expat)))
12919
12920 (define-public cl-claw-support
12921 (sbcl-package->cl-source-package sbcl-claw-support))
12922
12923 (define-public ecl-claw-support
12924 (sbcl-package->ecl-package sbcl-claw-support))
12925
12926 (define-public sbcl-claw
12927 (let ((revision "0")
12928 (commit "3cd4a96fca95eb9e8d5d069426694669f81b2250"))
12929 (package
12930 (name "sbcl-claw")
12931 (version (git-version "1.0" revision commit))
12932 (source
12933 (origin
12934 (method git-fetch)
12935 (uri (git-reference
12936 (url "https://github.com/borodust/claw")
12937 (commit commit)))
12938 (file-name (git-file-name "claw" version))
12939 (sha256
12940 (base32 "146yv0hc4hmk72562ssj2d41143pp84dcbd1h7f4nx1c7hf2bb0d"))))
12941 (build-system asdf-build-system/sbcl)
12942 (inputs
12943 `(("alexandria" ,sbcl-alexandria)
12944 ("cffi" ,sbcl-cffi)
12945 ("cl-json" ,sbcl-cl-json)
12946 ("cl-ppcre" ,sbcl-cl-ppcre)
12947 ("claw-support" ,sbcl-claw-support)
12948 ("local-time" ,sbcl-local-time)
12949 ("trivial-features" ,sbcl-trivial-features)))
12950 (home-page "https://github.com/borodust/claw")
12951 (synopsis "Autowrapper for Common Lisp")
12952 (description
12953 "This is a Common Lisp autowrapping facility for quickly creating clean
12954 and lean bindings to C libraries.")
12955 (license license:bsd-2))))
12956
12957 (define-public cl-claw
12958 (sbcl-package->cl-source-package sbcl-claw))
12959
12960 (define-public ecl-claw
12961 (sbcl-package->ecl-package sbcl-claw))
12962
12963 (define-public sbcl-claw-utils
12964 (let ((revision "0")
12965 (commit "efe25016501973dc369f067a64c7d225802bc56f"))
12966 (package
12967 (name "sbcl-claw-utils")
12968 ;; version is not specified
12969 (version (git-version "0.0.0" revision commit))
12970 (source
12971 (origin
12972 (method git-fetch)
12973 (uri (git-reference
12974 (url "https://github.com/borodust/claw-utils")
12975 (commit commit)))
12976 (file-name (git-file-name "claw-utils" version))
12977 (sha256
12978 (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
12979 (build-system asdf-build-system/sbcl)
12980 (inputs
12981 `(("alexandria" ,sbcl-alexandria)
12982 ("cffi" ,sbcl-cffi)
12983 ("claw" ,sbcl-claw)))
12984 (home-page "https://github.com/borodust/claw-utils")
12985 (synopsis "Utilities for easier autowrapping")
12986 (description
12987 "This Common Lisp library contains various handy utilties to help
12988 autowrapping with @code{claw}.")
12989 (license license:expat))))
12990
12991 (define-public cl-claw-utils
12992 (sbcl-package->cl-source-package sbcl-claw-utils))
12993
12994 (define-public ecl-claw-utils
12995 (sbcl-package->ecl-package sbcl-claw-utils))
12996
12997 (define-public sbcl-array-operations
12998 (let ((commit "75cbc3b1adb2e3ce2109489753d0f290b071e81b")
12999 (revision "0"))
13000 (package
13001 (name "sbcl-array-operations")
13002 (version (git-version "0.0.0" revision commit))
13003 (source
13004 (origin
13005 (method git-fetch)
13006 (uri (git-reference
13007 (url "https://github.com/bendudson/array-operations")
13008 (commit commit)))
13009 (file-name (git-file-name "array-operations" version))
13010 (sha256
13011 (base32 "0ip49hhq32w80qsc7jmspyda5r2rsszvw0mk2r3341cld78sz9ya"))))
13012 (build-system asdf-build-system/sbcl)
13013 (native-inputs
13014 `(("alexandria" ,sbcl-alexandria)
13015 ("clunit2" ,sbcl-clunit2)))
13016 (inputs
13017 `(("let-plus" ,sbcl-let-plus)))
13018 (synopsis "Simple array operations library for Common Lisp")
13019 (description
13020 "This library is a collection of functions and macros for manipulating
13021 Common Lisp arrays and performing numerical calculations with them.")
13022 (home-page "https://github.com/bendudson/array-operations")
13023 (license license:expat))))
13024
13025 (define-public cl-array-operations
13026 (sbcl-package->cl-source-package sbcl-array-operations))
13027
13028 (define-public ecl-array-operations
13029 (sbcl-package->ecl-package sbcl-array-operations))
13030
13031 (define-public sbcl-clml
13032 (let ((commit "95505b54c8c7b4b27f500c3be97fa5732f4b51a8")
13033 (revision "0"))
13034 (package
13035 (name "sbcl-clml")
13036 (version (git-version "0.0.0" revision commit))
13037 (source
13038 (origin
13039 (method git-fetch)
13040 (uri (git-reference
13041 (url "https://github.com/mmaul/clml")
13042 (commit commit)))
13043 (file-name (git-file-name "clml" version))
13044 (sha256
13045 (base32 "006pii59nmpc61n7p7h8ha5vjg6x0dya327i58z0rnvxs249h345"))
13046 ;; TODO: Remove this when the patch has been merged upstream.
13047 (patches (search-patches "sbcl-clml-fix-types.patch"))))
13048 (build-system asdf-build-system/sbcl)
13049 (inputs
13050 `(("alexandia" ,sbcl-alexandria)
13051 ("array-operations" ,sbcl-array-operations)
13052 ("cl-fad" ,sbcl-cl-fad)
13053 ("cl-ppcre" ,sbcl-cl-ppcre)
13054 ("drakma" ,sbcl-drakma)
13055 ("introspect-environment" ,sbcl-introspect-environment)
13056 ("iterate" ,sbcl-iterate)
13057 ("lparallel" ,sbcl-lparallel)
13058 ("parse-number" ,sbcl-parse-number)
13059 ("split-sequence" ,sbcl-split-sequence)
13060 ("trivial-garbage" ,sbcl-trivial-garbage)))
13061 (synopsis "Common Lisp machine learning library")
13062 (description
13063 "CLML (Common Lisp Machine Learning) is a high performance and large
13064 scale statistical machine learning package")
13065 (home-page "https://mmaul.github.io/clml/")
13066 (license license:llgpl))))
13067
13068 (define-public cl-clml
13069 (sbcl-package->cl-source-package sbcl-clml))
13070
13071 (define-public sbcl-utm-ups
13072 (let ((commit "780f1d8ab6290ad2be0f40e2cddc2535fa6fe979")
13073 (revision "0"))
13074 (package
13075 (name "sbcl-utm-ups")
13076 (version (git-version "1.0" revision commit))
13077 (source
13078 (origin
13079 (method git-fetch)
13080 (uri (git-reference
13081 (url "https://github.com/glv2/utm-ups")
13082 (commit commit)))
13083 (file-name (git-file-name "utm-ups" version))
13084 (sha256
13085 (base32 "0l3kr2m56skf5cx3kkkdcis7msmidcsixx9fqjapkcjsj8x67aqq"))))
13086 (build-system asdf-build-system/sbcl)
13087 (native-inputs
13088 `(("fiveam" ,sbcl-fiveam)))
13089 (synopsis
13090 "Convert coordinates between latitude/longitude and UTM or UPS")
13091 (description
13092 "This a Common Lisp library to convert geographic coordinates between
13093 latitude/longitude and UTM (Universal Transverse Mercator) or UPS (Universal
13094 Polar Stereographic).")
13095 (home-page "https://github.com/glv2/utm-ups")
13096 (license license:gpl3+))))
13097
13098 (define-public cl-utm-ups
13099 (sbcl-package->cl-source-package sbcl-utm-ups))
13100
13101 (define-public ecl-utm-ups
13102 (sbcl-package->ecl-package sbcl-utm-ups))
13103
13104 (define-public sbcl-mgrs
13105 (let ((commit "00455460407b7e5509d1be3da09bf6152956761f")
13106 (revision "0"))
13107 (package
13108 (name "sbcl-mgrs")
13109 (version (git-version "1.0" revision commit))
13110 (source
13111 (origin
13112 (method git-fetch)
13113 (uri (git-reference
13114 (url "https://github.com/glv2/mgrs")
13115 (commit commit)))
13116 (file-name (git-file-name "mgrs" version))
13117 (sha256
13118 (base32 "0ckvn4hg3wwivzavhfashb6fap4a1q10l8krhbng8bdb54ac10sz"))))
13119 (build-system asdf-build-system/sbcl)
13120 (native-inputs
13121 `(("fiveam" ,sbcl-fiveam)))
13122 (inputs
13123 `(("utm-ups" ,sbcl-utm-ups)))
13124 (synopsis
13125 "Convert coordinates between latitude/longitude and MGRS")
13126 (description
13127 "This a Common Lisp library to convert geographic coordinates between
13128 latitude/longitude and MGRS.")
13129 (home-page "https://github.com/glv2/mgrs")
13130 (license license:gpl3+))))
13131
13132 (define-public cl-mgrs
13133 (sbcl-package->cl-source-package sbcl-mgrs))
13134
13135 (define-public ecl-mgrs
13136 (sbcl-package->ecl-package sbcl-mgrs))
13137
13138 (define-public sbcl-maidenhead
13139 (let ((commit "b756d235c27b5d6798867aa240318af1a8f35d6d")
13140 (revision "0"))
13141 (package
13142 (name "sbcl-maidenhead")
13143 (version (git-version "1.0" revision commit))
13144 (source
13145 (origin
13146 (method git-fetch)
13147 (uri (git-reference
13148 (url "https://github.com/glv2/maidenhead")
13149 (commit commit)))
13150 (file-name (git-file-name "maidenhead" version))
13151 (sha256
13152 (base32 "02p990zprhjvifmsfk8yh3frvz6xyw26ikzxvzglqdixbal36nr3"))))
13153 (build-system asdf-build-system/sbcl)
13154 (native-inputs
13155 `(("fiveam" ,sbcl-fiveam)))
13156 (synopsis
13157 "Convert coordinates between latitude/longitude and Maidenhead")
13158 (description
13159 "This a Common Lisp library to convert geographic coordinates between
13160 latitude/longitude and Maidenhead locator system.")
13161 (home-page "https://github.com/glv2/maidenhead")
13162 (license license:gpl3+))))
13163
13164 (define-public cl-maidenhead
13165 (sbcl-package->cl-source-package sbcl-maidenhead))
13166
13167 (define-public ecl-maidenhead
13168 (sbcl-package->ecl-package sbcl-maidenhead))
13169
13170 (define-public sbcl-olc
13171 (let ((commit "517e27fa57d9a119b00a29c4b6b31e553deff309")
13172 (revision "0"))
13173 (package
13174 (name "sbcl-olc")
13175 (version (git-version "1.0" revision commit))
13176 (source
13177 (origin
13178 (method git-fetch)
13179 (uri (git-reference
13180 (url "https://github.com/glv2/olc")
13181 (commit commit)))
13182 (file-name (git-file-name "olc" version))
13183 (sha256
13184 (base32 "1lnfhp6z6kc8l605zp4siyjiw74y1h4bdq3jfizi084v505wxhgr"))))
13185 (build-system asdf-build-system/sbcl)
13186 (native-inputs
13187 `(("fiveam" ,sbcl-fiveam)))
13188 (synopsis
13189 "Convert coordinates between latitude/longitude and Open Location Code")
13190 (description
13191 "This a Common Lisp library to convert geographic coordinates between
13192 latitude/longitude and Open Location Code.")
13193 (home-page "https://github.com/glv2/olc")
13194 (license license:gpl3+))))
13195
13196 (define-public cl-olc
13197 (sbcl-package->cl-source-package sbcl-olc))
13198
13199 (define-public ecl-olc
13200 (sbcl-package->ecl-package sbcl-olc))
13201
13202 (define-public sbcl-regex
13203 (let ((commit "fbc9a9f313b9edc1788f33d4b23a29151635ae22"))
13204 (package
13205 (name "sbcl-regex")
13206 (version (git-version "1" "1" commit))
13207 (source
13208 (origin
13209 (method git-fetch)
13210 (uri (git-reference
13211 (url "https://github.com/michaelw/regex/")
13212 (commit commit)))
13213 (file-name (git-file-name name version))
13214 (sha256
13215 (base32 "0wq5wlafrxv13wg28hg5b10sc48b88swsvznpy2zg7x37m4nmm6a"))))
13216 (build-system asdf-build-system/sbcl)
13217 (home-page "https://github.com/michaelw/regex/")
13218 (synopsis "Regular expression engine for Common Lisp")
13219 (description
13220 "This Common Lisp package provides a regular expression engine.")
13221 (license license:bsd-2))))
13222
13223 (define-public cl-regex
13224 (sbcl-package->cl-source-package sbcl-regex))
13225
13226 (define-public ecl-regex
13227 (sbcl-package->ecl-package sbcl-regex))
13228
13229 (define-public sbcl-clawk
13230 (let ((commit "3a91634df686417114044a98c063cbe76bfac7b6"))
13231 (package
13232 (name "sbcl-clawk")
13233 (version (git-version "4" "1" commit))
13234 (source
13235 (origin
13236 (method git-fetch)
13237 (uri (git-reference
13238 (url "https://github.com/sharplispers/clawk")
13239 (commit commit)))
13240 (file-name (git-file-name name version))
13241 (sha256
13242 (base32 "1ph3xjqilvinvgr9q3w47zxqyz1sqnq030nlx7kgkkv8j3bnqk7a"))))
13243 (build-system asdf-build-system/sbcl)
13244 (inputs
13245 `(("sbcl-regex" ,sbcl-regex)))
13246 (home-page "https://github.com/sharplispers/clawk")
13247 (synopsis "Common Lisp AWK")
13248 (description
13249 "CLAWK is an AWK implementation embedded into Common Lisp.")
13250 (license license:bsd-2))))
13251
13252 (define-public cl-clawk
13253 (sbcl-package->cl-source-package sbcl-clawk))
13254
13255 (define-public ecl-clawk
13256 (sbcl-package->ecl-package sbcl-clawk))
13257
13258 (define-public sbcl-check-it
13259 (let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
13260 (package
13261 (name "sbcl-check-it")
13262 (version (git-version "0.1.0" "1" commit))
13263 (source
13264 (origin
13265 (method git-fetch)
13266 (uri (git-reference
13267 (url "https://github.com/DalekBaldwin/check-it/")
13268 (commit commit)))
13269 (file-name (git-file-name name version))
13270 (sha256
13271 (base32 "1kbjwpniffdpv003igmlz5r0vy65m7wpfnhg54fhwirp1227hgg7"))))
13272 (build-system asdf-build-system/sbcl)
13273 (inputs
13274 `(("alexandria" ,sbcl-alexandria)
13275 ("closer-mop" ,sbcl-closer-mop)
13276 ("optima" ,sbcl-optima)))
13277 (native-inputs
13278 `(("stefil" ,sbcl-stefil)))
13279 (home-page "https://github.com/arclanguage/Clamp")
13280 (synopsis "Randomized specification-based testing for Common Lisp")
13281 (description
13282 "This is a randomized property-based testing library for Common Lisp.
13283 Rather than being a full-fledged general test framework in its own right, it's
13284 designed to embed randomized tests in whatever framework you like.")
13285 (license license:llgpl))))
13286
13287 (define-public cl-check-it
13288 (sbcl-package->cl-source-package sbcl-check-it))
13289
13290 (define-public ecl-check-it
13291 (sbcl-package->ecl-package sbcl-check-it))
13292
13293 (define-public sbcl-clamp
13294 (let ((commit "02b8f3953e5753cc61a719807c82f3795cd28fe1"))
13295 (package
13296 (name "sbcl-clamp")
13297 (version (git-version "0.3" "1" commit))
13298 (source
13299 (origin
13300 (method git-fetch)
13301 (uri (git-reference
13302 (url "https://github.com/arclanguage/Clamp")
13303 (commit commit)))
13304 (file-name (git-file-name name version))
13305 (sha256
13306 (base32 "0fdr9nqfmmpxm6hvjdxi1jkclya9xlnrw1yc3cn1m4ww3f50p31m"))))
13307 (build-system asdf-build-system/sbcl)
13308 (inputs
13309 `(("iterate" ,sbcl-iterate)
13310 ("cl-syntax" ,sbcl-cl-syntax)))
13311 (native-inputs
13312 `(("cl-unit" ,sbcl-clunit)
13313 ("check-it" ,sbcl-check-it)))
13314 (arguments
13315 `(#:phases
13316 (modify-phases %standard-phases
13317 (add-after 'unpack 'fix-build
13318 (lambda _
13319 (substitute* "clamp.asd"
13320 (("\\(:file \"read\" :depends-on \\(\"aliases\"\\)\\)")
13321 "(:file \"read\" :depends-on (\"aliases\" \"base\"))"))
13322 #t)))))
13323 (home-page "https://github.com/arclanguage/Clamp")
13324 (synopsis "Common Lisp with Arc macros and procedures")
13325 (description
13326 "Clamp is an attempt to bring the powerful, but verbose, language of
13327 Common Lisp up to the terseness of Arc.
13328
13329 There are two parts to Clamp. There is the core of Clamp, which implements
13330 the utilities of Arc that are easily converted from Arc to Common Lisp. The
13331 other part is the \"experimental\" part. It contains features of Arc that are
13332 not so easy to copy (ssyntax, argument destructuring, etc.).")
13333 (license license:artistic2.0))))
13334
13335 (define-public cl-clamp
13336 (sbcl-package->cl-source-package sbcl-clamp))
13337
13338 (define-public ecl-clamp
13339 (sbcl-package->ecl-package sbcl-clamp))
13340
13341 (define-public sbcl-trivial-shell
13342 (let ((commit "e02ec191b34b52deca5d1c4ee99d4fa13b8772e0"))
13343 (package
13344 (name "sbcl-trivial-shell")
13345 (version (git-version "0.2.0" "1" commit))
13346 (source
13347 (origin
13348 (method git-fetch)
13349 (uri (git-reference
13350 (url "https://github.com/gwkkwg/trivial-shell")
13351 (commit commit)))
13352 (file-name (git-file-name name version))
13353 (sha256
13354 (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85"))))
13355 (build-system asdf-build-system/sbcl)
13356 (native-inputs
13357 `(("lift" ,sbcl-lift)))
13358 (home-page "http://common-lisp.net/project/trivial-shell/")
13359 (synopsis "Common Lisp access to the shell")
13360 (description
13361 "A simple Common-Lisp interface to the underlying operating system.
13362 It's independent of the implementation and operating system.")
13363 (license license:expat))))
13364
13365 (define-public cl-trivial-shell
13366 (sbcl-package->cl-source-package sbcl-trivial-shell))
13367
13368 (define-public ecl-trivial-shell
13369 (sbcl-package->ecl-package sbcl-trivial-shell))
13370
13371 (define-public sbcl-clesh
13372 (let ((commit "44e96e04a72e5bc006dc4eb02ce8962348dd4a11"))
13373 (package
13374 (name "sbcl-clesh")
13375 (version (git-version "0.0.0" "1" commit))
13376 (source
13377 (origin
13378 (method git-fetch)
13379 (uri (git-reference
13380 (url "https://github.com/Neronus/Clesh")
13381 (commit commit)))
13382 (file-name (git-file-name name version))
13383 (sha256
13384 (base32 "012ry02djnqyvvs61wbbqj3saz621w2l9gczrywdxhi5p4ycx318"))))
13385 (build-system asdf-build-system/sbcl)
13386 (inputs
13387 `(("trivial-shell" ,sbcl-trivial-shell)
13388 ("named-readtables" ,sbcl-named-readtables)))
13389 (home-page "https://github.com/Neronus/Clesh")
13390 (synopsis "Embed shell code in Common Lisp")
13391 (description
13392 "This is a very short and simple program, written in Common Lisp, that
13393 extends Common Lisp to embed shell code in a manner similar to Perl's
13394 backtick. It has been forked from SHELISP.")
13395 (license license:bsd-2))))
13396
13397 (define-public cl-clesh
13398 (sbcl-package->cl-source-package sbcl-clesh))
13399
13400 (define-public ecl-clesh
13401 (sbcl-package->ecl-package sbcl-clesh))
13402
13403 (define-public sbcl-trivial-download
13404 (let ((commit "d2472061d86b1cf3d32f388daacd4e32a13af699"))
13405 (package
13406 (name "sbcl-trivial-download")
13407 (version (git-version "0.3" "1" commit))
13408 (source
13409 (origin
13410 (method git-fetch)
13411 (uri (git-reference
13412 (url "https://github.com/eudoxia0/trivial-download/")
13413 (commit commit)))
13414 (file-name (git-file-name name version))
13415 (sha256
13416 (base32 "06f46zr3gp3wlm2kgxna24qd2gpr1v89x9fynh1x5vrw6c6hqjcv"))))
13417 (build-system asdf-build-system/sbcl)
13418 (inputs
13419 `(("drakma" ,sbcl-drakma)))
13420 (home-page "https://github.com/eudoxia0/trivial-download/")
13421 (synopsis "Download files from Common Lisp")
13422 (description
13423 "@code{trivial-download} allows you to download files from the Internet
13424 from Common Lisp. It provides a progress bar.")
13425 (license license:bsd-2))))
13426
13427 (define-public cl-trivial-download
13428 (sbcl-package->cl-source-package sbcl-trivial-download))
13429
13430 (define-public ecl-trivial-download
13431 (sbcl-package->ecl-package sbcl-trivial-download))
13432
13433 (define-public sbcl-gtwiwtg
13434 (package
13435 (name "sbcl-gtwiwtg")
13436 (version "0.1.1")
13437 (source
13438 (origin
13439 (method git-fetch)
13440 (uri (git-reference
13441 (url "https://github.com/cbeo/gtwiwtg/")
13442 (commit version)))
13443 (file-name (git-file-name name version))
13444 (sha256
13445 (base32 "0lkraw0dwh4is4x5sp5rjrw6f93m0gr9849abrbi12s25ws7jbw4"))))
13446 (build-system asdf-build-system/sbcl)
13447 (native-inputs
13448 `(("osicat" ,sbcl-osicat)
13449 ("prove" ,sbcl-prove)))
13450 (home-page "https://github.com/cbeo/gtwiwtg/")
13451 (synopsis "Naive generators for Common Lisp")
13452 (description
13453 "The GTWIWTG library (Generators The Way I Want Them Generated --
13454 technically not generators, but iterators) is meant to be small, explorable,
13455 and understandable.")
13456 (license license:gpl3)))
13457
13458 (define-public cl-gtwiwtg
13459 (sbcl-package->cl-source-package sbcl-gtwiwtg))
13460
13461 (define-public ecl-gtwiwtg
13462 (sbcl-package->ecl-package sbcl-gtwiwtg))
13463
13464 (define-public sbcl-cl-progress-bar
13465 (let ((commit "9374170858663c8fe829e9fb5a29bd2cb48d95ae"))
13466 (package
13467 (name "sbcl-cl-progress-bar")
13468 (version (git-version "0.0.0" "1" commit))
13469 (source
13470 (origin
13471 (method git-fetch)
13472 (uri (git-reference
13473 (url "https://github.com/sirherrbatka/cl-progress-bar/")
13474 (commit commit)))
13475 (file-name (git-file-name name version))
13476 (sha256
13477 (base32 "1ldb4qhmx431n3lsq71ynwb9ybazbfqd55icjbhi06mj52ngndir"))))
13478 (build-system asdf-build-system/sbcl)
13479 (inputs
13480 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13481 ("documentation-utils-extensions" ,sbcl-documentation-utils-extensions)))
13482 (home-page "https://github.com/sirherrbatka/cl-progress-bar/")
13483 (synopsis "Progress bars in Common Lisp")
13484 (description
13485 "This library provides almost the same code as used inside Quicklisp
13486 for drawning progress bars")
13487 (license license:expat))))
13488
13489 (define-public cl-progress-bar
13490 (sbcl-package->cl-source-package sbcl-cl-progress-bar))
13491
13492 (define-public ecl-cl-progress-bar
13493 (sbcl-package->ecl-package sbcl-cl-progress-bar))
13494
13495 (define-public sbcl-repl-utilities
13496 (let ((commit "e0de9c92e774f77cab1a4cd92e2ac922ac3a807e"))
13497 (package
13498 (name "sbcl-repl-utilities")
13499 (version (git-version "0.0.0" "1" commit))
13500 (source
13501 (origin
13502 (method git-fetch)
13503 (uri (git-reference
13504 (url "https://github.com/m-n/repl-utilities/")
13505 (commit commit)))
13506 (file-name (git-file-name name version))
13507 (sha256
13508 (base32 "1r5icmw3ha5y77kvzqni3a9bcd66d9pz5mjsbw04xg3jk0d15cgz"))))
13509 (build-system asdf-build-system/sbcl)
13510 (home-page "https://github.com/m-n/repl-utilities")
13511 (synopsis "Ease common tasks at the Common Lisp REPL")
13512 (description
13513 "@code{repl-utilities} is a set of utilities which ease life at the
13514 REPL. It includes three sorts of features: introspective procedures,
13515 miscellaneous utility functions, and, pulling them together, methods to
13516 conveniently keep these symbols and optionally additional symbols available in
13517 whichever package you switch to.")
13518 (license license:bsd-2))))
13519
13520 (define-public cl-repl-utilities
13521 (sbcl-package->cl-source-package sbcl-repl-utilities))
13522
13523 (define-public ecl-repl-utilities
13524 (sbcl-package->ecl-package sbcl-repl-utilities))
13525
13526 (define-public sbcl-supertrace
13527 (let ((commit "66d22c3ff131ecd1c8048dfced1d62ed6024ecb0"))
13528 (package
13529 (name "sbcl-supertrace")
13530 (version (git-version "0.1.0" "1" commit))
13531 (source
13532 (origin
13533 (method git-fetch)
13534 (uri (git-reference
13535 (url "https://github.com/fukamachi/supertrace")
13536 (commit commit)))
13537 (file-name (git-file-name name version))
13538 (sha256
13539 (base32 "0n369n6b7y1m49biccnnr7svymjdsk8sksrkqrn3mj21vgv7s7bg"))))
13540 (build-system asdf-build-system/sbcl)
13541 (native-inputs
13542 `(("cffi-grovel" ,sbcl-cffi)
13543 ("rove" ,sbcl-rove)
13544 ("cl-ppcre" ,sbcl-cl-ppcre)
13545 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
13546 (inputs
13547 `(("cffi" ,sbcl-cffi)))
13548 (home-page "https://github.com/fukamachi/supertrace")
13549 (synopsis "Improved Common Lisp tracing for debugging and profiling")
13550 (description
13551 "Supertrace provides a superior Common Lisp @code{trace} functionality
13552 for debugging and profiling real world applications.")
13553 (license license:bsd-2))))
13554
13555 (define-public cl-supertrace
13556 (sbcl-package->cl-source-package sbcl-supertrace))
13557
13558 (define-public ecl-supertrace
13559 (sbcl-package->ecl-package sbcl-supertrace))
13560
13561 (define-public sbcl-trivial-benchmark
13562 (let ((commit "42d76733dd2e873471c6f1e27d39113293f7dd5c"))
13563 (package
13564 (name "sbcl-trivial-benchmark")
13565 (version (git-version "2.0.0" "1" commit))
13566 (source
13567 (origin
13568 (method git-fetch)
13569 (uri (git-reference
13570 (url "https://github.com/Shinmera/trivial-benchmark/")
13571 (commit commit)))
13572 (file-name (git-file-name name version))
13573 (sha256
13574 (base32 "0fbzqbpm2ixz85555krl36kbbbjyn699vdj6k383khi3g9y629fa"))))
13575 (build-system asdf-build-system/sbcl)
13576 (inputs
13577 `(("alexandria" ,sbcl-alexandria)))
13578 (home-page "http://shinmera.github.io/trivial-benchmark/")
13579 (synopsis "Easy to use benchmarking system for Common Lisp")
13580 (description
13581 "Trivial-Benchmark runs a block of code many times and outputs some
13582 statistical data for it. On SBCL this includes the data from @code{time}, for
13583 all other implementations just the @code{real-time} and @code{run-time} data.
13584 However, you can extend the system by adding your own @code{metrics} to it, or
13585 even by adding additional statistical @code{compute}ations. ")
13586 (license license:zlib))))
13587
13588 (define-public cl-trivial-benchmark
13589 (sbcl-package->cl-source-package sbcl-trivial-benchmark))
13590
13591 (define-public ecl-trivial-benchmark
13592 (sbcl-package->ecl-package sbcl-trivial-benchmark))
13593
13594 (define-public sbcl-glyphs
13595 (let ((commit "1ff5714e8c1dca327bc604dfe3e3d1f4b7755373"))
13596 (package
13597 (name "sbcl-glyphs")
13598 (version (git-version "0.0.0" "1" commit))
13599 (source
13600 (origin
13601 (method git-fetch)
13602 (uri (git-reference
13603 (url "https://github.com/ahungry/glyphs/")
13604 (commit commit)))
13605 (file-name (git-file-name name version))
13606 (sha256
13607 (base32 "17kai1anbkk5dj5sbrsin2fc019cmcbglb900db60v38myj0y0wf"))))
13608 (build-system asdf-build-system/sbcl)
13609 (inputs
13610 `(("cl-ppcre" ,sbcl-cl-ppcre)
13611 ("parenscript" ,sbcl-parenscript)
13612 ("named-readtables" ,sbcl-named-readtables)))
13613 (home-page "https://github.com/ahungry/glyphs/")
13614 (synopsis "Reduce Common Lisp verbosity")
13615 (description
13616 "This library is a little experiment in reducing verbosity in Common
13617 Lisp, inspired by BODOL (@url{https://github.com/bodil/BODOL}).")
13618 (license license:gpl3))))
13619
13620 (define-public cl-glyphs
13621 (sbcl-package->cl-source-package sbcl-glyphs))
13622
13623 (define-public ecl-glyphs
13624 (sbcl-package->ecl-package sbcl-glyphs))
13625
13626 (define-public sbcl-zs3
13627 (package
13628 (name "sbcl-zs3")
13629 (version "1.3.3")
13630 (source
13631 (origin
13632 (method git-fetch)
13633 (uri
13634 (git-reference
13635 (url "https://github.com/xach/zs3")
13636 (commit (string-append "release-" version))))
13637 (file-name (git-file-name "zs3" version))
13638 (sha256
13639 (base32 "186v95wgsj2hkxdw2jl9x1w4fddjclp7arp0rrd9vf5ly8h8sbf3"))))
13640 (build-system asdf-build-system/sbcl)
13641 (inputs
13642 `(("drakma" ,sbcl-drakma)
13643 ("alexandria" ,sbcl-alexandria)
13644 ("cxml" ,sbcl-cxml)
13645 ("ironclad" ,sbcl-ironclad)
13646 ("puri" ,sbcl-puri)
13647 ("cl-base64" ,sbcl-cl-base64)))
13648 (synopsis "Work with Amazon S3 and Amazon CloudFront from Common Lisp")
13649 (description "This is ZS3, a library for working with Amazon's Simple Storage
13650 Service (S3) and CloudFront service from Common Lisp.")
13651 (home-page "https://github.com/xach/zs3")
13652 (license license:bsd-2)))
13653
13654 (define-public cl-zs3
13655 (sbcl-package->cl-source-package sbcl-zs3))
13656
13657 (define-public ecl-zs3
13658 (sbcl-package->ecl-package sbcl-zs3))
13659
13660 (define-public sbcl-simple-neural-network
13661 (package
13662 (name "sbcl-simple-neural-network")
13663 (version "3.1")
13664 (source
13665 (origin
13666 (method git-fetch)
13667 (uri (git-reference
13668 (url "https://github.com/glv2/simple-neural-network")
13669 (commit (string-append "v" version))))
13670 (file-name (git-file-name "simple-neural-network" version))
13671 (sha256
13672 (base32 "1jj1c90fr5clwka0jv32hv6xp1bkdlpa6x5jh19an13rhx8ll4zr"))))
13673 (build-system asdf-build-system/sbcl)
13674 (native-inputs
13675 `(("chipz" ,sbcl-chipz)
13676 ("fiveam" ,sbcl-fiveam)))
13677 (inputs
13678 `(("cl-store" ,sbcl-cl-store)
13679 ("lparallel" ,sbcl-lparallel)))
13680 (arguments
13681 `(#:phases
13682 (modify-phases %standard-phases
13683 (add-after 'check 'remove-test-data
13684 (lambda* (#:key outputs #:allow-other-keys)
13685 (let ((out (assoc-ref outputs "out")))
13686 (for-each delete-file (find-files out "\\.gz$"))))))))
13687 (synopsis "Simple neural network in Common Lisp")
13688 (description
13689 "@code{simple-neural-network} is a Common Lisp library for creating,
13690 training and using basic neural networks. The networks created by this
13691 library are feedforward neural networks trained using backpropagation.")
13692 (home-page "https://github.com/glv2/simple-neural-network")
13693 (license license:gpl3+)))
13694
13695 (define-public cl-simple-neural-network
13696 (sbcl-package->cl-source-package sbcl-simple-neural-network))
13697
13698 (define-public ecl-simple-neural-network
13699 (sbcl-package->ecl-package sbcl-simple-neural-network))
13700
13701 (define-public sbcl-zstd
13702 (let ((commit "d144582c581aaa52bac24d6686af27fa3e781e06")
13703 (revision "1"))
13704 (package
13705 (name "sbcl-zstd")
13706 (version (git-version "1.0" revision commit))
13707 (source
13708 (origin
13709 (method git-fetch)
13710 (uri (git-reference
13711 (url "https://github.com/glv2/cl-zstd")
13712 (commit commit)))
13713 (file-name (git-file-name "cl-zstd" version))
13714 (sha256
13715 (base32 "1774jy8hzbi6nih3sq6vchk66f7g8w86dwgpbvljyfzcnkcaz6ql"))))
13716 (build-system asdf-build-system/sbcl)
13717 (native-inputs
13718 `(("fiveam" ,sbcl-fiveam)))
13719 (inputs
13720 `(("cffi" ,sbcl-cffi)
13721 ("cl-octet-streams" ,sbcl-cl-octet-streams)
13722 ("zstd-lib" ,zstd "lib")))
13723 (arguments
13724 '(#:phases
13725 (modify-phases %standard-phases
13726 (add-after 'unpack 'fix-paths
13727 (lambda* (#:key inputs #:allow-other-keys)
13728 (substitute* "src/libzstd.lisp"
13729 (("libzstd\\.so")
13730 (string-append (assoc-ref inputs "zstd-lib")
13731 "/lib/libzstd.so")))
13732 #t)))))
13733 (synopsis "Common Lisp library for Zstandard (de)compression")
13734 (description
13735 "This Common Lisp library provides functions for Zstandard
13736 compression/decompression using bindings to the libzstd C library.")
13737 (home-page "https://github.com/glv2/cl-zstd")
13738 (license license:gpl3+))))
13739
13740 (define-public cl-zstd
13741 (sbcl-package->cl-source-package sbcl-zstd))
13742
13743 (define-public ecl-zstd
13744 (sbcl-package->ecl-package sbcl-zstd))
13745
13746 (define-public sbcl-agnostic-lizard
13747 (let ((commit "fe3a73719f05901c8819f8995a3ebae738257952")
13748 (revision "1"))
13749 (package
13750 (name "sbcl-agnostic-lizard")
13751 (version (git-version "0.0.0" revision commit))
13752 (source
13753 (origin
13754 (method git-fetch)
13755 (uri (git-reference
13756 (url "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
13757 (commit commit)))
13758 (file-name (git-file-name name version))
13759 (sha256
13760 (base32 "0ax78y8w4zlp5dcwyhz2nq7j3shi49qn31dkfg8lv2jlg7mkwh2d"))))
13761 (build-system asdf-build-system/sbcl)
13762 (synopsis "Almost correct portable code walker for Common Lisp")
13763 (description
13764 "Agnostic Lizard is a portable implementation of a code walker and in
13765 particular of the macroexpand-all function (and macro) that makes a best
13766 effort to be correct while not expecting much beyond what the Common Lisp
13767 standard requires.
13768
13769 It aims to be implementation-agnostic and to climb the syntax trees.")
13770 (home-page "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
13771 (license license:gpl3+))))
13772
13773 (define-public cl-agnostic-lizard
13774 (sbcl-package->cl-source-package sbcl-agnostic-lizard))
13775
13776 (define-public ecl-agnostic-lizard
13777 (sbcl-package->ecl-package sbcl-agnostic-lizard))
13778
13779 (define-public sbcl-dynamic-classes
13780 (package
13781 (name "sbcl-dynamic-classes")
13782 (version "1.0.2")
13783 (source
13784 (origin
13785 (method git-fetch)
13786 (uri (git-reference
13787 (url "https://github.com/gwkkwg/dynamic-classes")
13788 (commit (string-append "version-" version))))
13789 (file-name (git-file-name "dynamic-classes" version))
13790 (sha256
13791 (base32 "1z3ag6w4ff0v6715xa9zhvwjqnp4i6zrjfmxdz8m115sklbwgm6c"))))
13792 (build-system asdf-build-system/sbcl)
13793 (inputs
13794 `(("metatilities-base" ,sbcl-metatilities-base)))
13795 (arguments
13796 ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing
13797 ;; test suites. lift-standard.config contains referances to deprecated
13798 ;; functionality.
13799 `(#:tests? #f))
13800 (home-page "https://common-lisp.net/project/dynamic-classes/")
13801 (synopsis "Dynamic class definition for Common Lisp")
13802 (description "Dynamic-Classes helps to ease the prototyping process by
13803 bringing dynamism to class definition.")
13804 (license license:expat)))
13805
13806 (define-public ecl-dynamic-classes
13807 (sbcl-package->ecl-package sbcl-dynamic-classes))
13808
13809 (define-public cl-dynamic-classes
13810 (sbcl-package->cl-source-package sbcl-dynamic-classes))
13811
13812 (define-public sbcl-cl-markdown
13813 ;; NOTE: (Sharlatan-20210106214629+0000) latest version tag
13814 ;; "version-0.10.6_version-0.10.6" is failing to build due to missing system
13815 ;; #:container-dynamic-classes
13816 (package
13817 (name "sbcl-cl-markdown")
13818 (version "0.10.4")
13819 (source
13820 (origin
13821 (method git-fetch)
13822 (uri (git-reference
13823 (url "https://github.com/gwkkwg/cl-markdown")
13824 (commit (string-append "version-" version))))
13825 (file-name (git-file-name "cl-markdown" version))
13826 (sha256
13827 (base32 "1wdjbdd1zyskxf7zlilcp6fmwkivybj0wjp64vvzb265d5xi7p8p"))))
13828 (build-system asdf-build-system/sbcl)
13829 (inputs
13830 `(("anaphora" ,sbcl-anaphora)
13831 ("cl-containers" ,sbcl-cl-containers)
13832 ("cl-ppcre" ,sbcl-cl-ppcre)
13833 ("dynamic-classes" ,sbcl-dynamic-classes)
13834 ("metabang-bind" ,sbcl-metabang-bind)
13835 ("metatilities-base" ,sbcl-metatilities-base)))
13836 (arguments
13837 ;; NOTE: (Sharlatan-20210107213629+0000) Tests depend on too many not
13838 ;; available systems, which themself are abandoned.
13839 `(#:tests? #f))
13840 (home-page "https://common-lisp.net/project/cl-markdown/")
13841 (synopsis "Common Lisp rewrite of Markdown")
13842 (description
13843 "This is an implementation of a Markdown parser in Common Lisp.")
13844 (license license:expat)))
13845
13846 (define-public ecl-cl-markdown
13847 (sbcl-package->ecl-package sbcl-cl-markdown))
13848
13849 (define-public cl-markdown
13850 (sbcl-package->cl-source-package sbcl-cl-markdown))
13851
13852 (define-public sbcl-magicffi
13853 (let ((commit "d88f2f280c31f639e4e05be75215d8a8dce6aef2"))
13854 (package
13855 (name "sbcl-magicffi")
13856 (version (git-version "0.0.0" "1" commit))
13857 (source
13858 (origin
13859 (method git-fetch)
13860 (uri (git-reference
13861 (url "https://github.com/dochang/magicffi/")
13862 (commit commit)))
13863 (file-name (git-file-name name version))
13864 (sha256
13865 (base32 "0p6ysa92fk34bhxpw7bycbfgw150fv11z9x8jr9xb4lh8cm2hvp6"))))
13866 (build-system asdf-build-system/sbcl)
13867 (native-inputs
13868 `(("alexandria" ,sbcl-alexandria)))
13869 (inputs
13870 `(("cffi" ,sbcl-cffi)
13871 ("ppcre" ,sbcl-cl-ppcre)
13872 ("libmagic" ,file)))
13873 (arguments
13874 `(#:phases
13875 (modify-phases %standard-phases
13876 (add-after 'unpack 'fix-paths
13877 (lambda* (#:key inputs #:allow-other-keys)
13878 (let ((magic (assoc-ref inputs "libmagic")))
13879 (substitute* "grovel.lisp"
13880 (("/usr/include/magic.h")
13881 (string-append magic "/include/magic.h")))
13882 (substitute* "api.lisp"
13883 ((":default \"libmagic\"" all)
13884 (string-append ":default \"" magic "/lib/libmagic\"")))))))))
13885 (home-page "https://common-lisp.net/project/magicffi/")
13886 (synopsis "Common Lisp interface to libmagic based on CFFI")
13887 (description
13888 "MAGICFFI is a Common Lisp CFFI interface to libmagic(3), the file type
13889 determination library using @emph{magic} numbers.")
13890 (license license:bsd-2))))
13891
13892 (define-public ecl-magicffi
13893 (sbcl-package->ecl-package sbcl-magicffi))
13894
13895 (define-public cl-magicffi
13896 (sbcl-package->cl-source-package sbcl-magicffi))
13897
13898 (define-public sbcl-shlex
13899 (let ((commit "c5616dffca0d4d8ddbc1cd6f37a96d88477b2740"))
13900 (package
13901 (name "sbcl-shlex")
13902 (version (git-version "0.0.0" "1" commit))
13903 (source
13904 (origin
13905 (method git-fetch)
13906 (uri (git-reference
13907 (url "https://github.com/ruricolist/cl-shlex")
13908 (commit commit)))
13909 (file-name (git-file-name name version))
13910 (sha256
13911 (base32 "1nas024n4wv319bf40aal96g72bgi9nkapj2chywj2cc6r8hzkfg"))))
13912 (build-system asdf-build-system/sbcl)
13913 (inputs
13914 `(("alexandria" ,sbcl-alexandria)
13915 ("serapeum" ,sbcl-serapeum)
13916 ("ppcre" ,sbcl-cl-ppcre)
13917 ("unicode" ,sbcl-cl-unicode)))
13918 (home-page "https://github.com/ruricolist/cl-shlex")
13919 (synopsis "Common Lisp lexical analyzer for shell-like syntaxes")
13920 (description
13921 "This library contains a lexer for syntaxes that use shell-like rules
13922 for quoting and commenting. It is a port of the @code{shlex} module from Python’s
13923 standard library.")
13924 (license license:expat))))
13925
13926 (define-public ecl-shlex
13927 (sbcl-package->ecl-package sbcl-shlex))
13928
13929 (define-public cl-shlex
13930 (sbcl-package->cl-source-package sbcl-shlex))
13931
13932 (define-public sbcl-cmd
13933 (let ((commit "bc5a3bee8f22917126e4c3d05b33f766e562dbd8"))
13934 (package
13935 (name "sbcl-cmd")
13936 (version (git-version "0.0.1" "3" commit))
13937 (source
13938 (origin
13939 (method git-fetch)
13940 (uri (git-reference
13941 (url "https://github.com/ruricolist/cmd/")
13942 (commit commit)))
13943 (file-name (git-file-name name version))
13944 (sha256
13945 (base32 "1sjlabrknw1kjb2y89vssjhcqh3slgly8wnr3152zgis8lsj2yc7"))))
13946 (build-system asdf-build-system/sbcl)
13947 (inputs
13948 `(("alexandria" ,sbcl-alexandria)
13949 ("coreutils" ,coreutils)
13950 ("procps" ,procps)
13951 ("serapeum" ,sbcl-serapeum)
13952 ("shlex" ,sbcl-shlex)
13953 ("trivia" ,sbcl-trivia)))
13954 (arguments
13955 `(#:phases
13956 (modify-phases %standard-phases
13957 (add-after 'unpack 'fix-paths
13958 (lambda* (#:key inputs #:allow-other-keys)
13959 (let ((bin (string-append (assoc-ref inputs "coreutils") "/bin"))
13960 (ps-bin (string-append (assoc-ref inputs "procps") "/bin")))
13961 (substitute* "cmd.lisp"
13962 (("\\(def \\+env\\+ \"env\"\\)")
13963 (format #f "(def +env+ \"~a/env\")" bin))
13964 (("\\(def \\+kill\\+ \"kill\"\\)")
13965 (format #f "(def +kill+ \"~a/kill\")" bin))
13966 (("\\(def \\+ps\\+ \"ps\"\\)")
13967 (format #f "(def +ps+ \"~a/ps\")" ps-bin))
13968 (("\\(def \\+pwd\\+ \"pwd\"\\)")
13969 (format #f "(def +pwd+ \"~a/pwd\")" bin))
13970 (("\\(def \\+sh\\+ \"/bin/sh\"\\)")
13971 (format #f "(def +sh+ \"~a\")" (which "sh")))
13972 (("\\(def \\+tr\\+ \"tr\"\\)")
13973 (format #f "(def +tr+ \"~a/tr\")" bin)))))))))
13974 (home-page "https://github.com/ruricolist/cmd")
13975 (synopsis "Conveniently run external programs from Common Lisp")
13976 (description
13977 "A utility for running external programs, built on UIOP.
13978 Cmd is designed to be natural to use, protect against shell interpolation and
13979 be usable from multi-threaded programs.")
13980 (license license:expat))))
13981
13982 (define-public ecl-cmd
13983 (sbcl-package->ecl-package sbcl-cmd))
13984
13985 (define-public cl-cmd
13986 (sbcl-package->cl-source-package sbcl-cmd))
13987
13988 (define-public sbcl-ppath
13989 (let ((commit "eb1a8173b4d1d691ea9a7699412123462f58c3ce"))
13990 (package
13991 (name "sbcl-ppath")
13992 (version (git-version "0.1" "1" commit))
13993 (source
13994 (origin
13995 (method git-fetch)
13996 (uri (git-reference
13997 (url "https://github.com/fourier/ppath/")
13998 (commit commit)))
13999 (file-name (git-file-name name commit))
14000 (sha256
14001 (base32 "1c46q9lmzqv14z80d3fwdawgn3pn4922x31fyqvsvbcjm4hd16fb"))))
14002 (build-system asdf-build-system/sbcl)
14003 (inputs
14004 `(("alexandria" ,sbcl-alexandria)
14005 ("cffi" ,sbcl-cffi)
14006 ("osicat" ,sbcl-osicat)
14007 ("ppcre" ,sbcl-cl-ppcre)
14008 ("split-sequence" ,sbcl-split-sequence)
14009 ("trivial-features" ,sbcl-trivial-features)))
14010 (native-inputs
14011 `(("cl-fad" ,sbcl-cl-fad)
14012 ("prove" ,sbcl-prove)))
14013 (home-page "https://github.com/fourier/ppath")
14014 (synopsis "Common Lisp's implementation of the Python's os.path module")
14015 (description
14016 "This library is a path strings manipulation library inspired by
14017 Python's @code{os.path}. All functionality from @code{os.path} is supported on
14018 major operation systems.
14019
14020 The philosophy behind is to use simple strings and \"dumb\" string
14021 manipulation functions to handle paths and filenames. Where possible the
14022 corresponding OS system functions are called.")
14023 (license license:bsd-2))))
14024
14025 (define-public ecl-ppath
14026 (sbcl-package->ecl-package sbcl-ppath))
14027
14028 (define-public cl-ppath
14029 (sbcl-package->cl-source-package sbcl-ppath))
14030
14031 (define-public sbcl-trivial-escapes
14032 (let ((commit "1eca78da2078495d09893be58c28b3aa7b8cc4d1"))
14033 (package
14034 (name "sbcl-trivial-escapes")
14035 (version (git-version "1.2.0" "1" commit))
14036 (source
14037 (origin
14038 (method git-fetch)
14039 (uri (git-reference
14040 (url "https://github.com/williamyaoh/trivial-escapes")
14041 (commit commit)))
14042 (file-name (git-file-name name commit))
14043 (sha256
14044 (base32 "0v6h8lk17iqv1qkxgqjyzn8gi6v0hvq2vmfbb01md3zjvjqxn6lr"))))
14045 (build-system asdf-build-system/sbcl)
14046 (inputs
14047 `(("named-readtables" ,sbcl-named-readtables)))
14048 (native-inputs
14049 `(("fiveam" ,sbcl-fiveam)))
14050 (home-page "https://github.com/williamyaoh/trivial-escapes")
14051 (synopsis "C-style escape directives for Common Lisp")
14052 (description
14053 "This Common Lisp library interprets escape characters the same way that
14054 most other programming language do.
14055 It provides four readtables. The default one lets you write strings like this:
14056 @code{#\"This string has\na newline in it!\"}.")
14057 (license license:public-domain))))
14058
14059 (define-public ecl-trivial-escapes
14060 (sbcl-package->ecl-package sbcl-trivial-escapes))
14061
14062 (define-public cl-trivial-escapes
14063 (sbcl-package->cl-source-package sbcl-trivial-escapes))
14064
14065 (define-public sbcl-cl-indentify
14066 (let ((commit "eb770f434defa4cd41d84bca822428dfd0dbac53"))
14067 (package
14068 (name "sbcl-cl-indentify")
14069 (version (git-version "0.1" "1" commit))
14070 (source
14071 (origin
14072 (method git-fetch)
14073 (uri (git-reference
14074 (url "https://github.com/yitzchak/cl-indentify")
14075 (commit commit)))
14076 (file-name (git-file-name name commit))
14077 (sha256
14078 (base32 "0ha36bhg474vr76vfhr13szc8cfdj1ickg92k1icz791bqaqg67p"))))
14079 (build-system asdf-build-system/sbcl)
14080 (inputs
14081 `(("alexandria" ,sbcl-alexandria)
14082 ("command-line-arguments" ,sbcl-command-line-arguments)
14083 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
14084 (native-inputs
14085 `(("trivial-escapes" ,sbcl-trivial-escapes)
14086 ("rove" ,sbcl-rove)))
14087 (home-page "https://github.com/yitzchak/cl-indentify")
14088 (synopsis "Code beautifier for Common Lisp")
14089 (description
14090 "A library and command line utility to automatically indent Common Lisp
14091 source files.")
14092 (license license:expat))))
14093
14094 (define-public ecl-cl-indentify
14095 (sbcl-package->ecl-package sbcl-cl-indentify))
14096
14097 (define-public cl-indentify
14098 (sbcl-package->cl-source-package sbcl-cl-indentify))
14099
14100 (define-public sbcl-concrete-syntax-tree
14101 (let ((commit "abd242a59dadc5452aa9dbc1d313c83ec2c11f46"))
14102 (package
14103 (name "sbcl-concrete-syntax-tree")
14104 (version (git-version "0.0.0" "1" commit))
14105 (source
14106 (origin
14107 (method git-fetch)
14108 (uri (git-reference
14109 (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14110 (commit commit)))
14111 (file-name (git-file-name name commit))
14112 (sha256
14113 (base32 "1lyrglc3h1if44gxd9cwv90wa90nrdjvb7fry39b1xn8ywdfa7di"))))
14114 (build-system asdf-build-system/sbcl)
14115 (inputs
14116 `(("acclimation" ,sbcl-acclimation)))
14117 (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14118 (synopsis "Parse Common Lisp code into a concrete syntax tree")
14119 (description
14120 "This library is intended to solve the problem of source tracking for
14121 Common Lisp code.
14122
14123 By \"source tracking\", it is meant that code elements that have a known
14124 origin in the form of a position in a file or in an editor buffer are
14125 associated with some kind of information about this origin.
14126
14127 Since the exact nature of such origin information depends on the Common Lisp
14128 implementation and the purpose of wanting to track that origin, the library
14129 does not impose a particular structure of this information. Instead, it
14130 provides utilities for manipulating source code in the form of what is called
14131 concrete syntax trees (CSTs for short) that preserve this information about
14132 the origin.")
14133 (license license:bsd-2))))
14134
14135 (define-public ecl-concrete-syntax-tree
14136 (sbcl-package->ecl-package sbcl-concrete-syntax-tree))
14137
14138 (define-public cl-concrete-syntax-tree
14139 (sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
14140
14141 (define-public sbcl-eclector
14142 (package
14143 (name "sbcl-eclector")
14144 (version "0.5.0")
14145 (source
14146 (origin
14147 (method git-fetch)
14148 (uri (git-reference
14149 (url "https://github.com/s-expressionists/Eclector")
14150 (commit version)))
14151 (file-name (git-file-name name version))
14152 (sha256
14153 (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
14154 (build-system asdf-build-system/sbcl)
14155 (inputs
14156 `(("acclimation" ,sbcl-acclimation)
14157 ("alexandria" ,sbcl-alexandria)
14158 ("closer-mop" ,sbcl-closer-mop)
14159 ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
14160 (native-inputs
14161 `(("fiveam" ,sbcl-fiveam)))
14162 (arguments
14163 '(#:asd-systems '("eclector"
14164 "eclector-concrete-syntax-tree")))
14165 (home-page "https://s-expressionists.github.io/Eclector/")
14166 (synopsis "Highly customizable, portable Common Lisp reader")
14167 (description
14168 "Eclector is a portable Common Lisp reader that is highly customizable,
14169 can recover from errors and can return concrete syntax trees.
14170
14171 In contrast to many other reader implementations, eclector can recover from
14172 most errors in the input supplied to it and continue reading. This capability
14173 is realized as a restart.
14174
14175 It can also produce instances of the concrete syntax tree classes provided by
14176 the concrete syntax tree library.")
14177 (license license:bsd-2)))
14178
14179 (define-public ecl-eclector
14180 (sbcl-package->ecl-package sbcl-eclector))
14181
14182 (define-public cl-eclector
14183 (sbcl-package->cl-source-package sbcl-eclector))
14184
14185 (define-public sbcl-jsown
14186 (let ((commit "744c4407bef58dfa876d9da0b5c0205d869e7977"))
14187 (package
14188 (name "sbcl-jsown")
14189 (version (git-version "1.0.1" "1" commit))
14190 (source
14191 (origin
14192 (method git-fetch)
14193 (uri (git-reference
14194 (url "https://github.com/madnificent/jsown")
14195 (commit commit)))
14196 (file-name (git-file-name name commit))
14197 (sha256
14198 (base32 "0gadvmf1d9bq35s61z76psrsnzwwk12svi66jigf491hv48wigw7"))))
14199 (build-system asdf-build-system/sbcl)
14200 (home-page "https://github.com/madnificent/jsown")
14201 (synopsis "Fast JSON reader / writer library for Common Lisp")
14202 (description
14203 "@code{jsown} is a high performance Common Lisp JSON parser. Its aim
14204 is to allow for the fast parsing of JSON objects in Common Lisp. Recently,
14205 functions and macros have been added to ease the burden of writing and editing
14206 @code{jsown} objects.
14207
14208 @code{jsown} allows you to parse JSON objects quickly to a modifiable Lisp
14209 list and write them back. If you only need partial retrieval of objects,
14210 @code{jsown} allows you to select the keys which you would like to see parsed.
14211 @code{jsown} also has a JSON writer and some helper methods to alter the JSON
14212 objects themselves.")
14213 (license license:expat))))
14214
14215 (define-public ecl-jsown
14216 (sbcl-package->ecl-package sbcl-jsown))
14217
14218 (define-public cl-jsown
14219 (sbcl-package->cl-source-package sbcl-jsown))
14220
14221 (define-public sbcl-system-locale
14222 (let ((commit "4b334bc2fa45651bcaa28ae7d9331095d6bf0a17"))
14223 (package
14224 (name "sbcl-system-locale")
14225 (version (git-version "1.0.0" "1" commit))
14226 (source
14227 (origin
14228 (method git-fetch)
14229 (uri (git-reference
14230 (url "https://github.com/Shinmera/system-locale/")
14231 (commit commit)))
14232 (file-name (git-file-name name commit))
14233 (sha256
14234 (base32 "00p5c053kmgq4ks6l9mxsqz6g3bjcybvkvj0bh3r90qgpkaawm1p"))))
14235 (build-system asdf-build-system/sbcl)
14236 (inputs
14237 `(("documentation-utils" ,sbcl-documentation-utils)))
14238 (home-page "https://shinmera.github.io/system-locale/")
14239 (synopsis "Get the system's locale and language settings in Common Lisp")
14240 (description
14241 "This library retrieves locale information configured on the
14242 system. This is helpful if you want to write applications and libraries that
14243 display messages in the user's native language.")
14244 (license license:zlib))))
14245
14246 (define-public ecl-system-locale
14247 (sbcl-package->ecl-package sbcl-system-locale))
14248
14249 (define-public cl-system-locale
14250 (sbcl-package->cl-source-package sbcl-system-locale))
14251
14252 (define-public sbcl-language-codes
14253 (let ((commit "e7aa0e37cb97a3d37d6bc7316b479d01bff8f42e"))
14254 (package
14255 (name "sbcl-language-codes")
14256 (version (git-version "1.0.0" "1" commit))
14257 (source
14258 (origin
14259 (method git-fetch)
14260 (uri (git-reference
14261 (url "https://github.com/Shinmera/language-codes")
14262 (commit commit)))
14263 (file-name (git-file-name name commit))
14264 (sha256
14265 (base32 "0py176ibmsc01n5r0q1bs1ykqf5jwdbh8kx0j1a814l9y51241v0"))))
14266 (build-system asdf-build-system/sbcl)
14267 (inputs
14268 `(("documentation-utils" ,sbcl-documentation-utils)))
14269 (home-page "https://shinmera.github.io/language-codes/")
14270 (synopsis "Map ISO language codes to language names in Common Lisp")
14271 (description
14272 "This is a small library providing the ISO-639 language code to
14273 language name mapping.")
14274 (license license:zlib))))
14275
14276 (define-public ecl-language-codes
14277 (sbcl-package->ecl-package sbcl-language-codes))
14278
14279 (define-public cl-language-codes
14280 (sbcl-package->cl-source-package sbcl-language-codes))
14281
14282 (define-public sbcl-multilang-documentation
14283 (let ((commit "59e798a07e949e8957a20927f52aca425d84e4a0"))
14284 (package
14285 (name "sbcl-multilang-documentation")
14286 (version (git-version "1.0.0" "1" commit))
14287 (source
14288 (origin
14289 (method git-fetch)
14290 (uri (git-reference
14291 (url "https://github.com/Shinmera/multilang-documentation")
14292 (commit commit)))
14293 (file-name (git-file-name name commit))
14294 (sha256
14295 (base32 "13y5jskx8n2b7kimpfarr8v777w3b7zj5swg1b99nj3hk0843ixw"))))
14296 (build-system asdf-build-system/sbcl)
14297 (inputs
14298 `(("documentation-utils" ,sbcl-documentation-utils)
14299 ("language-codes" ,sbcl-language-codes)
14300 ("system-locale" ,sbcl-system-locale)))
14301 (home-page "https://shinmera.github.io/multilang-documentation/")
14302 (synopsis "Add multiple languages support to Common Lisp documentation")
14303 (description
14304 "This library provides a drop-in replacement function for
14305 cl:documentation that supports multiple docstrings per-language, allowing you
14306 to write documentation that can be internationalised.")
14307 (license license:zlib))))
14308
14309 (define-public ecl-multilang-documentation
14310 (sbcl-package->ecl-package sbcl-multilang-documentation))
14311
14312 (define-public cl-multilang-documentation
14313 (sbcl-package->cl-source-package sbcl-multilang-documentation))
14314
14315 (define-public sbcl-trivial-do
14316 (let ((commit "03a1729f1e71bad3ebcf6cf098a0cce52dfa1163"))
14317 (package
14318 (name "sbcl-trivial-do")
14319 (version (git-version "0.1" "1" commit))
14320 (source
14321 (origin
14322 (method git-fetch)
14323 (uri (git-reference
14324 (url "https://github.com/yitzchak/trivial-do")
14325 (commit commit)))
14326 (file-name (git-file-name name commit))
14327 (sha256
14328 (base32 "1ffva79nkicc7wc8c2ic5nayis3b2rk5sxzj74yjkymkjgbpcrgd"))))
14329 (build-system asdf-build-system/sbcl)
14330 (home-page "https://github.com/yitzchak/trivial-do")
14331 (synopsis "Additional dolist style macros for Common Lisp")
14332 (description
14333 "Additional dolist style macros for Common Lisp, such as
14334 @code{doalist}, @code{dohash}, @code{dolist*}, @code{doplist}, @code{doseq}
14335 and @code{doseq*}.")
14336 (license license:zlib))))
14337
14338 (define-public ecl-trivial-do
14339 (sbcl-package->ecl-package sbcl-trivial-do))
14340
14341 (define-public cl-trivial-do
14342 (sbcl-package->cl-source-package sbcl-trivial-do))
14343
14344 (define-public sbcl-common-lisp-jupyter
14345 (let ((commit "61a9a8e7a18e2abd7af7c697ba5146fd19bd9d62"))
14346 (package
14347 (name "sbcl-common-lisp-jupyter")
14348 (version (git-version "0.1" "1" commit))
14349 (source
14350 (origin
14351 (method git-fetch)
14352 (uri (git-reference
14353 (url "https://github.com/yitzchak/common-lisp-jupyter")
14354 (commit commit)))
14355 (file-name (git-file-name name commit))
14356 (sha256
14357 (base32 "0zyzl55l45w9z65ygi5pcwda5w5p1j1bb0p2zg2n5cpv8344dkh2"))))
14358 (build-system asdf-build-system/sbcl)
14359 (inputs
14360 `(("alexandria" ,sbcl-alexandria)
14361 ("babel" ,sbcl-babel)
14362 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14363 ("cl-base64" ,sbcl-cl-base64)
14364 ("cl-indentify" ,sbcl-cl-indentify)
14365 ("closer-mop" ,sbcl-closer-mop)
14366 ("eclector" ,sbcl-eclector)
14367 ("ironclad" ,sbcl-ironclad)
14368 ("iterate" ,sbcl-iterate)
14369 ("jsown" ,sbcl-jsown)
14370 ("multilang-documentation" ,sbcl-multilang-documentation)
14371 ("pzmq" ,sbcl-pzmq)
14372 ("puri" ,sbcl-puri)
14373 ("static-vectors" ,sbcl-static-vectors)
14374 ("trivial-do" ,sbcl-trivial-do)
14375 ("trivial-garbage" ,sbcl-trivial-garbage)
14376 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
14377 ("trivial-mimes" ,sbcl-trivial-mimes)))
14378 (home-page "https://yitzchak.github.io/common-lisp-jupyter/")
14379 (synopsis "Common Lisp kernel for Jupyter")
14380 (description
14381 "This is a Common Lisp kernel for Jupyter along with a library for
14382 building Jupyter kernels, based on Maxima-Jupyter which was based on
14383 @code{cl-jupyter}.")
14384 (license license:zlib))))
14385
14386 (define-public ecl-common-lisp-jupyter
14387 (sbcl-package->ecl-package sbcl-common-lisp-jupyter))
14388
14389 (define-public cl-common-lisp-jupyter
14390 (sbcl-package->cl-source-package sbcl-common-lisp-jupyter))
14391
14392 (define-public sbcl-radiance
14393 (let ((commit "5ffbe1f157edd17a13194495099efd81e052df85")
14394 (revision "1"))
14395 (package
14396 (name "sbcl-radiance")
14397 (version (git-version "2.1.2" revision commit))
14398 (source
14399 (origin
14400 (method git-fetch)
14401 (uri (git-reference
14402 (url "https://github.com/Shirakumo/radiance")
14403 (commit commit)))
14404 (file-name (git-file-name "radiance" version))
14405 (sha256
14406 (base32 "0hbkcnmnlj1cqzbv18zmla2iwbl65kxilz9764hndf8x8as1539c"))))
14407 (build-system asdf-build-system/sbcl)
14408 (arguments
14409 `(#:tests? #f ; TODO: The tests require some configuration.
14410 #:phases
14411 (modify-phases %standard-phases
14412 (add-after 'unpack 'disable-quicklisp
14413 (lambda _
14414 ;; Disable the automatic installation of systems by Quicklisp.
14415 ;; (Maybe there would be a way to package Quicklisp and make it
14416 ;; install things in the user's directory instead of
14417 ;; /gnu/store/...).
14418 (substitute* "interfaces.lisp"
14419 (("\\(unless \\(asdf:find-system configured-implementation NIL\\)"
14420 all)
14421 (string-append "#+quicklisp " all))))))))
14422 (native-inputs
14423 `(("alexandria" ,sbcl-alexandria)
14424 ("dexador" ,sbcl-dexador)
14425 ("parachute" ,sbcl-parachute)
14426 ("verbose" ,sbcl-verbose)))
14427 (inputs
14428 `(("babel" ,sbcl-babel)
14429 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14430 ("cl-ppcre" ,sbcl-cl-ppcre)
14431 ("closer-mop" ,sbcl-closer-mop)
14432 ("documentation-utils" ,sbcl-documentation-utils)
14433 ("deploy" ,sbcl-deploy)
14434 ("form-fiddle" ,sbcl-form-fiddle)
14435 ("lambda-fiddle" ,sbcl-lambda-fiddle)
14436 ("local-time" ,sbcl-local-time)
14437 ("modularize-hooks" ,sbcl-modularize-hooks)
14438 ("modularize-interfaces" ,sbcl-modularize-interfaces)
14439 ("puri" ,sbcl-puri)
14440 ("trivial-indent" ,sbcl-trivial-indent)
14441 ("trivial-mimes" ,sbcl-trivial-mimes)
14442 ("ubiquitous-concurrent" ,sbcl-ubiquitous)))
14443 (home-page "https://shirakumo.github.io/radiance/")
14444 (synopsis "Common Lisp web application environment")
14445 (description
14446 "Radiance is a web application environment, which is sort of like a web
14447 framework, but more general, more flexible. It should let you write personal
14448 websites and generally deployable applications easily and in such a way that
14449 they can be used on practically any setup without having to undergo special
14450 adaptations.")
14451 (license license:zlib))))
14452
14453 (define-public ecl-radiance
14454 (sbcl-package->ecl-package sbcl-radiance))
14455
14456 (define-public cl-radiance
14457 (sbcl-package->cl-source-package sbcl-radiance))