gnu: sbcl-static-vectors: Update to 1.8.6.
[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 lisp)
71 #:use-module (gnu packages maths)
72 #:use-module (gnu packages mp3)
73 #:use-module (gnu packages networking)
74 #:use-module (gnu packages pkg-config)
75 #:use-module (gnu packages python)
76 #:use-module (gnu packages python-xyz)
77 #:use-module (gnu packages sqlite)
78 #:use-module (gnu packages tcl)
79 #:use-module (gnu packages tls)
80 #:use-module (gnu packages web)
81 #:use-module (gnu packages webkit)
82 #:use-module (gnu packages xdisorg)
83 #:use-module (ice-9 match)
84 #:use-module (srfi srfi-1)
85 #:use-module (srfi srfi-19))
86
87 (define-public sbcl-alexandria
88 (package
89 (name "sbcl-alexandria")
90 (version "1.2")
91 (source
92 (origin
93 (method git-fetch)
94 (uri (git-reference
95 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
96 (commit (string-append "v" version))))
97 (sha256
98 (base32
99 "0bcqs0z9xlqgjz43qzgq9i07vdlnjllpm1wwa37wpkg0w975r712"))
100 (file-name (git-file-name name version))))
101 (build-system asdf-build-system/sbcl)
102 (native-inputs
103 `(("rt" ,sbcl-rt)))
104 (synopsis "Collection of portable utilities for Common Lisp")
105 (description
106 "Alexandria is a collection of portable utilities. It does not contain
107 conceptual extensions to Common Lisp. It is conservative in scope, and
108 portable between implementations.")
109 (home-page "https://common-lisp.net/project/alexandria/")
110 (license license:public-domain)))
111
112 (define-public cl-alexandria
113 (sbcl-package->cl-source-package sbcl-alexandria))
114
115 (define-public ecl-alexandria
116 (sbcl-package->ecl-package sbcl-alexandria))
117
118 (define-public sbcl-golden-utils
119 (let ((commit "9424419d867d5c2f819196ee41667a818a5058e7")
120 (revision "1"))
121 (package
122 (name "sbcl-golden-utils")
123 (version (git-version "0.0.0" revision commit))
124 (source
125 (origin
126 (method git-fetch)
127 (uri (git-reference
128 (url "https://git.mfiano.net/mfiano/golden-utils")
129 (commit commit)))
130 (file-name (git-file-name name version))
131 (sha256
132 (base32 "15x0phm6820yj3h37ibi06gjyh6z45sd2nz2n8lcbfflwm086q0h"))))
133 (build-system asdf-build-system/sbcl)
134 (inputs
135 `(("alexandria" ,sbcl-alexandria)))
136 (home-page "https://git.mfiano.net/mfiano/golden-utils")
137 (synopsis "Common Lisp utility library")
138 (description
139 "This is a Common Lisp library providing various utilities.")
140 (license license:expat))))
141
142 (define-public ecl-golden-utils
143 (sbcl-package->ecl-package sbcl-golden-utils))
144
145 (define-public cl-golden-utils
146 (sbcl-package->cl-source-package sbcl-golden-utils))
147
148 (define-public sbcl-asdf-finalizers
149 (let ((commit "7f537f6c598b662ae987c6acc268dd27c25977e0")
150 (revision "1"))
151 (package
152 (name "sbcl-asdf-finalizers")
153 (version (git-version "0.0.0" revision commit))
154 (source
155 (origin
156 (method git-fetch)
157 (uri (git-reference
158 (url "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
159 (commit commit)))
160 (file-name (git-file-name name version))
161 (sha256
162 (base32 "1w56c9yjjydjshsgqxz57qlp2v3r4ilbisnsgiqphvxnhvd41y0v"))))
163 (build-system asdf-build-system/sbcl)
164 (native-inputs
165 `(("fare-utils" ,sbcl-fare-utils)
166 ("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
167 (arguments
168 `(#:asd-files '("asdf-finalizers.asd"
169 "list-of.asd"
170 "asdf-finalizers-test.asd")
171 #:asd-systems '("asdf-finalizers"
172 "list-of")))
173 (home-page "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
174 (synopsis "Enforced calling of finalizers for Lisp code")
175 (description "This library allows you to implement and enforce proper
176 finalization of compile-time constructs while building Lisp source files.
177
178 It produces two systems: asdf-finalizers and list-of.")
179 (license license:expat))))
180
181 (define-public ecl-asdf-finalizers
182 (sbcl-package->ecl-package sbcl-asdf-finalizers))
183
184 (define-public cl-asdf-finalizers
185 (sbcl-package->cl-source-package sbcl-asdf-finalizers))
186
187 (define-public sbcl-net.didierverna.asdf-flv
188 (package
189 (name "sbcl-net.didierverna.asdf-flv")
190 (version "2.1")
191 (source
192 (origin
193 (method git-fetch)
194 (uri (git-reference
195 (url "https://github.com/didierverna/asdf-flv")
196 (commit (string-append "version-" version))))
197 (file-name (git-file-name "asdf-flv" version))
198 (sha256
199 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
200 (build-system asdf-build-system/sbcl)
201 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
202 (description "ASDF-FLV provides support for file-local variables through
203 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
204 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
205 dynamic binding is created before processing the file, so that any
206 modification to the variable becomes essentially file-local.
207
208 In order to make one or several variables file-local, use the macros
209 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
210 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
211 (license (license:non-copyleft
212 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
213 "GNU All-Permissive License"))))
214
215 (define-public cl-net.didierverna.asdf-flv
216 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
217
218 (define-public ecl-net.didierverna.asdf-flv
219 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
220
221 (define-public sbcl-command-line-arguments
222 (let ((commit "fbac862fb01c0e368141204f3f639920462c23fe")
223 (revision "1"))
224 (package
225 (name "sbcl-command-line-arguments")
226 (version (git-version "2.0.0" revision commit))
227 (source
228 (origin
229 (method git-fetch)
230 (uri (git-reference
231 (url "https://github.com/fare/command-line-arguments")
232 (commit commit)))
233 (file-name (git-file-name name version))
234 (sha256
235 (base32 "054m1ikndzqf72mb9ajaa64136cwr3bgag4yfbi1574a9vq75mjq"))))
236 (build-system asdf-build-system/sbcl)
237 (home-page "https://github.com/fare/command-line-arguments")
238 (synopsis "Trivial command-line argument parsing library for Common Lisp")
239 (description "This is a library to abstract away the parsing of
240 Unix-style command-line arguments. Use it in conjunction with asdf:program-op
241 or cl-launch for portable processing of command-line arguments.")
242 (license license:expat))))
243
244 (define-public ecl-command-line-arguments
245 (sbcl-package->ecl-package sbcl-command-line-arguments))
246
247 (define-public cl-command-line-arguments
248 (sbcl-package->cl-source-package sbcl-command-line-arguments))
249
250 (define-public sbcl-fiveam
251 (package
252 (name "sbcl-fiveam")
253 (version "1.4.1")
254 (source
255 (origin
256 (method git-fetch)
257 (uri (git-reference
258 (url "https://github.com/sionescu/fiveam")
259 (commit (string-append "v" version))))
260 (file-name (git-file-name "fiveam" version))
261 (sha256
262 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
263 (inputs
264 `(("alexandria" ,sbcl-alexandria)
265 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
266 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
267 (build-system asdf-build-system/sbcl)
268 (synopsis "Common Lisp testing framework")
269 (description "FiveAM is a simple (as far as writing and running tests
270 goes) regression testing framework. It has been designed with Common Lisp's
271 interactive development model in mind.")
272 (home-page "https://common-lisp.net/project/fiveam/")
273 (license license:bsd-3)))
274
275 (define-public cl-fiveam
276 (sbcl-package->cl-source-package sbcl-fiveam))
277
278 (define-public ecl-fiveam
279 (sbcl-package->ecl-package sbcl-fiveam))
280
281 (define-public sbcl-trivial-timeout
282 (let ((commit "feb869357f40f5e109570fb40abad215fb370c6c")
283 (revision "1"))
284 (package
285 (name "sbcl-trivial-timeout")
286 (version (git-version "0.1.5" revision commit))
287 (source
288 (origin
289 (method git-fetch)
290 (uri (git-reference
291 (url "https://github.com/gwkkwg/trivial-timeout/")
292 (commit commit)))
293 (file-name (git-file-name "trivial-timeout" version))
294 (sha256
295 (base32 "1kninxwvvih9nhh7a9y8lfgi7pdr76675y1clw4ss17vz8fbim5p"))))
296 (build-system asdf-build-system/sbcl)
297 (native-inputs
298 `(("lift" ,sbcl-lift)))
299 (arguments
300 ;; NOTE: (Sharlatan-20210202T231437+0000): Due to the age of this library
301 ;; tests use some deprecated functionality and keep failing.
302 `(#:tests? #f))
303 (home-page "https://github.com/gwkkwg/trivial-timeout/")
304 (synopsis "Timeout library for Common Lisp")
305 (description
306 "This library provides an OS and implementation independent access to
307 timeouts.")
308 (license license:expat))))
309
310 (define-public ecl-trivial-timeout
311 (sbcl-package->ecl-package sbcl-trivial-timeout))
312
313 (define-public cl-trivial-timeout
314 (sbcl-package->cl-source-package sbcl-trivial-timeout))
315
316 (define-public sbcl-bordeaux-threads
317 (package
318 (name "sbcl-bordeaux-threads")
319 (version "0.8.8")
320 (source (origin
321 (method git-fetch)
322 (uri (git-reference
323 (url "https://github.com/sionescu/bordeaux-threads")
324 (commit (string-append "v" version))))
325 (sha256
326 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"))
327 (file-name
328 (git-file-name "bordeaux-threads" version))))
329 (inputs `(("alexandria" ,sbcl-alexandria)))
330 (native-inputs `(("fiveam" ,sbcl-fiveam)))
331 (build-system asdf-build-system/sbcl)
332 (synopsis "Portable shared-state concurrency library for Common Lisp")
333 (description "BORDEAUX-THREADS is a proposed standard for a minimal
334 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
335 support.")
336 (home-page "https://common-lisp.net/project/bordeaux-threads/")
337 (license license:x11)))
338
339 (define-public cl-bordeaux-threads
340 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
341
342 (define-public ecl-bordeaux-threads
343 (sbcl-package->ecl-package sbcl-bordeaux-threads))
344
345 (define-public sbcl-trivial-gray-streams
346 (let ((revision "1")
347 (commit "ebd59b1afed03b9dc8544320f8f432fdf92ab010"))
348 (package
349 (name "sbcl-trivial-gray-streams")
350 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
351 (source
352 (origin
353 (method git-fetch)
354 (uri
355 (git-reference
356 (url "https://github.com/trivial-gray-streams/trivial-gray-streams")
357 (commit commit)))
358 (sha256
359 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94"))
360 (file-name
361 (string-append "trivial-gray-streams-" version "-checkout"))))
362 (build-system asdf-build-system/sbcl)
363 (synopsis "Compatibility layer for Gray streams implementations")
364 (description "Gray streams is an interface proposed for inclusion with
365 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
366 popular CL implementations implement it. This package provides an extremely
367 thin compatibility layer for gray streams.")
368 (home-page "https://www.cliki.net/trivial-gray-streams")
369 (license license:x11))))
370
371 (define-public cl-trivial-gray-streams
372 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
373
374 (define-public ecl-trivial-gray-streams
375 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
376
377 (define-public sbcl-fiasco
378 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
379 (revision "1"))
380 (package
381 (name "sbcl-fiasco")
382 (version (git-version "0.0.1" revision commit))
383 (source
384 (origin
385 (method git-fetch)
386 (uri (git-reference
387 (url "https://github.com/joaotavora/fiasco")
388 (commit commit)))
389 (file-name (git-file-name "fiasco" version))
390 (sha256
391 (base32
392 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
393 (build-system asdf-build-system/sbcl)
394 (inputs
395 `(("alexandria" ,sbcl-alexandria)
396 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
397 (synopsis "Simple and powerful test framework for Common Lisp")
398 (description "A Common Lisp test framework that treasures your failures,
399 logical continuation of Stefil. It focuses on interactive debugging.")
400 (home-page "https://github.com/joaotavora/fiasco")
401 ;; LICENCE specifies this is public-domain unless the legislation
402 ;; doesn't allow or recognize it. In that case it falls back to a
403 ;; permissive licence.
404 (license (list license:public-domain
405 (license:x11-style "file://LICENCE"))))))
406
407 (define-public cl-fiasco
408 (sbcl-package->cl-source-package sbcl-fiasco))
409
410 (define-public ecl-fiasco
411 (sbcl-package->ecl-package sbcl-fiasco))
412
413 (define-public sbcl-flexi-streams
414 (package
415 (name "sbcl-flexi-streams")
416 (version "1.0.18")
417 (source
418 (origin
419 (method git-fetch)
420 (uri (git-reference
421 (url "https://github.com/edicl/flexi-streams")
422 (commit (string-append "v" version))))
423 (file-name (git-file-name "flexi-streams" version))
424 (sha256
425 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
426 (build-system asdf-build-system/sbcl)
427 (arguments
428 `(#:phases
429 (modify-phases %standard-phases
430 (add-after 'unpack 'make-git-checkout-writable
431 (lambda _
432 (for-each make-file-writable (find-files "."))
433 #t)))))
434 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
435 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
436 (description "Flexi-streams is an implementation of \"virtual\" bivalent
437 streams that can be layered atop real binary or bivalent streams and that can
438 be used to read and write character data in various single- or multi-octet
439 encodings which can be changed on the fly. It also supplies in-memory binary
440 streams which are similar to string streams.")
441 (home-page "http://weitz.de/flexi-streams/")
442 (license license:bsd-3)))
443
444 (define-public cl-flexi-streams
445 (sbcl-package->cl-source-package sbcl-flexi-streams))
446
447 (define-public ecl-flexi-streams
448 (sbcl-package->ecl-package sbcl-flexi-streams))
449
450 (define-public sbcl-cl-abnf
451 ;; There are no releases
452 (let ((commit "ba1fbb104dedbdaddb1ef93d2e4da711bd96cd70")
453 (revision "1"))
454 (package
455 (name "sbcl-cl-abnf")
456 (version (git-version "0.0.0" revision commit))
457 (source
458 (origin
459 (method git-fetch)
460 (uri (git-reference
461 (url "https://github.com/dimitri/cl-abnf")
462 (commit commit)))
463 (file-name (git-file-name "cl-abnf" version))
464 (sha256
465 (base32 "0f09nsndxa90acm71zd4qdnp40v705a4sqm04mnv9x76h6dlggmz"))))
466 (build-system asdf-build-system/sbcl)
467 (inputs
468 `(("cl-ppcre" ,sbcl-cl-ppcre)
469 ("esrap" ,sbcl-esrap)))
470 (arguments
471 `(#:asd-systems '("abnf")))
472 (home-page "https://github.com/dimitri/cl-abnf")
473 (synopsis "ABNF parser generator for Common Lisp")
474 (description "This Common Lisp library implements a parser generator for
475 the ABNF grammar format as described in RFC2234. The generated parser is a
476 regular expression scanner provided by the cl-ppcre lib, which means that we
477 can't parse recursive grammar definition. One such definition is the ABNF
478 definition as given by the RFC. Fortunately, as you have this lib, you most
479 probably don't need to generate another parser to handle that particular ABNF
480 grammar.")
481 (license license:expat))))
482
483 (define-public cl-abnf
484 (sbcl-package->cl-source-package sbcl-cl-abnf))
485
486 (define-public ecl-cl-abnf
487 (sbcl-package->ecl-package sbcl-cl-abnf))
488
489 (define-public sbcl-cl-ppcre
490 (package
491 (name "sbcl-cl-ppcre")
492 (version "2.1.1")
493 (source
494 (origin
495 (method git-fetch)
496 (uri (git-reference
497 (url "https://github.com/edicl/cl-ppcre")
498 (commit (string-append "v" version))))
499 (file-name (git-file-name "cl-ppcre" version))
500 (sha256
501 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
502 (build-system asdf-build-system/sbcl)
503 (native-inputs
504 `(("flexi-streams" ,sbcl-flexi-streams)))
505 (arguments
506 `(#:phases
507 (modify-phases %standard-phases
508 (add-after 'unpack 'disable-ppcre-unicode
509 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
510 ;; to work around the circular dependency between edicl/cl-ppcre
511 ;; and edicl/cl-unicode.
512 (lambda _
513 (delete-file "cl-ppcre-unicode.asd")
514 #t)))))
515 (synopsis "Portable regular expression library for Common Lisp")
516 (description "CL-PPCRE is a portable regular expression library for Common
517 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
518 compatible with ANSI-compliant Common Lisp implementations.")
519 (home-page "http://weitz.de/cl-ppcre/")
520 (license license:bsd-2)))
521
522 (define-public cl-ppcre
523 (sbcl-package->cl-source-package sbcl-cl-ppcre))
524
525 (define-public ecl-cl-ppcre
526 (sbcl-package->ecl-package sbcl-cl-ppcre))
527
528 (define-public sbcl-ubiquitous
529 (let ((commit "35eb7bd9e1b3daee1705f6b41260775180cce8af")
530 (revision "1"))
531 (package
532 (name "sbcl-ubiquitous")
533 (version (git-version "2.0.0" revision commit))
534 (source
535 (origin
536 (method git-fetch)
537 (uri (git-reference
538 (url "https://github.com/Shinmera/ubiquitous")
539 (commit commit)))
540 (file-name (git-file-name "ubiquitous" version))
541 (sha256
542 (base32 "1xlkaqmjcpkiv2xl2s2pvvrv976dlc846wm16s1lj62iy1315i49"))))
543 (build-system asdf-build-system/sbcl)
544 (inputs
545 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
546 (arguments
547 '(#:asd-systems '("ubiquitous"
548 "ubiquitous-concurrent")))
549 (home-page "https://shinmera.github.io/ubiquitous/")
550 (synopsis "Application configuration mechanism for Common Lisp")
551 (description
552 "@code{UBIQUITOUS} is a very easy-to-use library for persistent
553 configuration storage. It automatically takes care of finding a suitable place
554 to save your data, and provides simple functions to access and modify the data
555 within.")
556 (license license:zlib))))
557
558 (define-public ecl-ubiquitous
559 (sbcl-package->ecl-package sbcl-ubiquitous))
560
561 (define-public cl-ubiquitous
562 (sbcl-package->cl-source-package sbcl-ubiquitous))
563
564 (define-public sbcl-uax-15
565 (package
566 (name "sbcl-uax-15")
567 (version "0.1.1")
568 (source
569 (origin
570 (method git-fetch)
571 (uri (git-reference
572 (url "https://github.com/sabracrolleton/uax-15")
573 (commit (string-append "v" version))))
574 (file-name (git-file-name "uax-15" version))
575 (sha256
576 (base32 "0p2ckw7mzxhwa9vbwj2q2dzayz9dl94d9yqd2ynp0pc5v8i0n2fr"))))
577 (build-system asdf-build-system/sbcl)
578 (arguments
579 `(#:asd-systems
580 '("uax-15")))
581 (native-inputs
582 `(("fiveam" ,sbcl-fiveam)))
583 (inputs
584 `(("cl-ppcre" ,sbcl-cl-ppcre)
585 ("split-sequence" ,sbcl-split-sequence)))
586 (home-page "https://github.com/sabracrolleton/uax-15")
587 (synopsis "Common Lisp implementation of unicode normalization functions")
588 (description
589 "This package provides supports for unicode normalization, RFC8264 and
590 RFC7564.")
591 (license license:expat)))
592
593 (define-public cl-uax-15
594 (sbcl-package->cl-source-package sbcl-uax-15))
595
596 (define-public ecl-uax-15
597 (sbcl-package->ecl-package sbcl-uax-15))
598
599 (define-public sbcl-cl-unicode
600 (package
601 (name "sbcl-cl-unicode")
602 (version "0.1.6")
603 (source (origin
604 (method git-fetch)
605 (uri (git-reference
606 (url "https://github.com/edicl/cl-unicode")
607 (commit (string-append "v" version))))
608 (file-name (git-file-name name version))
609 (sha256
610 (base32
611 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
612 (build-system asdf-build-system/sbcl)
613 (native-inputs
614 `(("flexi-streams" ,sbcl-flexi-streams)))
615 (inputs
616 `(("cl-ppcre" ,sbcl-cl-ppcre)))
617 (home-page "http://weitz.de/cl-unicode/")
618 (synopsis "Portable Unicode library for Common Lisp")
619 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
620 is compatible with perl. It is pretty fast, thread-safe, and compatible with
621 ANSI-compliant Common Lisp implementations.")
622 (license license:bsd-2)))
623
624 (define-public ecl-cl-unicode
625 (sbcl-package->ecl-package sbcl-cl-unicode))
626
627 (define-public cl-unicode
628 (sbcl-package->cl-source-package sbcl-cl-unicode))
629
630 (define-public sbcl-cl-ppcre-unicode
631 (package (inherit sbcl-cl-ppcre)
632 (name "sbcl-cl-ppcre-unicode")
633 (inputs
634 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
635 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))
636 (arguments
637 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
638 #:phases
639 (modify-phases %standard-phases
640 (add-after 'unpack 'disable-ppcre
641 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
642 ;; to work around the circular dependency between edicl/cl-ppcre
643 ;; and edicl/cl-unicode.
644 (lambda _
645 (delete-file "cl-ppcre.asd")
646 #t)))))))
647
648 (define-public cl-ppcre-unicode
649 (sbcl-package->cl-source-package sbcl-cl-ppcre-unicode))
650
651 (define-public ecl-cl-ppcre-unicode
652 (sbcl-package->ecl-package sbcl-cl-ppcre-unicode))
653
654 (define-public sbcl-zpb-ttf
655 (package
656 (name "sbcl-zpb-ttf")
657 (version "1.0.3")
658 (source
659 (origin
660 (method git-fetch)
661 (uri (git-reference
662 (url "https://github.com/xach/zpb-ttf")
663 (commit (string-append "release-" version))))
664 (file-name (git-file-name name version))
665 (sha256
666 (base32
667 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
668 (build-system asdf-build-system/sbcl)
669 (home-page "https://github.com/xach/zpb-ttf")
670 (synopsis "TrueType font file access for Common Lisp")
671 (description
672 "ZPB-TTF is a TrueType font file parser that provides an interface for
673 reading typographic metrics, glyph outlines, and other information from the
674 file.")
675 (license license:bsd-2)))
676
677 (define-public ecl-zpb-ttf
678 (sbcl-package->ecl-package sbcl-zpb-ttf))
679
680 (define-public cl-zpb-ttf
681 (sbcl-package->cl-source-package sbcl-zpb-ttf))
682
683 (define-public sbcl-cl-vectors
684 (package
685 (name "sbcl-cl-vectors")
686 (version "0.1.5")
687 (source
688 (origin
689 (method url-fetch)
690 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
691 "files/cl-vectors-" version ".tar.gz"))
692 (sha256
693 (base32
694 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
695 (build-system asdf-build-system/sbcl)
696 (inputs
697 `(("zpb-ttf" ,sbcl-zpb-ttf)))
698 (arguments
699 '(#:asd-systems '("cl-vectors"
700 "cl-paths-ttf")))
701 (home-page "http://projects.tuxee.net/cl-vectors/")
702 (synopsis "Create, transform and render anti-aliased vectorial paths")
703 (description
704 "This is a pure Common Lisp library to create, transform and render
705 anti-aliased vectorial paths.")
706 (license license:expat)))
707
708 (define-public ecl-cl-vectors
709 (sbcl-package->ecl-package sbcl-cl-vectors))
710
711 (define-public cl-vectors
712 (sbcl-package->cl-source-package sbcl-cl-vectors))
713
714 (define-public sbcl-spatial-trees
715 ;; There have been no releases.
716 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
717 (revision "1"))
718 (package
719 (name "sbcl-spatial-trees")
720 (version (git-version "0" revision commit))
721 (source
722 (origin
723 (method git-fetch)
724 (uri (git-reference
725 (url "https://github.com/rpav/spatial-trees")
726 (commit commit)))
727 (file-name (git-file-name name version))
728 (sha256
729 (base32
730 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
731 (build-system asdf-build-system/sbcl)
732 (arguments
733 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
734 #:test-asd-file "spatial-trees.test.asd"))
735 (native-inputs
736 `(("fiveam" ,sbcl-fiveam)))
737 (home-page "https://github.com/rpav/spatial-trees")
738 (synopsis "Dynamic index data structures for spatially-extended data")
739 (description
740 "Spatial-trees is a set of dynamic index data structures for
741 spatially-extended data.")
742 (license license:bsd-3))))
743
744 (define-public ecl-spatial-trees
745 (sbcl-package->ecl-package sbcl-spatial-trees))
746
747 (define-public cl-spatial-trees
748 (sbcl-package->cl-source-package sbcl-spatial-trees))
749
750 (define-public sbcl-flexichain
751 ;; There are no releases.
752 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
753 (revision "1"))
754 (package
755 (name "sbcl-flexichain")
756 (version "1.5.1")
757 (source
758 (origin
759 (method git-fetch)
760 (uri (git-reference
761 (url "https://github.com/robert-strandh/Flexichain")
762 (commit commit)))
763 (file-name (git-file-name name version))
764 (sha256
765 (base32
766 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
767 (build-system asdf-build-system/sbcl)
768 (home-page "https://github.com/robert-strandh/Flexichain.git")
769 (synopsis "Dynamically add elements to or remove them from sequences")
770 (description
771 "This package provides an implementation of the flexichain protocol,
772 allowing client code to dynamically add elements to, and delete elements from
773 a sequence (or chain) of such elements.")
774 (license license:lgpl2.1+))))
775
776 (define-public ecl-flexichain
777 (sbcl-package->ecl-package sbcl-flexichain))
778
779 (define-public cl-flexichain
780 (sbcl-package->cl-source-package sbcl-flexichain))
781
782 (define-public sbcl-cl-pdf
783 ;; There are no releases
784 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
785 (revision "1"))
786 (package
787 (name "sbcl-cl-pdf")
788 (version (git-version "0" revision commit))
789 (source
790 (origin
791 (method git-fetch)
792 (uri (git-reference
793 (url "https://github.com/mbattyani/cl-pdf")
794 (commit commit)))
795 (file-name (git-file-name name version))
796 (sha256
797 (base32
798 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
799 (build-system asdf-build-system/sbcl)
800 (inputs
801 `(("iterate" ,sbcl-iterate)
802 ("zpb-ttf" ,sbcl-zpb-ttf)))
803 (home-page "https://github.com/mbattyani/cl-pdf")
804 (synopsis "Common Lisp library for generating PDF files")
805 (description
806 "CL-PDF is a cross-platform Common Lisp library for generating PDF
807 files.")
808 (license license:bsd-2))))
809
810 (define-public ecl-cl-pdf
811 (sbcl-package->ecl-package sbcl-cl-pdf))
812
813 (define-public cl-pdf
814 (sbcl-package->cl-source-package sbcl-cl-pdf))
815
816 (define-public sbcl-clx
817 (package
818 (name "sbcl-clx")
819 (version "0.7.5")
820 (source
821 (origin
822 (method git-fetch)
823 (uri
824 (git-reference
825 (url "https://github.com/sharplispers/clx")
826 (commit version)))
827 (sha256
828 (base32
829 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
830 (file-name (string-append "clx-" version))))
831 (build-system asdf-build-system/sbcl)
832 (native-inputs
833 `(("fiasco" ,sbcl-fiasco)))
834 (home-page "https://www.cliki.net/portable-clx")
835 (synopsis "X11 client library for Common Lisp")
836 (description "CLX is an X11 client library for Common Lisp. The code was
837 originally taken from a CMUCL distribution, was modified somewhat in order to
838 make it compile and run under SBCL, then a selection of patches were added
839 from other CLXes around the net.")
840 (license license:x11)))
841
842 (define-public cl-clx
843 (sbcl-package->cl-source-package sbcl-clx))
844
845 (define-public ecl-clx
846 (sbcl-package->ecl-package sbcl-clx))
847
848 (define-public sbcl-clx-truetype
849 (let ((commit "c6e10a918d46632324d5863a8ed067a83fc26de8")
850 (revision "1"))
851 (package
852 (name "sbcl-clx-truetype")
853 (version (git-version "0.0.1" revision commit))
854 (source
855 (origin
856 (method git-fetch)
857 (uri (git-reference
858 (url "https://github.com/l04m33/clx-truetype")
859 (commit commit)))
860 (file-name (git-file-name name version))
861 (sha256
862 (base32
863 "079hyp92cjkdfn6bhkxsrwnibiqbz4y4af6nl31lzw6nm91j5j37"))
864 (modules '((guix build utils)))
865 (snippet
866 '(begin
867 (substitute* "package.lisp"
868 ((":export") ":export\n :+font-cache-filename+"))
869 #t))))
870 (build-system asdf-build-system/sbcl)
871 (inputs
872 `(("clx" ,sbcl-clx)
873 ("zpb-ttf" ,sbcl-zpb-ttf)
874 ("cl-vectors" ,sbcl-cl-vectors)
875 ("cl-fad" ,sbcl-cl-fad)
876 ("cl-store" ,sbcl-cl-store)
877 ("trivial-features" ,sbcl-trivial-features)))
878 (home-page "https://github.com/l04m33/clx-truetype")
879 (synopsis "Antialiased TrueType font rendering using CLX and XRender")
880 (description "CLX-TrueType is pure common lisp solution for
881 antialiased TrueType font rendering using CLX and XRender extension.")
882 (license license:expat))))
883
884 (define-public cl-clx-truetype
885 (sbcl-package->cl-source-package sbcl-clx-truetype))
886
887 (define-public ecl-clx-truetype
888 (sbcl-package->ecl-package sbcl-clx-truetype))
889
890 (define-public sbcl-slynk
891 (let ((commit "0f46f91a9542599d62c0c332b39636b2941ea372"))
892 (package
893 (name "sbcl-slynk")
894 (version (git-version "1.0.43" "3" commit))
895 (source
896 (origin
897 (method git-fetch)
898 (uri
899 (git-reference
900 (url "https://github.com/joaotavora/sly")
901 (commit commit)))
902 (sha256
903 (base32 "0p3j0zylacy6vms8ngis2hx2351xnwfzsw3zy043q6vmqd14wrf1"))
904 (file-name (git-file-name "slynk" version))))
905 (build-system asdf-build-system/sbcl)
906 (outputs '("out" "image"))
907 (arguments
908 `(#:phases
909 (modify-phases %standard-phases
910 (add-after 'create-asdf-configuration 'build-image
911 (lambda* (#:key outputs #:allow-other-keys)
912 (build-image (string-append
913 (assoc-ref %outputs "image")
914 "/bin/slynk")
915 %outputs
916 #:dependencies '("slynk"
917 "slynk/arglists"
918 "slynk/fancy-inspector"
919 "slynk/package-fu"
920 "slynk/mrepl"
921 "slynk/trace-dialog"
922 "slynk/profiler"
923 "slynk/stickers"
924 "slynk/indentation"
925 "slynk/retro"))
926 #t)))))
927 (synopsis "Common Lisp IDE for Emacs")
928 (description "SLY is a fork of SLIME, an IDE backend for Common Lisp.
929 It also features a completely redesigned REPL based on Emacs's own
930 full-featured @code{comint-mode}, live code annotations, and a consistent interactive
931 button interface. Everything can be copied to the REPL. One can create
932 multiple inspectors with independent history.")
933 (home-page "https://github.com/joaotavora/sly")
934 (license license:public-domain)
935 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
936
937 (define-public cl-slynk
938 (sbcl-package->cl-source-package sbcl-slynk))
939
940 (define-public ecl-slynk
941 (let ((pkg (sbcl-package->ecl-package sbcl-slynk)))
942 (package
943 (inherit pkg)
944 (outputs '("out"))
945 (arguments
946 (substitute-keyword-arguments (package-arguments pkg)
947 ((#:phases phases)
948 `(modify-phases ,phases
949 (delete 'build-image))))))))
950
951 (define-public sbcl-parse-js
952 (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6")
953 (revision "1"))
954 (package
955 (name "sbcl-parse-js")
956 (version (string-append "0.0.0-" revision "." (string-take commit 9)))
957 (source
958 (origin
959 (method git-fetch)
960 (uri (git-reference
961 (url "http://marijn.haverbeke.nl/git/parse-js")
962 (commit commit)))
963 (file-name (string-append name "-" commit "-checkout"))
964 (sha256
965 (base32
966 "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39"))))
967 (build-system asdf-build-system/sbcl)
968 (home-page "https://marijnhaverbeke.nl/parse-js/")
969 (synopsis "Parse JavaScript")
970 (description "Parse-js is a Common Lisp package for parsing
971 JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
972 (license license:zlib))))
973
974 (define-public cl-parse-js
975 (sbcl-package->cl-source-package sbcl-parse-js))
976
977 (define-public ecl-parse-js
978 (sbcl-package->ecl-package sbcl-parse-js))
979
980 (define-public sbcl-parse-number
981 (package
982 (name "sbcl-parse-number")
983 (version "1.7")
984 (source
985 (origin
986 (method git-fetch)
987 (uri (git-reference
988 (url "https://github.com/sharplispers/parse-number/")
989 (commit (string-append "v" version))))
990 (file-name (git-file-name name version))
991 (sha256
992 (base32
993 "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"))))
994 (build-system asdf-build-system/sbcl)
995 (home-page "https://www.cliki.net/PARSE-NUMBER")
996 (synopsis "Parse numbers")
997 (description "@code{parse-number} is a library of functions for parsing
998 strings into one of the standard Common Lisp number types without using the
999 reader. @code{parse-number} accepts an arbitrary string and attempts to parse
1000 the string into one of the standard Common Lisp number types, if possible, or
1001 else @code{parse-number} signals an error of type @code{invalid-number}.")
1002 (license license:bsd-3)))
1003
1004 (define-public cl-parse-number
1005 (sbcl-package->cl-source-package sbcl-parse-number))
1006
1007 (define-public ecl-parse-number
1008 (sbcl-package->ecl-package sbcl-parse-number))
1009
1010 (define-public sbcl-iterate
1011 (package
1012 (name "sbcl-iterate")
1013 (version "1.5")
1014 (source
1015 (origin
1016 (method url-fetch)
1017 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
1018 "iterate-" version ".tar.gz"))
1019 (sha256
1020 (base32
1021 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
1022 (build-system asdf-build-system/sbcl)
1023 (native-inputs
1024 `(("rt" ,sbcl-rt)))
1025 (home-page "https://common-lisp.net/project/iterate/")
1026 (synopsis "Iteration construct for Common Lisp")
1027 (description "@code{iterate} is an iteration construct for Common Lisp.
1028 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
1029
1030 @itemize
1031 @item it is extensible,
1032 @item it helps editors like Emacs indent iterate forms by having a more
1033 lisp-like syntax, and
1034 @item it isn't part of the ANSI standard for Common Lisp.
1035 @end itemize\n")
1036 (license license:expat)))
1037
1038 (define-public cl-iterate
1039 (sbcl-package->cl-source-package sbcl-iterate))
1040
1041 (define-public ecl-iterate
1042 (sbcl-package->ecl-package sbcl-iterate))
1043
1044 (define-public sbcl-cl-uglify-js
1045 ;; There have been many bug fixes since the 2010 release.
1046 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
1047 (revision "1"))
1048 (package
1049 (name "sbcl-cl-uglify-js")
1050 (version (string-append "0.1-" revision "." (string-take commit 9)))
1051 (source
1052 (origin
1053 (method git-fetch)
1054 (uri (git-reference
1055 (url "https://github.com/mishoo/cl-uglify-js")
1056 (commit commit)))
1057 (file-name (git-file-name name version))
1058 (sha256
1059 (base32
1060 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1061 (build-system asdf-build-system/sbcl)
1062 (inputs
1063 `(("sbcl-parse-js" ,sbcl-parse-js)
1064 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1065 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1066 ("sbcl-parse-number" ,sbcl-parse-number)
1067 ("sbcl-iterate" ,sbcl-iterate)))
1068 (home-page "https://github.com/mishoo/cl-uglify-js")
1069 (synopsis "JavaScript compressor library for Common Lisp")
1070 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1071 compressor. It works on data produced by @code{parse-js} to generate a
1072 @dfn{minified} version of the code. Currently it can:
1073
1074 @itemize
1075 @item reduce variable names (usually to single letters)
1076 @item join consecutive @code{var} statements
1077 @item resolve simple binary expressions
1078 @item group most consecutive statements using the @code{sequence} operator (comma)
1079 @item remove unnecessary blocks
1080 @item convert @code{IF} expressions in various ways that result in smaller code
1081 @item remove some unreachable code
1082 @end itemize\n")
1083 (license license:zlib))))
1084
1085 (define-public cl-uglify-js
1086 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1087
1088 (define-public ecl-cl-uglify-js
1089 (sbcl-package->ecl-package sbcl-cl-uglify-js))
1090
1091 (define-public uglify-js
1092 (package
1093 (inherit sbcl-cl-uglify-js)
1094 (name "uglify-js")
1095 (build-system trivial-build-system)
1096 (arguments
1097 `(#:modules ((guix build utils))
1098 #:builder
1099 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1100 (script (string-append bin "uglify-js")))
1101 (use-modules (guix build utils))
1102 (mkdir-p bin)
1103 (with-output-to-file script
1104 (lambda _
1105 (format #t "#!~a/bin/sbcl --script
1106
1107 (require :asdf)
1108 (asdf:initialize-source-registry
1109 #p\"~a/etc/common-lisp/source-registry.conf.d/\")
1110 (asdf:initialize-output-translations
1111 #p\"~a/etc/common-lisp/asdf-output-translations.conf.d/\")"
1112 (assoc-ref %build-inputs "sbcl")
1113 (assoc-ref %build-inputs "sbcl-cl-uglify-js")
1114 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1115 ;; FIXME: cannot use progn here because otherwise it fails to
1116 ;; find cl-uglify-js.
1117 (for-each
1118 write
1119 '(;; Quiet, please!
1120 (let ((*standard-output* (make-broadcast-stream))
1121 (*error-output* (make-broadcast-stream)))
1122 (asdf:load-system :cl-uglify-js))
1123 (let ((file (cadr *posix-argv*)))
1124 (if file
1125 (format t "~a"
1126 (cl-uglify-js:ast-gen-code
1127 (cl-uglify-js:ast-mangle
1128 (cl-uglify-js:ast-squeeze
1129 (with-open-file (in file)
1130 (parse-js:parse-js in))))
1131 :beautify nil))
1132 (progn
1133 (format *error-output*
1134 "Please provide a JavaScript file.~%")
1135 (sb-ext:exit :code 1))))))))
1136 (chmod script #o755)
1137 #t)))
1138 (inputs
1139 `(("sbcl" ,sbcl)
1140 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1141 (synopsis "JavaScript compressor")))
1142
1143 (define-public sbcl-cl-strings
1144 (let ((revision "1")
1145 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1146 (package
1147 (name "sbcl-cl-strings")
1148 (version (git-version "0.0.0" revision commit))
1149 (source
1150 (origin
1151 (method git-fetch)
1152 (uri (git-reference
1153 (url "https://github.com/diogoalexandrefranco/cl-strings")
1154 (commit commit)))
1155 (sha256
1156 (base32
1157 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1158 (file-name (string-append "cl-strings-" version "-checkout"))))
1159 (build-system asdf-build-system/sbcl)
1160 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1161 (description
1162 "@command{cl-strings} is a small, portable, dependency-free set of
1163 utilities that make it even easier to manipulate text in Common Lisp. It has
1164 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1165 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1166 (license license:expat))))
1167
1168 (define-public cl-strings
1169 (sbcl-package->cl-source-package sbcl-cl-strings))
1170
1171 (define-public ecl-cl-strings
1172 (sbcl-package->ecl-package sbcl-cl-strings))
1173
1174 (define-public sbcl-trivial-features
1175 ;; No release since 2014.
1176 (let ((commit "870d03de0ed44067963350936856e17ee725153e"))
1177 (package
1178 (name "sbcl-trivial-features")
1179 (version (git-version "0.8" "1" commit))
1180 (source
1181 (origin
1182 (method git-fetch)
1183 (uri (git-reference
1184 (url "https://github.com/trivial-features/trivial-features")
1185 (commit commit)))
1186 (file-name (git-file-name "trivial-features" version))
1187 (sha256
1188 (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
1189 (build-system asdf-build-system/sbcl)
1190 (arguments
1191 '(#:asd-files '("trivial-features.asd")
1192 #:tests? #f))
1193 (home-page "https://cliki.net/trivial-features")
1194 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1195 (description "Trivial-features ensures that @code{*FEATURES*} is
1196 consistent across multiple Common Lisp implementations.")
1197 (license license:expat))))
1198
1199 (define-public cl-trivial-features
1200 (sbcl-package->cl-source-package sbcl-trivial-features))
1201
1202 (define-public ecl-trivial-features
1203 (sbcl-package->ecl-package sbcl-trivial-features))
1204
1205 (define-public sbcl-hu.dwim.asdf
1206 (package
1207 (name "sbcl-hu.dwim.asdf")
1208 (version "20190521")
1209 (source
1210 (origin
1211 (method url-fetch)
1212 (uri (string-append "http://beta.quicklisp.org/archive/hu.dwim.asdf/"
1213 "2019-05-21/hu.dwim.asdf-" version "-darcs.tgz"))
1214 (sha256
1215 (base32
1216 "0rsbv71vyszy8w35yjwb5h6zcmknjq223hkzir79y72qdsc6sabn"))))
1217 (build-system asdf-build-system/sbcl)
1218 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1219 (synopsis "Extensions to ASDF")
1220 (description "Various ASDF extensions such as attached test and
1221 documentation system, explicit development support, etc.")
1222 (license license:public-domain)))
1223
1224 (define-public cl-hu.dwim.asdf
1225 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1226
1227 (define-public ecl-hu.dwim.asdf
1228 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1229
1230 (define-public sbcl-hu.dwim.stefil
1231 (let ((commit "ab6d1aa8995878a1b66d745dfd0ba021090bbcf9"))
1232 (package
1233 (name "sbcl-hu.dwim.stefil")
1234 (version (git-version "0.0.0" "1" commit))
1235 (source
1236 (origin
1237 (method git-fetch)
1238 (uri
1239 (git-reference
1240 (url "https://gitlab.common-lisp.net/xcvb/hu.dwim.stefil.git")
1241 (commit commit)))
1242 (sha256
1243 (base32 "1d8yccw65zj3zh46cbi3x6nmn1dwdb76s9d0av035077mvyirqqp"))
1244 (file-name (git-file-name "hu.dwim.stefil" version))))
1245 (build-system asdf-build-system/sbcl)
1246 (native-inputs
1247 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1248 (inputs
1249 `(("sbcl-alexandria" ,sbcl-alexandria)))
1250 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.stefil")
1251 (synopsis "Simple test framework")
1252 (description "Stefil is a simple test framework for Common Lisp,
1253 with a focus on interactive development.")
1254 (license license:public-domain))))
1255
1256 (define-public cl-hu.dwim.stefil
1257 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1258
1259 (define-public ecl-hu.dwim.stefil
1260 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1261
1262 (define-public sbcl-babel
1263 ;; No release since 2014.
1264 (let ((commit "aeed2d1b76358db48e6b70a64399c05678a6b9ea"))
1265 (package
1266 (name "sbcl-babel")
1267 (version (git-version "0.5.0" "1" commit))
1268 (source
1269 (origin
1270 (method git-fetch)
1271 (uri (git-reference
1272 (url "https://github.com/cl-babel/babel")
1273 (commit commit)))
1274 (file-name (git-file-name "babel" version))
1275 (sha256
1276 (base32 "0lkvv4xdpv4cv1y2bqillmabx8sdb2y4l6pbinq6mjh33w2brpvb"))))
1277 (build-system asdf-build-system/sbcl)
1278 (native-inputs
1279 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1280 (inputs
1281 `(("sbcl-alexandria" ,sbcl-alexandria)
1282 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1283 (home-page "https://common-lisp.net/project/babel/")
1284 (synopsis "Charset encoding and decoding library")
1285 (description "Babel is a charset encoding and decoding library, not unlike
1286 GNU libiconv, but completely written in Common Lisp.")
1287 (license license:expat))))
1288
1289 (define-public cl-babel
1290 (sbcl-package->cl-source-package sbcl-babel))
1291
1292 (define-public ecl-babel
1293 (sbcl-package->ecl-package sbcl-babel))
1294
1295 (define-public sbcl-cl-yacc
1296 (package
1297 (name "sbcl-cl-yacc")
1298 (version "0.3")
1299 (source
1300 (origin
1301 (method git-fetch)
1302 (uri (git-reference
1303 (url "https://github.com/jech/cl-yacc")
1304 (commit (string-append "cl-yacc-" version))))
1305 (sha256
1306 (base32
1307 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1308 (file-name (string-append "cl-yacc-" version "-checkout"))))
1309 (build-system asdf-build-system/sbcl)
1310 (arguments
1311 `(#:asd-systems '("yacc")))
1312 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1313 (description
1314 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1315 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1316
1317 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1318 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1319 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1320 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1321 (license license:expat)))
1322
1323 (define-public cl-yacc
1324 (sbcl-package->cl-source-package sbcl-cl-yacc))
1325
1326 (define-public ecl-cl-yacc
1327 (sbcl-package->ecl-package sbcl-cl-yacc))
1328
1329 (define-public sbcl-eager-future2
1330 (let ((commit "54df8effd9d9eccac917509590286b5ac5f9cb30"))
1331 (package
1332 (name "sbcl-eager-future2")
1333 (version (git-version "0.0.0" "1" commit))
1334 (source
1335 (origin
1336 (method git-fetch)
1337 (uri (git-reference
1338 (url "https://gitlab.common-lisp.net/vsedach/eager-future2.git")
1339 (commit commit)))
1340 (file-name (git-file-name name version))
1341 (sha256
1342 (base32
1343 "1qs1bv3m0ki8l5czhsflxcryh22r9d9g9a3a3b0cr0pl954q5rld"))))
1344 (build-system asdf-build-system/sbcl)
1345 (inputs
1346 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1347 ("trivial-garbage" ,sbcl-trivial-garbage)))
1348 (synopsis "Futures promises synchronization mechanism for Common Lisp")
1349 (description
1350 "Eager Future2 is a Common Lisp library that provides composable
1351 concurrency primitives that unify parallel and lazy evaluation, are integrated
1352 with the Common Lisp condition system, and have automatic resource
1353 management.")
1354 (home-page "https://gitlab.common-lisp.net/vsedach/eager-future2")
1355 (license license:lgpl3+))))
1356
1357 (define-public cl-eager-future2
1358 (sbcl-package->cl-source-package sbcl-eager-future2))
1359
1360 (define-public ecl-eager-future2
1361 (sbcl-package->ecl-package sbcl-eager-future2))
1362
1363 (define-public sbcl-jpl-util
1364 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1365 (package
1366 (name "sbcl-jpl-util")
1367 (version "20151005")
1368 (source
1369 (origin
1370 (method git-fetch)
1371 (uri (git-reference
1372 ;; Quicklisp uses this fork.
1373 (url "https://github.com/hawkir/cl-jpl-util")
1374 (commit commit)))
1375 (file-name
1376 (git-file-name "jpl-util" version))
1377 (sha256
1378 (base32
1379 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1380 (build-system asdf-build-system/sbcl)
1381 (synopsis "Collection of Common Lisp utility functions and macros")
1382 (description
1383 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1384 and macros, primarily for software projects written in CL by the author.")
1385 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1386 (license license:isc))))
1387
1388 (define-public cl-jpl-util
1389 (sbcl-package->cl-source-package sbcl-jpl-util))
1390
1391 (define-public ecl-jpl-util
1392 (sbcl-package->ecl-package sbcl-jpl-util))
1393
1394 (define-public sbcl-piping
1395 (let ((commit "c7a4163c00dea7e72bf6ad33d6abac0d5826a656")
1396 (revision "1"))
1397 (package
1398 (name "sbcl-piping")
1399 (version (git-version "2.0.0" revision commit))
1400 (source
1401 (origin
1402 (method git-fetch)
1403 (uri (git-reference
1404 (url "https://github.com/Shinmera/piping/")
1405 (commit commit)))
1406 (file-name (git-file-name "piping" version))
1407 (sha256
1408 (base32 "0in84qnfkynm36d4n4d6v87vprpi27xrydnga462wfhplji6klv5"))))
1409 (build-system asdf-build-system/sbcl)
1410 (home-page "https://shinmera.github.io/piping/")
1411 (synopsis "Library to enable simple message pipelines")
1412 (description
1413 "This is a Common Lisp library to enable simple message pipelines.")
1414 (license license:zlib))))
1415
1416 (define-public ecl-piping
1417 (sbcl-package->ecl-package sbcl-piping))
1418
1419 (define-public cl-piping
1420 (sbcl-package->cl-source-package sbcl-piping))
1421
1422 (define-public sbcl-jpl-queues
1423 (package
1424 (name "sbcl-jpl-queues")
1425 (version "0.1")
1426 (source
1427 (origin
1428 (method url-fetch)
1429 (uri (string-append
1430 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1431 version
1432 ".tar.gz"))
1433 (sha256
1434 (base32
1435 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1436 (build-system asdf-build-system/sbcl)
1437 (inputs
1438 `(("jpl-util" ,sbcl-jpl-util)
1439 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1440 (arguments
1441 ;; Tests seem to be broken.
1442 `(#:tests? #f))
1443 (synopsis "Common Lisp library implementing a few different kinds of queues")
1444 (description
1445 "A Common Lisp library implementing a few different kinds of queues:
1446
1447 @itemize
1448 @item Bounded and unbounded FIFO queues.
1449 @item Lossy bounded FIFO queues that drop elements when full.
1450 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1451 @end itemize
1452
1453 Additionally, a synchronization wrapper is provided to make any queue
1454 conforming to the @command{jpl-queues} API thread-safe for lightweight
1455 multithreading applications. (See Calispel for a more sophisticated CL
1456 multithreaded message-passing library with timeouts and alternation among
1457 several blockable channels.)")
1458 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1459 (license license:isc)))
1460
1461 (define-public cl-jpl-queues
1462 (sbcl-package->cl-source-package sbcl-jpl-queues))
1463
1464 (define-public ecl-jpl-queues
1465 (sbcl-package->ecl-package sbcl-jpl-queues))
1466
1467 (define-public sbcl-calispel
1468 (let ((commit "e9f2f9c1af97f4d7bb4c8ac25fb2a8f3e8fada7a"))
1469 (package
1470 (name "sbcl-calispel")
1471 (version (git-version "0.1" "1" commit))
1472 (source
1473 (origin
1474 (method git-fetch)
1475 (uri (git-reference
1476 ;; This fork replaces the dependency on the obsolete
1477 ;; eager-future with eager-future2.
1478 (url "https://github.com/hawkir/calispel")
1479 (commit commit)))
1480 (file-name (git-file-name name version))
1481 (sha256
1482 (base32
1483 "08bmf3pi7n5hadpmqqkg65cxcj6kbvm997wcs1f53ml1nb79d9z8"))))
1484 (build-system asdf-build-system/sbcl)
1485 (inputs
1486 `(("jpl-queues" ,sbcl-jpl-queues)
1487 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1488 (native-inputs
1489 `(("eager-future2" ,sbcl-eager-future2)))
1490 (synopsis "Thread-safe message-passing channels in Common Lisp")
1491 (description
1492 "Calispel is a Common Lisp library for thread-safe message-passing
1493 channels, in the style of the occam programming language, also known as
1494 communicating sequential processes (CSP). See
1495 @url{https://en.wikipedia.org/wiki/Communicating_sequential_processes}.
1496
1497 Calispel channels let one thread communicate with another, facilitating
1498 unidirectional communication of any Lisp object. Channels may be unbuffered,
1499 where a sender waits for a receiver (or vice versa) before either operation can
1500 continue, or channels may be buffered with flexible policy options.
1501
1502 Because sending and receiving on a channel may block, either operation can time
1503 out after a specified amount of time.
1504
1505 A syntax for alternation is provided (like @code{ALT} in occam, or Unix
1506 @code{select()}): given a sequence of operations, any or all of which may
1507 block, alternation selects the first operation that doesn't block and executes
1508 associated code. Alternation can also time out, executing an \"otherwise\"
1509 clause if no operation becomes available within a set amount of time.
1510
1511 Calispel is a message-passing library, and as such leaves the role of
1512 threading abstractions and utilities left to be filled by complementary
1513 libraries such as Bordeaux-Threads and Eager Future.")
1514 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1515 (license license:isc))))
1516
1517 (define-public cl-calispel
1518 (sbcl-package->cl-source-package sbcl-calispel))
1519
1520 (define-public ecl-calispel
1521 (sbcl-package->ecl-package sbcl-calispel))
1522
1523 (define-public sbcl-eos
1524 (let ((commit "b4413bccc4d142cbe1bf49516c3a0a22c9d99243")
1525 (revision "2"))
1526 (package
1527 (name "sbcl-eos")
1528 (version (git-version "0.0.0" revision commit))
1529 (source
1530 (origin
1531 (method git-fetch)
1532 (uri (git-reference
1533 (url "https://github.com/adlai/Eos")
1534 (commit commit)))
1535 (sha256
1536 (base32 "1afllvmlnx97yzz404gycl3pa3kwx427k3hrbf37rpmjlv47knhk"))
1537 (file-name (git-file-name "eos" version))))
1538 (build-system asdf-build-system/sbcl)
1539 (synopsis "Unit Testing for Common Lisp")
1540 (description
1541 "Eos was a unit testing library for Common Lisp.
1542 It began as a fork of FiveAM; however, FiveAM development has continued, while
1543 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1544 (home-page "https://github.com/adlai/Eos")
1545 (license license:expat))))
1546
1547 (define-public cl-eos
1548 (sbcl-package->cl-source-package sbcl-eos))
1549
1550 (define-public ecl-eos
1551 (sbcl-package->ecl-package sbcl-eos))
1552
1553 (define-public sbcl-esrap
1554 (let ((commit "133be8b05c2aae48696fe5b739eea2fa573fa48d"))
1555 (package
1556 (name "sbcl-esrap")
1557 (version (git-version "0.0.0" "1" commit))
1558 (source
1559 (origin
1560 (method git-fetch)
1561 (uri (git-reference
1562 (url "https://github.com/nikodemus/esrap")
1563 (commit commit)))
1564 (sha256
1565 (base32
1566 "02d5clihsdryhf7pix8c5di2571fdsffh75d40fkzhws90r5mksl"))
1567 (file-name (git-file-name "esrap" version))))
1568 (build-system asdf-build-system/sbcl)
1569 (native-inputs
1570 `(("eos" ,sbcl-eos))) ;For testing only.
1571 (inputs
1572 `(("alexandria" ,sbcl-alexandria)))
1573 (synopsis "Common Lisp packrat parser")
1574 (description
1575 "A packrat parser for Common Lisp.
1576 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1577
1578 @itemize
1579 @item dynamic redefinition of nonterminals
1580 @item inline grammars
1581 @item semantic predicates
1582 @item introspective facilities (describing grammars, tracing, setting breaks)
1583 @end itemize\n")
1584 (home-page "https://nikodemus.github.io/esrap/")
1585 (license license:expat))))
1586
1587 (define-public cl-esrap
1588 (sbcl-package->cl-source-package sbcl-esrap))
1589
1590 (define-public ecl-esrap
1591 (sbcl-package->ecl-package sbcl-esrap))
1592
1593 (define-public sbcl-split-sequence
1594 (package
1595 (name "sbcl-split-sequence")
1596 (version "2.0.0")
1597 (source
1598 (origin
1599 (method git-fetch)
1600 (uri (git-reference
1601 (url "https://github.com/sharplispers/split-sequence")
1602 (commit (string-append "v" version))))
1603 (sha256
1604 (base32
1605 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
1606 (file-name (git-file-name "split-sequence" version))))
1607 (build-system asdf-build-system/sbcl)
1608 (native-inputs
1609 `(("fiveam" ,sbcl-fiveam)))
1610 (synopsis "Member of the Common Lisp Utilities family of programs")
1611 (description
1612 "Splits sequence into a list of subsequences delimited by objects
1613 satisfying the test.")
1614 (home-page "https://cliki.net/split-sequence")
1615 (license license:expat)))
1616
1617 (define-public cl-split-sequence
1618 (sbcl-package->cl-source-package sbcl-split-sequence))
1619
1620 (define-public ecl-split-sequence
1621 (sbcl-package->ecl-package sbcl-split-sequence))
1622
1623 (define-public sbcl-html-encode
1624 (package
1625 (name "sbcl-html-encode")
1626 (version "1.2")
1627 (source
1628 (origin
1629 (method url-fetch)
1630 (uri (string-append
1631 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1632 version ".tgz"))
1633 (sha256
1634 (base32
1635 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1636 (file-name (string-append "colorize" version "-checkout"))))
1637 (build-system asdf-build-system/sbcl)
1638 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1639 (description
1640 "A library for encoding text in various web-savvy encodings.")
1641 (home-page "http://quickdocs.org/html-encode/")
1642 (license license:expat)))
1643
1644 (define-public cl-html-encode
1645 (sbcl-package->cl-source-package sbcl-html-encode))
1646
1647 (define-public ecl-html-encode
1648 (sbcl-package->ecl-package sbcl-html-encode))
1649
1650 (define-public sbcl-colorize
1651 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1652 (package
1653 (name "sbcl-colorize")
1654 (version (git-version "0.0.0" "1" commit))
1655 (source
1656 (origin
1657 (method git-fetch)
1658 (uri (git-reference
1659 (url "https://github.com/kingcons/colorize")
1660 (commit commit)))
1661 (sha256
1662 (base32
1663 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1664 (file-name (git-file-name "colorize" version))))
1665 (build-system asdf-build-system/sbcl)
1666 (inputs
1667 `(("alexandria" ,sbcl-alexandria)
1668 ("split-sequence" ,sbcl-split-sequence)
1669 ("html-encode" ,sbcl-html-encode)))
1670 (synopsis "Common Lisp for syntax highlighting")
1671 (description
1672 "@command{colorize} is a Lisp library for syntax highlighting
1673 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1674 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1675 (home-page "https://github.com/kingcons/colorize")
1676 ;; TODO: Missing license?
1677 (license license:expat))))
1678
1679 (define-public cl-colorize
1680 (sbcl-package->cl-source-package sbcl-colorize))
1681
1682 (define-public ecl-colorize
1683 (sbcl-package->ecl-package sbcl-colorize))
1684
1685 (define-public sbcl-3bmd
1686 (let ((commit "6fc5759448f6f6df6f6df556e020a289a2643288")
1687 (revision "2"))
1688 (package
1689 (name "sbcl-3bmd")
1690 (version (git-version "0.0.0" revision commit))
1691 (source
1692 (origin
1693 (method git-fetch)
1694 (uri (git-reference
1695 (url "https://github.com/3b/3bmd")
1696 (commit commit)))
1697 (sha256
1698 (base32 "1avmbp8xdjlbqpqk7p3vmj7abiw5p3vb5mrxp4wlvgql4sf6z3p4"))
1699 (file-name (git-file-name "3bmd" version))))
1700 (build-system asdf-build-system/sbcl)
1701 (arguments
1702 ;; FIXME: #41437 - Build fails when package name starts from a digit
1703 `(#:asd-systems
1704 '("3bmd"
1705 "3bmd-ext-definition-lists"
1706 "3bmd-ext-math"
1707 "3bmd-ext-tables"
1708 "3bmd-ext-wiki-links"
1709 "3bmd-youtube"
1710 "3bmd-ext-code-blocks")))
1711 (inputs
1712 `(("alexandria" ,sbcl-alexandria)
1713 ("colorize" ,sbcl-colorize)
1714 ("esrap" ,sbcl-esrap)
1715 ("split-sequence" ,sbcl-split-sequence)))
1716 (home-page "https://github.com/3b/3bmd")
1717 (synopsis "Markdown processor in Command Lisp using esrap parser")
1718 (description
1719 "This is a Common Lisp Markdown to HTML converter, using @command{esrap}
1720 for parsing, and grammar based on @command{peg-markdown}.")
1721 (license license:expat))))
1722
1723 (define-public cl-3bmd
1724 (sbcl-package->cl-source-package sbcl-3bmd))
1725
1726 (define-public ecl-3bmd
1727 (sbcl-package->ecl-package sbcl-3bmd))
1728
1729 (define-public sbcl-cl-fad
1730 (package
1731 (name "sbcl-cl-fad")
1732 (version "0.7.6")
1733 (source
1734 (origin
1735 (method git-fetch)
1736 (uri (git-reference
1737 (url "https://github.com/edicl/cl-fad/")
1738 (commit (string-append "v" version))))
1739 (sha256
1740 (base32
1741 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
1742 (file-name (string-append "cl-fad" version "-checkout"))))
1743 (build-system asdf-build-system/sbcl)
1744 (inputs
1745 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
1746 (synopsis "Portable pathname library for Common Lisp")
1747 (description
1748 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
1749 Lisp's standard pathname functions. It is intended to provide some
1750 unification between current CL implementations on Windows, OS X, Linux, and
1751 Unix. Most of the code was written by Peter Seibel for his book Practical
1752 Common Lisp.")
1753 (home-page "https://edicl.github.io/cl-fad/")
1754 (license license:bsd-2)))
1755
1756 (define-public cl-fad
1757 (sbcl-package->cl-source-package sbcl-cl-fad))
1758
1759 (define-public ecl-cl-fad
1760 (sbcl-package->ecl-package sbcl-cl-fad))
1761
1762 (define-public sbcl-rt
1763 (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
1764 (revision "1"))
1765 (package
1766 (name "sbcl-rt")
1767 (version (git-version "1990.12.19" revision commit))
1768 (source
1769 (origin
1770 (method git-fetch)
1771 (uri (git-reference
1772 (url "http://git.kpe.io/rt.git")
1773 (commit commit)))
1774 (file-name (git-file-name name version))
1775 (sha256
1776 (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
1777 (build-system asdf-build-system/sbcl)
1778 (synopsis "MIT Regression Tester")
1779 (description
1780 "RT provides a framework for writing regression test suites.")
1781 (home-page "https://www.cliki.net/rt")
1782 (license license:expat))))
1783
1784 (define-public cl-rt
1785 (sbcl-package->cl-source-package sbcl-rt))
1786
1787 (define-public ecl-rt
1788 (sbcl-package->ecl-package sbcl-rt))
1789
1790 (define-public sbcl-nibbles
1791 ;; No tagged release since 2018.
1792 (let ((commit "8e6b9b42d9f69000f55e5c45ad974d9e376ffdbd")
1793 (revision "1"))
1794 (package
1795 (name "sbcl-nibbles")
1796 (version (git-version "0.14" revision commit))
1797 (source
1798 (origin
1799 (method git-fetch)
1800 (uri (git-reference
1801 (url "https://github.com/sharplispers/nibbles/")
1802 (commit commit)))
1803 (sha256
1804 (base32 "15qlsm82h36pjgvfnbzdg60l21qxbaii4d049jc5y0dn56y93amb"))
1805 (file-name (git-file-name "nibbles" version))))
1806 (build-system asdf-build-system/sbcl)
1807 (native-inputs
1808 ;; Tests only.
1809 `(("rt" ,sbcl-rt)))
1810 (synopsis
1811 "Common Lisp library for accessing octet-addressed blocks of data")
1812 (description
1813 "When dealing with network protocols and file formats, it's common to
1814 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
1815 flavors. Common Lisp sort of supports this by specifying :element-type for
1816 streams, but that facility is underspecified and there's nothing similar for
1817 read/write from octet vectors. What most people wind up doing is rolling their
1818 own small facility for their particular needs and calling it a day.
1819
1820 This library attempts to be comprehensive and centralize such
1821 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
1822 vectors in signed or unsigned flavors are provided; these functions are also
1823 SETFable. Since it's sometimes desirable to read/write directly from streams,
1824 functions for doing so are also provided. On some implementations,
1825 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
1826 also be supported.")
1827 (home-page "https://github.com/sharplispers/nibbles")
1828 (license license:bsd-3))))
1829
1830 (define-public cl-nibbles
1831 (sbcl-package->cl-source-package sbcl-nibbles))
1832
1833 (define-public ecl-nibbles
1834 (sbcl-package->ecl-package sbcl-nibbles))
1835
1836 (define-public sbcl-ironclad
1837 (package
1838 (name "sbcl-ironclad")
1839 (version "0.54")
1840 (source
1841 (origin
1842 (method git-fetch)
1843 (uri (git-reference
1844 (url "https://github.com/sharplispers/ironclad/")
1845 (commit (string-append "v" version))))
1846 (sha256
1847 (base32 "07g0wpvfqq2yk23prs890d4qvbnr3xd6w8ssd88g89xdg483wpvk"))
1848 (file-name (git-file-name name version))))
1849 (build-system asdf-build-system/sbcl)
1850 (native-inputs
1851 ;; Tests only.
1852 `(("rt" ,sbcl-rt)))
1853 (inputs
1854 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1855 ("flexi-streams" ,sbcl-flexi-streams)))
1856 (synopsis "Cryptographic toolkit written in Common Lisp")
1857 (description
1858 "Ironclad is a cryptography library written entirely in Common Lisp.
1859 It includes support for several popular ciphers, digests, MACs and public key
1860 cryptography algorithms. For several implementations that support Gray
1861 streams, support is included for convenient stream wrappers.")
1862 (home-page "https://github.com/sharplispers/ironclad")
1863 (license license:bsd-3)))
1864
1865 (define-public cl-ironclad
1866 (sbcl-package->cl-source-package sbcl-ironclad))
1867
1868 (define-public ecl-ironclad
1869 (sbcl-package->ecl-package sbcl-ironclad))
1870
1871 (define-public sbcl-named-readtables
1872 (let ((commit "64bd53f37a1694cfde48fc38b8f03901f6f0c05b")
1873 (revision "2"))
1874 (package
1875 (name "sbcl-named-readtables")
1876 (version (git-version "0.9" revision commit))
1877 (source
1878 (origin
1879 (method git-fetch)
1880 (uri (git-reference
1881 (url "https://github.com/melisgl/named-readtables")
1882 (commit commit)))
1883 (sha256
1884 (base32 "01l4831m7k84qvhzyx0qgdl50isr4zmp40qf6dfq2iqcaj8y4h3n"))
1885 (file-name (git-file-name "named-readtables" version))))
1886 (build-system asdf-build-system/sbcl)
1887 (arguments
1888 ;; Tests seem to be broken.
1889 `(#:tests? #f))
1890 (home-page "https://github.com/melisgl/named-readtables/")
1891 (synopsis "Library that creates a namespace for named readtables")
1892 (description "Named readtables is a library that creates a namespace for
1893 named readtables, which is akin to package namespacing in Common Lisp.")
1894 (license license:bsd-3))))
1895
1896 (define-public cl-named-readtables
1897 (sbcl-package->cl-source-package sbcl-named-readtables))
1898
1899 (define-public ecl-named-readtables
1900 (sbcl-package->ecl-package sbcl-named-readtables))
1901
1902 (define-public sbcl-py-configparser
1903 ;; NOTE: (Sharlatan <2021-01-05 Tue> <19:52:19 UTC+0000>) Project updated last
1904 ;; time 8y ago, it looks like abandoned. VCS of the project:
1905 ;; https://svn.common-lisp.net/py-configparser/trunk
1906 (package
1907 (name "sbcl-py-configparser")
1908 (version "1.0.3")
1909 (source
1910 (origin
1911 (method url-fetch)
1912 (uri (string-append
1913 "https://common-lisp.net/project/py-configparser/releases/"
1914 "py-configparser-" version ".tar.gz"))
1915 (sha256
1916 (base32 "0i4rqz5cv7d7c2w81x5lwy05s6fbi3zikf4k5kpi3bkx3cabwdxj"))))
1917 (build-system asdf-build-system/sbcl)
1918 (inputs
1919 `(("parse-number" ,sbcl-parse-number)))
1920 (home-page "http://common-lisp.net/project/py-configparser/")
1921 (synopsis "ConfigParser Python module functionality for Common Lisp")
1922 (description "The py-configparser package implements the ConfigParser
1923 Python module functionality in Common Lisp. In short, it implements reading
1924 and writing of .INI-file style configuration files with sections containing
1925 key/value pairs of configuration options. In line with the functionalities in
1926 the python module, does this package implement basic interpolation of option
1927 values in other options.")
1928 (license license:expat)))
1929
1930 (define-public cl-py-configparser
1931 (sbcl-package->cl-source-package sbcl-py-configparser))
1932
1933 (define-public ecl-py-configparser
1934 (sbcl-package->ecl-package sbcl-py-configparser))
1935
1936 (define-public sbcl-pythonic-string-reader
1937 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
1938 (package
1939 (name "sbcl-pythonic-string-reader")
1940 (version (git-version "0.0.0" "1" commit))
1941 (source
1942 (origin
1943 (method git-fetch)
1944 (uri (git-reference
1945 (url "https://github.com/smithzvk/pythonic-string-reader/")
1946 (commit commit)))
1947 (sha256
1948 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
1949 (file-name (git-file-name "pythonic-string-reader" version))))
1950 (build-system asdf-build-system/sbcl)
1951 (inputs
1952 `(("named-readtables" ,sbcl-named-readtables)))
1953 (home-page "https://github.com/smithzvk/pythonic-string-reader")
1954 (synopsis "Read table modification inspired by Python's three quote strings")
1955 (description "This piece of code sets up some reader macros that make it
1956 simpler to input string literals which contain backslashes and double quotes
1957 This is very useful for writing complicated docstrings and, as it turns out,
1958 writing code that contains string literals that contain code themselves.")
1959 (license license:bsd-3))))
1960
1961 (define-public cl-pythonic-string-reader
1962 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
1963
1964 (define-public ecl-pythonic-string-reader
1965 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
1966
1967 (define-public sbcl-slime-swank
1968 (package
1969 (name "sbcl-slime-swank")
1970 (version "2.26")
1971 (source
1972 (origin
1973 (file-name (git-file-name "slime-swank" version))
1974 (method git-fetch)
1975 (uri (git-reference
1976 (url "https://github.com/slime/slime/")
1977 (commit (string-append "v" version))))
1978 (sha256
1979 (base32
1980 "0mxb1wnw19v0s72w2wkz5afdlzvpy5nn7pr4vav403qybac0sw5c"))))
1981 (build-system asdf-build-system/sbcl)
1982 (arguments
1983 '(#:asd-systems '("swank")))
1984 (home-page "https://github.com/slime/slime")
1985 (synopsis "Common Lisp Swank server")
1986 (description
1987 "This is only useful if you want to start a Swank server in a Lisp
1988 processes that doesn't run under Emacs. Lisp processes created by
1989 @command{M-x slime} automatically start the server.")
1990 (license (list license:gpl2+ license:public-domain))))
1991
1992 (define-public cl-slime-swank
1993 (sbcl-package->cl-source-package sbcl-slime-swank))
1994
1995 (define-public ecl-slime-swank
1996 (sbcl-package->ecl-package sbcl-slime-swank))
1997
1998 (define-public sbcl-mgl-pax
1999 (let ((commit "818448418d6b9de74620f606f5b23033c6082769"))
2000 (package
2001 (name "sbcl-mgl-pax")
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/melisgl/mgl-pax")
2008 (commit commit)))
2009 (sha256
2010 (base32
2011 "1p97zfkh130bdxqqxwaw2j9psv58751wakx7czbfpq410lg7dd7i"))
2012 (file-name (git-file-name "mgl-pax" version))))
2013 (build-system asdf-build-system/sbcl)
2014 (inputs
2015 `(("3bmd" ,sbcl-3bmd)
2016 ("babel" ,sbcl-babel)
2017 ("cl-fad" ,sbcl-cl-fad)
2018 ("ironclad" ,sbcl-ironclad)
2019 ("named-readtables" ,sbcl-named-readtables)
2020 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)
2021 ("swank" ,sbcl-slime-swank)))
2022 (synopsis "Exploratory programming environment and documentation generator")
2023 (description
2024 "PAX provides an extremely poor man's Explorable Programming
2025 environment. Narrative primarily lives in so called sections that mix markdown
2026 docstrings with references to functions, variables, etc, all of which should
2027 probably have their own docstrings.
2028
2029 The primary focus is on making code easily explorable by using SLIME's
2030 @command{M-.} (@command{slime-edit-definition}). See how to enable some
2031 fanciness in Emacs Integration. Generating documentation from sections and all
2032 the referenced items in Markdown or HTML format is also implemented.
2033
2034 With the simplistic tools provided, one may accomplish similar effects as with
2035 Literate Programming, but documentation is generated from code, not vice versa
2036 and there is no support for chunking yet. Code is first, code must look
2037 pretty, documentation is code.")
2038 (home-page "http://quotenil.com/")
2039 (license license:expat))))
2040
2041 (define-public cl-mgl-pax
2042 (sbcl-package->cl-source-package sbcl-mgl-pax))
2043
2044 (define-public ecl-mgl-pax
2045 (let ((pkg (sbcl-package->ecl-package sbcl-mgl-pax)))
2046 (package
2047 (inherit pkg)
2048 (arguments
2049 (substitute-keyword-arguments (package-arguments pkg)
2050 ;; TODO: Find why the tests fail on ECL.
2051 ((#:tests? _ #f) #f))))))
2052
2053 (define-public sbcl-mssql
2054 (let ((commit "045602a19a32254108f2b75871049293f49731eb")
2055 (revision "1"))
2056 (package
2057 (name "sbcl-mssql")
2058 (version (git-version "0.0.3" revision commit))
2059 (source
2060 (origin
2061 (method git-fetch)
2062 (uri (git-reference
2063 (url "https://github.com/archimag/cl-mssql")
2064 (commit commit)))
2065 (file-name (git-file-name "cl-mssql" version))
2066 (sha256
2067 (base32 "09i50adppgc1ybm3ka9vbindhwa2x29f9n3n0jkrryymdhb8zknm"))))
2068 (build-system asdf-build-system/sbcl)
2069 (inputs
2070 `(("cffi" ,sbcl-cffi)
2071 ("freetds" ,freetds)
2072 ("garbage-pools" ,sbcl-garbage-pools)
2073 ("iterate" ,sbcl-iterate)
2074 ("parse-number" ,sbcl-parse-number)))
2075 (arguments
2076 `(#:phases
2077 (modify-phases %standard-phases
2078 (add-after 'unpack 'fix-paths
2079 (lambda* (#:key inputs #:allow-other-keys)
2080 (substitute* "src/mssql.lisp"
2081 (("libsybdb" all)
2082 (string-append (assoc-ref inputs "freetds") "/lib/" all)))
2083 #t)))))
2084 (home-page "https://github.com/archimag/cl-mssql")
2085 (synopsis "Common Lisp library to interact with MS SQL Server databases")
2086 (description
2087 "@code{cl-mssql} provides an interface to connect to Microsoft SQL
2088 server. It uses the @code{libsybdb} foreign library provided by the FreeTDS
2089 project.")
2090 (license license:llgpl))))
2091
2092 (define-public ecl-mssql
2093 (sbcl-package->ecl-package sbcl-mssql))
2094
2095 (define-public cl-mssql
2096 (sbcl-package->cl-source-package sbcl-mssql))
2097
2098 (define-public sbcl-lisp-unit
2099 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
2100 (package
2101 (name "sbcl-lisp-unit")
2102 (version (git-version "0.0.0" "1" commit))
2103 (source
2104 (origin
2105 (method git-fetch)
2106 (uri (git-reference
2107 (url "https://github.com/OdonataResearchLLC/lisp-unit")
2108 (commit commit)))
2109 (sha256
2110 (base32
2111 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
2112 (file-name (git-file-name "lisp-unit" version))))
2113 (build-system asdf-build-system/sbcl)
2114 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
2115 (description
2116 "@command{lisp-unit} is a Common Lisp library that supports unit
2117 testing. It is an extension of the library written by Chris Riesbeck.")
2118 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
2119 (license license:expat))))
2120
2121 (define-public cl-lisp-unit
2122 (sbcl-package->cl-source-package sbcl-lisp-unit))
2123
2124 (define-public ecl-lisp-unit
2125 (sbcl-package->ecl-package sbcl-lisp-unit))
2126
2127 (define-public sbcl-anaphora
2128 (package
2129 (name "sbcl-anaphora")
2130 (version "0.9.6")
2131 (source
2132 (origin
2133 (method git-fetch)
2134 (uri (git-reference
2135 (url "https://github.com/tokenrove/anaphora")
2136 (commit version)))
2137 (sha256
2138 (base32
2139 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
2140 (file-name (git-file-name "anaphora" version))))
2141 (build-system asdf-build-system/sbcl)
2142 (native-inputs
2143 `(("rt" ,sbcl-rt)))
2144 (synopsis "The anaphoric macro collection from Hell")
2145 (description
2146 "Anaphora is the anaphoric macro collection from Hell: it includes many
2147 new fiends in addition to old friends like @command{aif} and
2148 @command{awhen}.")
2149 (home-page "https://github.com/tokenrove/anaphora")
2150 (license license:public-domain)))
2151
2152 (define-public cl-anaphora
2153 (sbcl-package->cl-source-package sbcl-anaphora))
2154
2155 (define-public ecl-anaphora
2156 (sbcl-package->ecl-package sbcl-anaphora))
2157
2158 (define-public sbcl-lift
2159 (let ((commit "7d49a66c62759535624037826891152223d4206c"))
2160 (package
2161 (name "sbcl-lift")
2162 (version (git-version "1.7.1" "1" commit))
2163 (source
2164 (origin
2165 (method git-fetch)
2166 (uri (git-reference
2167 (url "https://github.com/gwkkwg/lift")
2168 (commit commit)))
2169 (sha256
2170 (base32
2171 "127v5avpz1i4m0lkaxqrq8hrl69rdazqaxf6s8awf0nd7wj2g4dp"))
2172 (file-name (git-file-name "lift" version))
2173 (modules '((guix build utils)))
2174 (snippet
2175 ;; Don't keep the bundled website
2176 `(begin
2177 (delete-file-recursively "website")
2178 #t))))
2179 (build-system asdf-build-system/sbcl)
2180 (arguments
2181 ;; The tests require a debugger, but we run with the debugger disabled.
2182 '(#:tests? #f))
2183 (synopsis "LIsp Framework for Testing")
2184 (description
2185 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
2186 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
2187 testcases are organized into hierarchical testsuites each of which can have
2188 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
2189 supports randomized testing, benchmarking, profiling, and reporting.")
2190 (home-page "https://github.com/gwkkwg/lift")
2191 (license license:expat))))
2192
2193 (define-public cl-lift
2194 (sbcl-package->cl-source-package sbcl-lift))
2195
2196 (define-public ecl-lift
2197 (sbcl-package->ecl-package sbcl-lift))
2198
2199 (define-public sbcl-let-plus
2200 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
2201 (package
2202 (name "sbcl-let-plus")
2203 (version (git-version "0.0.0" "1" commit))
2204 (source
2205 (origin
2206 (method git-fetch)
2207 (uri (git-reference
2208 (url "https://github.com/sharplispers/let-plus")
2209 (commit commit)))
2210 (sha256
2211 (base32
2212 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
2213 (file-name (git-file-name "let-plus" version))))
2214 (build-system asdf-build-system/sbcl)
2215 (inputs
2216 `(("alexandria" ,sbcl-alexandria)
2217 ("anaphora" ,sbcl-anaphora)))
2218 (native-inputs
2219 `(("lift" ,sbcl-lift)))
2220 (synopsis "Destructuring extension of let*")
2221 (description
2222 "This library implements the let+ macro, which is a dectructuring
2223 extension of let*. It features:
2224
2225 @itemize
2226 @item Clean, consistent syntax and small implementation (less than 300 LOC,
2227 not counting tests)
2228 @item Placeholder macros allow editor hints and syntax highlighting
2229 @item @command{&ign} for ignored values (in forms where that makes sense)
2230 @item Very easy to extend
2231 @end itemize\n")
2232 (home-page "https://github.com/sharplispers/let-plus")
2233 (license license:boost1.0))))
2234
2235 (define-public cl-let-plus
2236 (sbcl-package->cl-source-package sbcl-let-plus))
2237
2238 (define-public ecl-let-plus
2239 (sbcl-package->ecl-package sbcl-let-plus))
2240
2241 (define-public sbcl-cl-colors
2242 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
2243 (package
2244 (name "sbcl-cl-colors")
2245 (version (git-version "0.0.0" "1" commit))
2246 (source
2247 (origin
2248 (method git-fetch)
2249 (uri (git-reference
2250 (url "https://github.com/tpapp/cl-colors")
2251 (commit commit)))
2252 (sha256
2253 (base32
2254 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2255 (file-name (git-file-name "cl-colors" version))))
2256 (build-system asdf-build-system/sbcl)
2257 (inputs
2258 `(("alexandria" ,sbcl-alexandria)
2259 ("let-plus" ,sbcl-let-plus)))
2260 (synopsis "Simple color library for Common Lisp")
2261 (description
2262 "This is a very simple color library for Common Lisp, providing
2263
2264 @itemize
2265 @item Types for representing colors in HSV and RGB spaces.
2266 @item Simple conversion functions between the above types (and also
2267 hexadecimal representation for RGB).
2268 @item Some predefined colors (currently X11 color names – of course the
2269 library does not depend on X11).Because color in your terminal is nice.
2270 @end itemize
2271
2272 This library is no longer supported by its author.")
2273 (home-page "https://github.com/tpapp/cl-colors")
2274 (license license:boost1.0))))
2275
2276 (define-public cl-colors
2277 (sbcl-package->cl-source-package sbcl-cl-colors))
2278
2279 (define-public ecl-cl-colors
2280 (sbcl-package->ecl-package sbcl-cl-colors))
2281
2282 (define-public sbcl-cl-ansi-text
2283 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2284 (package
2285 (name "sbcl-cl-ansi-text")
2286 (version (git-version "1.0.0" "1" commit))
2287 (source
2288 (origin
2289 (method git-fetch)
2290 (uri (git-reference
2291 (url "https://github.com/pnathan/cl-ansi-text")
2292 (commit commit)))
2293 (sha256
2294 (base32
2295 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2296 (file-name (git-file-name "cl-ansi-text" version))))
2297 (build-system asdf-build-system/sbcl)
2298 (inputs
2299 `(("alexandria" ,sbcl-alexandria)
2300 ("cl-colors" ,sbcl-cl-colors)))
2301 (native-inputs
2302 `(("fiveam" ,sbcl-fiveam)))
2303 (synopsis "ANSI terminal color implementation for Common Lisp")
2304 (description
2305 "@command{cl-ansi-text} provides utilities which enable printing to an
2306 ANSI terminal with colored text. It provides the macro @command{with-color}
2307 which causes everything printed in the body to be displayed with the provided
2308 color. It further provides functions which will print the argument with the
2309 named color.")
2310 (home-page "https://github.com/pnathan/cl-ansi-text")
2311 (license license:llgpl))))
2312
2313 (define-public cl-ansi-text
2314 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2315
2316 (define-public ecl-cl-ansi-text
2317 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2318
2319 (define-public sbcl-prove
2320 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2321 (package
2322 (name "sbcl-prove")
2323 (version (git-version "1.0.0" "1" commit))
2324 (source
2325 (origin
2326 (method git-fetch)
2327 (uri (git-reference
2328 (url "https://github.com/fukamachi/prove")
2329 (commit commit)))
2330 (sha256
2331 (base32
2332 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2333 (file-name (git-file-name "prove" version))))
2334 (build-system asdf-build-system/sbcl)
2335 (inputs
2336 `(("alexandria" ,sbcl-alexandria)
2337 ("cl-ppcre" ,sbcl-cl-ppcre)
2338 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2339 (synopsis "Yet another unit testing framework for Common Lisp")
2340 (description
2341 "This project was originally called @command{cl-test-more}.
2342 @command{prove} is yet another unit testing framework for Common Lisp. The
2343 advantages of @command{prove} are:
2344
2345 @itemize
2346 @item Various simple functions for testing and informative error messages
2347 @item ASDF integration
2348 @item Extensible test reporters
2349 @item Colorizes the report if it's available (note for SLIME)
2350 @item Reports test durations
2351 @end itemize\n")
2352 (home-page "https://github.com/fukamachi/prove")
2353 (license license:expat))))
2354
2355 (define-public cl-prove
2356 (sbcl-package->cl-source-package sbcl-prove))
2357
2358 (define-public ecl-prove
2359 (sbcl-package->ecl-package sbcl-prove))
2360
2361 (define-public sbcl-proc-parse
2362 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2363 (package
2364 (name "sbcl-proc-parse")
2365 (version (git-version "0.0.0" "1" commit))
2366 (source
2367 (origin
2368 (method git-fetch)
2369 (uri (git-reference
2370 (url "https://github.com/fukamachi/proc-parse")
2371 (commit commit)))
2372 (sha256
2373 (base32
2374 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2375 (file-name (git-file-name "proc-parse" version))))
2376 (build-system asdf-build-system/sbcl)
2377 (inputs
2378 `(("alexandria" ,sbcl-alexandria)
2379 ("babel" ,sbcl-babel)))
2380 (native-inputs
2381 `(("prove" ,sbcl-prove)))
2382 (arguments
2383 ;; TODO: Tests don't find "proc-parse-test", why?
2384 `(#:tests? #f))
2385 (synopsis "Procedural vector parser")
2386 (description
2387 "This is a string/octets parser library for Common Lisp with speed and
2388 readability in mind. Unlike other libraries, the code is not a
2389 pattern-matching-like, but a char-by-char procedural parser.")
2390 (home-page "https://github.com/fukamachi/proc-parse")
2391 (license license:bsd-2))))
2392
2393 (define-public cl-proc-parse
2394 (sbcl-package->cl-source-package sbcl-proc-parse))
2395
2396 (define-public ecl-proc-parse
2397 (sbcl-package->ecl-package sbcl-proc-parse))
2398
2399 (define-public sbcl-parse-float
2400 (let ((commit "3074765101e41222b6b624a66aaf1e6416379f9c")
2401 (revision "2"))
2402 (package
2403 (name "sbcl-parse-float")
2404 (version (git-version "0.0.0" revision commit))
2405 (source
2406 (origin
2407 (method git-fetch)
2408 (uri (git-reference
2409 (url "https://github.com/soemraws/parse-float")
2410 (commit commit)))
2411 (sha256
2412 (base32 "0jd2spawc3v8vzqf8ky4cngl45jm65fhkrdf20mf6dcbn3mzpkmr"))
2413 (file-name (git-file-name "proc-parse" version))))
2414 (build-system asdf-build-system/sbcl)
2415 (arguments
2416 ;; FIXME: https://github.com/soemraws/parse-float/issues/12
2417 `(#:asd-systems '("parse-float" "parse-float-tests")))
2418 (native-inputs
2419 `(("lisp-unit" ,sbcl-lisp-unit)))
2420 (inputs
2421 `(("alexandria" ,sbcl-alexandria)))
2422 (home-page "https://github.com/soemraws/parse-float")
2423 (synopsis "Parse a floating point value from a string in Common Lisp")
2424 (description
2425 "This package exports the following function to parse floating-point
2426 values from a string in Common Lisp.")
2427 (license license:public-domain))))
2428
2429 (define-public cl-parse-float
2430 (sbcl-package->cl-source-package sbcl-parse-float))
2431
2432 (define-public ecl-parse-float
2433 (sbcl-package->ecl-package sbcl-parse-float))
2434
2435 (define-public sbcl-cl-string-match
2436 (let ((revision "1")
2437 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2438 (package
2439 (name "sbcl-cl-string-match")
2440 (version (git-version "0" revision changeset))
2441 (source
2442 (origin
2443 (method hg-fetch)
2444 (uri (hg-reference
2445 (url "https://bitbucket.org/vityok/cl-string-match/")
2446 (changeset changeset)))
2447 (sha256
2448 (base32
2449 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2450 (file-name (git-file-name "cl-string-match" version))))
2451 (build-system asdf-build-system/sbcl)
2452 (inputs
2453 `(("alexandria" ,sbcl-alexandria)
2454 ("babel" ,sbcl-babel)
2455 ("iterate" ,sbcl-iterate)
2456 ("jpl-queues" ,sbcl-jpl-queues)
2457 ("jpl-util" ,sbcl-jpl-util)
2458 ("mgl-pax" ,sbcl-mgl-pax)
2459 ("parse-float" ,sbcl-parse-float)
2460 ("proc-parse" ,sbcl-proc-parse)
2461 ("yacc" ,sbcl-cl-yacc)))
2462 ;; TODO: Tests are not evaluated properly.
2463 (native-inputs
2464 ;; For testing:
2465 `(("lisp-unit" ,sbcl-lisp-unit)))
2466 (arguments
2467 `(#:tests? #f))
2468 (synopsis "Set of utilities to manipulate strings in Common Lisp")
2469 (description
2470 "@command{cl-strings} is a small, portable, dependency-free set of
2471 utilities that make it even easier to manipulate text in Common Lisp. It has
2472 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
2473 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2474 (license license:bsd-3))))
2475
2476 (define-public cl-string-match
2477 (sbcl-package->cl-source-package sbcl-cl-string-match))
2478
2479 (define-public ecl-cl-string-match
2480 (sbcl-package->ecl-package sbcl-cl-string-match))
2481
2482 (define-public sbcl-ptester
2483 (let ((commit "fe69fde54f4bce00ce577feb918796c293fc7253")
2484 (revision "1"))
2485 (package
2486 (name "sbcl-ptester")
2487 (version (git-version "2.1.3" revision commit))
2488 (source
2489 (origin
2490 (method git-fetch)
2491 (uri (git-reference
2492 (url "http://git.kpe.io/ptester.git")
2493 (commit commit)))
2494 (file-name (git-file-name name version))
2495 (sha256
2496 (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf"))))
2497 (build-system asdf-build-system/sbcl)
2498 (home-page "http://quickdocs.org/ptester/")
2499 (synopsis "Portable test harness package")
2500 (description
2501 "@command{ptester} is a portable testing framework based on Franz's
2502 tester module.")
2503 (license license:llgpl))))
2504
2505 (define-public cl-ptester
2506 (sbcl-package->cl-source-package sbcl-ptester))
2507
2508 (define-public ecl-ptester
2509 (sbcl-package->ecl-package sbcl-ptester))
2510
2511 (define-public sbcl-puri
2512 (let ((commit "4bbab89d9ccbb26346899d1f496c97604fec567b")
2513 (revision "2"))
2514 (package
2515 (name "sbcl-puri")
2516 (version (git-version "1.5.7" revision commit))
2517 (source
2518 (origin
2519 (method git-fetch)
2520 (uri (git-reference
2521 (url "http://git.kpe.io/puri.git")
2522 (commit commit)))
2523 (file-name (git-file-name "puri" version))
2524 (sha256
2525 (base32 "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd"))))
2526 (build-system asdf-build-system/sbcl)
2527 (native-inputs
2528 `(("ptester" ,sbcl-ptester)))
2529 (home-page "http://puri.kpe.io/")
2530 (synopsis "Portable URI Library")
2531 (description
2532 "This is a portable Universal Resource Identifier library for Common
2533 Lisp programs. It parses URI according to the RFC 2396 specification.")
2534 (license license:llgpl))))
2535
2536 (define-public cl-puri
2537 (sbcl-package->cl-source-package sbcl-puri))
2538
2539 (define-public ecl-puri
2540 (sbcl-package->ecl-package sbcl-puri))
2541
2542 (define-public sbcl-qmynd
2543 (let ((commit "7e56daf73f0ed5f49a931c01af75fb874bcf3445")
2544 (revision "1"))
2545 (package
2546 (name "sbcl-qmynd")
2547 (version (git-version "1.0.0" revision commit))
2548 (source
2549 (origin
2550 (method git-fetch)
2551 (uri (git-reference
2552 (url "https://github.com/qitab/qmynd")
2553 (commit commit)))
2554 (file-name (git-file-name name version))
2555 (sha256
2556 (base32
2557 "06gw5wxcpdclb6a5i5k9lbmdlyqsp182czrm9bm1cpklzbj0ihrl"))))
2558 (build-system asdf-build-system/sbcl)
2559 (inputs
2560 `(("asdf-finalizers" ,sbcl-asdf-finalizers)
2561 ("babel" ,sbcl-babel)
2562 ("chipz" ,sbcl-chipz)
2563 ("cl+ssl" ,sbcl-cl+ssl)
2564 ("flexi-streams" ,sbcl-flexi-streams)
2565 ("ironclad" ,sbcl-ironclad)
2566 ("salza2" ,sbcl-salza2)
2567 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
2568 ("usocket" ,sbcl-usocket)))
2569 (home-page "https://github.com/qitab/qmynd")
2570 (synopsis "QITAB MySQL Native Driver for Common Lisp")
2571 (description "QMyND, the QITAB MySQL Native Driver, is a MySQL client
2572 library that directly talks to a MySQL server in its native network protocol.
2573
2574 It's a part of QITAB umbrella project.")
2575 (license license:expat))))
2576
2577 (define-public ecl-qmynd
2578 (sbcl-package->ecl-package sbcl-qmynd))
2579
2580 (define-public cl-qmynd
2581 (sbcl-package->cl-source-package sbcl-qmynd))
2582
2583 (define-public sbcl-queues
2584 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2585 (package
2586 (name "sbcl-queues")
2587 (version (git-version "0.0.0" "1" commit))
2588 (source
2589 (origin
2590 (method git-fetch)
2591 (uri (git-reference
2592 (url "https://github.com/oconnore/queues")
2593 (commit commit)))
2594 (file-name (git-file-name "queues" version))
2595 (sha256
2596 (base32
2597 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2598 (build-system asdf-build-system/sbcl)
2599 (inputs
2600 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
2601 (arguments
2602 '(#:asd-systems '("queues"
2603 "queues.simple-queue"
2604 "queues.simple-cqueue"
2605 "queues.priority-queue"
2606 "queues.priority-cqueue")))
2607 (home-page "https://github.com/oconnore/queues")
2608 (synopsis "Common Lisp queue library")
2609 (description
2610 "This is a simple queue library for Common Lisp with features such as
2611 non-consing thread safe queues and fibonacci priority queues.")
2612 (license license:expat))))
2613
2614 (define-public cl-queues
2615 (sbcl-package->cl-source-package sbcl-queues))
2616
2617 (define-public ecl-queues
2618 (sbcl-package->ecl-package sbcl-queues))
2619
2620 (define-public sbcl-cffi
2621 (package
2622 (name "sbcl-cffi")
2623 (version "0.23.0")
2624 (source
2625 (origin
2626 (method git-fetch)
2627 (uri (git-reference
2628 (url "https://github.com/cffi/cffi")
2629 (commit (string-append "v" version))))
2630 (file-name (git-file-name "cffi-bootstrap" version))
2631 (sha256
2632 (base32 "03s98imc5niwnpj3hhrafl7dmxq45g74h96sm68976k7ahi3vl5b"))))
2633 (build-system asdf-build-system/sbcl)
2634 (inputs
2635 `(("alexandria" ,sbcl-alexandria)
2636 ("babel" ,sbcl-babel)
2637 ("libffi" ,libffi)
2638 ("trivial-features" ,sbcl-trivial-features)))
2639 (native-inputs
2640 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2641 ("pkg-config" ,pkg-config)
2642 ("rt" ,sbcl-rt)))
2643 (arguments
2644 '(#:phases
2645 (modify-phases %standard-phases
2646 (add-after 'unpack 'fix-arm-support
2647 (lambda _
2648 ;; This is apparently deprecated since libffi-3.3.
2649 (substitute* "libffi/libffi-types.lisp"
2650 (("\\\(\\\(:unix64.*") ")\n"))
2651 #t))
2652 (add-after 'unpack 'fix-paths
2653 (lambda* (#:key inputs #:allow-other-keys)
2654 (substitute* "libffi/libffi.lisp"
2655 (("libffi.so.7" all) (string-append
2656 (assoc-ref inputs "libffi")
2657 "/lib/" all)))
2658 (substitute* "toolchain/c-toolchain.lisp"
2659 (("\"cc\"") (format #f "~S" (which "gcc"))))))
2660 (add-after 'build 'install-headers
2661 (lambda* (#:key outputs #:allow-other-keys)
2662 (install-file "grovel/common.h"
2663 (string-append
2664 (assoc-ref outputs "out")
2665 "/include/grovel")))))
2666 #:asd-files '("cffi.asd"
2667 "cffi-toolchain.asd"
2668 "cffi-grovel.asd"
2669 "cffi-libffi.asd"
2670 "cffi-uffi-compat.asd")
2671 #:asd-systems '("cffi"
2672 "cffi-libffi"
2673 "cffi-uffi-compat")))
2674 (home-page "https://common-lisp.net/project/cffi/")
2675 (synopsis "Common Foreign Function Interface for Common Lisp")
2676 (description "The Common Foreign Function Interface (CFFI)
2677 purports to be a portable foreign function interface for Common Lisp.
2678 The CFFI library is composed of a Lisp-implementation-specific backend
2679 in the CFFI-SYS package, and a portable frontend in the CFFI
2680 package.")
2681 (license license:expat)))
2682
2683 (define-public cl-cffi
2684 (sbcl-package->cl-source-package sbcl-cffi))
2685
2686 (define-public ecl-cffi
2687 (sbcl-package->ecl-package sbcl-cffi))
2688
2689 (define-public sbcl-cl-sqlite
2690 (package
2691 (name "sbcl-cl-sqlite")
2692 (version "0.2.1")
2693 (source
2694 (origin
2695 (method git-fetch)
2696 (uri (git-reference
2697 (url "https://github.com/dmitryvk/cl-sqlite")
2698 (commit version)))
2699 (file-name (git-file-name "cl-sqlite" version))
2700 (sha256
2701 (base32
2702 "08iv7b4m0hh7qx2cvq4f510nrgdld0vicnvmqsh9w0fgrcgmyg4k"))))
2703 (build-system asdf-build-system/sbcl)
2704 (inputs
2705 `(("iterate" ,sbcl-iterate)
2706 ("cffi" ,sbcl-cffi)
2707 ("sqlite" ,sqlite)))
2708 (native-inputs
2709 `(("fiveam" ,sbcl-fiveam)
2710 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
2711 (arguments
2712 `(#:asd-systems '("sqlite")
2713 #:phases
2714 (modify-phases %standard-phases
2715 (add-after 'unpack 'fix-paths
2716 (lambda* (#:key inputs #:allow-other-keys)
2717 (substitute* "sqlite-ffi.lisp"
2718 (("libsqlite3" all) (string-append
2719 (assoc-ref inputs "sqlite")"/lib/" all))))))))
2720 (home-page "https://common-lisp.net/project/cl-sqlite/")
2721 (synopsis "Common Lisp binding for SQLite")
2722 (description
2723 "The @command{cl-sqlite} package is an interface to the SQLite embedded
2724 relational database engine.")
2725 (license license:public-domain)))
2726
2727 (define-public cl-sqlite
2728 (sbcl-package->cl-source-package sbcl-cl-sqlite))
2729
2730 (define-public ecl-cl-sqlite
2731 (sbcl-package->ecl-package sbcl-cl-sqlite))
2732
2733 (define-public sbcl-parenscript
2734 ;; Source archives are overwritten on every release, we use the Git repo instead.
2735 (let ((commit "7a1ac46353cecd144fc91915ba9f122aafcf4766"))
2736 (package
2737 (name "sbcl-parenscript")
2738 (version (git-version "2.7.1" "1" commit))
2739 (source
2740 (origin
2741 (method git-fetch)
2742 (uri (git-reference
2743 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
2744 (commit commit)))
2745 (file-name (git-file-name "parenscript" version))
2746 (sha256
2747 (base32
2748 "0c22lqarrpbq82dg1sb3y6mp6w2faczp34ymzhnmff88yfq1xzsf"))))
2749 (build-system asdf-build-system/sbcl)
2750 (inputs
2751 `(("cl-ppcre" ,sbcl-cl-ppcre)
2752 ("anaphora" ,sbcl-anaphora)
2753 ("named-readtables" ,sbcl-named-readtables)))
2754 (home-page "https://common-lisp.net/project/parenscript/")
2755 (synopsis "Translator from a subset of Common Lisp to JavaScript")
2756 (description
2757 "Parenscript is a translator from an extended subset of Common Lisp to
2758 JavaScript. Parenscript code can run almost identically on both the
2759 browser (as JavaScript) and server (as Common Lisp).
2760
2761 Parenscript code is treated the same way as Common Lisp code, making the full
2762 power of Lisp macros available for JavaScript. This provides a web
2763 development environment that is unmatched in its ability to reduce code
2764 duplication and provide advanced meta-programming facilities to web
2765 developers.
2766
2767 At the same time, Parenscript is different from almost all other \"language
2768 X\" to JavaScript translators in that it imposes almost no overhead:
2769
2770 @itemize
2771 @item No run-time dependencies: Any piece of Parenscript code is runnable
2772 as-is. There are no JavaScript files to include.
2773 @item Native types: Parenscript works entirely with native JavaScript data
2774 types. There are no new types introduced, and object prototypes are not
2775 touched.
2776 @item Native calling convention: Any JavaScript code can be called without the
2777 need for bindings. Likewise, Parenscript can be used to make efficient,
2778 self-contained JavaScript libraries.
2779 @item Readable code: Parenscript generates concise, formatted, idiomatic
2780 JavaScript code. Identifier names are preserved. This enables seamless
2781 debugging in tools like Firebug.
2782 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
2783 Lisp features. The generated code is almost as fast as hand-written
2784 JavaScript.
2785 @end itemize\n")
2786 (license license:bsd-3))))
2787
2788 (define-public cl-parenscript
2789 (sbcl-package->cl-source-package sbcl-parenscript))
2790
2791 (define-public ecl-parenscript
2792 (sbcl-package->ecl-package sbcl-parenscript))
2793
2794 (define-public sbcl-cl-json
2795 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
2796 (package
2797 (name "sbcl-cl-json")
2798 (version (git-version "0.5" "1" commit))
2799 (source
2800 (origin
2801 (method git-fetch)
2802 (uri (git-reference
2803 (url "https://github.com/hankhero/cl-json")
2804 (commit commit)))
2805 (file-name (git-file-name "cl-json" version))
2806 (sha256
2807 (base32
2808 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
2809 (build-system asdf-build-system/sbcl)
2810 (native-inputs
2811 `(("fiveam" ,sbcl-fiveam)))
2812 (home-page "https://github.com/hankhero/cl-json")
2813 (synopsis "JSON encoder and decoder for Common-Lisp")
2814 (description
2815 "@command{cl-json} provides an encoder of Lisp objects to JSON format
2816 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
2817 and the decoder are highly customizable; at the same time, the default
2818 settings ensure a very simple mode of operation, similar to that provided by
2819 @command{yason} or @command{st-json}.")
2820 (license license:expat))))
2821
2822 (define-public cl-json
2823 (sbcl-package->cl-source-package sbcl-cl-json))
2824
2825 (define-public ecl-cl-json
2826 (sbcl-package->ecl-package sbcl-cl-json))
2827
2828 (define-public sbcl-unix-opts
2829 (package
2830 (name "sbcl-unix-opts")
2831 (version "0.1.7")
2832 (source
2833 (origin
2834 (method git-fetch)
2835 (uri (git-reference
2836 (url "https://github.com/libre-man/unix-opts")
2837 (commit version)))
2838 (file-name (git-file-name "unix-opts" version))
2839 (sha256
2840 (base32
2841 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
2842 (build-system asdf-build-system/sbcl)
2843 (home-page "https://github.com/hankhero/cl-json")
2844 (synopsis "Unix-style command line options parser")
2845 (description
2846 "This is a minimalistic parser of command line options. The main
2847 advantage of the library is the ability to concisely define command line
2848 options once and then use this definition for parsing and extraction of
2849 command line arguments, as well as printing description of command line
2850 options (you get --help for free). This way you don't need to repeat
2851 yourself. Also, @command{unix-opts} doesn't depend on anything and
2852 precisely controls the behavior of the parser via Common Lisp restarts.")
2853 (license license:expat)))
2854
2855 (define-public cl-unix-opts
2856 (sbcl-package->cl-source-package sbcl-unix-opts))
2857
2858 (define-public ecl-unix-opts
2859 (sbcl-package->ecl-package sbcl-unix-opts))
2860
2861 (define-public sbcl-trivial-garbage
2862 (package
2863 (name "sbcl-trivial-garbage")
2864 (version "0.21")
2865 (source
2866 (origin
2867 (method git-fetch)
2868 (uri (git-reference
2869 (url "https://github.com/trivial-garbage/trivial-garbage")
2870 (commit (string-append "v" version))))
2871 (file-name (git-file-name "trivial-garbage" version))
2872 (sha256
2873 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
2874 (build-system asdf-build-system/sbcl)
2875 (native-inputs
2876 `(("rt" ,sbcl-rt)))
2877 (home-page "https://common-lisp.net/project/trivial-garbage/")
2878 (synopsis "Portable GC-related APIs for Common Lisp")
2879 (description "@command{trivial-garbage} provides a portable API to
2880 finalizers, weak hash-tables and weak pointers on all major implementations of
2881 the Common Lisp programming language.")
2882 (license license:public-domain)))
2883
2884 (define-public cl-trivial-garbage
2885 (sbcl-package->cl-source-package sbcl-trivial-garbage))
2886
2887 (define-public ecl-trivial-garbage
2888 (sbcl-package->ecl-package sbcl-trivial-garbage))
2889
2890 (define-public sbcl-closer-mop
2891 (let ((commit "19c9d33f576e10715fd79cc1d4f688dab0f241d6"))
2892 (package
2893 (name "sbcl-closer-mop")
2894 (version (git-version "1.0.0" "2" commit))
2895 (source
2896 (origin
2897 (method git-fetch)
2898 (uri (git-reference
2899 (url "https://github.com/pcostanza/closer-mop")
2900 (commit commit)))
2901 (sha256
2902 (base32 "1w3x087wvlwkd6swfdgbvjfs6kazf0la8ax4pjfzikwjch4snn2c"))
2903 (file-name (git-file-name "closer-mop" version ))))
2904 (build-system asdf-build-system/sbcl)
2905 (home-page "https://github.com/pcostanza/closer-mop")
2906 (synopsis "Rectifies absent or incorrect CLOS MOP features")
2907 (description "Closer to MOP is a compatibility layer that rectifies many
2908 of the absent or incorrect CLOS MOP features across a broad range of Common
2909 Lisp implementations.")
2910 (license license:expat))))
2911
2912 (define-public cl-closer-mop
2913 (sbcl-package->cl-source-package sbcl-closer-mop))
2914
2915 (define-public ecl-closer-mop
2916 (sbcl-package->ecl-package sbcl-closer-mop))
2917
2918 (define-public sbcl-cl-cffi-gtk
2919 (let ((commit "e9a46df65995d9a16e6c8dbdc1e09b775eb4a966"))
2920 (package
2921 (name "sbcl-cl-cffi-gtk")
2922 (version (git-version "0.11.2" "2" commit))
2923 (source
2924 (origin
2925 (method git-fetch)
2926 (uri (git-reference
2927 (url "https://github.com/Ferada/cl-cffi-gtk/")
2928 (commit commit)))
2929 (file-name (git-file-name "cl-cffi-gtk" version))
2930 (sha256
2931 (base32
2932 "04vix0gmqsj91lm975sx7jhlnz5gq1xf9jp873mp7c8frc5dk1jj"))))
2933 (build-system asdf-build-system/sbcl)
2934 (native-inputs
2935 `(("fiveam" ,sbcl-fiveam)))
2936 (inputs
2937 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2938 ("cairo" ,cairo)
2939 ("cffi" ,sbcl-cffi)
2940 ("closer-mop" ,sbcl-closer-mop)
2941 ("gdk-pixbuf" ,gdk-pixbuf)
2942 ("glib" ,glib)
2943 ("gtk" ,gtk+)
2944 ("iterate" ,sbcl-iterate)
2945 ("pango" ,pango)
2946 ("trivial-features" ,sbcl-trivial-features)
2947 ("trivial-garbage" ,sbcl-trivial-garbage)))
2948 (arguments
2949 `(#:asd-files '("gtk/cl-cffi-gtk.asd"
2950 "glib/cl-cffi-gtk-glib.asd"
2951 "gobject/cl-cffi-gtk-gobject.asd"
2952 "gio/cl-cffi-gtk-gio.asd"
2953 "cairo/cl-cffi-gtk-cairo.asd"
2954 "pango/cl-cffi-gtk-pango.asd"
2955 "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
2956 "gdk/cl-cffi-gtk-gdk.asd")
2957 #:test-asd-file "test/cl-cffi-gtk-test.asd"
2958 ;; TODO: Tests fail with memory fault.
2959 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
2960 #:tests? #f
2961 #:phases
2962 (modify-phases %standard-phases
2963 (add-after 'unpack 'fix-paths
2964 (lambda* (#:key inputs #:allow-other-keys)
2965 (substitute* "glib/glib.init.lisp"
2966 (("libglib|libgthread" all)
2967 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2968 (substitute* "gobject/gobject.init.lisp"
2969 (("libgobject" all)
2970 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2971 (substitute* "gio/gio.init.lisp"
2972 (("libgio" all)
2973 (string-append (assoc-ref inputs "glib") "/lib/" all)))
2974 (substitute* "cairo/cairo.init.lisp"
2975 (("libcairo" all)
2976 (string-append (assoc-ref inputs "cairo") "/lib/" all)))
2977 (substitute* "pango/pango.init.lisp"
2978 (("libpango" all)
2979 (string-append (assoc-ref inputs "pango") "/lib/" all)))
2980 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
2981 (("libgdk_pixbuf" all)
2982 (string-append (assoc-ref inputs "gdk-pixbuf") "/lib/" all)))
2983 (substitute* "gdk/gdk.init.lisp"
2984 (("libgdk" all)
2985 (string-append (assoc-ref inputs "gtk") "/lib/" all)))
2986 (substitute* "gdk/gdk.package.lisp"
2987 (("libgtk" all)
2988 (string-append (assoc-ref inputs "gtk") "/lib/" all))))))))
2989 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
2990 (synopsis "Common Lisp binding for GTK+3")
2991 (description
2992 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
2993 is a library for creating graphical user interfaces.")
2994 (license license:lgpl3))))
2995
2996 (define-public cl-cffi-gtk
2997 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
2998
2999 (define-public ecl-cl-cffi-gtk
3000 (sbcl-package->ecl-package sbcl-cl-cffi-gtk))
3001
3002 (define-public sbcl-cl-webkit
3003 (let ((commit "0bc05cc73257670ab241853b9cc9ccb68940fe44"))
3004 (package
3005 (name "sbcl-cl-webkit")
3006 (version (git-version "2.4" "10" commit))
3007 (source
3008 (origin
3009 (method git-fetch)
3010 (uri (git-reference
3011 (url "https://github.com/joachifm/cl-webkit")
3012 (commit commit)))
3013 (file-name (git-file-name "cl-webkit" version))
3014 (sha256
3015 (base32
3016 "1kg6illspvb5647pm0x819ag2n7njnqvrm18jzgd28vk6nlkrcmq"))))
3017 (build-system asdf-build-system/sbcl)
3018 (inputs
3019 `(("cffi" ,sbcl-cffi)
3020 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3021 ("webkitgtk" ,webkitgtk)))
3022 (arguments
3023 `(#:asd-systems '("cl-webkit2")
3024 #:phases
3025 (modify-phases %standard-phases
3026 (add-after 'unpack 'fix-paths
3027 (lambda* (#:key inputs #:allow-other-keys)
3028 (substitute* "webkit2/webkit2.init.lisp"
3029 (("libwebkit2gtk" all)
3030 (string-append
3031 (assoc-ref inputs "webkitgtk") "/lib/" all))))))))
3032 (home-page "https://github.com/joachifm/cl-webkit")
3033 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3034 (description
3035 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3036 currently targeting WebKit version 2. The WebKitGTK+ library adds web
3037 browsing capabilities to an application, leveraging the full power of the
3038 WebKit browsing engine.")
3039 (license license:expat))))
3040
3041 (define-public cl-webkit
3042 (sbcl-package->cl-source-package sbcl-cl-webkit))
3043
3044 (define-public ecl-cl-webkit
3045 (sbcl-package->ecl-package sbcl-cl-webkit))
3046
3047 (define-public sbcl-lparallel
3048 (package
3049 (name "sbcl-lparallel")
3050 (version "2.8.4")
3051 (source
3052 (origin
3053 (method git-fetch)
3054 (uri (git-reference
3055 (url "https://github.com/lmj/lparallel/")
3056 (commit (string-append "lparallel-" version))))
3057 (file-name (git-file-name "lparallel" version))
3058 (sha256
3059 (base32
3060 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3061 (build-system asdf-build-system/sbcl)
3062 (inputs
3063 `(("alexandria" ,sbcl-alexandria)
3064 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3065 ("trivial-garbage" ,sbcl-trivial-garbage)))
3066 (arguments
3067 `(#:phases
3068 (modify-phases %standard-phases
3069 (add-after 'unpack 'fix-dependency
3070 ;; lparallel loads a SBCL specific system in its asd file. This is
3071 ;; not carried over into the fasl which is generated. In order for
3072 ;; it to be carried over, it needs to be listed as a dependency.
3073 (lambda _
3074 (substitute* "lparallel.asd"
3075 ((":depends-on \\(:alexandria" all)
3076 (string-append all " #+sbcl :sb-cltl2"))))))))
3077 (home-page "https://lparallel.org/")
3078 (synopsis "Parallelism for Common Lisp")
3079 (description
3080 "@command{lparallel} is a library for parallel programming in Common
3081 Lisp, featuring:
3082
3083 @itemize
3084 @item a simple model of task submission with receiving queue,
3085 @item constructs for expressing fine-grained parallelism,
3086 @item asynchronous condition handling across thread boundaries,
3087 @item parallel versions of map, reduce, sort, remove, and many others,
3088 @item promises, futures, and delayed evaluation constructs,
3089 @item computation trees for parallelizing interconnected tasks,
3090 @item bounded and unbounded FIFO queues,
3091 @item high and low priority tasks,
3092 @item task killing by category,
3093 @item integrated timeouts.
3094 @end itemize\n")
3095 (license license:expat)))
3096
3097 (define-public cl-lparallel
3098 (sbcl-package->cl-source-package sbcl-lparallel))
3099
3100 (define-public ecl-lparallel
3101 (package
3102 (inherit (sbcl-package->ecl-package sbcl-lparallel))
3103 (arguments
3104 ;; TODO: Find why the tests get stuck forever; disable them for now.
3105 `(#:tests? #f))))
3106
3107 (define-public sbcl-cl-markup
3108 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3109 (package
3110 (name "sbcl-cl-markup")
3111 (version (git-version "0.1" "1" commit))
3112 (source
3113 (origin
3114 (method git-fetch)
3115 (uri (git-reference
3116 (url "https://github.com/arielnetworks/cl-markup/")
3117 (commit commit)))
3118 (file-name (git-file-name "cl-markup" version))
3119 (sha256
3120 (base32
3121 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3122 (build-system asdf-build-system/sbcl)
3123 (home-page "https://github.com/arielnetworks/cl-markup/")
3124 (synopsis "Markup generation library for Common Lisp")
3125 (description
3126 "A modern markup generation library for Common Lisp that features:
3127
3128 @itemize
3129 @item Fast (even faster through compiling the code)
3130 @item Safety
3131 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3132 @item Output with doctype
3133 @item Direct output to stream
3134 @end itemize\n")
3135 (license license:lgpl3+))))
3136
3137 (define-public cl-markup
3138 (sbcl-package->cl-source-package sbcl-cl-markup))
3139
3140 (define-public ecl-cl-markup
3141 (sbcl-package->ecl-package sbcl-cl-markup))
3142
3143 (define-public sbcl-cl-mustache
3144 (package
3145 (name "sbcl-cl-mustache")
3146 (version "0.12.1")
3147 (source
3148 (origin
3149 (method git-fetch)
3150 (uri (git-reference
3151 (url "https://github.com/kanru/cl-mustache")
3152 (commit (string-append "v" version))))
3153 (file-name (git-file-name "cl-mustache" version))
3154 (sha256
3155 (base32 "149xbb6wxq1napliwm9cv729hwcgfnjli6y8hingfixz7f10lhks"))))
3156 (build-system asdf-build-system/sbcl)
3157 (home-page "https://github.com/kanru/cl-mustache")
3158 (synopsis "Common Lisp Mustache template renderer")
3159 (description "This is a Common Lisp implementation for the Mustache
3160 template system. More details on the standard are available at
3161 @url{https://mustache.github.io}.")
3162 (license license:expat)))
3163
3164 (define-public cl-mustache
3165 (sbcl-package->cl-source-package sbcl-cl-mustache))
3166
3167 (define-public ecl-cl-mustache
3168 (sbcl-package->ecl-package sbcl-cl-mustache))
3169
3170 (define-public sbcl-cl-css
3171 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3172 (package
3173 (name "sbcl-cl-css")
3174 (version (git-version "0.1" "1" commit))
3175 (source
3176 (origin
3177 (method git-fetch)
3178 (uri (git-reference
3179 (url "https://github.com/inaimathi/cl-css/")
3180 (commit commit)))
3181 (file-name (git-file-name "cl-css" version))
3182 (sha256
3183 (base32
3184 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3185 (build-system asdf-build-system/sbcl)
3186 (home-page "https://github.com/inaimathi/cl-css/")
3187 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3188 (description
3189 "This is a dead-simple, non validating, inline CSS generator for Common
3190 Lisp. Its goals are axiomatic syntax, simple implementation to support
3191 portability, and boilerplate reduction in CSS.")
3192 (license license:expat))))
3193
3194 (define-public cl-css
3195 (sbcl-package->cl-source-package sbcl-cl-css))
3196
3197 (define-public ecl-cl-css
3198 (sbcl-package->ecl-package sbcl-cl-css))
3199
3200 (define-public sbcl-portable-threads
3201 (let ((commit "aa26bf38338a6b068bf8bfb3375d8d8c3b0a28df"))
3202 (package
3203 (name "sbcl-portable-threads")
3204 (version (git-version "2.3" "2" commit))
3205 (source
3206 (origin
3207 (method git-fetch)
3208 (uri (git-reference
3209 (url "https://github.com/binghe/portable-threads/")
3210 (commit commit)))
3211 (file-name (git-file-name "portable-threads" version))
3212 (sha256
3213 (base32 "058ksi07vfdmhrf5mdlc833s82m1rcqfja2266520m3r8bzs8bvs"))))
3214 (build-system asdf-build-system/sbcl)
3215 (arguments
3216 `(;; Tests seem broken.
3217 #:tests? #f))
3218 (home-page "https://github.com/binghe/portable-threads")
3219 (synopsis "Portable threads API for Common Lisp")
3220 (description
3221 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3222 Lisp (from GBBopen project).")
3223 (license license:asl2.0))))
3224
3225 (define-public cl-portable-threads
3226 (sbcl-package->cl-source-package sbcl-portable-threads))
3227
3228 (define-public ecl-portable-threads
3229 (sbcl-package->ecl-package sbcl-portable-threads))
3230
3231 (define-public sbcl-usocket
3232 (package
3233 (name "sbcl-usocket")
3234 (version "0.8.3")
3235 (source
3236 (origin
3237 (method git-fetch)
3238 (uri (git-reference
3239 (url "https://github.com/usocket/usocket/")
3240 (commit (string-append "v" version))))
3241 (file-name (git-file-name "usocket" version))
3242 (sha256
3243 (base32
3244 "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"))))
3245 (build-system asdf-build-system/sbcl)
3246 (native-inputs
3247 `(("rt" ,sbcl-rt)))
3248 (inputs
3249 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3250 ("split-sequence" ,sbcl-split-sequence)))
3251 (arguments
3252 `(#:tests? #f ; FIXME: Tests need network access?
3253 #:asd-systems '("usocket"
3254 "usocket-server")))
3255 (home-page "https://common-lisp.net/project/usocket/")
3256 (synopsis "Universal socket library for Common Lisp")
3257 (description
3258 "This library strives to provide a portable TCP/IP and UDP/IP socket
3259 interface for as many Common Lisp implementations as possible, while keeping
3260 the abstraction and portability layer as thin as possible.")
3261 (license license:expat)))
3262
3263 (define-public cl-usocket
3264 (sbcl-package->cl-source-package sbcl-usocket))
3265
3266 (define-public ecl-usocket
3267 (sbcl-package->ecl-package sbcl-usocket))
3268
3269 (define-public sbcl-s-xml
3270 (package
3271 (name "sbcl-s-xml")
3272 (version "3")
3273 (source
3274 (origin
3275 (method url-fetch)
3276 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3277 (sha256
3278 (base32
3279 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3280 (build-system asdf-build-system/sbcl)
3281 (home-page "https://common-lisp.net/project/s-xml/")
3282 (synopsis "Simple XML parser implemented in Common Lisp")
3283 (description
3284 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3285 parser implementation has the following features:
3286
3287 @itemize
3288 @item It works (handling many common XML usages).
3289 @item It is very small (the core is about 700 lines of code, including
3290 comments and whitespace).
3291 @item It has a core API that is simple, efficient and pure functional, much
3292 like that from SSAX (see also http://ssax.sourceforge.net).
3293 @item It supports different DOM models: an XSML-based one, an LXML-based one
3294 and a classic xml-element struct based one.
3295 @item It is reasonably time and space efficient (internally avoiding garbage
3296 generatation as much as possible).
3297 @item It does support CDATA.
3298 @item It should support the same character sets as your Common Lisp
3299 implementation.
3300 @item It does support XML name spaces.
3301 @end itemize
3302
3303 This XML parser implementation has the following limitations:
3304
3305 @itemize
3306 @item It does not support any special tags (like processing instructions).
3307 @item It is not validating, even skips DTD's all together.
3308 @end itemize\n")
3309 (license license:lgpl3+)))
3310
3311 (define-public cl-s-xml
3312 (sbcl-package->cl-source-package sbcl-s-xml))
3313
3314 (define-public ecl-s-xml
3315 (sbcl-package->ecl-package sbcl-s-xml))
3316
3317 (define-public sbcl-s-xml-rpc
3318 (package
3319 (name "sbcl-s-xml-rpc")
3320 (version "7")
3321 (source
3322 (origin
3323 (method url-fetch)
3324 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3325 (sha256
3326 (base32
3327 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3328 (build-system asdf-build-system/sbcl)
3329 (inputs
3330 `(("s-xml" ,sbcl-s-xml)))
3331 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3332 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3333 (description
3334 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3335 client and server.")
3336 (license license:lgpl3+)))
3337
3338 (define-public cl-s-xml-rpc
3339 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3340
3341 (define-public ecl-s-xml-rpc
3342 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3343
3344 (define-public sbcl-trivial-arguments
3345 (let ((commit "ecd84ed9cf9ef8f1e873d7409e6bd04979372aa7")
3346 (revision "1"))
3347 (package
3348 (name "sbcl-trivial-arguments")
3349 (version (git-version "1.1.0" revision commit))
3350 (source
3351 (origin
3352 (method git-fetch)
3353 (uri (git-reference
3354 (url "https://github.com/Shinmera/trivial-arguments")
3355 (commit commit)))
3356 (file-name (git-file-name "trivial-arguments" version))
3357 (sha256
3358 (base32 "02vaqfavhj8jqxnr68nnzvzshm8jbgcy6m9lvyv4daa6f7ihqf88"))))
3359 (build-system asdf-build-system/sbcl)
3360 (home-page "https://github.com/Shinmera/trivial-arguments")
3361 (synopsis "Common Lisp library to retrieve a function's lambda-list")
3362 (description
3363 "This is a simple library to retrieve the argument list of a function.")
3364 (license license:zlib))))
3365
3366 (define-public ecl-trivial-arguments
3367 (sbcl-package->ecl-package sbcl-trivial-arguments))
3368
3369 (define-public cl-trivial-arguments
3370 (sbcl-package->cl-source-package sbcl-trivial-arguments))
3371
3372 (define-public sbcl-trivial-clipboard
3373 (let ((commit "afcd3743b842f5a81fc86dba60f9db59970f49c5"))
3374 (package
3375 (name "sbcl-trivial-clipboard")
3376 (version (git-version "0.0.0.0" "3" commit))
3377 (source
3378 (origin
3379 (method git-fetch)
3380 (uri (git-reference
3381 (url "https://github.com/snmsts/trivial-clipboard")
3382 (commit commit)))
3383 (file-name (git-file-name "trivial-clipboard" version))
3384 (sha256
3385 (base32
3386 "1qfbvkzmvkbqpc5s3sx31c5653sy6qlcixafgzd10qpykb843prr"))))
3387 (build-system asdf-build-system/sbcl)
3388 (inputs
3389 `(("xclip" ,xclip)))
3390 (native-inputs
3391 `(("fiveam" ,sbcl-fiveam)))
3392 (arguments
3393 `(#:phases
3394 (modify-phases %standard-phases
3395 (add-after 'unpack 'fix-paths
3396 (lambda* (#:key inputs #:allow-other-keys)
3397 (substitute* "src/text.lisp"
3398 (("\\(executable-find \"xclip\"\\)")
3399 (string-append "(executable-find \""
3400 (assoc-ref inputs "xclip")
3401 "/bin/xclip\")"))))))))
3402 (home-page "https://github.com/snmsts/trivial-clipboard")
3403 (synopsis "Access system clipboard in Common Lisp")
3404 (description
3405 "@command{trivial-clipboard} gives access to the system clipboard.")
3406 (license license:expat))))
3407
3408 (define-public cl-trivial-clipboard
3409 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3410
3411 (define-public ecl-trivial-clipboard
3412 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3413
3414 (define-public sbcl-trivial-backtrace
3415 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3416 (revision "1"))
3417 (package
3418 (name "sbcl-trivial-backtrace")
3419 (version (git-version "0.0.0" revision commit))
3420 (source
3421 (origin
3422 (method git-fetch)
3423 (uri (git-reference
3424 (url "https://github.com/gwkkwg/trivial-backtrace")
3425 (commit commit)))
3426 (file-name (git-file-name "trivial-backtrace" version))
3427 (sha256
3428 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3429 (build-system asdf-build-system/sbcl)
3430 (inputs
3431 `(("sbcl-lift" ,sbcl-lift)))
3432 (arguments
3433 `(#:phases
3434 (modify-phases %standard-phases
3435 (add-after 'check 'delete-test-results
3436 (lambda* (#:key outputs #:allow-other-keys)
3437 (let ((test-results (string-append (assoc-ref outputs "out")
3438 "/share/common-lisp/"
3439 (%lisp-type)
3440 "/trivial-backtrace"
3441 "/test-results")))
3442 (when (file-exists? test-results)
3443 (delete-file-recursively test-results)))
3444 #t)))))
3445 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3446 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3447 (description
3448 "One of the many things that didn't quite get into the Common Lisp
3449 standard was how to get a Lisp to output its call stack when something has
3450 gone wrong. As such, each Lisp has developed its own notion of what to
3451 display, how to display it, and what sort of arguments can be used to
3452 customize it. @code{trivial-backtrace} is a simple solution to generating a
3453 backtrace portably.")
3454 (license license:expat))))
3455
3456 (define-public cl-trivial-backtrace
3457 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3458
3459 (define-public ecl-trivial-backtrace
3460 (sbcl-package->ecl-package sbcl-trivial-backtrace))
3461
3462 (define-public sbcl-rfc2388
3463 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3464 (revision "1"))
3465 (package
3466 (name "sbcl-rfc2388")
3467 (version (git-version "0.0.0" revision commit))
3468 (source
3469 (origin
3470 (method git-fetch)
3471 (uri (git-reference
3472 (url "https://github.com/jdz/rfc2388")
3473 (commit commit)))
3474 (file-name (git-file-name "rfc2388" version))
3475 (sha256
3476 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3477 (build-system asdf-build-system/sbcl)
3478 (home-page "https://github.com/jdz/rfc2388/")
3479 (synopsis "An implementation of RFC 2388 in Common Lisp")
3480 (description
3481 "This package contains an implementation of RFC 2388, which is used to
3482 process form data posted with HTTP POST method using enctype
3483 \"multipart/form-data\".")
3484 (license license:bsd-2))))
3485
3486 (define-public cl-rfc2388
3487 (sbcl-package->cl-source-package sbcl-rfc2388))
3488
3489 (define-public ecl-rfc2388
3490 (sbcl-package->ecl-package sbcl-rfc2388))
3491
3492 (define-public sbcl-md5
3493 (package
3494 (name "sbcl-md5")
3495 (version "2.0.4")
3496 (source
3497 (origin
3498 (method git-fetch)
3499 (uri (git-reference
3500 (url "https://github.com/pmai/md5")
3501 (commit (string-append "release-" version))))
3502 (file-name (git-file-name "md5" version))
3503 (sha256
3504 (base32 "1waqxzm7vlc22n92hv8r27anlvvjkkh9slhrky1ww7mdx4mmxwb8"))))
3505 (build-system asdf-build-system/sbcl)
3506 (home-page "https://github.com/pmai/md5")
3507 (synopsis
3508 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3509 (description
3510 "This package implements The MD5 Message-Digest Algorithm, as defined in
3511 RFC 1321 by R. Rivest, published April 1992.")
3512 (license license:public-domain)))
3513
3514 (define-public cl-md5
3515 (sbcl-package->cl-source-package sbcl-md5))
3516
3517 (define-public ecl-md5
3518 (package
3519 (inherit (sbcl-package->ecl-package sbcl-md5))
3520 (inputs
3521 `(("flexi-streams" ,ecl-flexi-streams)))))
3522
3523 (define-public sbcl-cl+ssl
3524 (let ((commit "701e645081e6533a3f0f0b3ac86389d6f506c4b5")
3525 (revision "1"))
3526 (package
3527 (name "sbcl-cl+ssl")
3528 (version (git-version "0.0.0" revision commit))
3529 (source
3530 (origin
3531 (method git-fetch)
3532 (uri (git-reference
3533 (url "https://github.com/cl-plus-ssl/cl-plus-ssl")
3534 (commit commit)))
3535 (file-name (git-file-name "cl+ssl" version))
3536 (sha256
3537 (base32 "0nfl275nwhff3m25872y388cydz14kqb6zbwywa6nj85r9k8bgs0"))))
3538 (build-system asdf-build-system/sbcl)
3539 (arguments
3540 '(#:phases
3541 (modify-phases %standard-phases
3542 (add-after 'unpack 'fix-paths
3543 (lambda* (#:key inputs #:allow-other-keys)
3544 (substitute* "src/reload.lisp"
3545 (("libssl.so" all)
3546 (string-append
3547 (assoc-ref inputs "openssl") "/lib/" all))))))))
3548 (inputs
3549 `(("openssl" ,openssl)
3550 ("sbcl-cffi" ,sbcl-cffi)
3551 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
3552 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3553 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
3554 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
3555 ("sbcl-alexandria" ,sbcl-alexandria)
3556 ("sbcl-trivial-features" ,sbcl-trivial-features)))
3557 (home-page "https://common-lisp.net/project/cl-plus-ssl/")
3558 (synopsis "Common Lisp bindings to OpenSSL")
3559 (description
3560 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
3561 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
3562 Development into CL+SSL was done by David Lichteblau.")
3563 (license license:expat))))
3564
3565 (define-public cl-cl+ssl
3566 (sbcl-package->cl-source-package sbcl-cl+ssl))
3567
3568 (define-public ecl-cl+ssl
3569 (sbcl-package->ecl-package sbcl-cl+ssl))
3570
3571 (define-public sbcl-kmrcl
3572 (let ((version "1.111")
3573 (commit "4a27407aad9deb607ffb8847630cde3d041ea25a")
3574 (revision "1"))
3575 (package
3576 (name "sbcl-kmrcl")
3577 (version (git-version version revision commit))
3578 (source
3579 (origin
3580 (method git-fetch)
3581 (uri (git-reference
3582 (url "http://git.kpe.io/kmrcl.git/")
3583 (commit commit)))
3584 (file-name (git-file-name name version))
3585 (sha256
3586 (base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))))
3587 (build-system asdf-build-system/sbcl)
3588 (inputs
3589 `(("sbcl-rt" ,sbcl-rt)))
3590 (home-page "http://files.kpe.io/kmrcl/")
3591 (synopsis "General utilities for Common Lisp programs")
3592 (description
3593 "KMRCL is a collection of utilities used by a number of Kevin
3594 Rosenberg's Common Lisp packages.")
3595 (license license:llgpl))))
3596
3597 (define-public cl-kmrcl
3598 (sbcl-package->cl-source-package sbcl-kmrcl))
3599
3600 (define-public ecl-kmrcl
3601 (sbcl-package->ecl-package sbcl-kmrcl))
3602
3603 (define-public sbcl-cl-base64
3604 ;; 3.3.4 tests are broken, upstream fixes them.
3605 (let ((commit "577683b18fd880b82274d99fc96a18a710e3987a"))
3606 (package
3607 (name "sbcl-cl-base64")
3608 (version (git-version "3.3.4" "1" commit))
3609 (source
3610 (origin
3611 (method git-fetch)
3612 (uri (git-reference
3613 (url "http://git.kpe.io/cl-base64.git/")
3614 (commit commit)))
3615 (file-name (git-file-name name version))
3616 (sha256
3617 (base32 "12jj54h0fs6n237cvnp8v6hn0imfksammq22ys6pi0gwz2w47rbj"))))
3618 (build-system asdf-build-system/sbcl)
3619 (native-inputs ; For tests.
3620 `(("sbcl-ptester" ,sbcl-ptester)
3621 ("sbcl-kmrcl" ,sbcl-kmrcl)))
3622 (home-page "http://files.kpe.io/cl-base64/")
3623 (synopsis
3624 "Common Lisp package to encode and decode base64 with URI support")
3625 (description
3626 "This package provides highly optimized base64 encoding and decoding.
3627 Besides conversion to and from strings, integer conversions are supported.
3628 Encoding with Uniform Resource Identifiers is supported by using a modified
3629 encoding table that uses only URI-compatible characters.")
3630 (license license:bsd-3))))
3631
3632 (define-public cl-base64
3633 (sbcl-package->cl-source-package sbcl-cl-base64))
3634
3635 (define-public ecl-cl-base64
3636 (sbcl-package->ecl-package sbcl-cl-base64))
3637
3638 (define-public sbcl-chunga
3639 (package
3640 (name "sbcl-chunga")
3641 (version "1.1.7")
3642 (source
3643 (origin
3644 (method git-fetch)
3645 (uri (git-reference
3646 (url "https://github.com/edicl/chunga")
3647 (commit (string-append "v" version))))
3648 (file-name (git-file-name name version))
3649 (sha256
3650 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
3651 (build-system asdf-build-system/sbcl)
3652 (inputs
3653 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
3654 (home-page "https://edicl.github.io/chunga/")
3655 (synopsis "Portable chunked streams for Common Lisp")
3656 (description
3657 "Chunga implements streams capable of chunked encoding on demand as
3658 defined in RFC 2616.")
3659 (license license:bsd-2)))
3660
3661 (define-public cl-chunga
3662 (sbcl-package->cl-source-package sbcl-chunga))
3663
3664 (define-public ecl-chunga
3665 (sbcl-package->ecl-package sbcl-chunga))
3666
3667 (define-public sbcl-cl-who
3668 (let ((version "1.1.4")
3669 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
3670 (revision "1"))
3671 (package
3672 (name "sbcl-cl-who")
3673 (version (git-version version revision commit))
3674 (source
3675 (origin
3676 (method git-fetch)
3677 (uri (git-reference
3678 (url "https://github.com/edicl/cl-who")
3679 (commit commit)))
3680 (file-name (git-file-name name version))
3681 (sha256
3682 (base32
3683 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
3684 (build-system asdf-build-system/sbcl)
3685 (native-inputs
3686 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3687 (home-page "https://edicl.github.io/cl-who/")
3688 (synopsis "Yet another Lisp markup language")
3689 (description
3690 "There are plenty of Lisp Markup Languages out there - every Lisp
3691 programmer seems to write at least one during his career - and CL-WHO (where
3692 WHO means \"with-html-output\" for want of a better acronym) is probably just
3693 as good or bad as the next one.")
3694 (license license:bsd-2))))
3695
3696 (define-public cl-who
3697 (sbcl-package->cl-source-package sbcl-cl-who))
3698
3699 (define-public ecl-cl-who
3700 (sbcl-package->ecl-package sbcl-cl-who))
3701
3702 (define-public sbcl-chipz
3703 (let ((version "0.8")
3704 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
3705 (revision "1"))
3706 (package
3707 (name "sbcl-chipz")
3708 (version (git-version version revision commit))
3709 (source
3710 (origin
3711 (method git-fetch)
3712 (uri (git-reference
3713 (url "https://github.com/froydnj/chipz")
3714 (commit commit)))
3715 (file-name (git-file-name name version))
3716 (sha256
3717 (base32
3718 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
3719 (build-system asdf-build-system/sbcl)
3720 (native-inputs
3721 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
3722 (home-page "http://method-combination.net/lisp/chipz/")
3723 (synopsis
3724 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
3725 data")
3726 (description
3727 "DEFLATE data, defined in RFC1951, forms the core of popular
3728 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
3729 Chipz also provides for decompressing data in those formats as well. BZIP2 is
3730 the format used by the popular compression tool bzip2.")
3731 ;; The author describes it as "MIT-like"
3732 (license license:expat))))
3733
3734 (define-public cl-chipz
3735 (sbcl-package->cl-source-package sbcl-chipz))
3736
3737 (define-public ecl-chipz
3738 (sbcl-package->ecl-package sbcl-chipz))
3739
3740 (define-public sbcl-drakma
3741 (package
3742 (name "sbcl-drakma")
3743 (version "2.0.7")
3744 (source
3745 (origin
3746 (method git-fetch)
3747 (uri (git-reference
3748 (url "https://github.com/edicl/drakma")
3749 (commit (string-append "v" version))))
3750 (file-name (git-file-name name version))
3751 (sha256
3752 (base32
3753 "1441idnyif9xzx3ln1p3fg36k2v9h4wasjqrzc8y52j61420qpci"))))
3754 (build-system asdf-build-system/sbcl)
3755 (inputs
3756 `(("sbcl-puri" ,sbcl-puri)
3757 ("sbcl-cl-base64" ,sbcl-cl-base64)
3758 ("sbcl-chunga" ,sbcl-chunga)
3759 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3760 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3761 ("sbcl-chipz" ,sbcl-chipz)
3762 ("sbcl-usocket" ,sbcl-usocket)
3763 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
3764 (native-inputs
3765 `(("sbcl-fiveam" ,sbcl-fiveam)))
3766 (home-page "https://edicl.github.io/drakma/")
3767 (synopsis "HTTP client written in Common Lisp")
3768 (description
3769 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
3770 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
3771 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
3772 (license license:bsd-2)))
3773
3774 (define-public cl-drakma
3775 (sbcl-package->cl-source-package sbcl-drakma))
3776
3777 (define-public ecl-drakma
3778 (sbcl-package->ecl-package sbcl-drakma))
3779
3780 (define-public sbcl-hunchentoot
3781 (package
3782 (name "sbcl-hunchentoot")
3783 (version "1.2.38")
3784 (source
3785 (origin
3786 (method git-fetch)
3787 (uri (git-reference
3788 (url "https://github.com/edicl/hunchentoot")
3789 (commit (string-append "v" version))))
3790 (file-name (git-file-name "hunchentoot" version))
3791 (sha256
3792 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
3793 (build-system asdf-build-system/sbcl)
3794 (native-inputs
3795 `(("sbcl-cl-who" ,sbcl-cl-who)
3796 ("sbcl-drakma" ,sbcl-drakma)))
3797 (inputs
3798 `(("sbcl-chunga" ,sbcl-chunga)
3799 ("sbcl-cl-base64" ,sbcl-cl-base64)
3800 ("sbcl-cl-fad" ,sbcl-cl-fad)
3801 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
3802 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
3803 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
3804 ("sbcl-md5" ,sbcl-md5)
3805 ("sbcl-rfc2388" ,sbcl-rfc2388)
3806 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
3807 ("sbcl-usocket" ,sbcl-usocket)))
3808 (home-page "https://edicl.github.io/hunchentoot/")
3809 (synopsis "Web server written in Common Lisp")
3810 (description
3811 "Hunchentoot is a web server written in Common Lisp and at the same
3812 time a toolkit for building dynamic websites. As a stand-alone web server,
3813 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
3814 connections (keep-alive), and SSL.")
3815 (license license:bsd-2)))
3816
3817 (define-public cl-hunchentoot
3818 (sbcl-package->cl-source-package sbcl-hunchentoot))
3819
3820 (define-public ecl-hunchentoot
3821 (package
3822 (inherit (sbcl-package->ecl-package sbcl-hunchentoot))
3823 (arguments
3824 ;; Tests fail on ECL with 'Socket error in "socket": EINVAL'.
3825 '(#:tests? #f))))
3826
3827 (define-public sbcl-trivial-types
3828 (package
3829 (name "sbcl-trivial-types")
3830 (version "0.0.1")
3831 (source
3832 (origin
3833 (method git-fetch)
3834 (uri (git-reference
3835 (url "https://github.com/m2ym/trivial-types")
3836 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
3837 (file-name (git-file-name name version))
3838 (sha256
3839 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
3840 (build-system asdf-build-system/sbcl)
3841 (home-page "https://github.com/m2ym/trivial-types")
3842 (synopsis "Trivial type definitions for Common Lisp")
3843 (description
3844 "TRIVIAL-TYPES provides missing but important type definitions such as
3845 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
3846 (license license:llgpl)))
3847
3848 (define-public cl-trivial-types
3849 (sbcl-package->cl-source-package sbcl-trivial-types))
3850
3851 (define-public ecl-trivial-types
3852 (sbcl-package->ecl-package sbcl-trivial-types))
3853
3854 (define-public sbcl-cl-annot
3855 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
3856 (revision "1"))
3857 (package
3858 (name "sbcl-cl-annot")
3859 (version (git-version "0.0.0" revision commit))
3860 (source
3861 (origin
3862 (method git-fetch)
3863 (uri (git-reference
3864 (url "https://github.com/m2ym/cl-annot")
3865 (commit commit)))
3866 (file-name (git-file-name name version))
3867 (sha256
3868 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
3869 (build-system asdf-build-system/sbcl)
3870 (inputs
3871 `(("sbcl-alexandria" ,sbcl-alexandria)))
3872 (home-page "https://github.com/m2ym/cl-annot")
3873 (synopsis "Python-like Annotation Syntax for Common Lisp.")
3874 (description
3875 "@code{cl-annot} is an general annotation library for Common Lisp.")
3876 (license license:llgpl))))
3877
3878 (define-public cl-annot
3879 (sbcl-package->cl-source-package sbcl-cl-annot))
3880
3881 (define-public ecl-cl-annot
3882 (sbcl-package->ecl-package sbcl-cl-annot))
3883
3884 (define-public sbcl-cl-syntax
3885 (package
3886 (name "sbcl-cl-syntax")
3887 (version "0.0.3")
3888 (source
3889 (origin
3890 (method git-fetch)
3891 (uri (git-reference
3892 (url "https://github.com/m2ym/cl-syntax")
3893 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
3894 (file-name (git-file-name "cl-syntax" version))
3895 (sha256
3896 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
3897 (build-system asdf-build-system/sbcl)
3898 (inputs
3899 `(("cl-annot" ,sbcl-cl-annot)
3900 ("cl-interpol" ,sbcl-cl-interpol)
3901 ("named-readtables" ,sbcl-named-readtables)
3902 ("trivial-types" ,sbcl-trivial-types)))
3903 (arguments
3904 '(#:asd-systems '("cl-syntax"
3905 "cl-syntax-annot"
3906 "cl-syntax-interpol")))
3907 (home-page "https://github.com/m2ym/cl-syntax")
3908 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
3909 (description
3910 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
3911 (license license:llgpl)))
3912
3913 (define-public cl-syntax
3914 (sbcl-package->cl-source-package sbcl-cl-syntax))
3915
3916 (define-public ecl-cl-syntax
3917 (sbcl-package->ecl-package sbcl-cl-syntax))
3918
3919 (define-public sbcl-cl-utilities
3920 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
3921 (revision "1"))
3922 (package
3923 (name "sbcl-cl-utilities")
3924 (version (git-version "0.0.0" revision commit))
3925 (source
3926 (origin
3927 (method url-fetch)
3928 (uri
3929 (string-append
3930 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
3931 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
3932 (sha256
3933 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
3934 (build-system asdf-build-system/sbcl)
3935 (arguments
3936 '(#:phases
3937 (modify-phases %standard-phases
3938 (add-after 'unpack 'fix-paths
3939 (lambda* (#:key inputs #:allow-other-keys)
3940 (substitute* "rotate-byte.lisp"
3941 (("in-package :cl-utilities)" all)
3942 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
3943 (home-page "http://common-lisp.net/project/cl-utilities")
3944 (synopsis "A collection of semi-standard utilities")
3945 (description
3946 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
3947 is a collection of Common Lisp Utilities, things that everybody writes since
3948 they're not part of the official standard. There are some very useful things
3949 there; the only problems are that they aren't implemented as well as you'd
3950 like (some aren't implemented at all) and they aren't conveniently packaged
3951 and maintained. It takes quite a bit of work to carefully implement utilities
3952 for common use, commented and documented, with error checking placed
3953 everywhere some dumb user might make a mistake.")
3954 (license license:public-domain))))
3955
3956 (define-public cl-utilities
3957 (sbcl-package->cl-source-package sbcl-cl-utilities))
3958
3959 (define-public ecl-cl-utilities
3960 (sbcl-package->ecl-package sbcl-cl-utilities))
3961
3962 (define-public sbcl-map-set
3963 (let ((commit "7b4b545b68b8")
3964 (revision "1"))
3965 (package
3966 (name "sbcl-map-set")
3967 (version (git-version "0.0.0" revision commit))
3968 (source
3969 (origin
3970 (method url-fetch)
3971 (uri (string-append
3972 "https://bitbucket.org/tarballs_are_good/map-set/get/"
3973 commit ".tar.gz"))
3974 (sha256
3975 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
3976 (build-system asdf-build-system/sbcl)
3977 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
3978 (synopsis "Set-like data structure")
3979 (description
3980 "Implementation of a set-like data structure with constant time
3981 addition, removal, and random selection.")
3982 (license license:bsd-3))))
3983
3984 (define-public cl-map-set
3985 (sbcl-package->cl-source-package sbcl-map-set))
3986
3987 (define-public ecl-map-set
3988 (sbcl-package->ecl-package sbcl-map-set))
3989
3990 (define-public sbcl-quri
3991 (let ((commit "d7f2720568146c6674187f625f115925e6364a7f")
3992 (revision "4"))
3993 (package
3994 (name "sbcl-quri")
3995 (version (git-version "0.1.0" revision commit))
3996 (source
3997 (origin
3998 (method git-fetch)
3999 (uri (git-reference
4000 (url "https://github.com/fukamachi/quri")
4001 (commit commit)))
4002 (file-name (git-file-name name version))
4003 (sha256
4004 (base32 "0yrcvz5ksfr7x8yx741vp65il0fxxaskppq3iyk9bq895s1jn37w"))))
4005 (build-system asdf-build-system/sbcl)
4006 (arguments
4007 ;; Test system must be loaded before, otherwise tests fail with:
4008 ;; Component QURI-ASD::QURI-TEST not found, required by #<SYSTEM
4009 ;; "quri">.
4010 '(#:asd-systems '("quri-test"
4011 "quri")))
4012 (native-inputs `(("sbcl-prove" ,sbcl-prove)))
4013 (inputs `(("sbcl-babel" ,sbcl-babel)
4014 ("sbcl-split-sequence" ,sbcl-split-sequence)
4015 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
4016 ("sbcl-alexandria" ,sbcl-alexandria)))
4017 (home-page "https://github.com/fukamachi/quri")
4018 (synopsis "Yet another URI library for Common Lisp")
4019 (description
4020 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
4021 Lisp. It is intended to be a replacement of PURI.")
4022 (license license:bsd-3))))
4023
4024 (define-public cl-quri
4025 (sbcl-package->cl-source-package sbcl-quri))
4026
4027 (define-public ecl-quri
4028 (sbcl-package->ecl-package sbcl-quri))
4029
4030 (define-public sbcl-myway
4031 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
4032 (revision "1"))
4033 (package
4034 (name "sbcl-myway")
4035 (version (git-version "0.1.0" revision commit))
4036 (source
4037 (origin
4038 (method git-fetch)
4039 (uri (git-reference
4040 (url "https://github.com/fukamachi/myway")
4041 (commit commit)))
4042 (file-name (git-file-name "myway" version))
4043 (sha256
4044 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
4045 (build-system asdf-build-system/sbcl)
4046 (arguments
4047 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
4048 ;; by #<SYSTEM "myway">. Why?
4049 '(#:tests? #f))
4050 (native-inputs
4051 `(("sbcl-prove" ,sbcl-prove)))
4052 (inputs
4053 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4054 ("sbcl-quri" ,sbcl-quri)
4055 ("sbcl-map-set" ,sbcl-map-set)))
4056 (home-page "https://github.com/fukamachi/myway")
4057 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
4058 (description "My Way is a Sinatra-compatible URL routing library.")
4059 (license license:llgpl))))
4060
4061 (define-public cl-myway
4062 (sbcl-package->cl-source-package sbcl-myway))
4063
4064 (define-public ecl-myway
4065 (sbcl-package->ecl-package sbcl-myway))
4066
4067 (define-public sbcl-xsubseq
4068 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
4069 (revision "1"))
4070 (package
4071 (name "sbcl-xsubseq")
4072 (version (git-version "0.0.1" revision commit))
4073 (source
4074 (origin
4075 (method git-fetch)
4076 (uri (git-reference
4077 (url "https://github.com/fukamachi/xsubseq")
4078 (commit commit)))
4079 (file-name (git-file-name name version))
4080 (sha256
4081 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4082 (build-system asdf-build-system/sbcl)
4083 (arguments
4084 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4085 ;; required by #<SYSTEM "xsubseq">. Why?
4086 '(#:tests? #f))
4087 (native-inputs
4088 `(("sbcl-prove" ,sbcl-prove)))
4089 (home-page "https://github.com/fukamachi/xsubseq")
4090 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4091 (description
4092 "XSubseq provides functions to be able to handle \"subseq\"s more
4093 effieiently.")
4094 (license license:bsd-2))))
4095
4096 (define-public cl-xsubseq
4097 (sbcl-package->cl-source-package sbcl-xsubseq))
4098
4099 (define-public ecl-xsubseq
4100 (sbcl-package->ecl-package sbcl-xsubseq))
4101
4102 (define-public sbcl-smart-buffer
4103 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4104 (revision "1"))
4105 (package
4106 (name "sbcl-smart-buffer")
4107 (version (git-version "0.0.1" revision commit))
4108 (source
4109 (origin
4110 (method git-fetch)
4111 (uri (git-reference
4112 (url "https://github.com/fukamachi/smart-buffer")
4113 (commit commit)))
4114 (file-name (git-file-name name version))
4115 (sha256
4116 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4117 (build-system asdf-build-system/sbcl)
4118 (arguments
4119 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4120 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4121 `(#:tests? #f))
4122 (native-inputs
4123 `(("sbcl-prove" ,sbcl-prove)))
4124 (inputs
4125 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4126 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4127 (home-page "https://github.com/fukamachi/smart-buffer")
4128 (synopsis "Smart octets buffer")
4129 (description
4130 "Smart-buffer provides an output buffer which changes the destination
4131 depending on content size.")
4132 (license license:bsd-3))))
4133
4134 (define-public cl-smart-buffer
4135 (sbcl-package->cl-source-package sbcl-smart-buffer))
4136
4137 (define-public ecl-smart-buffer
4138 (sbcl-package->ecl-package sbcl-smart-buffer))
4139
4140 (define-public sbcl-fast-http
4141 (let ((commit "502a37715dcb8544cc8528b78143a942de662c5a")
4142 (revision "2"))
4143 (package
4144 (name "sbcl-fast-http")
4145 (version (git-version "0.2.0" revision commit))
4146 (source
4147 (origin
4148 (method git-fetch)
4149 (uri (git-reference
4150 (url "https://github.com/fukamachi/fast-http")
4151 (commit commit)))
4152 (file-name (git-file-name name version))
4153 (sha256
4154 (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
4155 (build-system asdf-build-system/sbcl)
4156 (arguments
4157 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4158 ;; required by #<SYSTEM "fast-http">. Why?
4159 `(#:tests? #f))
4160 (native-inputs
4161 `(("sbcl-prove" ,sbcl-prove)
4162 ("cl-syntax" ,sbcl-cl-syntax)))
4163 (inputs
4164 `(("sbcl-alexandria" ,sbcl-alexandria)
4165 ("sbcl-proc-parse" ,sbcl-proc-parse)
4166 ("sbcl-xsubseq" ,sbcl-xsubseq)
4167 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4168 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4169 (home-page "https://github.com/fukamachi/fast-http")
4170 (synopsis "HTTP request/response parser for Common Lisp")
4171 (description
4172 "@code{fast-http} is a HTTP request/response protocol parser for Common
4173 Lisp.")
4174 ;; Author specified the MIT license
4175 (license license:expat))))
4176
4177 (define-public cl-fast-http
4178 (sbcl-package->cl-source-package sbcl-fast-http))
4179
4180 (define-public ecl-fast-http
4181 (sbcl-package->ecl-package sbcl-fast-http))
4182
4183 (define-public sbcl-static-vectors
4184 (package
4185 (name "sbcl-static-vectors")
4186 (version "1.8.6")
4187 (source
4188 (origin
4189 (method git-fetch)
4190 (uri (git-reference
4191 (url "https://github.com/sionescu/static-vectors")
4192 (commit (string-append "v" version))))
4193 (file-name (git-file-name name version))
4194 (sha256
4195 (base32 "01hwxzhyjkhsd3949g70120g7msw01byf0ia0pbj319q1a3cq7j9"))))
4196 (native-inputs
4197 `(("sbcl-fiveam" ,sbcl-fiveam)))
4198 (inputs
4199 `(("sbcl-alexandria" ,sbcl-alexandria)
4200 ("sbcl-cffi" ,sbcl-cffi)))
4201 (build-system asdf-build-system/sbcl)
4202 (home-page "https://github.com/sionescu/static-vectors")
4203 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4204 (description
4205 "With @code{static-vectors}, you can create vectors allocated in static
4206 memory.")
4207 (license license:expat)))
4208
4209 (define-public cl-static-vectors
4210 (sbcl-package->cl-source-package sbcl-static-vectors))
4211
4212 (define-public ecl-static-vectors
4213 (sbcl-package->ecl-package sbcl-static-vectors))
4214
4215 (define-public sbcl-marshal
4216 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4217 (revision "1"))
4218 (package
4219 (name "sbcl-marshal")
4220 (version (git-version "1.3.0" revision commit))
4221 (source
4222 (origin
4223 (method git-fetch)
4224 (uri (git-reference
4225 (url "https://github.com/wlbr/cl-marshal")
4226 (commit commit)))
4227 (file-name (git-file-name name version))
4228 (sha256
4229 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4230 (build-system asdf-build-system/sbcl)
4231 (home-page "https://github.com/wlbr/cl-marshal")
4232 (synopsis "Simple (de)serialization of Lisp datastructures")
4233 (description
4234 "Simple and fast marshalling of Lisp datastructures. Convert any object
4235 into a string representation, put it on a stream an revive it from there.
4236 Only minimal changes required to make your CLOS objects serializable.")
4237 (license license:expat))))
4238
4239 (define-public cl-marshal
4240 (sbcl-package->cl-source-package sbcl-marshal))
4241
4242 (define-public ecl-marshal
4243 (sbcl-package->ecl-package sbcl-marshal))
4244
4245 (define-public sbcl-checkl
4246 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4247 (revision "1"))
4248 (package
4249 (name "sbcl-checkl")
4250 (version (git-version "0.0.0" revision commit))
4251 (source
4252 (origin
4253 (method git-fetch)
4254 (uri (git-reference
4255 (url "https://github.com/rpav/CheckL")
4256 (commit commit)))
4257 (file-name (git-file-name name version))
4258 (sha256
4259 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4260 (build-system asdf-build-system/sbcl)
4261 (arguments
4262 ;; Error while trying to load definition for system checkl-test from
4263 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4264 ;; is undefined.
4265 '(#:asd-files '("checkl.asd")
4266 #:tests? #f))
4267 (native-inputs
4268 `(("sbcl-fiveam" ,sbcl-fiveam)))
4269 (inputs
4270 `(("sbcl-marshal" ,sbcl-marshal)))
4271 (home-page "https://github.com/rpav/CheckL/")
4272 (synopsis "Dynamic testing for Common Lisp")
4273 (description
4274 "CheckL lets you write tests dynamically, it checks resulting values
4275 against the last run.")
4276 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4277 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4278 ;; stronger of the two and so I think only listing this should suffice.
4279 (license license:llgpl))))
4280
4281 (define-public cl-checkl
4282 (sbcl-package->cl-source-package sbcl-checkl))
4283
4284 (define-public ecl-checkl
4285 (sbcl-package->ecl-package sbcl-checkl))
4286
4287 (define-public sbcl-fast-io
4288 (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b")
4289 (revision "2"))
4290 (package
4291 (name "sbcl-fast-io")
4292 (version (git-version "1.0.0" revision commit))
4293 (source
4294 (origin
4295 (method git-fetch)
4296 (uri (git-reference
4297 (url "https://github.com/rpav/fast-io")
4298 (commit commit)))
4299 (file-name (git-file-name name version))
4300 (sha256
4301 (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n"))))
4302 (build-system asdf-build-system/sbcl)
4303 (arguments
4304 ;; Error while trying to load definition for system fast-io-test from
4305 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4306 ;; is undefined.
4307 '(#:tests? #f
4308 #:asd-files '("fast-io.asd")))
4309 (native-inputs
4310 `(("sbcl-fiveam" ,sbcl-fiveam)
4311 ("sbcl-checkl" ,sbcl-checkl)))
4312 (inputs
4313 `(("sbcl-alexandria" ,sbcl-alexandria)
4314 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4315 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4316 (home-page "https://github.com/rpav/fast-io")
4317 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4318 (description
4319 "Fast-io is about improving performance to octet-vectors and octet
4320 streams (though primarily the former, while wrapping the latter).")
4321 ;; Author specifies this as NewBSD which is an alias
4322 (license license:bsd-3))))
4323
4324 (define-public cl-fast-io
4325 (sbcl-package->cl-source-package sbcl-fast-io))
4326
4327 (define-public ecl-fast-io
4328 (sbcl-package->ecl-package sbcl-fast-io))
4329
4330 (define-public sbcl-jonathan
4331 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4332 (revision "1"))
4333 (package
4334 (name "sbcl-jonathan")
4335 (version (git-version "0.1.0" revision commit))
4336 (source
4337 (origin
4338 (method git-fetch)
4339 (uri (git-reference
4340 (url "https://github.com/Rudolph-Miller/jonathan")
4341 (commit commit)))
4342 (file-name (git-file-name name version))
4343 (sha256
4344 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4345 (build-system asdf-build-system/sbcl)
4346 (arguments
4347 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4348 ;; required by #<SYSTEM "jonathan">. Why?
4349 `(#:tests? #f))
4350 (native-inputs
4351 `(("sbcl-prove" ,sbcl-prove)))
4352 (inputs
4353 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4354 ("sbcl-fast-io" ,sbcl-fast-io)
4355 ("sbcl-proc-parse" ,sbcl-proc-parse)
4356 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4357 (home-page "https://rudolph-miller.github.io/jonathan/overview.html")
4358 (synopsis "JSON encoder and decoder")
4359 (description
4360 "High performance JSON encoder and decoder. Currently support: SBCL,
4361 CCL.")
4362 ;; Author specifies the MIT license
4363 (license license:expat))))
4364
4365 (define-public cl-jonathan
4366 (sbcl-package->cl-source-package sbcl-jonathan))
4367
4368 (define-public ecl-jonathan
4369 (sbcl-package->ecl-package sbcl-jonathan))
4370
4371 (define-public sbcl-http-body
4372 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4373 (revision "1"))
4374 (package
4375 (name "sbcl-http-body")
4376 (version (git-version "0.1.0" revision commit))
4377 (source
4378 (origin
4379 (method git-fetch)
4380 (uri (git-reference
4381 (url "https://github.com/fukamachi/http-body")
4382 (commit commit)))
4383 (file-name (git-file-name name version))
4384 (sha256
4385 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4386 (build-system asdf-build-system/sbcl)
4387 (arguments
4388 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4389 ;; found, required by #<SYSTEM "http-body">. Why?
4390 `(#:tests? #f))
4391 (native-inputs
4392 `(("sbcl-prove" ,sbcl-prove)))
4393 (inputs
4394 `(("sbcl-fast-http" ,sbcl-fast-http)
4395 ("sbcl-jonathan" ,sbcl-jonathan)
4396 ("sbcl-quri" ,sbcl-quri)))
4397 (home-page "https://github.com/fukamachi/http-body")
4398 (synopsis "HTTP POST data parser")
4399 (description
4400 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4401 supports application/x-www-form-urlencoded, application/json, and
4402 multipart/form-data.")
4403 (license license:bsd-2))))
4404
4405 (define-public cl-http-body
4406 (sbcl-package->cl-source-package sbcl-http-body))
4407
4408 (define-public ecl-http-body
4409 (sbcl-package->ecl-package sbcl-http-body))
4410
4411 (define-public sbcl-circular-streams
4412 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4413 (revision "1"))
4414 (package
4415 (name "sbcl-circular-streams")
4416 (version (git-version "0.1.0" revision commit))
4417 (source
4418 (origin
4419 (method git-fetch)
4420 (uri (git-reference
4421 (url "https://github.com/fukamachi/circular-streams")
4422 (commit commit)))
4423 (file-name (git-file-name name version))
4424 (sha256
4425 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4426 (build-system asdf-build-system/sbcl)
4427 (arguments
4428 ;; The tests depend on cl-test-more which is now prove. Prove
4429 ;; tests aren't working for some reason.
4430 `(#:tests? #f))
4431 (inputs
4432 `(("sbcl-fast-io" ,sbcl-fast-io)
4433 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4434 (home-page "https://github.com/fukamachi/circular-streams")
4435 (synopsis "Circularly readable streams for Common Lisp")
4436 (description
4437 "Circular-Streams allows you to read streams circularly by wrapping real
4438 streams. Once you reach end-of-file of a stream, it's file position will be
4439 reset to 0 and you're able to read it again.")
4440 (license license:llgpl))))
4441
4442 (define-public cl-circular-streams
4443 (sbcl-package->cl-source-package sbcl-circular-streams))
4444
4445 (define-public ecl-circular-streams
4446 (sbcl-package->ecl-package sbcl-circular-streams))
4447
4448 (define-public sbcl-lack
4449 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4450 (revision "1"))
4451 (package
4452 (name "sbcl-lack")
4453 (version (git-version "0.1.0" revision commit))
4454 (source
4455 (origin
4456 (method git-fetch)
4457 (uri (git-reference
4458 (url "https://github.com/fukamachi/lack")
4459 (commit commit)))
4460 (file-name (git-file-name "lack" version))
4461 (sha256
4462 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4463 (build-system asdf-build-system/sbcl)
4464 (native-inputs
4465 `(("prove" ,sbcl-prove)))
4466 (inputs
4467 `(("circular-streams" ,sbcl-circular-streams)
4468 ("http-body" ,sbcl-http-body)
4469 ("ironclad" ,sbcl-ironclad)
4470 ("local-time" ,sbcl-local-time)
4471 ("quri" ,sbcl-quri)
4472 ("trivial-mimes" ,sbcl-trivial-mimes)))
4473 (arguments
4474 '(#:asd-systems '("lack"
4475 "lack-request"
4476 "lack-response"
4477 "lack-component"
4478 "lack-util"
4479 "lack-middleware-backtrace"
4480 "lack-middleware-static")
4481 #:test-asd-file "t-lack.asd"
4482 ;; XXX: Component :CLACK not found
4483 #:tests? #f))
4484 (home-page "https://github.com/fukamachi/lack")
4485 (synopsis "Lack, the core of Clack")
4486 (description
4487 "Lack is a Common Lisp library which allows web applications to be
4488 constructed of modular components. It was originally a part of Clack, however
4489 it's going to be rewritten as an individual project since Clack v2 with
4490 performance and simplicity in mind.")
4491 (license license:llgpl))))
4492
4493 (define-public cl-lack
4494 (sbcl-package->cl-source-package sbcl-lack))
4495
4496 (define-public ecl-lack
4497 (sbcl-package->ecl-package sbcl-lack))
4498
4499 (define-public sbcl-local-time
4500 (let ((commit "a177eb911c0e8116e2bfceb79049265a884b701b")
4501 (revision "2"))
4502 (package
4503 (name "sbcl-local-time")
4504 (version (git-version "1.0.6" revision commit))
4505 (source
4506 (origin
4507 (method git-fetch)
4508 (uri (git-reference
4509 (url "https://github.com/dlowe-net/local-time")
4510 (commit commit)))
4511 (file-name (git-file-name name version))
4512 (sha256
4513 (base32 "0wld28xx20k0ysgg6akic5lg4vkjd0iyhv86m388xfrv8xh87wii"))))
4514 (build-system asdf-build-system/sbcl)
4515 (native-inputs
4516 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
4517 (home-page "https://common-lisp.net/project/local-time/")
4518 (synopsis "Time manipulation library for Common Lisp")
4519 (description
4520 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4521 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4522 Long Painful History of Time\".")
4523 (license license:expat))))
4524
4525 (define-public cl-local-time
4526 (sbcl-package->cl-source-package sbcl-local-time))
4527
4528 (define-public ecl-local-time
4529 (sbcl-package->ecl-package sbcl-local-time))
4530
4531 (define-public sbcl-trivial-mimes
4532 (let ((commit "a741fc2f567a4f86b853fd4677d75e62c03e51d9")
4533 (revision "2"))
4534 (package
4535 (name "sbcl-trivial-mimes")
4536 (version (git-version "1.1.0" revision commit))
4537 (source
4538 (origin
4539 (method git-fetch)
4540 (uri (git-reference
4541 (url "https://github.com/Shinmera/trivial-mimes")
4542 (commit commit)))
4543 (file-name (git-file-name name version))
4544 (sha256
4545 (base32 "00kcm17q5plpzdj1qwg83ldhxksilgpcdkf3m9azxcdr968xs9di"))))
4546 (build-system asdf-build-system/sbcl)
4547 (native-inputs
4548 `(("stefil" ,sbcl-hu.dwim.stefil)))
4549 (inputs
4550 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
4551 (home-page "https://shinmera.github.io/trivial-mimes/")
4552 (synopsis "Tiny Common Lisp library to detect mime types in files")
4553 (description
4554 "This is a teensy library that provides some functions to determine the
4555 mime-type of a file.")
4556 (license license:zlib))))
4557
4558 (define-public cl-trivial-mimes
4559 (sbcl-package->cl-source-package sbcl-trivial-mimes))
4560
4561 (define-public ecl-trivial-mimes
4562 (sbcl-package->ecl-package sbcl-trivial-mimes))
4563
4564 (define-public sbcl-ningle
4565 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
4566 (revision "1"))
4567 (package
4568 (name "sbcl-ningle")
4569 (version (git-version "0.3.0" revision commit))
4570 (source
4571 (origin
4572 (method git-fetch)
4573 (uri (git-reference
4574 (url "https://github.com/fukamachi/ningle")
4575 (commit commit)))
4576 (file-name (git-file-name name version))
4577 (sha256
4578 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
4579 (build-system asdf-build-system/sbcl)
4580 (arguments
4581 ;; TODO: pull in clack-test
4582 '(#:tests? #f
4583 #:phases
4584 (modify-phases %standard-phases
4585 (delete 'cleanup-files)
4586 (delete 'cleanup)
4587 (add-before 'cleanup 'combine-fasls
4588 (lambda* (#:key outputs #:allow-other-keys)
4589 (let* ((out (assoc-ref outputs "out"))
4590 (lib (string-append out "/lib/sbcl"))
4591 (ningle-path (string-append lib "/ningle"))
4592 (fasl-files (find-files out "\\.fasl$")))
4593 (mkdir-p ningle-path)
4594 (let ((fasl-path (lambda (name)
4595 (string-append ningle-path
4596 "/"
4597 (basename name)
4598 "--system.fasl"))))
4599 (for-each (lambda (file)
4600 (rename-file file
4601 (fasl-path
4602 (basename file ".fasl"))))
4603 fasl-files))
4604 fasl-files)
4605 #t)))))
4606 (native-inputs
4607 `(("sbcl-prove" ,sbcl-prove)))
4608 (inputs
4609 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4610 ("sbcl-myway" ,sbcl-myway)
4611 ("sbcl-lack" ,sbcl-lack)
4612 ("sbcl-alexandria" ,sbcl-alexandria)
4613 ("sbcl-babel" ,sbcl-babel)))
4614 (home-page "https://8arrow.org/ningle/")
4615 (synopsis "Super micro framework for Common Lisp")
4616 (description
4617 "Ningle is a lightweight web application framework for Common Lisp.")
4618 (license license:llgpl))))
4619
4620 (define-public cl-ningle
4621 (sbcl-package->cl-source-package sbcl-ningle))
4622
4623 (define-public ecl-ningle
4624 (sbcl-package->ecl-package sbcl-ningle))
4625
4626 (define-public sbcl-cl-fastcgi
4627 (let ((commit "de8b49b26de9863996ec18db28af8ab7e8ac4e20")
4628 (revision "2"))
4629 (package
4630 (name "sbcl-cl-fastcgi")
4631 (version (git-version "0.2" revision commit))
4632 (source
4633 (origin
4634 (method git-fetch)
4635 (uri (git-reference
4636 (url "https://github.com/KDr2/cl-fastcgi/")
4637 (commit commit)))
4638 (file-name (git-file-name name version))
4639 (sha256
4640 (base32 "0xgmhx766q4nmrvn5z7ag3ikpr9phlh8ypi8b14azshq9lqbq0m7"))))
4641 (build-system asdf-build-system/sbcl)
4642 (inputs
4643 `(("usocket" ,sbcl-usocket)
4644 ("cffi" ,sbcl-cffi)
4645 ("fcgi" ,fcgi)))
4646 (arguments
4647 `(#:phases
4648 (modify-phases %standard-phases
4649 (add-after 'unpack 'fix-paths
4650 (lambda* (#:key inputs #:allow-other-keys)
4651 (substitute* "cl-fastcgi.lisp"
4652 (("\"libfcgi.so\"")
4653 (string-append
4654 "\""
4655 (assoc-ref inputs "fcgi") "/lib/libfcgi.so\""))))))))
4656 (home-page "https://kdr2.com/project/cl-fastcgi.html")
4657 (synopsis "FastCGI wrapper for Common Lisp")
4658 (description
4659 "CL-FastCGI is a generic version of SB-FastCGI, targeting to run on
4660 mostly Common Lisp implementation.")
4661 (license license:bsd-2))))
4662
4663 (define-public cl-fastcgi
4664 (sbcl-package->cl-source-package sbcl-cl-fastcgi))
4665
4666 (define-public ecl-cl-fastcgi
4667 (sbcl-package->ecl-package sbcl-cl-fastcgi))
4668
4669 (define-public sbcl-clack
4670 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
4671 (revision "1"))
4672 (package
4673 (name "sbcl-clack")
4674 (version (git-version "2.0.0" revision commit))
4675 (source
4676 (origin
4677 (method git-fetch)
4678 (uri (git-reference
4679 (url "https://github.com/fukamachi/clack")
4680 (commit commit)))
4681 (file-name (git-file-name name version))
4682 (sha256
4683 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
4684 (build-system asdf-build-system/sbcl)
4685 (inputs
4686 `(("alexandria" ,sbcl-alexandria)
4687 ("bordeaux-threads" ,sbcl-bordeaux-threads)
4688 ("cl-fastcgi" ,sbcl-cl-fastcgi)
4689 ("flexi-streams" ,sbcl-flexi-streams)
4690 ("hunchentoot" ,sbcl-hunchentoot)
4691 ("lack" ,sbcl-lack)
4692 ("split-sequence" ,sbcl-split-sequence)
4693 ("usocket" ,sbcl-usocket)
4694 ("quri" ,sbcl-quri)))
4695 (arguments
4696 '(#:asd-systems '("clack"
4697 "clack-handler-fcgi"
4698 "clack-socket"
4699 "clack-handler-hunchentoot")))
4700 (home-page "https://github.com/fukamachi/clack")
4701 (synopsis "Web Application Environment for Common Lisp")
4702 (description
4703 "Clack is a web application environment for Common Lisp inspired by
4704 Python's WSGI and Ruby's Rack.")
4705 (license license:llgpl))))
4706
4707 (define-public cl-clack
4708 (sbcl-package->cl-source-package sbcl-clack))
4709
4710 (define-public ecl-clack
4711 (sbcl-package->ecl-package sbcl-clack))
4712
4713 (define-public sbcl-cl-log
4714 (let ((commit "8f4b766d51e02245c310526cf1e4534ce634f837")
4715 (revision "1"))
4716 (package
4717 (name "sbcl-cl-log")
4718 (version "1.0.1")
4719 (source
4720 (origin
4721 (method git-fetch)
4722 (uri (git-reference
4723 (url "https://github.com/nicklevine/cl-log")
4724 (commit commit)))
4725 (sha256
4726 (base32 "1r3z9swy1b59swvaa5b97is9ysrfmjvjjhhw56p7p5hqg93b92ak"))
4727 (file-name (git-file-name "cl-log" version))))
4728 (build-system asdf-build-system/sbcl)
4729 (synopsis "Common Lisp general purpose logging utility")
4730 (description "CL-LOG is a general purpose logging utility, loosely modelled
4731 in some respects after Gary King's Log5. Its features include: logging to
4732 several destinations at once, via \"messengers\", each messenger is tailored to
4733 accept some log messages and reject others, and this tailoring can be changed
4734 on-the-fly, very rapid processing of messages which are rejected by all
4735 messengers, fully independent use of the utility by several different
4736 sub-systems in an application, support for messengers which cl:format text to a
4737 stream, support for messengers which do not invoke cl:format, timestamps in
4738 theory accurate to internal-time-units-per-second.")
4739 (home-page "https://github.com/nicklevine/cl-log")
4740 (license license:expat))))
4741
4742 (define-public cl-log
4743 (sbcl-package->cl-source-package sbcl-cl-log))
4744
4745 (define-public ecl-cl-log
4746 (sbcl-package->ecl-package sbcl-cl-log))
4747
4748 (define-public sbcl-log4cl
4749 (let ((commit "8c48d6f41d3a1475d0a91eed0638b9eecc398e35")
4750 (revision "1"))
4751 (package
4752 (name "sbcl-log4cl")
4753 (version (git-version "1.1.3" revision commit))
4754 (source
4755 (origin
4756 (method git-fetch)
4757 (uri (git-reference
4758 (url "https://github.com/sharplispers/log4cl")
4759 (commit commit)))
4760 (file-name (git-file-name "log4cl" version))
4761 (sha256
4762 (base32 "0166d9aip366pbpdk5gsi2f6xad6q61lssxgbrypa8zslwjn8736"))))
4763 (build-system asdf-build-system/sbcl)
4764 (native-inputs
4765 `(("stefil" ,sbcl-stefil)))
4766 (inputs
4767 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
4768 (home-page "https://github.com/7max/log4cl")
4769 (synopsis "Common Lisp logging framework, modeled after Log4J")
4770 (description
4771 "This is a Common Lisp logging framework that can log at various levels
4772 and mix text with expressions.")
4773 (license license:asl2.0))))
4774
4775 (define-public cl-log4cl
4776 (sbcl-package->cl-source-package sbcl-log4cl))
4777
4778 (define-public ecl-log4cl
4779 (sbcl-package->ecl-package sbcl-log4cl))
4780
4781 (define-public sbcl-printv
4782 (let ((commit "646d31978dbbb460fffb160fd65bb2be9a5a434e")
4783 (revision "1"))
4784 (package
4785 (name "sbcl-printv")
4786 (version (git-version "0.1.0" revision commit))
4787 (source
4788 (origin
4789 (method git-fetch)
4790 (uri (git-reference
4791 (url "https://github.com/danlentz/printv")
4792 (commit commit)))
4793 (file-name (git-file-name "printv" version))
4794 (sha256
4795 (base32 "08jvy82abm7qi3wrxh6gvmwg9gy0zzhg4cfqajdwrggbah8mj5a6"))))
4796 (build-system asdf-build-system/sbcl)
4797 (home-page "https://github.com/danlentz/printv")
4798 (synopsis "Common Lisp tracing and debug-logging macro")
4799 (description
4800 "@code{PRINTV} is a \"batteries-included\" tracing and debug-logging
4801 macro for Common Lisp.")
4802 (license license:asl2.0))))
4803
4804 (define-public ecl-printv
4805 (sbcl-package->ecl-package sbcl-printv))
4806
4807 (define-public cl-printv
4808 (sbcl-package->cl-source-package sbcl-printv))
4809
4810 (define-public sbcl-verbose
4811 (let ((commit "c5b7ecd465be61b35af17ef57564697b88397174")
4812 (revision "1"))
4813 (package
4814 (name "sbcl-verbose")
4815 (version (git-version "2.0.0" revision commit))
4816 (source
4817 (origin
4818 (method git-fetch)
4819 (uri (git-reference
4820 (url "https://github.com/Shinmera/verbose/")
4821 (commit commit)))
4822 (file-name (git-file-name "verbose" version))
4823 (sha256
4824 (base32 "0r51ydj5v7afi2jrlscbhxprv13d9vzg5316g1yzwaxc1kzsdsw6"))))
4825 (build-system asdf-build-system/sbcl)
4826 (inputs
4827 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
4828 ("dissect" ,sbcl-dissect)
4829 ("documentation-utils" ,sbcl-documentation-utils)
4830 ("local-time" ,sbcl-local-time)
4831 ("piping" ,sbcl-piping)))
4832 (home-page "https://shinmera.github.io/verbose/")
4833 (synopsis "Logging framework using the piping library")
4834 (description
4835 "This is a Common Lisp library providing logging faciltiy similar to
4836 @code{CL-LOG} and @code{LOG4CL}.")
4837 (license license:zlib))))
4838
4839 (define-public ecl-verbose
4840 (sbcl-package->ecl-package sbcl-verbose))
4841
4842 (define-public cl-verbose
4843 (sbcl-package->cl-source-package sbcl-verbose))
4844
4845 (define-public sbcl-find-port
4846 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
4847 (revision "1"))
4848 (package
4849 (name "sbcl-find-port")
4850 (build-system asdf-build-system/sbcl)
4851 (version "0.1")
4852 (home-page "https://github.com/eudoxia0/find-port")
4853 (source
4854 (origin
4855 (method git-fetch)
4856 (uri (git-reference
4857 (url home-page)
4858 (commit commit)))
4859 (file-name (git-file-name name version))
4860 (sha256
4861 (base32
4862 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
4863 (native-inputs
4864 `(("fiveam" ,sbcl-fiveam)))
4865 (inputs
4866 `(("sbcl-usocket" ,sbcl-usocket)))
4867 (synopsis "Find open ports programmatically in Common Lisp")
4868 (description "This is a small Common Lisp library that finds an open
4869 port within a range.")
4870 (license license:expat))))
4871
4872 (define-public cl-find-port
4873 (sbcl-package->cl-source-package sbcl-find-port))
4874
4875 (define-public ecl-find-port
4876 (sbcl-package->ecl-package sbcl-find-port))
4877
4878 (define-public sbcl-clunit
4879 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
4880 (revision "1"))
4881 (package
4882 (name "sbcl-clunit")
4883 (version (git-version "0.2.3" revision commit))
4884 (source
4885 (origin
4886 (method git-fetch)
4887 (uri (git-reference
4888 (url "https://github.com/tgutu/clunit")
4889 (commit commit)))
4890 (file-name (git-file-name name version))
4891 (sha256
4892 (base32
4893 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
4894 (build-system asdf-build-system/sbcl)
4895 (synopsis "CLUnit is a Common Lisp unit testing framework")
4896 (description
4897 "CLUnit is a Common Lisp unit testing framework. It is designed
4898 to be easy to use so that you can quickly start testing. CLUnit
4899 provides a rich set of features aimed at improving your unit testing
4900 experience.")
4901 (home-page "https://tgutu.github.io/clunit/")
4902 ;; MIT License
4903 (license license:expat))))
4904
4905 (define-public cl-clunit
4906 (sbcl-package->cl-source-package sbcl-clunit))
4907
4908 (define-public ecl-clunit
4909 (sbcl-package->ecl-package sbcl-clunit))
4910
4911 (define-public sbcl-py4cl
4912 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
4913 (revision "1"))
4914 (package
4915 (name "sbcl-py4cl")
4916 (version (git-version "0.0.0" revision commit))
4917 (source
4918 (origin
4919 (method git-fetch)
4920 (uri (git-reference
4921 (url "https://github.com/bendudson/py4cl")
4922 (commit commit)))
4923 (file-name (git-file-name name version))
4924 (sha256
4925 (base32
4926 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
4927 (modules '((guix build utils)))))
4928 (build-system asdf-build-system/sbcl)
4929 (native-inputs
4930 `(("sbcl-clunit" ,sbcl-clunit)))
4931 (inputs
4932 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
4933 (propagated-inputs
4934 ;; This package doesn't do anything without python available
4935 `(("python" ,python)
4936 ;; For multi-dimensional array support
4937 ("python-numpy" ,python-numpy)))
4938 (arguments
4939 '(#:phases
4940 (modify-phases %standard-phases
4941 (add-after 'unpack 'replace-*base-directory*-var
4942 (lambda* (#:key outputs #:allow-other-keys)
4943 ;; In the ASD, the author makes an attempt to
4944 ;; programatically determine the location of the
4945 ;; source-code so lisp can call into "py4cl.py". We can
4946 ;; hard-code this since we know where this file will
4947 ;; reside.
4948 (substitute* "src/callpython.lisp"
4949 (("py4cl/config:\\*base-directory\\*")
4950 (string-append
4951 "\""
4952 (assoc-ref outputs "out")
4953 "/share/common-lisp/sbcl-source/py4cl/"
4954 "\""))))))))
4955 (synopsis "Call python from Common Lisp")
4956 (description
4957 "Py4CL is a bridge between Common Lisp and Python, which enables Common
4958 Lisp to interact with Python code. It uses streams to communicate with a
4959 separate python process, the approach taken by cl4py. This is different to
4960 the CFFI approach used by burgled-batteries, but has the same goal.")
4961 (home-page "https://github.com/bendudson/py4cl")
4962 ;; MIT License
4963 (license license:expat))))
4964
4965 (define-public cl-py4cl
4966 (sbcl-package->cl-source-package sbcl-py4cl))
4967
4968 (define-public ecl-py4cl
4969 (sbcl-package->ecl-package sbcl-py4cl))
4970
4971 (define-public sbcl-parse-declarations
4972 (let ((commit "549aebbfb9403a7fe948654126b9c814f443f4f2")
4973 (revision "1"))
4974 (package
4975 (name "sbcl-parse-declarations")
4976 (version (git-version "1.0.0" revision commit))
4977 (source
4978 (origin
4979 (method git-fetch)
4980 (uri (git-reference
4981 (url (string-append
4982 "https://gitlab.common-lisp.net/parse-declarations/"
4983 "parse-declarations.git"))
4984 (commit commit)))
4985 (file-name (git-file-name name version))
4986 (sha256
4987 (base32 "03g5qks4c59nmxa48pbslxkfh77h8hn8566jddp6m9pl15dzzpxd"))))
4988 (build-system asdf-build-system/sbcl)
4989 (arguments
4990 `(#:asd-systems '("parse-declarations-1.0")))
4991 (home-page "https://common-lisp.net/project/parse-declarations/")
4992 (synopsis "Parse, filter, and build declarations")
4993 (description
4994 "Parse-Declarations is a Common Lisp library to help writing
4995 macros which establish bindings. To be semantically correct, such
4996 macros must take user declarations into account, as these may affect
4997 the bindings they establish. Yet the ANSI standard of Common Lisp does
4998 not provide any operators to work with declarations in a convenient,
4999 high-level way. This library provides such operators.")
5000 ;; MIT License
5001 (license license:expat))))
5002
5003 (define-public cl-parse-declarations
5004 (sbcl-package->cl-source-package sbcl-parse-declarations))
5005
5006 (define-public ecl-parse-declarations
5007 (sbcl-package->ecl-package sbcl-parse-declarations))
5008
5009 (define-public sbcl-cl-quickcheck
5010 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
5011 (revision "1"))
5012 (package
5013 (name "sbcl-cl-quickcheck")
5014 (version (git-version "0.0.4" revision commit))
5015 (source
5016 (origin
5017 (method git-fetch)
5018 (uri (git-reference
5019 (url "https://github.com/mcandre/cl-quickcheck")
5020 (commit commit)))
5021 (file-name (git-file-name name version))
5022 (sha256
5023 (base32
5024 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5025 (build-system asdf-build-system/sbcl)
5026 (synopsis
5027 "Common Lisp port of the QuickCheck unit test framework")
5028 (description
5029 "Common Lisp port of the QuickCheck unit test framework")
5030 (home-page "https://github.com/mcandre/cl-quickcheck")
5031 ;; MIT
5032 (license license:expat))))
5033
5034 (define-public cl-quickcheck
5035 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5036
5037 (define-public ecl-cl-quickcheck
5038 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5039
5040 (define-public sbcl-burgled-batteries3
5041 (let ((commit "f65f454d13bb6c40e17e9ec62e41eb5069e09760")
5042 (revision "2"))
5043 (package
5044 (name "sbcl-burgled-batteries3")
5045 (version (git-version "0.0.0" revision commit))
5046 (source
5047 (origin
5048 (method git-fetch)
5049 (uri (git-reference
5050 (url "https://github.com/snmsts/burgled-batteries3")
5051 (commit commit)))
5052 (file-name (git-file-name name version))
5053 (sha256
5054 (base32
5055 "1nzn7jawrfajyzwfnzrg2cmn9xxadcqh4szbpg0jggkhdkdzz4wa"))))
5056 (build-system asdf-build-system/sbcl)
5057 (arguments
5058 `(#:tests? #f
5059 #:modules (((guix build python-build-system) #:select (python-version))
5060 ,@%asdf-build-system-modules)
5061 #:imported-modules ((guix build python-build-system)
5062 ,@%asdf-build-system-modules)
5063 #:phases
5064 (modify-phases (@ (guix build asdf-build-system) %standard-phases)
5065 (add-after 'unpack 'set-*cpython-include-dir*-var
5066 (lambda* (#:key inputs #:allow-other-keys)
5067 (let ((python (assoc-ref inputs "python")))
5068 (setenv "BB_PYTHON3_INCLUDE_DIR"
5069 (string-append python "/include/python"
5070 (python-version python)))
5071 (setenv "BB_PYTHON3_DYLIB"
5072 (string-append python "/lib/libpython3.so"))
5073 #t)))
5074 (add-after 'unpack 'adjust-for-python-3.8
5075 (lambda _
5076 ;; This method is no longer part of the public API.
5077 (substitute* "ffi-interface.lisp"
5078 ((".*PyEval_ReInitThreads.*")
5079 ""))
5080 #t)))))
5081 (native-inputs
5082 `(("sbcl-cl-fad" ,sbcl-cl-fad)
5083 ("sbcl-lift" ,sbcl-lift)
5084 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5085 (inputs
5086 `(("python" ,python)
5087 ("sbcl-cffi" ,sbcl-cffi)
5088 ("sbcl-alexandria" , sbcl-alexandria)
5089 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5090 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5091 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5092 (description
5093 "This package provides a shim between Python3 (specifically, the
5094 CPython implementation of Python) and Common Lisp.")
5095 (home-page "https://github.com/snmsts/burgled-batteries3")
5096 (license license:expat))))
5097
5098 (define-public cl-burgled-batteries3
5099 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5100
5101 (define-public ecl-burgled-batteries3
5102 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5103
5104 (define-public sbcl-metabang-bind
5105 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5106 (revision "1"))
5107 (package
5108 (name "sbcl-metabang-bind")
5109 (version (git-version "0.8.0" revision commit))
5110 (source
5111 (origin
5112 (method git-fetch)
5113 (uri (git-reference
5114 (url "https://github.com/gwkkwg/metabang-bind")
5115 (commit commit)))
5116 (file-name (git-file-name name version))
5117 (sha256
5118 (base32
5119 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5120 (build-system asdf-build-system/sbcl)
5121 (native-inputs
5122 `(("sbcl-lift" ,sbcl-lift)))
5123 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5124 (description
5125 "Bind extends the idea of of let and destructing to provide a uniform
5126 syntax for all your accessor needs. It combines @code{let},
5127 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5128 editing, property or association-lists, and @code{multiple-value-bind} and a
5129 whole lot more into a single form.")
5130 (home-page "https://common-lisp.net/project/metabang-bind/")
5131 ;; MIT License
5132 (license license:expat))))
5133
5134 (define-public cl-metabang-bind
5135 (sbcl-package->cl-source-package sbcl-metabang-bind))
5136
5137 (define-public ecl-metabang-bind
5138 (sbcl-package->ecl-package sbcl-metabang-bind))
5139
5140 (define-public sbcl-fare-utils
5141 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5142 (revision "1"))
5143 (package
5144 (name "sbcl-fare-utils")
5145 (version (git-version "1.0.0.5" revision commit))
5146 (source
5147 (origin
5148 (method git-fetch)
5149 (uri
5150 (git-reference
5151 (url
5152 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5153 (commit commit)))
5154 (file-name (git-file-name name version))
5155 (sha256
5156 (base32
5157 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5158 (build-system asdf-build-system/sbcl)
5159 (arguments
5160 `(#:test-asd-file "test/fare-utils-test.asd"))
5161 (native-inputs
5162 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5163 (synopsis "Collection of utilities and data structures")
5164 (description
5165 "fare-utils is a small collection of utilities. It contains a lot of
5166 basic everyday functions and macros.")
5167 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5168 ;; MIT License
5169 (license license:expat))))
5170
5171 (define-public cl-fare-utils
5172 (sbcl-package->cl-source-package sbcl-fare-utils))
5173
5174 (define-public ecl-fare-utils
5175 (sbcl-package->ecl-package sbcl-fare-utils))
5176
5177 (define-public sbcl-trivial-utf-8
5178 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5179 (revision "1"))
5180 (package
5181 (name "sbcl-trivial-utf-8")
5182 (version (git-version "0.0.0" revision commit))
5183 (source
5184 (origin
5185 (method git-fetch)
5186 (uri
5187 (git-reference
5188 (url (string-append "https://gitlab.common-lisp.net/"
5189 "trivial-utf-8/trivial-utf-8.git"))
5190 (commit commit)))
5191 (file-name (git-file-name name version))
5192 (sha256
5193 (base32
5194 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5195 (arguments
5196 ;; Guix incorrectly assumes the "8" is part of the version
5197 ;; number and lobs it off.
5198 `(#:asd-systems '("trivial-utf-8")))
5199 (build-system asdf-build-system/sbcl)
5200 (synopsis "UTF-8 input/output library")
5201 (description
5202 "The Babel library solves a similar problem while understanding more
5203 encodings. Trivial UTF-8 was written before Babel existed, but for new
5204 projects you might be better off going with Babel. The one plus that Trivial
5205 UTF-8 has is that it doesn't depend on any other libraries.")
5206 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5207 (license license:bsd-3))))
5208
5209 (define-public cl-trivial-utf-8
5210 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5211
5212 (define-public ecl-trivial-utf-8
5213 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5214
5215 (define-public sbcl-idna
5216 (package
5217 (name "sbcl-idna")
5218 (build-system asdf-build-system/sbcl)
5219 (version "0.2.2")
5220 (home-page "https://github.com/antifuchs/idna")
5221 (source
5222 (origin
5223 (method git-fetch)
5224 (uri (git-reference
5225 (url home-page)
5226 (commit version)))
5227 (file-name (git-file-name name version))
5228 (sha256
5229 (base32
5230 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5231 (inputs
5232 `(("split-sequence" ,sbcl-split-sequence)))
5233 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5234 (description "This Common Lisp library provides string encoding and
5235 decoding routines for IDNA, the International Domain Names in Applications.")
5236 (license license:expat)))
5237
5238 (define-public cl-idna
5239 (sbcl-package->cl-source-package sbcl-idna))
5240
5241 (define-public ecl-idna
5242 (sbcl-package->ecl-package sbcl-idna))
5243
5244 (define-public sbcl-swap-bytes
5245 (package
5246 (name "sbcl-swap-bytes")
5247 (build-system asdf-build-system/sbcl)
5248 (version "1.2")
5249 (home-page "https://github.com/sionescu/swap-bytes")
5250 (source
5251 (origin
5252 (method git-fetch)
5253 (uri (git-reference
5254 (url home-page)
5255 (commit (string-append "v" version))))
5256 (file-name (git-file-name name version))
5257 (sha256
5258 (base32
5259 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
5260 (inputs
5261 `(("trivial-features" ,sbcl-trivial-features)))
5262 (native-inputs
5263 `(("fiveam" ,sbcl-fiveam)))
5264 (synopsis "Efficient endianness conversion for Common Lisp")
5265 (description "This Common Lisp library provides optimized byte-swapping
5266 primitives. The library can change endianness of unsigned integers of length
5267 1/2/4/8. Very useful in implementing various network protocols and file
5268 formats.")
5269 (license license:expat)))
5270
5271 (define-public cl-swap-bytes
5272 (sbcl-package->cl-source-package sbcl-swap-bytes))
5273
5274 (define-public ecl-swap-bytes
5275 (sbcl-package->ecl-package sbcl-swap-bytes))
5276
5277 (define-public sbcl-iolib
5278 ;; Latest release is from June 2017.
5279 (let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
5280 (revision "2"))
5281 (package
5282 (name "sbcl-iolib")
5283 (version (git-version "0.8.3" revision commit))
5284 (home-page "https://github.com/sionescu/iolib")
5285 (source
5286 (origin
5287 (method git-fetch)
5288 (uri (git-reference
5289 (url home-page)
5290 (commit commit)))
5291 (file-name (git-file-name name version))
5292 (sha256
5293 (base32
5294 "1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
5295 (build-system asdf-build-system/sbcl)
5296 (inputs
5297 `(("alexandria" ,sbcl-alexandria)
5298 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5299 ("cffi" ,sbcl-cffi)
5300 ("idna" ,sbcl-idna)
5301 ("libfixposix" ,libfixposix)
5302 ("split-sequence" ,sbcl-split-sequence)
5303 ("swap-bytes" ,sbcl-swap-bytes)))
5304 (arguments
5305 '(#:asd-files '("iolib.asdf.asd"
5306 "iolib.conf.asd"
5307 "iolib.common-lisp.asd"
5308 "iolib.base.asd"
5309 "iolib.asd")
5310 #:phases
5311 (modify-phases %standard-phases
5312 (add-after 'unpack 'fix-paths
5313 (lambda* (#:key inputs #:allow-other-keys)
5314 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5315 (("\\(:default \"libfixposix\"\\)")
5316 (string-append
5317 "(:default \""
5318 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5319 ;; Socket tests need Internet access, disable them.
5320 (substitute* "iolib.asd"
5321 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5322 "")))))))
5323 (synopsis "Common Lisp I/O library")
5324 (description "IOlib is to be a better and more modern I/O library than
5325 the standard Common Lisp library. It contains a socket library, a DNS
5326 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5327 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5328 (license license:expat))))
5329
5330 (define-public cl-iolib
5331 (let ((parent (sbcl-package->cl-source-package sbcl-iolib)))
5332 (package
5333 (inherit parent)
5334 (propagated-inputs
5335 ;; Need header to compile.
5336 `(("libfixposix" ,libfixposix)
5337 ,@(package-propagated-inputs parent))))))
5338
5339 (define-public ecl-iolib
5340 (sbcl-package->ecl-package sbcl-iolib))
5341
5342 (define-public sbcl-ieee-floats
5343 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5344 (revision "1"))
5345 (package
5346 (name "sbcl-ieee-floats")
5347 (build-system asdf-build-system/sbcl)
5348 (version (git-version "20170924" revision commit))
5349 (home-page "https://github.com/marijnh/ieee-floats/")
5350 (source
5351 (origin
5352 (method git-fetch)
5353 (uri (git-reference
5354 (url home-page)
5355 (commit commit)))
5356 (file-name (git-file-name name version))
5357 (sha256
5358 (base32
5359 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5360 (native-inputs
5361 `(("fiveam" ,sbcl-fiveam)))
5362 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5363 (description "This is a Common Lisp library that converts
5364 floating point values to IEEE 754 binary representation.")
5365 (license license:bsd-3))))
5366
5367 (define-public cl-ieee-floats
5368 (sbcl-package->cl-source-package sbcl-ieee-floats))
5369
5370 (define-public ecl-ieee-floats
5371 (sbcl-package->ecl-package sbcl-ieee-floats))
5372
5373 (define sbcl-closure-common
5374 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5375 (revision "1"))
5376 (package
5377 (name "sbcl-closure-common")
5378 (build-system asdf-build-system/sbcl)
5379 (version (git-version "20101006" revision commit))
5380 (home-page "https://common-lisp.net/project/cxml/")
5381 (source
5382 (origin
5383 (method git-fetch)
5384 (uri (git-reference
5385 (url "https://github.com/sharplispers/closure-common")
5386 (commit commit)))
5387 (file-name (git-file-name name version))
5388 (sha256
5389 (base32
5390 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5391 (inputs
5392 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5393 ("babel" ,sbcl-babel)))
5394 (synopsis "Support Common Lisp library for CXML")
5395 (description "Closure-common is an internal helper library. The name
5396 Closure is a reference to the web browser it was originally written for.")
5397 ;; TODO: License?
5398 (license #f))))
5399
5400 (define-public sbcl-cxml
5401 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5402 (revision "1"))
5403 (package
5404 (name "sbcl-cxml")
5405 (version (git-version "0.0.0" revision commit))
5406 (source
5407 (origin
5408 (method git-fetch)
5409 (uri (git-reference
5410 (url "https://github.com/sharplispers/cxml")
5411 (commit commit)))
5412 (file-name (git-file-name name version))
5413 (sha256
5414 (base32
5415 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5416 (build-system asdf-build-system/sbcl)
5417 (inputs
5418 `(("closure-common" ,sbcl-closure-common)
5419 ("puri" ,sbcl-puri)
5420 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5421 (synopsis "Common Lisp XML parser")
5422 (description "CXML implements a namespace-aware, validating XML 1.0
5423 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5424 offered, one SAX-like, the other similar to StAX.")
5425 (home-page "https://common-lisp.net/project/cxml/")
5426 (license license:llgpl))))
5427
5428 (define-public cl-cxml
5429 (sbcl-package->cl-source-package sbcl-cxml))
5430
5431 (define-public ecl-cxml
5432 (sbcl-package->ecl-package sbcl-cxml))
5433
5434 (define-public sbcl-cl-reexport
5435 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5436 (revision "1"))
5437 (package
5438 (name "sbcl-cl-reexport")
5439 (build-system asdf-build-system/sbcl)
5440 (version (git-version "0.1" revision commit))
5441 (home-page "https://github.com/takagi/cl-reexport")
5442 (source
5443 (origin
5444 (method git-fetch)
5445 (uri (git-reference
5446 (url home-page)
5447 (commit commit)))
5448 (file-name (git-file-name name version))
5449 (sha256
5450 (base32
5451 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5452 (inputs
5453 `(("alexandria" ,sbcl-alexandria)))
5454 (arguments
5455 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5456 `(#:tests? #f))
5457 (synopsis "HTTP cookie manager for Common Lisp")
5458 (description "cl-cookie is a Common Lisp library featuring parsing of
5459 cookie headers, cookie creation, cookie jar creation and more.")
5460 (license license:llgpl))))
5461
5462 (define-public cl-reexport
5463 (sbcl-package->cl-source-package sbcl-cl-reexport))
5464
5465 (define-public ecl-cl-reexport
5466 (sbcl-package->ecl-package sbcl-cl-reexport))
5467
5468 (define-public sbcl-cl-cookie
5469 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5470 (revision "1"))
5471 (package
5472 (name "sbcl-cl-cookie")
5473 (build-system asdf-build-system/sbcl)
5474 (version (git-version "0.9.10" revision commit))
5475 (home-page "https://github.com/fukamachi/cl-cookie")
5476 (source
5477 (origin
5478 (method git-fetch)
5479 (uri (git-reference
5480 (url home-page)
5481 (commit commit)))
5482 (file-name (git-file-name name version))
5483 (sha256
5484 (base32
5485 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5486 (inputs
5487 `(("proc-parse" ,sbcl-proc-parse)
5488 ("alexandria" ,sbcl-alexandria)
5489 ("quri" ,sbcl-quri)
5490 ("cl-ppcre" ,sbcl-cl-ppcre)
5491 ("local-time" ,sbcl-local-time)))
5492 (native-inputs
5493 `(("prove" ,sbcl-prove)))
5494 (arguments
5495 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
5496 `(#:tests? #f))
5497 (synopsis "HTTP cookie manager for Common Lisp")
5498 (description "cl-cookie is a Common Lisp library featuring parsing of
5499 cookie headers, cookie creation, cookie jar creation and more.")
5500 (license license:bsd-2))))
5501
5502 (define-public cl-cookie
5503 (sbcl-package->cl-source-package sbcl-cl-cookie))
5504
5505 (define-public ecl-cl-cookie
5506 (sbcl-package->ecl-package sbcl-cl-cookie))
5507
5508 (define-public sbcl-dexador
5509 (let ((commit "953090f04c4d1a9ee6632b90133cdc297b68badc")
5510 (revision "1"))
5511 (package
5512 (name "sbcl-dexador")
5513 (build-system asdf-build-system/sbcl)
5514 (version "0.9.14" )
5515 (home-page "https://github.com/fukamachi/dexador")
5516 (source
5517 (origin
5518 (method git-fetch)
5519 (uri (git-reference
5520 (url home-page)
5521 (commit commit)))
5522 (file-name (git-file-name name version))
5523 (sha256
5524 (base32
5525 "0w18fz3301rpmwc3kwb810czcd24mbf7r1z8vdyc0v5crjfpw3mn"))))
5526 (inputs
5527 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5528 ("babel" ,sbcl-babel)
5529 ("usocket" ,sbcl-usocket)
5530 ("fast-http" ,sbcl-fast-http)
5531 ("quri" ,sbcl-quri)
5532 ("fast-io" ,sbcl-fast-io)
5533 ("chunga" ,sbcl-chunga)
5534 ("cl-ppcre" ,sbcl-cl-ppcre)
5535 ("cl-cookie" ,sbcl-cl-cookie)
5536 ("trivial-mimes" ,sbcl-trivial-mimes)
5537 ("chipz" ,sbcl-chipz)
5538 ("cl-base64" ,sbcl-cl-base64)
5539 ("cl-reexport" ,sbcl-cl-reexport)
5540 ("cl+ssl" ,sbcl-cl+ssl)
5541 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5542 ("alexandria" ,sbcl-alexandria)))
5543 (native-inputs
5544 `(("prove" ,sbcl-prove)
5545 ("lack" ,sbcl-lack)
5546 ("clack" ,sbcl-clack)
5547 ("babel" ,sbcl-babel)
5548 ("alexandria" ,sbcl-alexandria)
5549 ("cl-ppcre" ,sbcl-cl-ppcre)
5550 ("local-time" ,sbcl-local-time)
5551 ("trivial-features" ,sbcl-trivial-features)))
5552 (arguments
5553 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
5554 `(#:tests? #f
5555 #:phases
5556 (modify-phases %standard-phases
5557 (add-after 'unpack 'fix-permissions
5558 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
5559 (synopsis "Yet another HTTP client for Common Lisp")
5560 (description "Dexador is yet another HTTP client for Common Lisp with
5561 neat APIs and connection-pooling. It is meant to supersede Drakma.")
5562 (license license:expat))))
5563
5564 (define-public cl-dexador
5565 (package
5566 (inherit (sbcl-package->cl-source-package sbcl-dexador))
5567 (arguments
5568 `(#:phases
5569 ;; asdf-build-system/source has its own phases and does not inherit
5570 ;; from asdf-build-system/sbcl phases.
5571 (modify-phases %standard-phases/source
5572 ;; Already done in SBCL package.
5573 (delete 'reset-gzip-timestamps))))))
5574
5575 (define-public ecl-dexador
5576 (sbcl-package->ecl-package sbcl-dexador))
5577
5578 (define-public sbcl-lisp-namespace
5579 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
5580 (revision "1"))
5581 (package
5582 (name "sbcl-lisp-namespace")
5583 (build-system asdf-build-system/sbcl)
5584 (version (git-version "0.1" revision commit))
5585 (home-page "https://github.com/guicho271828/lisp-namespace")
5586 (source
5587 (origin
5588 (method git-fetch)
5589 (uri (git-reference
5590 (url home-page)
5591 (commit commit)))
5592 (file-name (git-file-name name version))
5593 (sha256
5594 (base32
5595 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
5596 (inputs
5597 `(("alexandria" ,sbcl-alexandria)))
5598 (native-inputs
5599 `(("fiveam" ,sbcl-fiveam)))
5600 (arguments
5601 `(#:test-asd-file "lisp-namespace.test.asd"
5602 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
5603 #:tests? #f))
5604 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
5605 (description "Common Lisp already has major 2 namespaces, function
5606 namespace and value namespace (or variable namespace), but there are actually
5607 more — e.g., class namespace.
5608 This library offers macros to deal with symbols from any namespace.")
5609 (license license:llgpl))))
5610
5611 (define-public cl-lisp-namespace
5612 (sbcl-package->cl-source-package sbcl-lisp-namespace))
5613
5614 (define-public ecl-lisp-namespace
5615 (sbcl-package->ecl-package sbcl-lisp-namespace))
5616
5617 (define-public sbcl-trivial-cltl2
5618 (let ((commit "8a3bda30dc25d2f65fcf514d0eb6e6db75252c61")
5619 (revision "2"))
5620 (package
5621 (name "sbcl-trivial-cltl2")
5622 (build-system asdf-build-system/sbcl)
5623 (version (git-version "0.1.1" revision commit))
5624 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
5625 (source
5626 (origin
5627 (method git-fetch)
5628 (uri (git-reference
5629 (url home-page)
5630 (commit commit)))
5631 (file-name (git-file-name name version))
5632 (sha256
5633 (base32
5634 "08cnzb9rnczn4pn2zpf0587ny4wjy1mjndy885fz9pw7xrlx37ip"))))
5635 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
5636 (description "This library is a portable compatibility layer around
5637 \"Common Lisp the Language, 2nd
5638 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
5639 and it exports symbols from implementation-specific packages.")
5640 (license license:llgpl))))
5641
5642 (define-public cl-trivial-cltl2
5643 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
5644
5645 (define-public ecl-trivial-cltl2
5646 (sbcl-package->ecl-package sbcl-trivial-cltl2))
5647
5648 (define-public sbcl-introspect-environment
5649 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
5650 (revision "1"))
5651 (package
5652 (name "sbcl-introspect-environment")
5653 (build-system asdf-build-system/sbcl)
5654 (version (git-version "0.1" revision commit))
5655 (home-page "https://github.com/Bike/introspect-environment")
5656 (source
5657 (origin
5658 (method git-fetch)
5659 (uri (git-reference
5660 (url home-page)
5661 (commit commit)))
5662 (file-name (git-file-name name version))
5663 (sha256
5664 (base32
5665 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
5666 (native-inputs
5667 `(("fiveam" ,sbcl-fiveam)))
5668 (synopsis "Common Lisp environment introspection portability layer")
5669 (description "This library is a small interface to portable but
5670 nonstandard introspection of Common Lisp environments. It is intended to
5671 allow a bit more compile-time introspection of environments in Common Lisp.
5672
5673 Quite a bit of information is available at the time a macro or compiler-macro
5674 runs; inlining info, type declarations, that sort of thing. This information
5675 is all standard - any Common Lisp program can @code{(declare (integer x))} and
5676 such.
5677
5678 This info ought to be accessible through the standard @code{&environment}
5679 parameters, but it is not. Several implementations keep the information for
5680 their own purposes but do not make it available to user programs, because
5681 there is no standard mechanism to do so.
5682
5683 This library uses implementation-specific hooks to make information available
5684 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
5685 implementations have implementations of the functions that do as much as they
5686 can and/or provide reasonable defaults.")
5687 (license license:wtfpl2))))
5688
5689 (define-public cl-introspect-environment
5690 (sbcl-package->cl-source-package sbcl-introspect-environment))
5691
5692 (define-public ecl-introspect-environment
5693 (sbcl-package->ecl-package sbcl-introspect-environment))
5694
5695 (define-public sbcl-type-i
5696 (let ((commit "d34440ab4ebf5a46a58deccb35950b15670e3667")
5697 (revision "2"))
5698 (package
5699 (name "sbcl-type-i")
5700 (build-system asdf-build-system/sbcl)
5701 (version (git-version "0.1" revision commit))
5702 (home-page "https://github.com/guicho271828/type-i")
5703 (source
5704 (origin
5705 (method git-fetch)
5706 (uri (git-reference
5707 (url home-page)
5708 (commit commit)))
5709 (file-name (git-file-name name version))
5710 (sha256
5711 (base32
5712 "12wsga0pwjkkr176lnjwkmmlm3ccp0n310sjj9h20lk53iyd0z69"))))
5713 (inputs
5714 `(("alexandria" ,sbcl-alexandria)
5715 ("introspect-environment" ,sbcl-introspect-environment)
5716 ("trivia.trivial" ,sbcl-trivia.trivial)))
5717 (native-inputs
5718 `(("fiveam" ,sbcl-fiveam)))
5719 (arguments
5720 `(#:test-asd-file "type-i.test.asd"))
5721 (synopsis "Type inference utility on unary predicates for Common Lisp")
5722 (description "This library tries to provide a way to detect what kind of
5723 type the given predicate is trying to check. This is different from inferring
5724 the return type of a function.")
5725 (license license:llgpl))))
5726
5727 (define-public cl-type-i
5728 (sbcl-package->cl-source-package sbcl-type-i))
5729
5730 (define-public ecl-type-i
5731 (package
5732 (inherit (sbcl-package->ecl-package sbcl-type-i))
5733 (arguments
5734 ;; The tests get stuck indefinitly
5735 '(#:tests? #f))))
5736
5737 (define-public sbcl-optima
5738 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
5739 (revision "1"))
5740 (package
5741 (name "sbcl-optima")
5742 (build-system asdf-build-system/sbcl)
5743 (version (git-version "1.0" revision commit))
5744 (home-page "https://github.com/m2ym/optima")
5745 (source
5746 (origin
5747 (method git-fetch)
5748 (uri (git-reference
5749 (url home-page)
5750 (commit commit)))
5751 (file-name (git-file-name name version))
5752 (sha256
5753 (base32
5754 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
5755 (inputs
5756 `(("alexandria" ,sbcl-alexandria)
5757 ("closer-mop" ,sbcl-closer-mop)))
5758 (native-inputs
5759 `(("eos" ,sbcl-eos)))
5760 (arguments
5761 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
5762 `(#:tests? #f
5763 #:test-asd-file "optima.test.asd"))
5764 (synopsis "Optimized pattern matching library for Common Lisp")
5765 (description "Optima is a fast pattern matching library which uses
5766 optimizing techniques widely used in the functional programming world.")
5767 (license license:expat))))
5768
5769 (define-public cl-optima
5770 (sbcl-package->cl-source-package sbcl-optima))
5771
5772 (define-public ecl-optima
5773 (sbcl-package->ecl-package sbcl-optima))
5774
5775 (define-public sbcl-fare-quasiquote
5776 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
5777 (revision "1"))
5778 (package
5779 (name "sbcl-fare-quasiquote")
5780 (build-system asdf-build-system/sbcl)
5781 (version (git-version "1.0.1" revision commit))
5782 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
5783 (source
5784 (origin
5785 (method git-fetch)
5786 (uri (git-reference
5787 (url (string-append "https://gitlab.common-lisp.net/frideau/"
5788 "fare-quasiquote.git"))
5789 (commit commit)))
5790 (file-name (git-file-name name version))
5791 (sha256
5792 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
5793 (inputs
5794 `(("fare-utils" ,sbcl-fare-utils)
5795 ("named-readtables" ,sbcl-named-readtables)
5796 ("optima" ,sbcl-optima)))
5797 (arguments
5798 ;; XXX: Circular dependencies: Tests depend on subsystems,
5799 ;; which depend on the main systems.
5800 `(#:tests? #f
5801 #:asd-systems '("fare-quasiquote"
5802 "fare-quasiquote-extras")
5803 #:phases
5804 (modify-phases %standard-phases
5805 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
5806 ;; commits after 1.0.0.5, but ASDF fails to read the
5807 ;; "-REVISION-COMMIT" part generated by Guix.
5808 (add-after 'unpack 'patch-requirement
5809 (lambda _
5810 (substitute* "fare-quasiquote.asd"
5811 (("\\(:version \"fare-utils\" \"1.0.0\"\\)")
5812 "\"fare-utils\""))
5813 (substitute* "fare-quasiquote-optima.asd"
5814 (("\\(:version \"optima\" \"1\\.0\"\\)")
5815 "\"optima\""))
5816 #t)))))
5817 (synopsis "Pattern-matching friendly implementation of quasiquote")
5818 (description "The main purpose of this n+2nd reimplementation of
5819 quasiquote is enable matching of quasiquoted patterns, using Optima or
5820 Trivia.")
5821 (license license:expat))))
5822
5823 (define-public cl-fare-quasiquote
5824 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
5825
5826 (define-public ecl-fare-quasiquote
5827 (sbcl-package->ecl-package sbcl-fare-quasiquote))
5828
5829 ;;; Split the trivia package in two to work around the circular dependency
5830 ;;; between guicho271828/trivia and guicho271828/type-i.
5831 (define-public sbcl-trivia.trivial
5832 (let ((commit "7286d5d2a4f685f1cac8370816f95276c0851111")
5833 (revision "3"))
5834 (package
5835 (name "sbcl-trivia.trivial")
5836 (version (git-version "0.0.0" revision commit))
5837 (source
5838 (origin
5839 (method git-fetch)
5840 (uri (git-reference
5841 (url "https://github.com/guicho271828/trivia")
5842 (commit commit)))
5843 (file-name (git-file-name "trivia" version))
5844 (sha256
5845 (base32
5846 "0ln0sj3jry7kzbmxhnin66kpbqan1wp8wwgdbw4k29afbdblkcca"))))
5847 (build-system asdf-build-system/sbcl)
5848 (inputs
5849 `(("alexandria" ,sbcl-alexandria)
5850 ("closer-mop" ,sbcl-closer-mop)
5851 ("lisp-namespace" ,sbcl-lisp-namespace)
5852 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
5853 (arguments
5854 '(#:phases
5855 (modify-phases %standard-phases
5856 (add-after 'unpack 'fix-build
5857 (lambda _
5858 (for-each delete-file
5859 '("trivia.balland2006.asd"
5860 "trivia.ppcre.asd"
5861 "trivia.quasiquote.asd"
5862 "trivia.cffi.asd"
5863 "trivia.asd"
5864 "trivia.test.asd"))
5865 #t)))))
5866 (synopsis "Pattern matching in Common Lisp")
5867 (description "Trivia is a pattern matching compiler that is compatible
5868 with Optima, another pattern matching library for Common Lisp. It is meant to
5869 be faster and more extensible than Optima.")
5870 (home-page "https://github.com/guicho271828/trivia")
5871 (license license:llgpl))))
5872
5873 (define-public cl-trivia.trivial
5874 (sbcl-package->cl-source-package sbcl-trivia.trivial))
5875
5876 (define-public ecl-trivia.trivial
5877 (sbcl-package->ecl-package sbcl-trivia.trivial))
5878
5879 (define-public sbcl-trivia
5880 (package
5881 (inherit sbcl-trivia.trivial)
5882 (name "sbcl-trivia")
5883 (native-inputs
5884 `(("fiveam" ,sbcl-fiveam)
5885 ("optima" ,sbcl-optima)))
5886 (inputs
5887 `(("alexandria" ,sbcl-alexandria)
5888 ("cffi" ,sbcl-cffi)
5889 ("cl-ppcre" ,sbcl-cl-ppcre)
5890 ("fare-quasiquote" ,sbcl-fare-quasiquote)
5891 ("iterate" ,sbcl-iterate)
5892 ("trivia.trivial" ,sbcl-trivia.trivial)
5893 ("type-i" ,sbcl-type-i)))
5894 (arguments
5895 '(#:asd-systems '("trivia"
5896 "trivia.ppcre"
5897 "trivia.quasiquote"
5898 "trivia.cffi")
5899 #:test-asd-file "trivia.test.asd"
5900 #:phases
5901 (modify-phases %standard-phases
5902 (add-after 'unpack 'fix-build
5903 (lambda _
5904 (for-each delete-file
5905 '("trivia.level0.asd"
5906 "trivia.level1.asd"
5907 "trivia.level2.asd"
5908 "trivia.trivial.asd"))
5909 #t)))))))
5910
5911 (define-public cl-trivia
5912 (sbcl-package->cl-source-package sbcl-trivia))
5913
5914 (define-public ecl-trivia
5915 (sbcl-package->ecl-package sbcl-trivia))
5916
5917 (define-public sbcl-mk-string-metrics
5918 (package
5919 (name "sbcl-mk-string-metrics")
5920 (version "0.1.2")
5921 (home-page "https://github.com/cbaggers/mk-string-metrics/")
5922 (source (origin
5923 (method git-fetch)
5924 (uri (git-reference
5925 (url home-page)
5926 (commit version)))
5927 (sha256
5928 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
5929 (file-name (git-file-name name version))))
5930 (build-system asdf-build-system/sbcl)
5931 (synopsis "Calculate various string metrics efficiently in Common Lisp")
5932 (description "This library implements efficient algorithms that calculate
5933 various string metrics in Common Lisp:
5934
5935 @itemize
5936 @item Damerau-Levenshtein distance
5937 @item Hamming distance
5938 @item Jaccard similarity coefficient
5939 @item Jaro distance
5940 @item Jaro-Winkler distance
5941 @item Levenshtein distance
5942 @item Normalized Damerau-Levenshtein distance
5943 @item Normalized Levenshtein distance
5944 @item Overlap coefficient
5945 @end itemize\n")
5946 (license license:x11)))
5947
5948 (define-public cl-mk-string-metrics
5949 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
5950
5951 (define-public ecl-mk-string-metrics
5952 (sbcl-package->ecl-package sbcl-mk-string-metrics))
5953
5954 (define-public sbcl-cl-str
5955 (package
5956 (name "sbcl-cl-str")
5957 (version "0.19")
5958 (home-page "https://github.com/vindarel/cl-str")
5959 (source (origin
5960 (method git-fetch)
5961 (uri (git-reference
5962 (url home-page)
5963 (commit version)))
5964 (sha256
5965 (base32 "1jyza2jhn7w6fl4w87pv0m87z5ia48m6dqw12k0mdh7l3mgjq839"))
5966 (file-name (git-file-name name version))))
5967 (build-system asdf-build-system/sbcl)
5968 (inputs
5969 `(("cl-ppcre" ,sbcl-cl-ppcre)
5970 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
5971 ("cl-change-case" ,sbcl-cl-change-case)))
5972 (native-inputs
5973 `(("prove" ,sbcl-prove)))
5974 (arguments
5975 `(#:asd-systems '("str")
5976 #:test-asd-file "str.test.asd"))
5977 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
5978 (description "A modern and consistent Common Lisp string manipulation
5979 library that focuses on modernity, simplicity and discoverability:
5980 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
5981 @code{str:concat strings} instead of an unusual format construct; one
5982 discoverable library instead of many; consistency and composability, where
5983 @code{s} is always the last argument, which makes it easier to feed pipes and
5984 arrows.")
5985 (license license:expat)))
5986
5987 (define-public cl-str
5988 (sbcl-package->cl-source-package sbcl-cl-str))
5989
5990 (define-public ecl-cl-str
5991 (sbcl-package->ecl-package sbcl-cl-str))
5992
5993 (define-public sbcl-cl-xmlspam
5994 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
5995 (package
5996 (name "sbcl-cl-xmlspam")
5997 (build-system asdf-build-system/sbcl)
5998 (version (git-version "0.0.0" "1" commit))
5999 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6000 (source
6001 (origin
6002 (method git-fetch)
6003 (uri (git-reference
6004 (url home-page)
6005 (commit commit)))
6006 (file-name (string-append name "-" version))
6007 (sha256
6008 (base32
6009 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6010 (inputs
6011 `(("cxml" ,sbcl-cxml)
6012 ("cl-ppcre" ,sbcl-cl-ppcre)))
6013 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6014 (description "CXML does an excellent job at parsing XML elements, but what
6015 do you do when you have a XML file that's larger than you want to fit in
6016 memory, and you want to extract some information from it? Writing code to deal
6017 with SAX events, or even using Klacks, quickly becomes tedious.
6018 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6019 to write code that mirrors the structure of the XML that it's parsing. It
6020 also makes it easy to shift paradigms when necessary - the usual Lisp control
6021 constructs can be used interchangeably with pattern matching, and the full
6022 power of CXML is available when necessary.")
6023 (license license:bsd-3))))
6024
6025 (define-public cl-xmlspam
6026 (sbcl-package->cl-source-package sbcl-cl-xmlspam))
6027
6028 (define-public ecl-cl-xmlspam
6029 (sbcl-package->ecl-package sbcl-cl-xmlspam))
6030
6031 (define-public sbcl-dbus
6032 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6033 (revision "1"))
6034 (package
6035 (name "sbcl-dbus")
6036 (version (git-version "20190408" revision commit))
6037 (home-page "https://github.com/death/dbus")
6038 (source
6039 (origin
6040 (method git-fetch)
6041 (uri (git-reference
6042 (url home-page)
6043 (commit commit)))
6044 (file-name (git-file-name name version))
6045 (sha256
6046 (base32
6047 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6048 (build-system asdf-build-system/sbcl)
6049 (inputs
6050 `(("alexandria" ,sbcl-alexandria)
6051 ("trivial-garbage" ,sbcl-trivial-garbage)
6052 ("babel" ,sbcl-babel)
6053 ("iolib" ,sbcl-iolib)
6054 ("ieee-floats" ,sbcl-ieee-floats)
6055 ("flexi-streams" ,sbcl-flexi-streams)
6056 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6057 ("ironclad" ,sbcl-ironclad)))
6058 (synopsis "D-Bus client library for Common Lisp")
6059 (description "This is a Common Lisp library that publishes D-Bus
6060 objects as well as send and notify other objects connected to a bus.")
6061 (license license:bsd-2))))
6062
6063 (define-public cl-dbus
6064 (sbcl-package->cl-source-package sbcl-dbus))
6065
6066 (define-public ecl-dbus
6067 (sbcl-package->ecl-package sbcl-dbus))
6068
6069 (define-public sbcl-cl-hooks
6070 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6071 (revision "1"))
6072 (package
6073 (name "sbcl-cl-hooks")
6074 (build-system asdf-build-system/sbcl)
6075 (version (git-version "0.2.1" revision commit))
6076 (home-page "https://github.com/scymtym/architecture.hooks")
6077 (source
6078 (origin
6079 (method git-fetch)
6080 (uri (git-reference
6081 (url home-page)
6082 (commit commit)))
6083 (file-name (git-file-name name version))
6084 (sha256
6085 (base32
6086 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6087 (inputs
6088 `(("alexandria" ,sbcl-alexandria)
6089 ("let-plus" ,sbcl-let-plus)
6090 ("trivial-garbage" ,sbcl-trivial-garbage)
6091 ("closer-mop" ,sbcl-closer-mop)))
6092 (native-inputs
6093 `(("fiveam" ,sbcl-fiveam)))
6094 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6095 (description "A hook, in the present context, is a certain kind of
6096 extension point in a program that allows interleaving the execution of
6097 arbitrary code with the execution of a the program without introducing any
6098 coupling between the two. Hooks are used extensively in the extensible editor
6099 Emacs.
6100
6101 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6102 possible using the flexible multi-method dispatch mechanism. It may even seem
6103 that the concept of hooks does not provide any benefits over the possibilities
6104 of CLOS. However, there are some differences:
6105
6106 @itemize
6107
6108 @item There can be only one method for each combination of specializers and
6109 qualifiers. As a result this kind of extension point cannot be used by
6110 multiple extensions independently.
6111 @item Removing code previously attached via a @code{:before}, @code{:after} or
6112 @code{:around} method can be cumbersome.
6113 @item There could be other or even multiple extension points besides @code{:before}
6114 and @code{:after} in a single method.
6115 @item Attaching codes to individual objects using eql specializers can be
6116 cumbersome.
6117 @item Introspection of code attached a particular extension point is
6118 cumbersome since this requires enumerating and inspecting the methods of a
6119 generic function.
6120 @end itemize
6121
6122 This library tries to complement some of these weaknesses of method-based
6123 extension-points via the concept of hooks.")
6124 (license license:llgpl))))
6125
6126 (define-public cl-hooks
6127 (sbcl-package->cl-source-package sbcl-cl-hooks))
6128
6129 (define-public ecl-cl-hooks
6130 (sbcl-package->ecl-package sbcl-cl-hooks))
6131
6132 (define-public sbcl-cl-autowrap
6133 (let ((revision "1")
6134 (commit "ae846d6968fc0d000de0c541638929a157f3009e"))
6135 ;; no taged branches
6136 (package
6137 (name "sbcl-cl-autowrap")
6138 (version (git-version "1.0" revision commit))
6139 (source
6140 (origin
6141 (method git-fetch)
6142 (uri (git-reference
6143 (url "https://github.com/rpav/cl-autowrap")
6144 (commit commit)))
6145 (file-name (git-file-name name version))
6146 (sha256
6147 (base32 "1gisldp2zns92kdcaikghm7c38ldy2d884n8bfg0wcjvbz78p3ar"))))
6148 (build-system asdf-build-system/sbcl)
6149 (inputs
6150 `(("alexandria" ,sbcl-alexandria)
6151 ("cffi" ,sbcl-cffi)
6152 ("cl-json" ,sbcl-cl-json)
6153 ("cl-ppcre" ,sbcl-cl-ppcre)
6154 ("defpackage-plus" ,sbcl-defpackage-plus)
6155 ("trivial-features" ,sbcl-trivial-features)))
6156 (home-page "https://github.com/rpav/cl-autowrap")
6157 (synopsis "FFI wrapper generator for Common Lisp")
6158 (description "This is a c2ffi-based wrapper generator for Common Lisp.")
6159 (license license:bsd-2))))
6160
6161 (define-public cl-autowrap
6162 (sbcl-package->cl-source-package sbcl-cl-autowrap))
6163
6164 (define-public ecl-cl-autowrap
6165 (sbcl-package->ecl-package sbcl-cl-autowrap))
6166
6167 (define-public sbcl-s-sysdeps
6168 ;; No release since 2013.
6169 (let ((commit "9aa23bbdceb24bcdbe0e7c39fa1901858f823106")
6170 (revision "2"))
6171 (package
6172 (name "sbcl-s-sysdeps")
6173 (build-system asdf-build-system/sbcl)
6174 (version (git-version "1" revision commit))
6175 (home-page "https://github.com/svenvc/s-sysdeps")
6176 (source
6177 (origin
6178 (method git-fetch)
6179 (uri (git-reference
6180 (url home-page)
6181 (commit commit)))
6182 (file-name (git-file-name name version))
6183 (sha256
6184 (base32
6185 "1fh8r7kf8s3hvqdg6b71b8p7w3v2kkga9bw8j3qqdxhzr6anpm0b"))))
6186 (inputs
6187 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
6188 ("usocket" ,sbcl-usocket)))
6189 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6190 (description "@code{s-sysdeps} is an abstraction layer over platform
6191 dependent functionality. This simple package is used as a building block in a
6192 number of other open source projects.
6193
6194 @code{s-sysdeps} abstracts:
6195
6196 @itemize
6197 @item managing processes,
6198 @item implementing a standard TCP/IP server,
6199 @item opening a client TCP/IP socket stream,
6200 @item working with process locks.
6201 @end itemize\n")
6202 (license license:llgpl))))
6203
6204 (define-public cl-s-sysdeps
6205 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6206
6207 (define-public ecl-s-sysdeps
6208 (sbcl-package->ecl-package sbcl-s-sysdeps))
6209
6210 (define-public sbcl-cl-prevalence
6211 (let ((commit "5a76be036092ed6c18cb695a9e03bce87e21b840")
6212 (revision "4"))
6213 (package
6214 (name "sbcl-cl-prevalence")
6215 (build-system asdf-build-system/sbcl)
6216 (version (git-version "5" revision commit))
6217 (home-page "https://github.com/40ants/cl-prevalence")
6218 (source
6219 (origin
6220 (method git-fetch)
6221 (uri (git-reference
6222 (url home-page)
6223 (commit commit)))
6224 (file-name (git-file-name name version))
6225 (sha256
6226 (base32
6227 "050h6hwv8f16b5v6fzba8zmih92hgaaq27i2x9wv1iib41gbia3r"))))
6228 (inputs
6229 `(("s-sysdeps" ,sbcl-s-sysdeps)
6230 ("s-xml" ,sbcl-s-xml)))
6231 (native-inputs
6232 `(("fiveam" ,sbcl-fiveam)))
6233 (synopsis "Implementation of object prevalence for Common Lisp")
6234 (description "This Common Lisp library implements object prevalence (see
6235 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6236 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6237 classes and cyclic data structures are supported.")
6238 (license license:llgpl))))
6239
6240 (define-public cl-prevalence
6241 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6242
6243 (define-public ecl-cl-prevalence
6244 (sbcl-package->ecl-package sbcl-cl-prevalence))
6245
6246 (define-public sbcl-series
6247 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6248 (revision "1"))
6249 (package
6250 (name "sbcl-series")
6251 (version (git-version "2.2.11" revision commit))
6252 (source
6253 (origin
6254 (method git-fetch)
6255 (uri (git-reference
6256 (url "git://git.code.sf.net/p/series/series")
6257 (commit commit)))
6258 (file-name (git-file-name name version))
6259 (sha256
6260 (base32
6261 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6262 (build-system asdf-build-system/sbcl)
6263 (arguments
6264 ;; Disable the tests, they are apparently buggy and I didn't find
6265 ;; a simple way to make them run and pass.
6266 '(#:tests? #f))
6267 (synopsis "Series data structure for Common Lisp")
6268 (description
6269 "This Common Lisp library provides a series data structure much like
6270 a sequence, with similar kinds of operations. The difference is that in many
6271 situations, operations on series may be composed functionally and yet execute
6272 iteratively, without the need to construct intermediate series values
6273 explicitly. In this manner, series provide both the clarity of a functional
6274 programming style and the efficiency of an iterative programming style.")
6275 (home-page "http://series.sourceforge.net/")
6276 (license license:expat))))
6277
6278 (define-public cl-series
6279 (sbcl-package->cl-source-package sbcl-series))
6280
6281 (define-public ecl-series
6282 (sbcl-package->ecl-package sbcl-series))
6283
6284 (define-public sbcl-periods
6285 (let ((commit "60383dcef88a1ac11f82804ae7a33c361dcd2949")
6286 (revision "2"))
6287 (package
6288 (name "sbcl-periods")
6289 (version (git-version "0.0.2" revision commit))
6290 (source
6291 (origin
6292 (method git-fetch)
6293 (uri (git-reference
6294 (url "https://github.com/jwiegley/periods")
6295 (commit commit)))
6296 (file-name (git-file-name name version))
6297 (sha256
6298 (base32
6299 "1ym2j4an9ig2hl210jg91gpf7xfnp6mlhkw3n9kkdnwiji3ipqlk"))))
6300 (build-system asdf-build-system/sbcl)
6301 (inputs
6302 `(("local-time" ,sbcl-local-time)
6303 ("series" ,sbcl-series)))
6304 (arguments
6305 '(#:asd-systems '("periods"
6306 "periods-series")))
6307 (synopsis "Common Lisp library for manipulating date/time objects")
6308 (description
6309 "Periods is a Common Lisp library providing a set of utilities for
6310 manipulating times, distances between times, and both contiguous and
6311 discontiguous ranges of time.")
6312 (home-page "https://github.com/jwiegley/periods")
6313 (license license:bsd-3))))
6314
6315 (define-public cl-periods
6316 (sbcl-package->cl-source-package sbcl-periods))
6317
6318 (define-public ecl-periods
6319 (sbcl-package->ecl-package sbcl-periods))
6320
6321 (define-public sbcl-metatilities-base
6322 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6323 (revision "1"))
6324 (package
6325 (name "sbcl-metatilities-base")
6326 (version (git-version "0.6.6" revision commit))
6327 (source
6328 (origin
6329 (method git-fetch)
6330 (uri (git-reference
6331 (url "https://github.com/gwkkwg/metatilities-base")
6332 (commit commit)))
6333 (file-name (git-file-name name version))
6334 (sha256
6335 (base32
6336 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6337 (build-system asdf-build-system/sbcl)
6338 (native-inputs
6339 `(("lift" ,sbcl-lift)))
6340 (synopsis "Core of the metatilities Common Lisp library")
6341 (description
6342 "Metatilities-base is the core of the metatilities Common Lisp library
6343 which implements a set of utilities.")
6344 (home-page "https://common-lisp.net/project/metatilities-base/")
6345 (license license:expat))))
6346
6347 (define-public cl-metatilities-base
6348 (sbcl-package->cl-source-package sbcl-metatilities-base))
6349
6350 (define-public ecl-metatilities-base
6351 (sbcl-package->ecl-package sbcl-metatilities-base))
6352
6353 (define-public sbcl-cl-containers
6354 (let ((commit "3d1df53c22403121bffb5d553cf7acb1503850e7")
6355 (revision "3"))
6356 (package
6357 (name "sbcl-cl-containers")
6358 (version (git-version "0.12.1" revision commit))
6359 (source
6360 (origin
6361 (method git-fetch)
6362 (uri (git-reference
6363 (url "https://github.com/gwkkwg/cl-containers")
6364 (commit commit)))
6365 (file-name (git-file-name name version))
6366 (sha256
6367 (base32
6368 "18s6jfq11n8nv9k4biz32pm1s7y9zl054ry1gmdbcf39nisy377y"))))
6369 (build-system asdf-build-system/sbcl)
6370 (native-inputs
6371 `(("lift" ,sbcl-lift)))
6372 (inputs
6373 `(("metatilities-base" ,sbcl-metatilities-base)))
6374 (arguments
6375 '(#:asd-files '("cl-containers.asd")
6376 #:phases
6377 (modify-phases %standard-phases
6378 (add-after 'unpack 'relax-version-checks
6379 (lambda _
6380 (substitute* "cl-containers.asd"
6381 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6382 "\"metatilities-base\""))
6383 (substitute* "cl-containers-test.asd"
6384 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6385 "\"lift\""))
6386 #t)))))
6387 (synopsis "Container library for Common Lisp")
6388 (description
6389 "Common Lisp ships with a set of powerful built in data structures
6390 including the venerable list, full featured arrays, and hash-tables.
6391 CL-containers enhances and builds on these structures by adding containers
6392 that are not available in native Lisp (for example: binary search trees,
6393 red-black trees, sparse arrays and so on), and by providing a standard
6394 interface so that they are simpler to use and so that changing design
6395 decisions becomes significantly easier.")
6396 (home-page "https://common-lisp.net/project/cl-containers/")
6397 (license license:expat))))
6398
6399 (define-public cl-containers
6400 (sbcl-package->cl-source-package sbcl-cl-containers))
6401
6402 (define-public ecl-cl-containers
6403 (sbcl-package->ecl-package sbcl-cl-containers))
6404
6405 (define-public sbcl-xlunit
6406 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6407 (revision "1"))
6408 (package
6409 (name "sbcl-xlunit")
6410 (version (git-version "0.6.3" revision commit))
6411 (source
6412 (origin
6413 (method git-fetch)
6414 (uri (git-reference
6415 (url "http://git.kpe.io/xlunit.git")
6416 (commit commit)))
6417 (file-name (git-file-name name version))
6418 (sha256
6419 (base32
6420 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6421 (build-system asdf-build-system/sbcl)
6422 (arguments
6423 '(#:phases
6424 (modify-phases %standard-phases
6425 (add-after 'unpack 'fix-tests
6426 (lambda _
6427 (substitute* "xlunit.asd"
6428 ((" :force t") ""))
6429 #t)))))
6430 (synopsis "Unit testing package for Common Lisp")
6431 (description
6432 "The XLUnit package is a toolkit for building test suites. It is based
6433 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6434 (home-page "http://quickdocs.org/xlunit/")
6435 (license license:bsd-3))))
6436
6437 (define-public cl-xlunit
6438 (sbcl-package->cl-source-package sbcl-xlunit))
6439
6440 (define-public ecl-xlunit
6441 (sbcl-package->ecl-package sbcl-xlunit))
6442
6443 (define-public sbcl-cambl
6444 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6445 (revision "1"))
6446 (package
6447 (name "sbcl-cambl")
6448 (version (git-version "4.0.0" revision commit))
6449 (source
6450 (origin
6451 (method git-fetch)
6452 (uri (git-reference
6453 (url "https://github.com/jwiegley/cambl")
6454 (commit commit)))
6455 (file-name (git-file-name "cambl" version))
6456 (sha256
6457 (base32 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6458 (build-system asdf-build-system/sbcl)
6459 (native-inputs
6460 `(("xlunit" ,sbcl-xlunit)))
6461 (inputs
6462 `(("alexandria" ,sbcl-alexandria)
6463 ("cl-containers" ,sbcl-cl-containers)
6464 ("local-time" ,sbcl-local-time)
6465 ("periods" ,sbcl-periods)))
6466 (arguments
6467 '(#:asd-files '("fprog.asd"
6468 "cambl.asd")))
6469 (synopsis "Commoditized amounts and balances for Common Lisp")
6470 (description
6471 "CAMBL is a Common Lisp library providing a convenient facility for
6472 working with commoditized values. It does not allow compound units (and so is
6473 not suited for scientific operations) but does work rather nicely for the
6474 purpose of financial calculations.")
6475 (home-page "https://github.com/jwiegley/cambl")
6476 (license license:bsd-3))))
6477
6478 (define-public cl-cambl
6479 (sbcl-package->cl-source-package sbcl-cambl))
6480
6481 (define-public ecl-cambl
6482 (sbcl-package->ecl-package sbcl-cambl))
6483
6484 (define-public sbcl-cl-ledger
6485 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6486 (revision "1"))
6487 (package
6488 (name "sbcl-cl-ledger")
6489 (version (git-version "4.0.0" revision commit))
6490 (source
6491 (origin
6492 (method git-fetch)
6493 (uri (git-reference
6494 (url "https://github.com/ledger/cl-ledger")
6495 (commit commit)))
6496 (file-name (git-file-name name version))
6497 (sha256
6498 (base32
6499 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
6500 (build-system asdf-build-system/sbcl)
6501 (inputs
6502 `(("cambl" ,sbcl-cambl)
6503 ("cl-ppcre" ,sbcl-cl-ppcre)
6504 ("local-time" ,sbcl-local-time)
6505 ("periods" ,sbcl-periods)))
6506 (arguments
6507 '(#:phases
6508 (modify-phases %standard-phases
6509 (add-after 'unpack 'fix-system-definition
6510 (lambda _
6511 (substitute* "cl-ledger.asd"
6512 ((" :build-operation program-op") "")
6513 ((" :build-pathname \"cl-ledger\"") "")
6514 ((" :entry-point \"ledger::main\"") ""))
6515 #t)))))
6516 (synopsis "Common Lisp port of the Ledger accounting system")
6517 (description
6518 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
6519 system.")
6520 (home-page "https://github.com/ledger/cl-ledger")
6521 (license license:bsd-3))))
6522
6523 (define-public cl-ledger
6524 (sbcl-package->cl-source-package sbcl-cl-ledger))
6525
6526 (define-public ecl-cl-ledger
6527 (sbcl-package->ecl-package sbcl-cl-ledger))
6528
6529 (define-public sbcl-bst
6530 (let ((commit "8545aed0d504df2829ad139566feeabe22305388")
6531 (revision "0"))
6532 (package
6533 (name "sbcl-bst")
6534 (version (git-version "2.0" revision commit))
6535 (source
6536 (origin
6537 (method git-fetch)
6538 (uri (git-reference
6539 (url "https://github.com/glv2/bst")
6540 (commit commit)))
6541 (file-name (git-file-name name version))
6542 (sha256
6543 (base32 "18ig7rvxcra69437g0i8sxyv7c5dg26jqnx1rc2f9pxmihdprgk8"))))
6544 (build-system asdf-build-system/sbcl)
6545 (native-inputs
6546 `(("alexandria" ,sbcl-alexandria)
6547 ("fiveam" ,sbcl-fiveam)))
6548 (synopsis "Binary search tree for Common Lisp")
6549 (description
6550 "BST is a Common Lisp library for working with binary search trees that
6551 can contain any kind of values.")
6552 (home-page "https://github.com/glv2/bst")
6553 (license license:gpl3))))
6554
6555 (define-public cl-bst
6556 (sbcl-package->cl-source-package sbcl-bst))
6557
6558 (define-public ecl-bst
6559 (sbcl-package->ecl-package sbcl-bst))
6560
6561 (define-public sbcl-cl-octet-streams
6562 (package
6563 (name "sbcl-cl-octet-streams")
6564 (version "1.2")
6565 (source
6566 (origin
6567 (method git-fetch)
6568 (uri (git-reference
6569 (url "https://github.com/glv2/cl-octet-streams")
6570 (commit (string-append "v" version))))
6571 (file-name (git-file-name name version))
6572 (sha256
6573 (base32 "1hffh98bv4w5yrchagzwqrc43d2p473pvw7ka4kyyvhrr52dk2f8"))))
6574 (build-system asdf-build-system/sbcl)
6575 (native-inputs
6576 `(("fiveam" ,sbcl-fiveam)))
6577 (inputs
6578 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
6579 (synopsis "In-memory octet streams for Common Lisp")
6580 (description
6581 "CL-octet-streams is a library implementing in-memory octet
6582 streams for Common Lisp. It was inspired by the trivial-octet-streams and
6583 cl-plumbing libraries.")
6584 (home-page "https://github.com/glv2/cl-octet-streams")
6585 (license license:gpl3+)))
6586
6587 (define-public cl-octet-streams
6588 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
6589
6590 (define-public ecl-cl-octet-streams
6591 (sbcl-package->ecl-package sbcl-cl-octet-streams))
6592
6593 (define-public sbcl-lzlib
6594 (let ((commit "cad10f5becbcfebb44b9d311a257563778803452")
6595 (revision "2"))
6596 (package
6597 (name "sbcl-lzlib")
6598 (version (git-version "1.1" revision commit))
6599 (source
6600 (origin
6601 (method git-fetch)
6602 (uri (git-reference
6603 (url "https://github.com/glv2/cl-lzlib")
6604 (commit commit)))
6605 (file-name (git-file-name name version))
6606 (sha256
6607 (base32 "09lp7li35h4jkls0448fj1sh6pjslr1w7ranbc4szjr8g0c2bdry"))))
6608 (build-system asdf-build-system/sbcl)
6609 (native-inputs
6610 `(("fiveam" ,sbcl-fiveam)))
6611 (inputs
6612 `(("cffi" ,sbcl-cffi)
6613 ("cl-octet-streams" ,sbcl-cl-octet-streams)
6614 ("lparallel" ,sbcl-lparallel)
6615 ("lzlib" ,lzlib)))
6616 (arguments
6617 '(#:phases
6618 (modify-phases %standard-phases
6619 (add-after 'unpack 'fix-paths
6620 (lambda* (#:key inputs #:allow-other-keys)
6621 (substitute* "src/lzlib.lisp"
6622 (("liblz\\.so")
6623 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
6624 #t)))))
6625 (synopsis "Common Lisp library for lzip (de)compression")
6626 (description
6627 "This Common Lisp library provides functions for lzip (LZMA)
6628 compression/decompression using bindings to the lzlib C library.")
6629 (home-page "https://github.com/glv2/cl-lzlib")
6630 (license license:gpl3+))))
6631
6632 (define-public cl-lzlib
6633 (sbcl-package->cl-source-package sbcl-lzlib))
6634
6635 (define-public ecl-lzlib
6636 (sbcl-package->ecl-package sbcl-lzlib))
6637
6638 (define-public sbcl-chanl
6639 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
6640 (revision "1"))
6641 (package
6642 (name "sbcl-chanl")
6643 (version (git-version "0.4.1" revision commit))
6644 (source
6645 (origin
6646 (method git-fetch)
6647 (uri (git-reference
6648 (url "https://github.com/zkat/chanl")
6649 (commit commit)))
6650 (file-name (git-file-name name version))
6651 (sha256
6652 (base32
6653 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
6654 (build-system asdf-build-system/sbcl)
6655 (native-inputs
6656 `(("fiveam" ,sbcl-fiveam)))
6657 (inputs
6658 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
6659 (synopsis "Portable channel-based concurrency for Common Lisp")
6660 (description "Common Lisp library for channel-based concurrency. In
6661 a nutshell, you create various threads sequentially executing tasks you need
6662 done, and use channel objects to communicate and synchronize the state of these
6663 threads.")
6664 (home-page "https://github.com/zkat/chanl")
6665 (license (list license:expat license:bsd-3)))))
6666
6667 (define-public cl-chanl
6668 (sbcl-package->cl-source-package sbcl-chanl))
6669
6670 (define-public ecl-chanl
6671 (sbcl-package->ecl-package sbcl-chanl))
6672
6673 (define-public sbcl-cl-store
6674 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
6675 (revision "1"))
6676 (package
6677 (name "sbcl-cl-store")
6678 (version (git-version "0.8.11" revision commit))
6679 (source
6680 (origin
6681 (method git-fetch)
6682 (uri (git-reference
6683 (url "https://github.com/skypher/cl-store")
6684 (commit commit)))
6685 (file-name (git-file-name name version))
6686 (sha256
6687 (base32
6688 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
6689 (build-system asdf-build-system/sbcl)
6690 (native-inputs
6691 `(("rt" ,sbcl-rt)))
6692 (synopsis "Common Lisp library to serialize data")
6693 (description
6694 "CL-STORE is a portable serialization package which should give you the
6695 ability to store all Common Lisp data types into streams.")
6696 (home-page "https://www.common-lisp.net/project/cl-store/")
6697 (license license:expat))))
6698
6699 (define-public cl-store
6700 (sbcl-package->cl-source-package sbcl-cl-store))
6701
6702 (define-public ecl-cl-store
6703 (sbcl-package->ecl-package sbcl-cl-store))
6704
6705 (define-public sbcl-specialization-store
6706 (let ((commit "8d39a866a6f24986aad3cc52349e9cb2653496f3")
6707 (revision "1"))
6708 (package
6709 (name "sbcl-specialization-store")
6710 (version (git-version "0.0.5" revision commit))
6711 (source
6712 (origin
6713 (method git-fetch)
6714 (uri (git-reference
6715 (url "https://github.com/markcox80/specialization-store")
6716 (commit commit)))
6717 (file-name (git-file-name "specialization-store" version))
6718 (sha256
6719 (base32 "0r0bgb46q4gy72l78s7djkxq8ibb4bb3yh9brsry5lih7br8lhi0"))))
6720 (build-system asdf-build-system/sbcl)
6721 (native-inputs
6722 `(("fiveam" ,sbcl-fiveam)))
6723 (inputs
6724 `(("alexandria" ,sbcl-alexandria)
6725 ("introspect-environment" ,sbcl-introspect-environment)))
6726 (home-page "https://github.com/markcox80/specialization-store")
6727 (synopsis "Different type of generic function for Common Lisp")
6728 (description
6729 "SPECIALIZATION-STORE system provides a new kind of function, called
6730 a store function, whose behavior depends on the types of objects passed to the
6731 function.")
6732 (license license:bsd-2))))
6733
6734 (define-public ecl-specialization-store
6735 (package
6736 (inherit (sbcl-package->ecl-package sbcl-specialization-store))
6737 (arguments
6738 ;; TODO: Find why the tests get stuck forever; disable them for now.
6739 `(#:tests? #f))))
6740
6741 (define-public cl-specialization-store
6742 (sbcl-package->cl-source-package sbcl-specialization-store))
6743
6744 (define-public sbcl-cl-gobject-introspection
6745 (let ((commit "d0136c8d9ade2560123af1fc55bbf70d2e3db539")
6746 (revision "1"))
6747 (package
6748 (name "sbcl-cl-gobject-introspection")
6749 (version (git-version "0.3" revision commit))
6750 (home-page "https://github.com/andy128k/cl-gobject-introspection")
6751 (source
6752 (origin
6753 (method git-fetch)
6754 (uri (git-reference
6755 (url home-page)
6756 (commit commit)))
6757 (file-name (git-file-name name version))
6758 (sha256
6759 (base32
6760 "0dz0r73pq7yhz2iq2jnkq977awx2zws2qfxdcy33329sys1ii32p"))))
6761 (build-system asdf-build-system/sbcl)
6762 (inputs
6763 `(("alexandria" ,sbcl-alexandria)
6764 ("cffi" ,sbcl-cffi)
6765 ("iterate" ,sbcl-iterate)
6766 ("trivial-garbage" ,sbcl-trivial-garbage)
6767 ("glib" ,glib)
6768 ("gobject-introspection" ,gobject-introspection)))
6769 (native-inputs
6770 `(("fiveam" ,sbcl-fiveam)))
6771 (arguments
6772 '(#:phases
6773 (modify-phases %standard-phases
6774 (add-after 'unpack 'fix-paths
6775 (lambda* (#:key inputs #:allow-other-keys)
6776 (substitute* "src/init.lisp"
6777 (("libgobject-2\\.0\\.so")
6778 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
6779 (("libgirepository-1\\.0\\.so")
6780 (string-append (assoc-ref inputs "gobject-introspection")
6781 "/lib/libgirepository-1.0.so")))
6782 #t)))))
6783 (synopsis "Common Lisp bindings to GObject Introspection")
6784 (description
6785 "This library is a bridge between Common Lisp and GObject
6786 Introspection, which enables Common Lisp programs to access the full interface
6787 of C+GObject libraries without the need of writing dedicated bindings.")
6788 (license (list license:bsd-3
6789 ;; Tests are under a different license.
6790 license:llgpl)))))
6791
6792 (define-public cl-gobject-introspection
6793 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
6794
6795 (define-public ecl-cl-gobject-introspection
6796 (sbcl-package->ecl-package sbcl-cl-gobject-introspection))
6797
6798 (define-public sbcl-cl-slug
6799 (let ((commit "ffb229d10f0d3f7f54e706791725225e200bf749")
6800 (revision "1"))
6801 (package
6802 (name "sbcl-cl-slug")
6803 (version (git-version "0.4.1" revision commit))
6804 (source
6805 (origin
6806 (method git-fetch)
6807 (uri (git-reference
6808 (url "https://github.com/EuAndreh/cl-slug")
6809 (commit commit)))
6810 (file-name (git-file-name "cl-slug" version))
6811 (sha256
6812 (base32 "1asdq6xllmsvfw5fky9wblqcx9isac9jrrlkfl7vyxcq1wxrnflx"))))
6813 (build-system asdf-build-system/sbcl)
6814 (arguments
6815 `(#:asd-files '("cl-slug-test.asd" "cl-slug.asd")
6816 #:asd-systems '("cl-slug-test" "cl-slug")))
6817 (native-inputs
6818 `(("prove" ,sbcl-prove)))
6819 (inputs
6820 `(("ppcre" ,sbcl-cl-ppcre)))
6821 (home-page "https://github.com/EuAndreh/cl-slug")
6822 (synopsis "Multi-language slug formater")
6823 (description
6824 "This is a small Common Lisp library to make slugs, mainly for URIs,
6825 from english and beyond.")
6826 (license license:llgpl))))
6827
6828 (define-public ecl-cl-slug
6829 (sbcl-package->ecl-package sbcl-cl-slug))
6830
6831 (define-public cl-slug
6832 (sbcl-package->cl-source-package sbcl-cl-slug))
6833
6834 (define-public sbcl-string-case
6835 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
6836 (revision "0"))
6837 (package
6838 (name "sbcl-string-case")
6839 (version (git-version "0.0.2" revision commit))
6840 (home-page "https://github.com/pkhuong/string-case")
6841 (source
6842 (origin
6843 (method git-fetch)
6844 (uri (git-reference
6845 (url home-page)
6846 (commit commit)))
6847 (file-name (git-file-name name version))
6848 (sha256
6849 (base32
6850 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
6851 (build-system asdf-build-system/sbcl)
6852 (synopsis "Efficient string= case in Common Lisp")
6853 (description
6854 "@code{string-case} is a Common Lisp macro that generates specialised decision
6855 trees to dispatch on string equality.")
6856 (license license:bsd-3))))
6857
6858 (define-public cl-string-case
6859 (sbcl-package->cl-source-package sbcl-string-case))
6860
6861 (define-public ecl-string-case
6862 (sbcl-package->ecl-package sbcl-string-case))
6863
6864 (define-public sbcl-garbage-pools
6865 (let ((commit "9a7cb7f48b04197c0495df3b6d2e8395ad13f790")
6866 (revision "1"))
6867 (package
6868 (name "sbcl-garbage-pools")
6869 (version (git-version "0.1.2" revision commit))
6870 (source
6871 (origin
6872 (method git-fetch)
6873 (uri (git-reference
6874 (url "https://github.com/archimag/garbage-pools")
6875 (commit commit)))
6876 (file-name (git-file-name name version))
6877 (sha256
6878 (base32 "04jqwr6j138him6wc4nrwjzm4lvyj5j31xqab02nkf8h9hmsf5v1"))))
6879 (build-system asdf-build-system/sbcl)
6880 (home-page "https://github.com/archimag/garbage-pools")
6881 (synopsis "Resource management pools for Common Lisp")
6882 (description "GARBAGE-POOLS is Common Lisp re-implementation of the APR
6883 Pools for resource management.")
6884 (license license:expat))))
6885
6886 (define-public ecl-garbage-pools
6887 (sbcl-package->ecl-package sbcl-garbage-pools))
6888
6889 (define-public cl-garbage-pools
6890 (sbcl-package->cl-source-package sbcl-garbage-pools))
6891
6892 (define-public sbcl-global-vars
6893 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
6894 (revision "0"))
6895 (package
6896 (name "sbcl-global-vars")
6897 (version (git-version "1.0.0" revision commit))
6898 (home-page "https://github.com/lmj/global-vars")
6899 (source
6900 (origin
6901 (method git-fetch)
6902 (uri (git-reference
6903 (url home-page)
6904 (commit commit)))
6905 (file-name (git-file-name name version))
6906 (sha256
6907 (base32
6908 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
6909 (build-system asdf-build-system/sbcl)
6910 (synopsis "Efficient global variables in Common Lisp")
6911 (description
6912 "In Common Lisp, a special variable that is never dynamically bound
6913 typically serves as a stand-in for a global variable. The @code{global-vars}
6914 library provides true global variables that are implemented by some compilers.
6915 An attempt to rebind a global variable properly results in a compiler error.
6916 That is, a global variable cannot be dynamically bound.
6917
6918 Global variables therefore allow us to communicate an intended usage that
6919 differs from special variables. Global variables are also more efficient than
6920 special variables, especially in the presence of threads.")
6921 (license license:expat))))
6922
6923 (define-public cl-global-vars
6924 (sbcl-package->cl-source-package sbcl-global-vars))
6925
6926 (define-public ecl-global-vars
6927 (sbcl-package->ecl-package sbcl-global-vars))
6928
6929 (define-public sbcl-trivial-file-size
6930 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
6931 (revision "0"))
6932 (package
6933 (name "sbcl-trivial-file-size")
6934 (version (git-version "0.0.0" revision commit))
6935 (home-page "https://github.com/ruricolist/trivial-file-size")
6936 (source
6937 (origin
6938 (method git-fetch)
6939 (uri (git-reference
6940 (url home-page)
6941 (commit commit)))
6942 (file-name (git-file-name name version))
6943 (sha256
6944 (base32
6945 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
6946 (build-system asdf-build-system/sbcl)
6947 (native-inputs
6948 `(("fiveam" ,sbcl-fiveam)))
6949 (synopsis "Size of a file in bytes in Common Lisp")
6950 (description
6951 "The canonical way to determine the size of a file in bytes, using Common Lisp,
6952 is to open the file with an element type of (unsigned-byte 8) and then
6953 calculate the length of the stream. This is less than ideal. In most cases
6954 it is better to get the size of the file from its metadata, using a system
6955 call.
6956
6957 This library exports a single function, file-size-in-octets. It returns the
6958 size of a file in bytes, using system calls when possible.")
6959 (license license:expat))))
6960
6961 (define-public cl-trivial-file-size
6962 (sbcl-package->cl-source-package sbcl-trivial-file-size))
6963
6964 (define-public ecl-trivial-file-size
6965 (sbcl-package->ecl-package sbcl-trivial-file-size))
6966
6967 (define-public sbcl-trivial-macroexpand-all
6968 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
6969 (revision "0"))
6970 (package
6971 (name "sbcl-trivial-macroexpand-all")
6972 (version (git-version "0.0.0" revision commit))
6973 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
6974 (source
6975 (origin
6976 (method git-fetch)
6977 (uri (git-reference
6978 (url home-page)
6979 (commit commit)))
6980 (file-name (git-file-name name version))
6981 (sha256
6982 (base32
6983 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
6984 (build-system asdf-build-system/sbcl)
6985 (native-inputs
6986 `(("fiveam" ,sbcl-fiveam)))
6987 (synopsis "Portable macroexpand-all for Common Lisp")
6988 (description
6989 "This library provides a macroexpand-all function that calls the
6990 implementation specific equivalent.")
6991 (license license:unlicense))))
6992
6993 (define-public cl-trivial-macroexpand-all
6994 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
6995
6996 (define-public ecl-trivial-macroexpand-all
6997 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
6998
6999 (define-public sbcl-serapeum
7000 (let ((commit "263f415a350736b44e3878524ff3997e656fca32")
7001 (revision "4"))
7002 (package
7003 (name "sbcl-serapeum")
7004 (version (git-version "0.0.0" revision commit))
7005 (home-page "https://github.com/ruricolist/serapeum")
7006 (source
7007 (origin
7008 (method git-fetch)
7009 (uri (git-reference
7010 (url home-page)
7011 (commit commit)))
7012 (file-name (git-file-name name version))
7013 (sha256
7014 (base32
7015 "1669yidvxq41s3g6hb2jk21bcb5s2bnfsacpyd5b0hdxbmc7knq3"))))
7016 (build-system asdf-build-system/sbcl)
7017 (inputs
7018 `(("alexandria" ,sbcl-alexandria)
7019 ("trivia" ,sbcl-trivia)
7020 ("split-sequence" ,sbcl-split-sequence)
7021 ("string-case" ,sbcl-string-case)
7022 ("parse-number" ,sbcl-parse-number)
7023 ("trivial-garbage" ,sbcl-trivial-garbage)
7024 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7025 ("named-readtables" ,sbcl-named-readtables)
7026 ("fare-quasiquote" ,sbcl-fare-quasiquote)
7027 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7028 ("global-vars" ,sbcl-global-vars)
7029 ("trivial-file-size" ,sbcl-trivial-file-size)
7030 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7031 (native-inputs
7032 `(("fiveam" ,sbcl-fiveam)
7033 ("local-time" ,sbcl-local-time)))
7034 (arguments
7035 '(#:phases
7036 (modify-phases %standard-phases
7037 (add-after 'unpack 'disable-failing-tests
7038 (lambda* (#:key inputs #:allow-other-keys)
7039 (substitute* "serapeum.asd"
7040 ;; Guix does not have Quicklisp, and probably never will.
7041 (("\\(:file \"quicklisp\"\\)") ""))
7042 #t)))))
7043 (synopsis "Common Lisp utility library beyond Alexandria")
7044 (description
7045 "Serapeum is a conservative library of Common Lisp utilities. It is a
7046 supplement, not a competitor, to Alexandria.")
7047 (license license:expat))))
7048
7049 (define-public cl-serapeum
7050 (sbcl-package->cl-source-package sbcl-serapeum))
7051
7052 (define-public ecl-serapeum
7053 (sbcl-package->ecl-package sbcl-serapeum))
7054
7055 (define-public sbcl-arrows
7056 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7057 (revision "0"))
7058 (package
7059 (name "sbcl-arrows")
7060 (version (git-version "0.2.0" revision commit))
7061 (source
7062 (origin
7063 (method git-fetch)
7064 (uri (git-reference
7065 (url "https://gitlab.com/Harleqin/arrows.git")
7066 (commit commit)))
7067 (file-name (git-file-name name version))
7068 (sha256
7069 (base32
7070 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7071 (build-system asdf-build-system/sbcl)
7072 (native-inputs
7073 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7074 (synopsis "Clojure-like arrow macros for Common Lisp")
7075 (description
7076 "This library implements the @code{->} and @code{->>} macros from
7077 Clojure, as well as several expansions on the idea.")
7078 (home-page "https://gitlab.com/Harleqin/arrows")
7079 (license license:public-domain))))
7080
7081 (define-public cl-arrows
7082 (sbcl-package->cl-source-package sbcl-arrows))
7083
7084 (define-public ecl-arrows
7085 (sbcl-package->ecl-package sbcl-arrows))
7086
7087 (define-public sbcl-simple-parallel-tasks
7088 (let ((commit "ce7b60f788d8f68dfb69b24aac54c0e3b63379a6")
7089 (revision "1"))
7090 (package
7091 (name "sbcl-simple-parallel-tasks")
7092 (version (git-version "1.0" revision commit))
7093 (source
7094 (origin
7095 (method git-fetch)
7096 (uri (git-reference
7097 (url "https://github.com/glv2/simple-parallel-tasks")
7098 (commit commit)))
7099 (file-name (git-file-name name version))
7100 (sha256
7101 (base32 "0gvbpyff4siifp3cp86cpr9ksmakn66fx21f3h0hpn647zl07nj7"))))
7102 (build-system asdf-build-system/sbcl)
7103 (native-inputs
7104 `(("fiveam" ,sbcl-fiveam)))
7105 (inputs
7106 `(("chanl" ,sbcl-chanl)))
7107 (synopsis "Common Lisp library to evaluate some forms in parallel")
7108 (description "This is a simple Common Lisp library to evaluate some
7109 forms in parallel.")
7110 (home-page "https://github.com/glv2/simple-parallel-tasks")
7111 (license license:gpl3))))
7112
7113 (define-public cl-simple-parallel-tasks
7114 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7115
7116 (define-public ecl-simple-parallel-tasks
7117 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7118
7119 (define-public sbcl-cl-heap
7120 (package
7121 (name "sbcl-cl-heap")
7122 (version "0.1.6")
7123 (source
7124 (origin
7125 (method url-fetch)
7126 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7127 "cl-heap_" version ".tar.gz"))
7128 (sha256
7129 (base32
7130 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7131 (build-system asdf-build-system/sbcl)
7132 (native-inputs
7133 `(("xlunit" ,sbcl-xlunit)))
7134 (arguments
7135 `(#:test-asd-file "cl-heap-tests.asd"))
7136 (synopsis "Heap and priority queue data structures for Common Lisp")
7137 (description
7138 "CL-HEAP provides various implementations of heap data structures (a
7139 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7140 (home-page "https://common-lisp.net/project/cl-heap/")
7141 (license license:gpl3+)))
7142
7143 (define-public cl-heap
7144 (sbcl-package->cl-source-package sbcl-cl-heap))
7145
7146 (define-public ecl-cl-heap
7147 (sbcl-package->ecl-package sbcl-cl-heap))
7148
7149 (define-public sbcl-curry-compose-reader-macros
7150 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7151 (revision "0"))
7152 (package
7153 (name "sbcl-curry-compose-reader-macros")
7154 (version (git-version "1.0.0" revision commit))
7155 (source
7156 (origin
7157 (method git-fetch)
7158 (uri
7159 (git-reference
7160 (url "https://github.com/eschulte/curry-compose-reader-macros")
7161 (commit commit)))
7162 (file-name (git-file-name name version))
7163 (sha256
7164 (base32
7165 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7166 (build-system asdf-build-system/sbcl)
7167 (inputs
7168 `(("alexandria" ,sbcl-alexandria)
7169 ("named-readtables" ,sbcl-named-readtables)))
7170 (synopsis "Reader macros for partial application and composition")
7171 (description
7172 "This Common Lisp library provides reader macros for concise expression
7173 of function partial application and composition.")
7174 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7175 (license license:public-domain))))
7176
7177 (define-public cl-curry-compose-reader-macros
7178 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7179
7180 (define-public ecl-curry-compose-reader-macros
7181 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7182
7183 (define-public sbcl-yason
7184 (package
7185 (name "sbcl-yason")
7186 (version "0.7.7")
7187 (source
7188 (origin
7189 (method git-fetch)
7190 (uri (git-reference
7191 (url "https://github.com/phmarek/yason")
7192 (commit (string-append "v" version))))
7193 (file-name (git-file-name name version))
7194 (sha256
7195 (base32
7196 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7197 (build-system asdf-build-system/sbcl)
7198 (inputs
7199 `(("alexandria" ,sbcl-alexandria)
7200 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7201 (synopsis "Common Lisp JSON parser/encoder")
7202 (description
7203 "YASON is a Common Lisp library for encoding and decoding data in the
7204 JSON interchange format.")
7205 (home-page "https://github.com/phmarek/yason")
7206 (license license:bsd-3)))
7207
7208 (define-public cl-yason
7209 (sbcl-package->cl-source-package sbcl-yason))
7210
7211 (define-public ecl-yason
7212 (sbcl-package->ecl-package sbcl-yason))
7213
7214 (define-public sbcl-stefil
7215 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7216 (revision "0"))
7217 (package
7218 (name "sbcl-stefil")
7219 (version (git-version "0.1" revision commit))
7220 (source
7221 (origin
7222 (method git-fetch)
7223 (uri (git-reference
7224 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7225 (commit commit)))
7226 (file-name (git-file-name name version))
7227 (sha256
7228 (base32
7229 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7230 (build-system asdf-build-system/sbcl)
7231 (inputs
7232 `(("alexandria" ,sbcl-alexandria)
7233 ("iterate" ,sbcl-iterate)
7234 ("metabang-bind" ,sbcl-metabang-bind)
7235 ("swank" ,sbcl-slime-swank)))
7236 (arguments
7237 '(#:phases
7238 (modify-phases %standard-phases
7239 (add-after 'unpack 'drop-unnecessary-dependency
7240 (lambda _
7241 (substitute* "package.lisp"
7242 ((":stefil-system") ""))
7243 #t)))))
7244 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7245 (synopsis "Simple test framework")
7246 (description
7247 "Stefil is a simple test framework for Common Lisp, with a focus on
7248 interactive development.")
7249 (license license:public-domain))))
7250
7251 (define-public cl-stefil
7252 (sbcl-package->cl-source-package sbcl-stefil))
7253
7254 (define-public ecl-stefil
7255 (sbcl-package->ecl-package sbcl-stefil))
7256
7257 (define-public sbcl-graph
7258 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7259 (revision "0"))
7260 (package
7261 (name "sbcl-graph")
7262 (version (git-version "0.0.0" revision commit))
7263 (source
7264 (origin
7265 (method git-fetch)
7266 (uri
7267 (git-reference
7268 (url "https://github.com/eschulte/graph")
7269 (commit commit)))
7270 (file-name (git-file-name name version))
7271 (sha256
7272 (base32
7273 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))))
7274 (build-system asdf-build-system/sbcl)
7275 (native-inputs
7276 `(("stefil" ,sbcl-stefil)))
7277 (inputs
7278 `(("alexandria" ,sbcl-alexandria)
7279 ("cl-heap" ,sbcl-cl-heap)
7280 ("cl-ppcre" ,sbcl-cl-ppcre)
7281 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7282 ("metabang-bind" ,sbcl-metabang-bind)
7283 ("named-readtables" ,sbcl-named-readtables)
7284 ("yason" ,sbcl-yason)))
7285 (arguments
7286 '(#:asd-systems '("graph"
7287 "graph/dot"
7288 "graph/json")))
7289 (synopsis "Graph data structure and algorithms for Common Lisp")
7290 (description
7291 "The GRAPH Common Lisp library provides a data structures to represent
7292 graphs, as well as some graph manipulation and analysis algorithms (shortest
7293 path, maximum flow, minimum spanning tree, etc.).")
7294 (home-page "https://eschulte.github.io/graph/")
7295 (license license:gpl3+))))
7296
7297 (define-public cl-graph
7298 (sbcl-package->cl-source-package sbcl-graph))
7299
7300 (define-public ecl-graph
7301 (sbcl-package->ecl-package sbcl-graph))
7302
7303 (define-public sbcl-trivial-indent
7304 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7305 (revision "0"))
7306 (package
7307 (name "sbcl-trivial-indent")
7308 (version (git-version "1.0.0" revision commit))
7309 (source
7310 (origin
7311 (method git-fetch)
7312 (uri
7313 (git-reference
7314 (url "https://github.com/Shinmera/trivial-indent")
7315 (commit commit)))
7316 (file-name (git-file-name name version))
7317 (sha256
7318 (base32
7319 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7320 (build-system asdf-build-system/sbcl)
7321 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7322 (description
7323 "This library allows you to define custom indentation hints for your
7324 macros if the one recognised by SLIME automatically produces unwanted
7325 results.")
7326 (home-page "https://shinmera.github.io/trivial-indent/")
7327 (license license:zlib))))
7328
7329 (define-public cl-trivial-indent
7330 (sbcl-package->cl-source-package sbcl-trivial-indent))
7331
7332 (define-public ecl-trivial-indent
7333 (sbcl-package->ecl-package sbcl-trivial-indent))
7334
7335 (define-public sbcl-documentation-utils
7336 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7337 (revision "0"))
7338 (package
7339 (name "sbcl-documentation-utils")
7340 (version (git-version "1.2.0" revision commit))
7341 (source
7342 (origin
7343 (method git-fetch)
7344 (uri
7345 (git-reference
7346 (url "https://github.com/Shinmera/documentation-utils")
7347 (commit commit)))
7348 (file-name (git-file-name name version))
7349 (sha256
7350 (base32
7351 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7352 (build-system asdf-build-system/sbcl)
7353 (inputs
7354 `(("trivial-indent" ,sbcl-trivial-indent)))
7355 (synopsis "Few simple tools to document Common Lisp libraries")
7356 (description
7357 "This is a small library to help you with managing the Common Lisp
7358 docstrings for your library.")
7359 (home-page "https://shinmera.github.io/documentation-utils/")
7360 (license license:zlib))))
7361
7362 (define-public cl-documentation-utils
7363 (sbcl-package->cl-source-package sbcl-documentation-utils))
7364
7365 (define-public ecl-documentation-utils
7366 (sbcl-package->ecl-package sbcl-documentation-utils))
7367
7368 (define-public sbcl-documentation-utils-extensions
7369 (let ((commit "f67f8a05d583174662a594b79356b201c1d9d750"))
7370 (package
7371 (name "sbcl-documentation-utils-extensions")
7372 (version (git-version "0.0.0" "1" commit))
7373 (source
7374 (origin
7375 (method git-fetch)
7376 (uri
7377 (git-reference
7378 (url "https://github.com/sirherrbatka/documentation-utils-extensions/")
7379 (commit commit)))
7380 (file-name (git-file-name name version))
7381 (sha256
7382 (base32
7383 "0pn45c9rbxlnhn5nvhqz6kyv0nlirwxpg4j27niwdq80yxzsn51f"))))
7384 (build-system asdf-build-system/sbcl)
7385 (inputs
7386 `(("documentation-utils" ,sbcl-documentation-utils)))
7387 (home-page "https://github.com/sirherrbatka/documentation-utils-extensions")
7388 (synopsis "Set of extensions for documentation-utils")
7389 (description
7390 "Use @code{rich-formatter} to format documentation with sections @code{:syntax},
7391 @code{:arguments}, @code{:examples}, @code{:description}, @code{:returns},
7392 @code{:side-effects}, @code{:thread-safety}, @code{:affected-by},
7393 @code{:see-also} and @code{:notes}. Gather unformatted input by using
7394 @code{rich-aggregating-formatter} and @code{*DOCUMENTATION*} variable. Find
7395 gathered documentation with find-documentation function. Execute code stored
7396 in documentation with @code{execute-documentation}. See the examples in the
7397 @code{src/documentation.lisp} file. See the @code{documentation-utils} system
7398 for more information.")
7399 (license license:expat))))
7400
7401 (define-public cl-documentation-utils-extensions
7402 (sbcl-package->cl-source-package sbcl-documentation-utils-extensions))
7403
7404 (define-public ecl-documentation-utils-extensions
7405 (sbcl-package->ecl-package sbcl-documentation-utils-extensions))
7406
7407 (define-public sbcl-form-fiddle
7408 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7409 (revision "0"))
7410 (package
7411 (name "sbcl-form-fiddle")
7412 (version (git-version "1.1.0" revision commit))
7413 (source
7414 (origin
7415 (method git-fetch)
7416 (uri
7417 (git-reference
7418 (url "https://github.com/Shinmera/form-fiddle")
7419 (commit commit)))
7420 (file-name (git-file-name name version))
7421 (sha256
7422 (base32
7423 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7424 (build-system asdf-build-system/sbcl)
7425 (inputs
7426 `(("documentation-utils" ,sbcl-documentation-utils)))
7427 (synopsis "Utilities to destructure Common Lisp lambda forms")
7428 (description
7429 "Often times we need to destructure a form definition in a Common Lisp
7430 macro. This library provides a set of simple utilities to help with that.")
7431 (home-page "https://shinmera.github.io/form-fiddle/")
7432 (license license:zlib))))
7433
7434 (define-public cl-form-fiddle
7435 (sbcl-package->cl-source-package sbcl-form-fiddle))
7436
7437 (define-public ecl-form-fiddle
7438 (sbcl-package->ecl-package sbcl-form-fiddle))
7439
7440 (define-public sbcl-parachute
7441 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7442 (revision "0"))
7443 (package
7444 (name "sbcl-parachute")
7445 (version (git-version "1.1.1" revision commit))
7446 (source
7447 (origin
7448 (method git-fetch)
7449 (uri
7450 (git-reference
7451 (url "https://github.com/Shinmera/parachute")
7452 (commit commit)))
7453 (file-name (git-file-name name version))
7454 (sha256
7455 (base32
7456 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7457 (build-system asdf-build-system/sbcl)
7458 (inputs
7459 `(("documentation-utils" ,sbcl-documentation-utils)
7460 ("form-fiddle" ,sbcl-form-fiddle)))
7461 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7462 (description
7463 "Parachute is a simple-to-use and extensible testing framework.
7464 In Parachute, things are organised as a bunch of named tests within a package.
7465 Each test can contain a bunch of test forms that make up its body.")
7466 (home-page "https://shinmera.github.io/parachute/")
7467 (license license:zlib))))
7468
7469 (define-public cl-parachute
7470 (sbcl-package->cl-source-package sbcl-parachute))
7471
7472 (define-public ecl-parachute
7473 (sbcl-package->ecl-package sbcl-parachute))
7474
7475 (define-public sbcl-array-utils
7476 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7477 (revision "0"))
7478 (package
7479 (name "sbcl-array-utils")
7480 (version (git-version "1.1.1" revision commit))
7481 (source
7482 (origin
7483 (method git-fetch)
7484 (uri
7485 (git-reference
7486 (url "https://github.com/Shinmera/array-utils")
7487 (commit commit)))
7488 (file-name (git-file-name name version))
7489 (sha256
7490 (base32
7491 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
7492 (build-system asdf-build-system/sbcl)
7493 (native-inputs
7494 `(("parachute" ,sbcl-parachute)))
7495 (inputs
7496 `(("documentation-utils" ,sbcl-documentation-utils)))
7497 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
7498 (description
7499 "A miniature toolkit that contains some useful shifting/popping/pushing
7500 functions for arrays and vectors. Originally from Plump.")
7501 (home-page "https://shinmera.github.io/array-utils/")
7502 (license license:zlib))))
7503
7504 (define-public cl-array-utils
7505 (sbcl-package->cl-source-package sbcl-array-utils))
7506
7507 (define-public ecl-array-utils
7508 (sbcl-package->ecl-package sbcl-array-utils))
7509
7510 (define-public sbcl-plump
7511 (let ((commit "34f890fe46efdebe7bb70d218f1937e98f632bf9")
7512 (revision "1"))
7513 (package
7514 (name "sbcl-plump")
7515 (version (git-version "2.0.0" revision commit))
7516 (source
7517 (origin
7518 (method git-fetch)
7519 (uri
7520 (git-reference
7521 (url "https://github.com/Shinmera/plump")
7522 (commit commit)))
7523 (file-name (git-file-name name version))
7524 (sha256
7525 (base32
7526 "0a0x8wn6vv1ylxcwck12k18gy0a366kdm6ddxxk7yynl4mwnqgkh"))))
7527 (build-system asdf-build-system/sbcl)
7528 (inputs
7529 `(("array-utils" ,sbcl-array-utils)
7530 ("documentation-utils" ,sbcl-documentation-utils)))
7531 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
7532 (description
7533 "Plump is a parser for HTML/XML-like documents, focusing on being
7534 lenient towards invalid markup. It can handle things like invalid attributes,
7535 bad closing tag order, unencoded entities, inexistent tag types, self-closing
7536 tags and so on. It parses documents to a class representation and offers a
7537 small set of DOM functions to manipulate it. It can be extended to parse to
7538 your own classes.")
7539 (home-page "https://shinmera.github.io/plump/")
7540 (license license:zlib))))
7541
7542 (define-public cl-plump
7543 (sbcl-package->cl-source-package sbcl-plump))
7544
7545 (define-public ecl-plump
7546 (sbcl-package->ecl-package sbcl-plump))
7547
7548 ;;; Split the antik package in two to work around the circular dependency
7549 ;;; between antik/antik and antik/gsll.
7550 (define-public sbcl-antik-base
7551 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
7552 (revision "1"))
7553 (package
7554 (name "sbcl-antik-base")
7555 (version (git-version "0.0.0" revision commit))
7556 (source
7557 (origin
7558 (method git-fetch)
7559 (uri (git-reference
7560 (url "https://gitlab.common-lisp.net/antik/antik.git")
7561 (commit commit)))
7562 (file-name (git-file-name name version))
7563 (sha256
7564 (base32
7565 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
7566 (build-system asdf-build-system/sbcl)
7567 (inputs
7568 `(("alexandria" ,sbcl-alexandria)
7569 ("cffi" ,sbcl-cffi)
7570 ("cl-ppcre" ,sbcl-cl-ppcre)
7571 ("drakma" ,sbcl-drakma)
7572 ("fare-utils" ,sbcl-fare-utils)
7573 ("iterate" ,sbcl-iterate)
7574 ("metabang-bind" ,sbcl-metabang-bind)
7575 ("named-readtables" ,sbcl-named-readtables)
7576 ("split-sequence" ,sbcl-split-sequence)
7577 ("static-vectors" ,sbcl-static-vectors)
7578 ("trivial-garbage" ,sbcl-trivial-garbage)
7579 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
7580 (native-inputs
7581 `(("lisp-unit" ,sbcl-lisp-unit)))
7582 (arguments
7583 '(#:asd-systems '("antik-base"
7584 "foreign-array")
7585 #:phases
7586 (modify-phases %standard-phases
7587 (add-after 'unpack 'fix-build
7588 (lambda _
7589 (for-each delete-file
7590 '("antik.asd"
7591 "physical-dimension.asd"
7592 "science-data.asd"))
7593 #t)))))
7594 (synopsis "Scientific and engineering computation in Common Lisp")
7595 (description
7596 "Antik provides a foundation for scientific and engineering
7597 computation in Common Lisp. It is designed not only to facilitate
7598 numerical computations, but to permit the use of numerical computation
7599 libraries and the interchange of data and procedures, whether
7600 foreign (non-Lisp) or Lisp libraries. It is named after the
7601 Antikythera mechanism, one of the oldest examples of a scientific
7602 computer known.")
7603 (home-page "https://common-lisp.net/project/antik/")
7604 (license license:gpl3))))
7605
7606 (define-public cl-antik-base
7607 (sbcl-package->cl-source-package sbcl-antik-base))
7608
7609 (define-public ecl-antik-base
7610 (let ((pkg (sbcl-package->ecl-package sbcl-antik-base)))
7611 (package
7612 (inherit pkg)
7613 (arguments
7614 (substitute-keyword-arguments (package-arguments pkg)
7615 ((#:phases phases)
7616 `(modify-phases ,phases
7617 (add-after 'unpack 'fix-readtable
7618 (lambda _
7619 (substitute* "input-output/readtable.lisp"
7620 (("#-ccl")
7621 "#-(or ccl ecl)"))
7622 #t)))))))))
7623
7624 (define-public sbcl-gsll
7625 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
7626 (revision "1"))
7627 (package
7628 (name "sbcl-gsll")
7629 (version (git-version "0.0.0" revision commit))
7630 (source
7631 (origin
7632 (method git-fetch)
7633 (uri (git-reference
7634 (url "https://gitlab.common-lisp.net/antik/gsll.git")
7635 (commit commit)))
7636 (file-name (git-file-name name version))
7637 (sha256
7638 (base32
7639 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
7640 (build-system asdf-build-system/sbcl)
7641 (native-inputs
7642 `(("lisp-unit" ,sbcl-lisp-unit)))
7643 (inputs
7644 `(("alexandria" ,sbcl-alexandria)
7645 ("antik-base" ,sbcl-antik-base)
7646 ("cffi" ,sbcl-cffi)
7647 ("gsl" ,gsl)
7648 ("metabang-bind" ,sbcl-metabang-bind)
7649 ("trivial-features" ,sbcl-trivial-features)
7650 ("trivial-garbage" ,sbcl-trivial-garbage)))
7651 (arguments
7652 `(#:tests? #f
7653 #:phases
7654 (modify-phases %standard-phases
7655 (add-after 'unpack 'fix-cffi-paths
7656 (lambda* (#:key inputs #:allow-other-keys)
7657 (substitute* "gsll.asd"
7658 ((":depends-on \\(#:foreign-array")
7659 ":depends-on (#:foreign-array #:cffi-libffi"))
7660 (substitute* "init/init.lisp"
7661 (("libgslcblas.so" all)
7662 (string-append
7663 (assoc-ref inputs "gsl") "/lib/" all)))
7664 (substitute* "init/init.lisp"
7665 (("libgsl.so" all)
7666 (string-append
7667 (assoc-ref inputs "gsl") "/lib/" all))))))))
7668 (synopsis "GNU Scientific Library for Lisp")
7669 (description
7670 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
7671 GNU Scientific Library (GSL) from Common Lisp. This library provides a
7672 full range of common mathematical operations useful to scientific and
7673 engineering applications. The design of the GSLL interface is such
7674 that access to most of the GSL library is possible in a Lisp-natural
7675 way; the intent is that the user not be hampered by the restrictions
7676 of the C language in which GSL has been written. GSLL thus provides
7677 interactive use of GSL for getting quick answers, even for someone not
7678 intending to program in Lisp.")
7679 (home-page "https://common-lisp.net/project/gsll/")
7680 (license license:gpl3))))
7681
7682 (define-public cl-gsll
7683 (sbcl-package->cl-source-package sbcl-gsll))
7684
7685 (define-public ecl-gsll
7686 (sbcl-package->ecl-package sbcl-gsll))
7687
7688 (define-public sbcl-antik
7689 (package
7690 (inherit sbcl-antik-base)
7691 (name "sbcl-antik")
7692 (inputs
7693 `(("antik-base" ,sbcl-antik-base)
7694 ("gsll" ,sbcl-gsll)))
7695 (arguments
7696 '(#:asd-systems '("antik"
7697 "science-data")
7698 #:phases
7699 (modify-phases %standard-phases
7700 (add-after 'unpack 'fix-build
7701 (lambda _
7702 (for-each delete-file
7703 '("antik-base.asd"
7704 "foreign-array.asd"))
7705 #t)))))))
7706
7707 (define-public cl-antik
7708 (sbcl-package->cl-source-package sbcl-antik))
7709
7710 (define-public sbcl-cl-interpol
7711 (let ((commit "1fd288d861db85bc4677cff3cdd6af75fda1afb4")
7712 (revision "1"))
7713 (package
7714 (name "sbcl-cl-interpol")
7715 (version (git-version "0.2.6" revision commit))
7716 (source
7717 (origin
7718 (method git-fetch)
7719 (uri (git-reference
7720 (url "https://github.com/edicl/cl-interpol")
7721 (commit commit)))
7722 (file-name (git-file-name name version))
7723 (sha256
7724 (base32
7725 "1hnikak52hmcq1r5f616m6qq1108qnkw80pja950nv1fq5p0ppjn"))))
7726 (build-system asdf-build-system/sbcl)
7727 (inputs
7728 `(("cl-unicode" ,sbcl-cl-unicode)
7729 ("named-readtables" ,sbcl-named-readtables)))
7730 (native-inputs
7731 `(("flexi-streams" ,sbcl-flexi-streams)))
7732 (synopsis "String interpolation for Common Lisp")
7733 (description
7734 "CL-INTERPOL is a library for Common Lisp which modifies the
7735 reader so that you can have interpolation within strings similar to
7736 Perl or Unix Shell scripts. It also provides various ways to insert
7737 arbitrary characters into literal strings even if your editor/IDE
7738 doesn't support them.")
7739 (home-page "https://edicl.github.io/cl-interpol/")
7740 (license license:bsd-3))))
7741
7742 (define-public cl-interpol
7743 (sbcl-package->cl-source-package sbcl-cl-interpol))
7744
7745 (define-public ecl-cl-interpol
7746 (sbcl-package->ecl-package sbcl-cl-interpol))
7747
7748 (define-public sbcl-symbol-munger
7749 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
7750 (revision "1"))
7751 (package
7752 (name "sbcl-symbol-munger")
7753 (version (git-version "0.0.1" revision commit))
7754 (source
7755 (origin
7756 (method git-fetch)
7757 (uri (git-reference
7758 (url "https://github.com/AccelerationNet/symbol-munger")
7759 (commit commit)))
7760 (file-name (git-file-name name version))
7761 (sha256
7762 (base32
7763 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
7764 (build-system asdf-build-system/sbcl)
7765 (inputs
7766 `(("alexandria" ,sbcl-alexandria)
7767 ("iterate" ,sbcl-iterate)))
7768 (arguments
7769 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7770 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7771 '(#:tests? #f))
7772 (synopsis
7773 "Capitalization and spacing conversion functions for Common Lisp")
7774 (description
7775 "This is a Common Lisp library to change the capitalization and spacing
7776 of a string or a symbol. It can convert to and from Lisp, english, underscore
7777 and camel-case rules.")
7778 (home-page "https://github.com/AccelerationNet/symbol-munger")
7779 ;; The package declares a BSD license, but all of the license
7780 ;; text is MIT.
7781 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
7782 (license license:expat))))
7783
7784 (define-public cl-symbol-munger
7785 (sbcl-package->cl-source-package sbcl-symbol-munger))
7786
7787 (define-public ecl-symbol-munger
7788 (sbcl-package->ecl-package sbcl-symbol-munger))
7789
7790 (define-public sbcl-lisp-unit2
7791 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
7792 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
7793 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
7794 (revision "1"))
7795 (package
7796 (name "sbcl-lisp-unit2")
7797 (version (git-version "0.2.0" revision commit))
7798 (source
7799 (origin
7800 (method git-fetch)
7801 (uri (git-reference
7802 (url "https://github.com/AccelerationNet/lisp-unit2")
7803 (commit commit)))
7804 (file-name (git-file-name name version))
7805 (sha256
7806 (base32
7807 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
7808 (build-system asdf-build-system/sbcl)
7809 (inputs
7810 `(("alexandria" ,sbcl-alexandria)
7811 ("cl-interpol" ,sbcl-cl-interpol)
7812 ("iterate" ,sbcl-iterate)
7813 ("symbol-munger" ,sbcl-symbol-munger)))
7814 (synopsis "Test Framework for Common Lisp")
7815 (description
7816 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
7817 style of JUnit for Java. It is a new version of the lisp-unit library written
7818 by Chris Riesbeck.")
7819 (home-page "https://github.com/AccelerationNet/lisp-unit2")
7820 (license license:expat))))
7821
7822 (define-public cl-lisp-unit2
7823 (sbcl-package->cl-source-package sbcl-lisp-unit2))
7824
7825 (define-public ecl-lisp-unit2
7826 (sbcl-package->ecl-package sbcl-lisp-unit2))
7827
7828 (define-public sbcl-cl-csv
7829 (let ((commit "68ecb5d816545677513d7f6308d9e5e8d2265651")
7830 (revision "2"))
7831 (package
7832 (name "sbcl-cl-csv")
7833 (version (git-version "1.0.6" revision commit))
7834 (source
7835 (origin
7836 (method git-fetch)
7837 (uri (git-reference
7838 (url "https://github.com/AccelerationNet/cl-csv")
7839 (commit commit)))
7840 (file-name (git-file-name name version))
7841 (sha256
7842 (base32
7843 "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"))))
7844 (build-system asdf-build-system/sbcl)
7845 (arguments
7846 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
7847 `(#:tests? #f))
7848 (inputs
7849 `(("alexandria" ,sbcl-alexandria)
7850 ("cl-interpol" ,sbcl-cl-interpol)
7851 ("iterate" ,sbcl-iterate)))
7852 (native-inputs
7853 `(("lisp-unit2" ,sbcl-lisp-unit2)))
7854 (synopsis "Common lisp library for comma-separated values")
7855 (description
7856 "This is a Common Lisp library providing functions to read/write CSV
7857 from/to strings, streams and files.")
7858 (home-page "https://github.com/AccelerationNet/cl-csv")
7859 (license license:bsd-3))))
7860
7861 (define-public cl-csv
7862 (sbcl-package->cl-source-package sbcl-cl-csv))
7863
7864 (define-public ecl-cl-csv
7865 (sbcl-package->ecl-package sbcl-cl-csv))
7866
7867 (define-public sbcl-external-program
7868 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
7869 (revision "1"))
7870 (package
7871 (name "sbcl-external-program")
7872 (version (git-version "0.0.6" revision commit))
7873 (source
7874 (origin
7875 (method git-fetch)
7876 (uri (git-reference
7877 (url "https://github.com/sellout/external-program")
7878 (commit commit)))
7879 (file-name (git-file-name name version))
7880 (sha256
7881 (base32
7882 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
7883 (build-system asdf-build-system/sbcl)
7884 (inputs
7885 `(("trivial-features" ,sbcl-trivial-features)))
7886 (native-inputs
7887 `(("fiveam" ,sbcl-fiveam)))
7888 (synopsis "Common Lisp library for running external programs")
7889 (description
7890 "EXTERNAL-PROGRAM enables running programs outside the Lisp
7891 process. It is an attempt to make the RUN-PROGRAM functionality in
7892 implementations like SBCL and CCL as portable as possible without
7893 sacrificing much in the way of power.")
7894 (home-page "https://github.com/sellout/external-program")
7895 (license license:llgpl))))
7896
7897 (define-public cl-external-program
7898 (sbcl-package->cl-source-package sbcl-external-program))
7899
7900 (define-public ecl-external-program
7901 (sbcl-package->ecl-package sbcl-external-program))
7902
7903 (define-public sbcl-cl-ana
7904 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
7905 (revision "1"))
7906 (package
7907 (name "sbcl-cl-ana")
7908 (version (git-version "0.0.0" revision commit))
7909 (source
7910 (origin
7911 (method git-fetch)
7912 (uri (git-reference
7913 (url "https://github.com/ghollisjr/cl-ana")
7914 (commit commit)))
7915 (file-name (git-file-name name version))
7916 (sha256
7917 (base32 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
7918 (build-system asdf-build-system/sbcl)
7919 (native-inputs
7920 `(("cl-fad" ,sbcl-cl-fad)))
7921 (inputs
7922 `(("alexandria" ,sbcl-alexandria)
7923 ("antik" ,sbcl-antik)
7924 ("cffi" ,sbcl-cffi)
7925 ("cl-csv" ,sbcl-cl-csv)
7926 ("closer-mop" ,sbcl-closer-mop)
7927 ("external-program" ,sbcl-external-program)
7928 ("gsl" ,gsl)
7929 ("gsll" ,sbcl-gsll)
7930 ("hdf5" ,hdf5-parallel-openmpi)
7931 ("iterate" ,sbcl-iterate)
7932 ("libffi" ,libffi)
7933 ("split-sequence" ,sbcl-split-sequence)))
7934 (arguments
7935 `(#:phases
7936 (modify-phases %standard-phases
7937 (add-after 'unpack 'fix-paths
7938 (lambda* (#:key inputs #:allow-other-keys)
7939 (substitute* "hdf-cffi/hdf-cffi.lisp"
7940 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
7941 (string-append (assoc-ref inputs "hdf5")
7942 "/lib/libhdf5.so")))
7943 (substitute* "gsl-cffi/gsl-cffi.lisp"
7944 (("define-foreign-library gsl-cffi" all)
7945 (string-append all " (:unix "
7946 (assoc-ref inputs "gsl")
7947 "/lib/libgsl.so)")))
7948 #t)))))
7949 (synopsis "Common Lisp data analysis library")
7950 (description
7951 "CL-ANA is a data analysis library in Common Lisp providing tabular and
7952 binned data analysis along with nonlinear least squares fitting and
7953 visualization.")
7954 (home-page "https://github.com/ghollisjr/cl-ana")
7955 (license license:gpl3))))
7956
7957 (define-public cl-ana
7958 (sbcl-package->cl-source-package sbcl-cl-ana))
7959
7960 (define-public sbcl-archive
7961 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
7962 (revision "1"))
7963 (package
7964 (name "sbcl-archive")
7965 (version (git-version "0.9" revision commit))
7966 (source (origin
7967 (method git-fetch)
7968 (uri (git-reference
7969 (url "https://github.com/sharplispers/archive")
7970 (commit commit)))
7971 (file-name (git-file-name name version))
7972 (sha256
7973 (base32
7974 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
7975 (build-system asdf-build-system/sbcl)
7976 (inputs
7977 `(("cl-fad" ,sbcl-cl-fad)
7978 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7979 (synopsis "Common Lisp library for tar and cpio archives")
7980 (description
7981 "This is a Common Lisp library to read and write disk-based file
7982 archives such as those generated by the tar and cpio programs on Unix.")
7983 (home-page "https://github.com/sharplispers/archive")
7984 (license license:bsd-3))))
7985
7986 (define-public cl-archive
7987 (sbcl-package->cl-source-package sbcl-archive))
7988
7989 (define-public ecl-archive
7990 (sbcl-package->ecl-package sbcl-archive))
7991
7992 (define-public sbcl-misc-extensions
7993 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
7994 (revision "1"))
7995 (package
7996 (name "sbcl-misc-extensions")
7997 (version (git-version "3.3" revision commit))
7998 (source
7999 (origin
8000 (method git-fetch)
8001 (uri (git-reference
8002 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
8003 (commit commit)))
8004 (file-name (git-file-name name version))
8005 (sha256
8006 (base32
8007 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
8008 (build-system asdf-build-system/sbcl)
8009 (synopsis "Collection of small macros and extensions for Common Lisp")
8010 (description
8011 "This project is intended as a catchall for small, general-purpose
8012 extensions to Common Lisp. It contains:
8013
8014 @itemize
8015 @item @code{new-let}, a macro that combines and generalizes @code{let},
8016 @code{let*} and @code{multiple-value-bind},
8017 @item @code{gmap}, an iteration macro that generalizes @code{map}.
8018 @end itemize\n")
8019 (home-page "https://common-lisp.net/project/misc-extensions/")
8020 (license license:public-domain))))
8021
8022 (define-public cl-misc-extensions
8023 (sbcl-package->cl-source-package sbcl-misc-extensions))
8024
8025 (define-public ecl-misc-extensions
8026 (sbcl-package->ecl-package sbcl-misc-extensions))
8027
8028 (define-public sbcl-mt19937
8029 (package
8030 (name "sbcl-mt19937")
8031 (version "1.1")
8032 (source
8033 (origin
8034 (method url-fetch)
8035 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
8036 "mt19937-latest.tar.gz"))
8037 (sha256
8038 (base32
8039 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
8040 (build-system asdf-build-system/sbcl)
8041 (synopsis "Mersenne Twister pseudo-random number generator")
8042 (description
8043 "MT19937 is a portable Mersenne Twister pseudo-random number generator
8044 for Common Lisp.")
8045 (home-page "https://www.cliki.net/mt19937")
8046 (license license:public-domain)))
8047
8048 (define-public cl-mt19937
8049 (sbcl-package->cl-source-package sbcl-mt19937))
8050
8051 (define-public ecl-mt19937
8052 (sbcl-package->ecl-package sbcl-mt19937))
8053
8054 (define-public sbcl-fset
8055 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
8056 (revision "1"))
8057 (package
8058 (name "sbcl-fset")
8059 (version (git-version "1.3.2" revision commit))
8060 (source
8061 (origin
8062 (method git-fetch)
8063 (uri (git-reference
8064 (url "https://github.com/slburson/fset")
8065 (commit commit)))
8066 (file-name (git-file-name name version))
8067 (sha256
8068 (base32
8069 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
8070 (snippet '(begin
8071 ;; Remove obsolete copy of system definition.
8072 (delete-file "Code/fset.asd")
8073 #t))))
8074 (build-system asdf-build-system/sbcl)
8075 (inputs
8076 `(("misc-extensions" ,sbcl-misc-extensions)
8077 ("mt19937" ,sbcl-mt19937)
8078 ("named-readtables" ,sbcl-named-readtables)))
8079 (synopsis "Functional set-theoretic collections library")
8080 (description
8081 "FSet is a functional set-theoretic collections library for Common Lisp.
8082 Functional means that all update operations return a new collection rather than
8083 modifying an existing one in place. Set-theoretic means that collections may
8084 be nested arbitrarily with no additional programmer effort; for instance, sets
8085 may contain sets, maps may be keyed by sets, etc.")
8086 (home-page "https://common-lisp.net/project/fset/Site/index.html")
8087 (license license:llgpl))))
8088
8089 (define-public cl-fset
8090 (sbcl-package->cl-source-package sbcl-fset))
8091
8092 (define-public ecl-fset
8093 (package
8094 (inherit (sbcl-package->ecl-package sbcl-fset))
8095 (arguments
8096 ;; Tests fails on ECL with "The function FSET::MAKE-CHAR is undefined".
8097 '(#:tests? #f))))
8098
8099 (define-public sbcl-cl-cont
8100 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
8101 (revision "1"))
8102 (package
8103 (name "sbcl-cl-cont")
8104 (version (git-version "0.3.8" revision commit))
8105 (source
8106 (origin
8107 (method git-fetch)
8108 (uri (git-reference
8109 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
8110 (commit commit)))
8111 (file-name (git-file-name name version))
8112 (sha256
8113 (base32
8114 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
8115 (build-system asdf-build-system/sbcl)
8116 (inputs
8117 `(("alexandria" ,sbcl-alexandria)
8118 ("closer-mop" ,sbcl-closer-mop)))
8119 (native-inputs
8120 `(("rt" ,sbcl-rt)))
8121 (synopsis "Delimited continuations for Common Lisp")
8122 (description
8123 "This is a library that implements delimited continuations by
8124 transforming Common Lisp code to continuation passing style.")
8125 (home-page "https://common-lisp.net/project/cl-cont/")
8126 (license license:llgpl))))
8127
8128 (define-public cl-cont
8129 (sbcl-package->cl-source-package sbcl-cl-cont))
8130
8131 (define-public ecl-cl-cont
8132 (sbcl-package->ecl-package sbcl-cl-cont))
8133
8134 (define-public sbcl-cl-coroutine
8135 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
8136 (revision "1"))
8137 (package
8138 (name "sbcl-cl-coroutine")
8139 (version (git-version "0.1" revision commit))
8140 (source
8141 (origin
8142 (method git-fetch)
8143 (uri (git-reference
8144 (url "https://github.com/takagi/cl-coroutine")
8145 (commit commit)))
8146 (file-name (git-file-name name version))
8147 (sha256
8148 (base32
8149 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
8150 (build-system asdf-build-system/sbcl)
8151 (inputs
8152 `(("alexandria" ,sbcl-alexandria)
8153 ("cl-cont" ,sbcl-cl-cont)))
8154 (native-inputs
8155 `(("prove" ,sbcl-prove)))
8156 (arguments
8157 `(;; TODO: Fix the tests. They fail with:
8158 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
8159 #:tests? #f
8160 #:phases
8161 (modify-phases %standard-phases
8162 (add-after 'unpack 'fix-tests
8163 (lambda _
8164 (substitute* "cl-coroutine-test.asd"
8165 (("cl-test-more")
8166 "prove"))
8167 #t)))))
8168 (synopsis "Coroutine library for Common Lisp")
8169 (description
8170 "This is a coroutine library for Common Lisp implemented using the
8171 continuations of the @code{cl-cont} library.")
8172 (home-page "https://github.com/takagi/cl-coroutine")
8173 (license license:llgpl))))
8174
8175 (define-public cl-coroutine
8176 (sbcl-package->cl-source-package sbcl-cl-coroutine))
8177
8178 (define-public ecl-cl-coroutine
8179 (sbcl-package->ecl-package sbcl-cl-coroutine))
8180
8181 (define-public sbcl-vom
8182 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
8183 (revision "1"))
8184 (package
8185 (name "sbcl-vom")
8186 (version (git-version "0.1.4" revision commit))
8187 (source
8188 (origin
8189 (method git-fetch)
8190 (uri (git-reference
8191 (url "https://github.com/orthecreedence/vom")
8192 (commit commit)))
8193 (file-name (git-file-name name version))
8194 (sha256
8195 (base32
8196 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
8197 (build-system asdf-build-system/sbcl)
8198 (synopsis "Tiny logging utility for Common Lisp")
8199 (description
8200 "Vom is a logging library for Common Lisp. It's goal is to be useful
8201 and small. It does not provide a lot of features as other loggers do, but
8202 has a small codebase that's easy to understand and use.")
8203 (home-page "https://github.com/orthecreedence/vom")
8204 (license license:expat))))
8205
8206 (define-public cl-vom
8207 (sbcl-package->cl-source-package sbcl-vom))
8208
8209 (define-public ecl-vom
8210 (sbcl-package->ecl-package sbcl-vom))
8211
8212 (define-public sbcl-cl-libuv
8213 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
8214 (revision "1"))
8215 (package
8216 (name "sbcl-cl-libuv")
8217 (version (git-version "0.1.6" revision commit))
8218 (source
8219 (origin
8220 (method git-fetch)
8221 (uri (git-reference
8222 (url "https://github.com/orthecreedence/cl-libuv")
8223 (commit commit)))
8224 (file-name (git-file-name name version))
8225 (sha256
8226 (base32
8227 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
8228 (build-system asdf-build-system/sbcl)
8229 (inputs
8230 `(("alexandria" ,sbcl-alexandria)
8231 ("cffi" ,sbcl-cffi)
8232 ("libuv" ,libuv)))
8233 (arguments
8234 `(#:phases
8235 (modify-phases %standard-phases
8236 (add-after 'unpack 'fix-paths
8237 (lambda* (#:key inputs #:allow-other-keys)
8238 (substitute* "lib.lisp"
8239 (("/usr/lib/libuv.so")
8240 (string-append (assoc-ref inputs "libuv")
8241 "/lib/libuv.so")))
8242 #t))
8243 (add-after 'fix-paths 'fix-system-definition
8244 (lambda _
8245 (substitute* "cl-libuv.asd"
8246 (("#:cffi #:alexandria")
8247 "#:cffi #:cffi-grovel #:alexandria"))
8248 #t)))))
8249 (synopsis "Common Lisp bindings to libuv")
8250 (description
8251 "This library provides low-level libuv bindings for Common Lisp.")
8252 (home-page "https://github.com/orthecreedence/cl-libuv")
8253 (license license:expat))))
8254
8255 (define-public cl-libuv
8256 (sbcl-package->cl-source-package sbcl-cl-libuv))
8257
8258 (define-public ecl-cl-libuv
8259 (sbcl-package->ecl-package sbcl-cl-libuv))
8260
8261 (define-public sbcl-cl-async
8262 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
8263 (revision "1"))
8264 (package
8265 (name "sbcl-cl-async")
8266 (version (git-version "0.6.1" revision commit))
8267 (source
8268 (origin
8269 (method git-fetch)
8270 (uri (git-reference
8271 (url "https://github.com/orthecreedence/cl-async")
8272 (commit commit)))
8273 (file-name (git-file-name name version))
8274 (sha256
8275 (base32
8276 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
8277 (build-system asdf-build-system/sbcl)
8278 (inputs
8279 `(("babel" ,sbcl-babel)
8280 ("bordeaux-threads" ,sbcl-bordeaux-threads)
8281 ("cffi" ,sbcl-cffi)
8282 ("cl-libuv" ,sbcl-cl-libuv)
8283 ("cl-ppcre" ,sbcl-cl-ppcre)
8284 ("fast-io" ,sbcl-fast-io)
8285 ("openssl" ,openssl)
8286 ("static-vectors" ,sbcl-static-vectors)
8287 ("trivial-features" ,sbcl-trivial-features)
8288 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
8289 ("vom" ,sbcl-vom)))
8290 (arguments
8291 `(#:asd-systems '("cl-async"
8292 "cl-async-repl"
8293 "cl-async-ssl")
8294 #:phases
8295 (modify-phases %standard-phases
8296 (add-after 'unpack 'fix-paths
8297 (lambda* (#:key inputs #:allow-other-keys)
8298 (substitute* "src/ssl/package.lisp"
8299 (("libcrypto\\.so")
8300 (string-append (assoc-ref inputs "openssl")
8301 "/lib/libcrypto.so"))
8302 (("libssl\\.so")
8303 (string-append (assoc-ref inputs "openssl")
8304 "/lib/libssl.so")))
8305 #t)))))
8306 (synopsis "Asynchronous operations for Common Lisp")
8307 (description
8308 "Cl-async is a library for general purpose, non-blocking programming in
8309 Common Lisp. It uses the libuv library as backend.")
8310 (home-page "https://orthecreedence.github.io/cl-async/")
8311 (license license:expat))))
8312
8313 (define-public cl-async
8314 (sbcl-package->cl-source-package sbcl-cl-async))
8315
8316 (define-public ecl-cl-async
8317 (sbcl-package->ecl-package sbcl-cl-async))
8318
8319 (define-public sbcl-blackbird
8320 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
8321 (revision "1"))
8322 (package
8323 (name "sbcl-blackbird")
8324 (version (git-version "0.5.2" revision commit))
8325 (source
8326 (origin
8327 (method git-fetch)
8328 (uri (git-reference
8329 (url "https://github.com/orthecreedence/blackbird")
8330 (commit commit)))
8331 (file-name (git-file-name name version))
8332 (sha256
8333 (base32
8334 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
8335 (build-system asdf-build-system/sbcl)
8336 (inputs
8337 `(("vom" ,sbcl-vom)))
8338 (native-inputs
8339 `(("cl-async" ,sbcl-cl-async)
8340 ("fiveam" ,sbcl-fiveam)))
8341 (synopsis "Promise implementation for Common Lisp")
8342 (description
8343 "This is a standalone promise implementation for Common Lisp. It is
8344 the successor to the now-deprecated cl-async-future project.")
8345 (home-page "https://orthecreedence.github.io/blackbird/")
8346 (license license:expat))))
8347
8348 (define-public cl-blackbird
8349 (sbcl-package->cl-source-package sbcl-blackbird))
8350
8351 (define-public ecl-blackbird
8352 (sbcl-package->ecl-package sbcl-blackbird))
8353
8354 (define-public sbcl-cl-async-future
8355 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
8356 (revision "1"))
8357 (package
8358 (name "sbcl-cl-async-future")
8359 (version (git-version "0.4.4.1" revision commit))
8360 (source
8361 (origin
8362 (method git-fetch)
8363 (uri (git-reference
8364 (url "https://github.com/orthecreedence/cl-async-future")
8365 (commit commit)))
8366 (file-name (git-file-name name version))
8367 (sha256
8368 (base32
8369 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
8370 (build-system asdf-build-system/sbcl)
8371 (inputs
8372 `(("blackbird" ,sbcl-blackbird)))
8373 (native-inputs
8374 `(("cl-async" ,sbcl-cl-async)
8375 ("eos" ,sbcl-eos)))
8376 (synopsis "Futures implementation for Common Lisp")
8377 (description
8378 "This is futures implementation for Common Lisp. It plugs in nicely
8379 to cl-async.")
8380 (home-page "https://orthecreedence.github.io/cl-async/future")
8381 (license license:expat))))
8382
8383 (define-public cl-async-future
8384 (sbcl-package->cl-source-package sbcl-cl-async-future))
8385
8386 (define-public ecl-cl-async-future
8387 (sbcl-package->ecl-package sbcl-cl-async-future))
8388
8389 (define-public sbcl-green-threads
8390 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
8391 (revision "1"))
8392 (package
8393 (name "sbcl-green-threads")
8394 (version (git-version "0.3" revision commit))
8395 (source
8396 (origin
8397 (method git-fetch)
8398 (uri (git-reference
8399 (url "https://github.com/thezerobit/green-threads")
8400 (commit commit)))
8401 (file-name (git-file-name name version))
8402 (sha256
8403 (base32
8404 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
8405 (build-system asdf-build-system/sbcl)
8406 (inputs
8407 `(("cl-async-future" ,sbcl-cl-async-future)
8408 ("cl-cont" ,sbcl-cl-cont)))
8409 (native-inputs
8410 `(("prove" ,sbcl-prove)))
8411 (arguments
8412 `(;; TODO: Fix the tests. They fail with:
8413 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
8414 #:tests? #f
8415 #:phases
8416 (modify-phases %standard-phases
8417 (add-after 'unpack 'fix-tests
8418 (lambda _
8419 (substitute* "green-threads-test.asd"
8420 (("cl-test-more")
8421 "prove"))
8422 #t)))))
8423 (synopsis "Cooperative multitasking library for Common Lisp")
8424 (description
8425 "This library allows for cooperative multitasking with help of cl-cont
8426 for continuations. It tries to mimic the API of bordeaux-threads as much as
8427 possible.")
8428 (home-page "https://github.com/thezerobit/green-threads")
8429 (license license:bsd-3))))
8430
8431 (define-public cl-green-threads
8432 (sbcl-package->cl-source-package sbcl-green-threads))
8433
8434 (define-public ecl-green-threads
8435 (sbcl-package->ecl-package sbcl-green-threads))
8436
8437 (define-public sbcl-cl-base32
8438 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
8439 (revision "1"))
8440 (package
8441 (name "sbcl-cl-base32")
8442 (version (git-version "0.1" revision commit))
8443 (source
8444 (origin
8445 (method git-fetch)
8446 (uri (git-reference
8447 (url "https://github.com/hargettp/cl-base32")
8448 (commit commit)))
8449 (file-name (git-file-name name version))
8450 (sha256
8451 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
8452 (build-system asdf-build-system/sbcl)
8453 (native-inputs
8454 `(("lisp-unit" ,sbcl-lisp-unit)))
8455 (synopsis "Common Lisp library for base32 encoding and decoding")
8456 (description
8457 "This package provides functions for base32 encoding and decoding as
8458 defined in RFC4648.")
8459 (home-page "https://github.com/hargettp/cl-base32")
8460 (license license:expat))))
8461
8462 (define-public cl-base32
8463 (sbcl-package->cl-source-package sbcl-cl-base32))
8464
8465 (define-public ecl-cl-base32
8466 (sbcl-package->ecl-package sbcl-cl-base32))
8467
8468 (define-public sbcl-cl-z85
8469 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
8470 (revision "1"))
8471 (package
8472 (name "sbcl-cl-z85")
8473 (version (git-version "1.0" revision commit))
8474 (source
8475 (origin
8476 (method git-fetch)
8477 (uri (git-reference
8478 (url "https://github.com/glv2/cl-z85")
8479 (commit commit)))
8480 (file-name (git-file-name name version))
8481 (sha256
8482 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
8483 (build-system asdf-build-system/sbcl)
8484 (native-inputs
8485 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
8486 ("fiveam" ,sbcl-fiveam)))
8487 (synopsis "Common Lisp library for Z85 encoding and decoding")
8488 (description
8489 "This package provides functions to encode or decode byte vectors or
8490 byte streams using the Z85 format, which is a base-85 encoding used by
8491 ZeroMQ.")
8492 (home-page "https://github.com/glv2/cl-z85")
8493 (license license:gpl3+))))
8494
8495 (define-public cl-z85
8496 (sbcl-package->cl-source-package sbcl-cl-z85))
8497
8498 (define-public ecl-cl-z85
8499 (sbcl-package->ecl-package sbcl-cl-z85))
8500
8501 (define-public sbcl-ltk
8502 (package
8503 (name "sbcl-ltk")
8504 (version "0.992")
8505 (source
8506 (origin
8507 (method git-fetch)
8508 (uri (git-reference
8509 (url "https://github.com/herth/ltk")
8510 (commit version)))
8511 (file-name (git-file-name name version))
8512 (sha256
8513 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
8514 (build-system asdf-build-system/sbcl)
8515 (inputs
8516 `(("imagemagick" ,imagemagick)
8517 ("tk" ,tk)))
8518 (arguments
8519 `(#:asd-systems '("ltk"
8520 "ltk-mw"
8521 "ltk-remote")
8522 #:tests? #f
8523 #:phases
8524 (modify-phases %standard-phases
8525 (add-after 'unpack 'fix-paths
8526 (lambda* (#:key inputs #:allow-other-keys)
8527 (substitute* "ltk/ltk.lisp"
8528 (("#-freebsd \"wish\"")
8529 (string-append "#-freebsd \""
8530 (assoc-ref inputs "tk")
8531 "/bin/wish\""))
8532 (("do-execute \"convert\"")
8533 (string-append "do-execute \""
8534 (assoc-ref inputs "imagemagick")
8535 "/bin/convert\"")))
8536 #t))
8537 (add-after 'unpack 'fix-build
8538 (lambda _
8539 (substitute* "ltk/ltk-remote.lisp"
8540 (("\\(:export")
8541 "(:shadow #:raise) (:export"))
8542 #t)))))
8543 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
8544 (description
8545 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
8546 in pure Common Lisp and does not require any Tk knowledge for its usage.")
8547 (home-page "http://www.peter-herth.de/ltk/")
8548 (license license:llgpl)))
8549
8550 (define-public cl-ltk
8551 (sbcl-package->cl-source-package sbcl-ltk))
8552
8553 (define-public ecl-ltk
8554 (sbcl-package->ecl-package sbcl-ltk))
8555
8556 (define-public sbcl-cl-lex
8557 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
8558 (revision "1"))
8559 (package
8560 (name "sbcl-cl-lex")
8561 (version (git-version "1.1.3" revision commit))
8562 (source
8563 (origin
8564 (method git-fetch)
8565 (uri (git-reference
8566 (url "https://github.com/djr7C4/cl-lex")
8567 (commit commit)))
8568 (file-name (git-file-name name version))
8569 (sha256
8570 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
8571 (build-system asdf-build-system/sbcl)
8572 (inputs
8573 `(("cl-ppcre" ,sbcl-cl-ppcre)))
8574 (synopsis "Common Lisp macros for generating lexical analyzers")
8575 (description
8576 "This is a Common Lisp library providing a set of macros for generating
8577 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
8578 be used with @code{cl-yacc}.")
8579 (home-page "https://github.com/djr7C4/cl-lex")
8580 (license license:gpl3))))
8581
8582 (define-public cl-lex
8583 (sbcl-package->cl-source-package sbcl-cl-lex))
8584
8585 (define-public ecl-cl-lex
8586 (sbcl-package->ecl-package sbcl-cl-lex))
8587
8588 (define-public sbcl-clunit2
8589 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
8590 (revision "1"))
8591 (package
8592 (name "sbcl-clunit2")
8593 (version (git-version "0.2.4" revision commit))
8594 (source
8595 (origin
8596 (method git-fetch)
8597 (uri (git-reference
8598 (url "https://notabug.org/cage/clunit2.git")
8599 (commit commit)))
8600 (file-name (git-file-name name version))
8601 (sha256
8602 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
8603 (build-system asdf-build-system/sbcl)
8604 (synopsis "Unit testing framework for Common Lisp")
8605 (description
8606 "CLUnit is a Common Lisp unit testing framework. It is designed to be
8607 easy to use so that you can quickly start testing.")
8608 (home-page "https://notabug.org/cage/clunit2")
8609 (license license:expat))))
8610
8611 (define-public cl-clunit2
8612 (sbcl-package->cl-source-package sbcl-clunit2))
8613
8614 (define-public ecl-clunit2
8615 (sbcl-package->ecl-package sbcl-clunit2))
8616
8617 (define-public sbcl-cl-colors2
8618 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
8619 (revision "1"))
8620 (package
8621 (name "sbcl-cl-colors2")
8622 (version (git-version "0.2.1" revision commit))
8623 (source
8624 (origin
8625 (method git-fetch)
8626 (uri (git-reference
8627 (url "https://notabug.org/cage/cl-colors2.git")
8628 (commit commit)))
8629 (file-name (git-file-name name version))
8630 (sha256
8631 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
8632 (build-system asdf-build-system/sbcl)
8633 (native-inputs
8634 `(("clunit2" ,sbcl-clunit2)))
8635 (inputs
8636 `(("alexandria" ,sbcl-alexandria)
8637 ("cl-ppcre" ,sbcl-cl-ppcre)))
8638 (synopsis "Color library for Common Lisp")
8639 (description
8640 "This is a very simple color library for Common Lisp, providing:
8641
8642 @itemize
8643 @item Types for representing colors in HSV and RGB spaces.
8644 @item Simple conversion functions between the above types (and also
8645 hexadecimal representation for RGB).
8646 @item Some predefined colors (currently X11 color names -- of course
8647 the library does not depend on X11).
8648 @end itemize\n")
8649 (home-page "https://notabug.org/cage/cl-colors2")
8650 (license license:boost1.0))))
8651
8652 (define-public cl-colors2
8653 (sbcl-package->cl-source-package sbcl-cl-colors2))
8654
8655 (define-public ecl-cl-colors2
8656 (sbcl-package->ecl-package sbcl-cl-colors2))
8657
8658 (define-public sbcl-cl-jpeg
8659 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
8660 (revision "1"))
8661 (package
8662 (name "sbcl-cl-jpeg")
8663 (version (git-version "2.8" revision commit))
8664 (source
8665 (origin
8666 (method git-fetch)
8667 (uri (git-reference
8668 (url "https://github.com/sharplispers/cl-jpeg")
8669 (commit commit)))
8670 (file-name (git-file-name name version))
8671 (sha256
8672 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
8673 (build-system asdf-build-system/sbcl)
8674 (synopsis "JPEG image library for Common Lisp")
8675 (description
8676 "This is a baseline JPEG codec written in Common Lisp. It can be used
8677 for reading and writing JPEG image files.")
8678 (home-page "https://github.com/sharplispers/cl-jpeg")
8679 (license license:bsd-3))))
8680
8681 (define-public cl-jpeg
8682 (sbcl-package->cl-source-package sbcl-cl-jpeg))
8683
8684 (define-public ecl-cl-jpeg
8685 (sbcl-package->ecl-package sbcl-cl-jpeg))
8686
8687 (define-public sbcl-nodgui
8688 (let ((commit "bc59ed9b787dfc9e68ae3bd7f7e8507c5c619212")
8689 (revision "1"))
8690 (package
8691 (name "sbcl-nodgui")
8692 (version (git-version "0.0.5" revision commit))
8693 (source
8694 (origin
8695 (method git-fetch)
8696 (uri (git-reference
8697 (url "https://notabug.org/cage/nodgui.git")
8698 (commit commit)))
8699 (file-name (git-file-name name version))
8700 (sha256
8701 (base32 "0xx0dk54d882i598ydnwmy7mnfk0b7vib3ddsgpqxhjck1rwq8l8"))))
8702 (build-system asdf-build-system/sbcl)
8703 (inputs
8704 `(("alexandria" ,sbcl-alexandria)
8705 ("bordeaux-threads" ,sbcl-bordeaux-threads)
8706 ("cl-colors2" ,sbcl-cl-colors2)
8707 ("cl-jpeg" ,sbcl-cl-jpeg)
8708 ("cl-lex" ,sbcl-cl-lex)
8709 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
8710 ("cl-unicode" ,sbcl-cl-unicode)
8711 ("cl-yacc" ,sbcl-cl-yacc)
8712 ("clunit2" ,sbcl-clunit2)
8713 ("named-readtables" ,sbcl-named-readtables)
8714 ("parse-number" ,sbcl-parse-number)
8715 ("tk" ,tk)))
8716 (arguments
8717 `(#:phases (modify-phases %standard-phases
8718 (add-after 'unpack 'fix-paths
8719 (lambda* (#:key inputs #:allow-other-keys)
8720 (substitute* "src/wish-communication.lisp"
8721 (("#-freebsd \"wish\"")
8722 (string-append "#-freebsd \""
8723 (assoc-ref inputs "tk")
8724 "/bin/wish\"")))
8725 #t)))))
8726 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
8727 (description
8728 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
8729 toolkit. It also provides a few additional widgets more than the standard Tk
8730 ones.")
8731 (home-page "https://www.autistici.org/interzona/nodgui.html")
8732 (license license:llgpl))))
8733
8734 (define-public cl-nodgui
8735 (sbcl-package->cl-source-package sbcl-nodgui))
8736
8737 (define-public ecl-nodgui
8738 (sbcl-package->ecl-package sbcl-nodgui))
8739
8740 (define-public sbcl-salza2
8741 (package
8742 (name "sbcl-salza2")
8743 (version "2.0.9")
8744 (source
8745 (origin
8746 (method git-fetch)
8747 (uri (git-reference
8748 (url "https://github.com/xach/salza2")
8749 (commit (string-append "release-" version))))
8750 (file-name (git-file-name name version))
8751 (sha256
8752 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
8753 (build-system asdf-build-system/sbcl)
8754 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
8755 (description
8756 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
8757 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
8758 respectively.")
8759 (home-page "https://www.xach.com/lisp/salza2/")
8760 (license license:bsd-2)))
8761
8762 (define-public cl-salza2
8763 (sbcl-package->cl-source-package sbcl-salza2))
8764
8765 (define-public ecl-salza2
8766 (sbcl-package->ecl-package sbcl-salza2))
8767
8768 (define-public sbcl-origin
8769 (let ((commit "d646134302456408d6d43580bb05299f1695ab8e")
8770 (revision "1"))
8771 (package
8772 (name "sbcl-origin")
8773 (version (git-version "2.0.0" revision commit))
8774 (source
8775 (origin
8776 (method git-fetch)
8777 (uri (git-reference
8778 (url "https://git.mfiano.net/mfiano/origin")
8779 (commit commit)))
8780 (file-name (git-file-name "origin" version))
8781 (sha256
8782 (base32 "1n9aszaif3yh8prs5r8v51fbj4r5jd1a048mivd5yij3hplkm82b"))))
8783 (build-system asdf-build-system/sbcl)
8784 (native-inputs
8785 `(("parachute" ,sbcl-parachute)))
8786 (inputs
8787 `(("golden-utils" ,sbcl-golden-utils)
8788 ("specialization-store" ,sbcl-specialization-store)))
8789 (home-page "https://git.mfiano.net/mfiano/origin")
8790 (synopsis "Common Lisp graphics math library")
8791 (description
8792 "This is a native Common Lisp graphics math library with an emphasis on
8793 performance and correctness.")
8794 (license license:expat))))
8795
8796 (define-public ecl-origin
8797 (sbcl-package->ecl-package sbcl-origin))
8798
8799 (define-public cl-origin
8800 (sbcl-package->cl-source-package sbcl-origin))
8801
8802 (define-public sbcl-png-read
8803 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
8804 (revision "1"))
8805 (package
8806 (name "sbcl-png-read")
8807 (version (git-version "0.3.1" revision commit))
8808 (source
8809 (origin
8810 (method git-fetch)
8811 (uri (git-reference
8812 (url "https://github.com/Ramarren/png-read")
8813 (commit commit)))
8814 (file-name (git-file-name name version))
8815 (sha256
8816 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
8817 (build-system asdf-build-system/sbcl)
8818 (inputs
8819 `(("babel" ,sbcl-babel)
8820 ("chipz" ,sbcl-chipz)
8821 ("iterate" ,sbcl-iterate)))
8822 (synopsis "PNG decoder for Common Lisp")
8823 (description "This is a Common Lisp library for reading PNG images.")
8824 (home-page "https://github.com/Ramarren/png-read")
8825 (license license:bsd-3))))
8826
8827 (define-public cl-png-read
8828 (sbcl-package->cl-source-package sbcl-png-read))
8829
8830 (define-public ecl-png-read
8831 (sbcl-package->ecl-package sbcl-png-read))
8832
8833 (define-public sbcl-3b-bmfont
8834 (let ((commit "d1b5bec0de580c2d08ec947a93c56b1400f2a37a")
8835 (revision "1"))
8836 (package
8837 (name "sbcl-3b-bmfont")
8838 (version (git-version "0.0.1" revision commit))
8839 (source
8840 (origin
8841 (method git-fetch)
8842 (uri (git-reference
8843 (url "https://github.com/3b/3b-bmfont/")
8844 (commit commit)))
8845 (file-name (git-file-name "3b-bmfont" version))
8846 (sha256
8847 (base32 "12sgf7m0h6fqzhvkas7vmci6mprj3j3fnz778jlbqbsydln6v2yc"))))
8848 (build-system asdf-build-system/sbcl)
8849 (arguments
8850 `(#:asd-systems
8851 '("3b-bmfont"
8852 "3b-bmfont/text"
8853 "3b-bmfont/common"
8854 "3b-bmfont/xml"
8855 "3b-bmfont/json")))
8856 (inputs
8857 `(("alexandria" ,sbcl-alexandria)
8858 ("cxml" ,sbcl-cxml)
8859 ("flexi-streams" ,sbcl-flexi-streams)
8860 ("jsown" ,sbcl-jsown)
8861 ("split-sequence" ,sbcl-split-sequence)))
8862 (home-page "https://github.com/3b/3b-bmfont/")
8863 (synopsis "Read/write bmfont metadata files")
8864 (description
8865 "This is a Common Lisp library which provides functionality to
8866 read/write Bit Map Font (BMF) into text, JSON and XML.")
8867 (license license:expat))))
8868
8869 (define-public ecl-3b-bmfont
8870 (sbcl-package->ecl-package sbcl-3b-bmfont))
8871
8872 (define-public cl-3b-bmfont
8873 (sbcl-package->cl-source-package sbcl-3b-bmfont))
8874
8875 (define-public sbcl-zpng
8876 (package
8877 (name "sbcl-zpng")
8878 (version "1.2.2")
8879 (source
8880 (origin
8881 (method git-fetch)
8882 (uri (git-reference
8883 (url "https://github.com/xach/zpng")
8884 (commit (string-append "release-" version))))
8885 (file-name (git-file-name name version))
8886 (sha256
8887 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
8888 (build-system asdf-build-system/sbcl)
8889 (inputs
8890 `(("salza2" ,sbcl-salza2)))
8891 (synopsis "PNG encoder for Common Lisp")
8892 (description "This is a Common Lisp library for creating PNG images.")
8893 (home-page "https://www.xach.com/lisp/zpng/")
8894 (license license:bsd-2)))
8895
8896 (define-public cl-zpng
8897 (sbcl-package->cl-source-package sbcl-zpng))
8898
8899 (define-public ecl-zpng
8900 (sbcl-package->ecl-package sbcl-zpng))
8901
8902 (define-public sbcl-cl-qrencode
8903 (package
8904 (name "sbcl-cl-qrencode")
8905 (version "0.1.2")
8906 (source
8907 (origin
8908 (method git-fetch)
8909 (uri (git-reference
8910 (url "https://github.com/jnjcc/cl-qrencode")
8911 (commit (string-append "v" version))))
8912 (file-name (git-file-name name version))
8913 (sha256
8914 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
8915 (build-system asdf-build-system/sbcl)
8916 (native-inputs
8917 `(("lisp-unit" ,sbcl-lisp-unit)))
8918 (inputs
8919 `(("zpng" ,sbcl-zpng)))
8920 (synopsis "QR code encoder for Common Lisp")
8921 (description
8922 "This Common Lisp library provides function to make QR codes and to save
8923 them as PNG files.")
8924 (home-page "https://github.com/jnjcc/cl-qrencode")
8925 (license license:gpl2+)))
8926
8927 (define-public cl-qrencode
8928 (sbcl-package->cl-source-package sbcl-cl-qrencode))
8929
8930 (define-public ecl-cl-qrencode
8931 (sbcl-package->ecl-package sbcl-cl-qrencode))
8932
8933 (define-public sbcl-hdf5-cffi
8934 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
8935 (revision "1"))
8936 (package
8937 (name "sbcl-hdf5-cffi")
8938 (version (git-version "1.8.18" revision commit))
8939 (source
8940 (origin
8941 (method git-fetch)
8942 (uri (git-reference
8943 (url "https://github.com/hdfgroup/hdf5-cffi")
8944 (commit commit)))
8945 (file-name (git-file-name name version))
8946 (sha256
8947 (base32
8948 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
8949 (build-system asdf-build-system/sbcl)
8950 (synopsis "Common Lisp bindings for the HDF5 library")
8951 (description
8952 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
8953 (home-page "https://github.com/hdfgroup/hdf5-cffi")
8954 (license (license:non-copyleft
8955 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
8956 commit
8957 "/LICENSE")))
8958 (inputs
8959 `(("cffi" ,sbcl-cffi)
8960 ("hdf5" ,hdf5-1.10)))
8961 (native-inputs
8962 `(("fiveam" ,sbcl-fiveam)))
8963 (arguments
8964 `(#:test-asd-file "hdf5-cffi.test.asd"
8965 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
8966 ;; I don't know if there is a way to tell asdf-build-system to load
8967 ;; an additional system first, so tests are disabled.
8968 #:tests? #f
8969 #:phases
8970 (modify-phases %standard-phases
8971 (add-after 'unpack 'fix-paths
8972 (lambda* (#:key inputs #:allow-other-keys)
8973 (substitute* "src/library.lisp"
8974 (("libhdf5.so")
8975 (string-append
8976 (assoc-ref inputs "hdf5")
8977 "/lib/libhdf5.so")))))
8978 (add-after 'unpack 'fix-dependencies
8979 (lambda* (#:key inputs #:allow-other-keys)
8980 (substitute* "hdf5-cffi.asd"
8981 ((":depends-on \\(:cffi\\)")
8982 ":depends-on (:cffi :cffi-grovel)"))
8983 (substitute* "hdf5-cffi.test.asd"
8984 ((":depends-on \\(:cffi :hdf5-cffi")
8985 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
8986
8987 (define-public cl-hdf5-cffi
8988 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
8989
8990 (define-public ecl-hdf5-cffi
8991 (sbcl-package->ecl-package sbcl-hdf5-cffi))
8992
8993 (define-public sbcl-cl-randist
8994 (package
8995 (name "sbcl-cl-randist")
8996 (version "0.4.2")
8997 (source
8998 (origin
8999 (method git-fetch)
9000 (uri (git-reference
9001 (url "https://github.com/lvaruzza/cl-randist")
9002 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
9003 (file-name (git-file-name name version))
9004 (sha256
9005 (base32
9006 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
9007 (build-system asdf-build-system/sbcl)
9008 (synopsis "Random distributions for Common Lisp")
9009 (description
9010 "Manual translation from C to Common Lisp of some random number
9011 generation functions from the GSL library.")
9012 (home-page "https://github.com/lvaruzza/cl-randist")
9013 (license license:bsd-2)
9014 (arguments
9015 `(#:tests? #f))))
9016
9017 (define-public cl-randist
9018 (sbcl-package->cl-source-package sbcl-cl-randist))
9019
9020 (define-public ecl-cl-randist
9021 (sbcl-package->ecl-package sbcl-cl-randist))
9022
9023 (define-public sbcl-float-features
9024 (package
9025 (name "sbcl-float-features")
9026 (version "1.0.0")
9027 (source
9028 (origin
9029 (method git-fetch)
9030 (uri (git-reference
9031 (url "https://github.com/Shinmera/float-features")
9032 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
9033 (file-name (git-file-name name version))
9034 (sha256
9035 (base32
9036 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
9037 (build-system asdf-build-system/sbcl)
9038 (synopsis "Common Lisp IEEE float portability library")
9039 (description
9040 "Portability library for IEEE float features that are not
9041 covered by the Common Lisp standard.")
9042 (home-page "https://github.com/Shinmera/float-features")
9043 (license license:zlib)
9044 (inputs
9045 `(("documentation-utils" ,sbcl-documentation-utils)))
9046 (arguments
9047 `(#:tests? #f))))
9048
9049 (define-public cl-float-features
9050 (sbcl-package->cl-source-package sbcl-float-features))
9051
9052 (define-public ecl-float-features
9053 (sbcl-package->ecl-package sbcl-float-features))
9054
9055 (define-public sbcl-function-cache
9056 (package
9057 (name "sbcl-function-cache")
9058 (version "1.0.3")
9059 (source
9060 (origin
9061 (method git-fetch)
9062 (uri (git-reference
9063 (url "https://github.com/AccelerationNet/function-cache")
9064 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
9065 (file-name (git-file-name name version))
9066 (sha256
9067 (base32
9068 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
9069 (build-system asdf-build-system/sbcl)
9070 (synopsis "Function caching / memoization library for Common Lisp")
9071 (description
9072 "A common lisp library that provides extensible function result
9073 caching based on arguments (an expanded form of memoization).")
9074 (home-page "https://github.com/AccelerationNet/function-cache")
9075 (license
9076 (license:non-copyleft
9077 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
9078 (inputs
9079 `(("alexandria" ,sbcl-alexandria)
9080 ("cl-interpol" ,sbcl-cl-interpol)
9081 ("iterate" ,sbcl-iterate)
9082 ("symbol-munger" ,sbcl-symbol-munger)
9083 ("closer-mop" ,sbcl-closer-mop)))
9084 (arguments
9085 `(#:tests? #f))))
9086
9087 (define-public cl-function-cache
9088 (sbcl-package->cl-source-package sbcl-function-cache))
9089
9090 (define-public ecl-function-cache
9091 (sbcl-package->ecl-package sbcl-function-cache))
9092
9093 (define-public sbcl-type-r
9094 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
9095 (revision "1"))
9096 (package
9097 (name "sbcl-type-r")
9098 (version (git-version "0.0.0" revision commit))
9099 (source
9100 (origin
9101 (method git-fetch)
9102 (uri (git-reference
9103 (url "https://github.com/guicho271828/type-r")
9104 (commit commit)))
9105 (file-name (git-file-name name version))
9106 (sha256
9107 (base32
9108 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
9109 (build-system asdf-build-system/sbcl)
9110 (synopsis "Parser interface for Common Lisp built-in compound types")
9111 (description
9112 "Collections of accessor functions and patterns to access
9113 the elements in compound type specifier, e.g. @code{dimensions} in
9114 @code{(array element-type dimensions)}")
9115 (home-page "https://github.com/guicho271828/type-r")
9116 (license license:lgpl3+)
9117 (inputs
9118 `(("trivia" ,sbcl-trivia)
9119 ("alexandria" ,sbcl-alexandria)))
9120 (native-inputs
9121 `(("fiveam" ,sbcl-fiveam)))
9122 (arguments
9123 `(#:test-asd-file "type-r.test.asd")))))
9124
9125 (define-public cl-type-r
9126 (sbcl-package->cl-source-package sbcl-type-r))
9127
9128 (define-public ecl-type-r
9129 (sbcl-package->ecl-package sbcl-type-r))
9130
9131 (define-public sbcl-trivialib-type-unify
9132 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
9133 (revision "1"))
9134 (package
9135 (name "sbcl-trivialib-type-unify")
9136 (version (git-version "0.1" revision commit))
9137 (source
9138 (origin
9139 (method git-fetch)
9140 (uri (git-reference
9141 (url "https://github.com/guicho271828/trivialib.type-unify")
9142 (commit commit)))
9143 (file-name (git-file-name name version))
9144 (sha256
9145 (base32
9146 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
9147 (build-system asdf-build-system/sbcl)
9148 (synopsis "Common Lisp type unification")
9149 (description
9150 "Unifies a parametrized type specifier against an actual type specifier.
9151 Importantly, it handles complicated array-subtypes and number-related types
9152 correctly.")
9153 (home-page "https://github.com/guicho271828/trivialib.type-unify")
9154 (license license:lgpl3+)
9155 (inputs
9156 `(("alexandria" ,sbcl-alexandria)
9157 ("trivia" ,sbcl-trivia)
9158 ("introspect-environment" ,sbcl-introspect-environment)
9159 ("type-r" ,sbcl-type-r)))
9160 (native-inputs
9161 `(("fiveam" ,sbcl-fiveam)))
9162 (arguments
9163 `(#:asd-systems '("trivialib.type-unify")
9164 #:test-asd-file "trivialib.type-unify.test.asd")))))
9165
9166 (define-public cl-trivialib-type-unify
9167 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
9168
9169 (define-public ecl-trivialib-type-unify
9170 (sbcl-package->ecl-package sbcl-trivialib-type-unify))
9171
9172 (define-public sbcl-specialized-function
9173 (let ((commit "dee56d2d2b6ecd10500ad291c56217698604ec35")
9174 (revision "2"))
9175 (package
9176 (name "sbcl-specialized-function")
9177 (version (git-version "0.0.0" revision commit))
9178 (source
9179 (origin
9180 (method git-fetch)
9181 (uri (git-reference
9182 (url "https://github.com/numcl/specialized-function")
9183 (commit commit)))
9184 (file-name (git-file-name name version))
9185 (sha256
9186 (base32 "1mcc7mmpbnmgnr1cl2jl5r1ai54gn7fbisv2c14sh9za5w4sib82"))))
9187 (build-system asdf-build-system/sbcl)
9188 (synopsis "Julia-like dispatch for Common Lisp")
9189 (description
9190 "This library is part of NUMCL. It provides a macro
9191 @code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
9192 lazily compiling a type-specific version of the function from the same
9193 code. The main target of this macro is speed.")
9194 (home-page "https://github.com/numcl/specialized-function")
9195 (license license:lgpl3+)
9196 (inputs
9197 `(("trivia" ,sbcl-trivia)
9198 ("alexandria" ,sbcl-alexandria)
9199 ("iterate" ,sbcl-iterate)
9200 ("lisp-namespace" ,sbcl-lisp-namespace)
9201 ("type-r" ,sbcl-type-r)
9202 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
9203 (native-inputs
9204 `(("fiveam" ,sbcl-fiveam)))
9205 (arguments
9206 `(#:asd-files '("specialized-function.asd")
9207 #:test-asd-file "specialized-function.test.asd"
9208 ;; Tests fail because they try to use an internal symbol of SBCL
9209 ;; that does not exists in recent versions:
9210 ;; "The variable SB-VM:COMPLEX-VECTOR-NIL-WIDETAG is unbound."
9211 #:tests? #f)))))
9212
9213 (define-public cl-specialized-function
9214 (sbcl-package->cl-source-package sbcl-specialized-function))
9215
9216 (define-public ecl-specialized-function
9217 (sbcl-package->ecl-package sbcl-specialized-function))
9218
9219 (define-public sbcl-constantfold
9220 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
9221 (revision "1"))
9222 (package
9223 (name "sbcl-constantfold")
9224 (version (git-version "0.1" revision commit))
9225 (source
9226 (origin
9227 (method git-fetch)
9228 (uri (git-reference
9229 (url "https://github.com/numcl/constantfold")
9230 (commit commit)))
9231 (file-name (git-file-name name version))
9232 (sha256
9233 (base32
9234 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
9235 (build-system asdf-build-system/sbcl)
9236 (synopsis "Support library for numcl")
9237 (description
9238 "Support library for numcl. Registers a function as an
9239 additional form that is considered as a candidate for a constant.")
9240 (home-page "https://github.com/numcl/constantfold")
9241 (license license:lgpl3+)
9242 (inputs
9243 `(("trivia" ,sbcl-trivia)
9244 ("alexandria" ,sbcl-alexandria)
9245 ("iterate" ,sbcl-iterate)
9246 ("lisp-namespace" ,sbcl-lisp-namespace)))
9247 (native-inputs
9248 `(("fiveam" ,sbcl-fiveam)))
9249 (arguments
9250 `(#:asd-files '("constantfold.asd")
9251 #:test-asd-file "constantfold.test.asd")))))
9252
9253 (define-public cl-constantfold
9254 (sbcl-package->cl-source-package sbcl-constantfold))
9255
9256 (define-public ecl-constantfold
9257 (sbcl-package->ecl-package sbcl-constantfold))
9258
9259 (define-public sbcl-gtype
9260 (let ((commit "2442e32485635525af278ebd8fa69a27d5b8cf18")
9261 (revision "2"))
9262 (package
9263 (name "sbcl-gtype")
9264 (version (git-version "0.1" revision commit))
9265 (source
9266 (origin
9267 (method git-fetch)
9268 (uri (git-reference
9269 (url "https://github.com/numcl/gtype")
9270 (commit commit)))
9271 (file-name (git-file-name name version))
9272 (sha256
9273 (base32 "0hbkfdw00v7bsa6zbric34p5w6hfwxycccg8wc2faq0cxhsvpv9h"))))
9274 (build-system asdf-build-system/sbcl)
9275 (synopsis "C++/Julia-like parametric types in Common Lisp")
9276 (description
9277 "Support library for numcl that provides Julia-like runtime parametric
9278 type correctness in Common Lisp. It is based on CLtL2 extensions.")
9279 (home-page "https://github.com/numcl/gtype")
9280 (license license:lgpl3+)
9281 (inputs
9282 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
9283 ("trivial-cltl2" ,sbcl-trivial-cltl2)
9284 ("trivia" ,sbcl-trivia)
9285 ("alexandria" ,sbcl-alexandria)
9286 ("iterate" ,sbcl-iterate)
9287 ("type-r" ,sbcl-type-r)))
9288 (native-inputs
9289 `(("fiveam" ,sbcl-fiveam)))
9290 (arguments
9291 `(#:asd-files '("gtype.asd")
9292 #:test-asd-file "gtype.test.asd")))))
9293
9294 (define-public cl-gtype
9295 (sbcl-package->cl-source-package sbcl-gtype))
9296
9297 (define-public ecl-gtype
9298 (let ((pkg (sbcl-package->ecl-package sbcl-gtype)))
9299 (package
9300 (inherit pkg)
9301 (arguments
9302 (substitute-keyword-arguments (package-arguments pkg)
9303 ;; The tests fail on ECL with a COMPILE-FILE-ERROR for t/package.lisp.
9304 ((#:tests? _ #f) #f))))))
9305
9306 (define-public sbcl-numcl
9307 (let ((commit "3e8d40bf774e070e7af1d3dbf01bc8c37dbebd3a")
9308 (revision "2"))
9309 (package
9310 (name "sbcl-numcl")
9311 (version (git-version "0.1.0" revision commit))
9312 (source
9313 (origin
9314 (method git-fetch)
9315 (uri (git-reference
9316 (url "https://github.com/numcl/numcl")
9317 (commit commit)))
9318 (file-name (git-file-name name version))
9319 (sha256
9320 (base32 "1hqpr68f6xkxaj1hjjayyh97wcdmj51k20qrd3nsv1rcpmdc5ll4"))))
9321 (build-system asdf-build-system/sbcl)
9322 (synopsis "Numpy clone in Common Lisp")
9323 (description
9324 "This is a Numpy clone in Common Lisp. At the moment the
9325 library is written in pure Common Lisp, focusing more on correctness
9326 and usefulness, not speed. Track the progress at
9327 @url{https://github.com/numcl/numcl/projects/1}.")
9328 (home-page "https://github.com/numcl/numcl")
9329 (license license:lgpl3+)
9330 (inputs
9331 `(("trivia" ,sbcl-trivia)
9332 ("alexandria" ,sbcl-alexandria)
9333 ("iterate" ,sbcl-iterate)
9334 ("lisp-namespace" ,sbcl-lisp-namespace)
9335 ("type-r" ,sbcl-type-r)
9336 ("constantfold" ,sbcl-constantfold)
9337 ("cl-randist" ,sbcl-cl-randist)
9338 ("float-features" ,sbcl-float-features)
9339 ("function-cache" ,sbcl-function-cache)
9340 ("specialized-function" ,sbcl-specialized-function)
9341 ("gtype" ,sbcl-gtype)))
9342 (native-inputs
9343 `(("fiveam" ,sbcl-fiveam)))
9344 (arguments
9345 `(#:asd-files '("numcl.asd")
9346 #:test-asd-file "numcl.test.asd"
9347 ;; Tests fail on SBCL with "Heap exhausted, game over",
9348 ;; but they pass on ECL.
9349 #:tests? #f)))))
9350
9351 (define-public cl-numcl
9352 (sbcl-package->cl-source-package sbcl-numcl))
9353
9354 (define-public ecl-numcl
9355 (let ((pkg (sbcl-package->ecl-package sbcl-numcl)))
9356 (package
9357 (inherit pkg)
9358 (arguments
9359 (substitute-keyword-arguments (package-arguments pkg)
9360 ((#:tests? _ #f) #t))))))
9361
9362 (define-public sbcl-pzmq
9363 (let ((commit "7c7390eedc469d033c72dc497984d1536ee75826")
9364 (revision "1"))
9365 (package
9366 (name "sbcl-pzmq")
9367 (version (git-version "0.0.0" revision commit))
9368 (source
9369 (origin
9370 (method git-fetch)
9371 (uri (git-reference
9372 (url "https://github.com/orivej/pzmq")
9373 (commit commit)))
9374 (file-name (git-file-name name version))
9375 (sha256
9376 (base32 "0gmwzf7h90wa7v4wnk49g0hv2mdalljpwhyigxcb967wzv8lqci9"))))
9377 (build-system asdf-build-system/sbcl)
9378 (native-inputs
9379 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9380 ("fiveam" ,sbcl-fiveam)
9381 ("let-plus" ,sbcl-let-plus)))
9382 (inputs
9383 `(("cffi" ,sbcl-cffi)
9384 ("zeromq" ,zeromq)))
9385 (arguments
9386 `(#:phases (modify-phases %standard-phases
9387 (add-after 'unpack 'fix-paths
9388 (lambda* (#:key inputs #:allow-other-keys)
9389 (substitute* "c-api.lisp"
9390 (("\"libzmq")
9391 (string-append "\""
9392 (assoc-ref inputs "zeromq")
9393 "/lib/libzmq")))
9394 #t)))))
9395 (synopsis "Common Lisp bindings for the ZeroMQ library")
9396 (description "This Common Lisp library provides bindings for the ZeroMQ
9397 lightweight messaging kernel.")
9398 (home-page "https://github.com/orivej/pzmq")
9399 (license license:unlicense))))
9400
9401 (define-public cl-pzmq
9402 (sbcl-package->cl-source-package sbcl-pzmq))
9403
9404 (define-public ecl-pzmq
9405 (sbcl-package->ecl-package sbcl-pzmq))
9406
9407 (define-public sbcl-clss
9408 (let ((revision "1")
9409 (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d"))
9410 (package
9411 (name "sbcl-clss")
9412 (version (git-version "0.3.1" revision commit))
9413 (source
9414 (origin
9415 (method git-fetch)
9416 (uri
9417 (git-reference
9418 (url "https://github.com/Shinmera/clss")
9419 (commit commit)))
9420 (sha256
9421 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91"))
9422 (file-name (git-file-name name version))))
9423 (inputs
9424 `(("array-utils" ,sbcl-array-utils)
9425 ("plump" ,sbcl-plump)))
9426 (build-system asdf-build-system/sbcl)
9427 (synopsis "DOM tree searching engine based on CSS selectors")
9428 (description "CLSS is a DOM traversal engine based on CSS
9429 selectors. It makes use of the Plump-DOM and is used by lQuery.")
9430 (home-page "https://github.com/Shinmera/clss")
9431 (license license:zlib))))
9432
9433 (define-public cl-clss
9434 (sbcl-package->cl-source-package sbcl-clss))
9435
9436 (define-public ecl-clss
9437 (sbcl-package->ecl-package sbcl-clss))
9438
9439 (define-public sbcl-lquery
9440 (let ((revision "1")
9441 (commit "8048111c6b83956daa632e7a3ffbd8c9c203bd8d"))
9442 (package
9443 (name "sbcl-lquery")
9444 (version (git-version "3.2.1" revision commit))
9445 (source
9446 (origin
9447 (method git-fetch)
9448 (uri
9449 (git-reference
9450 (url "https://github.com/Shinmera/lquery")
9451 (commit commit)))
9452 (sha256
9453 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w"))
9454 (file-name (git-file-name name version))))
9455 (native-inputs
9456 `(("fiveam" ,sbcl-fiveam)))
9457 (inputs
9458 `(("array-utils" ,sbcl-array-utils)
9459 ("form-fiddle" ,sbcl-form-fiddle)
9460 ("plump" ,sbcl-plump)
9461 ("clss" ,sbcl-clss)))
9462 (build-system asdf-build-system/sbcl)
9463 (synopsis "Library to allow jQuery-like HTML/DOM manipulation")
9464 (description "@code{lQuery} is a DOM manipulation library written in
9465 Common Lisp, inspired by and based on the jQuery syntax and
9466 functions. It uses Plump and CLSS as DOM and selector engines. The
9467 main idea behind lQuery is to provide a simple interface for crawling
9468 and modifying HTML sites, as well as to allow for an alternative
9469 approach to templating.")
9470 (home-page "https://github.com/Shinmera/lquery")
9471 (license license:zlib))))
9472
9473 (define-public cl-lquery
9474 (sbcl-package->cl-source-package sbcl-lquery))
9475
9476 (define-public ecl-lquery
9477 (sbcl-package->ecl-package sbcl-lquery))
9478
9479 (define-public sbcl-cl-mysql
9480 (let ((commit "ab56c279c1815aec6ca0bfe85164ff7e85cfb6f9")
9481 (revision "1"))
9482 (package
9483 (name "sbcl-cl-mysql")
9484 (version (git-version "0.1" revision commit))
9485 (source
9486 (origin
9487 (method git-fetch)
9488 (uri (git-reference
9489 (url "https://github.com/hackinghat/cl-mysql")
9490 (commit commit)))
9491 (file-name (git-file-name name version))
9492 (sha256
9493 (base32 "0dg5ynx2ww94d0qfwrdrm7plkn43h64hs4iiq9mj2s1s4ixnp3lr"))))
9494 (build-system asdf-build-system/sbcl)
9495 (native-inputs
9496 `(("stefil" ,sbcl-stefil)))
9497 (inputs
9498 `(("cffi" ,sbcl-cffi)
9499 ("mariadb-lib" ,mariadb "lib")))
9500 (arguments
9501 `(#:tests? #f ; TODO: Tests require a running server
9502 #:phases
9503 (modify-phases %standard-phases
9504 (add-after 'unpack 'fix-paths
9505 (lambda* (#:key inputs #:allow-other-keys)
9506 (substitute* "system.lisp"
9507 (("libmysqlclient_r" all)
9508 (string-append (assoc-ref inputs "mariadb-lib")
9509 "/lib/"
9510 all)))
9511 #t)))))
9512 (synopsis "Common Lisp wrapper for MySQL")
9513 (description
9514 "@code{cl-mysql} is a Common Lisp implementation of a MySQL wrapper.")
9515 (home-page "http://www.hackinghat.com/index.php/cl-mysql")
9516 (license license:expat))))
9517
9518 (define-public cl-mysql
9519 (sbcl-package->cl-source-package sbcl-cl-mysql))
9520
9521 (define-public ecl-cl-mysql
9522 (sbcl-package->ecl-package sbcl-cl-mysql))
9523
9524 (define-public sbcl-postmodern
9525 (package
9526 (name "sbcl-postmodern")
9527 (version "1.32.8")
9528 (source
9529 (origin
9530 (method git-fetch)
9531 (uri (git-reference
9532 (url "https://github.com/marijnh/Postmodern")
9533 (commit (string-append "v" version))))
9534 (file-name (git-file-name name version))
9535 (sha256
9536 (base32 "0vr5inbr8dldf6dsl0qj3h2yrnnsayzfwxfzwkn1pk7xbns2l78q"))))
9537 (build-system asdf-build-system/sbcl)
9538 (native-inputs
9539 `(("fiveam" ,sbcl-fiveam)))
9540 (inputs
9541 `(("alexandria" ,sbcl-alexandria)
9542 ("bordeaux-threads" ,sbcl-bordeaux-threads)
9543 ("cl-base64" ,sbcl-cl-base64)
9544 ("cl-unicode" ,sbcl-cl-unicode)
9545 ("closer-mop" ,sbcl-closer-mop)
9546 ("global-vars" ,sbcl-global-vars)
9547 ("ironclad" ,sbcl-ironclad)
9548 ("local-time" ,sbcl-local-time)
9549 ("md5" ,sbcl-md5)
9550 ("split-sequence" ,sbcl-split-sequence)
9551 ("uax-15" ,sbcl-uax-15)
9552 ("usocket" ,sbcl-usocket)))
9553 (arguments
9554 ;; TODO: (Sharlatan-20210114T171037+0000) tests still failing but on other
9555 ;; step, some functionality in `local-time' prevents passing tests.
9556 ;; Error:
9557 ;;
9558 ;; Can't create directory
9559 ;; /gnu/store
9560 ;; /4f47agf1kyiz057ppy6x5p98i7mcbfsv-sbcl-local-time-1.0.6-2.a177eb9
9561 ;; /lib/common-lisp/sbcl/local-time/src/integration/
9562 ;;
9563 ;; NOTE: (Sharlatan-20210124T191940+0000): When set env HOME to /tmp above
9564 ;; issue is resolved but it required live test database to connect to now.
9565 ;; Keep tests switched off.
9566 `(#:tests? #f
9567 #:asd-systems '("cl-postgres"
9568 "s-sql"
9569 "postmodern"
9570 "simple-date"
9571 "simple-date/postgres-glue")))
9572 (synopsis "Common Lisp library for interacting with PostgreSQL")
9573 (description
9574 "@code{postmodern} is a Common Lisp library for interacting with
9575 PostgreSQL databases. It provides the following features:
9576
9577 @itemize
9578 @item Efficient communication with the database server without need for
9579 foreign libraries.
9580 @item Support for UTF-8 on Unicode-aware Lisp implementations.
9581 @item A syntax for mixing SQL and Lisp code.
9582 @item Convenient support for prepared statements and stored procedures.
9583 @item A metaclass for simple database-access objects.
9584 @end itemize\n
9585
9586 This package produces 4 systems: postmodern, cl-postgres, s-sql, simple-date
9587
9588 @code{SIMPLE-DATE} is a very basic implementation of date and time objects, used
9589 to support storing and retrieving time-related SQL types. It is not loaded by
9590 default and you can use local-time (which has support for timezones) instead.
9591
9592 @code{S-SQL} is used to compile s-expressions to strings of SQL code, escaping
9593 any Lisp values inside, and doing as much as possible of the work at compile
9594 time.
9595
9596 @code{CL-POSTGRES} is the low-level library used for interfacing with a PostgreSQL
9597 server over a socket.
9598
9599 @code{POSTMODERN} itself is a wrapper around these packages and provides higher
9600 level functions, a very simple data access object that can be mapped directly to
9601 database tables and some convient utilities. It then tries to put all these
9602 things together into a convenient programming interface")
9603 (home-page "https://marijnhaverbeke.nl/postmodern/")
9604 (license license:zlib)))
9605
9606 (define-public cl-postmodern
9607 (sbcl-package->cl-source-package sbcl-postmodern))
9608
9609 (define-public ecl-postmodern
9610 (package
9611 (inherit (sbcl-package->ecl-package sbcl-postmodern))
9612 (arguments
9613 `(#:tests? #f
9614 #:asd-systems '("cl-postgres"
9615 "s-sql"
9616 "postmodern"
9617 "simple-date"
9618 "simple-date/postgres-glue")
9619 #:phases
9620 (modify-phases %standard-phases
9621 (add-after 'unpack 'fix-build
9622 (lambda _
9623 (substitute* "cl-postgres.asd"
9624 ((":or :sbcl :allegro :ccl :clisp" all)
9625 (string-append all " :ecl")))
9626 #t)))))))
9627
9628 (define-public sbcl-db3
9629 (let ((commit "38e5ad35f025769fb7f8dcdc6e56df3e8efd8e6d")
9630 (revision "1"))
9631 (package
9632 (name "sbcl-db3")
9633 (version (git-version "0.0.0" revision commit))
9634 (source
9635 (origin
9636 (method git-fetch)
9637 (uri (git-reference
9638 (url "https://github.com/dimitri/cl-db3")
9639 (commit commit)))
9640 (file-name (git-file-name "cl-db3" version))
9641 (sha256
9642 (base32 "1i7j0mlri6kbklcx1lsm464s8kmyhhij5c4xh4aybrw8m4ixn1s5"))))
9643 (build-system asdf-build-system/sbcl)
9644 (home-page "https://github.com/dimitri/cl-db3")
9645 (synopsis "Common Lisp library to read dBase III database files")
9646 (description
9647 "This is a Common Lisp library for processing data found in dBase III
9648 database files (dbf and db3 files).")
9649 (license license:public-domain))))
9650
9651 (define-public ecl-db3
9652 (sbcl-package->ecl-package sbcl-db3))
9653
9654 (define-public cl-db3
9655 (sbcl-package->cl-source-package sbcl-db3))
9656
9657 (define-public sbcl-dbi
9658 ;; Master includes a breaking change which other packages depend on since
9659 ;; Quicklisp decided to follow it:
9660 ;; https://github.com/fukamachi/cl-dbi/commit/31c46869722f77fd5292a81b5b101f1347d7fce1
9661 (let ((commit "31c46869722f77fd5292a81b5b101f1347d7fce1"))
9662 (package
9663 (name "sbcl-dbi")
9664 (version (git-version "0.9.4" "1" commit))
9665 (source
9666 (origin
9667 (method git-fetch)
9668 (uri (git-reference
9669 (url "https://github.com/fukamachi/cl-dbi")
9670 (commit commit)))
9671 (file-name (git-file-name name version))
9672 (sha256
9673 (base32 "0r3n4rw12qqxad0cryym2ibm4ddl49gbq4ra227afibsr43nw5k3"))))
9674 (build-system asdf-build-system/sbcl)
9675 (native-inputs
9676 `(("rove" ,sbcl-rove)
9677 ("trivial-types" ,sbcl-trivial-types)))
9678 (inputs
9679 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9680 ("cl-mysql" ,sbcl-cl-mysql)
9681 ("cl-sqlite" ,sbcl-cl-sqlite)
9682 ("closer-mop" ,sbcl-closer-mop)
9683 ("postmodern" ,sbcl-postmodern)
9684 ("split-sequence" ,sbcl-split-sequence)
9685 ("trivial-garbage" ,sbcl-trivial-garbage)))
9686 (arguments
9687 `(#:asd-systems '("dbi"
9688 "dbd-mysql"
9689 "dbd-postgres"
9690 "dbd-sqlite3")))
9691 (synopsis "Database independent interface for Common Lisp")
9692 (description
9693 "@code{dbi} is a Common Lisp library providing a database independent
9694 interface for MySQL, PostgreSQL and SQLite.")
9695 (home-page "https://github.com/fukamachi/cl-dbi")
9696 (license license:llgpl))))
9697
9698 (define-public cl-dbi
9699 (sbcl-package->cl-source-package sbcl-dbi))
9700
9701 (define-public ecl-dbi
9702 (sbcl-package->ecl-package sbcl-dbi))
9703
9704 (define-public sbcl-uffi
9705 (package
9706 (name "sbcl-uffi")
9707 (version "2.1.2")
9708 (source
9709 (origin
9710 (method git-fetch)
9711 (uri (git-reference
9712 (url "http://git.kpe.io/uffi.git")
9713 (commit (string-append "v" version))))
9714 (file-name (git-file-name name version))
9715 (sha256
9716 (base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
9717 (build-system asdf-build-system/sbcl)
9718 (arguments
9719 `(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
9720 #:asd-files '("uffi.asd")
9721 #:phases
9722 (modify-phases %standard-phases
9723 (add-after 'unpack 'fix-permissions
9724 (lambda _
9725 (make-file-writable "doc/html.tar.gz")
9726 #t)))))
9727 (synopsis "Universal foreign function library for Common Lisp")
9728 (description
9729 "UFFI provides a universal foreign function interface (FFI)
9730 for Common Lisp.")
9731 (home-page "http://quickdocs.org/uffi/")
9732 (license license:llgpl)))
9733
9734 (define-public cl-uffi
9735 (package
9736 (inherit (sbcl-package->cl-source-package sbcl-uffi))
9737 (arguments
9738 `(#:phases
9739 ;; asdf-build-system/source has its own phases and does not inherit
9740 ;; from asdf-build-system/sbcl phases.
9741 (modify-phases %standard-phases/source
9742 ;; Already done in SBCL package.
9743 (delete 'reset-gzip-timestamps))))))
9744
9745 (define-public sbcl-clsql
9746 (package
9747 (name "sbcl-clsql")
9748 (version "6.7.0")
9749 (source
9750 (origin
9751 (method git-fetch)
9752 (uri (git-reference
9753 (url "http://git.kpe.io/clsql.git")
9754 (commit (string-append "v" version))))
9755 (file-name (git-file-name name version))
9756 (sha256
9757 (base32 "1v1k3s5bsy3lgd9gk459bzpb1r0kdjda25s29samxw4gsgf1fqvp"))
9758 (snippet
9759 '(begin
9760 ;; Remove precompiled libraries.
9761 (delete-file "db-mysql/clsql_mysql.dll")
9762 (delete-file "uffi/clsql_uffi.dll")
9763 (delete-file "uffi/clsql_uffi.lib")
9764 #t))))
9765 (build-system asdf-build-system/sbcl)
9766 (native-inputs
9767 `(("rt" ,sbcl-rt)))
9768 (inputs
9769 `(("cffi" ,sbcl-cffi)
9770 ("md5" ,sbcl-md5)
9771 ("mysql" ,mysql)
9772 ("postgresql" ,postgresql)
9773 ("postmodern" ,sbcl-postmodern)
9774 ("sqlite" ,sqlite)
9775 ("uffi" ,sbcl-uffi)
9776 ("zlib" ,zlib)))
9777 (arguments
9778 `(#:asd-files '("clsql.asd"
9779 "clsql-uffi.asd"
9780 "clsql-sqlite3.asd"
9781 "clsql-postgresql.asd"
9782 "clsql-postgresql-socket3.asd"
9783 "clsql-mysql.asd")
9784 #:asd-systems '("clsql"
9785 "clsql-sqlite3"
9786 "clsql-postgresql"
9787 "clsql-postgresql-socket3"
9788 "clsql-mysql")
9789 #:phases
9790 (modify-phases %standard-phases
9791 (add-after 'unpack 'fix-permissions
9792 (lambda _
9793 (make-file-writable "doc/html.tar.gz")
9794 #t))
9795 (add-after 'unpack 'fix-build
9796 (lambda _
9797 (substitute* "clsql-uffi.asd"
9798 (("\\(:version uffi \"2.0\"\\)")
9799 "uffi"))
9800 (substitute* "db-postgresql/postgresql-api.lisp"
9801 (("\\(data :cstring\\)")
9802 "(data :string)"))
9803 #t))
9804 (add-after 'unpack 'fix-paths
9805 (lambda* (#:key inputs outputs #:allow-other-keys)
9806 (substitute* "db-sqlite3/sqlite3-loader.lisp"
9807 (("libsqlite3")
9808 (string-append (assoc-ref inputs "sqlite")
9809 "/lib/libsqlite3")))
9810 (substitute* "db-postgresql/postgresql-loader.lisp"
9811 (("libpq")
9812 (string-append (assoc-ref inputs "postgresql")
9813 "/lib/libpq")))
9814 (let ((lib (string-append "#p\""
9815 (assoc-ref outputs "out")
9816 "/lib/\"")))
9817 (substitute* "clsql-mysql.asd"
9818 (("#p\"/usr/lib/clsql/clsql_mysql\\.so\"")
9819 lib))
9820 (substitute* "db-mysql/mysql-loader.lisp"
9821 (("libmysqlclient" all)
9822 (string-append (assoc-ref inputs "mysql") "/lib/" all))
9823 (("clsql-mysql-system::\\*library-file-dir\\*")
9824 lib)))
9825 #t))
9826 (add-before 'build 'build-helper-library
9827 (lambda* (#:key inputs outputs #:allow-other-keys)
9828 (let* ((mysql (assoc-ref inputs "mysql"))
9829 (inc-dir (string-append mysql "/include/mysql"))
9830 (lib-dir (string-append mysql "/lib"))
9831 (shared-lib-dir (string-append (assoc-ref outputs "out")
9832 "/lib"))
9833 (shared-lib (string-append shared-lib-dir
9834 "/clsql_mysql.so")))
9835 (mkdir-p shared-lib-dir)
9836 (invoke "gcc" "-fPIC" "-shared"
9837 "-I" inc-dir
9838 "db-mysql/clsql_mysql.c"
9839 "-Wl,-soname=clsql_mysql"
9840 "-L" lib-dir "-lmysqlclient" "-lz"
9841 "-o" shared-lib)
9842 #t)))
9843 (add-after 'unpack 'fix-tests
9844 (lambda _
9845 (substitute* "clsql.asd"
9846 (("clsql-tests :force t")
9847 "clsql-tests"))
9848 #t)))))
9849 (synopsis "Common Lisp SQL Interface library")
9850 (description
9851 "@code{clsql} is a Common Lisp interface to SQL RDBMS based on the
9852 Xanalys CommonSQL interface for Lispworks. It provides low-level database
9853 interfaces as well as a functional and an object oriented interface.")
9854 (home-page "http://clsql.kpe.io/")
9855 (license license:llgpl)))
9856
9857 (define-public cl-clsql
9858 (package
9859 (inherit (sbcl-package->cl-source-package sbcl-clsql))
9860 (native-inputs
9861 `(("rt" ,cl-rt)))
9862 (inputs
9863 `(("mysql" ,mysql)
9864 ("postgresql" ,postgresql)
9865 ("sqlite" ,sqlite)
9866 ("zlib" ,zlib)))
9867 (propagated-inputs
9868 `(("cffi" ,cl-cffi)
9869 ("md5" ,cl-md5)
9870 ("postmodern" ,cl-postmodern)
9871 ("uffi" ,cl-uffi)))
9872 (arguments
9873 `(#:phases
9874 ;; asdf-build-system/source has its own phases and does not inherit
9875 ;; from asdf-build-system/sbcl phases.
9876 (modify-phases %standard-phases/source
9877 (add-after 'unpack 'fix-permissions
9878 (lambda _
9879 (make-file-writable "doc/html.tar.gz")
9880 #t)))))))
9881
9882 (define-public ecl-clsql
9883 (let ((pkg (sbcl-package->ecl-package sbcl-clsql)))
9884 (package
9885 (inherit pkg)
9886 (inputs
9887 (alist-delete "uffi" (package-inputs pkg)))
9888 (arguments
9889 (substitute-keyword-arguments (package-arguments pkg)
9890 ((#:asd-files asd-files '())
9891 `(cons "clsql-cffi.asd" ,asd-files)))))))
9892
9893 (define-public sbcl-sycamore
9894 (let ((commit "fd2820fec165ad514493426dea209728f64e6d18"))
9895 (package
9896 (name "sbcl-sycamore")
9897 (version "0.0.20120604")
9898 (source
9899 (origin
9900 (method git-fetch)
9901 (uri (git-reference
9902 (url "https://github.com/ndantam/sycamore/")
9903 (commit commit)))
9904 (file-name (git-file-name name version))
9905 (sha256
9906 (base32 "00bv1aj89q5vldmq92zp2364jq312zjq2mbd3iyz1s2b4widzhl7"))))
9907 (build-system asdf-build-system/sbcl)
9908 (inputs
9909 `(("alexandria" ,sbcl-alexandria)
9910 ("cl-ppcre" ,sbcl-cl-ppcre)))
9911 (synopsis "Purely functional data structure library in Common Lisp")
9912 (description
9913 "Sycamore is a fast, purely functional data structure library in Common Lisp.
9914 If features:
9915
9916 @itemize
9917 @item Fast, purely functional weight-balanced binary trees.
9918 @item Leaf nodes are simple-vectors, greatly reducing tree height.
9919 @item Interfaces for tree Sets and Maps (dictionaries).
9920 @item Ropes.
9921 @item Purely functional pairing heaps.
9922 @item Purely functional amortized queue.
9923 @end itemize\n")
9924 (home-page "http://ndantam.github.io/sycamore/")
9925 (license license:bsd-3))))
9926
9927 (define-public cl-sycamore
9928 (sbcl-package->cl-source-package sbcl-sycamore))
9929
9930 (define-public ecl-sycamore
9931 (sbcl-package->ecl-package sbcl-sycamore))
9932
9933 (define-public sbcl-trivial-package-local-nicknames
9934 (package
9935 (name "sbcl-trivial-package-local-nicknames")
9936 (version "0.2")
9937 (home-page "https://github.com/phoe/trivial-package-local-nicknames")
9938 (source
9939 (origin
9940 (method git-fetch)
9941 (uri (git-reference
9942 (url home-page)
9943 (commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
9944 (file-name (git-file-name name version))
9945 (sha256
9946 (base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
9947 (build-system asdf-build-system/sbcl)
9948 (synopsis "Common Lisp compatibility library for package local nicknames")
9949 (description
9950 "This library is a portable compatibility layer around package local nicknames (PLN).
9951 This was done so there is a portability library for the PLN API not included
9952 in DEFPACKAGE.")
9953 (license license:unlicense)))
9954
9955 (define-public cl-trivial-package-local-nicknames
9956 (sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))
9957
9958 (define-public ecl-trivial-package-local-nicknames
9959 (sbcl-package->ecl-package sbcl-trivial-package-local-nicknames))
9960
9961 (define-public sbcl-enchant
9962 (let ((commit "6af162a7bf10541cbcfcfa6513894900329713fa"))
9963 (package
9964 (name "sbcl-enchant")
9965 (version (git-version "0.0.0" "1" commit))
9966 (home-page "https://github.com/tlikonen/cl-enchant")
9967 (source
9968 (origin
9969 (method git-fetch)
9970 (uri (git-reference
9971 (url home-page)
9972 (commit commit)))
9973 (file-name (git-file-name name version))
9974 (sha256
9975 (base32 "19yh5ihirzi1d8xqy1cjqipzd6ly3245cfxa5s9xx496rryz0s01"))))
9976 (build-system asdf-build-system/sbcl)
9977 (inputs
9978 `(("enchant" ,enchant)
9979 ("cffi" ,sbcl-cffi)))
9980 (arguments
9981 `(#:phases
9982 (modify-phases %standard-phases
9983 (add-after 'unpack 'fix-paths
9984 (lambda* (#:key inputs #:allow-other-keys)
9985 (substitute* "load-enchant.lisp"
9986 (("libenchant")
9987 (string-append
9988 (assoc-ref inputs "enchant") "/lib/libenchant-2"))))))))
9989 (synopsis "Common Lisp interface for the Enchant spell-checker library")
9990 (description
9991 "Enchant is a Common Lisp interface for the Enchant spell-checker
9992 library. The Enchant library is a generic spell-checker library which uses
9993 other spell-checkers transparently as back-end. The library supports the
9994 multiple checkers, including Aspell and Hunspell.")
9995 (license license:public-domain))))
9996
9997 (define-public cl-enchant
9998 (sbcl-package->cl-source-package sbcl-enchant))
9999
10000 (define-public ecl-enchant
10001 (sbcl-package->ecl-package sbcl-enchant))
10002
10003 (define-public sbcl-cl-change-case
10004 (let ((commit "5ceff2a5f8bd845b6cb510c6364176b27a238fd3"))
10005 (package
10006 (name "sbcl-cl-change-case")
10007 (version (git-version "0.1.0" "1" commit))
10008 (home-page "https://github.com/rudolfochrist/cl-change-case")
10009 (source
10010 (origin
10011 (method git-fetch)
10012 (uri (git-reference
10013 (url home-page)
10014 (commit commit)))
10015 (file-name (git-file-name name version))
10016 (sha256
10017 (base32 "1afyglglk9z3yg8gylcl301bl2r8vq3sllyznzj9s5xi5gs6qyf2"))))
10018 (build-system asdf-build-system/sbcl)
10019 (inputs
10020 `(("cl-ppcre" ,sbcl-cl-ppcre)
10021 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
10022 (native-inputs
10023 `(("fiveam" ,sbcl-fiveam)))
10024 (arguments
10025 '(;; FIXME: Test pass but phase fails with 'Component
10026 ;; "cl-change-case-test" not found, required by'.
10027 #:tests? #f
10028 #:test-asd-file "cl-change-case-test.asd"))
10029 (synopsis "Convert Common Lisp strings between camelCase, PascalCase and more")
10030 (description
10031 "@code{cl-change-case} is library to convert strings between camelCase,
10032 PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
10033 (license license:llgpl))))
10034
10035 (define-public cl-change-case
10036 (sbcl-package->cl-source-package sbcl-cl-change-case))
10037
10038 (define-public ecl-cl-change-case
10039 (sbcl-package->ecl-package sbcl-cl-change-case))
10040
10041 (define-public sbcl-modularize
10042 (let ((commit "86c5d9a11fbd2df9f0f03ac10b5d71837c8934ba")
10043 (revision "1"))
10044 (package
10045 (name "sbcl-modularize")
10046 (version (git-version "1.0.0" revision commit))
10047 (source
10048 (origin
10049 (method git-fetch)
10050 (uri (git-reference
10051 (url "https://github.com/Shinmera/modularize")
10052 (commit commit)))
10053 (file-name (git-file-name name version))
10054 (sha256
10055 (base32 "1zys29rfkb649rkgl3snxhajk8d5yf7ryxkrwy020kwdh7zdsg7d"))))
10056 (build-system asdf-build-system/sbcl)
10057 (arguments
10058 `(#:test-asd-file "modularize-test-module.asd"
10059 #:asd-files '("modularize.asd" "modularize-test-module.asd")
10060 #:asd-systems '("modularize" "modularize-test-module")))
10061 (inputs
10062 `(("documentation-utils" ,sbcl-documentation-utils)
10063 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)))
10064 (home-page "https://shinmera.github.io/modularize/")
10065 (synopsis "Common Lisp modularization framework")
10066 (description
10067 "@code{MODULARIZE} is an attempt at providing a common interface to
10068 segregate major application components. This is achieved by adding special
10069 treatment to packages. Each module is a package that is specially registered,
10070 which allows it to interact and co-exist with other modules in better ways. For
10071 instance, by adding module definition options you can introduce mechanisms to
10072 tie modules together in functionality, hook into each other and so on.")
10073 (license license:zlib))))
10074
10075 (define-public ecl-modularize
10076 (sbcl-package->ecl-package sbcl-modularize))
10077
10078 (define-public cl-modularize
10079 (sbcl-package->cl-source-package sbcl-modularize))
10080
10081 (define-public sbcl-modularize-hooks
10082 (let ((commit "e0348ed3ffd59a9ec31ca4ab28289e748bfbf96a")
10083 (revision "1"))
10084 (package
10085 (name "sbcl-modularize-hooks")
10086 (version (git-version "1.0.2" revision commit))
10087 (source
10088 (origin
10089 (method git-fetch)
10090 (uri (git-reference
10091 (url "https://github.com/Shinmera/modularize-hooks")
10092 (commit commit)))
10093 (file-name (git-file-name "modularize-hooks" version))
10094 (sha256
10095 (base32 "12kjvin8hxidwkzfb7inqv5b6g5qzcssnj9wc497v2ixc56fqdz7"))))
10096 (build-system asdf-build-system/sbcl)
10097 (inputs
10098 `(("closer-mop" ,sbcl-closer-mop)
10099 ("lambda-fiddle" ,sbcl-lambda-fiddle)
10100 ("modularize" ,sbcl-modularize)
10101 ("trivial-arguments" ,sbcl-trivial-arguments)))
10102 (home-page "https://shinmera.github.io/modularize-hooks/")
10103 (synopsis "Generic hooks and triggers extension for Modularize")
10104 (description
10105 "This is a simple extension to @code{MODULARIZE} that allows modules to
10106 define and trigger hooks, which other modules can hook on to.")
10107 (license license:zlib))))
10108
10109 (define-public ecl-modularize-hooks
10110 (sbcl-package->ecl-package sbcl-modularize-hooks))
10111
10112 (define-public cl-modularize-hooks
10113 (sbcl-package->cl-source-package sbcl-modularize-hooks))
10114
10115 (define-public sbcl-modularize-interfaces
10116 (let ((commit "96353657afb8c7aeba7ef5b51eb04c5ed3bcb6ef")
10117 (revision "1"))
10118 (package
10119 (name "sbcl-modularize-interfaces")
10120 (version (git-version "0.9.3" revision commit))
10121 (source
10122 (origin
10123 (method git-fetch)
10124 (uri (git-reference
10125 (url "https://github.com/Shinmera/modularize-interfaces")
10126 (commit commit)))
10127 (file-name (git-file-name "modularize-interfaces" version))
10128 (sha256
10129 (base32 "0bjf4wy39cwf75m7vh0r7mmcchs09yz2lrbyap98hnq8blq70fhc"))))
10130 (build-system asdf-build-system/sbcl)
10131 (inputs
10132 `(("lambda-fiddle" ,sbcl-lambda-fiddle)
10133 ("modularize" ,sbcl-modularize)
10134 ("trivial-arguments" ,sbcl-trivial-arguments)
10135 ("trivial-indent" ,sbcl-trivial-indent)))
10136 (home-page "https://shinmera.github.io/modularize-interfaces/")
10137 (synopsis "Programmatical interfaces extension for Modularize")
10138 (description
10139 "This is an extension to @code{MODULARIZE} that allows your application
10140 to define interfaces in-code that serve both as a primary documentation and as
10141 compliance control.")
10142 (license license:zlib))))
10143
10144 (define-public ecl-modularize-interfaces
10145 (sbcl-package->ecl-package sbcl-modularize-interfaces))
10146
10147 (define-public cl-modularize-interfaces
10148 (sbcl-package->cl-source-package sbcl-modularize-interfaces))
10149
10150 (define-public sbcl-moptilities
10151 (let ((commit "a436f16b357c96b82397ec018ea469574c10dd41"))
10152 (package
10153 (name "sbcl-moptilities")
10154 (version (git-version "0.3.13" "1" commit))
10155 (home-page "https://github.com/gwkkwg/moptilities/")
10156 (source
10157 (origin
10158 (method git-fetch)
10159 (uri (git-reference
10160 (url home-page)
10161 (commit commit)))
10162 (file-name (git-file-name name version))
10163 (sha256
10164 (base32 "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc"))))
10165 (build-system asdf-build-system/sbcl)
10166 (inputs
10167 `(("closer-mop" ,sbcl-closer-mop)))
10168 (native-inputs
10169 `(("lift" ,sbcl-lift)))
10170 (arguments
10171 `(#:phases
10172 (modify-phases %standard-phases
10173 (add-after 'unpack 'fix-tests
10174 (lambda _
10175 (substitute* "lift-standard.config"
10176 ((":relative-to lift-test")
10177 ":relative-to moptilities-test"))
10178 #t)))))
10179 (synopsis "Compatibility layer for Common Lisp MOP implementation differences")
10180 (description
10181 "MOP utilities provide a common interface between Lisps and make the
10182 MOP easier to use.")
10183 (license license:expat))))
10184
10185 (define-public cl-moptilities
10186 (sbcl-package->cl-source-package sbcl-moptilities))
10187
10188 (define-public sbcl-osicat
10189 (let ((commit "de0c18a367eedc857e1902a7319828af072a0d97"))
10190 (package
10191 (name "sbcl-osicat")
10192 (version (git-version "0.7.0" "1" commit))
10193 (home-page "http://www.common-lisp.net/project/osicat/")
10194 (source
10195 (origin
10196 (method git-fetch)
10197 (uri (git-reference
10198 (url "https://github.com/osicat/osicat")
10199 (commit commit)))
10200 (file-name (git-file-name name version))
10201 (sha256
10202 (base32 "15viw5pi5sa7qq9b4n2rr3dj2jkqr180rh9z1lh8w3rgl42i2adc"))))
10203 (build-system asdf-build-system/sbcl)
10204 (inputs
10205 `(("alexandria" ,sbcl-alexandria)
10206 ("cffi" ,sbcl-cffi)
10207 ("trivial-features" ,sbcl-trivial-features)))
10208 (native-inputs
10209 `(("rt" ,sbcl-rt)))
10210 (synopsis "Operating system interface for Common Lisp")
10211 (description
10212 "Osicat is a lightweight operating system interface for Common Lisp on
10213 Unix-platforms. It is not a POSIX-style API, but rather a simple lispy
10214 accompaniment to the standard ANSI facilities.")
10215 (license license:expat))))
10216
10217 (define-public cl-osicat
10218 (sbcl-package->cl-source-package sbcl-osicat))
10219
10220 (define-public ecl-osicat
10221 (sbcl-package->ecl-package sbcl-osicat))
10222
10223 (define-public sbcl-clx-xembed
10224 (let ((commit "a5c4b844d31ee68ffa58c933cc1cdddde6990743")
10225 (revision "1"))
10226 (package
10227 (name "sbcl-clx-xembed")
10228 (version (git-version "0.1" revision commit))
10229 (home-page "https://github.com/laynor/clx-xembed")
10230 (source
10231 (origin
10232 (method git-fetch)
10233 (uri (git-reference
10234 (url "https://github.com/laynor/clx-xembed")
10235 (commit commit)))
10236 (file-name (git-file-name name version))
10237 (sha256
10238 (base32 "1abx4v36ycmfjdwpjk4hh8058ya8whwia7ds9vd96q2qsrs57f12"))))
10239 (build-system asdf-build-system/sbcl)
10240 (arguments
10241 `(#:asd-systems '("xembed")))
10242 (inputs
10243 `(("sbcl-clx" ,sbcl-clx)))
10244 (synopsis "CL(x) xembed protocol implementation ")
10245 (description "CL(x) xembed protocol implementation")
10246 ;; MIT License
10247 (license license:expat))))
10248
10249 (define-public cl-clx-xembed
10250 (sbcl-package->cl-source-package sbcl-clx-xembed))
10251
10252 (define-public ecl-clx-xembed
10253 (sbcl-package->ecl-package sbcl-clx-xembed))
10254
10255 (define-public sbcl-quantile-estimator
10256 (package
10257 (name "sbcl-quantile-estimator")
10258 (version "0.0.1")
10259 (source
10260 (origin
10261 (method git-fetch)
10262 (uri (git-reference
10263 (url "https://github.com/deadtrickster/quantile-estimator.cl")
10264 (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
10265 (file-name (git-file-name name version))
10266 (sha256
10267 (base32
10268 "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
10269 (build-system asdf-build-system/sbcl)
10270 (arguments
10271 '(#:asd-files '("quantile-estimator.asd")))
10272 (inputs
10273 `(("alexandria" ,sbcl-alexandria)))
10274 (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
10275 (synopsis
10276 "Effective computation of biased quantiles over data streams")
10277 (description
10278 "Common Lisp implementation of Graham Cormode and S.
10279 Muthukrishnan's Effective Computation of Biased Quantiles over Data
10280 Streams in ICDE’05.")
10281 (license license:expat)))
10282
10283 (define-public cl-quantile-estimator
10284 (sbcl-package->cl-source-package sbcl-quantile-estimator))
10285
10286 (define-public ecl-quantile-estimator
10287 (sbcl-package->ecl-package sbcl-quantile-estimator))
10288
10289 (define-public sbcl-prometheus
10290 (package
10291 (name "sbcl-prometheus")
10292 (version "0.4.1")
10293 (source
10294 (origin
10295 (method git-fetch)
10296 (uri (git-reference
10297 (url "https://github.com/deadtrickster/prometheus.cl")
10298 (commit "7352b92296996ff383503e19bdd3bcea30409a15")))
10299 (file-name (git-file-name name version))
10300 (sha256
10301 (base32
10302 "0fzczls2kfgdx18pja4lqxjrz72i583185d8nq0pb3s331hhzh0z"))))
10303 (build-system asdf-build-system/sbcl)
10304 (inputs
10305 `(("alexandria" ,sbcl-alexandria)
10306 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10307 ("cffi" ,sbcl-cffi)
10308 ("cl-fad" ,sbcl-cl-fad)
10309 ("cl-ppcre" ,sbcl-cl-ppcre)
10310 ("drakma" ,sbcl-drakma)
10311 ("hunchentoot" ,sbcl-hunchentoot)
10312 ("local-time" ,sbcl-local-time)
10313 ("quantile-estimator" ,sbcl-quantile-estimator)
10314 ("salza2" ,sbcl-salza2)
10315 ("split-sequence" ,sbcl-split-sequence)
10316 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10317 (arguments
10318 '(#:asd-files '("prometheus.asd"
10319 "prometheus.collectors.sbcl.asd"
10320 "prometheus.collectors.process.asd"
10321 "prometheus.formats.text.asd"
10322 "prometheus.exposers.hunchentoot.asd"
10323 "prometheus.pushgateway.asd")
10324 #:asd-systems '("prometheus"
10325 "prometheus.collectors.sbcl"
10326 "prometheus.collectors.process"
10327 "prometheus.formats.text"
10328 "prometheus.exposers.hunchentoot"
10329 "prometheus.pushgateway")))
10330 (home-page "https://github.com/deadtrickster/prometheus.cl")
10331 (synopsis "Prometheus.io Common Lisp client")
10332 (description "Prometheus.io Common Lisp client.")
10333 (license license:expat)))
10334
10335 (define-public cl-prometheus
10336 (sbcl-package->cl-source-package sbcl-prometheus))
10337
10338 (define-public ecl-prometheus
10339 (sbcl-package->ecl-package sbcl-prometheus))
10340
10341 (define-public sbcl-uuid
10342 (let ((commit "e7d6680c3138385c0708f7aaf0c96622eeb140e8"))
10343 (package
10344 (name "sbcl-uuid")
10345 (version (git-version "2012.12.26" "1" commit))
10346 (source
10347 (origin
10348 (method git-fetch)
10349 (uri (git-reference
10350 (url "https://github.com/dardoria/uuid")
10351 (commit commit)))
10352 (file-name (git-file-name name version))
10353 (sha256
10354 (base32
10355 "0jnyp2kibcf5cwi60l6grjrj8wws9chasjvsw7xzwyym2lyid46f"))))
10356 (build-system asdf-build-system/sbcl)
10357 (inputs
10358 `(("ironclad" ,sbcl-ironclad)
10359 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10360 (home-page "https://github.com/dardoria/uuid")
10361 (synopsis
10362 "Common Lisp implementation of UUIDs according to RFC4122")
10363 (description
10364 "Common Lisp implementation of UUIDs according to RFC4122.")
10365 (license license:llgpl))))
10366
10367 (define-public cl-uuid
10368 (sbcl-package->cl-source-package sbcl-uuid))
10369
10370 (define-public ecl-uuid
10371 (sbcl-package->ecl-package sbcl-uuid))
10372
10373 (define-public sbcl-dissect
10374 (let ((commit "cffd38479f0e64e805f167bbdb240b783ecc8d45"))
10375 (package
10376 (name "sbcl-dissect")
10377 (version (git-version "1.0.0" "1" commit))
10378 (source
10379 (origin
10380 (method git-fetch)
10381 (uri (git-reference
10382 (url "https://github.com/Shinmera/dissect")
10383 (commit commit)))
10384 (file-name (git-file-name name version))
10385 (sha256
10386 (base32
10387 "0rmsjkgjl90gl6ssvgd60hb0d5diyhsiyypvw9hbc0ripvbmk5r5"))))
10388 (build-system asdf-build-system/sbcl)
10389 (inputs
10390 `(("cl-ppcre" ,sbcl-cl-ppcre)))
10391 (home-page "https://shinmera.github.io/dissect/")
10392 (synopsis
10393 "Introspection library for the call stack and restarts")
10394 (description
10395 "Dissect is a small Common Lisp library for introspecting the call stack
10396 and active restarts.")
10397 (license license:zlib))))
10398
10399 (define-public cl-dissect
10400 (sbcl-package->cl-source-package sbcl-dissect))
10401
10402 (define-public ecl-dissect
10403 (sbcl-package->ecl-package sbcl-dissect))
10404
10405 (define-public sbcl-rove
10406 (package
10407 (name "sbcl-rove")
10408 (version "0.9.6")
10409 (source
10410 (origin
10411 (method git-fetch)
10412 (uri (git-reference
10413 (url "https://github.com/fukamachi/rove")
10414 (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21")))
10415 (file-name (git-file-name name version))
10416 (sha256
10417 (base32
10418 "07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q"))))
10419 (build-system asdf-build-system/sbcl)
10420 (inputs
10421 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10422 ("dissect" ,sbcl-dissect)
10423 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
10424 (home-page "https://github.com/fukamachi/rove")
10425 (synopsis
10426 "Yet another common lisp testing library")
10427 (description
10428 "Rove is a unit testing framework for Common Lisp applications.
10429 This is intended to be a successor of Prove.")
10430 (license license:bsd-3)))
10431
10432 (define-public cl-rove
10433 (sbcl-package->cl-source-package sbcl-rove))
10434
10435 (define-public ecl-rove
10436 (sbcl-package->ecl-package sbcl-rove))
10437
10438 (define-public sbcl-exponential-backoff
10439 (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
10440 (package
10441 (name "sbcl-exponential-backoff")
10442 (version (git-version "0" "1" commit))
10443 (source
10444 (origin
10445 (method git-fetch)
10446 (uri (git-reference
10447 (url "https://github.com/death/exponential-backoff")
10448 (commit commit)))
10449 (file-name (git-file-name name version))
10450 (sha256
10451 (base32
10452 "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
10453 (build-system asdf-build-system/sbcl)
10454 (home-page "https://github.com/death/exponential-backoff")
10455 (synopsis "Exponential backoff algorithm in Common Lisp")
10456 (description
10457 "An implementation of the exponential backoff algorithm in Common Lisp.
10458 Inspired by the implementation found in Chromium. Read the header file to
10459 learn about each of the parameters.")
10460 (license license:expat))))
10461
10462 (define-public cl-exponential-backoff
10463 (sbcl-package->cl-source-package sbcl-exponential-backoff))
10464
10465 (define-public ecl-exponential-backoff
10466 (sbcl-package->ecl-package sbcl-exponential-backoff))
10467
10468 (define-public sbcl-sxql
10469 (let ((commit "5aa8b739492c5829e8623432b5d46482263990e8"))
10470 (package
10471 (name "sbcl-sxql")
10472 (version (git-version "0.1.0" "1" commit))
10473 (source
10474 (origin
10475 (method git-fetch)
10476 (uri (git-reference
10477 (url "https://github.com/fukamachi/sxql")
10478 (commit commit)))
10479 (file-name (git-file-name name version))
10480 (sha256
10481 (base32
10482 "0k25p6w2ld9cn8q8s20lda6yjfyp4q89219sviayfgixnj27avnj"))))
10483 (build-system asdf-build-system/sbcl)
10484 (arguments
10485 `(#:test-asd-file "sxql-test.asd"))
10486 (inputs
10487 `(("alexandria" ,sbcl-alexandria)
10488 ("cl-syntax" ,sbcl-cl-syntax)
10489 ("iterate" ,sbcl-iterate)
10490 ("optima" ,sbcl-optima)
10491 ("split-sequence" ,sbcl-split-sequence)
10492 ("trivial-types" ,sbcl-trivial-types)))
10493 (native-inputs
10494 `(("prove" ,sbcl-prove)))
10495 (home-page "https://github.com/fukamachi/sxql")
10496 (synopsis "SQL generator for Common Lisp")
10497 (description "SQL generator for Common Lisp.")
10498 (license license:bsd-3))))
10499
10500 (define-public cl-sxql
10501 (sbcl-package->cl-source-package sbcl-sxql))
10502
10503 (define-public ecl-sxql
10504 (sbcl-package->ecl-package sbcl-sxql))
10505
10506 (define-public sbcl-1am
10507 (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
10508 (package
10509 (name "sbcl-1am")
10510 (version (git-version "0.0" "1" commit))
10511 (source
10512 (origin
10513 (method git-fetch)
10514 (uri (git-reference
10515 (url "https://github.com/lmj/1am")
10516 (commit commit)))
10517 (file-name (git-file-name name version))
10518 (sha256
10519 (base32
10520 "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
10521 (build-system asdf-build-system/sbcl)
10522 (arguments
10523 `(#:asd-systems '("1am")))
10524 (home-page "https://github.com/lmj/1am")
10525 (synopsis "Minimal testing framework for Common Lisp")
10526 (description "A minimal testing framework for Common Lisp.")
10527 (license license:expat))))
10528
10529 (define-public cl-1am
10530 (sbcl-package->cl-source-package sbcl-1am))
10531
10532 (define-public ecl-1am
10533 (sbcl-package->ecl-package sbcl-1am))
10534
10535 (define-public sbcl-cl-ascii-table
10536 (let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
10537 (revision "1"))
10538 (package
10539 (name "sbcl-cl-ascii-table")
10540 (version (git-version "0.0.0" revision commit))
10541 (source
10542 (origin
10543 (method git-fetch)
10544 (uri (git-reference
10545 (url "https://github.com/telephil/cl-ascii-table")
10546 (commit commit)))
10547 (file-name (git-file-name name version))
10548 (sha256
10549 (base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
10550 (build-system asdf-build-system/sbcl)
10551 (synopsis "Library to make ascii-art tables")
10552 (description
10553 "This is a Common Lisp library to present tabular data in ascii-art
10554 tables.")
10555 (home-page "https://github.com/telephil/cl-ascii-table")
10556 (license license:expat))))
10557
10558 (define-public cl-ascii-table
10559 (sbcl-package->cl-source-package sbcl-cl-ascii-table))
10560
10561 (define-public ecl-cl-ascii-table
10562 (sbcl-package->ecl-package sbcl-cl-ascii-table))
10563
10564 (define-public sbcl-cl-rdkafka
10565 (package
10566 (name "sbcl-cl-rdkafka")
10567 (version "1.0.2")
10568 (source
10569 (origin
10570 (method git-fetch)
10571 (uri (git-reference
10572 (url "https://github.com/SahilKang/cl-rdkafka")
10573 (commit (string-append "v" version))))
10574 (file-name (git-file-name name version))
10575 (sha256
10576 (base32
10577 "1qcgfd4h7syilzmrmd4z2vknbvawda3q3ykw7xm8n381syry4g82"))))
10578 (build-system asdf-build-system/sbcl)
10579 (arguments
10580 `(#:tests? #f ; Attempts to connect to locally running Kafka
10581 #:phases
10582 (modify-phases %standard-phases
10583 (add-after 'unpack 'fix-paths
10584 (lambda* (#:key inputs #:allow-other-keys)
10585 (substitute* "src/low-level/librdkafka-bindings.lisp"
10586 (("librdkafka" all)
10587 (string-append (assoc-ref inputs "librdkafka") "/lib/"
10588 all))))))))
10589 (inputs
10590 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10591 ("cffi" ,sbcl-cffi)
10592 ("librdkafka" ,librdkafka)
10593 ("lparallel" ,sbcl-lparallel)
10594 ("trivial-garbage" ,sbcl-trivial-garbage)))
10595 (home-page "https://github.com/SahilKang/cl-rdkafka")
10596 (synopsis "Common Lisp client library for Apache Kafka")
10597 (description "A Common Lisp client library for Apache Kafka.")
10598 (license license:gpl3)))
10599
10600 (define-public cl-rdkafka
10601 (sbcl-package->cl-source-package sbcl-cl-rdkafka))
10602
10603 (define-public ecl-cl-rdkafka
10604 (sbcl-package->ecl-package sbcl-cl-rdkafka))
10605
10606 (define-public sbcl-acclimation
10607 (let ((commit "4d51150902568fcd59335f4cc4cfa022df6116a5"))
10608 (package
10609 (name "sbcl-acclimation")
10610 (version (git-version "0.0.0" "1" commit))
10611 (source
10612 (origin
10613 (method git-fetch)
10614 (uri (git-reference
10615 (url "https://github.com/robert-strandh/Acclimation")
10616 (commit commit)))
10617 (file-name (git-file-name name version))
10618 (sha256
10619 (base32
10620 "1aw7rarjl8ai57h0jxnp9hr3dka7qrs55mmbl1p6rhd6xj8mp9wq"))))
10621 (build-system asdf-build-system/sbcl)
10622 (home-page "https://github.com/robert-strandh/Acclimation")
10623 (synopsis "Internationalization library for Common Lisp")
10624 (description "This project is meant to provide tools for
10625 internationalizing Common Lisp programs.
10626
10627 One important aspect of internationalization is of course the language used in
10628 error messages, documentation strings, etc. But with this project we provide
10629 tools for all other aspects of internationalization as well, including dates,
10630 weight, temperature, names of physical quantitites, etc.")
10631 (license license:bsd-2))))
10632
10633 (define-public cl-acclimation
10634 (sbcl-package->cl-source-package sbcl-acclimation))
10635
10636 (define-public ecl-acclimation
10637 (sbcl-package->ecl-package sbcl-acclimation))
10638
10639 (define-public sbcl-clump
10640 (let ((commit "1ea4dbac1cb86713acff9ae58727dd187d21048a"))
10641 (package
10642 (name "sbcl-clump")
10643 (version (git-version "0.0.0" "1" commit))
10644 (source
10645 (origin
10646 (method git-fetch)
10647 (uri (git-reference
10648 (url "https://github.com/robert-strandh/Clump")
10649 (commit commit)))
10650 (file-name (git-file-name name version))
10651 (sha256
10652 (base32
10653 "1639msyagsswj85gc0wd90jgh8588j3qg5q70by9s2brf2q6w4lh"))))
10654 (inputs
10655 `(("acclimation" ,sbcl-acclimation)))
10656 (build-system asdf-build-system/sbcl)
10657 (home-page "https://github.com/robert-strandh/Clump")
10658 (synopsis "Collection of tree implementations for Common Lisp")
10659 (description "The purpose of this library is to provide a collection of
10660 implementations of trees.
10661
10662 In contrast to existing libraries such as cl-containers, it does not impose a
10663 particular use for the trees. Instead, it aims for a stratified design,
10664 allowing client code to choose between different levels of abstraction.
10665
10666 As a consequence of this policy, low-level interfaces are provided where
10667 the concrete representation is exposed, but also high level interfaces
10668 where the trees can be used as search trees or as trees that represent
10669 sequences of objects.")
10670 (license license:bsd-2))))
10671
10672 (define-public cl-clump
10673 (sbcl-package->cl-source-package sbcl-clump))
10674
10675 (define-public ecl-clump
10676 (sbcl-package->ecl-package sbcl-clump))
10677
10678 (define-public sbcl-cluffer
10679 (let ((commit "4aad29c276a58a593064e79972ee4d77cae0af4a"))
10680 (package
10681 (name "sbcl-cluffer")
10682 (version (git-version "0.0.0" "1" commit))
10683 (source
10684 (origin
10685 (method git-fetch)
10686 (uri (git-reference
10687 (url "https://github.com/robert-strandh/cluffer")
10688 (commit commit)))
10689 (file-name (git-file-name name version))
10690 (sha256
10691 (base32
10692 "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"))))
10693 (build-system asdf-build-system/sbcl)
10694 (inputs
10695 `(("acclimation" ,sbcl-acclimation)
10696 ("clump" ,sbcl-clump)))
10697 (home-page "https://github.com/robert-strandh/cluffer")
10698 (synopsis "Common Lisp library providing a protocol for text-editor buffers")
10699 (description "Cluffer is a library for representing the buffer of a text
10700 editor. As such, it defines a set of CLOS protocols for client code to
10701 interact with the buffer contents in various ways, and it supplies different
10702 implementations of those protocols for different purposes.")
10703 (license license:bsd-2))))
10704
10705 (define-public cl-cluffer
10706 (sbcl-package->cl-source-package sbcl-cluffer))
10707
10708 (define-public ecl-cluffer
10709 (sbcl-package->ecl-package sbcl-cluffer))
10710
10711 (define-public sbcl-cl-libsvm-format
10712 (let ((commit "3300f84fd8d9f5beafc114f543f9d83417c742fb")
10713 (revision "0"))
10714 (package
10715 (name "sbcl-cl-libsvm-format")
10716 (version (git-version "0.1.0" revision commit))
10717 (source
10718 (origin
10719 (method git-fetch)
10720 (uri (git-reference
10721 (url "https://github.com/masatoi/cl-libsvm-format")
10722 (commit commit)))
10723 (file-name (git-file-name name version))
10724 (sha256
10725 (base32
10726 "0284aj84xszhkhlivaigf9qj855fxad3mzmv3zfr0qzb5k0nzwrg"))))
10727 (build-system asdf-build-system/sbcl)
10728 (native-inputs
10729 `(("prove" ,sbcl-prove)))
10730 (inputs
10731 `(("alexandria" ,sbcl-alexandria)))
10732 (synopsis "LibSVM data format reader for Common Lisp")
10733 (description
10734 "This Common Lisp library provides a fast reader for data in LibSVM
10735 format.")
10736 (home-page "https://github.com/masatoi/cl-libsvm-format")
10737 (license license:expat))))
10738
10739 (define-public cl-libsvm-format
10740 (sbcl-package->cl-source-package sbcl-cl-libsvm-format))
10741
10742 (define-public ecl-cl-libsvm-format
10743 (sbcl-package->ecl-package sbcl-cl-libsvm-format))
10744
10745 (define-public sbcl-cl-online-learning
10746 (let ((commit "87fbef8a340219e853adb3a5bf44a0470da76964")
10747 (revision "1"))
10748 (package
10749 (name "sbcl-cl-online-learning")
10750 (version (git-version "0.5" revision commit))
10751 (source
10752 (origin
10753 (method git-fetch)
10754 (uri (git-reference
10755 (url "https://github.com/masatoi/cl-online-learning")
10756 (commit commit)))
10757 (file-name (git-file-name "cl-online-learning" version))
10758 (sha256
10759 (base32
10760 "1lfq04lnxivx59nq5dd02glyqsqzf3vdn4s9b8wnaln5fs8g2ph9"))))
10761 (build-system asdf-build-system/sbcl)
10762 (native-inputs
10763 `(("prove" ,sbcl-prove)))
10764 (inputs
10765 `(("cl-libsvm-format" ,sbcl-cl-libsvm-format)
10766 ("cl-store" ,sbcl-cl-store)))
10767 (arguments
10768 `(#:test-asd-file "cl-online-learning-test.asd"
10769 #:asd-systems '("cl-online-learning-test"
10770 "cl-online-learning")))
10771 (home-page "https://github.com/masatoi/cl-online-learning")
10772 (synopsis "Online Machine Learning for Common Lisp")
10773 (description
10774 "This library contains a collection of machine learning algorithms for
10775 online linear classification written in Common Lisp.")
10776 (license license:expat))))
10777
10778 (define-public cl-online-learning
10779 (sbcl-package->cl-source-package sbcl-cl-online-learning))
10780
10781 (define-public ecl-cl-online-learning
10782 (sbcl-package->ecl-package sbcl-cl-online-learning))
10783
10784 (define-public sbcl-cl-mpg123
10785 (let ((commit "5f042c839d2ea4a2ff2a7b60c839d8633d64161d")
10786 (revision "1"))
10787 (package
10788 (name "sbcl-cl-mpg123")
10789 (version (git-version "1.0.0" revision commit))
10790 (source
10791 (origin
10792 (method git-fetch)
10793 (uri (git-reference
10794 (url "https://github.com/Shirakumo/cl-mpg123")
10795 (commit commit)))
10796 (file-name (git-file-name "cl-mpg123" version))
10797 (sha256
10798 (base32 "1hl721xaczxck008ax2y3jpkm509ry1sg3lklh2k76764m3ndrjf"))
10799 (modules '((guix build utils)))
10800 (snippet
10801 '(begin
10802 ;; Remove bundled pre-compiled libraries.
10803 (delete-file-recursively "static")
10804 #t))))
10805 (build-system asdf-build-system/sbcl)
10806 (arguments
10807 `(#:asd-files '("cl-mpg123.asd" "cl-mpg123-example.asd")
10808 #:asd-systems '("cl-mpg123" "cl-mpg123-example")
10809 #:phases
10810 (modify-phases %standard-phases
10811 (add-after 'unpack 'fix-paths
10812 (lambda* (#:key inputs #:allow-other-keys)
10813 (substitute* "low-level.lisp"
10814 (("libmpg123.so" all)
10815 (string-append (assoc-ref inputs "libmpg123")
10816 "/lib/" all))))))))
10817 (inputs
10818 `(("cffi" ,sbcl-cffi)
10819 ("cl-out123" ,sbcl-cl-out123)
10820 ("documentation-utils" ,sbcl-documentation-utils)
10821 ("libmpg123" ,mpg123)
10822 ("trivial-features" ,sbcl-trivial-features)
10823 ("trivial-garbage" ,sbcl-trivial-garbage)
10824 ("verbose" ,sbcl-verbose)))
10825 (home-page "https://shirakumo.github.io/cl-mpg123/")
10826 (synopsis "Common Lisp bindings to libmpg123")
10827 (description
10828 "This is a bindings and wrapper library to @code{libmpg123} allowing for
10829 convenient, extensive, and fast decoding of MPEG1/2/3 (most prominently mp3)
10830 files.")
10831 (license license:zlib))))
10832
10833 (define-public ecl-cl-mpg123
10834 (sbcl-package->ecl-package sbcl-cl-mpg123))
10835
10836 (define-public cl-mpg123
10837 (sbcl-package->cl-source-package sbcl-cl-mpg123))
10838
10839 (define-public sbcl-cl-out123
10840 (let ((commit "6b58d3f8c2a28ad09059ac4c60fb3c781b9b421b")
10841 (revision "1"))
10842 (package
10843 (name "sbcl-cl-out123")
10844 (version (git-version "1.0.0" revision commit))
10845 (source
10846 (origin
10847 (method git-fetch)
10848 (uri (git-reference
10849 (url "https://github.com/Shirakumo/cl-out123")
10850 (commit commit)))
10851 (file-name (git-file-name "cl-out123" version))
10852 (sha256
10853 (base32 "0mdwgfax6sq68wvdgjjp78i40ah7wqkpqnvaq8a1c509k7ghdgv1"))
10854 (modules '((guix build utils)))
10855 (snippet
10856 '(begin
10857 ;; Remove bundled pre-compiled libraries.
10858 (delete-file-recursively "static")
10859 #t))))
10860 (build-system asdf-build-system/sbcl)
10861 (arguments
10862 `(#:phases
10863 (modify-phases %standard-phases
10864 (add-after 'unpack 'fix-paths
10865 (lambda* (#:key inputs #:allow-other-keys)
10866 (substitute* "low-level.lisp"
10867 (("libout123.so" all)
10868 (string-append (assoc-ref inputs "libout123")
10869 "/lib/" all)))))
10870 ;; NOTE: (Sharlatan-20210129T134529+0000): ECL package `ext' has no
10871 ;; exported macro `without-interrupts' it's moved to `mp' package
10872 ;; https://github.com/Shirakumo/cl-out123/issues/2
10873 ;; https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/mp.lsp
10874 (add-after 'unpack 'fix-ecl-package-name
10875 (lambda _
10876 (substitute* "wrapper.lisp"
10877 (("ext:without-interrupts.*") "mp:without-interrupts\n"))
10878 #t)))))
10879 (inputs
10880 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10881 ("cffi" ,sbcl-cffi)
10882 ("documentation-utils" ,sbcl-documentation-utils)
10883 ("libout123" ,mpg123)
10884 ("trivial-features" ,sbcl-trivial-features)
10885 ("trivial-garbage" ,sbcl-trivial-garbage)))
10886 (home-page "https://shirakumo.github.io/cl-out123/")
10887 (synopsis "Common Lisp bindings to libout123")
10888 (description
10889 "This is a bindings library to @code{libout123} which allows easy
10890 cross-platform audio playback.")
10891 (license license:zlib))))
10892
10893 (define-public ecl-cl-out123
10894 (sbcl-package->ecl-package sbcl-cl-out123))
10895
10896 (define-public cl-out123
10897 (sbcl-package->cl-source-package sbcl-cl-out123))
10898
10899 (define-public sbcl-cl-random-forest
10900 (let ((commit "fedb36ce99bb6f4d7e3a7dd6d8b058f331308f91")
10901 (revision "1"))
10902 (package
10903 (name "sbcl-cl-random-forest")
10904 (version (git-version "0.1" revision commit))
10905 (source
10906 (origin
10907 (method git-fetch)
10908 (uri (git-reference
10909 (url "https://github.com/masatoi/cl-random-forest")
10910 (commit commit)))
10911 (file-name (git-file-name name version))
10912 (sha256
10913 (base32
10914 "0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
10915 (build-system asdf-build-system/sbcl)
10916 (native-inputs
10917 `(("prove" ,sbcl-prove)
10918 ("trivial-garbage" ,sbcl-trivial-garbage)))
10919 (inputs
10920 `(("alexandria" ,sbcl-alexandria)
10921 ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
10922 ("cl-online-learning" ,sbcl-cl-online-learning)
10923 ("lparallel" ,sbcl-lparallel)))
10924 (arguments
10925 `(#:tests? #f)) ; The tests download data from the Internet
10926 (synopsis "Random Forest and Global Refinement for Common Lisp")
10927 (description
10928 "CL-random-forest is an implementation of Random Forest for multiclass
10929 classification and univariate regression written in Common Lisp. It also
10930 includes an implementation of Global Refinement of Random Forest.")
10931 (home-page "https://github.com/masatoi/cl-random-forest")
10932 (license license:expat))))
10933
10934 (define-public cl-random-forest
10935 (sbcl-package->cl-source-package sbcl-cl-random-forest))
10936
10937 (define-public ecl-cl-random-forest
10938 (sbcl-package->ecl-package sbcl-cl-random-forest))
10939
10940 (define-public sbcl-bordeaux-fft
10941 (let ((commit "4a1f5600cae59bdabcb32de4ee2d7d73a9450d6e")
10942 (revision "0"))
10943 (package
10944 (name "sbcl-bordeaux-fft")
10945 (version (git-version "1.0.1" revision commit))
10946 (source
10947 (origin
10948 (method git-fetch)
10949 (uri (git-reference
10950 (url "https://github.com/ahefner/bordeaux-fft")
10951 (commit commit)))
10952 (file-name (git-file-name name version))
10953 (sha256
10954 (base32 "0j584w6kq2k6r8lp2i14f9605rxhp3r15s33xs08iz1pndn6iwqf"))))
10955 (build-system asdf-build-system/sbcl)
10956 (home-page "http://vintage-digital.com/hefner/software/bordeaux-fft/")
10957 (synopsis "Fast Fourier Transform for Common Lisp")
10958 (description
10959 "The Bordeaux-FFT library provides a reasonably efficient implementation
10960 of the Fast Fourier Transform and its inverse for complex-valued inputs, in
10961 portable Common Lisp.")
10962 (license license:gpl2+))))
10963
10964 (define-public cl-bordeaux-fft
10965 (sbcl-package->cl-source-package sbcl-bordeaux-fft))
10966
10967 (define-public ecl-bordeaux-fft
10968 (sbcl-package->ecl-package sbcl-bordeaux-fft))
10969
10970 (define-public sbcl-napa-fft3
10971 (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236")
10972 (revision "0"))
10973 (package
10974 (name "sbcl-napa-fft3")
10975 (version (git-version "0.0.1" revision commit))
10976 (source
10977 (origin
10978 (method git-fetch)
10979 (uri (git-reference
10980 (url "https://github.com/pkhuong/Napa-FFT3")
10981 (commit commit)))
10982 (file-name (git-file-name name version))
10983 (sha256
10984 (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp"))))
10985 (build-system asdf-build-system/sbcl)
10986 (home-page "https://github.com/pkhuong/Napa-FFT3")
10987 (synopsis "Fast Fourier Transform routines in Common Lisp")
10988 (description
10989 "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also
10990 buildings blocks to express common operations that involve DFTs: filtering,
10991 convolutions, etc.")
10992 (license license:bsd-3))))
10993
10994 (define-public cl-napa-fft3
10995 (sbcl-package->cl-source-package sbcl-napa-fft3))
10996
10997 (define-public sbcl-cl-tga
10998 (let ((commit "4dc2f7b8a259b9360862306640a07a23d4afaacc")
10999 (revision "0"))
11000 (package
11001 (name "sbcl-cl-tga")
11002 (version (git-version "0.0.0" revision commit))
11003 (source
11004 (origin
11005 (method git-fetch)
11006 (uri (git-reference
11007 (url "https://github.com/fisxoj/cl-tga")
11008 (commit commit)))
11009 (file-name (git-file-name name version))
11010 (sha256
11011 (base32 "03k3npmn0xd3fd2m7vwxph82av2xrfb150imqrinlzqmzvz1v1br"))))
11012 (build-system asdf-build-system/sbcl)
11013 (home-page "https://github.com/fisxoj/cl-tga")
11014 (synopsis "TGA file loader for Common Lisp")
11015 (description
11016 "Cl-tga was written to facilitate loading @emph{.tga} files into OpenGL
11017 programs. It's a very simple library, and, at the moment, only supports
11018 non-RLE encoded forms of the files.")
11019 (license license:expat))))
11020
11021 (define-public cl-tga
11022 (sbcl-package->cl-source-package sbcl-cl-tga))
11023
11024 (define-public ecl-cl-tga
11025 (sbcl-package->ecl-package sbcl-cl-tga))
11026
11027 (define-public sbcl-com.gigamonkeys.binary-data
11028 (let ((commit "22e908976d7f3e2318b7168909f911b4a00963ee")
11029 (revision "0"))
11030 (package
11031 (name "sbcl-com.gigamonkeys.binary-data")
11032 (version (git-version "0.0.0" revision commit))
11033 (source
11034 (origin
11035 (method git-fetch)
11036 (uri (git-reference
11037 (url "https://github.com/gigamonkey/monkeylib-binary-data")
11038 (commit commit)))
11039 (file-name (git-file-name name version))
11040 (sha256
11041 (base32 "072v417vmcnvmyh8ddq9vmwwrizm7zwz9dpzi14qy9nsw8q649zw"))))
11042 (build-system asdf-build-system/sbcl)
11043 (inputs
11044 `(("alexandria" ,sbcl-alexandria)))
11045 (home-page "https://github.com/gigamonkey/monkeylib-binary-data")
11046 (synopsis "Common Lisp library for reading and writing binary data")
11047 (description
11048 "This a Common Lisp library for reading and writing binary data. It is
11049 based on code from chapter 24 of the book @emph{Practical Common Lisp}.")
11050 (license license:bsd-3))))
11051
11052 (define-public cl-com.gigamonkeys.binary-data
11053 (sbcl-package->cl-source-package sbcl-com.gigamonkeys.binary-data))
11054
11055 (define-public ecl-com.gigamonkeys.binary-data
11056 (sbcl-package->ecl-package sbcl-com.gigamonkeys.binary-data))
11057
11058 (define-public sbcl-deflate
11059 (package
11060 (name "sbcl-deflate")
11061 (version "1.0.3")
11062 (source
11063 (origin
11064 (method git-fetch)
11065 (uri (git-reference
11066 (url "https://github.com/pmai/Deflate")
11067 (commit (string-append "release-" version))))
11068 (file-name (git-file-name name version))
11069 (sha256
11070 (base32 "1jpdjnxh6cw2d8hk70r2sxn92is52s9b855irvwkdd777fdciids"))))
11071 (build-system asdf-build-system/sbcl)
11072 (home-page "https://github.com/pmai/Deflate")
11073 (synopsis "Native deflate decompression for Common Lisp")
11074 (description
11075 "This library is an implementation of Deflate (RFC 1951) decompression,
11076 with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952)
11077 wrappers of deflate streams. It currently does not handle compression.")
11078 (license license:expat)))
11079
11080 (define-public cl-deflate
11081 (sbcl-package->cl-source-package sbcl-deflate))
11082
11083 (define-public ecl-deflate
11084 (sbcl-package->ecl-package sbcl-deflate))
11085
11086 (define-public sbcl-skippy
11087 (let ((commit "e456210202ca702c792292c5060a264d45e47090")
11088 (revision "0"))
11089 (package
11090 (name "sbcl-skippy")
11091 (version (git-version "1.3.12" revision commit))
11092 (source
11093 (origin
11094 (method git-fetch)
11095 (uri (git-reference
11096 (url "https://github.com/xach/skippy")
11097 (commit commit)))
11098 (file-name (git-file-name name version))
11099 (sha256
11100 (base32 "1sxbn5nh24qpx9w64x8mhp259cxcl1x8p126wk3b91ijjsj7l5vj"))))
11101 (build-system asdf-build-system/sbcl)
11102 (home-page "https://xach.com/lisp/skippy/")
11103 (synopsis "Common Lisp library for GIF images")
11104 (description
11105 "Skippy is a Common Lisp library to read and write GIF image files.")
11106 (license license:bsd-2))))
11107
11108 (define-public cl-skippy
11109 (sbcl-package->cl-source-package sbcl-skippy))
11110
11111 (define-public ecl-skippy
11112 (sbcl-package->ecl-package sbcl-skippy))
11113
11114 (define-public sbcl-cl-freetype2
11115 (let ((commit "96058da730b4812df916c1f4ee18c99b3b15a3de")
11116 (revision "0"))
11117 (package
11118 (name "sbcl-cl-freetype2")
11119 (version (git-version "1.1" revision commit))
11120 (source
11121 (origin
11122 (method git-fetch)
11123 (uri (git-reference
11124 (url "https://github.com/rpav/cl-freetype2")
11125 (commit commit)))
11126 (file-name (git-file-name name version))
11127 (sha256
11128 (base32 "0f8darhairgxnb5bzqcny7nh7ss3471bdzix5rzcyiwdbr5kymjl"))))
11129 (build-system asdf-build-system/sbcl)
11130 (native-inputs
11131 `(("fiveam" ,sbcl-fiveam)))
11132 (inputs
11133 `(("alexandria" ,sbcl-alexandria)
11134 ("cffi" ,sbcl-cffi)
11135 ("freetype" ,freetype)
11136 ("trivial-garbage" ,sbcl-trivial-garbage)))
11137 (arguments
11138 `(#:phases
11139 (modify-phases %standard-phases
11140 (add-after 'unpack 'fix-paths
11141 (lambda* (#:key inputs #:allow-other-keys)
11142 (substitute* "src/ffi/ft2-lib.lisp"
11143 (("\"libfreetype\"")
11144 (string-append "\"" (assoc-ref inputs "freetype")
11145 "/lib/libfreetype\"")))
11146 (substitute* "src/ffi/grovel/grovel-freetype2.lisp"
11147 (("-I/usr/include/freetype")
11148 (string-append "-I" (assoc-ref inputs "freetype")
11149 "/include/freetype")))
11150 #t)))))
11151 (home-page "https://github.com/rpav/cl-freetype2")
11152 (synopsis "Common Lisp bindings for Freetype 2")
11153 (description
11154 "This is a general Freetype 2 wrapper for Common Lisp using CFFI. It's
11155 geared toward both using Freetype directly by providing a simplified API, as
11156 well as providing access to the underlying C structures and functions for use
11157 with other libraries which may also use Freetype.")
11158 (license license:bsd-3))))
11159
11160 (define-public cl-freetype2
11161 (sbcl-package->cl-source-package sbcl-cl-freetype2))
11162
11163 (define-public ecl-cl-freetype2
11164 (sbcl-package->ecl-package sbcl-cl-freetype2))
11165
11166 (define-public sbcl-opticl-core
11167 (let ((commit "b7cd13d26df6b824b216fbc360dc27bfadf04999")
11168 (revision "0"))
11169 (package
11170 (name "sbcl-opticl-core")
11171 (version (git-version "0.0.0" revision commit))
11172 (source
11173 (origin
11174 (method git-fetch)
11175 (uri (git-reference
11176 (url "https://github.com/slyrus/opticl-core")
11177 (commit commit)))
11178 (file-name (git-file-name name version))
11179 (sha256
11180 (base32 "0458bllabcdjghfrqx6aki49c9qmvfmkk8jl75cfpi7q0i12kh95"))))
11181 (build-system asdf-build-system/sbcl)
11182 (inputs
11183 `(("alexandria" ,sbcl-alexandria)))
11184 (home-page "https://github.com/slyrus/opticl-core")
11185 (synopsis "Core classes and pixel access macros for Opticl")
11186 (description
11187 "This Common Lisp library contains the core classes and pixel access
11188 macros for the Opticl image processing library.")
11189 (license license:bsd-2))))
11190
11191 (define-public cl-opticl-core
11192 (sbcl-package->cl-source-package sbcl-opticl-core))
11193
11194 (define-public ecl-opticl-core
11195 (sbcl-package->ecl-package sbcl-opticl-core))
11196
11197 (define-public sbcl-retrospectiff
11198 (let ((commit "c2a69d77d5010f8cdd9045b3e36a08a73da5d321")
11199 (revision "0"))
11200 (package
11201 (name "sbcl-retrospectiff")
11202 (version (git-version "0.2" revision commit))
11203 (source
11204 (origin
11205 (method git-fetch)
11206 (uri (git-reference
11207 (url "https://github.com/slyrus/retrospectiff")
11208 (commit commit)))
11209 (file-name (git-file-name name version))
11210 (sha256
11211 (base32 "0qsn9hpd8j2kp43dk05j8dczz9zppdff5rrclbp45n3ksk9inw8i"))))
11212 (build-system asdf-build-system/sbcl)
11213 (native-inputs
11214 `(("fiveam" ,sbcl-fiveam)))
11215 (inputs
11216 `(("cl-jpeg" ,sbcl-cl-jpeg)
11217 ("com.gigamonkeys.binary-data" ,sbcl-com.gigamonkeys.binary-data)
11218 ("deflate" ,sbcl-deflate)
11219 ("flexi-streams" ,sbcl-flexi-streams)
11220 ("ieee-floats" ,sbcl-ieee-floats)
11221 ("opticl-core" ,sbcl-opticl-core)))
11222 (home-page "https://github.com/slyrus/retrospectiff")
11223 (synopsis "Common Lisp library for TIFF images")
11224 (description
11225 "Retrospectiff is a common lisp library for reading and writing images
11226 in the TIFF (Tagged Image File Format) format.")
11227 (license license:bsd-2))))
11228
11229 (define-public cl-retrospectif
11230 (sbcl-package->cl-source-package sbcl-retrospectiff))
11231
11232 (define-public ecl-retrospectiff
11233 (sbcl-package->ecl-package sbcl-retrospectiff))
11234
11235 (define-public sbcl-mmap
11236 (let ((commit "ba2e98c67e25f0fb8ff838238561120a23903ce7")
11237 (revision "0"))
11238 (package
11239 (name "sbcl-mmap")
11240 (version (git-version "1.0.0" revision commit))
11241 (source
11242 (origin
11243 (method git-fetch)
11244 (uri (git-reference
11245 (url "https://github.com/Shinmera/mmap")
11246 (commit commit)))
11247 (file-name (git-file-name name version))
11248 (sha256
11249 (base32 "0qd0xp20i1pcfn12kkapv9pirb6hd4ns7kz4zf1mmjwykpsln96q"))))
11250 (build-system asdf-build-system/sbcl)
11251 (native-inputs
11252 `(("alexandria" ,sbcl-alexandria)
11253 ("cffi" ,sbcl-cffi)
11254 ("parachute" ,sbcl-parachute)
11255 ("trivial-features" ,sbcl-trivial-features)))
11256 (inputs
11257 `(("cffi" ,sbcl-cffi)
11258 ("documentation-utils" ,sbcl-documentation-utils)))
11259 (home-page "https://shinmera.github.io/mmap/")
11260 (synopsis "File memory mapping for Common Lisp")
11261 (description
11262 "This is a utility library providing access to the @emph{mmap} family of
11263 functions in a portable way. It allows you to directly map a file into the
11264 address space of your process without having to manually read it into memory
11265 sequentially. Typically this is much more efficient for files that are larger
11266 than a few Kb.")
11267 (license license:zlib))))
11268
11269 (define-public cl-mmap
11270 (sbcl-package->cl-source-package sbcl-mmap))
11271
11272 (define-public ecl-mmap
11273 (sbcl-package->ecl-package sbcl-mmap))
11274
11275 (define-public sbcl-3bz
11276 (let ((commit "569614c40408f3aefc77ba233e0e4bd66d3850ad")
11277 (revision "1"))
11278 (package
11279 (name "sbcl-3bz")
11280 (version (git-version "0.0.0" revision commit))
11281 (source
11282 (origin
11283 (method git-fetch)
11284 (uri (git-reference
11285 (url "https://github.com/3b/3bz")
11286 (commit commit)))
11287 (file-name (git-file-name name version))
11288 (sha256
11289 (base32 "0kvvlvf50jhhw1s510f3clpr1a68632bq6d698yxcrx722igcrg4"))))
11290 (build-system asdf-build-system/sbcl)
11291 (inputs
11292 `(("alexandria" ,sbcl-alexandria)
11293 ("babel" ,sbcl-babel)
11294 ("cffi" ,sbcl-cffi)
11295 ("mmap" ,sbcl-mmap)
11296 ("nibbles" ,sbcl-nibbles)
11297 ("trivial-features" ,sbcl-trivial-features)))
11298 (arguments
11299 ;; FIXME: #41437 - Build fails when package name starts from a digit
11300 `(#:asd-systems '("3bz")))
11301 (home-page "https://github.com/3b/3bz")
11302 (synopsis "Deflate decompression for Common Lisp")
11303 (description
11304 "3bz is an implementation of Deflate decompression (RFC 1951) optionally
11305 with zlib (RFC 1950) or gzip (RFC 1952) wrappers, with support for reading from
11306 foreign pointers (for use with mmap and similar, etc), and from CL octet
11307 vectors and streams.")
11308 (license license:expat))))
11309
11310 (define-public cl-3bz
11311 (sbcl-package->cl-source-package sbcl-3bz))
11312
11313 (define-public ecl-3bz
11314 (sbcl-package->ecl-package sbcl-3bz))
11315
11316 (define-public sbcl-zpb-exif
11317 (package
11318 (name "sbcl-zpb-exif")
11319 (version "1.2.4")
11320 (source
11321 (origin
11322 (method git-fetch)
11323 (uri (git-reference
11324 (url "https://github.com/xach/zpb-exif")
11325 (commit (string-append "release-" version))))
11326 (file-name (git-file-name name version))
11327 (sha256
11328 (base32 "15s227jhby55cisz14xafb0p1ws2jmrg2rrbbd00lrb97im84hy6"))))
11329 (build-system asdf-build-system/sbcl)
11330 (home-page "https://xach.com/lisp/zpb-exif/")
11331 (synopsis "EXIF information extractor for Common Lisp")
11332 (description
11333 "This is a Common Lisp library to extract EXIF information from image
11334 files.")
11335 (license license:bsd-2)))
11336
11337 (define-public cl-zpb-exif
11338 (sbcl-package->cl-source-package sbcl-zpb-exif))
11339
11340 (define-public ecl-zpb-exif
11341 (sbcl-package->ecl-package sbcl-zpb-exif))
11342
11343 (define-public sbcl-pngload
11344 (package
11345 (name "sbcl-pngload")
11346 (version "2.0.0")
11347 (source
11348 (origin
11349 (method git-fetch)
11350 (uri (git-reference
11351 (url "https://github.com/bufferswap/pngload")
11352 (commit version)))
11353 (file-name (git-file-name name version))
11354 (sha256
11355 (base32 "1ix8dd0fxlf8xm0bszh1s7sx83hn0vqq8b8c9gkrd5m310w8mpvh"))))
11356 (build-system asdf-build-system/sbcl)
11357 (inputs
11358 `(("3bz" ,sbcl-3bz)
11359 ("alexandria" ,sbcl-alexandria)
11360 ("cffi" ,sbcl-cffi)
11361 ("mmap" ,sbcl-mmap)
11362 ("parse-float" ,sbcl-parse-float)
11363 ("static-vectors" ,sbcl-static-vectors)
11364 ("swap-bytes" ,sbcl-swap-bytes)
11365 ("zpb-exif" ,sbcl-zpb-exif)))
11366 (arguments
11367 ;; Test suite disabled because of a dependency cycle.
11368 ;; pngload tests depend on opticl which depends on pngload.
11369 '(#:tests? #f))
11370 (home-page "https://github.com/bufferswap/pngload")
11371 (synopsis "PNG image decoder for Common Lisp")
11372 (description
11373 "This is a Common Lisp library to load images in the PNG image format,
11374 both from files on disk, or streams in memory.")
11375 (license license:expat)))
11376
11377 (define-public cl-pngload
11378 (sbcl-package->cl-source-package sbcl-pngload))
11379
11380 (define-public ecl-pngload
11381 (sbcl-package->ecl-package sbcl-pngload))
11382
11383 (define-public sbcl-opticl
11384 (let ((commit "e8684416eca2e78e82a7b436d436ef2ea24c019d")
11385 (revision "0"))
11386 (package
11387 (name "sbcl-opticl")
11388 (version (git-version "0.0.0" revision commit))
11389 (source
11390 (origin
11391 (method git-fetch)
11392 (uri (git-reference
11393 (url "https://github.com/slyrus/opticl")
11394 (commit commit)))
11395 (file-name (git-file-name name version))
11396 (sha256
11397 (base32 "03rirnnhhisjbimlmpi725h1d3x0cfv00r57988am873dyzawmm1"))))
11398 (build-system asdf-build-system/sbcl)
11399 (native-inputs
11400 `(("fiveam" ,sbcl-fiveam)))
11401 (inputs
11402 `(("alexandria" ,sbcl-alexandria)
11403 ("cl-jpeg" ,sbcl-cl-jpeg)
11404 ("cl-tga" ,sbcl-cl-tga)
11405 ("png-read" ,sbcl-png-read)
11406 ("pngload" ,sbcl-pngload)
11407 ("retrospectiff" ,sbcl-retrospectiff)
11408 ("skippy" ,sbcl-skippy)
11409 ("zpng" ,sbcl-zpng)))
11410 (arguments
11411 '(#:asd-files '("opticl.asd")))
11412 (home-page "https://github.com/slyrus/opticl")
11413 (synopsis "Image processing library for Common Lisp")
11414 (description
11415 "Opticl is a Common Lisp library for representing, processing, loading,
11416 and saving 2-dimensional pixel-based images.")
11417 (license license:bsd-2))))
11418
11419 (define-public cl-opticl
11420 (sbcl-package->cl-source-package sbcl-opticl))
11421
11422 (define-public ecl-opticl
11423 (sbcl-package->ecl-package sbcl-opticl))
11424
11425 (define-public sbcl-mcclim
11426 (let ((commit "04cc542dd4b461b9d56406e40681d1a8f080730f")
11427 (revision "1"))
11428 (package
11429 (name "sbcl-mcclim")
11430 (version (git-version "0.9.7" revision commit))
11431 (source
11432 (origin
11433 (method git-fetch)
11434 (uri (git-reference
11435 (url "https://github.com/mcclim/mcclim")
11436 (commit commit)))
11437 (file-name (git-file-name name version))
11438 (sha256
11439 (base32 "1xjly8i62z72hfhlnz5kjd9i8xhrwckc7avyizxvhih67pkjmsx0"))))
11440 (build-system asdf-build-system/sbcl)
11441 (native-inputs
11442 `(("fiveam" ,sbcl-fiveam)
11443 ("pkg-config" ,pkg-config)))
11444 (inputs
11445 `(("alexandria" ,sbcl-alexandria)
11446 ("babel" ,sbcl-babel)
11447 ("bordeaux-threads" ,sbcl-bordeaux-threads)
11448 ("cl-freetype2" ,sbcl-cl-freetype2)
11449 ("cl-pdf" ,sbcl-cl-pdf)
11450 ("cffi" ,sbcl-cffi)
11451 ("cl-unicode" ,sbcl-cl-unicode)
11452 ("cl-vectors" ,sbcl-cl-vectors)
11453 ("closer-mop" ,sbcl-closer-mop)
11454 ("clx" ,sbcl-clx)
11455 ("flexi-streams" ,sbcl-flexi-streams)
11456 ("flexichain" ,sbcl-flexichain)
11457 ("font-dejavu" ,font-dejavu)
11458 ("fontconfig" ,fontconfig)
11459 ("freetype" ,freetype)
11460 ("harfbuzz" ,harfbuzz)
11461 ("log4cl" ,sbcl-log4cl)
11462 ("opticl" ,sbcl-opticl)
11463 ("spatial-trees" ,sbcl-spatial-trees)
11464 ("swank" ,sbcl-slime-swank)
11465 ("trivial-features" ,sbcl-trivial-features)
11466 ("trivial-garbage" ,sbcl-trivial-garbage)
11467 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
11468 ("zpb-ttf" ,sbcl-zpb-ttf)))
11469 (arguments
11470 '(#:asd-systems '("mcclim"
11471 "clim-examples")
11472 #:phases
11473 (modify-phases %standard-phases
11474 (add-after 'unpack 'fix-paths
11475 (lambda* (#:key inputs #:allow-other-keys)
11476 ;; mcclim-truetype uses DejaVu as default font and
11477 ;; sets the path at build time.
11478 (substitute* "Extensions/fonts/fontconfig.lisp"
11479 (("/usr/share/fonts/truetype/dejavu/")
11480 (string-append (assoc-ref inputs "font-dejavu")
11481 "/share/fonts/truetype/")))
11482 (substitute* "Extensions/fontconfig/src/functions.lisp"
11483 (("libfontconfig\\.so")
11484 (string-append (assoc-ref inputs "fontconfig")
11485 "/lib/libfontconfig.so")))
11486 (substitute* "Extensions/harfbuzz/src/functions.lisp"
11487 (("libharfbuzz\\.so")
11488 (string-append (assoc-ref inputs "harfbuzz")
11489 "/lib/libharfbuzz.so")))
11490 #t))
11491 (add-after 'unpack 'fix-build
11492 (lambda _
11493 ;; The cffi-grovel system does not get loaded automatically,
11494 ;; so we load it explicitly.
11495 (substitute* "Extensions/fontconfig/mcclim-fontconfig.asd"
11496 (("\\(asdf:defsystem #:mcclim-fontconfig" all)
11497 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
11498 (substitute* "Extensions/harfbuzz/mcclim-harfbuzz.asd"
11499 (("\\(asdf:defsystem #:mcclim-harfbuzz" all)
11500 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
11501 #t)))))
11502 (home-page "https://common-lisp.net/project/mcclim/")
11503 (synopsis "Common Lisp GUI toolkit")
11504 (description
11505 "McCLIM is an implementation of the @emph{Common Lisp Interface Manager
11506 specification}, a toolkit for writing GUIs in Common Lisp.")
11507 (license license:lgpl2.1+))))
11508
11509 (define-public cl-mcclim
11510 (sbcl-package->cl-source-package sbcl-mcclim))
11511
11512 (define-public ecl-mcclim
11513 (sbcl-package->ecl-package sbcl-mcclim))
11514
11515 (define-public sbcl-cl-inflector
11516 (let ((commit "f1ab16919ccce3bd82a0042677d9616dde2034fe")
11517 (revision "1"))
11518 (package
11519 (name "sbcl-cl-inflector")
11520 (version (git-version "0.2" revision commit))
11521 (source
11522 (origin
11523 (method git-fetch)
11524 (uri (git-reference
11525 (url "https://github.com/AccelerationNet/cl-inflector")
11526 (commit commit)))
11527 (file-name (git-file-name name version))
11528 (sha256
11529 (base32 "1xwwlhik1la4fp984qnx2dqq24v012qv4x0y49sngfpwg7n0ya7y"))))
11530 (build-system asdf-build-system/sbcl)
11531 (native-inputs
11532 `(("lisp-unit2" ,sbcl-lisp-unit2)))
11533 (inputs
11534 `(("alexandria" ,sbcl-alexandria)
11535 ("cl-ppcre" ,sbcl-cl-ppcre)))
11536 (home-page "https://github.com/AccelerationNet/cl-inflector")
11537 (synopsis "Library to pluralize/singularize English and Portuguese words")
11538 (description
11539 "This is a common lisp library to easily pluralize and singularize
11540 English and Portuguese words. This is a port of the ruby ActiveSupport
11541 Inflector module.")
11542 (license license:expat))))
11543
11544 (define-public cl-inflector
11545 (sbcl-package->cl-source-package sbcl-cl-inflector))
11546
11547 (define-public ecl-cl-inflector
11548 (sbcl-package->ecl-package sbcl-cl-inflector))
11549
11550 (define-public sbcl-ixf
11551 (let ((commit "ed26f87e4127e4a9e3aac4ff1e60d1f39cca5183")
11552 (revision "1"))
11553 (package
11554 (name "sbcl-ixf")
11555 (version (git-version "0.1.0" revision commit))
11556 (source
11557 (origin
11558 (method git-fetch)
11559 (uri (git-reference
11560 (url "https://github.com/dimitri/cl-ixf")
11561 (commit commit)))
11562 (file-name (git-file-name "cl-ixf" version))
11563 (sha256
11564 (base32 "1wjdnf4vr9z7lcfc49kl43g6l2i23q9n81siy494k17d766cdvqa"))))
11565 (build-system asdf-build-system/sbcl)
11566 (inputs
11567 `(("alexandria" ,sbcl-alexandria)
11568 ("babel" ,sbcl-babel)
11569 ("cl-ppcre" ,sbcl-cl-ppcre)
11570 ("ieee-floats" ,sbcl-ieee-floats)
11571 ("local-time" ,sbcl-local-time)
11572 ("md5" ,sbcl-md5)
11573 ("split-sequence" ,sbcl-split-sequence)))
11574 (home-page "https://github.com/dimitri/cl-ixf")
11575 (synopsis "Parse IBM IXF file format")
11576 (description
11577 "This is a Common Lisp library to handle the IBM PC version of the IXF
11578 (Integration Exchange Format) file format.")
11579 (license license:public-domain))))
11580
11581 (define-public ecl-ixf
11582 (sbcl-package->ecl-package sbcl-ixf))
11583
11584 (define-public cl-ixf
11585 (sbcl-package->cl-source-package sbcl-ixf))
11586
11587 (define-public sbcl-qbase64
11588 (package
11589 (name "sbcl-qbase64")
11590 (version "0.3.0")
11591 (source
11592 (origin
11593 (method git-fetch)
11594 (uri (git-reference
11595 (url "https://github.com/chaitanyagupta/qbase64")
11596 (commit version)))
11597 (file-name (git-file-name name version))
11598 (sha256
11599 (base32 "1dir0s70ca3hagxv9x15zq4p4ajgl7jrcgqsza2n2y7iqbxh0dwi"))))
11600 (build-system asdf-build-system/sbcl)
11601 (inputs
11602 `(("metabang-bind" ,sbcl-metabang-bind)
11603 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
11604 (native-inputs
11605 `(("fiveam" ,sbcl-fiveam)))
11606 (home-page "https://github.com/chaitanyagupta/qbase64")
11607 (synopsis "Base64 encoder and decoder for Common Lisp")
11608 (description "@code{qbase64} provides a fast and flexible base64 encoder
11609 and decoder for Common Lisp.")
11610 (license license:bsd-3)))
11611
11612 (define-public cl-qbase64
11613 (sbcl-package->cl-source-package sbcl-qbase64))
11614
11615 (define-public ecl-qbase64
11616 (sbcl-package->ecl-package sbcl-qbase64))
11617
11618 (define-public sbcl-lw-compat
11619 ;; No release since 2013.
11620 (let ((commit "aabfe28c6c1a4949f9d7b3cb30319367c9fd1c0d"))
11621 (package
11622 (name "sbcl-lw-compat")
11623 (version (git-version "1.0.0" "1" commit))
11624 (source
11625 (origin
11626 (method git-fetch)
11627 (uri (git-reference
11628 (url "https://github.com/pcostanza/lw-compat/")
11629 (commit commit)))
11630 (file-name (git-file-name name version))
11631 (sha256
11632 (base32 "131rq5k2mlv9bfhmafiv6nfsivl4cxx13d9wr06v5jrqnckh4aav"))))
11633 (build-system asdf-build-system/sbcl)
11634 (home-page "https://github.com/pcostanza/lw-compat/")
11635 (synopsis "LispWorks utilities ported to other Common Lisp implementations")
11636 (description "This package contains a few utility functions from the
11637 LispWorks library that are used in software such as ContextL.")
11638 (license license:expat))))
11639
11640 (define-public cl-lw-compat
11641 (sbcl-package->cl-source-package sbcl-lw-compat))
11642
11643 (define-public ecl-lw-compat
11644 (sbcl-package->ecl-package sbcl-lw-compat))
11645
11646 (define-public sbcl-contextl
11647 ;; No release since 2013.
11648 (let ((commit "5d18a71a85824f6c25a9f35a21052f967b8b6bb9"))
11649 (package
11650 (name "sbcl-contextl")
11651 (version (git-version "1.0.0" "1" commit))
11652 (source
11653 (origin
11654 (method git-fetch)
11655 (uri (git-reference
11656 (url "https://github.com/pcostanza/contextl/")
11657 (commit commit)))
11658 (file-name (git-file-name name version))
11659 (sha256
11660 (base32 "0gk1izx6l6g48nypmnm9r6mzjx0jixqjj2kc6klf8a88rr5xd226"))))
11661 (build-system asdf-build-system/sbcl)
11662 (inputs
11663 `(("closer-mop" ,sbcl-closer-mop)
11664 ("lw-compat" ,sbcl-lw-compat)))
11665 (home-page "https://github.com/pcostanza/contextl")
11666 (synopsis "Context-oriented programming for Common Lisp")
11667 (description "ContextL is a CLOS extension for Context-Oriented
11668 Programming (COP).
11669
11670 Find overview of ContextL's features in an overview paper:
11671 @url{http://www.p-cos.net/documents/contextl-soa.pdf}. See also this general
11672 overview article about COP which also contains some ContextL examples:
11673 @url{http://www.jot.fm/issues/issue_2008_03/article4/}.")
11674 (license license:expat))))
11675
11676 (define-public cl-contextl
11677 (sbcl-package->cl-source-package sbcl-contextl))
11678
11679 (define-public ecl-contextl
11680 (sbcl-package->ecl-package sbcl-contextl))
11681
11682 (define-public sbcl-hu.dwim.common-lisp
11683 (package
11684 (name "sbcl-hu.dwim.common-lisp")
11685 (version "2015-07-09")
11686 (source
11687 (origin
11688 (method url-fetch)
11689 (uri (string-append
11690 "http://beta.quicklisp.org/archive/hu.dwim.common-lisp/"
11691 version "/hu.dwim.common-lisp-"
11692 (string-replace-substring version "-" "")
11693 "-darcs.tgz"))
11694 (sha256
11695 (base32 "13cxrvh55rw080mvfir7s7k735l9rcfh3khxp97qfwd5rz0gadb9"))))
11696 (build-system asdf-build-system/sbcl)
11697 (native-inputs
11698 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11699 (home-page "http://dwim.hu/")
11700 (synopsis "Redefine some standard Common Lisp names")
11701 (description "This library is a redefinition of the standard Common Lisp
11702 package that includes a number of renames and shadows. ")
11703 (license license:public-domain)))
11704
11705 (define-public cl-hu.dwim.common-lisp
11706 (sbcl-package->cl-source-package sbcl-hu.dwim.common-lisp))
11707
11708 (define-public ecl-hu.dwim.common-lisp
11709 (sbcl-package->ecl-package sbcl-hu.dwim.common-lisp))
11710
11711 (define-public sbcl-hu.dwim.common
11712 (package
11713 (name "sbcl-hu.dwim.common")
11714 (version "2015-07-09")
11715 (source
11716 (origin
11717 (method url-fetch)
11718 (uri (string-append
11719 "http://beta.quicklisp.org/archive/hu.dwim.common/"
11720 version "/hu.dwim.common-"
11721 (string-replace-substring version "-" "")
11722 "-darcs.tgz"))
11723 (sha256
11724 (base32 "12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp"))))
11725 (build-system asdf-build-system/sbcl)
11726 (native-inputs
11727 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11728 (inputs
11729 `(("alexandria" ,sbcl-alexandria)
11730 ("anaphora" ,sbcl-anaphora)
11731 ("closer-mop" ,sbcl-closer-mop)
11732 ("hu.dwim.common-lisp" ,sbcl-hu.dwim.common-lisp)
11733 ("iterate" ,sbcl-iterate)
11734 ("metabang-bind" ,sbcl-metabang-bind)))
11735 (home-page "http://dwim.hu/")
11736 (synopsis "Common Lisp library shared by other hu.dwim systems")
11737 (description "This package contains a support library for other
11738 hu.dwim systems.")
11739 (license license:public-domain)))
11740
11741 (define-public cl-hu.dwim.common
11742 (sbcl-package->cl-source-package sbcl-hu.dwim.common))
11743
11744 (define-public ecl-hu.dwim.common
11745 (sbcl-package->ecl-package sbcl-hu.dwim.common))
11746
11747 (define-public sbcl-hu.dwim.defclass-star
11748 (let ((commit "39d458f1b1bc830d1f5e18a6a35bf0e96a2cfd61"))
11749 (package
11750 (name "sbcl-hu.dwim.defclass-star")
11751 ;; We used to set version from the date when it was a darcs repo, so we
11752 ;; keep the year so that package gets updated on previous installs.
11753 (version (git-version "2021" "1" commit))
11754 (source
11755 (origin
11756 (method git-fetch)
11757 (uri (git-reference
11758 (url "https://github.com/hu-dwim/hu.dwim.defclass-star")
11759 (commit commit)))
11760 (file-name (git-file-name name version))
11761 (sha256
11762 (base32 "0hfkq2wad98vkyxdg1wh18y86d9w9yqkm8lxkk96szvpwymm7lmq"))))
11763 (build-system asdf-build-system/sbcl)
11764 (native-inputs
11765 `( ;; These 2 inputs are only needed tests which are disabled, see below.
11766 ;; ("hu.dwim.common" ,sbcl-hu.dwim.common)
11767 ;; Need cl- package for the :hu.dwim.stefil+hu.dwim.def+swank system.
11768 ;; ("hu.dwim.stefil" ,cl-hu.dwim.stefil)
11769 ("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
11770 (arguments
11771 `(#:test-asd-file "hu.dwim.defclass-star.test.asd"
11772 ;; Tests require a circular dependency: hu.dwim.stefil -> hu.dwim.def
11773 ;; -> hu.dwim.util -> hu.dwim.defclass-star.
11774 #:tests? #f))
11775 (home-page "https://github.com/hu-dwim/hu.dwim.defclass-star")
11776 (synopsis "Simplify definitions with defclass* and friends in Common Lisp")
11777 (description "@code{defclass-star} provides defclass* and defcondition* to
11778 simplify class and condition declarations. Features include:
11779
11780 @itemize
11781 @item Automatically export all or select slots at compile time.
11782 @item Define the @code{:initarg} and @code{:accessor} automatically.
11783 @item Specify a name transformer for both the @code{:initarg} and
11784 @code{:accessor}, etc.
11785 @item Specify the @code{:initform} as second slot value.
11786 @end itemize
11787
11788 See
11789 @url{https://common-lisp.net/project/defclass-star/configuration.lisp.html}
11790 for an example.")
11791 (license license:public-domain))))
11792
11793 (define-public cl-hu.dwim.defclass-star
11794 (sbcl-package->cl-source-package sbcl-hu.dwim.defclass-star))
11795
11796 (define-public ecl-hu.dwim.defclass-star
11797 (sbcl-package->ecl-package sbcl-hu.dwim.defclass-star))
11798
11799 (define-public sbcl-livesupport
11800 (let ((commit "71e6e412df9f3759ad8378fabb203913d82e228a")
11801 (revision "1"))
11802 (package
11803 (name "sbcl-livesupport")
11804 (version (git-version "0.0.0" revision commit))
11805 (source
11806 (origin
11807 (method git-fetch)
11808 (uri (git-reference
11809 (url "https://github.com/cbaggers/livesupport")
11810 (commit commit)))
11811 (file-name (git-file-name name version))
11812 (sha256
11813 (base32 "1rvnl0mncylbx63608pz5llss7y92j7z3ydambk9mcnjg2mjaapg"))))
11814 (build-system asdf-build-system/sbcl)
11815 (home-page "https://github.com/cbaggers/livesupport")
11816 (synopsis "Some helpers that make livecoding a little easier")
11817 (description "This package provides a macro commonly used in livecoding to
11818 enable continuing when errors are raised. Simply wrap around a chunk of code
11819 and it provides a restart called @code{continue} which ignores the error and
11820 carrys on from the end of the body.")
11821 (license license:bsd-2))))
11822
11823 (define-public cl-livesupport
11824 (sbcl-package->cl-source-package sbcl-livesupport))
11825
11826 (define-public ecl-livesupport
11827 (sbcl-package->ecl-package sbcl-livesupport))
11828
11829 (define-public sbcl-envy
11830 (let ((commit "956321b2852d58ba71c6fe621f5c2924178e9f88")
11831 (revision "1"))
11832 (package
11833 (name "sbcl-envy")
11834 (version (git-version "0.1" revision commit))
11835 (home-page "https://github.com/fukamachi/envy")
11836 (source
11837 (origin
11838 (method git-fetch)
11839 (uri (git-reference
11840 (url home-page)
11841 (commit commit)))
11842 (file-name (git-file-name name version))
11843 (sha256
11844 (base32 "17iwrfxcdinjbb2h6l09qf40s7xkbhrpmnljlwpjy8l8rll8h3vg"))))
11845 (build-system asdf-build-system/sbcl)
11846 ;; (native-inputs ; Only for tests.
11847 ;; `(("prove" ,sbcl-prove)
11848 ;; ("osicat" ,sbcl-osicat)))
11849 (arguments
11850 '(#:phases
11851 (modify-phases %standard-phases
11852 (add-after 'unpack 'fix-tests
11853 (lambda _
11854 (substitute* "envy-test.asd"
11855 (("cl-test-more") "prove"))
11856 #t)))
11857 ;; Tests fail with
11858 ;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
11859 ;; like xsubseq. Why?
11860 #:tests? #f))
11861 (synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV.")
11862 (description "Envy is a configuration manager for various applications.
11863 Envy uses an environment variable to determine a configuration to use. This
11864 can separate configuration system from an implementation.")
11865 (license license:bsd-2))))
11866
11867 (define-public cl-envy
11868 (sbcl-package->cl-source-package sbcl-envy))
11869
11870 (define-public ecl-envy
11871 (sbcl-package->ecl-package sbcl-envy))
11872
11873 (define-public sbcl-mito
11874 (let ((commit "d3b9e375ef364a65692da2185085a08c969ac88a")
11875 (revision "1"))
11876 (package
11877 (name "sbcl-mito")
11878 (version (git-version "0.1" revision commit))
11879 (home-page "https://github.com/fukamachi/mito")
11880 (source
11881 (origin
11882 (method git-fetch)
11883 (uri (git-reference
11884 (url home-page)
11885 (commit commit)))
11886 (file-name (git-file-name name version))
11887 (sha256
11888 (base32 "08mncgzjnbbsf1a6am3l73iw4lyfvz5ldjg5g84awfaxml4p73mb"))))
11889 (build-system asdf-build-system/sbcl)
11890 (native-inputs
11891 `(("prove" ,sbcl-prove)))
11892 (inputs
11893 `(("alexandria" ,sbcl-alexandria)
11894 ("cl-ppcre" ,sbcl-cl-ppcre)
11895 ("cl-reexport" ,sbcl-cl-reexport)
11896 ("closer-mop" ,sbcl-closer-mop)
11897 ("dbi" ,sbcl-dbi)
11898 ("dissect" ,sbcl-dissect)
11899 ("esrap" ,sbcl-esrap)
11900 ("local-time" ,sbcl-local-time)
11901 ("optima" ,sbcl-optima)
11902 ("sxql" ,sbcl-sxql)
11903 ("uuid" ,sbcl-uuid)))
11904 (arguments
11905 '(#:phases
11906 (modify-phases %standard-phases
11907 (add-after 'unpack 'remove-non-functional-tests
11908 (lambda _
11909 (substitute* "mito-test.asd"
11910 (("\\(:test-file \"db/mysql\"\\)") "")
11911 (("\\(:test-file \"db/postgres\"\\)") "")
11912 (("\\(:test-file \"dao\"\\)") "")
11913 ;; TODO: migration/sqlite3 should work, re-enable once
11914 ;; upstream has fixed it:
11915 ;; https://github.com/fukamachi/mito/issues/70
11916 (("\\(:test-file \"migration/sqlite3\"\\)") "")
11917 (("\\(:test-file \"migration/mysql\"\\)") "")
11918 (("\\(:test-file \"migration/postgres\"\\)") "")
11919 (("\\(:test-file \"postgres-types\"\\)") "")
11920 (("\\(:test-file \"mixin\"\\)") ""))
11921 #t)))
11922 ;; TODO: While all enabled tests pass, the phase fails with:
11923 ;; Component MITO-ASD::MITO-TEST not found, required by #<SYSTEM "mito">
11924 #:tests? #f))
11925 (synopsis "ORM for Common Lisp with migrations and relationships support")
11926 (description "Mito is yet another object relational mapper, and it aims
11927 to be a successor of Integral.
11928
11929 @itemize
11930 @item Support MySQL, PostgreSQL and SQLite3.
11931 @item Add id (serial/uuid primary key), created_at and updated_at by default
11932 like Ruby's ActiveRecord.
11933 @item Migrations.
11934 @item Database schema versioning.
11935 @end itemize\n")
11936 (license license:llgpl))))
11937
11938 (define-public cl-mito
11939 (sbcl-package->cl-source-package sbcl-mito))
11940
11941 (define-public ecl-mito
11942 (sbcl-package->ecl-package sbcl-mito))
11943
11944 (define-public sbcl-kebab
11945 (let ((commit "e7f77644c4e46131e7b8039d191d35fe6211f31b")
11946 (revision "1"))
11947 (package
11948 (name "sbcl-kebab")
11949 (version (git-version "0.1" revision commit))
11950 (home-page "https://github.com/pocket7878/kebab")
11951 (source
11952 (origin
11953 (method git-fetch)
11954 (uri (git-reference
11955 (url home-page)
11956 (commit commit)))
11957 (file-name (git-file-name name version))
11958 (sha256
11959 (base32 "0j5haabnvj0vz0rx9mwyfsb3qzpga9nickbjw8xs6vypkdzlqv1b"))))
11960 (build-system asdf-build-system/sbcl)
11961 (inputs
11962 `(("cl-ppcre" ,sbcl-cl-ppcre)
11963 ("alexandria" ,sbcl-alexandria)
11964 ("cl-interpol" ,sbcl-cl-interpol)
11965 ("split-sequence" ,sbcl-split-sequence)))
11966 (native-inputs
11967 `(("prove" ,sbcl-prove)))
11968 (arguments
11969 ;; Tests passes but the phase fails with
11970 ;; Component KEBAB-ASD::KEBAB-TEST not found, required by #<SYSTEM "kebab">.
11971 `(#:tests? #f))
11972 (synopsis "Common Lisp case converter")
11973 (description "This Common Lisp library converts strings, symbols and
11974 keywords between any of the following typographical cases: PascalCase,
11975 camelCase, snake_case, kebab-case (lisp-case).")
11976 (license license:llgpl))))
11977
11978 (define-public cl-kebab
11979 (sbcl-package->cl-source-package sbcl-kebab))
11980
11981 (define-public ecl-kebab
11982 (sbcl-package->ecl-package sbcl-kebab))
11983
11984 (define-public sbcl-datafly
11985 (let ((commit "adece27fcbc4b5ea39ad1a105048b6b7166e3b0d")
11986 (revision "1"))
11987 (package
11988 (name "sbcl-datafly")
11989 (version (git-version "0.1" revision commit))
11990 (home-page "https://github.com/fukamachi/datafly")
11991 (source
11992 (origin
11993 (method git-fetch)
11994 (uri (git-reference
11995 (url home-page)
11996 (commit commit)))
11997 (file-name (git-file-name name version))
11998 (sha256
11999 (base32 "16b78kzmglp2a4nxlxxl7rpf5zaibsgagn0p3c56fsxvx0c4hszv"))))
12000 (build-system asdf-build-system/sbcl)
12001 (inputs
12002 `(("alexandria" ,sbcl-alexandria)
12003 ("iterate" ,sbcl-iterate)
12004 ("optima" ,sbcl-optima)
12005 ("trivial-types" ,sbcl-trivial-types)
12006 ("closer-mop" ,sbcl-closer-mop)
12007 ("cl-syntax" ,sbcl-cl-syntax)
12008 ("sxql" ,sbcl-sxql)
12009 ("dbi" ,sbcl-dbi)
12010 ("babel" ,sbcl-babel)
12011 ("local-time" ,sbcl-local-time)
12012 ("function-cache" ,sbcl-function-cache)
12013 ("jonathan" ,sbcl-jonathan)
12014 ("kebab" ,sbcl-kebab)
12015 ("log4cl" ,sbcl-log4cl)))
12016 (native-inputs
12017 `(("prove" ,sbcl-prove)))
12018 (arguments
12019 ;; TODO: Tests fail with
12020 ;; While evaluating the form starting at line 22, column 0
12021 ;; of #P"/tmp/guix-build-sbcl-datafly-0.1-1.adece27.drv-0/source/t/datafly.lisp":
12022 ;; Unhandled SQLITE:SQLITE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
12023 ;; {10009F8083}>:
12024 ;; Error when binding parameter 1 to value NIL.
12025 ;; Code RANGE: column index out of range.
12026 `(#:tests? #f))
12027 (synopsis "Lightweight database library for Common Lisp")
12028 (description "Datafly is a lightweight database library for Common Lisp.")
12029 (license license:bsd-3))))
12030
12031 (define-public cl-datafly
12032 (sbcl-package->cl-source-package sbcl-datafly))
12033
12034 (define-public ecl-datafly
12035 (sbcl-package->ecl-package sbcl-datafly))
12036
12037 (define-public sbcl-do-urlencode
12038 (let ((commit "199846441dad5dfac5478b8dee4b4e20d107af6a")
12039 (revision "1"))
12040 (package
12041 (name "sbcl-do-urlencode")
12042 (version (git-version "0.0.0" revision commit))
12043 (home-page "https://github.com/drdo/do-urlencode")
12044 (source
12045 (origin
12046 (method git-fetch)
12047 (uri (git-reference
12048 (url home-page)
12049 (commit commit)))
12050 (file-name (git-file-name name version))
12051 (sha256
12052 (base32 "0k2i3d4k9cpci235mwfm0c5a4yqfkijr716bjv7cdlpzx88lazm9"))))
12053 (build-system asdf-build-system/sbcl)
12054 (inputs
12055 `(("alexandria" ,sbcl-alexandria)
12056 ("babel" ,sbcl-babel)))
12057 (synopsis "Percent Encoding (aka URL Encoding) Common Lisp library")
12058 (description "This library provides trivial percent encoding and
12059 decoding functions for URLs.")
12060 (license license:isc))))
12061
12062 (define-public cl-do-urlencode
12063 (sbcl-package->cl-source-package sbcl-do-urlencode))
12064
12065 (define-public ecl-do-urlencode
12066 (sbcl-package->ecl-package sbcl-do-urlencode))
12067
12068 (define-public sbcl-cl-emb
12069 (let ((commit "fd8652174d048d4525a81f38cdf42f4fa519f840")
12070 (revision "1"))
12071 (package
12072 (name "sbcl-cl-emb")
12073 (version (git-version "0.4.3" revision commit))
12074 (home-page "https://common-lisp.net/project/cl-emb/")
12075 (source
12076 (origin
12077 (method git-fetch)
12078 (uri (git-reference
12079 (url "https://github.com/38a938c2/cl-emb")
12080 (commit commit)))
12081 (file-name (git-file-name name version))
12082 (sha256
12083 (base32 "1xcm31n7afh5316lwz8iqbjx7kn5lw0l11arg8mhdmkx42aj4gkk"))))
12084 (build-system asdf-build-system/sbcl)
12085 (inputs
12086 `(("cl-ppcre" ,sbcl-cl-ppcre)))
12087 (synopsis "Templating system for Common Lisp")
12088 (description "A mixture of features from eRuby and HTML::Template. You
12089 could name it \"Yet Another LSP\" (LispServer Pages) but it's a bit more than
12090 that and not limited to a certain server or text format.")
12091 (license license:llgpl))))
12092
12093 (define-public cl-emb
12094 (sbcl-package->cl-source-package sbcl-cl-emb))
12095
12096 (define-public ecl-cl-emb
12097 (sbcl-package->ecl-package sbcl-cl-emb))
12098
12099 (define-public sbcl-cl-project
12100 (let ((commit "151107014e534fc4666222d57fec2cc8549c8814")
12101 (revision "1"))
12102 (package
12103 (name "sbcl-cl-project")
12104 (version (git-version "0.3.1" revision commit))
12105 (home-page "https://github.com/fukamachi/cl-project")
12106 (source
12107 (origin
12108 (method git-fetch)
12109 (uri (git-reference
12110 (url home-page)
12111 (commit commit)))
12112 (file-name (git-file-name name version))
12113 (sha256
12114 (base32 "1rmh6s1ncv8s2yrr14ja9wisgg745sq6xibqwb341ikdicxdp26y"))))
12115 (build-system asdf-build-system/sbcl)
12116 (inputs
12117 `(("cl-emb" ,sbcl-cl-emb)
12118 ("cl-ppcre" ,sbcl-cl-ppcre)
12119 ("local-time" ,sbcl-local-time)
12120 ("prove" ,sbcl-prove)))
12121 (arguments
12122 ;; Tests depend on caveman, which in turns depends on cl-project.
12123 '(#:tests? #f
12124 #:asd-files '("cl-project.asd")))
12125 (synopsis "Generate a skeleton for modern Common Lisp projects")
12126 (description "This library provides a modern project skeleton generator.
12127 In contract with other generators, CL-Project generates one package per file
12128 and encourages unit testing by generating a system for unit testing, so you
12129 can begin writing unit tests as soon as the project is generated.")
12130 (license license:llgpl))))
12131
12132 (define-public cl-project
12133 (sbcl-package->cl-source-package sbcl-cl-project))
12134
12135 (define-public ecl-cl-project
12136 (sbcl-package->ecl-package sbcl-cl-project))
12137
12138 (define-public sbcl-caveman
12139 (let ((commit "faa5f7e3b364fd7e7096af9a7bb06728b8d80441") ; No release since 2012
12140 (revision "1"))
12141 (package
12142 (name "sbcl-caveman")
12143 (version (git-version "2.4.0" revision commit))
12144 (home-page "http://8arrow.org/caveman/")
12145 (source
12146 (origin
12147 (method git-fetch)
12148 (uri (git-reference
12149 (url "https://github.com/fukamachi/caveman/")
12150 (commit commit)))
12151 (file-name (git-file-name name version))
12152 (sha256
12153 (base32 "0kh0gx05pczk8f7r9qdi4zn1p3d0a2prps27k7jpgvc1dxkl8qhq"))))
12154 (build-system asdf-build-system/sbcl)
12155 (inputs
12156 `(("ningle" ,cl-ningle)
12157 ("lack" ,sbcl-lack)
12158 ("cl-project" ,sbcl-cl-project)
12159 ("dbi" ,sbcl-dbi)
12160 ("cl-syntax" ,sbcl-cl-syntax)
12161 ("myway" ,sbcl-myway)
12162 ("quri" ,sbcl-quri)))
12163 (native-inputs
12164 `(("usocket" ,sbcl-usocket)
12165 ("dexador" ,sbcl-dexador)))
12166 (arguments
12167 `(#:asd-files '("caveman2.asd")
12168 #:asd-systems '("caveman2")
12169 #:phases
12170 (modify-phases %standard-phases
12171 (add-after 'unpack 'remove-v1
12172 (lambda _
12173 (delete-file-recursively "v1")
12174 (for-each delete-file
12175 '("README.v1.markdown" "caveman.asd" "caveman-test.asd")))))
12176 ;; TODO: Tests fail with:
12177 ;; writing /gnu/store/...-sbcl-caveman-2.4.0-1.faa5f7e/share/common-lisp/sbcl-source/caveman2/v2/t/tmp/myapp573/tests/myapp573.lisp
12178 ;; While evaluating the form starting at line 38, column 0
12179 ;; of #P"/tmp/guix-build-sbcl-caveman-2.4.0-1.faa5f7e.drv-0/source/v2/t/caveman.lisp":
12180 ;; Unhandled ASDF/FIND-COMPONENT:MISSING-COMPONENT in thread #<SB-THREAD:THREAD "main thread" RUNNING
12181 ;; {10009F8083}>:
12182 ;; Component "myapp573" not found
12183 #:tests? #f))
12184 (synopsis "Lightweight web application framework in Common Lisp")
12185 (description "Caveman is intended to be a collection of common parts for
12186 web applications. Caveman2 has three design goals:
12187
12188 @itemize
12189 @item Be extensible.
12190 @item Be practical.
12191 @item Don't force anything.
12192 @end itemize\n")
12193 (license license:llgpl))))
12194
12195 (define-public cl-caveman
12196 (package
12197 (inherit
12198 (sbcl-package->cl-source-package sbcl-caveman))
12199 (propagated-inputs
12200 `(("ningle" ,cl-ningle)))))
12201
12202 (define-public ecl-caveman
12203 (sbcl-package->ecl-package sbcl-caveman))
12204
12205 (define-public sbcl-lambda-fiddle
12206 (let ((commit "d16bba55acf6065b412f64ab8fdff679a4a32b1e") ;; no tagged branch
12207 (revision "1"))
12208 (package
12209 (name "sbcl-lambda-fiddle")
12210 (version (git-version "1.0.0" revision commit))
12211 (source
12212 (origin
12213 (method git-fetch)
12214 (uri (git-reference
12215 (url "https://github.com/Shinmera/lambda-fiddle")
12216 (commit commit)))
12217 (file-name (git-file-name name version))
12218 (sha256
12219 (base32 "1zarj1pqjqmk95kdx1axkgpwy2wq3canczk7f9z5hvaw5an6gand"))))
12220 (build-system asdf-build-system/sbcl)
12221 (home-page "https://github.com/Shinmera/lambda-fiddle")
12222 (synopsis "Collection of utilities to process lambda-lists")
12223 (description "This collection of utilities is useful in contexts where
12224 you want a macro that uses lambda-lists in some fashion but need more precise
12225 processing.")
12226 (license license:zlib))))
12227
12228 (define-public cl-lambda-fiddle
12229 (sbcl-package->cl-source-package sbcl-lambda-fiddle))
12230
12231 (define-public ecl-lambda-fiddle
12232 (sbcl-package->ecl-package sbcl-lambda-fiddle))
12233
12234 (define-public sbcl-xmls
12235 (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
12236 (revision "1"))
12237 (package
12238 (name "sbcl-xmls")
12239 (version (git-version "3.0.2" revision commit))
12240 (source
12241 (origin
12242 (method git-fetch)
12243 (uri (git-reference
12244 (url "https://github.com/rpgoldman/xmls")
12245 (commit commit)))
12246 (file-name (git-file-name name version))
12247 (sha256
12248 (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
12249 (native-inputs
12250 `(("fiveam" ,sbcl-fiveam)))
12251 (build-system asdf-build-system/sbcl)
12252 (home-page "https://github.com/rpgoldman/xmls")
12253 (synopsis "Non-validating XML parser for Common Lisp")
12254 (description "Xmls is a self-contained, easily embedded parser that
12255 recognizes a useful subset of the XML spec. It provides a simple mapping from
12256 XML to Lisp structures or s-expressions and back.")
12257 (license license:bsd-2))))
12258
12259 (define-public cl-xmls
12260 (sbcl-package->cl-source-package sbcl-xmls))
12261
12262 (define-public ecl-xmls
12263 (sbcl-package->ecl-package sbcl-xmls))
12264
12265 (define-public sbcl-geco
12266 (package
12267 (name "sbcl-geco")
12268 (version "2.1.1")
12269 (source
12270 (origin
12271 (method git-fetch)
12272 (uri (git-reference
12273 (url "https://github.com/gpwwjr/GECO")
12274 (commit (string-append "v" version))))
12275 (file-name (git-file-name "geco" version))
12276 (sha256
12277 (base32 "1rc8a4mk40hjx5qy980hjylv6xxqdbq38hg8c4w30y93abfd519s"))))
12278 (build-system asdf-build-system/sbcl)
12279 (home-page "http://hiwaay.net/~gpw/geco/geco.html")
12280 (synopsis "Genetic algorithm toolkit for Common Lisp")
12281 (description
12282 "GECO (Genetic Evolution through Combination of Objects) is an extensible,
12283 object-oriented framework for prototyping genetic algorithms in Common Lisp.")
12284 (license license:lgpl2.1+)))
12285
12286 (define-public cl-geco
12287 (sbcl-package->cl-source-package sbcl-geco))
12288
12289 (define-public ecl-geco
12290 (sbcl-package->ecl-package sbcl-geco))
12291
12292 (define-public sbcl-html-entities
12293 (let ((commit "4af018048e891f41d77e7d680ed3aeb639e1eedb"))
12294 (package
12295 (name "sbcl-html-entities")
12296 (version (git-version "0.02" "1" commit))
12297 (source
12298 (origin
12299 (method git-fetch)
12300 (uri (git-reference
12301 (url "https://github.com/BnMcGn/html-entities/")
12302 (commit commit)))
12303 (file-name (git-file-name name version))
12304 (sha256
12305 (base32 "1b2yl6lf6vis17y4n5s505p7ica96bdafcl6vydy1hg50fy33nfr"))))
12306 (build-system asdf-build-system/sbcl)
12307 (inputs
12308 `(("ppcre" ,sbcl-cl-ppcre)))
12309 (native-inputs
12310 `(("fiveam" ,sbcl-fiveam)))
12311 (home-page "https://github.com/BnMcGn/html-entities/")
12312 (synopsis "Encode and decode entities in HTML with Common Lisp")
12313 (description "Html-entities is a Common Lisp library that lets you
12314 encode and decode entities in HTML.")
12315 (license license:expat))))
12316
12317 (define-public cl-html-entities
12318 (sbcl-package->cl-source-package sbcl-html-entities))
12319
12320 (define-public ecl-html-entities
12321 (sbcl-package->ecl-package sbcl-html-entities))
12322
12323 (define-public sbcl-quicksearch
12324 (let ((commit "fb02ecf7c876ec580ab18c7d2c8c7814c06af599"))
12325 (package
12326 (name "sbcl-quicksearch")
12327 (version (git-version "0.01.04" "1" commit))
12328 (source
12329 (origin
12330 (method git-fetch)
12331 (uri (git-reference
12332 (url "https://github.com/tkych/quicksearch/")
12333 (commit commit)))
12334 (file-name (git-file-name name version))
12335 (sha256
12336 (base32 "16k19zjkhh7r64vjq371k5jwjs7cdfjz83flh561n4h4v1z89fps"))))
12337 (build-system asdf-build-system/sbcl)
12338 (inputs
12339 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
12340 ("iterate" ,sbcl-iterate)
12341 ("alexandria" ,sbcl-alexandria)
12342 ("anaphora" ,sbcl-anaphora)
12343 ("ppcre" ,sbcl-cl-ppcre)
12344 ("drakma" ,sbcl-drakma)
12345 ("html-entities" ,sbcl-html-entities)
12346 ("yason" ,sbcl-yason)
12347 ("flexi-streams" ,sbcl-flexi-streams)
12348 ("do-urlencode" ,sbcl-do-urlencode)))
12349 (home-page "https://github.com/tkych/quicksearch/")
12350 (synopsis "Search Engine Interface for Common Lisp packages")
12351 (description "Quicksearch is a search-engine-interface for Common Lisp.
12352 The goal of Quicksearch is to find the Common Lisp library quickly. For
12353 example, if you will find the library about json, just type @code{(qs:?
12354 'json)} at REPL.
12355
12356 The function @code{quicksearch} searches for Common Lisp projects in
12357 Quicklisp, Cliki, GitHub and BitBucket, then outputs results in REPL. The
12358 function @code{?} is abbreviation wrapper for @code{quicksearch}.")
12359 (license license:expat))))
12360
12361 (define-public cl-quicksearch
12362 (sbcl-package->cl-source-package sbcl-quicksearch))
12363
12364 (define-public ecl-quicksearch
12365 (sbcl-package->ecl-package sbcl-quicksearch))
12366
12367 (define-public sbcl-agutil
12368 (let ((commit "df188d754d472da9faa1601a48f1f37bb7b34d68"))
12369 (package
12370 (name "sbcl-agutil")
12371 (version (git-version "0.0.1" "1" commit))
12372 (source
12373 (origin
12374 (method git-fetch)
12375 (uri (git-reference
12376 (url "https://github.com/alex-gutev/agutil/")
12377 (commit commit)))
12378 (file-name (git-file-name name version))
12379 (sha256
12380 (base32 "1xpnyzksk2xld64b6lw6rw0gn5zxlb77jwna59sd4yl7kxhxlfpf"))))
12381 (build-system asdf-build-system/sbcl)
12382 (inputs
12383 `(("alexandria" ,sbcl-alexandria)
12384 ("trivia" ,sbcl-trivia)))
12385 (home-page "https://github.com/alex-gutev/agutil/")
12386 (synopsis "Collection of Common Lisp utilities")
12387 (description "A collection of Common Lisp utility functions and macros
12388 mostly not found in other utility packages.")
12389 (license license:expat))))
12390
12391 (define-public cl-agutil
12392 (sbcl-package->cl-source-package sbcl-agutil))
12393
12394 (define-public ecl-agutil
12395 (sbcl-package->ecl-package sbcl-agutil))
12396
12397 (define-public sbcl-custom-hash-table
12398 (let ((commit "f26983133940f5edf826ebbc8077acc04816ddfa"))
12399 (package
12400 (name "sbcl-custom-hash-table")
12401 (version (git-version "0.3" "1" commit))
12402 (source
12403 (origin
12404 (method git-fetch)
12405 (uri (git-reference
12406 (url "https://github.com/metawilm/cl-custom-hash-table")
12407 (commit commit)))
12408 (file-name (git-file-name name version))
12409 (sha256
12410 (base32 "1k4mvrpbqqds2fwjxp1bxmrfmr8ch4dkwhnkbw559knbqshvrlj5"))))
12411 (build-system asdf-build-system/sbcl)
12412 (arguments
12413 '(#:asd-files '("cl-custom-hash-table.asd")
12414 #:asd-systems '("cl-custom-hash-table")))
12415 (home-page "https://github.com/metawilm/cl-custom-hash-table")
12416 (synopsis "Custom hash tables for Common Lisp")
12417 (description "This library allows creation of hash tables with arbitrary
12418 @code{test}/@code{hash} functions, in addition to the @code{test} functions
12419 allowed by the standard (@code{EQ}, @code{EQL}, @code{EQUAL} and
12420 @code{EQUALP}), even in implementations that don't support this functionality
12421 directly.")
12422 (license license:expat))))
12423
12424 (define-public cl-custom-hash-table
12425 (sbcl-package->cl-source-package sbcl-custom-hash-table))
12426
12427 (define-public ecl-custom-hash-table
12428 (sbcl-package->ecl-package sbcl-custom-hash-table))
12429
12430 (define-public sbcl-collectors
12431 (let ((commit "13acef25d8422d1d82e067b1861e513587c166ee"))
12432 (package
12433 (name "sbcl-collectors")
12434 (version (git-version "0.1" "1" commit))
12435 (source
12436 (origin
12437 (method git-fetch)
12438 (uri (git-reference
12439 (url "https://github.com/AccelerationNet/collectors")
12440 (commit commit)))
12441 (file-name (git-file-name name version))
12442 (sha256
12443 (base32 "1si68n1j6rpns8jw6ksqjpb937pdl30v7xza8rld7j5vh0jhy2yi"))))
12444 (build-system asdf-build-system/sbcl)
12445 (inputs
12446 `(("alexandria" ,sbcl-alexandria)
12447 ("closer-mop" ,sbcl-closer-mop)
12448 ("symbol-munger" ,sbcl-symbol-munger)))
12449 (native-inputs
12450 `(("lisp-unit2" ,sbcl-lisp-unit2)))
12451 (home-page "https://github.com/AccelerationNet/collectors/")
12452 (synopsis "Common lisp library providing collector macros")
12453 (description "A small collection of common lisp macros to make
12454 collecting values easier.")
12455 (license license:bsd-3))))
12456
12457 (define-public cl-collectors
12458 (sbcl-package->cl-source-package sbcl-collectors))
12459
12460 (define-public ecl-collectors
12461 (sbcl-package->ecl-package sbcl-collectors))
12462
12463 (define-public sbcl-cl-environments
12464 (let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years.
12465 (package
12466 (name "sbcl-cl-environments")
12467 (version (git-version "0.2.3" "1" commit))
12468 (source
12469 (origin
12470 (method git-fetch)
12471 (uri (git-reference
12472 (url "https://github.com/alex-gutev/cl-environments")
12473 (commit commit)))
12474 (file-name (git-file-name name version))
12475 (sha256
12476 (base32
12477 "18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
12478 (build-system asdf-build-system/sbcl)
12479 (inputs
12480 `(("alexandria" ,sbcl-alexandria)
12481 ("anaphora" ,sbcl-anaphora)
12482 ("collectors" ,sbcl-collectors)
12483 ("optima" ,sbcl-optima)))
12484 (native-inputs
12485 `(("prove" ,sbcl-prove)))
12486 (home-page "https://github.com/alex-gutev/cl-environments")
12487 (synopsis "Implements the Common Lisp standard environment access API")
12488 (description "This library provides a uniform API, as specified in Common
12489 Lisp the Language 2, for accessing information about variable and function
12490 bindings from implementation-defined lexical environment objects. All major
12491 Common Lisp implementations are supported, even those which don't support the
12492 CLTL2 environment access API.")
12493 (license license:expat))))
12494
12495 (define-public cl-environments
12496 (sbcl-package->cl-source-package sbcl-cl-environments))
12497
12498 (define-public ecl-environments
12499 (sbcl-package->ecl-package sbcl-cl-environments))
12500
12501 (define-public sbcl-static-dispatch
12502 (let ((commit "6243afcd152854c52ba33daef7394367b657d9c6")
12503 (revision "1"))
12504 (package
12505 (name "sbcl-static-dispatch")
12506 (version (git-version "0.3" revision commit))
12507 (source
12508 (origin
12509 (method git-fetch)
12510 (uri (git-reference
12511 (url "https://github.com/alex-gutev/static-dispatch")
12512 (commit commit)))
12513 (file-name (git-file-name "static-dispatch" version))
12514 (sha256
12515 (base32 "1lli9ar1xbnhkgb5d01rlw4pvfylg2arrw68np2c07fpkkafimg7"))))
12516 (build-system asdf-build-system/sbcl)
12517 (native-inputs
12518 `(("prove" ,sbcl-prove)))
12519 (inputs
12520 `(("agutil" ,sbcl-agutil)
12521 ("alexandria" ,sbcl-alexandria)
12522 ("anaphora" ,sbcl-anaphora)
12523 ("arrows" ,sbcl-arrows)
12524 ("cl-environments" ,sbcl-cl-environments)
12525 ("closer-mop" ,sbcl-closer-mop)
12526 ("iterate" ,sbcl-iterate)
12527 ("trivia" ,sbcl-trivia)))
12528 (home-page "https://github.com/alex-gutev/static-dispatch")
12529 (synopsis "Static generic function dispatch for Common Lisp")
12530 (description "Static dispatch is a Common Lisp library, inspired by
12531 @code{inlined-generic-function}, which allows standard Common Lisp generic
12532 function dispatch to be performed statically (at compile time) rather than
12533 dynamically (runtime). This is similar to what is known as \"overloading\" in
12534 languages such as C++ and Java.
12535
12536 The purpose of static dispatch is to provide an optimization in cases where
12537 the usual dynamic dispatch is too slow, and the dynamic features of generic
12538 functions, such as adding/removing methods at runtime are not required. An
12539 example of such a case is a generic equality comparison function. Currently
12540 generic functions are considered far too slow to implement generic arithmetic
12541 and comparison operations when used heavily in numeric code.")
12542 (license license:expat))))
12543
12544 (define-public cl-static-dispatch
12545 (sbcl-package->cl-source-package sbcl-static-dispatch))
12546
12547 (define-public ecl-static-dispatch
12548 (sbcl-package->ecl-package sbcl-static-dispatch))
12549
12550 (define-public sbcl-generic-cl
12551 ;; Latest commit includes a necessary fix for our Guix build.
12552 (let ((commit "8e5a81487ee3c13fe5ffdc8bdda161d476639535"))
12553 (package
12554 (name "sbcl-generic-cl")
12555 (version (git-version "0.7.1" "1" commit))
12556 (source
12557 (origin
12558 (method git-fetch)
12559 (uri (git-reference
12560 (url "https://github.com/alex-gutev/generic-cl")
12561 (commit commit)))
12562 (file-name (git-file-name name version))
12563 (sha256
12564 (base32
12565 "11w0g79s4wmc78vmfng437rmsgnp5qn246zcyr540fp5nw0ad6ix"))))
12566 (build-system asdf-build-system/sbcl)
12567 (inputs
12568 `(("agutil" ,sbcl-agutil)
12569 ("alexandria" ,sbcl-alexandria)
12570 ("anaphora" ,sbcl-anaphora)
12571 ("arrows" ,sbcl-arrows)
12572 ("cl-custom-hash-table" ,sbcl-custom-hash-table)
12573 ("static-dispatch" ,sbcl-static-dispatch)
12574 ("trivia" ,sbcl-trivia)))
12575 (native-inputs
12576 `(("prove" ,sbcl-prove)))
12577 (arguments
12578 ;; Tests fail because SBCL head size is not high enough.
12579 ;; https://github.com/alex-gutev/generic-cl/issues/6
12580 `(#:tests? #f))
12581 (home-page "https://alex-gutev.github.io/generic-cl/")
12582 (synopsis "Generic function interface to standard Common Lisp functions")
12583 (description "@code{generic-cl} provides a generic function wrapper over
12584 various functions in the Common Lisp standard, such as equality predicates and
12585 sequence operations. The goal of this wrapper is to provide a standard
12586 interface to common operations, such as testing for the equality of two
12587 objects, which is extensible to user-defined types.")
12588 (license license:expat))))
12589
12590 (define-public cl-generic-cl
12591 (sbcl-package->cl-source-package sbcl-generic-cl))
12592
12593 (define-public ecl-generic-cl
12594 (sbcl-package->ecl-package sbcl-generic-cl))
12595
12596 (define-public sbcl-defpackage-plus
12597 (let ((revision "0")
12598 (commit "5492e27e0bdb7b75fa5177ea4388519dc7a75f11"))
12599 (package
12600 (name "sbcl-defpackage-plus")
12601 (version (git-version "1.0" revision commit))
12602 (source
12603 (origin
12604 (method git-fetch)
12605 (uri (git-reference
12606 (url "https://github.com/rpav/defpackage-plus")
12607 (commit commit)))
12608 (file-name (git-file-name name version))
12609 (sha256
12610 (base32 "0lzljvf343xb6mlh6lni2i27hpm5qd376522mk6hr2pa20vd6rdq"))))
12611 (build-system asdf-build-system/sbcl)
12612 (inputs
12613 `(("alexandria" ,sbcl-alexandria)))
12614 (home-page "https://github.com/rpav/defpackage-plus")
12615 (synopsis "Extensible @code{DEFPACKAGE} variant with version support")
12616 (description
12617 "@code{DEFPACKAGE-PLUS} is an extensible @code{DEFPACKAGE} variant with
12618 predictable cross-platform behavior and some utilities useful for versioning.")
12619 (license license:bsd-2))))
12620
12621 (define-public cl-defpackage-plus
12622 (sbcl-package->cl-source-package sbcl-defpackage-plus))
12623
12624 (define-public ecl-defpackage-plus
12625 (sbcl-package->ecl-package sbcl-defpackage-plus))
12626
12627 (define-public sbcl-deploy
12628 (let ((commit "9b20e64fe924b9e31832304d87a3a72c383dc6d8")
12629 (revision "2"))
12630 (package
12631 (name "sbcl-deploy")
12632 (version (git-version "1.0.0" revision commit))
12633 (source
12634 (origin
12635 (method git-fetch)
12636 (uri (git-reference
12637 (url "https://github.com/Shinmera/deploy")
12638 (commit commit)))
12639 (file-name (git-file-name "deploy" version))
12640 (sha256
12641 (base32 "07pfkibaridihg8lbq2czwa4iqifqk24n6rx7bfnv7i49p1ppja1"))))
12642 (build-system asdf-build-system/sbcl)
12643 (arguments
12644 `(#:test-asd-file "deploy-test.asd"
12645 #:asd-files '("deploy.asd"
12646 "deploy-test.asd")))
12647 (native-inputs
12648 `(("cl-mpg123" ,sbcl-cl-mpg123)
12649 ("cl-out123" ,sbcl-cl-out123)))
12650 (inputs
12651 `(("cffi" ,sbcl-cffi)
12652 ("documentation-utils" ,sbcl-documentation-utils)
12653 ("trivial-features" ,sbcl-trivial-features)))
12654 (home-page "https://shinmera.github.io/deploy/")
12655 (synopsis "Deployment tools for standalone Common Lisp application")
12656 (description
12657 "This is a system to help you easily and quickly deploy standalone
12658 common lisp applications as binaries. Specifically it is geared towards
12659 applications with foreign library dependencies that run some kind of GUI.")
12660 (license license:artistic2.0))))
12661
12662 (define-public cl-deploy
12663 (sbcl-package->cl-source-package sbcl-deploy))
12664
12665 (define-public ecl-deploy
12666 (sbcl-package->ecl-package sbcl-deploy))
12667
12668 (define-public sbcl-deeds
12669 ;; taged branch is outdated
12670 (let ((revision "1")
12671 (commit "f5df54eac79b58a34030e0eb8acf3952c788410d"))
12672 (package
12673 (name "sbcl-deeds")
12674 (version (git-version "1.1.1" revision commit))
12675 (source
12676 (origin
12677 (method git-fetch)
12678 (uri (git-reference
12679 (url "https://github.com/Shinmera/deeds")
12680 (commit commit)))
12681 (file-name (git-file-name name version))
12682 (sha256
12683 (base32 "062cnb2dwli6pw3zvv46jfxyxdzcbzwsck5pa6nw03qf1j1hyg3k"))))
12684 (build-system asdf-build-system/sbcl)
12685 (inputs
12686 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
12687 ("closer-mop" ,sbcl-closer-mop)
12688 ("form-fiddle" ,sbcl-form-fiddle)
12689 ("lambda-fiddle" ,sbcl-lambda-fiddle)))
12690 (home-page "https://github.com/Shinmera/deeds")
12691 (synopsis "Extensible Event Delivery System")
12692 (description
12693 "@code{deeds} allows for efficient event delivery to multiple handlers
12694 with a complex event filtering system.")
12695 (license license:zlib))))
12696
12697 (define-public cl-deeds
12698 (sbcl-package->cl-source-package sbcl-deeds))
12699
12700 (define-public ecl-deeds
12701 (sbcl-package->ecl-package sbcl-deeds))
12702
12703 (define-public sbcl-make-hash
12704 ;; no tagged branch
12705 (let ((revision "1")
12706 (commit "ae0909cd8e697520a1085fac6f54ac2b448ebd21"))
12707 (package
12708 (name "sbcl-make-hash")
12709 (version (git-version "1.0.2" revision commit))
12710 (source
12711 (origin
12712 (method git-fetch)
12713 (uri (git-reference
12714 (url "https://github.com/genovese/make-hash")
12715 (commit commit)))
12716 (file-name (git-file-name name version))
12717 (sha256
12718 (base32 "1qa4mcmb3pv44py0j129dd8hjx09c2akpnds53b69151mgwv5qz8"))))
12719 (build-system asdf-build-system/sbcl)
12720 (home-page "https://github.com/genovese/make-hash")
12721 (synopsis "Common Lisp package for flexible hash table creation")
12722 (description
12723 "This is a Common Lisp package for hash table creation with flexible,
12724 extensible initializers.")
12725 (license license:bsd-3))))
12726
12727 (define-public cl-make-hash
12728 (sbcl-package->cl-source-package sbcl-make-hash))
12729
12730 (define-public ecl-make-hash
12731 (sbcl-package->ecl-package sbcl-make-hash))
12732
12733 (define-public sbcl-claw-support
12734 (package
12735 (name "sbcl-claw-support")
12736 (version "1.0.0")
12737 (source
12738 (origin
12739 (method git-fetch)
12740 (uri (git-reference
12741 (url "https://github.com/borodust/claw-support")
12742 (commit "9a15c8bed04585f45e6a461bcda1b475144dbd0b")))
12743 (file-name (git-file-name name version))
12744 (sha256
12745 (base32 "1my2ka7h72ipx5n3b465g6kjkasrhsvhqlijwcg6dhlzs5yygl23"))))
12746 (build-system asdf-build-system/sbcl)
12747 (home-page "https://github.com/borodust/claw-support")
12748 (synopsis "Support routines for claw")
12749 (description
12750 "This package provides support routines for the @code{claw} Common Lisp
12751 package.")
12752 (license license:expat)))
12753
12754 (define-public cl-claw-support
12755 (sbcl-package->cl-source-package sbcl-claw-support))
12756
12757 (define-public ecl-claw-support
12758 (sbcl-package->ecl-package sbcl-claw-support))
12759
12760 (define-public sbcl-claw
12761 (let ((revision "0")
12762 (commit "3cd4a96fca95eb9e8d5d069426694669f81b2250"))
12763 (package
12764 (name "sbcl-claw")
12765 (version (git-version "1.0" revision commit))
12766 (source
12767 (origin
12768 (method git-fetch)
12769 (uri (git-reference
12770 (url "https://github.com/borodust/claw")
12771 (commit commit)))
12772 (file-name (git-file-name "claw" version))
12773 (sha256
12774 (base32 "146yv0hc4hmk72562ssj2d41143pp84dcbd1h7f4nx1c7hf2bb0d"))))
12775 (build-system asdf-build-system/sbcl)
12776 (inputs
12777 `(("alexandria" ,sbcl-alexandria)
12778 ("cffi" ,sbcl-cffi)
12779 ("cl-json" ,sbcl-cl-json)
12780 ("cl-ppcre" ,sbcl-cl-ppcre)
12781 ("claw-support" ,sbcl-claw-support)
12782 ("local-time" ,sbcl-local-time)
12783 ("trivial-features" ,sbcl-trivial-features)))
12784 (home-page "https://github.com/borodust/claw")
12785 (synopsis "Autowrapper for Common Lisp")
12786 (description
12787 "This is a Common Lisp autowrapping facility for quickly creating clean
12788 and lean bindings to C libraries.")
12789 (license license:bsd-2))))
12790
12791 (define-public cl-claw
12792 (sbcl-package->cl-source-package sbcl-claw))
12793
12794 (define-public ecl-claw
12795 (sbcl-package->ecl-package sbcl-claw))
12796
12797 (define-public sbcl-claw-utils
12798 (let ((revision "0")
12799 (commit "efe25016501973dc369f067a64c7d225802bc56f"))
12800 (package
12801 (name "sbcl-claw-utils")
12802 ;; version is not specified
12803 (version (git-version "0.0.0" revision commit))
12804 (source
12805 (origin
12806 (method git-fetch)
12807 (uri (git-reference
12808 (url "https://github.com/borodust/claw-utils")
12809 (commit commit)))
12810 (file-name (git-file-name "claw-utils" version))
12811 (sha256
12812 (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
12813 (build-system asdf-build-system/sbcl)
12814 (inputs
12815 `(("alexandria" ,sbcl-alexandria)
12816 ("cffi" ,sbcl-cffi)
12817 ("claw" ,sbcl-claw)))
12818 (home-page "https://github.com/borodust/claw-utils")
12819 (synopsis "Utilities for easier autowrapping")
12820 (description
12821 "This Common Lisp library contains various handy utilties to help
12822 autowrapping with @code{claw}.")
12823 (license license:expat))))
12824
12825 (define-public cl-claw-utils
12826 (sbcl-package->cl-source-package sbcl-claw-utils))
12827
12828 (define-public ecl-claw-utils
12829 (sbcl-package->ecl-package sbcl-claw-utils))
12830
12831 (define-public sbcl-array-operations
12832 (let ((commit "75cbc3b1adb2e3ce2109489753d0f290b071e81b")
12833 (revision "0"))
12834 (package
12835 (name "sbcl-array-operations")
12836 (version (git-version "0.0.0" revision commit))
12837 (source
12838 (origin
12839 (method git-fetch)
12840 (uri (git-reference
12841 (url "https://github.com/bendudson/array-operations")
12842 (commit commit)))
12843 (file-name (git-file-name "array-operations" version))
12844 (sha256
12845 (base32 "0ip49hhq32w80qsc7jmspyda5r2rsszvw0mk2r3341cld78sz9ya"))))
12846 (build-system asdf-build-system/sbcl)
12847 (native-inputs
12848 `(("alexandria" ,sbcl-alexandria)
12849 ("clunit2" ,sbcl-clunit2)))
12850 (inputs
12851 `(("let-plus" ,sbcl-let-plus)))
12852 (synopsis "Simple array operations library for Common Lisp")
12853 (description
12854 "This library is a collection of functions and macros for manipulating
12855 Common Lisp arrays and performing numerical calculations with them.")
12856 (home-page "https://github.com/bendudson/array-operations")
12857 (license license:expat))))
12858
12859 (define-public cl-array-operations
12860 (sbcl-package->cl-source-package sbcl-array-operations))
12861
12862 (define-public ecl-array-operations
12863 (sbcl-package->ecl-package sbcl-array-operations))
12864
12865 (define-public sbcl-clml
12866 (let ((commit "95505b54c8c7b4b27f500c3be97fa5732f4b51a8")
12867 (revision "0"))
12868 (package
12869 (name "sbcl-clml")
12870 (version (git-version "0.0.0" revision commit))
12871 (source
12872 (origin
12873 (method git-fetch)
12874 (uri (git-reference
12875 (url "https://github.com/mmaul/clml")
12876 (commit commit)))
12877 (file-name (git-file-name "clml" version))
12878 (sha256
12879 (base32 "006pii59nmpc61n7p7h8ha5vjg6x0dya327i58z0rnvxs249h345"))
12880 ;; TODO: Remove this when the patch has been merged upstream.
12881 (patches (search-patches "sbcl-clml-fix-types.patch"))))
12882 (build-system asdf-build-system/sbcl)
12883 (inputs
12884 `(("alexandia" ,sbcl-alexandria)
12885 ("array-operations" ,sbcl-array-operations)
12886 ("cl-fad" ,sbcl-cl-fad)
12887 ("cl-ppcre" ,sbcl-cl-ppcre)
12888 ("drakma" ,sbcl-drakma)
12889 ("introspect-environment" ,sbcl-introspect-environment)
12890 ("iterate" ,sbcl-iterate)
12891 ("lparallel" ,sbcl-lparallel)
12892 ("parse-number" ,sbcl-parse-number)
12893 ("split-sequence" ,sbcl-split-sequence)
12894 ("trivial-garbage" ,sbcl-trivial-garbage)))
12895 (synopsis "Common Lisp machine learning library")
12896 (description
12897 "CLML (Common Lisp Machine Learning) is a high performance and large
12898 scale statistical machine learning package")
12899 (home-page "https://mmaul.github.io/clml/")
12900 (license license:llgpl))))
12901
12902 (define-public cl-clml
12903 (sbcl-package->cl-source-package sbcl-clml))
12904
12905 (define-public sbcl-utm-ups
12906 (let ((commit "780f1d8ab6290ad2be0f40e2cddc2535fa6fe979")
12907 (revision "0"))
12908 (package
12909 (name "sbcl-utm-ups")
12910 (version (git-version "1.0" revision commit))
12911 (source
12912 (origin
12913 (method git-fetch)
12914 (uri (git-reference
12915 (url "https://github.com/glv2/utm-ups")
12916 (commit commit)))
12917 (file-name (git-file-name "utm-ups" version))
12918 (sha256
12919 (base32 "0l3kr2m56skf5cx3kkkdcis7msmidcsixx9fqjapkcjsj8x67aqq"))))
12920 (build-system asdf-build-system/sbcl)
12921 (native-inputs
12922 `(("fiveam" ,sbcl-fiveam)))
12923 (synopsis
12924 "Convert coordinates between latitude/longitude and UTM or UPS")
12925 (description
12926 "This a Common Lisp library to convert geographic coordinates between
12927 latitude/longitude and UTM (Universal Transverse Mercator) or UPS (Universal
12928 Polar Stereographic).")
12929 (home-page "https://github.com/glv2/utm-ups")
12930 (license license:gpl3+))))
12931
12932 (define-public cl-utm-ups
12933 (sbcl-package->cl-source-package sbcl-utm-ups))
12934
12935 (define-public ecl-utm-ups
12936 (sbcl-package->ecl-package sbcl-utm-ups))
12937
12938 (define-public sbcl-mgrs
12939 (let ((commit "00455460407b7e5509d1be3da09bf6152956761f")
12940 (revision "0"))
12941 (package
12942 (name "sbcl-mgrs")
12943 (version (git-version "1.0" revision commit))
12944 (source
12945 (origin
12946 (method git-fetch)
12947 (uri (git-reference
12948 (url "https://github.com/glv2/mgrs")
12949 (commit commit)))
12950 (file-name (git-file-name "mgrs" version))
12951 (sha256
12952 (base32 "0ckvn4hg3wwivzavhfashb6fap4a1q10l8krhbng8bdb54ac10sz"))))
12953 (build-system asdf-build-system/sbcl)
12954 (native-inputs
12955 `(("fiveam" ,sbcl-fiveam)))
12956 (inputs
12957 `(("utm-ups" ,sbcl-utm-ups)))
12958 (synopsis
12959 "Convert coordinates between latitude/longitude and MGRS")
12960 (description
12961 "This a Common Lisp library to convert geographic coordinates between
12962 latitude/longitude and MGRS.")
12963 (home-page "https://github.com/glv2/mgrs")
12964 (license license:gpl3+))))
12965
12966 (define-public cl-mgrs
12967 (sbcl-package->cl-source-package sbcl-mgrs))
12968
12969 (define-public ecl-mgrs
12970 (sbcl-package->ecl-package sbcl-mgrs))
12971
12972 (define-public sbcl-maidenhead
12973 (let ((commit "b756d235c27b5d6798867aa240318af1a8f35d6d")
12974 (revision "0"))
12975 (package
12976 (name "sbcl-maidenhead")
12977 (version (git-version "1.0" revision commit))
12978 (source
12979 (origin
12980 (method git-fetch)
12981 (uri (git-reference
12982 (url "https://github.com/glv2/maidenhead")
12983 (commit commit)))
12984 (file-name (git-file-name "maidenhead" version))
12985 (sha256
12986 (base32 "02p990zprhjvifmsfk8yh3frvz6xyw26ikzxvzglqdixbal36nr3"))))
12987 (build-system asdf-build-system/sbcl)
12988 (native-inputs
12989 `(("fiveam" ,sbcl-fiveam)))
12990 (synopsis
12991 "Convert coordinates between latitude/longitude and Maidenhead")
12992 (description
12993 "This a Common Lisp library to convert geographic coordinates between
12994 latitude/longitude and Maidenhead locator system.")
12995 (home-page "https://github.com/glv2/maidenhead")
12996 (license license:gpl3+))))
12997
12998 (define-public cl-maidenhead
12999 (sbcl-package->cl-source-package sbcl-maidenhead))
13000
13001 (define-public ecl-maidenhead
13002 (sbcl-package->ecl-package sbcl-maidenhead))
13003
13004 (define-public sbcl-olc
13005 (let ((commit "517e27fa57d9a119b00a29c4b6b31e553deff309")
13006 (revision "0"))
13007 (package
13008 (name "sbcl-olc")
13009 (version (git-version "1.0" revision commit))
13010 (source
13011 (origin
13012 (method git-fetch)
13013 (uri (git-reference
13014 (url "https://github.com/glv2/olc")
13015 (commit commit)))
13016 (file-name (git-file-name "olc" version))
13017 (sha256
13018 (base32 "1lnfhp6z6kc8l605zp4siyjiw74y1h4bdq3jfizi084v505wxhgr"))))
13019 (build-system asdf-build-system/sbcl)
13020 (native-inputs
13021 `(("fiveam" ,sbcl-fiveam)))
13022 (synopsis
13023 "Convert coordinates between latitude/longitude and Open Location Code")
13024 (description
13025 "This a Common Lisp library to convert geographic coordinates between
13026 latitude/longitude and Open Location Code.")
13027 (home-page "https://github.com/glv2/olc")
13028 (license license:gpl3+))))
13029
13030 (define-public cl-olc
13031 (sbcl-package->cl-source-package sbcl-olc))
13032
13033 (define-public ecl-olc
13034 (sbcl-package->ecl-package sbcl-olc))
13035
13036 (define-public sbcl-regex
13037 (let ((commit "fbc9a9f313b9edc1788f33d4b23a29151635ae22"))
13038 (package
13039 (name "sbcl-regex")
13040 (version (git-version "1" "1" commit))
13041 (source
13042 (origin
13043 (method git-fetch)
13044 (uri (git-reference
13045 (url "https://github.com/michaelw/regex/")
13046 (commit commit)))
13047 (file-name (git-file-name name version))
13048 (sha256
13049 (base32 "0wq5wlafrxv13wg28hg5b10sc48b88swsvznpy2zg7x37m4nmm6a"))))
13050 (build-system asdf-build-system/sbcl)
13051 (home-page "https://github.com/michaelw/regex/")
13052 (synopsis "Regular expression engine for Common Lisp")
13053 (description
13054 "This Common Lisp package provides a regular expression engine.")
13055 (license license:bsd-2))))
13056
13057 (define-public cl-regex
13058 (sbcl-package->cl-source-package sbcl-regex))
13059
13060 (define-public ecl-regex
13061 (sbcl-package->ecl-package sbcl-regex))
13062
13063 (define-public sbcl-clawk
13064 (let ((commit "3a91634df686417114044a98c063cbe76bfac7b6"))
13065 (package
13066 (name "sbcl-clawk")
13067 (version (git-version "4" "1" commit))
13068 (source
13069 (origin
13070 (method git-fetch)
13071 (uri (git-reference
13072 (url "https://github.com/sharplispers/clawk")
13073 (commit commit)))
13074 (file-name (git-file-name name version))
13075 (sha256
13076 (base32 "1ph3xjqilvinvgr9q3w47zxqyz1sqnq030nlx7kgkkv8j3bnqk7a"))))
13077 (build-system asdf-build-system/sbcl)
13078 (inputs
13079 `(("sbcl-regex" ,sbcl-regex)))
13080 (home-page "https://github.com/sharplispers/clawk")
13081 (synopsis "Common Lisp AWK")
13082 (description
13083 "CLAWK is an AWK implementation embedded into Common Lisp.")
13084 (license license:bsd-2))))
13085
13086 (define-public cl-clawk
13087 (sbcl-package->cl-source-package sbcl-clawk))
13088
13089 (define-public ecl-clawk
13090 (sbcl-package->ecl-package sbcl-clawk))
13091
13092 (define-public sbcl-check-it
13093 (let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
13094 (package
13095 (name "sbcl-check-it")
13096 (version (git-version "0.1.0" "1" commit))
13097 (source
13098 (origin
13099 (method git-fetch)
13100 (uri (git-reference
13101 (url "https://github.com/DalekBaldwin/check-it/")
13102 (commit commit)))
13103 (file-name (git-file-name name version))
13104 (sha256
13105 (base32 "1kbjwpniffdpv003igmlz5r0vy65m7wpfnhg54fhwirp1227hgg7"))))
13106 (build-system asdf-build-system/sbcl)
13107 (inputs
13108 `(("alexandria" ,sbcl-alexandria)
13109 ("closer-mop" ,sbcl-closer-mop)
13110 ("optima" ,sbcl-optima)))
13111 (native-inputs
13112 `(("stefil" ,sbcl-stefil)))
13113 (home-page "https://github.com/arclanguage/Clamp")
13114 (synopsis "Randomized specification-based testing for Common Lisp")
13115 (description
13116 "This is a randomized property-based testing library for Common Lisp.
13117 Rather than being a full-fledged general test framework in its own right, it's
13118 designed to embed randomized tests in whatever framework you like.")
13119 (license license:llgpl))))
13120
13121 (define-public cl-check-it
13122 (sbcl-package->cl-source-package sbcl-check-it))
13123
13124 (define-public ecl-check-it
13125 (sbcl-package->ecl-package sbcl-check-it))
13126
13127 (define-public sbcl-clamp
13128 (let ((commit "02b8f3953e5753cc61a719807c82f3795cd28fe1"))
13129 (package
13130 (name "sbcl-clamp")
13131 (version (git-version "0.3" "1" commit))
13132 (source
13133 (origin
13134 (method git-fetch)
13135 (uri (git-reference
13136 (url "https://github.com/arclanguage/Clamp")
13137 (commit commit)))
13138 (file-name (git-file-name name version))
13139 (sha256
13140 (base32 "0fdr9nqfmmpxm6hvjdxi1jkclya9xlnrw1yc3cn1m4ww3f50p31m"))))
13141 (build-system asdf-build-system/sbcl)
13142 (inputs
13143 `(("iterate" ,sbcl-iterate)
13144 ("cl-syntax" ,sbcl-cl-syntax)))
13145 (native-inputs
13146 `(("cl-unit" ,sbcl-clunit)
13147 ("check-it" ,sbcl-check-it)))
13148 (arguments
13149 `(#:phases
13150 (modify-phases %standard-phases
13151 (add-after 'unpack 'fix-build
13152 (lambda _
13153 (substitute* "clamp.asd"
13154 (("\\(:file \"read\" :depends-on \\(\"aliases\"\\)\\)")
13155 "(:file \"read\" :depends-on (\"aliases\" \"base\"))"))
13156 #t)))))
13157 (home-page "https://github.com/arclanguage/Clamp")
13158 (synopsis "Common Lisp with Arc macros and procedures")
13159 (description
13160 "Clamp is an attempt to bring the powerful, but verbose, language of
13161 Common Lisp up to the terseness of Arc.
13162
13163 There are two parts to Clamp. There is the core of Clamp, which implements
13164 the utilities of Arc that are easily converted from Arc to Common Lisp. The
13165 other part is the \"experimental\" part. It contains features of Arc that are
13166 not so easy to copy (ssyntax, argument destructuring, etc.).")
13167 (license license:artistic2.0))))
13168
13169 (define-public cl-clamp
13170 (sbcl-package->cl-source-package sbcl-clamp))
13171
13172 (define-public ecl-clamp
13173 (sbcl-package->ecl-package sbcl-clamp))
13174
13175 (define-public sbcl-trivial-shell
13176 (let ((commit "e02ec191b34b52deca5d1c4ee99d4fa13b8772e0"))
13177 (package
13178 (name "sbcl-trivial-shell")
13179 (version (git-version "0.2.0" "1" commit))
13180 (source
13181 (origin
13182 (method git-fetch)
13183 (uri (git-reference
13184 (url "https://github.com/gwkkwg/trivial-shell")
13185 (commit commit)))
13186 (file-name (git-file-name name version))
13187 (sha256
13188 (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85"))))
13189 (build-system asdf-build-system/sbcl)
13190 (native-inputs
13191 `(("lift" ,sbcl-lift)))
13192 (home-page "http://common-lisp.net/project/trivial-shell/")
13193 (synopsis "Common Lisp access to the shell")
13194 (description
13195 "A simple Common-Lisp interface to the underlying operating system.
13196 It's independent of the implementation and operating system.")
13197 (license license:expat))))
13198
13199 (define-public cl-trivial-shell
13200 (sbcl-package->cl-source-package sbcl-trivial-shell))
13201
13202 (define-public ecl-trivial-shell
13203 (sbcl-package->ecl-package sbcl-trivial-shell))
13204
13205 (define-public sbcl-clesh
13206 (let ((commit "44e96e04a72e5bc006dc4eb02ce8962348dd4a11"))
13207 (package
13208 (name "sbcl-clesh")
13209 (version (git-version "0.0.0" "1" commit))
13210 (source
13211 (origin
13212 (method git-fetch)
13213 (uri (git-reference
13214 (url "https://github.com/Neronus/Clesh")
13215 (commit commit)))
13216 (file-name (git-file-name name version))
13217 (sha256
13218 (base32 "012ry02djnqyvvs61wbbqj3saz621w2l9gczrywdxhi5p4ycx318"))))
13219 (build-system asdf-build-system/sbcl)
13220 (inputs
13221 `(("trivial-shell" ,sbcl-trivial-shell)
13222 ("named-readtables" ,sbcl-named-readtables)))
13223 (home-page "https://github.com/Neronus/Clesh")
13224 (synopsis "Embed shell code in Common Lisp")
13225 (description
13226 "This is a very short and simple program, written in Common Lisp, that
13227 extends Common Lisp to embed shell code in a manner similar to Perl's
13228 backtick. It has been forked from SHELISP.")
13229 (license license:bsd-2))))
13230
13231 (define-public cl-clesh
13232 (sbcl-package->cl-source-package sbcl-clesh))
13233
13234 (define-public ecl-clesh
13235 (sbcl-package->ecl-package sbcl-clesh))
13236
13237 (define-public sbcl-trivial-download
13238 (let ((commit "d2472061d86b1cf3d32f388daacd4e32a13af699"))
13239 (package
13240 (name "sbcl-trivial-download")
13241 (version (git-version "0.3" "1" commit))
13242 (source
13243 (origin
13244 (method git-fetch)
13245 (uri (git-reference
13246 (url "https://github.com/eudoxia0/trivial-download/")
13247 (commit commit)))
13248 (file-name (git-file-name name version))
13249 (sha256
13250 (base32 "06f46zr3gp3wlm2kgxna24qd2gpr1v89x9fynh1x5vrw6c6hqjcv"))))
13251 (build-system asdf-build-system/sbcl)
13252 (inputs
13253 `(("drakma" ,sbcl-drakma)))
13254 (home-page "https://github.com/eudoxia0/trivial-download/")
13255 (synopsis "Download files from Common Lisp")
13256 (description
13257 "@code{trivial-download} allows you to download files from the Internet
13258 from Common Lisp. It provides a progress bar.")
13259 (license license:bsd-2))))
13260
13261 (define-public cl-trivial-download
13262 (sbcl-package->cl-source-package sbcl-trivial-download))
13263
13264 (define-public ecl-trivial-download
13265 (sbcl-package->ecl-package sbcl-trivial-download))
13266
13267 (define-public sbcl-gtwiwtg
13268 (package
13269 (name "sbcl-gtwiwtg")
13270 (version "0.1.1")
13271 (source
13272 (origin
13273 (method git-fetch)
13274 (uri (git-reference
13275 (url "https://github.com/cbeo/gtwiwtg/")
13276 (commit version)))
13277 (file-name (git-file-name name version))
13278 (sha256
13279 (base32 "0lkraw0dwh4is4x5sp5rjrw6f93m0gr9849abrbi12s25ws7jbw4"))))
13280 (build-system asdf-build-system/sbcl)
13281 (native-inputs
13282 `(("osicat" ,sbcl-osicat)
13283 ("prove" ,sbcl-prove)))
13284 (home-page "https://github.com/cbeo/gtwiwtg/")
13285 (synopsis "Naive generators for Common Lisp")
13286 (description
13287 "The GTWIWTG library (Generators The Way I Want Them Generated --
13288 technically not generators, but iterators) is meant to be small, explorable,
13289 and understandable.")
13290 (license license:gpl3)))
13291
13292 (define-public cl-gtwiwtg
13293 (sbcl-package->cl-source-package sbcl-gtwiwtg))
13294
13295 (define-public ecl-gtwiwtg
13296 (sbcl-package->ecl-package sbcl-gtwiwtg))
13297
13298 (define-public sbcl-cl-progress-bar
13299 (let ((commit "9374170858663c8fe829e9fb5a29bd2cb48d95ae"))
13300 (package
13301 (name "sbcl-cl-progress-bar")
13302 (version (git-version "0.0.0" "1" commit))
13303 (source
13304 (origin
13305 (method git-fetch)
13306 (uri (git-reference
13307 (url "https://github.com/sirherrbatka/cl-progress-bar/")
13308 (commit commit)))
13309 (file-name (git-file-name name version))
13310 (sha256
13311 (base32 "1ldb4qhmx431n3lsq71ynwb9ybazbfqd55icjbhi06mj52ngndir"))))
13312 (build-system asdf-build-system/sbcl)
13313 (inputs
13314 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13315 ("documentation-utils-extensions" ,sbcl-documentation-utils-extensions)))
13316 (home-page "https://github.com/sirherrbatka/cl-progress-bar/")
13317 (synopsis "Progress bars in Common Lisp")
13318 (description
13319 "This library provides almost the same code as used inside Quicklisp
13320 for drawning progress bars")
13321 (license license:expat))))
13322
13323 (define-public cl-progress-bar
13324 (sbcl-package->cl-source-package sbcl-cl-progress-bar))
13325
13326 (define-public ecl-cl-progress-bar
13327 (sbcl-package->ecl-package sbcl-cl-progress-bar))
13328
13329 (define-public sbcl-repl-utilities
13330 (let ((commit "e0de9c92e774f77cab1a4cd92e2ac922ac3a807e"))
13331 (package
13332 (name "sbcl-repl-utilities")
13333 (version (git-version "0.0.0" "1" commit))
13334 (source
13335 (origin
13336 (method git-fetch)
13337 (uri (git-reference
13338 (url "https://github.com/m-n/repl-utilities/")
13339 (commit commit)))
13340 (file-name (git-file-name name version))
13341 (sha256
13342 (base32 "1r5icmw3ha5y77kvzqni3a9bcd66d9pz5mjsbw04xg3jk0d15cgz"))))
13343 (build-system asdf-build-system/sbcl)
13344 (home-page "https://github.com/m-n/repl-utilities")
13345 (synopsis "Ease common tasks at the Common Lisp REPL")
13346 (description
13347 "@code{repl-utilities} is a set of utilities which ease life at the
13348 REPL. It includes three sorts of features: introspective procedures,
13349 miscellaneous utility functions, and, pulling them together, methods to
13350 conveniently keep these symbols and optionally additional symbols available in
13351 whichever package you switch to.")
13352 (license license:bsd-2))))
13353
13354 (define-public cl-repl-utilities
13355 (sbcl-package->cl-source-package sbcl-repl-utilities))
13356
13357 (define-public ecl-repl-utilities
13358 (sbcl-package->ecl-package sbcl-repl-utilities))
13359
13360 (define-public sbcl-supertrace
13361 (let ((commit "66d22c3ff131ecd1c8048dfced1d62ed6024ecb0"))
13362 (package
13363 (name "sbcl-supertrace")
13364 (version (git-version "0.1.0" "1" commit))
13365 (source
13366 (origin
13367 (method git-fetch)
13368 (uri (git-reference
13369 (url "https://github.com/fukamachi/supertrace")
13370 (commit commit)))
13371 (file-name (git-file-name name version))
13372 (sha256
13373 (base32 "0n369n6b7y1m49biccnnr7svymjdsk8sksrkqrn3mj21vgv7s7bg"))))
13374 (build-system asdf-build-system/sbcl)
13375 (native-inputs
13376 `(("cffi-grovel" ,sbcl-cffi)
13377 ("rove" ,sbcl-rove)
13378 ("cl-ppcre" ,sbcl-cl-ppcre)
13379 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
13380 (inputs
13381 `(("cffi" ,sbcl-cffi)))
13382 (home-page "https://github.com/fukamachi/supertrace")
13383 (synopsis "Improved Common Lisp tracing for debugging and profiling")
13384 (description
13385 "Supertrace provides a superior Common Lisp @code{trace} functionality
13386 for debugging and profiling real world applications.")
13387 (license license:bsd-2))))
13388
13389 (define-public cl-supertrace
13390 (sbcl-package->cl-source-package sbcl-supertrace))
13391
13392 (define-public ecl-supertrace
13393 (sbcl-package->ecl-package sbcl-supertrace))
13394
13395 (define-public sbcl-trivial-benchmark
13396 (let ((commit "42d76733dd2e873471c6f1e27d39113293f7dd5c"))
13397 (package
13398 (name "sbcl-trivial-benchmark")
13399 (version (git-version "2.0.0" "1" commit))
13400 (source
13401 (origin
13402 (method git-fetch)
13403 (uri (git-reference
13404 (url "https://github.com/Shinmera/trivial-benchmark/")
13405 (commit commit)))
13406 (file-name (git-file-name name version))
13407 (sha256
13408 (base32 "0fbzqbpm2ixz85555krl36kbbbjyn699vdj6k383khi3g9y629fa"))))
13409 (build-system asdf-build-system/sbcl)
13410 (inputs
13411 `(("alexandria" ,sbcl-alexandria)))
13412 (home-page "http://shinmera.github.io/trivial-benchmark/")
13413 (synopsis "Easy to use benchmarking system for Common Lisp")
13414 (description
13415 "Trivial-Benchmark runs a block of code many times and outputs some
13416 statistical data for it. On SBCL this includes the data from @code{time}, for
13417 all other implementations just the @code{real-time} and @code{run-time} data.
13418 However, you can extend the system by adding your own @code{metrics} to it, or
13419 even by adding additional statistical @code{compute}ations. ")
13420 (license license:zlib))))
13421
13422 (define-public cl-trivial-benchmark
13423 (sbcl-package->cl-source-package sbcl-trivial-benchmark))
13424
13425 (define-public ecl-trivial-benchmark
13426 (sbcl-package->ecl-package sbcl-trivial-benchmark))
13427
13428 (define-public sbcl-glyphs
13429 (let ((commit "1ff5714e8c1dca327bc604dfe3e3d1f4b7755373"))
13430 (package
13431 (name "sbcl-glyphs")
13432 (version (git-version "0.0.0" "1" commit))
13433 (source
13434 (origin
13435 (method git-fetch)
13436 (uri (git-reference
13437 (url "https://github.com/ahungry/glyphs/")
13438 (commit commit)))
13439 (file-name (git-file-name name version))
13440 (sha256
13441 (base32 "17kai1anbkk5dj5sbrsin2fc019cmcbglb900db60v38myj0y0wf"))))
13442 (build-system asdf-build-system/sbcl)
13443 (inputs
13444 `(("cl-ppcre" ,sbcl-cl-ppcre)
13445 ("parenscript" ,sbcl-parenscript)
13446 ("named-readtables" ,sbcl-named-readtables)))
13447 (home-page "https://github.com/ahungry/glyphs/")
13448 (synopsis "Reduce Common Lisp verbosity")
13449 (description
13450 "This library is a little experiment in reducing verbosity in Common
13451 Lisp, inspired by BODOL (@url{https://github.com/bodil/BODOL}).")
13452 (license license:gpl3))))
13453
13454 (define-public cl-glyphs
13455 (sbcl-package->cl-source-package sbcl-glyphs))
13456
13457 (define-public ecl-glyphs
13458 (sbcl-package->ecl-package sbcl-glyphs))
13459
13460 (define-public sbcl-zs3
13461 (package
13462 (name "sbcl-zs3")
13463 (version "1.3.3")
13464 (source
13465 (origin
13466 (method git-fetch)
13467 (uri
13468 (git-reference
13469 (url "https://github.com/xach/zs3")
13470 (commit (string-append "release-" version))))
13471 (file-name (git-file-name "zs3" version))
13472 (sha256
13473 (base32 "186v95wgsj2hkxdw2jl9x1w4fddjclp7arp0rrd9vf5ly8h8sbf3"))))
13474 (build-system asdf-build-system/sbcl)
13475 (inputs
13476 `(("drakma" ,sbcl-drakma)
13477 ("alexandria" ,sbcl-alexandria)
13478 ("cxml" ,sbcl-cxml)
13479 ("ironclad" ,sbcl-ironclad)
13480 ("puri" ,sbcl-puri)
13481 ("cl-base64" ,sbcl-cl-base64)))
13482 (synopsis "Work with Amazon S3 and Amazon CloudFront from Common Lisp")
13483 (description "This is ZS3, a library for working with Amazon's Simple Storage
13484 Service (S3) and CloudFront service from Common Lisp.")
13485 (home-page "https://github.com/xach/zs3")
13486 (license license:bsd-2)))
13487
13488 (define-public cl-zs3
13489 (sbcl-package->cl-source-package sbcl-zs3))
13490
13491 (define-public ecl-zs3
13492 (sbcl-package->ecl-package sbcl-zs3))
13493
13494 (define-public sbcl-simple-neural-network
13495 (package
13496 (name "sbcl-simple-neural-network")
13497 (version "3.1")
13498 (source
13499 (origin
13500 (method git-fetch)
13501 (uri (git-reference
13502 (url "https://github.com/glv2/simple-neural-network")
13503 (commit (string-append "v" version))))
13504 (file-name (git-file-name "simple-neural-network" version))
13505 (sha256
13506 (base32 "1jj1c90fr5clwka0jv32hv6xp1bkdlpa6x5jh19an13rhx8ll4zr"))))
13507 (build-system asdf-build-system/sbcl)
13508 (native-inputs
13509 `(("chipz" ,sbcl-chipz)
13510 ("fiveam" ,sbcl-fiveam)))
13511 (inputs
13512 `(("cl-store" ,sbcl-cl-store)
13513 ("lparallel" ,sbcl-lparallel)))
13514 (arguments
13515 `(#:phases
13516 (modify-phases %standard-phases
13517 (add-after 'check 'remove-test-data
13518 (lambda* (#:key outputs #:allow-other-keys)
13519 (let ((out (assoc-ref outputs "out")))
13520 (for-each delete-file (find-files out "\\.gz$"))))))))
13521 (synopsis "Simple neural network in Common Lisp")
13522 (description
13523 "@code{simple-neural-network} is a Common Lisp library for creating,
13524 training and using basic neural networks. The networks created by this
13525 library are feedforward neural networks trained using backpropagation.")
13526 (home-page "https://github.com/glv2/simple-neural-network")
13527 (license license:gpl3+)))
13528
13529 (define-public cl-simple-neural-network
13530 (sbcl-package->cl-source-package sbcl-simple-neural-network))
13531
13532 (define-public ecl-simple-neural-network
13533 (sbcl-package->ecl-package sbcl-simple-neural-network))
13534
13535 (define-public sbcl-zstd
13536 (let ((commit "d144582c581aaa52bac24d6686af27fa3e781e06")
13537 (revision "1"))
13538 (package
13539 (name "sbcl-zstd")
13540 (version (git-version "1.0" revision commit))
13541 (source
13542 (origin
13543 (method git-fetch)
13544 (uri (git-reference
13545 (url "https://github.com/glv2/cl-zstd")
13546 (commit commit)))
13547 (file-name (git-file-name "cl-zstd" version))
13548 (sha256
13549 (base32 "1774jy8hzbi6nih3sq6vchk66f7g8w86dwgpbvljyfzcnkcaz6ql"))))
13550 (build-system asdf-build-system/sbcl)
13551 (native-inputs
13552 `(("fiveam" ,sbcl-fiveam)))
13553 (inputs
13554 `(("cffi" ,sbcl-cffi)
13555 ("cl-octet-streams" ,sbcl-cl-octet-streams)
13556 ("zstd-lib" ,zstd "lib")))
13557 (arguments
13558 '(#:phases
13559 (modify-phases %standard-phases
13560 (add-after 'unpack 'fix-paths
13561 (lambda* (#:key inputs #:allow-other-keys)
13562 (substitute* "src/libzstd.lisp"
13563 (("libzstd\\.so")
13564 (string-append (assoc-ref inputs "zstd-lib")
13565 "/lib/libzstd.so")))
13566 #t)))))
13567 (synopsis "Common Lisp library for Zstandard (de)compression")
13568 (description
13569 "This Common Lisp library provides functions for Zstandard
13570 compression/decompression using bindings to the libzstd C library.")
13571 (home-page "https://github.com/glv2/cl-zstd")
13572 (license license:gpl3+))))
13573
13574 (define-public cl-zstd
13575 (sbcl-package->cl-source-package sbcl-zstd))
13576
13577 (define-public ecl-zstd
13578 (sbcl-package->ecl-package sbcl-zstd))
13579
13580 (define-public sbcl-agnostic-lizard
13581 (let ((commit "fe3a73719f05901c8819f8995a3ebae738257952")
13582 (revision "1"))
13583 (package
13584 (name "sbcl-agnostic-lizard")
13585 (version (git-version "0.0.0" revision commit))
13586 (source
13587 (origin
13588 (method git-fetch)
13589 (uri (git-reference
13590 (url "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
13591 (commit commit)))
13592 (file-name (git-file-name name version))
13593 (sha256
13594 (base32 "0ax78y8w4zlp5dcwyhz2nq7j3shi49qn31dkfg8lv2jlg7mkwh2d"))))
13595 (build-system asdf-build-system/sbcl)
13596 (synopsis "Almost correct portable code walker for Common Lisp")
13597 (description
13598 "Agnostic Lizard is a portable implementation of a code walker and in
13599 particular of the macroexpand-all function (and macro) that makes a best
13600 effort to be correct while not expecting much beyond what the Common Lisp
13601 standard requires.
13602
13603 It aims to be implementation-agnostic and to climb the syntax trees.")
13604 (home-page "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
13605 (license license:gpl3+))))
13606
13607 (define-public cl-agnostic-lizard
13608 (sbcl-package->cl-source-package sbcl-agnostic-lizard))
13609
13610 (define-public ecl-agnostic-lizard
13611 (sbcl-package->ecl-package sbcl-agnostic-lizard))
13612
13613 (define-public sbcl-dynamic-classes
13614 (package
13615 (name "sbcl-dynamic-classes")
13616 (version "1.0.2")
13617 (source
13618 (origin
13619 (method git-fetch)
13620 (uri (git-reference
13621 (url "https://github.com/gwkkwg/dynamic-classes")
13622 (commit (string-append "version-" version))))
13623 (file-name (git-file-name "dynamic-classes" version))
13624 (sha256
13625 (base32 "1z3ag6w4ff0v6715xa9zhvwjqnp4i6zrjfmxdz8m115sklbwgm6c"))))
13626 (build-system asdf-build-system/sbcl)
13627 (inputs
13628 `(("metatilities-base" ,sbcl-metatilities-base)))
13629 (arguments
13630 ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing
13631 ;; test suites. lift-standard.config contains referances to deprecated
13632 ;; functionality.
13633 `(#:tests? #f))
13634 (home-page "https://common-lisp.net/project/dynamic-classes/")
13635 (synopsis "Dynamic class definition for Common Lisp")
13636 (description "Dynamic-Classes helps to ease the prototyping process by
13637 bringing dynamism to class definition.")
13638 (license license:expat)))
13639
13640 (define-public ecl-dynamic-classes
13641 (sbcl-package->ecl-package sbcl-dynamic-classes))
13642
13643 (define-public cl-dynamic-classes
13644 (sbcl-package->cl-source-package sbcl-dynamic-classes))
13645
13646 (define-public sbcl-cl-markdown
13647 ;; NOTE: (Sharlatan-20210106214629+0000) latest version tag
13648 ;; "version-0.10.6_version-0.10.6" is failing to build due to missing system
13649 ;; #:container-dynamic-classes
13650 (package
13651 (name "sbcl-cl-markdown")
13652 (version "0.10.4")
13653 (source
13654 (origin
13655 (method git-fetch)
13656 (uri (git-reference
13657 (url "https://github.com/gwkkwg/cl-markdown")
13658 (commit (string-append "version-" version))))
13659 (file-name (git-file-name "cl-markdown" version))
13660 (sha256
13661 (base32 "1wdjbdd1zyskxf7zlilcp6fmwkivybj0wjp64vvzb265d5xi7p8p"))))
13662 (build-system asdf-build-system/sbcl)
13663 (inputs
13664 `(("anaphora" ,sbcl-anaphora)
13665 ("cl-containers" ,sbcl-cl-containers)
13666 ("cl-ppcre" ,sbcl-cl-ppcre)
13667 ("dynamic-classes" ,sbcl-dynamic-classes)
13668 ("metabang-bind" ,sbcl-metabang-bind)
13669 ("metatilities-base" ,sbcl-metatilities-base)))
13670 (arguments
13671 ;; NOTE: (Sharlatan-20210107213629+0000) Tests depend on too many not
13672 ;; available systems, which themself are abandoned.
13673 `(#:tests? #f))
13674 (home-page "https://common-lisp.net/project/cl-markdown/")
13675 (synopsis "Common Lisp rewrite of Markdown")
13676 (description
13677 "This is an implementation of a Markdown parser in Common Lisp.")
13678 (license license:expat)))
13679
13680 (define-public ecl-cl-markdown
13681 (sbcl-package->ecl-package sbcl-cl-markdown))
13682
13683 (define-public cl-markdown
13684 (sbcl-package->cl-source-package sbcl-cl-markdown))
13685
13686 (define-public sbcl-magicffi
13687 (let ((commit "d88f2f280c31f639e4e05be75215d8a8dce6aef2"))
13688 (package
13689 (name "sbcl-magicffi")
13690 (version (git-version "0.0.0" "1" commit))
13691 (source
13692 (origin
13693 (method git-fetch)
13694 (uri (git-reference
13695 (url "https://github.com/dochang/magicffi/")
13696 (commit commit)))
13697 (file-name (git-file-name name version))
13698 (sha256
13699 (base32 "0p6ysa92fk34bhxpw7bycbfgw150fv11z9x8jr9xb4lh8cm2hvp6"))))
13700 (build-system asdf-build-system/sbcl)
13701 (native-inputs
13702 `(("alexandria" ,sbcl-alexandria)))
13703 (inputs
13704 `(("cffi" ,sbcl-cffi)
13705 ("ppcre" ,sbcl-cl-ppcre)
13706 ("libmagic" ,file)))
13707 (arguments
13708 `(#:phases
13709 (modify-phases %standard-phases
13710 (add-after 'unpack 'fix-paths
13711 (lambda* (#:key inputs #:allow-other-keys)
13712 (let ((magic (assoc-ref inputs "libmagic")))
13713 (substitute* "grovel.lisp"
13714 (("/usr/include/magic.h")
13715 (string-append magic "/include/magic.h")))
13716 (substitute* "api.lisp"
13717 ((":default \"libmagic\"" all)
13718 (string-append ":default \"" magic "/lib/libmagic\"")))))))))
13719 (home-page "https://common-lisp.net/project/magicffi/")
13720 (synopsis "Common Lisp interface to libmagic based on CFFI")
13721 (description
13722 "MAGICFFI is a Common Lisp CFFI interface to libmagic(3), the file type
13723 determination library using @emph{magic} numbers.")
13724 (license license:bsd-2))))
13725
13726 (define-public ecl-magicffi
13727 (sbcl-package->ecl-package sbcl-magicffi))
13728
13729 (define-public cl-magicffi
13730 (sbcl-package->cl-source-package sbcl-magicffi))
13731
13732 (define-public sbcl-shlex
13733 (let ((commit "c5616dffca0d4d8ddbc1cd6f37a96d88477b2740"))
13734 (package
13735 (name "sbcl-shlex")
13736 (version (git-version "0.0.0" "1" commit))
13737 (source
13738 (origin
13739 (method git-fetch)
13740 (uri (git-reference
13741 (url "https://github.com/ruricolist/cl-shlex")
13742 (commit commit)))
13743 (file-name (git-file-name name version))
13744 (sha256
13745 (base32 "1nas024n4wv319bf40aal96g72bgi9nkapj2chywj2cc6r8hzkfg"))))
13746 (build-system asdf-build-system/sbcl)
13747 (inputs
13748 `(("alexandria" ,sbcl-alexandria)
13749 ("serapeum" ,sbcl-serapeum)
13750 ("ppcre" ,sbcl-cl-ppcre)
13751 ("unicode" ,sbcl-cl-unicode)))
13752 (home-page "https://github.com/ruricolist/cl-shlex")
13753 (synopsis "Common Lisp lexical analyzer for shell-like syntaxes")
13754 (description
13755 "This library contains a lexer for syntaxes that use shell-like rules
13756 for quoting and commenting. It is a port of the @code{shlex} module from Python’s
13757 standard library.")
13758 (license license:expat))))
13759
13760 (define-public ecl-shlex
13761 (sbcl-package->ecl-package sbcl-shlex))
13762
13763 (define-public cl-shlex
13764 (sbcl-package->cl-source-package sbcl-shlex))
13765
13766 (define-public sbcl-cmd
13767 (let ((commit "e6a54dbf660bf229c80abc124fa47e7bb6d20c93"))
13768 (package
13769 (name "sbcl-cmd")
13770 (version (git-version "0.0.1" "2" commit))
13771 (source
13772 (origin
13773 (method git-fetch)
13774 (uri (git-reference
13775 (url "https://github.com/ruricolist/cmd/")
13776 (commit commit)))
13777 (file-name (git-file-name name version))
13778 (sha256
13779 (base32 "1i0l8ci4cnkx84q4afmpkq51nxah24fqpi6k9kgjbxz6li3zp8hy"))))
13780 (build-system asdf-build-system/sbcl)
13781 (inputs
13782 `(("alexandria" ,sbcl-alexandria)
13783 ("coreutils" ,coreutils)
13784 ("serapeum" ,sbcl-serapeum)
13785 ("shlex" ,sbcl-shlex)
13786 ("trivia" ,sbcl-trivia)))
13787 (arguments
13788 `(#:phases
13789 (modify-phases %standard-phases
13790 (add-after 'unpack 'fix-paths
13791 (lambda* (#:key inputs #:allow-other-keys)
13792 (let ((bin (string-append (assoc-ref inputs "coreutils") "/bin")))
13793 (substitute* "cmd.lisp"
13794 (("\"env\"") (format #f "\"~a/env\"" bin))
13795 (("\"pwd\"") (format #f "\"~a/pwd\"" bin)))))))))
13796 (home-page "https://github.com/ruricolist/cmd")
13797 (synopsis "Conveniently run external programs from Common Lisp")
13798 (description
13799 "A utility for running external programs, built on UIOP.
13800 Cmd is designed to be natural to use, protect against shell interpolation and
13801 be usable from multi-threaded programs.")
13802 (license license:expat))))
13803
13804 (define-public ecl-cmd
13805 (sbcl-package->ecl-package sbcl-cmd))
13806
13807 (define-public cl-cmd
13808 (sbcl-package->cl-source-package sbcl-cmd))
13809
13810 (define-public sbcl-ppath
13811 (let ((commit "eb1a8173b4d1d691ea9a7699412123462f58c3ce"))
13812 (package
13813 (name "sbcl-ppath")
13814 (version (git-version "0.1" "1" commit))
13815 (source
13816 (origin
13817 (method git-fetch)
13818 (uri (git-reference
13819 (url "https://github.com/fourier/ppath/")
13820 (commit commit)))
13821 (file-name (git-file-name name commit))
13822 (sha256
13823 (base32 "1c46q9lmzqv14z80d3fwdawgn3pn4922x31fyqvsvbcjm4hd16fb"))))
13824 (build-system asdf-build-system/sbcl)
13825 (inputs
13826 `(("alexandria" ,sbcl-alexandria)
13827 ("cffi" ,sbcl-cffi)
13828 ("osicat" ,sbcl-osicat)
13829 ("ppcre" ,sbcl-cl-ppcre)
13830 ("split-sequence" ,sbcl-split-sequence)
13831 ("trivial-features" ,sbcl-trivial-features)))
13832 (native-inputs
13833 `(("cl-fad" ,sbcl-cl-fad)
13834 ("prove" ,sbcl-prove)))
13835 (home-page "https://github.com/fourier/ppath")
13836 (synopsis "Common Lisp's implementation of the Python's os.path module")
13837 (description
13838 "This library is a path strings manipulation library inspired by
13839 Python's @code{os.path}. All functionality from @code{os.path} is supported on
13840 major operation systems.
13841
13842 The philosophy behind is to use simple strings and \"dumb\" string
13843 manipulation functions to handle paths and filenames. Where possible the
13844 corresponding OS system functions are called.")
13845 (license license:bsd-2))))
13846
13847 (define-public ecl-ppath
13848 (sbcl-package->ecl-package sbcl-ppath))
13849
13850 (define-public cl-ppath
13851 (sbcl-package->cl-source-package sbcl-ppath))
13852
13853 (define-public sbcl-trivial-escapes
13854 (let ((commit "1eca78da2078495d09893be58c28b3aa7b8cc4d1"))
13855 (package
13856 (name "sbcl-trivial-escapes")
13857 (version (git-version "1.2.0" "1" commit))
13858 (source
13859 (origin
13860 (method git-fetch)
13861 (uri (git-reference
13862 (url "https://github.com/williamyaoh/trivial-escapes")
13863 (commit commit)))
13864 (file-name (git-file-name name commit))
13865 (sha256
13866 (base32 "0v6h8lk17iqv1qkxgqjyzn8gi6v0hvq2vmfbb01md3zjvjqxn6lr"))))
13867 (build-system asdf-build-system/sbcl)
13868 (inputs
13869 `(("named-readtables" ,sbcl-named-readtables)))
13870 (native-inputs
13871 `(("fiveam" ,sbcl-fiveam)))
13872 (home-page "https://github.com/williamyaoh/trivial-escapes")
13873 (synopsis "C-style escape directives for Common Lisp")
13874 (description
13875 "This Common Lisp library interprets escape characters the same way that
13876 most other programming language do.
13877 It provides four readtables. The default one lets you write strings like this:
13878 @code{#\"This string has\na newline in it!\"}.")
13879 (license license:public-domain))))
13880
13881 (define-public ecl-trivial-escapes
13882 (sbcl-package->ecl-package sbcl-trivial-escapes))
13883
13884 (define-public cl-trivial-escapes
13885 (sbcl-package->cl-source-package sbcl-trivial-escapes))
13886
13887 (define-public sbcl-cl-indentify
13888 (let ((commit "eb770f434defa4cd41d84bca822428dfd0dbac53"))
13889 (package
13890 (name "sbcl-cl-indentify")
13891 (version (git-version "0.1" "1" commit))
13892 (source
13893 (origin
13894 (method git-fetch)
13895 (uri (git-reference
13896 (url "https://github.com/yitzchak/cl-indentify")
13897 (commit commit)))
13898 (file-name (git-file-name name commit))
13899 (sha256
13900 (base32 "0ha36bhg474vr76vfhr13szc8cfdj1ickg92k1icz791bqaqg67p"))))
13901 (build-system asdf-build-system/sbcl)
13902 (inputs
13903 `(("alexandria" ,sbcl-alexandria)
13904 ("command-line-arguments" ,sbcl-command-line-arguments)
13905 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
13906 (native-inputs
13907 `(("trivial-escapes" ,sbcl-trivial-escapes)
13908 ("rove" ,sbcl-rove)))
13909 (home-page "https://github.com/yitzchak/cl-indentify")
13910 (synopsis "Code beautifier for Common Lisp")
13911 (description
13912 "A library and command line utility to automatically indent Common Lisp
13913 source files.")
13914 (license license:expat))))
13915
13916 (define-public ecl-cl-indentify
13917 (sbcl-package->ecl-package sbcl-cl-indentify))
13918
13919 (define-public cl-indentify
13920 (sbcl-package->cl-source-package sbcl-cl-indentify))
13921
13922 (define-public sbcl-concrete-syntax-tree
13923 (let ((commit "abd242a59dadc5452aa9dbc1d313c83ec2c11f46"))
13924 (package
13925 (name "sbcl-concrete-syntax-tree")
13926 (version (git-version "0.0.0" "1" commit))
13927 (source
13928 (origin
13929 (method git-fetch)
13930 (uri (git-reference
13931 (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
13932 (commit commit)))
13933 (file-name (git-file-name name commit))
13934 (sha256
13935 (base32 "1lyrglc3h1if44gxd9cwv90wa90nrdjvb7fry39b1xn8ywdfa7di"))))
13936 (build-system asdf-build-system/sbcl)
13937 (inputs
13938 `(("acclimation" ,sbcl-acclimation)))
13939 (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
13940 (synopsis "Parse Common Lisp code into a concrete syntax tree")
13941 (description
13942 "This library is intended to solve the problem of source tracking for
13943 Common Lisp code.
13944
13945 By \"source tracking\", it is meant that code elements that have a known
13946 origin in the form of a position in a file or in an editor buffer are
13947 associated with some kind of information about this origin.
13948
13949 Since the exact nature of such origin information depends on the Common Lisp
13950 implementation and the purpose of wanting to track that origin, the library
13951 does not impose a particular structure of this information. Instead, it
13952 provides utilities for manipulating source code in the form of what is called
13953 concrete syntax trees (CSTs for short) that preserve this information about
13954 the origin.")
13955 (license license:bsd-2))))
13956
13957 (define-public ecl-concrete-syntax-tree
13958 (sbcl-package->ecl-package sbcl-concrete-syntax-tree))
13959
13960 (define-public cl-concrete-syntax-tree
13961 (sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
13962
13963 (define-public sbcl-eclector
13964 (package
13965 (name "sbcl-eclector")
13966 (version "0.5.0")
13967 (source
13968 (origin
13969 (method git-fetch)
13970 (uri (git-reference
13971 (url "https://github.com/s-expressionists/Eclector")
13972 (commit version)))
13973 (file-name (git-file-name name version))
13974 (sha256
13975 (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
13976 (build-system asdf-build-system/sbcl)
13977 (inputs
13978 `(("acclimation" ,sbcl-acclimation)
13979 ("alexandria" ,sbcl-alexandria)
13980 ("closer-mop" ,sbcl-closer-mop)
13981 ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
13982 (native-inputs
13983 `(("fiveam" ,sbcl-fiveam)))
13984 (arguments
13985 '(#:asd-systems '("eclector"
13986 "eclector-concrete-syntax-tree")))
13987 (home-page "https://s-expressionists.github.io/Eclector/")
13988 (synopsis "Highly customizable, portable Common Lisp reader")
13989 (description
13990 "Eclector is a portable Common Lisp reader that is highly customizable,
13991 can recover from errors and can return concrete syntax trees.
13992
13993 In contrast to many other reader implementations, eclector can recover from
13994 most errors in the input supplied to it and continue reading. This capability
13995 is realized as a restart.
13996
13997 It can also produce instances of the concrete syntax tree classes provided by
13998 the concrete syntax tree library.")
13999 (license license:bsd-2)))
14000
14001 (define-public ecl-eclector
14002 (sbcl-package->ecl-package sbcl-eclector))
14003
14004 (define-public cl-eclector
14005 (sbcl-package->cl-source-package sbcl-eclector))
14006
14007 (define-public sbcl-jsown
14008 (let ((commit "744c4407bef58dfa876d9da0b5c0205d869e7977"))
14009 (package
14010 (name "sbcl-jsown")
14011 (version (git-version "1.0.1" "1" commit))
14012 (source
14013 (origin
14014 (method git-fetch)
14015 (uri (git-reference
14016 (url "https://github.com/madnificent/jsown")
14017 (commit commit)))
14018 (file-name (git-file-name name commit))
14019 (sha256
14020 (base32 "0gadvmf1d9bq35s61z76psrsnzwwk12svi66jigf491hv48wigw7"))))
14021 (build-system asdf-build-system/sbcl)
14022 (home-page "https://github.com/madnificent/jsown")
14023 (synopsis "Fast JSON reader / writer library for Common Lisp")
14024 (description
14025 "@code{jsown} is a high performance Common Lisp JSON parser. Its aim
14026 is to allow for the fast parsing of JSON objects in Common Lisp. Recently,
14027 functions and macros have been added to ease the burden of writing and editing
14028 @code{jsown} objects.
14029
14030 @code{jsown} allows you to parse JSON objects quickly to a modifiable Lisp
14031 list and write them back. If you only need partial retrieval of objects,
14032 @code{jsown} allows you to select the keys which you would like to see parsed.
14033 @code{jsown} also has a JSON writer and some helper methods to alter the JSON
14034 objects themselves.")
14035 (license license:expat))))
14036
14037 (define-public ecl-jsown
14038 (sbcl-package->ecl-package sbcl-jsown))
14039
14040 (define-public cl-jsown
14041 (sbcl-package->cl-source-package sbcl-jsown))
14042
14043 (define-public sbcl-system-locale
14044 (let ((commit "4b334bc2fa45651bcaa28ae7d9331095d6bf0a17"))
14045 (package
14046 (name "sbcl-system-locale")
14047 (version (git-version "1.0.0" "1" commit))
14048 (source
14049 (origin
14050 (method git-fetch)
14051 (uri (git-reference
14052 (url "https://github.com/Shinmera/system-locale/")
14053 (commit commit)))
14054 (file-name (git-file-name name commit))
14055 (sha256
14056 (base32 "00p5c053kmgq4ks6l9mxsqz6g3bjcybvkvj0bh3r90qgpkaawm1p"))))
14057 (build-system asdf-build-system/sbcl)
14058 (inputs
14059 `(("documentation-utils" ,sbcl-documentation-utils)))
14060 (home-page "https://shinmera.github.io/system-locale/")
14061 (synopsis "Get the system's locale and language settings in Common Lisp")
14062 (description
14063 "This library retrieves locale information configured on the
14064 system. This is helpful if you want to write applications and libraries that
14065 display messages in the user's native language.")
14066 (license license:zlib))))
14067
14068 (define-public ecl-system-locale
14069 (sbcl-package->ecl-package sbcl-system-locale))
14070
14071 (define-public cl-system-locale
14072 (sbcl-package->cl-source-package sbcl-system-locale))
14073
14074 (define-public sbcl-language-codes
14075 (let ((commit "e7aa0e37cb97a3d37d6bc7316b479d01bff8f42e"))
14076 (package
14077 (name "sbcl-language-codes")
14078 (version (git-version "1.0.0" "1" commit))
14079 (source
14080 (origin
14081 (method git-fetch)
14082 (uri (git-reference
14083 (url "https://github.com/Shinmera/language-codes")
14084 (commit commit)))
14085 (file-name (git-file-name name commit))
14086 (sha256
14087 (base32 "0py176ibmsc01n5r0q1bs1ykqf5jwdbh8kx0j1a814l9y51241v0"))))
14088 (build-system asdf-build-system/sbcl)
14089 (inputs
14090 `(("documentation-utils" ,sbcl-documentation-utils)))
14091 (home-page "https://shinmera.github.io/language-codes/")
14092 (synopsis "Map ISO language codes to language names in Common Lisp")
14093 (description
14094 "This is a small library providing the ISO-639 language code to
14095 language name mapping.")
14096 (license license:zlib))))
14097
14098 (define-public ecl-language-codes
14099 (sbcl-package->ecl-package sbcl-language-codes))
14100
14101 (define-public cl-language-codes
14102 (sbcl-package->cl-source-package sbcl-language-codes))
14103
14104 (define-public sbcl-multilang-documentation
14105 (let ((commit "59e798a07e949e8957a20927f52aca425d84e4a0"))
14106 (package
14107 (name "sbcl-multilang-documentation")
14108 (version (git-version "1.0.0" "1" commit))
14109 (source
14110 (origin
14111 (method git-fetch)
14112 (uri (git-reference
14113 (url "https://github.com/Shinmera/multilang-documentation")
14114 (commit commit)))
14115 (file-name (git-file-name name commit))
14116 (sha256
14117 (base32 "13y5jskx8n2b7kimpfarr8v777w3b7zj5swg1b99nj3hk0843ixw"))))
14118 (build-system asdf-build-system/sbcl)
14119 (inputs
14120 `(("documentation-utils" ,sbcl-documentation-utils)
14121 ("language-codes" ,sbcl-language-codes)
14122 ("system-locale" ,sbcl-system-locale)))
14123 (home-page "https://shinmera.github.io/multilang-documentation/")
14124 (synopsis "Add multiple languages support to Common Lisp documentation")
14125 (description
14126 "This library provides a drop-in replacement function for
14127 cl:documentation that supports multiple docstrings per-language, allowing you
14128 to write documentation that can be internationalised.")
14129 (license license:zlib))))
14130
14131 (define-public ecl-multilang-documentation
14132 (sbcl-package->ecl-package sbcl-multilang-documentation))
14133
14134 (define-public cl-multilang-documentation
14135 (sbcl-package->cl-source-package sbcl-multilang-documentation))
14136
14137 (define-public sbcl-trivial-do
14138 (let ((commit "03a1729f1e71bad3ebcf6cf098a0cce52dfa1163"))
14139 (package
14140 (name "sbcl-trivial-do")
14141 (version (git-version "0.1" "1" commit))
14142 (source
14143 (origin
14144 (method git-fetch)
14145 (uri (git-reference
14146 (url "https://github.com/yitzchak/trivial-do")
14147 (commit commit)))
14148 (file-name (git-file-name name commit))
14149 (sha256
14150 (base32 "1ffva79nkicc7wc8c2ic5nayis3b2rk5sxzj74yjkymkjgbpcrgd"))))
14151 (build-system asdf-build-system/sbcl)
14152 (home-page "https://github.com/yitzchak/trivial-do")
14153 (synopsis "Additional dolist style macros for Common Lisp")
14154 (description
14155 "Additional dolist style macros for Common Lisp, such as
14156 @code{doalist}, @code{dohash}, @code{dolist*}, @code{doplist}, @code{doseq}
14157 and @code{doseq*}.")
14158 (license license:zlib))))
14159
14160 (define-public ecl-trivial-do
14161 (sbcl-package->ecl-package sbcl-trivial-do))
14162
14163 (define-public cl-trivial-do
14164 (sbcl-package->cl-source-package sbcl-trivial-do))
14165
14166 (define-public sbcl-common-lisp-jupyter
14167 (let ((commit "61a9a8e7a18e2abd7af7c697ba5146fd19bd9d62"))
14168 (package
14169 (name "sbcl-common-lisp-jupyter")
14170 (version (git-version "0.1" "1" commit))
14171 (source
14172 (origin
14173 (method git-fetch)
14174 (uri (git-reference
14175 (url "https://github.com/yitzchak/common-lisp-jupyter")
14176 (commit commit)))
14177 (file-name (git-file-name name commit))
14178 (sha256
14179 (base32 "0zyzl55l45w9z65ygi5pcwda5w5p1j1bb0p2zg2n5cpv8344dkh2"))))
14180 (build-system asdf-build-system/sbcl)
14181 (inputs
14182 `(("alexandria" ,sbcl-alexandria)
14183 ("babel" ,sbcl-babel)
14184 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14185 ("cl-base64" ,sbcl-cl-base64)
14186 ("cl-indentify" ,sbcl-cl-indentify)
14187 ("closer-mop" ,sbcl-closer-mop)
14188 ("eclector" ,sbcl-eclector)
14189 ("ironclad" ,sbcl-ironclad)
14190 ("iterate" ,sbcl-iterate)
14191 ("jsown" ,sbcl-jsown)
14192 ("multilang-documentation" ,sbcl-multilang-documentation)
14193 ("pzmq" ,sbcl-pzmq)
14194 ("puri" ,sbcl-puri)
14195 ("static-vectors" ,sbcl-static-vectors)
14196 ("trivial-do" ,sbcl-trivial-do)
14197 ("trivial-garbage" ,sbcl-trivial-garbage)
14198 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
14199 ("trivial-mimes" ,sbcl-trivial-mimes)))
14200 (home-page "https://yitzchak.github.io/common-lisp-jupyter/")
14201 (synopsis "Common Lisp kernel for Jupyter")
14202 (description
14203 "This is a Common Lisp kernel for Jupyter along with a library for
14204 building Jupyter kernels, based on Maxima-Jupyter which was based on
14205 @code{cl-jupyter}.")
14206 (license license:zlib))))
14207
14208 (define-public ecl-common-lisp-jupyter
14209 (sbcl-package->ecl-package sbcl-common-lisp-jupyter))
14210
14211 (define-public cl-common-lisp-jupyter
14212 (sbcl-package->cl-source-package sbcl-common-lisp-jupyter))
14213
14214 (define-public sbcl-radiance
14215 (let ((commit "5ffbe1f157edd17a13194495099efd81e052df85")
14216 (revision "1"))
14217 (package
14218 (name "sbcl-radiance")
14219 (version (git-version "2.1.2" revision commit))
14220 (source
14221 (origin
14222 (method git-fetch)
14223 (uri (git-reference
14224 (url "https://github.com/Shirakumo/radiance")
14225 (commit commit)))
14226 (file-name (git-file-name "radiance" version))
14227 (sha256
14228 (base32 "0hbkcnmnlj1cqzbv18zmla2iwbl65kxilz9764hndf8x8as1539c"))))
14229 (build-system asdf-build-system/sbcl)
14230 (arguments
14231 `(#:tests? #f ; TODO: The tests require some configuration.
14232 #:phases
14233 (modify-phases %standard-phases
14234 (add-after 'unpack 'disable-quicklisp
14235 (lambda _
14236 ;; Disable the automatic installation of systems by Quicklisp.
14237 ;; (Maybe there would be a way to package Quicklisp and make it
14238 ;; install things in the user's directory instead of
14239 ;; /gnu/store/...).
14240 (substitute* "interfaces.lisp"
14241 (("\\(unless \\(asdf:find-system configured-implementation NIL\\)"
14242 all)
14243 (string-append "#+quicklisp " all))))))))
14244 (native-inputs
14245 `(("alexandria" ,sbcl-alexandria)
14246 ("dexador" ,sbcl-dexador)
14247 ("parachute" ,sbcl-parachute)
14248 ("verbose" ,sbcl-verbose)))
14249 (inputs
14250 `(("babel" ,sbcl-babel)
14251 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14252 ("cl-ppcre" ,sbcl-cl-ppcre)
14253 ("closer-mop" ,sbcl-closer-mop)
14254 ("documentation-utils" ,sbcl-documentation-utils)
14255 ("deploy" ,sbcl-deploy)
14256 ("form-fiddle" ,sbcl-form-fiddle)
14257 ("lambda-fiddle" ,sbcl-lambda-fiddle)
14258 ("local-time" ,sbcl-local-time)
14259 ("modularize-hooks" ,sbcl-modularize-hooks)
14260 ("modularize-interfaces" ,sbcl-modularize-interfaces)
14261 ("puri" ,sbcl-puri)
14262 ("trivial-indent" ,sbcl-trivial-indent)
14263 ("trivial-mimes" ,sbcl-trivial-mimes)
14264 ("ubiquitous-concurrent" ,sbcl-ubiquitous)))
14265 (home-page "https://shirakumo.github.io/radiance/")
14266 (synopsis "Common Lisp web application environment")
14267 (description
14268 "Radiance is a web application environment, which is sort of like a web
14269 framework, but more general, more flexible. It should let you write personal
14270 websites and generally deployable applications easily and in such a way that
14271 they can be used on practically any setup without having to undergo special
14272 adaptations.")
14273 (license license:zlib))))
14274
14275 (define-public ecl-radiance
14276 (sbcl-package->ecl-package sbcl-radiance))
14277
14278 (define-public cl-radiance
14279 (sbcl-package->cl-source-package sbcl-radiance))