gnu: Add cl-svg.
[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 ;;; Copyright © 2021 André A. Gomes <andremegafone@gmail.com>
27 ;;; Copyright © 2021 Cage <cage-dev@twistfold.it>
28 ;;; Copyright © 2021 Cameron Chaparro <cameron@cameronchaparro.com>
29 ;;;
30 ;;; This file is part of GNU Guix.
31 ;;;
32 ;;; GNU Guix is free software; you can redistribute it and/or modify it
33 ;;; under the terms of the GNU General Public License as published by
34 ;;; the Free Software Foundation; either version 3 of the License, or (at
35 ;;; your option) any later version.
36 ;;;
37 ;;; GNU Guix is distributed in the hope that it will be useful, but
38 ;;; WITHOUT ANY WARRANTY; without even the implied warranty of
39 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
40 ;;; GNU General Public License for more details.
41 ;;;
42 ;;; You should have received a copy of the GNU General Public License
43 ;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
44
45 ;;; This file only contains Common Lisp libraries.
46 ;;; Common Lisp compilers and tooling go to lisp.scm.
47 ;;; Common Lisp applications should go to the most appropriate file,
48 ;;; e.g. StumpWM is in wm.scm.
49
50 (define-module (gnu packages lisp-xyz)
51 #:use-module (gnu packages)
52 #:use-module ((guix licenses) #:prefix license:)
53 #:use-module (guix packages)
54 #:use-module (guix download)
55 #:use-module (guix git-download)
56 #:use-module (guix hg-download)
57 #:use-module (guix utils)
58 #:use-module (guix build-system asdf)
59 #:use-module (guix build-system trivial)
60 #:use-module (gnu packages base)
61 #:use-module (gnu packages c)
62 #:use-module (gnu packages compression)
63 #:use-module (gnu packages databases)
64 #:use-module (gnu packages enchant)
65 #:use-module (gnu packages file)
66 #:use-module (gnu packages fonts)
67 #:use-module (gnu packages fontutils)
68 #:use-module (gnu packages gl)
69 #:use-module (gnu packages glib)
70 #:use-module (gnu packages gtk)
71 #:use-module (gnu packages image)
72 #:use-module (gnu packages imagemagick)
73 #:use-module (gnu packages libevent)
74 #:use-module (gnu packages libffi)
75 #:use-module (gnu packages linux)
76 #:use-module (gnu packages lisp)
77 #:use-module (gnu packages maths)
78 #:use-module (gnu packages mp3)
79 #:use-module (gnu packages ncurses)
80 #:use-module (gnu packages networking)
81 #:use-module (gnu packages pkg-config)
82 #:use-module (gnu packages python)
83 #:use-module (gnu packages python-xyz)
84 #:use-module (gnu packages sqlite)
85 #:use-module (gnu packages tcl)
86 #:use-module (gnu packages tls)
87 #:use-module (gnu packages video)
88 #:use-module (gnu packages web)
89 #:use-module (gnu packages webkit)
90 #:use-module (gnu packages xdisorg)
91 #:use-module (ice-9 match)
92 #:use-module (srfi srfi-1)
93 #:use-module (srfi srfi-19))
94
95 (define-public sbcl-alexandria
96 (package
97 (name "sbcl-alexandria")
98 (version "1.2")
99 (source
100 (origin
101 (method git-fetch)
102 (uri (git-reference
103 (url "https://gitlab.common-lisp.net/alexandria/alexandria.git")
104 (commit (string-append "v" version))))
105 (sha256
106 (base32
107 "0bcqs0z9xlqgjz43qzgq9i07vdlnjllpm1wwa37wpkg0w975r712"))
108 (file-name (git-file-name name version))))
109 (build-system asdf-build-system/sbcl)
110 (native-inputs
111 `(("rt" ,sbcl-rt)))
112 (synopsis "Collection of portable utilities for Common Lisp")
113 (description
114 "Alexandria is a collection of portable utilities. It does not contain
115 conceptual extensions to Common Lisp. It is conservative in scope, and
116 portable between implementations.")
117 (home-page "https://common-lisp.net/project/alexandria/")
118 (license license:public-domain)))
119
120 (define-public cl-alexandria
121 (sbcl-package->cl-source-package sbcl-alexandria))
122
123 (define-public ecl-alexandria
124 (sbcl-package->ecl-package sbcl-alexandria))
125
126 (define-public sbcl-bodge-utilities
127 (let ((commit "6304bac4abe06d53579e2c0fc4437d14ff077d9f")
128 (revision "1"))
129 (package
130 (name "sbcl-bodge-utilities")
131 (version (git-version "1.0.0" revision commit))
132 (source
133 (origin
134 (method git-fetch)
135 (uri (git-reference
136 (url "https://github.com/borodust/bodge-utilities")
137 (commit commit)))
138 (file-name (git-file-name "bodge-utilities" version))
139 (sha256
140 (base32 "1z1blj05q71vzh323qwyn9p3xs7v0mq2yhwfyzza5libp37wqm3c"))))
141 (build-system asdf-build-system/sbcl)
142 (inputs
143 `(("alexandria" ,sbcl-alexandria)
144 ("cffi" ,sbcl-cffi)
145 ("claw" ,sbcl-claw)
146 ("dissect" ,sbcl-dissect)
147 ("local-time" ,sbcl-local-time)
148 ("log4cl" ,sbcl-log4cl)
149 ("split-sequence" ,sbcl-split-sequence)
150 ("static-vectors" ,sbcl-static-vectors)
151 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
152 (home-page "https://github.com/borodust/bodge-utilities")
153 (synopsis "Common Lisp utilities library for CL-BODGE")
154 (description
155 "This Common Lisp library provides utilities for the @emph{Bodge} library
156 collection.")
157 (license license:expat))))
158
159 (define-public ecl-bodge-utilities
160 (sbcl-package->ecl-package sbcl-bodge-utilities))
161
162 (define-public cl-bodge-utilities
163 (sbcl-package->cl-source-package sbcl-bodge-utilities))
164
165 (define-public sbcl-bodge-queue
166 (let ((commit "948c9a501dcd412689952d09eb7453ec2722336a")
167 (revision "0"))
168 (package
169 (name "sbcl-bodge-queue")
170 (version (git-version "0.0.0" revision commit))
171 (source
172 (origin
173 (method git-fetch)
174 (uri (git-reference
175 (url "https://github.com/borodust/bodge-queue")
176 (commit commit)))
177 (file-name (git-file-name "bodge-queue" version))
178 (sha256
179 (base32 "148hjikqk8v2m30mj15xh89zni6szf9z3prav580qk9dqr8djjdr"))))
180 (build-system asdf-build-system/sbcl)
181 (native-inputs
182 `(("fiveam" ,sbcl-fiveam)))
183 (home-page "https://github.com/borodust/bodge-queue")
184 (synopsis "Simple queue for Common Lisp")
185 (description "This Common Lisp library provides a simple FIFO
186 implementation with no external dependencies.")
187 (license license:expat))))
188
189 (define-public cl-bodge-queue
190 (sbcl-package->cl-source-package sbcl-bodge-queue))
191
192 (define-public ecl-bodge-queue
193 (sbcl-package->ecl-package sbcl-bodge-queue))
194
195 (define-public sbcl-golden-utils
196 (let ((commit "62a5cb948a011eb26e7a89f56d5839a3334b4100")
197 (revision "2"))
198 (package
199 (name "sbcl-golden-utils")
200 (version (git-version "0.0.0" revision commit))
201 (source
202 (origin
203 (method git-fetch)
204 (uri (git-reference
205 (url "https://git.mfiano.net/mfiano/golden-utils")
206 (commit commit)))
207 (file-name (git-file-name "golden-utils" version))
208 (sha256
209 (base32 "13mvxqwd1nmpq8h5hb1s60wyqdj7ji4haxrqr0sy3csyqa8aq2j8"))))
210 (build-system asdf-build-system/sbcl)
211 (inputs
212 `(("alexandria" ,sbcl-alexandria)))
213 (home-page "https://git.mfiano.net/mfiano/golden-utils")
214 (synopsis "Common Lisp utility library")
215 (description
216 "This is a Common Lisp library providing various utilities.")
217 (license license:expat))))
218
219 (define-public ecl-golden-utils
220 (sbcl-package->ecl-package sbcl-golden-utils))
221
222 (define-public cl-golden-utils
223 (sbcl-package->cl-source-package sbcl-golden-utils))
224
225 (define-public sbcl-asdf-finalizers
226 (let ((commit "7f537f6c598b662ae987c6acc268dd27c25977e0")
227 (revision "1"))
228 (package
229 (name "sbcl-asdf-finalizers")
230 (version (git-version "0.0.0" revision commit))
231 (source
232 (origin
233 (method git-fetch)
234 (uri (git-reference
235 (url "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
236 (commit commit)))
237 (file-name (git-file-name name version))
238 (sha256
239 (base32 "1w56c9yjjydjshsgqxz57qlp2v3r4ilbisnsgiqphvxnhvd41y0v"))))
240 (build-system asdf-build-system/sbcl)
241 (native-inputs
242 `(("fare-utils" ,sbcl-fare-utils)
243 ("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
244 (arguments
245 `(#:asd-files '("asdf-finalizers.asd"
246 "list-of.asd"
247 "asdf-finalizers-test.asd")
248 #:asd-systems '("asdf-finalizers"
249 "list-of")))
250 (home-page "https://gitlab.common-lisp.net/asdf/asdf-finalizers")
251 (synopsis "Enforced calling of finalizers for Lisp code")
252 (description "This library allows you to implement and enforce proper
253 finalization of compile-time constructs while building Lisp source files.
254
255 It produces two systems: asdf-finalizers and list-of.")
256 (license license:expat))))
257
258 (define-public ecl-asdf-finalizers
259 (sbcl-package->ecl-package sbcl-asdf-finalizers))
260
261 (define-public cl-asdf-finalizers
262 (sbcl-package->cl-source-package sbcl-asdf-finalizers))
263
264 (define-public sbcl-net.didierverna.asdf-flv
265 (package
266 (name "sbcl-net.didierverna.asdf-flv")
267 (version "2.1")
268 (source
269 (origin
270 (method git-fetch)
271 (uri (git-reference
272 (url "https://github.com/didierverna/asdf-flv")
273 (commit (string-append "version-" version))))
274 (file-name (git-file-name "asdf-flv" version))
275 (sha256
276 (base32 "1fi2y4baxan103jbg4idjddzihy03kwnj2mzbwrknw4d4x7xlgwj"))))
277 (build-system asdf-build-system/sbcl)
278 (synopsis "Common Lisp ASDF extension to provide support for file-local variables")
279 (description "ASDF-FLV provides support for file-local variables through
280 ASDF. A file-local variable behaves like @code{*PACKAGE*} and
281 @code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
282 dynamic binding is created before processing the file, so that any
283 modification to the variable becomes essentially file-local.
284
285 In order to make one or several variables file-local, use the macros
286 @code{SET-FILE-LOCAL-VARIABLE(S)}.")
287 (home-page "https://www.lrde.epita.fr/~didier/software/lisp/misc.php#asdf-flv")
288 (license (license:non-copyleft
289 "https://www.gnu.org/prep/maintain/html_node/License-Notices-for-Other-Files.html"
290 "GNU All-Permissive License"))))
291
292 (define-public cl-net.didierverna.asdf-flv
293 (sbcl-package->cl-source-package sbcl-net.didierverna.asdf-flv))
294
295 (define-public ecl-net.didierverna.asdf-flv
296 (sbcl-package->ecl-package sbcl-net.didierverna.asdf-flv))
297
298 (define-public sbcl-command-line-arguments
299 (let ((commit "fbac862fb01c0e368141204f3f639920462c23fe")
300 (revision "1"))
301 (package
302 (name "sbcl-command-line-arguments")
303 (version (git-version "2.0.0" revision commit))
304 (source
305 (origin
306 (method git-fetch)
307 (uri (git-reference
308 (url "https://github.com/fare/command-line-arguments")
309 (commit commit)))
310 (file-name (git-file-name name version))
311 (sha256
312 (base32 "054m1ikndzqf72mb9ajaa64136cwr3bgag4yfbi1574a9vq75mjq"))))
313 (build-system asdf-build-system/sbcl)
314 (home-page "https://github.com/fare/command-line-arguments")
315 (synopsis "Trivial command-line argument parsing library for Common Lisp")
316 (description "This is a library to abstract away the parsing of
317 Unix-style command-line arguments. Use it in conjunction with asdf:program-op
318 or cl-launch for portable processing of command-line arguments.")
319 (license license:expat))))
320
321 (define-public ecl-command-line-arguments
322 (sbcl-package->ecl-package sbcl-command-line-arguments))
323
324 (define-public cl-command-line-arguments
325 (sbcl-package->cl-source-package sbcl-command-line-arguments))
326
327 (define-public sbcl-fiveam
328 (package
329 (name "sbcl-fiveam")
330 (version "1.4.1")
331 (source
332 (origin
333 (method git-fetch)
334 (uri (git-reference
335 (url "https://github.com/sionescu/fiveam")
336 (commit (string-append "v" version))))
337 (file-name (git-file-name "fiveam" version))
338 (sha256
339 (base32 "1q3d38pwafnwnw42clq0f8g5xw7pbzr287jl9jsqmb1vb0n1vrli"))))
340 (inputs
341 `(("alexandria" ,sbcl-alexandria)
342 ("net.didierverna.asdf-flv" ,sbcl-net.didierverna.asdf-flv)
343 ("trivial-backtrace" ,sbcl-trivial-backtrace)))
344 (build-system asdf-build-system/sbcl)
345 (synopsis "Common Lisp testing framework")
346 (description "FiveAM is a simple (as far as writing and running tests
347 goes) regression testing framework. It has been designed with Common Lisp's
348 interactive development model in mind.")
349 (home-page "https://common-lisp.net/project/fiveam/")
350 (license license:bsd-3)))
351
352 (define-public cl-fiveam
353 (sbcl-package->cl-source-package sbcl-fiveam))
354
355 (define-public ecl-fiveam
356 (sbcl-package->ecl-package sbcl-fiveam))
357
358 (define-public sbcl-cl-irc
359 (let ((commit "963823537c7bfcda2edd4c44d172192da6722175")
360 (revision "0"))
361 (package
362 (name "sbcl-cl-irc")
363 (version (git-version "0.9.2" revision commit))
364 (source
365 (origin
366 (method git-fetch)
367 (uri (git-reference
368 (url "https://salsa.debian.org/common-lisp-team/cl-irc.git")
369 (commit commit)))
370 (file-name (git-file-name "cl-irc" version))
371 (sha256
372 (base32 "1b3nqbb4pj377lxl47rfgrs82pidadnrc65l48bk553c2f59b52w"))))
373 (build-system asdf-build-system/sbcl)
374 (native-inputs
375 ;; Tests only.
376 `(("rt" ,sbcl-rt)))
377 (inputs
378 `(("cl+ssl" ,sbcl-cl+ssl)
379 ("flexi-streams" ,sbcl-flexi-streams)
380 ("split-sequence" ,sbcl-split-sequence)
381 ("usocket" ,sbcl-usocket)))
382 (arguments
383 `(#:asd-systems '("cl-irc") ;; Some inexisting "c" system is
384 ;; found by guix otherwise.
385 #:asd-files '("cl-irc.asd")
386 #:test-asd-file "test/cl-irc-test.asd"))
387 (synopsis "IRC client library for Common Lisp")
388 (description "@code{cl-irc} is a Common Lisp IRC client library that
389 features (partial) DCC, CTCP and all relevant commands from the IRC
390 RFCs (RFC2810, RFC2811 and RFC2812).
391
392 Features:
393 @itemize
394 @item implements all commands in the RFCs
395 @item extra convenience commands such as op/deop, ban, ignore, etc.
396 @item partial DCC SEND/CHAT support
397 @item event driven model with hooks makes interfacing easy
398 @item the user can keep multiple connections
399 @item all CTCP commands
400 @end itemize\n")
401 (home-page "https://common-lisp.net/project/cl-irc/")
402 (license license:bsd-2))))
403
404 (define-public cl-irc
405 (sbcl-package->cl-source-package sbcl-cl-irc))
406
407 (define-public ecl-cl-irc
408 (sbcl-package->ecl-package sbcl-cl-irc))
409
410 (define-public sbcl-trivial-timeout
411 (let ((commit "feb869357f40f5e109570fb40abad215fb370c6c")
412 (revision "1"))
413 (package
414 (name "sbcl-trivial-timeout")
415 (version (git-version "0.1.5" revision commit))
416 (source
417 (origin
418 (method git-fetch)
419 (uri (git-reference
420 (url "https://github.com/gwkkwg/trivial-timeout/")
421 (commit commit)))
422 (file-name (git-file-name "trivial-timeout" version))
423 (sha256
424 (base32 "1kninxwvvih9nhh7a9y8lfgi7pdr76675y1clw4ss17vz8fbim5p"))))
425 (build-system asdf-build-system/sbcl)
426 (native-inputs
427 `(("lift" ,sbcl-lift)))
428 (arguments
429 ;; NOTE: (Sharlatan-20210202T231437+0000): Due to the age of this library
430 ;; tests use some deprecated functionality and keep failing.
431 `(#:tests? #f))
432 (home-page "https://github.com/gwkkwg/trivial-timeout/")
433 (synopsis "Timeout library for Common Lisp")
434 (description
435 "This library provides an OS and implementation independent access to
436 timeouts.")
437 (license license:expat))))
438
439 (define-public ecl-trivial-timeout
440 (sbcl-package->ecl-package sbcl-trivial-timeout))
441
442 (define-public cl-trivial-timeout
443 (sbcl-package->cl-source-package sbcl-trivial-timeout))
444
445 (define-public sbcl-bordeaux-threads
446 (package
447 (name "sbcl-bordeaux-threads")
448 (version "0.8.8")
449 (source (origin
450 (method git-fetch)
451 (uri (git-reference
452 (url "https://github.com/sionescu/bordeaux-threads")
453 (commit (string-append "v" version))))
454 (sha256
455 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"))
456 (file-name
457 (git-file-name "bordeaux-threads" version))))
458 (inputs `(("alexandria" ,sbcl-alexandria)))
459 (native-inputs `(("fiveam" ,sbcl-fiveam)))
460 (build-system asdf-build-system/sbcl)
461 (synopsis "Portable shared-state concurrency library for Common Lisp")
462 (description "BORDEAUX-THREADS is a proposed standard for a minimal
463 MP/Threading interface. It is similar to the CLIM-SYS threading and lock
464 support.")
465 (home-page "https://common-lisp.net/project/bordeaux-threads/")
466 (license license:x11)))
467
468 (define-public cl-bordeaux-threads
469 (sbcl-package->cl-source-package sbcl-bordeaux-threads))
470
471 (define-public ecl-bordeaux-threads
472 (sbcl-package->ecl-package sbcl-bordeaux-threads))
473
474 (define-public sbcl-trivial-gray-streams
475 (let ((revision "1")
476 (commit "ebd59b1afed03b9dc8544320f8f432fdf92ab010"))
477 (package
478 (name "sbcl-trivial-gray-streams")
479 (version (string-append "0.0.0-" revision "." (string-take commit 7)))
480 (source
481 (origin
482 (method git-fetch)
483 (uri
484 (git-reference
485 (url "https://github.com/trivial-gray-streams/trivial-gray-streams")
486 (commit commit)))
487 (sha256
488 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94"))
489 (file-name
490 (string-append "trivial-gray-streams-" version "-checkout"))))
491 (build-system asdf-build-system/sbcl)
492 (synopsis "Compatibility layer for Gray streams implementations")
493 (description "Gray streams is an interface proposed for inclusion with
494 ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
495 popular CL implementations implement it. This package provides an extremely
496 thin compatibility layer for gray streams.")
497 (home-page "https://www.cliki.net/trivial-gray-streams")
498 (license license:x11))))
499
500 (define-public cl-trivial-gray-streams
501 (sbcl-package->cl-source-package sbcl-trivial-gray-streams))
502
503 (define-public ecl-trivial-gray-streams
504 (sbcl-package->ecl-package sbcl-trivial-gray-streams))
505
506 (define-public sbcl-fiasco
507 (let ((commit "d62f7558b21addc89f87e306f65d7f760632655f")
508 (revision "1"))
509 (package
510 (name "sbcl-fiasco")
511 (version (git-version "0.0.1" revision commit))
512 (source
513 (origin
514 (method git-fetch)
515 (uri (git-reference
516 (url "https://github.com/joaotavora/fiasco")
517 (commit commit)))
518 (file-name (git-file-name "fiasco" version))
519 (sha256
520 (base32
521 "1zwxs3d6iswayavcmb49z2892xhym7n556d8dnmvalc32pm9bkjh"))))
522 (build-system asdf-build-system/sbcl)
523 (inputs
524 `(("alexandria" ,sbcl-alexandria)
525 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
526 (synopsis "Simple and powerful test framework for Common Lisp")
527 (description "A Common Lisp test framework that treasures your failures,
528 logical continuation of Stefil. It focuses on interactive debugging.")
529 (home-page "https://github.com/joaotavora/fiasco")
530 ;; LICENCE specifies this is public-domain unless the legislation
531 ;; doesn't allow or recognize it. In that case it falls back to a
532 ;; permissive licence.
533 (license (list license:public-domain
534 (license:x11-style "file://LICENCE"))))))
535
536 (define-public cl-fiasco
537 (sbcl-package->cl-source-package sbcl-fiasco))
538
539 (define-public ecl-fiasco
540 (sbcl-package->ecl-package sbcl-fiasco))
541
542 (define-public sbcl-flexi-streams
543 (package
544 (name "sbcl-flexi-streams")
545 (version "1.0.18")
546 (source
547 (origin
548 (method git-fetch)
549 (uri (git-reference
550 (url "https://github.com/edicl/flexi-streams")
551 (commit (string-append "v" version))))
552 (file-name (git-file-name "flexi-streams" version))
553 (sha256
554 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
555 (build-system asdf-build-system/sbcl)
556 (arguments
557 `(#:phases
558 (modify-phases %standard-phases
559 (add-after 'unpack 'make-git-checkout-writable
560 (lambda _
561 (for-each make-file-writable (find-files "."))
562 #t)))))
563 (inputs `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
564 (synopsis "Implementation of virtual bivalent streams for Common Lisp")
565 (description "Flexi-streams is an implementation of \"virtual\" bivalent
566 streams that can be layered atop real binary or bivalent streams and that can
567 be used to read and write character data in various single- or multi-octet
568 encodings which can be changed on the fly. It also supplies in-memory binary
569 streams which are similar to string streams.")
570 (home-page "http://weitz.de/flexi-streams/")
571 (license license:bsd-3)))
572
573 (define-public cl-flexi-streams
574 (sbcl-package->cl-source-package sbcl-flexi-streams))
575
576 (define-public ecl-flexi-streams
577 (sbcl-package->ecl-package sbcl-flexi-streams))
578
579 (define-public sbcl-cl-abnf
580 ;; There are no releases
581 (let ((commit "ba1fbb104dedbdaddb1ef93d2e4da711bd96cd70")
582 (revision "1"))
583 (package
584 (name "sbcl-cl-abnf")
585 (version (git-version "0.0.0" revision commit))
586 (source
587 (origin
588 (method git-fetch)
589 (uri (git-reference
590 (url "https://github.com/dimitri/cl-abnf")
591 (commit commit)))
592 (file-name (git-file-name "cl-abnf" version))
593 (sha256
594 (base32 "0f09nsndxa90acm71zd4qdnp40v705a4sqm04mnv9x76h6dlggmz"))))
595 (build-system asdf-build-system/sbcl)
596 (inputs
597 `(("cl-ppcre" ,sbcl-cl-ppcre)
598 ("esrap" ,sbcl-esrap)))
599 (arguments
600 `(#:asd-systems '("abnf")))
601 (home-page "https://github.com/dimitri/cl-abnf")
602 (synopsis "ABNF parser generator for Common Lisp")
603 (description "This Common Lisp library implements a parser generator for
604 the ABNF grammar format as described in RFC2234. The generated parser is a
605 regular expression scanner provided by the cl-ppcre lib, which means that we
606 can't parse recursive grammar definition. One such definition is the ABNF
607 definition as given by the RFC. Fortunately, as you have this lib, you most
608 probably don't need to generate another parser to handle that particular ABNF
609 grammar.")
610 (license license:expat))))
611
612 (define-public cl-abnf
613 (sbcl-package->cl-source-package sbcl-cl-abnf))
614
615 (define-public ecl-cl-abnf
616 (sbcl-package->ecl-package sbcl-cl-abnf))
617
618 (define-public sbcl-cl-ppcre
619 (package
620 (name "sbcl-cl-ppcre")
621 (version "2.1.1")
622 (source
623 (origin
624 (method git-fetch)
625 (uri (git-reference
626 (url "https://github.com/edicl/cl-ppcre")
627 (commit (string-append "v" version))))
628 (file-name (git-file-name "cl-ppcre" version))
629 (sha256
630 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
631 (build-system asdf-build-system/sbcl)
632 (native-inputs
633 `(("flexi-streams" ,sbcl-flexi-streams)))
634 (arguments
635 `(#:phases
636 (modify-phases %standard-phases
637 (add-after 'unpack 'disable-ppcre-unicode
638 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
639 ;; to work around the circular dependency between edicl/cl-ppcre
640 ;; and edicl/cl-unicode.
641 (lambda _
642 (delete-file "cl-ppcre-unicode.asd")
643 #t)))))
644 (synopsis "Portable regular expression library for Common Lisp")
645 (description "CL-PPCRE is a portable regular expression library for Common
646 Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
647 compatible with ANSI-compliant Common Lisp implementations.")
648 (home-page "http://weitz.de/cl-ppcre/")
649 (license license:bsd-2)))
650
651 (define-public cl-ppcre
652 (sbcl-package->cl-source-package sbcl-cl-ppcre))
653
654 (define-public ecl-cl-ppcre
655 (sbcl-package->ecl-package sbcl-cl-ppcre))
656
657 (define-public sbcl-parse
658 (let ((commit "2351ee78acac065fcf10b8713d3f404e2e910786")
659 (revision "1"))
660 (package
661 (name "sbcl-parse")
662 (version (git-version "1.0" revision commit))
663 (source
664 (origin
665 (method git-fetch)
666 (uri (git-reference
667 (url "https://github.com/massung/parse")
668 (commit commit)))
669 (file-name (git-file-name "parse" version))
670 (sha256
671 (base32 "0l18yabyh7jizm5lgvra0jxi8s1cfwghidi6ix1pyixjkdbjlmvy"))))
672 (build-system asdf-build-system/sbcl)
673 (home-page "https://github.com/massung/parse")
674 (synopsis "Monadic parsing for Common Lisp")
675 (description
676 "PARSE is a simple token parsing library for Common Lisp.")
677 (license license:asl2.0))))
678
679 (define-public ecl-parse
680 (sbcl-package->ecl-package sbcl-parse))
681
682 (define-public cl-parse
683 (sbcl-package->cl-source-package sbcl-parse))
684
685 (define-public sbcl-re
686 (let ((commit "cfbc1f482970221e80d445080a188fd5c755cd2c")
687 (revision "1"))
688 (package
689 (name "sbcl-re")
690 (version (git-version "1.0" revision commit))
691 (source
692 (origin
693 (method git-fetch)
694 (uri (git-reference
695 (url "https://github.com/massung/re")
696 (commit commit)))
697 (file-name (git-file-name "re" version))
698 (sha256
699 (base32 "1y2gq2sckspnq8118bix55p2j43dk9qn3p8a2rplp1ip2qxqbb1i"))))
700 (build-system asdf-build-system/sbcl)
701 (inputs
702 `(("parse" ,sbcl-parse)))
703 (home-page "https://github.com/massung/re")
704 (synopsis "Lua-style Pattern Matching for Common Lisp")
705 (description
706 "RE is a small, portable, lightweight, and quick, regular
707 expression library for Common Lisp. It is a non-recursive, backtracing VM.")
708 (license license:asl2.0))))
709
710 (define-public ecl-re
711 (sbcl-package->ecl-package sbcl-re))
712
713 (define-public cl-re
714 (sbcl-package->cl-source-package sbcl-re))
715
716 (define-public sbcl-ubiquitous
717 (let ((commit "35eb7bd9e1b3daee1705f6b41260775180cce8af")
718 (revision "1"))
719 (package
720 (name "sbcl-ubiquitous")
721 (version (git-version "2.0.0" revision commit))
722 (source
723 (origin
724 (method git-fetch)
725 (uri (git-reference
726 (url "https://github.com/Shinmera/ubiquitous")
727 (commit commit)))
728 (file-name (git-file-name "ubiquitous" version))
729 (sha256
730 (base32 "1xlkaqmjcpkiv2xl2s2pvvrv976dlc846wm16s1lj62iy1315i49"))))
731 (build-system asdf-build-system/sbcl)
732 (inputs
733 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
734 (arguments
735 '(#:asd-systems '("ubiquitous"
736 "ubiquitous-concurrent")))
737 (home-page "https://shinmera.github.io/ubiquitous/")
738 (synopsis "Application configuration mechanism for Common Lisp")
739 (description
740 "@code{UBIQUITOUS} is a very easy-to-use library for persistent
741 configuration storage. It automatically takes care of finding a suitable place
742 to save your data, and provides simple functions to access and modify the data
743 within.")
744 (license license:zlib))))
745
746 (define-public ecl-ubiquitous
747 (sbcl-package->ecl-package sbcl-ubiquitous))
748
749 (define-public cl-ubiquitous
750 (sbcl-package->cl-source-package sbcl-ubiquitous))
751
752 (define-public sbcl-uax-15
753 (package
754 (name "sbcl-uax-15")
755 (version "0.1.1")
756 (source
757 (origin
758 (method git-fetch)
759 (uri (git-reference
760 (url "https://github.com/sabracrolleton/uax-15")
761 (commit (string-append "v" version))))
762 (file-name (git-file-name "uax-15" version))
763 (sha256
764 (base32 "0p2ckw7mzxhwa9vbwj2q2dzayz9dl94d9yqd2ynp0pc5v8i0n2fr"))))
765 (build-system asdf-build-system/sbcl)
766 (arguments
767 `(#:asd-systems
768 '("uax-15")))
769 (native-inputs
770 `(("fiveam" ,sbcl-fiveam)))
771 (inputs
772 `(("cl-ppcre" ,sbcl-cl-ppcre)
773 ("split-sequence" ,sbcl-split-sequence)))
774 (home-page "https://github.com/sabracrolleton/uax-15")
775 (synopsis "Common Lisp implementation of unicode normalization functions")
776 (description
777 "This package provides supports for unicode normalization, RFC8264 and
778 RFC7564.")
779 (license license:expat)))
780
781 (define-public cl-uax-15
782 (sbcl-package->cl-source-package sbcl-uax-15))
783
784 (define-public ecl-uax-15
785 (sbcl-package->ecl-package sbcl-uax-15))
786
787 (define-public sbcl-cl-unicode
788 (package
789 (name "sbcl-cl-unicode")
790 (version "0.1.6")
791 (source (origin
792 (method git-fetch)
793 (uri (git-reference
794 (url "https://github.com/edicl/cl-unicode")
795 (commit (string-append "v" version))))
796 (file-name (git-file-name name version))
797 (sha256
798 (base32
799 "0ykx2s9lqfl74p1px0ik3l2izd1fc9jd1b4ra68s5x34rvjy0hza"))))
800 (build-system asdf-build-system/sbcl)
801 (native-inputs
802 `(("flexi-streams" ,sbcl-flexi-streams)))
803 (inputs
804 `(("cl-ppcre" ,sbcl-cl-ppcre)))
805 (home-page "http://weitz.de/cl-unicode/")
806 (synopsis "Portable Unicode library for Common Lisp")
807 (description "CL-UNICODE is a portable Unicode library Common Lisp, which
808 is compatible with perl. It is pretty fast, thread-safe, and compatible with
809 ANSI-compliant Common Lisp implementations.")
810 (license license:bsd-2)))
811
812 (define-public ecl-cl-unicode
813 (sbcl-package->ecl-package sbcl-cl-unicode))
814
815 (define-public cl-unicode
816 (sbcl-package->cl-source-package sbcl-cl-unicode))
817
818 (define-public sbcl-cl-ppcre-unicode
819 (package (inherit sbcl-cl-ppcre)
820 (name "sbcl-cl-ppcre-unicode")
821 (inputs
822 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
823 ("sbcl-cl-unicode" ,sbcl-cl-unicode)))
824 (arguments
825 `(#:tests? #f ; tests fail with "Component :CL-PPCRE-TEST not found"
826 #:phases
827 (modify-phases %standard-phases
828 (add-after 'unpack 'disable-ppcre
829 ;; cl-ppcre and cl-ppcre-unicode are put in different packages
830 ;; to work around the circular dependency between edicl/cl-ppcre
831 ;; and edicl/cl-unicode.
832 (lambda _
833 (delete-file "cl-ppcre.asd")
834 #t)))))))
835
836 (define-public cl-ppcre-unicode
837 (sbcl-package->cl-source-package sbcl-cl-ppcre-unicode))
838
839 (define-public ecl-cl-ppcre-unicode
840 (sbcl-package->ecl-package sbcl-cl-ppcre-unicode))
841
842 (define-public sbcl-zpb-ttf
843 (package
844 (name "sbcl-zpb-ttf")
845 (version "1.0.3")
846 (source
847 (origin
848 (method git-fetch)
849 (uri (git-reference
850 (url "https://github.com/xach/zpb-ttf")
851 (commit (string-append "release-" version))))
852 (file-name (git-file-name name version))
853 (sha256
854 (base32
855 "1wh66vjijzqlydnrihynpwp6796917xwrh0i9li93c17kyxa74ih"))))
856 (build-system asdf-build-system/sbcl)
857 (home-page "https://github.com/xach/zpb-ttf")
858 (synopsis "TrueType font file access for Common Lisp")
859 (description
860 "ZPB-TTF is a TrueType font file parser that provides an interface for
861 reading typographic metrics, glyph outlines, and other information from the
862 file.")
863 (license license:bsd-2)))
864
865 (define-public ecl-zpb-ttf
866 (sbcl-package->ecl-package sbcl-zpb-ttf))
867
868 (define-public cl-zpb-ttf
869 (sbcl-package->cl-source-package sbcl-zpb-ttf))
870
871 (define-public sbcl-cl-vectors
872 (package
873 (name "sbcl-cl-vectors")
874 (version "0.1.5")
875 (source
876 (origin
877 (method url-fetch)
878 (uri (string-append "http://projects.tuxee.net/cl-vectors/"
879 "files/cl-vectors-" version ".tar.gz"))
880 (sha256
881 (base32
882 "04lhwi0kq8pkwhgd885pk80m1cp9sfvjjn5zj70s1dnckibhdmqh"))))
883 (build-system asdf-build-system/sbcl)
884 (inputs
885 `(("zpb-ttf" ,sbcl-zpb-ttf)))
886 (arguments
887 '(#:asd-systems '("cl-vectors"
888 "cl-paths-ttf")))
889 (home-page "http://projects.tuxee.net/cl-vectors/")
890 (synopsis "Create, transform and render anti-aliased vectorial paths")
891 (description
892 "This is a pure Common Lisp library to create, transform and render
893 anti-aliased vectorial paths.")
894 (license license:expat)))
895
896 (define-public ecl-cl-vectors
897 (sbcl-package->ecl-package sbcl-cl-vectors))
898
899 (define-public cl-vectors
900 (sbcl-package->cl-source-package sbcl-cl-vectors))
901
902 (define-public sbcl-spatial-trees
903 ;; There have been no releases.
904 (let ((commit "81fdad0a0bf109c80a53cc96eca2e093823400ba")
905 (revision "1"))
906 (package
907 (name "sbcl-spatial-trees")
908 (version (git-version "0" revision commit))
909 (source
910 (origin
911 (method git-fetch)
912 (uri (git-reference
913 (url "https://github.com/rpav/spatial-trees")
914 (commit commit)))
915 (file-name (git-file-name name version))
916 (sha256
917 (base32
918 "11rhc6h501dwcik2igkszz7b9n515cr99m5pjh4r2qfwgiri6ysa"))))
919 (build-system asdf-build-system/sbcl)
920 (arguments
921 '(#:tests? #f ; spatial-trees.test requires spatial-trees.nns
922 #:test-asd-file "spatial-trees.test.asd"))
923 (native-inputs
924 `(("fiveam" ,sbcl-fiveam)))
925 (home-page "https://github.com/rpav/spatial-trees")
926 (synopsis "Dynamic index data structures for spatially-extended data")
927 (description
928 "Spatial-trees is a set of dynamic index data structures for
929 spatially-extended data.")
930 (license license:bsd-3))))
931
932 (define-public ecl-spatial-trees
933 (sbcl-package->ecl-package sbcl-spatial-trees))
934
935 (define-public cl-spatial-trees
936 (sbcl-package->cl-source-package sbcl-spatial-trees))
937
938 (define-public sbcl-flexichain
939 ;; There are no releases.
940 (let ((commit "13d2a6c505ed0abfcd4c4ec7d7145059b06855d6")
941 (revision "1"))
942 (package
943 (name "sbcl-flexichain")
944 (version "1.5.1")
945 (source
946 (origin
947 (method git-fetch)
948 (uri (git-reference
949 (url "https://github.com/robert-strandh/Flexichain")
950 (commit commit)))
951 (file-name (git-file-name name version))
952 (sha256
953 (base32
954 "0pfyvhsfbjd2sjb30grfs52r51a428xglv7bwydvpg2lc117qimg"))))
955 (build-system asdf-build-system/sbcl)
956 (home-page "https://github.com/robert-strandh/Flexichain.git")
957 (synopsis "Dynamically add elements to or remove them from sequences")
958 (description
959 "This package provides an implementation of the flexichain protocol,
960 allowing client code to dynamically add elements to, and delete elements from
961 a sequence (or chain) of such elements.")
962 (license license:lgpl2.1+))))
963
964 (define-public ecl-flexichain
965 (sbcl-package->ecl-package sbcl-flexichain))
966
967 (define-public cl-flexichain
968 (sbcl-package->cl-source-package sbcl-flexichain))
969
970 (define-public sbcl-cl-pdf
971 ;; There are no releases
972 (let ((commit "752e337e6d6fc206f09d091a982e7f8e5c404e4e")
973 (revision "1"))
974 (package
975 (name "sbcl-cl-pdf")
976 (version (git-version "0" revision commit))
977 (source
978 (origin
979 (method git-fetch)
980 (uri (git-reference
981 (url "https://github.com/mbattyani/cl-pdf")
982 (commit commit)))
983 (file-name (git-file-name name version))
984 (sha256
985 (base32
986 "1cg3k3m3r11ipb8j008y8ipynj97l3xjlpi2knqc9ndmx4r3kb1r"))))
987 (build-system asdf-build-system/sbcl)
988 (inputs
989 `(("iterate" ,sbcl-iterate)
990 ("zpb-ttf" ,sbcl-zpb-ttf)))
991 (home-page "https://github.com/mbattyani/cl-pdf")
992 (synopsis "Common Lisp library for generating PDF files")
993 (description
994 "CL-PDF is a cross-platform Common Lisp library for generating PDF
995 files.")
996 (license license:bsd-2))))
997
998 (define-public ecl-cl-pdf
999 (sbcl-package->ecl-package sbcl-cl-pdf))
1000
1001 (define-public cl-pdf
1002 (sbcl-package->cl-source-package sbcl-cl-pdf))
1003
1004 (define-public sbcl-clx
1005 (package
1006 (name "sbcl-clx")
1007 (version "0.7.5")
1008 (source
1009 (origin
1010 (method git-fetch)
1011 (uri
1012 (git-reference
1013 (url "https://github.com/sharplispers/clx")
1014 (commit version)))
1015 (sha256
1016 (base32
1017 "1vi67z9hpj5rr4xcmfbfwzmlcc0ah7hzhrmfid6lqdkva238v2wf"))
1018 (file-name (string-append "clx-" version))))
1019 (build-system asdf-build-system/sbcl)
1020 (native-inputs
1021 `(("fiasco" ,sbcl-fiasco)))
1022 (home-page "https://www.cliki.net/portable-clx")
1023 (synopsis "X11 client library for Common Lisp")
1024 (description "CLX is an X11 client library for Common Lisp. The code was
1025 originally taken from a CMUCL distribution, was modified somewhat in order to
1026 make it compile and run under SBCL, then a selection of patches were added
1027 from other CLXes around the net.")
1028 (license license:x11)))
1029
1030 (define-public cl-clx
1031 (sbcl-package->cl-source-package sbcl-clx))
1032
1033 (define-public ecl-clx
1034 (sbcl-package->ecl-package sbcl-clx))
1035
1036 (define-public sbcl-clx-truetype
1037 (let ((commit "c6e10a918d46632324d5863a8ed067a83fc26de8")
1038 (revision "1"))
1039 (package
1040 (name "sbcl-clx-truetype")
1041 (version (git-version "0.0.1" revision commit))
1042 (source
1043 (origin
1044 (method git-fetch)
1045 (uri (git-reference
1046 (url "https://github.com/l04m33/clx-truetype")
1047 (commit commit)))
1048 (file-name (git-file-name name version))
1049 (sha256
1050 (base32
1051 "079hyp92cjkdfn6bhkxsrwnibiqbz4y4af6nl31lzw6nm91j5j37"))
1052 (modules '((guix build utils)))
1053 (snippet
1054 '(begin
1055 (substitute* "package.lisp"
1056 ((":export") ":export\n :+font-cache-filename+"))
1057 #t))))
1058 (build-system asdf-build-system/sbcl)
1059 (inputs
1060 `(("clx" ,sbcl-clx)
1061 ("zpb-ttf" ,sbcl-zpb-ttf)
1062 ("cl-vectors" ,sbcl-cl-vectors)
1063 ("cl-fad" ,sbcl-cl-fad)
1064 ("cl-store" ,sbcl-cl-store)
1065 ("trivial-features" ,sbcl-trivial-features)))
1066 (home-page "https://github.com/l04m33/clx-truetype")
1067 (synopsis "Antialiased TrueType font rendering using CLX and XRender")
1068 (description "CLX-TrueType is pure common lisp solution for
1069 antialiased TrueType font rendering using CLX and XRender extension.")
1070 (license license:expat))))
1071
1072 (define-public cl-clx-truetype
1073 (sbcl-package->cl-source-package sbcl-clx-truetype))
1074
1075 (define-public ecl-clx-truetype
1076 (sbcl-package->ecl-package sbcl-clx-truetype))
1077
1078 (define-public sbcl-slynk
1079 (let ((commit "fb84318c08f59bc786e047006fc81e2ace568309"))
1080 (package
1081 (name "sbcl-slynk")
1082 (version (git-version "1.0.43" "4" commit))
1083 (source
1084 (origin
1085 (method git-fetch)
1086 (uri
1087 (git-reference
1088 (url "https://github.com/joaotavora/sly")
1089 (commit commit)))
1090 (sha256
1091 (base32 "0z123k9ak7yjb9bxb5qx48f33ma8066rhkqh8xc14z7shk75jybj"))
1092 (file-name (git-file-name "slynk" version))))
1093 (build-system asdf-build-system/sbcl)
1094 (outputs '("out" "image"))
1095 (arguments
1096 `(#:phases
1097 (modify-phases %standard-phases
1098 (add-after 'create-asdf-configuration 'build-image
1099 (lambda* (#:key outputs #:allow-other-keys)
1100 (build-image (string-append
1101 (assoc-ref %outputs "image")
1102 "/bin/slynk")
1103 %outputs
1104 #:dependencies '("slynk"
1105 "slynk/arglists"
1106 "slynk/fancy-inspector"
1107 "slynk/package-fu"
1108 "slynk/mrepl"
1109 "slynk/trace-dialog"
1110 "slynk/profiler"
1111 "slynk/stickers"
1112 "slynk/indentation"
1113 "slynk/retro"))
1114 #t)))))
1115 (synopsis "Common Lisp IDE for Emacs")
1116 (description "SLY is a fork of SLIME, an IDE backend for Common Lisp.
1117 It also features a completely redesigned REPL based on Emacs's own
1118 full-featured @code{comint-mode}, live code annotations, and a consistent interactive
1119 button interface. Everything can be copied to the REPL. One can create
1120 multiple inspectors with independent history.")
1121 (home-page "https://github.com/joaotavora/sly")
1122 (license license:public-domain)
1123 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
1124
1125 (define-public cl-slynk
1126 (sbcl-package->cl-source-package sbcl-slynk))
1127
1128 (define-public ecl-slynk
1129 (let ((pkg (sbcl-package->ecl-package sbcl-slynk)))
1130 (package
1131 (inherit pkg)
1132 (outputs '("out"))
1133 (arguments
1134 (substitute-keyword-arguments (package-arguments pkg)
1135 ((#:phases phases)
1136 `(modify-phases ,phases
1137 (delete 'build-image))))))))
1138
1139 (define-public sbcl-parse-js
1140 (let ((commit "fbadc6029bec7039602abfc06c73bb52970998f6")
1141 (revision "1"))
1142 (package
1143 (name "sbcl-parse-js")
1144 (version (string-append "0.0.0-" revision "." (string-take commit 9)))
1145 (source
1146 (origin
1147 (method git-fetch)
1148 (uri (git-reference
1149 (url "http://marijn.haverbeke.nl/git/parse-js")
1150 (commit commit)))
1151 (file-name (string-append name "-" commit "-checkout"))
1152 (sha256
1153 (base32
1154 "1wddrnr5kiya5s3gp4cdq6crbfy9fqcz7fr44p81502sj3bvdv39"))))
1155 (build-system asdf-build-system/sbcl)
1156 (home-page "https://marijnhaverbeke.nl/parse-js/")
1157 (synopsis "Parse JavaScript")
1158 (description "Parse-js is a Common Lisp package for parsing
1159 JavaScript (ECMAScript 3). It has basic support for ECMAScript 5.")
1160 (license license:zlib))))
1161
1162 (define-public cl-parse-js
1163 (sbcl-package->cl-source-package sbcl-parse-js))
1164
1165 (define-public ecl-parse-js
1166 (sbcl-package->ecl-package sbcl-parse-js))
1167
1168 (define-public sbcl-parse-number
1169 (package
1170 (name "sbcl-parse-number")
1171 (version "1.7")
1172 (source
1173 (origin
1174 (method git-fetch)
1175 (uri (git-reference
1176 (url "https://github.com/sharplispers/parse-number/")
1177 (commit (string-append "v" version))))
1178 (file-name (git-file-name name version))
1179 (sha256
1180 (base32
1181 "0sk06ib1bhqv9y39vwnnw44vmbc4b0kvqm37xxmkxd4dwchq82d7"))))
1182 (build-system asdf-build-system/sbcl)
1183 (home-page "https://www.cliki.net/PARSE-NUMBER")
1184 (synopsis "Parse numbers")
1185 (description "@code{parse-number} is a library of functions for parsing
1186 strings into one of the standard Common Lisp number types without using the
1187 reader. @code{parse-number} accepts an arbitrary string and attempts to parse
1188 the string into one of the standard Common Lisp number types, if possible, or
1189 else @code{parse-number} signals an error of type @code{invalid-number}.")
1190 (license license:bsd-3)))
1191
1192 (define-public cl-parse-number
1193 (sbcl-package->cl-source-package sbcl-parse-number))
1194
1195 (define-public ecl-parse-number
1196 (sbcl-package->ecl-package sbcl-parse-number))
1197
1198 (define-public sbcl-iterate
1199 (package
1200 (name "sbcl-iterate")
1201 (version "1.5")
1202 (source
1203 (origin
1204 (method url-fetch)
1205 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
1206 "iterate-" version ".tar.gz"))
1207 (sha256
1208 (base32
1209 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
1210 (build-system asdf-build-system/sbcl)
1211 (native-inputs
1212 `(("rt" ,sbcl-rt)))
1213 (home-page "https://common-lisp.net/project/iterate/")
1214 (synopsis "Iteration construct for Common Lisp")
1215 (description "@code{iterate} is an iteration construct for Common Lisp.
1216 It is similar to the @code{CL:LOOP} macro, with these distinguishing marks:
1217
1218 @itemize
1219 @item it is extensible,
1220 @item it helps editors like Emacs indent iterate forms by having a more
1221 lisp-like syntax, and
1222 @item it isn't part of the ANSI standard for Common Lisp.
1223 @end itemize\n")
1224 (license license:expat)))
1225
1226 (define-public cl-iterate
1227 (sbcl-package->cl-source-package sbcl-iterate))
1228
1229 (define-public ecl-iterate
1230 (sbcl-package->ecl-package sbcl-iterate))
1231
1232 (define-public sbcl-cl-uglify-js
1233 ;; There have been many bug fixes since the 2010 release.
1234 (let ((commit "429c5e1d844e2f96b44db8fccc92d6e8e28afdd5")
1235 (revision "1"))
1236 (package
1237 (name "sbcl-cl-uglify-js")
1238 (version (string-append "0.1-" revision "." (string-take commit 9)))
1239 (source
1240 (origin
1241 (method git-fetch)
1242 (uri (git-reference
1243 (url "https://github.com/mishoo/cl-uglify-js")
1244 (commit commit)))
1245 (file-name (git-file-name name version))
1246 (sha256
1247 (base32
1248 "0k39y3c93jgxpr7gwz7w0d8yknn1fdnxrjhd03057lvk5w8js27a"))))
1249 (build-system asdf-build-system/sbcl)
1250 (inputs
1251 `(("sbcl-parse-js" ,sbcl-parse-js)
1252 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
1253 ("sbcl-cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
1254 ("sbcl-parse-number" ,sbcl-parse-number)
1255 ("sbcl-iterate" ,sbcl-iterate)))
1256 (home-page "https://github.com/mishoo/cl-uglify-js")
1257 (synopsis "JavaScript compressor library for Common Lisp")
1258 (description "This is a Common Lisp version of UglifyJS, a JavaScript
1259 compressor. It works on data produced by @code{parse-js} to generate a
1260 @dfn{minified} version of the code. Currently it can:
1261
1262 @itemize
1263 @item reduce variable names (usually to single letters)
1264 @item join consecutive @code{var} statements
1265 @item resolve simple binary expressions
1266 @item group most consecutive statements using the @code{sequence} operator (comma)
1267 @item remove unnecessary blocks
1268 @item convert @code{IF} expressions in various ways that result in smaller code
1269 @item remove some unreachable code
1270 @end itemize\n")
1271 (license license:zlib))))
1272
1273 (define-public cl-uglify-js
1274 (sbcl-package->cl-source-package sbcl-cl-uglify-js))
1275
1276 (define-public ecl-cl-uglify-js
1277 (sbcl-package->ecl-package sbcl-cl-uglify-js))
1278
1279 (define-public uglify-js
1280 (package
1281 (inherit sbcl-cl-uglify-js)
1282 (name "uglify-js")
1283 (build-system trivial-build-system)
1284 (arguments
1285 `(#:modules ((guix build utils))
1286 #:builder
1287 (let* ((bin (string-append (assoc-ref %outputs "out") "/bin/"))
1288 (script (string-append bin "uglify-js")))
1289 (use-modules (guix build utils))
1290 (mkdir-p bin)
1291 (with-output-to-file script
1292 (lambda _
1293 (format #t "#!~a/bin/sbcl --script
1294
1295 (require :asdf)
1296 (asdf:initialize-source-registry
1297 #p\"~a/etc/common-lisp/source-registry.conf.d/\")
1298 (asdf:initialize-output-translations
1299 #p\"~a/etc/common-lisp/asdf-output-translations.conf.d/\")"
1300 (assoc-ref %build-inputs "sbcl")
1301 (assoc-ref %build-inputs "sbcl-cl-uglify-js")
1302 (assoc-ref %build-inputs "sbcl-cl-uglify-js"))
1303 ;; FIXME: cannot use progn here because otherwise it fails to
1304 ;; find cl-uglify-js.
1305 (for-each
1306 write
1307 '(;; Quiet, please!
1308 (let ((*standard-output* (make-broadcast-stream))
1309 (*error-output* (make-broadcast-stream)))
1310 (asdf:load-system :cl-uglify-js))
1311 (let ((file (cadr *posix-argv*)))
1312 (if file
1313 (format t "~a"
1314 (cl-uglify-js:ast-gen-code
1315 (cl-uglify-js:ast-mangle
1316 (cl-uglify-js:ast-squeeze
1317 (with-open-file (in file)
1318 (parse-js:parse-js in))))
1319 :beautify nil))
1320 (progn
1321 (format *error-output*
1322 "Please provide a JavaScript file.~%")
1323 (sb-ext:exit :code 1))))))))
1324 (chmod script #o755)
1325 #t)))
1326 (inputs
1327 `(("sbcl" ,sbcl)
1328 ("sbcl-cl-uglify-js" ,sbcl-cl-uglify-js)))
1329 (synopsis "JavaScript compressor")))
1330
1331 (define-public sbcl-cl-strings
1332 (let ((revision "1")
1333 (commit "c5c5cbafbf3e6181d03c354d66e41a4f063f00ae"))
1334 (package
1335 (name "sbcl-cl-strings")
1336 (version (git-version "0.0.0" revision commit))
1337 (source
1338 (origin
1339 (method git-fetch)
1340 (uri (git-reference
1341 (url "https://github.com/diogoalexandrefranco/cl-strings")
1342 (commit commit)))
1343 (sha256
1344 (base32
1345 "00754mfaqallj480lwd346nkfb6ra8pa8xcxcylf4baqn604zlmv"))
1346 (file-name (string-append "cl-strings-" version "-checkout"))))
1347 (build-system asdf-build-system/sbcl)
1348 (synopsis "Portable, dependency-free set of utilities to manipulate strings in Common Lisp")
1349 (description
1350 "@command{cl-strings} is a small, portable, dependency-free set of
1351 utilities that make it even easier to manipulate text in Common Lisp. It has
1352 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
1353 (home-page "https://github.com/diogoalexandrefranco/cl-strings")
1354 (license license:expat))))
1355
1356 (define-public cl-strings
1357 (sbcl-package->cl-source-package sbcl-cl-strings))
1358
1359 (define-public ecl-cl-strings
1360 (sbcl-package->ecl-package sbcl-cl-strings))
1361
1362 (define-public sbcl-trivial-features
1363 ;; No release since 2014.
1364 (let ((commit "870d03de0ed44067963350936856e17ee725153e"))
1365 (package
1366 (name "sbcl-trivial-features")
1367 (version (git-version "0.8" "1" commit))
1368 (source
1369 (origin
1370 (method git-fetch)
1371 (uri (git-reference
1372 (url "https://github.com/trivial-features/trivial-features")
1373 (commit commit)))
1374 (file-name (git-file-name "trivial-features" version))
1375 (sha256
1376 (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
1377 (build-system asdf-build-system/sbcl)
1378 (arguments
1379 '(#:asd-files '("trivial-features.asd")
1380 #:tests? #f))
1381 (home-page "https://cliki.net/trivial-features")
1382 (synopsis "Ensures consistency of @code{*FEATURES*} in Common Lisp")
1383 (description "Trivial-features ensures that @code{*FEATURES*} is
1384 consistent across multiple Common Lisp implementations.")
1385 (license license:expat))))
1386
1387 (define-public cl-trivial-features
1388 (sbcl-package->cl-source-package sbcl-trivial-features))
1389
1390 (define-public ecl-trivial-features
1391 (sbcl-package->ecl-package sbcl-trivial-features))
1392
1393 (define-public sbcl-hu.dwim.asdf
1394 (let ((commit "67cdf84390e530af4303cc4bc815fdf2a5e48f59"))
1395 (package
1396 (name "sbcl-hu.dwim.asdf")
1397 (version "20200724")
1398 (source
1399 (origin
1400 (method git-fetch)
1401 (uri (git-reference
1402 (url "https://github.com/hu-dwim/hu.dwim.asdf")
1403 (commit commit)))
1404 (file-name (git-file-name name version))
1405 (sha256
1406 (base32
1407 "0p81jalilkaqw832a12s35q0z6rrarxjasm1jy6h4fvyj9pf0zkx"))))
1408 (build-system asdf-build-system/sbcl)
1409 (home-page "https://hub.darcs.net/hu.dwim/hu.dwim.asdf")
1410 (synopsis "Extensions to ASDF")
1411 (description "Various ASDF extensions such as attached test and
1412 documentation system, explicit development support, etc.")
1413 (license license:public-domain))))
1414
1415 (define-public cl-hu.dwim.asdf
1416 (sbcl-package->cl-source-package sbcl-hu.dwim.asdf))
1417
1418 (define-public ecl-hu.dwim.asdf
1419 (sbcl-package->ecl-package sbcl-hu.dwim.asdf))
1420
1421 (define-public sbcl-hu.dwim.stefil
1422 (let ((commit "414902c6f575818c39a8a156b8b61b1adfa73dad"))
1423 (package
1424 (name "sbcl-hu.dwim.stefil")
1425 (version (git-version "0.0.0" "2" commit))
1426 (source
1427 (origin
1428 (method git-fetch)
1429 (uri
1430 (git-reference
1431 (url "https://github.com/hu-dwim/hu.dwim.stefil")
1432 (commit commit)))
1433 (sha256
1434 (base32 "14izmjjim590rh74swrssavdmdznj2z8vhqixy780sjhpcr5pmkc"))
1435 (file-name (git-file-name "hu.dwim.stefil" version))))
1436 (build-system asdf-build-system/sbcl)
1437 (native-inputs
1438 `(("asdf:cl-hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
1439 (inputs
1440 `(("sbcl-alexandria" ,sbcl-alexandria)))
1441 (home-page "http://dwim.hu/project/hu.dwim.stefil")
1442 (synopsis "Simple test framework")
1443 (description "Stefil is a simple test framework for Common Lisp,
1444 with a focus on interactive development.")
1445 (license license:public-domain))))
1446
1447 (define-public cl-hu.dwim.stefil
1448 (sbcl-package->cl-source-package sbcl-hu.dwim.stefil))
1449
1450 (define-public ecl-hu.dwim.stefil
1451 (sbcl-package->ecl-package sbcl-hu.dwim.stefil))
1452
1453 (define-public sbcl-babel
1454 ;; No release since 2014.
1455 (let ((commit "aeed2d1b76358db48e6b70a64399c05678a6b9ea"))
1456 (package
1457 (name "sbcl-babel")
1458 (version (git-version "0.5.0" "1" commit))
1459 (source
1460 (origin
1461 (method git-fetch)
1462 (uri (git-reference
1463 (url "https://github.com/cl-babel/babel")
1464 (commit commit)))
1465 (file-name (git-file-name "babel" version))
1466 (sha256
1467 (base32 "0lkvv4xdpv4cv1y2bqillmabx8sdb2y4l6pbinq6mjh33w2brpvb"))))
1468 (build-system asdf-build-system/sbcl)
1469 (native-inputs
1470 `(("tests:cl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
1471 (inputs
1472 `(("sbcl-alexandria" ,sbcl-alexandria)
1473 ("sbcl-trivial-features" ,sbcl-trivial-features)))
1474 (home-page "https://common-lisp.net/project/babel/")
1475 (synopsis "Charset encoding and decoding library")
1476 (description "Babel is a charset encoding and decoding library, not unlike
1477 GNU libiconv, but completely written in Common Lisp.")
1478 (license license:expat))))
1479
1480 (define-public cl-babel
1481 (sbcl-package->cl-source-package sbcl-babel))
1482
1483 (define-public ecl-babel
1484 (sbcl-package->ecl-package sbcl-babel))
1485
1486 (define-public sbcl-cl-yacc
1487 (package
1488 (name "sbcl-cl-yacc")
1489 (version "0.3")
1490 (source
1491 (origin
1492 (method git-fetch)
1493 (uri (git-reference
1494 (url "https://github.com/jech/cl-yacc")
1495 (commit (string-append "cl-yacc-" version))))
1496 (sha256
1497 (base32
1498 "16946pzf8vvadnyfayvj8rbh4zjzw90h0azz2qk1mxrvhh5wklib"))
1499 (file-name (string-append "cl-yacc-" version "-checkout"))))
1500 (build-system asdf-build-system/sbcl)
1501 (arguments
1502 `(#:asd-systems '("yacc")))
1503 (synopsis "LALR(1) parser generator for Common Lisp, similar in spirit to Yacc")
1504 (description
1505 "CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit
1506 to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1507
1508 CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1509 by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1510 to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).")
1511 (home-page "https://www.irif.fr/~jch//software/cl-yacc/")
1512 (license license:expat)))
1513
1514 (define-public cl-yacc
1515 (sbcl-package->cl-source-package sbcl-cl-yacc))
1516
1517 (define-public ecl-cl-yacc
1518 (sbcl-package->ecl-package sbcl-cl-yacc))
1519
1520 (define-public sbcl-eager-future2
1521 (let ((commit "54df8effd9d9eccac917509590286b5ac5f9cb30"))
1522 (package
1523 (name "sbcl-eager-future2")
1524 (version (git-version "0.0.0" "1" commit))
1525 (source
1526 (origin
1527 (method git-fetch)
1528 (uri (git-reference
1529 (url "https://gitlab.common-lisp.net/vsedach/eager-future2.git")
1530 (commit commit)))
1531 (file-name (git-file-name name version))
1532 (sha256
1533 (base32
1534 "1qs1bv3m0ki8l5czhsflxcryh22r9d9g9a3a3b0cr0pl954q5rld"))))
1535 (build-system asdf-build-system/sbcl)
1536 (inputs
1537 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
1538 ("trivial-garbage" ,sbcl-trivial-garbage)))
1539 (synopsis "Futures promises synchronization mechanism for Common Lisp")
1540 (description
1541 "Eager Future2 is a Common Lisp library that provides composable
1542 concurrency primitives that unify parallel and lazy evaluation, are integrated
1543 with the Common Lisp condition system, and have automatic resource
1544 management.")
1545 (home-page "https://gitlab.common-lisp.net/vsedach/eager-future2")
1546 (license license:lgpl3+))))
1547
1548 (define-public cl-eager-future2
1549 (sbcl-package->cl-source-package sbcl-eager-future2))
1550
1551 (define-public ecl-eager-future2
1552 (sbcl-package->ecl-package sbcl-eager-future2))
1553
1554 (define-public sbcl-jpl-util
1555 (let ((commit "0311ed374e19a49d43318064d729fe3abd9a3b62"))
1556 (package
1557 (name "sbcl-jpl-util")
1558 (version "20151005")
1559 (source
1560 (origin
1561 (method git-fetch)
1562 (uri (git-reference
1563 ;; Quicklisp uses this fork.
1564 (url "https://github.com/hawkir/cl-jpl-util")
1565 (commit commit)))
1566 (file-name
1567 (git-file-name "jpl-util" version))
1568 (sha256
1569 (base32
1570 "0nc0rk9n8grkg3045xsw34whmcmddn2sfrxki4268g7kpgz0d2yz"))))
1571 (build-system asdf-build-system/sbcl)
1572 (synopsis "Collection of Common Lisp utility functions and macros")
1573 (description
1574 "@command{cl-jpl-util} is a collection of Common Lisp utility functions
1575 and macros, primarily for software projects written in CL by the author.")
1576 (home-page "https://www.thoughtcrime.us/software/cl-jpl-util/")
1577 (license license:isc))))
1578
1579 (define-public cl-jpl-util
1580 (sbcl-package->cl-source-package sbcl-jpl-util))
1581
1582 (define-public ecl-jpl-util
1583 (sbcl-package->ecl-package sbcl-jpl-util))
1584
1585 (define-public sbcl-piping
1586 (let ((commit "c7a4163c00dea7e72bf6ad33d6abac0d5826a656")
1587 (revision "1"))
1588 (package
1589 (name "sbcl-piping")
1590 (version (git-version "2.0.0" revision commit))
1591 (source
1592 (origin
1593 (method git-fetch)
1594 (uri (git-reference
1595 (url "https://github.com/Shinmera/piping/")
1596 (commit commit)))
1597 (file-name (git-file-name "piping" version))
1598 (sha256
1599 (base32 "0in84qnfkynm36d4n4d6v87vprpi27xrydnga462wfhplji6klv5"))))
1600 (build-system asdf-build-system/sbcl)
1601 (home-page "https://shinmera.github.io/piping/")
1602 (synopsis "Library to enable simple message pipelines")
1603 (description
1604 "This is a Common Lisp library to enable simple message pipelines.")
1605 (license license:zlib))))
1606
1607 (define-public ecl-piping
1608 (sbcl-package->ecl-package sbcl-piping))
1609
1610 (define-public cl-piping
1611 (sbcl-package->cl-source-package sbcl-piping))
1612
1613 (define-public sbcl-cl-pcg
1614 (let ((commit "8263d85ab0ca17fb05637a4430c2d564456bce8f")
1615 (revision "1"))
1616 (package
1617 (name "sbcl-cl-pcg")
1618 (version (git-version "1.0.0" revision commit))
1619 (source
1620 (origin
1621 (method git-fetch)
1622 (uri (git-reference
1623 (url "https://github.com/sjl/cl-pcg")
1624 (commit commit)))
1625 (file-name (git-file-name "cl-pcg" version))
1626 (sha256
1627 (base32 "0s57wvvlvshp1gcp9i9d3qcmqhswnxps3i0y7wbb0v8i1a3p46m4"))))
1628 (build-system asdf-build-system/sbcl)
1629 (native-inputs
1630 `(("1am" ,sbcl-1am)))
1631 (home-page "https://github.com/sjl/cl-pcg")
1632 (synopsis "Permuted congruential generators in Common Lisp")
1633 (description
1634 "This is a bare-bones Permuted Congruential Generator implementation in
1635 pure Common Lisp.")
1636 (license license:expat))))
1637
1638 (define-public ecl-cl-pcg
1639 (sbcl-package->ecl-package sbcl-cl-pcg))
1640
1641 (define-public cl-pcg
1642 (sbcl-package->cl-source-package sbcl-cl-pcg))
1643
1644 (define-public sbcl-seedable-rng
1645 (let ((commit "aa1a1564b6e07e2698df37c7a98348c4f762cb15")
1646 (revision "1"))
1647 (package
1648 (name "sbcl-seedable-rng")
1649 (version (git-version "0.0.0" revision commit))
1650 (source
1651 (origin
1652 (method git-fetch)
1653 (uri (git-reference
1654 (url "https://git.mfiano.net/mfiano/seedable-rng")
1655 (commit commit)))
1656 (file-name (git-file-name "seedable-rng" version))
1657 (sha256
1658 (base32 "1ldpsbp3qrfzvknclsxj3sdyms1jf9ad20dvh4w0kw3zgahn2nr5"))))
1659 (build-system asdf-build-system/sbcl)
1660 (inputs
1661 `(("cl-pcg" ,sbcl-cl-pcg)
1662 ("golden-utils" ,sbcl-golden-utils)
1663 ("ironclad" ,sbcl-ironclad)))
1664 (home-page "https://git.mfiano.net/mfiano/seedable-rng")
1665 (synopsis "Common Lisp random number generator")
1666 (description
1667 "SEEDABLE-RNG provides a convenient means of generating random numbers
1668 that are seedable with deterministic results across hardware and Common Lisp
1669 implementations.")
1670 (license license:expat))))
1671
1672 (define-public ecl-seedable-rng
1673 (sbcl-package->ecl-package sbcl-seedable-rng))
1674
1675 (define-public cl-seedable-rng
1676 (sbcl-package->cl-source-package sbcl-seedable-rng))
1677
1678 (define-public sbcl-jpl-queues
1679 (package
1680 (name "sbcl-jpl-queues")
1681 (version "0.1")
1682 (source
1683 (origin
1684 (method url-fetch)
1685 (uri (string-append
1686 "http://www.thoughtcrime.us/software/jpl-queues/jpl-queues-"
1687 version
1688 ".tar.gz"))
1689 (sha256
1690 (base32
1691 "1wvvv7j117h9a42qaj1g4fh4mji28xqs7s60rn6d11gk9jl76h96"))))
1692 (build-system asdf-build-system/sbcl)
1693 (inputs
1694 `(("jpl-util" ,sbcl-jpl-util)
1695 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1696 (arguments
1697 ;; Tests seem to be broken.
1698 `(#:tests? #f))
1699 (synopsis "Common Lisp library implementing a few different kinds of queues")
1700 (description
1701 "A Common Lisp library implementing a few different kinds of queues:
1702
1703 @itemize
1704 @item Bounded and unbounded FIFO queues.
1705 @item Lossy bounded FIFO queues that drop elements when full.
1706 @item Unbounded random-order queues that use less memory than unbounded FIFO queues.
1707 @end itemize
1708
1709 Additionally, a synchronization wrapper is provided to make any queue
1710 conforming to the @command{jpl-queues} API thread-safe for lightweight
1711 multithreading applications. (See Calispel for a more sophisticated CL
1712 multithreaded message-passing library with timeouts and alternation among
1713 several blockable channels.)")
1714 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1715 (license license:isc)))
1716
1717 (define-public cl-jpl-queues
1718 (sbcl-package->cl-source-package sbcl-jpl-queues))
1719
1720 (define-public ecl-jpl-queues
1721 (sbcl-package->ecl-package sbcl-jpl-queues))
1722
1723 (define-public sbcl-calispel
1724 (let ((commit "e9f2f9c1af97f4d7bb4c8ac25fb2a8f3e8fada7a"))
1725 (package
1726 (name "sbcl-calispel")
1727 (version (git-version "0.1" "1" commit))
1728 (source
1729 (origin
1730 (method git-fetch)
1731 (uri (git-reference
1732 ;; This fork replaces the dependency on the obsolete
1733 ;; eager-future with eager-future2.
1734 (url "https://github.com/hawkir/calispel")
1735 (commit commit)))
1736 (file-name (git-file-name name version))
1737 (sha256
1738 (base32
1739 "08bmf3pi7n5hadpmqqkg65cxcj6kbvm997wcs1f53ml1nb79d9z8"))))
1740 (build-system asdf-build-system/sbcl)
1741 (inputs
1742 `(("jpl-queues" ,sbcl-jpl-queues)
1743 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
1744 (native-inputs
1745 `(("eager-future2" ,sbcl-eager-future2)))
1746 (synopsis "Thread-safe message-passing channels in Common Lisp")
1747 (description
1748 "Calispel is a Common Lisp library for thread-safe message-passing
1749 channels, in the style of the occam programming language, also known as
1750 communicating sequential processes (CSP). See
1751 @url{https://en.wikipedia.org/wiki/Communicating_sequential_processes}.
1752
1753 Calispel channels let one thread communicate with another, facilitating
1754 unidirectional communication of any Lisp object. Channels may be unbuffered,
1755 where a sender waits for a receiver (or vice versa) before either operation can
1756 continue, or channels may be buffered with flexible policy options.
1757
1758 Because sending and receiving on a channel may block, either operation can time
1759 out after a specified amount of time.
1760
1761 A syntax for alternation is provided (like @code{ALT} in occam, or Unix
1762 @code{select()}): given a sequence of operations, any or all of which may
1763 block, alternation selects the first operation that doesn't block and executes
1764 associated code. Alternation can also time out, executing an \"otherwise\"
1765 clause if no operation becomes available within a set amount of time.
1766
1767 Calispel is a message-passing library, and as such leaves the role of
1768 threading abstractions and utilities left to be filled by complementary
1769 libraries such as Bordeaux-Threads and Eager Future.")
1770 (home-page "https://www.thoughtcrime.us/software/jpl-queues/")
1771 (license license:isc))))
1772
1773 (define-public cl-calispel
1774 (sbcl-package->cl-source-package sbcl-calispel))
1775
1776 (define-public ecl-calispel
1777 (sbcl-package->ecl-package sbcl-calispel))
1778
1779 (define-public sbcl-eos
1780 (let ((commit "b4413bccc4d142cbe1bf49516c3a0a22c9d99243")
1781 (revision "2"))
1782 (package
1783 (name "sbcl-eos")
1784 (version (git-version "0.0.0" revision commit))
1785 (source
1786 (origin
1787 (method git-fetch)
1788 (uri (git-reference
1789 (url "https://github.com/adlai/Eos")
1790 (commit commit)))
1791 (sha256
1792 (base32 "1afllvmlnx97yzz404gycl3pa3kwx427k3hrbf37rpmjlv47knhk"))
1793 (file-name (git-file-name "eos" version))))
1794 (build-system asdf-build-system/sbcl)
1795 (synopsis "Unit Testing for Common Lisp")
1796 (description
1797 "Eos was a unit testing library for Common Lisp.
1798 It began as a fork of FiveAM; however, FiveAM development has continued, while
1799 that of Eos has not. Thus, Eos is now deprecated in favor of FiveAM.")
1800 (home-page "https://github.com/adlai/Eos")
1801 (license license:expat))))
1802
1803 (define-public cl-eos
1804 (sbcl-package->cl-source-package sbcl-eos))
1805
1806 (define-public ecl-eos
1807 (sbcl-package->ecl-package sbcl-eos))
1808
1809 (define-public sbcl-esrap
1810 (let ((commit "da6b24fb18bdb8e7e177bcf2820cdaf0b560deb6")
1811 (revision "1"))
1812 (package
1813 (name "sbcl-esrap")
1814 (version (git-version "0.18" revision commit))
1815 (source
1816 (origin
1817 (method git-fetch)
1818 (uri (git-reference
1819 (url "https://github.com/scymtym/esrap")
1820 (commit commit)))
1821 (sha256
1822 (base32 "12vf3bxwzf8icnf6rw1xalvm7493cfbb46r2vlhc09s59djkf39q"))
1823 (file-name (git-file-name "esrap" version))))
1824 (build-system asdf-build-system/sbcl)
1825 (native-inputs
1826 `(("fiveam" ,sbcl-fiveam)))
1827 (inputs
1828 `(("alexandria" ,sbcl-alexandria)))
1829 (synopsis "Common Lisp packrat parser")
1830 (description
1831 "This is a packrat parser for Common Lisp.
1832 In addition to regular Packrat / Parsing Grammar / TDPL features ESRAP supports:
1833
1834 @itemize
1835 @item dynamic redefinition of nonterminals
1836 @item inline grammars
1837 @item semantic predicates
1838 @item introspective facilities (describing grammars, tracing, setting breaks)
1839 @item left-recursive grammars
1840 @item functions as terminals
1841 @item accurate, customizable parse error reports
1842 @end itemize\n")
1843 (home-page "https://scymtym.github.io/esrap/")
1844 (license license:expat))))
1845
1846 (define-public cl-esrap
1847 (sbcl-package->cl-source-package sbcl-esrap))
1848
1849 (define-public ecl-esrap
1850 (sbcl-package->ecl-package sbcl-esrap))
1851
1852 (define-public sbcl-split-sequence
1853 (package
1854 (name "sbcl-split-sequence")
1855 (version "2.0.0")
1856 (source
1857 (origin
1858 (method git-fetch)
1859 (uri (git-reference
1860 (url "https://github.com/sharplispers/split-sequence")
1861 (commit (string-append "v" version))))
1862 (sha256
1863 (base32
1864 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
1865 (file-name (git-file-name "split-sequence" version))))
1866 (build-system asdf-build-system/sbcl)
1867 (native-inputs
1868 `(("fiveam" ,sbcl-fiveam)))
1869 (synopsis "Member of the Common Lisp Utilities family of programs")
1870 (description
1871 "Splits sequence into a list of subsequences delimited by objects
1872 satisfying the test.")
1873 (home-page "https://cliki.net/split-sequence")
1874 (license license:expat)))
1875
1876 (define-public cl-split-sequence
1877 (sbcl-package->cl-source-package sbcl-split-sequence))
1878
1879 (define-public ecl-split-sequence
1880 (sbcl-package->ecl-package sbcl-split-sequence))
1881
1882 (define-public sbcl-html-encode
1883 (package
1884 (name "sbcl-html-encode")
1885 (version "1.2")
1886 (source
1887 (origin
1888 (method url-fetch)
1889 (uri (string-append
1890 "http://beta.quicklisp.org/archive/html-encode/2010-10-06/html-encode-"
1891 version ".tgz"))
1892 (sha256
1893 (base32
1894 "06mf8wn95yf5swhmzk4vp0xr4ylfl33dgfknkabbkd8n6jns8gcf"))
1895 (file-name (string-append "colorize" version "-checkout"))))
1896 (build-system asdf-build-system/sbcl)
1897 (synopsis "Common Lisp library for encoding text in various web-savvy encodings")
1898 (description
1899 "A library for encoding text in various web-savvy encodings.")
1900 (home-page "http://quickdocs.org/html-encode/")
1901 (license license:expat)))
1902
1903 (define-public cl-html-encode
1904 (sbcl-package->cl-source-package sbcl-html-encode))
1905
1906 (define-public ecl-html-encode
1907 (sbcl-package->ecl-package sbcl-html-encode))
1908
1909 (define-public sbcl-colorize
1910 (let ((commit "ea676b584e0899cec82f21a9e6871172fe3c0eb5"))
1911 (package
1912 (name "sbcl-colorize")
1913 (version (git-version "0.0.0" "1" commit))
1914 (source
1915 (origin
1916 (method git-fetch)
1917 (uri (git-reference
1918 (url "https://github.com/kingcons/colorize")
1919 (commit commit)))
1920 (sha256
1921 (base32
1922 "1pdg4kiaczmr3ivffhirp7m3lbr1q27rn7dhaay0vwghmi31zcw9"))
1923 (file-name (git-file-name "colorize" version))))
1924 (build-system asdf-build-system/sbcl)
1925 (inputs
1926 `(("alexandria" ,sbcl-alexandria)
1927 ("split-sequence" ,sbcl-split-sequence)
1928 ("html-encode" ,sbcl-html-encode)))
1929 (synopsis "Common Lisp for syntax highlighting")
1930 (description
1931 "@command{colorize} is a Lisp library for syntax highlighting
1932 supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1933 C, C++, Java, Python, Erlang, Haskell, Objective-C, Diff, Webkit.")
1934 (home-page "https://github.com/kingcons/colorize")
1935 ;; TODO: Missing license?
1936 (license license:expat))))
1937
1938 (define-public cl-colorize
1939 (sbcl-package->cl-source-package sbcl-colorize))
1940
1941 (define-public ecl-colorize
1942 (sbcl-package->ecl-package sbcl-colorize))
1943
1944 (define-public sbcl-3bmd
1945 (let ((commit "6fc5759448f6f6df6f6df556e020a289a2643288")
1946 (revision "2"))
1947 (package
1948 (name "sbcl-3bmd")
1949 (version (git-version "0.0.0" revision commit))
1950 (source
1951 (origin
1952 (method git-fetch)
1953 (uri (git-reference
1954 (url "https://github.com/3b/3bmd")
1955 (commit commit)))
1956 (sha256
1957 (base32 "1avmbp8xdjlbqpqk7p3vmj7abiw5p3vb5mrxp4wlvgql4sf6z3p4"))
1958 (file-name (git-file-name "3bmd" version))))
1959 (build-system asdf-build-system/sbcl)
1960 (arguments
1961 ;; FIXME: #41437 - Build fails when package name starts from a digit
1962 `(#:asd-systems
1963 '("3bmd"
1964 "3bmd-ext-definition-lists"
1965 "3bmd-ext-math"
1966 "3bmd-ext-tables"
1967 "3bmd-ext-wiki-links"
1968 "3bmd-youtube"
1969 "3bmd-ext-code-blocks")))
1970 (inputs
1971 `(("alexandria" ,sbcl-alexandria)
1972 ("colorize" ,sbcl-colorize)
1973 ("esrap" ,sbcl-esrap)
1974 ("split-sequence" ,sbcl-split-sequence)))
1975 (home-page "https://github.com/3b/3bmd")
1976 (synopsis "Markdown processor in Command Lisp using esrap parser")
1977 (description
1978 "This is a Common Lisp Markdown to HTML converter, using @command{esrap}
1979 for parsing, and grammar based on @command{peg-markdown}.")
1980 (license license:expat))))
1981
1982 (define-public cl-3bmd
1983 (sbcl-package->cl-source-package sbcl-3bmd))
1984
1985 (define-public ecl-3bmd
1986 (sbcl-package->ecl-package sbcl-3bmd))
1987
1988 (define-public sbcl-cl-fad
1989 (package
1990 (name "sbcl-cl-fad")
1991 (version "0.7.6")
1992 (source
1993 (origin
1994 (method git-fetch)
1995 (uri (git-reference
1996 (url "https://github.com/edicl/cl-fad/")
1997 (commit (string-append "v" version))))
1998 (sha256
1999 (base32
2000 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
2001 (file-name (string-append "cl-fad" version "-checkout"))))
2002 (build-system asdf-build-system/sbcl)
2003 (inputs
2004 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
2005 (synopsis "Portable pathname library for Common Lisp")
2006 (description
2007 "CL-FAD (for \"Files and Directories\") is a thin layer atop Common
2008 Lisp's standard pathname functions. It is intended to provide some
2009 unification between current CL implementations on Windows, OS X, Linux, and
2010 Unix. Most of the code was written by Peter Seibel for his book Practical
2011 Common Lisp.")
2012 (home-page "https://edicl.github.io/cl-fad/")
2013 (license license:bsd-2)))
2014
2015 (define-public cl-fad
2016 (sbcl-package->cl-source-package sbcl-cl-fad))
2017
2018 (define-public ecl-cl-fad
2019 (sbcl-package->ecl-package sbcl-cl-fad))
2020
2021 (define-public sbcl-fn
2022 (let ((commit "8d8587d03a7b5e26b306fc90018e385d9e5acc2c")
2023 (revision "1"))
2024 (package
2025 (name "sbcl-fn")
2026 (version (git-version "0.0.0" revision commit))
2027 (source
2028 (origin
2029 (method git-fetch)
2030 (uri (git-reference
2031 (url "https://github.com/cbaggers/fn")
2032 (commit commit)))
2033 (file-name (git-file-name "fn" version))
2034 (sha256
2035 (base32 "0yyp9z6iwx476whz0n1rpjznjyqqhlylhzwpgg5xx92lxmskl752"))))
2036 (build-system asdf-build-system/sbcl)
2037 (inputs
2038 `(("named-readtables" ,sbcl-named-readtables)))
2039 (home-page "https://github.com/cbaggers/fn")
2040 (synopsis "Macros for lambda brevity")
2041 (description
2042 "This is a Common Lisp library providing lambda shorthand macros aiming
2043 to be used in cases where the word @emph{lambda} and the arguments are longer
2044 than the body of the lambda.")
2045 (license license:public-domain))))
2046
2047 (define-public ecl-fn
2048 (sbcl-package->ecl-package sbcl-fn))
2049
2050 (define-public cl-fn
2051 (sbcl-package->cl-source-package sbcl-fn))
2052
2053 (define-public sbcl-rt
2054 (let ((commit "a6a7503a0b47953bc7579c90f02a6dba1f6e4c5a")
2055 (revision "1"))
2056 (package
2057 (name "sbcl-rt")
2058 (version (git-version "1990.12.19" revision commit))
2059 (source
2060 (origin
2061 (method git-fetch)
2062 (uri (git-reference
2063 (url "http://git.kpe.io/rt.git")
2064 (commit commit)))
2065 (file-name (git-file-name name version))
2066 (sha256
2067 (base32 "13si2rrxaagbr0bkvg6sqicxxpyshabx6ad6byc9n2ik5ysna69b"))))
2068 (build-system asdf-build-system/sbcl)
2069 (synopsis "MIT Regression Tester")
2070 (description
2071 "RT provides a framework for writing regression test suites.")
2072 (home-page "https://www.cliki.net/rt")
2073 (license license:expat))))
2074
2075 (define-public cl-rt
2076 (sbcl-package->cl-source-package sbcl-rt))
2077
2078 (define-public ecl-rt
2079 (sbcl-package->ecl-package sbcl-rt))
2080
2081 (define-public sbcl-nibbles
2082 ;; No tagged release since 2018.
2083 (let ((commit "8e6b9b42d9f69000f55e5c45ad974d9e376ffdbd")
2084 (revision "1"))
2085 (package
2086 (name "sbcl-nibbles")
2087 (version (git-version "0.14" revision commit))
2088 (source
2089 (origin
2090 (method git-fetch)
2091 (uri (git-reference
2092 (url "https://github.com/sharplispers/nibbles/")
2093 (commit commit)))
2094 (sha256
2095 (base32 "15qlsm82h36pjgvfnbzdg60l21qxbaii4d049jc5y0dn56y93amb"))
2096 (file-name (git-file-name "nibbles" version))))
2097 (build-system asdf-build-system/sbcl)
2098 (native-inputs
2099 ;; Tests only.
2100 `(("rt" ,sbcl-rt)))
2101 (synopsis
2102 "Common Lisp library for accessing octet-addressed blocks of data")
2103 (description
2104 "When dealing with network protocols and file formats, it's common to
2105 have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
2106 flavors. Common Lisp sort of supports this by specifying :element-type for
2107 streams, but that facility is underspecified and there's nothing similar for
2108 read/write from octet vectors. What most people wind up doing is rolling their
2109 own small facility for their particular needs and calling it a day.
2110
2111 This library attempts to be comprehensive and centralize such
2112 facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
2113 vectors in signed or unsigned flavors are provided; these functions are also
2114 SETFable. Since it's sometimes desirable to read/write directly from streams,
2115 functions for doing so are also provided. On some implementations,
2116 reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
2117 also be supported.")
2118 (home-page "https://github.com/sharplispers/nibbles")
2119 (license license:bsd-3))))
2120
2121 (define-public cl-nibbles
2122 (sbcl-package->cl-source-package sbcl-nibbles))
2123
2124 (define-public ecl-nibbles
2125 (sbcl-package->ecl-package sbcl-nibbles))
2126
2127 (define-public sbcl-ironclad
2128 (package
2129 (name "sbcl-ironclad")
2130 (version "0.55")
2131 (source
2132 (origin
2133 (method git-fetch)
2134 (uri (git-reference
2135 (url "https://github.com/sharplispers/ironclad/")
2136 (commit (string-append "v" version))))
2137 (sha256
2138 (base32 "1w4slnc4143w1gcff1wxsivzb8kcji0bpd7y9rld3sabay0qprwl"))
2139 (file-name (git-file-name name version))))
2140 (build-system asdf-build-system/sbcl)
2141 (native-inputs
2142 ;; Tests only.
2143 `(("rt" ,sbcl-rt)))
2144 (inputs
2145 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2146 ("flexi-streams" ,sbcl-flexi-streams)))
2147 (synopsis "Cryptographic toolkit written in Common Lisp")
2148 (description
2149 "Ironclad is a cryptography library written entirely in Common Lisp.
2150 It includes support for several popular ciphers, digests, MACs and public key
2151 cryptography algorithms. For several implementations that support Gray
2152 streams, support is included for convenient stream wrappers.")
2153 (home-page "https://github.com/sharplispers/ironclad")
2154 (license license:bsd-3)))
2155
2156 (define-public cl-ironclad
2157 (sbcl-package->cl-source-package sbcl-ironclad))
2158
2159 (define-public ecl-ironclad
2160 (sbcl-package->ecl-package sbcl-ironclad))
2161
2162 (define-public sbcl-named-readtables
2163 (let ((commit "585a28eee8b1b1999279b48cb7e9731187e14b66")
2164 (revision "3"))
2165 (package
2166 (name "sbcl-named-readtables")
2167 (version (git-version "0.9" revision commit))
2168 (source
2169 (origin
2170 (method git-fetch)
2171 (uri (git-reference
2172 (url "https://github.com/melisgl/named-readtables")
2173 (commit commit)))
2174 (sha256
2175 (base32 "072p5djqq9pliw9r20rmpz5r5q5yn6rhbp98vkkp7gfcnp5ppj51"))
2176 (file-name (git-file-name "named-readtables" version))))
2177 (build-system asdf-build-system/sbcl)
2178 (home-page "https://github.com/melisgl/named-readtables/")
2179 (synopsis "Library that creates a namespace for named readtables")
2180 (description
2181 "Named readtables is a library that creates a namespace for named
2182 readtables, which is akin to package namespacing in Common Lisp.")
2183 (license license:bsd-3))))
2184
2185 (define-public cl-named-readtables
2186 (sbcl-package->cl-source-package sbcl-named-readtables))
2187
2188 (define-public ecl-named-readtables
2189 (sbcl-package->ecl-package sbcl-named-readtables))
2190
2191 (define-public sbcl-py-configparser
2192 ;; NOTE: (Sharlatan <2021-01-05 Tue> <19:52:19 UTC+0000>) Project updated last
2193 ;; time 8y ago, it looks like abandoned. VCS of the project:
2194 ;; https://svn.common-lisp.net/py-configparser/trunk
2195 (package
2196 (name "sbcl-py-configparser")
2197 (version "1.0.3")
2198 (source
2199 (origin
2200 (method url-fetch)
2201 (uri (string-append
2202 "https://common-lisp.net/project/py-configparser/releases/"
2203 "py-configparser-" version ".tar.gz"))
2204 (sha256
2205 (base32 "0i4rqz5cv7d7c2w81x5lwy05s6fbi3zikf4k5kpi3bkx3cabwdxj"))))
2206 (build-system asdf-build-system/sbcl)
2207 (inputs
2208 `(("parse-number" ,sbcl-parse-number)))
2209 (home-page "http://common-lisp.net/project/py-configparser/")
2210 (synopsis "ConfigParser Python module functionality for Common Lisp")
2211 (description "The py-configparser package implements the ConfigParser
2212 Python module functionality in Common Lisp. In short, it implements reading
2213 and writing of .INI-file style configuration files with sections containing
2214 key/value pairs of configuration options. In line with the functionalities in
2215 the python module, does this package implement basic interpolation of option
2216 values in other options.")
2217 (license license:expat)))
2218
2219 (define-public cl-py-configparser
2220 (sbcl-package->cl-source-package sbcl-py-configparser))
2221
2222 (define-public ecl-py-configparser
2223 (sbcl-package->ecl-package sbcl-py-configparser))
2224
2225 (define-public sbcl-pythonic-string-reader
2226 (let ((commit "47a70ba1e32362e03dad6ef8e6f36180b560f86a"))
2227 (package
2228 (name "sbcl-pythonic-string-reader")
2229 (version (git-version "0.0.0" "1" commit))
2230 (source
2231 (origin
2232 (method git-fetch)
2233 (uri (git-reference
2234 (url "https://github.com/smithzvk/pythonic-string-reader/")
2235 (commit commit)))
2236 (sha256
2237 (base32 "1b5iryqw8xsh36swckmz8rrngmc39k92si33fgy5pml3n9l5rq3j"))
2238 (file-name (git-file-name "pythonic-string-reader" version))))
2239 (build-system asdf-build-system/sbcl)
2240 (inputs
2241 `(("named-readtables" ,sbcl-named-readtables)))
2242 (home-page "https://github.com/smithzvk/pythonic-string-reader")
2243 (synopsis "Read table modification inspired by Python's three quote strings")
2244 (description "This piece of code sets up some reader macros that make it
2245 simpler to input string literals which contain backslashes and double quotes
2246 This is very useful for writing complicated docstrings and, as it turns out,
2247 writing code that contains string literals that contain code themselves.")
2248 (license license:bsd-3))))
2249
2250 (define-public cl-pythonic-string-reader
2251 (sbcl-package->cl-source-package sbcl-pythonic-string-reader))
2252
2253 (define-public ecl-pythonic-string-reader
2254 (sbcl-package->ecl-package sbcl-pythonic-string-reader))
2255
2256 (define-public sbcl-slime-swank
2257 (package
2258 (name "sbcl-slime-swank")
2259 (version "2.26")
2260 (source
2261 (origin
2262 (file-name (git-file-name "slime-swank" version))
2263 (method git-fetch)
2264 (uri (git-reference
2265 (url "https://github.com/slime/slime/")
2266 (commit (string-append "v" version))))
2267 (sha256
2268 (base32
2269 "0mxb1wnw19v0s72w2wkz5afdlzvpy5nn7pr4vav403qybac0sw5c"))))
2270 (build-system asdf-build-system/sbcl)
2271 (arguments
2272 '(#:asd-systems '("swank")))
2273 (home-page "https://github.com/slime/slime")
2274 (synopsis "Common Lisp Swank server")
2275 (description
2276 "This is only useful if you want to start a Swank server in a Lisp
2277 processes that doesn't run under Emacs. Lisp processes created by
2278 @command{M-x slime} automatically start the server.")
2279 (license (list license:gpl2+ license:public-domain))))
2280
2281 (define-public cl-slime-swank
2282 (sbcl-package->cl-source-package sbcl-slime-swank))
2283
2284 (define-public ecl-slime-swank
2285 (sbcl-package->ecl-package sbcl-slime-swank))
2286
2287 (define-public sbcl-mgl-pax
2288 (let ((commit "4ada6eb26364e71addb169ce58e4ba83bc7a8eaa")
2289 (revision "2"))
2290 (package
2291 (name "sbcl-mgl-pax")
2292 (version (git-version "0.0.3" revision commit))
2293 (source
2294 (origin
2295 (method git-fetch)
2296 (uri (git-reference
2297 (url "https://github.com/melisgl/mgl-pax")
2298 (commit commit)))
2299 (sha256
2300 (base32 "1s38crgvmd9hgqwsscqpj6m6c10a074zjgg8k5sl15yih1wkpssm"))
2301 (file-name (git-file-name "mgl-pax" version))))
2302 (build-system asdf-build-system/sbcl)
2303 (inputs
2304 `(("3bmd" ,sbcl-3bmd)
2305 ("babel" ,sbcl-babel)
2306 ("cl-fad" ,sbcl-cl-fad)
2307 ("ironclad" ,sbcl-ironclad)
2308 ("named-readtables" ,sbcl-named-readtables)
2309 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)
2310 ("swank" ,sbcl-slime-swank)))
2311 (synopsis "Exploratory programming environment and documentation generator")
2312 (description
2313 "PAX provides an extremely poor man's Explorable Programming
2314 environment. Narrative primarily lives in so called sections that mix markdown
2315 docstrings with references to functions, variables, etc, all of which should
2316 probably have their own docstrings.
2317
2318 The primary focus is on making code easily explorable by using SLIME's
2319 @command{M-.} (@command{slime-edit-definition}). See how to enable some
2320 fanciness in Emacs Integration. Generating documentation from sections and all
2321 the referenced items in Markdown or HTML format is also implemented.
2322
2323 With the simplistic tools provided, one may accomplish similar effects as with
2324 Literate Programming, but documentation is generated from code, not vice versa
2325 and there is no support for chunking yet. Code is first, code must look
2326 pretty, documentation is code.")
2327 (home-page "http://quotenil.com/")
2328 (license license:expat))))
2329
2330 (define-public cl-mgl-pax
2331 (sbcl-package->cl-source-package sbcl-mgl-pax))
2332
2333 (define-public ecl-mgl-pax
2334 (sbcl-package->ecl-package sbcl-mgl-pax))
2335
2336 (define-public sbcl-mssql
2337 (let ((commit "045602a19a32254108f2b75871049293f49731eb")
2338 (revision "1"))
2339 (package
2340 (name "sbcl-mssql")
2341 (version (git-version "0.0.3" revision commit))
2342 (source
2343 (origin
2344 (method git-fetch)
2345 (uri (git-reference
2346 (url "https://github.com/archimag/cl-mssql")
2347 (commit commit)))
2348 (file-name (git-file-name "cl-mssql" version))
2349 (sha256
2350 (base32 "09i50adppgc1ybm3ka9vbindhwa2x29f9n3n0jkrryymdhb8zknm"))))
2351 (build-system asdf-build-system/sbcl)
2352 (inputs
2353 `(("cffi" ,sbcl-cffi)
2354 ("freetds" ,freetds)
2355 ("garbage-pools" ,sbcl-garbage-pools)
2356 ("iterate" ,sbcl-iterate)
2357 ("parse-number" ,sbcl-parse-number)))
2358 (arguments
2359 `(#:phases
2360 (modify-phases %standard-phases
2361 (add-after 'unpack 'fix-paths
2362 (lambda* (#:key inputs #:allow-other-keys)
2363 (substitute* "src/mssql.lisp"
2364 (("libsybdb" all)
2365 (string-append (assoc-ref inputs "freetds") "/lib/" all)))
2366 #t)))))
2367 (home-page "https://github.com/archimag/cl-mssql")
2368 (synopsis "Common Lisp library to interact with MS SQL Server databases")
2369 (description
2370 "@code{cl-mssql} provides an interface to connect to Microsoft SQL
2371 server. It uses the @code{libsybdb} foreign library provided by the FreeTDS
2372 project.")
2373 (license license:llgpl))))
2374
2375 (define-public ecl-mssql
2376 (sbcl-package->ecl-package sbcl-mssql))
2377
2378 (define-public cl-mssql
2379 (sbcl-package->cl-source-package sbcl-mssql))
2380
2381 (define-public sbcl-lisp-unit
2382 (let ((commit "89653a232626b67400bf9a941f9b367da38d3815"))
2383 (package
2384 (name "sbcl-lisp-unit")
2385 (version (git-version "0.0.0" "1" commit))
2386 (source
2387 (origin
2388 (method git-fetch)
2389 (uri (git-reference
2390 (url "https://github.com/OdonataResearchLLC/lisp-unit")
2391 (commit commit)))
2392 (sha256
2393 (base32
2394 "0p6gdmgr7p383nvd66c9y9fp2bjk4jx1lpa5p09g43hr9y9pp9ry"))
2395 (file-name (git-file-name "lisp-unit" version))))
2396 (build-system asdf-build-system/sbcl)
2397 (synopsis "Common Lisp Test framework inspired by JUnit to be simple of use")
2398 (description
2399 "@command{lisp-unit} is a Common Lisp library that supports unit
2400 testing. It is an extension of the library written by Chris Riesbeck.")
2401 (home-page "https://github.com/OdonataResearchLLC/lisp-unit")
2402 (license license:expat))))
2403
2404 (define-public cl-lisp-unit
2405 (sbcl-package->cl-source-package sbcl-lisp-unit))
2406
2407 (define-public ecl-lisp-unit
2408 (sbcl-package->ecl-package sbcl-lisp-unit))
2409
2410 (define-public sbcl-anaphora
2411 (package
2412 (name "sbcl-anaphora")
2413 (version "0.9.6")
2414 (source
2415 (origin
2416 (method git-fetch)
2417 (uri (git-reference
2418 (url "https://github.com/tokenrove/anaphora")
2419 (commit version)))
2420 (sha256
2421 (base32
2422 "19wfrk3asimznkli0x2rfy637hwpdgqyvwj3vhq9x7vjvyf5vv6x"))
2423 (file-name (git-file-name "anaphora" version))))
2424 (build-system asdf-build-system/sbcl)
2425 (native-inputs
2426 `(("rt" ,sbcl-rt)))
2427 (synopsis "The anaphoric macro collection from Hell")
2428 (description
2429 "Anaphora is the anaphoric macro collection from Hell: it includes many
2430 new fiends in addition to old friends like @command{aif} and
2431 @command{awhen}.")
2432 (home-page "https://github.com/tokenrove/anaphora")
2433 (license license:public-domain)))
2434
2435 (define-public cl-anaphora
2436 (sbcl-package->cl-source-package sbcl-anaphora))
2437
2438 (define-public ecl-anaphora
2439 (sbcl-package->ecl-package sbcl-anaphora))
2440
2441 (define-public sbcl-lift
2442 (let ((commit "2594160d6ca3a77d8750110dfa63214256aab852")
2443 (revision "2"))
2444 (package
2445 (name "sbcl-lift")
2446 (version (git-version "1.7.1" revision commit))
2447 (source
2448 (origin
2449 (method git-fetch)
2450 (uri (git-reference
2451 (url "https://github.com/gwkkwg/lift")
2452 (commit commit)))
2453 (sha256
2454 (base32 "01xvz9sl5l5lai4h9dabmcjnm659wf5zllaxqbs55lffskp6jwq3"))
2455 (file-name (git-file-name "lift" version))
2456 (modules '((guix build utils)))
2457 (snippet
2458 ;; Don't keep the bundled website
2459 `(begin
2460 (delete-file-recursively "website")
2461 #t))))
2462 (build-system asdf-build-system/sbcl)
2463 (arguments
2464 ;; The tests require a debugger, but we run with the debugger disabled.
2465 '(#:tests? #f))
2466 (synopsis "LIsp Framework for Testing")
2467 (description
2468 "The LIsp Framework for Testing (LIFT) is a unit and system test tool for LISP.
2469 Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
2470 testcases are organized into hierarchical testsuites each of which can have
2471 its own fixture. When run, a testcase can succeed, fail, or error. LIFT
2472 supports randomized testing, benchmarking, profiling, and reporting.")
2473 (home-page "https://github.com/gwkkwg/lift")
2474 (license license:expat))))
2475
2476 (define-public cl-lift
2477 (sbcl-package->cl-source-package sbcl-lift))
2478
2479 (define-public ecl-lift
2480 (sbcl-package->ecl-package sbcl-lift))
2481
2482 (define-public sbcl-let-plus
2483 (let ((commit "5f14af61d501ecead02ec6b5a5c810efc0c9fdbb"))
2484 (package
2485 (name "sbcl-let-plus")
2486 (version (git-version "0.0.0" "1" commit))
2487 (source
2488 (origin
2489 (method git-fetch)
2490 (uri (git-reference
2491 (url "https://github.com/sharplispers/let-plus")
2492 (commit commit)))
2493 (sha256
2494 (base32
2495 "0i050ca2iys9f5mb7dgqgqdxfnc3b0rnjdwv95sqd490vkiwrsaj"))
2496 (file-name (git-file-name "let-plus" version))))
2497 (build-system asdf-build-system/sbcl)
2498 (inputs
2499 `(("alexandria" ,sbcl-alexandria)
2500 ("anaphora" ,sbcl-anaphora)))
2501 (native-inputs
2502 `(("lift" ,sbcl-lift)))
2503 (synopsis "Destructuring extension of let*")
2504 (description
2505 "This library implements the let+ macro, which is a dectructuring
2506 extension of let*. It features:
2507
2508 @itemize
2509 @item Clean, consistent syntax and small implementation (less than 300 LOC,
2510 not counting tests)
2511 @item Placeholder macros allow editor hints and syntax highlighting
2512 @item @command{&ign} for ignored values (in forms where that makes sense)
2513 @item Very easy to extend
2514 @end itemize\n")
2515 (home-page "https://github.com/sharplispers/let-plus")
2516 (license license:boost1.0))))
2517
2518 (define-public cl-let-plus
2519 (sbcl-package->cl-source-package sbcl-let-plus))
2520
2521 (define-public ecl-let-plus
2522 (sbcl-package->ecl-package sbcl-let-plus))
2523
2524 (define-public sbcl-cl-colors
2525 (let ((commit "827410584553f5c717eec6182343b7605f707f75"))
2526 (package
2527 (name "sbcl-cl-colors")
2528 (version (git-version "0.0.0" "1" commit))
2529 (source
2530 (origin
2531 (method git-fetch)
2532 (uri (git-reference
2533 (url "https://github.com/tpapp/cl-colors")
2534 (commit commit)))
2535 (sha256
2536 (base32
2537 "0l446lday4hybsm9bq3jli97fvv8jb1d33abg79vbylpwjmf3y9a"))
2538 (file-name (git-file-name "cl-colors" version))))
2539 (build-system asdf-build-system/sbcl)
2540 (inputs
2541 `(("alexandria" ,sbcl-alexandria)
2542 ("let-plus" ,sbcl-let-plus)))
2543 (synopsis "Simple color library for Common Lisp")
2544 (description
2545 "This is a very simple color library for Common Lisp, providing
2546
2547 @itemize
2548 @item Types for representing colors in HSV and RGB spaces.
2549 @item Simple conversion functions between the above types (and also
2550 hexadecimal representation for RGB).
2551 @item Some predefined colors (currently X11 color names – of course the
2552 library does not depend on X11).Because color in your terminal is nice.
2553 @end itemize
2554
2555 This library is no longer supported by its author.")
2556 (home-page "https://github.com/tpapp/cl-colors")
2557 (license license:boost1.0))))
2558
2559 (define-public cl-colors
2560 (sbcl-package->cl-source-package sbcl-cl-colors))
2561
2562 (define-public ecl-cl-colors
2563 (sbcl-package->ecl-package sbcl-cl-colors))
2564
2565 (define-public sbcl-cl-ansi-text
2566 (let ((commit "53badf7878f27f22f2d4a2a43e6df458e43acbe9"))
2567 (package
2568 (name "sbcl-cl-ansi-text")
2569 (version (git-version "1.0.0" "1" commit))
2570 (source
2571 (origin
2572 (method git-fetch)
2573 (uri (git-reference
2574 (url "https://github.com/pnathan/cl-ansi-text")
2575 (commit commit)))
2576 (sha256
2577 (base32
2578 "11i27n0dbz5lmygiw65zzr8lx0rac6b6yysqranphn31wls6ja3v"))
2579 (file-name (git-file-name "cl-ansi-text" version))))
2580 (build-system asdf-build-system/sbcl)
2581 (inputs
2582 `(("alexandria" ,sbcl-alexandria)
2583 ("cl-colors" ,sbcl-cl-colors)))
2584 (native-inputs
2585 `(("fiveam" ,sbcl-fiveam)))
2586 (synopsis "ANSI terminal color implementation for Common Lisp")
2587 (description
2588 "@command{cl-ansi-text} provides utilities which enable printing to an
2589 ANSI terminal with colored text. It provides the macro @command{with-color}
2590 which causes everything printed in the body to be displayed with the provided
2591 color. It further provides functions which will print the argument with the
2592 named color.")
2593 (home-page "https://github.com/pnathan/cl-ansi-text")
2594 (license license:llgpl))))
2595
2596 (define-public cl-ansi-text
2597 (sbcl-package->cl-source-package sbcl-cl-ansi-text))
2598
2599 (define-public ecl-cl-ansi-text
2600 (sbcl-package->ecl-package sbcl-cl-ansi-text))
2601
2602 (define-public sbcl-prove
2603 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2604 (package
2605 (name "sbcl-prove")
2606 (version (git-version "1.0.0" "1" commit))
2607 (source
2608 (origin
2609 (method git-fetch)
2610 (uri (git-reference
2611 (url "https://github.com/fukamachi/prove")
2612 (commit commit)))
2613 (sha256
2614 (base32
2615 "07sbfw459z8bbjvx1qlmfa8qk2mvbjnnzi2mi0x72blaj8bkl4vc"))
2616 (file-name (git-file-name "prove" version))))
2617 (build-system asdf-build-system/sbcl)
2618 (inputs
2619 `(("alexandria" ,sbcl-alexandria)
2620 ("cl-ppcre" ,sbcl-cl-ppcre)
2621 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2622 (synopsis "Yet another unit testing framework for Common Lisp")
2623 (description
2624 "This project was originally called @command{cl-test-more}.
2625 @command{prove} is yet another unit testing framework for Common Lisp. The
2626 advantages of @command{prove} are:
2627
2628 @itemize
2629 @item Various simple functions for testing and informative error messages
2630 @item ASDF integration
2631 @item Extensible test reporters
2632 @item Colorizes the report if it's available (note for SLIME)
2633 @item Reports test durations
2634 @end itemize\n")
2635 (home-page "https://github.com/fukamachi/prove")
2636 (license license:expat))))
2637
2638 (define-public cl-prove
2639 (sbcl-package->cl-source-package sbcl-prove))
2640
2641 (define-public ecl-prove
2642 (sbcl-package->ecl-package sbcl-prove))
2643
2644 (define-public sbcl-proc-parse
2645 (let ((commit "ac3636834d561bdc2686c956dbd82494537285fd"))
2646 (package
2647 (name "sbcl-proc-parse")
2648 (version (git-version "0.0.0" "1" commit))
2649 (source
2650 (origin
2651 (method git-fetch)
2652 (uri (git-reference
2653 (url "https://github.com/fukamachi/proc-parse")
2654 (commit commit)))
2655 (sha256
2656 (base32
2657 "06rnl0h4cx6xv2wj3jczmmcxqn2703inmmvg1s4npbghmijsybfh"))
2658 (file-name (git-file-name "proc-parse" version))))
2659 (build-system asdf-build-system/sbcl)
2660 (inputs
2661 `(("alexandria" ,sbcl-alexandria)
2662 ("babel" ,sbcl-babel)))
2663 (native-inputs
2664 `(("prove" ,sbcl-prove)))
2665 (arguments
2666 ;; TODO: Tests don't find "proc-parse-test", why?
2667 `(#:tests? #f))
2668 (synopsis "Procedural vector parser")
2669 (description
2670 "This is a string/octets parser library for Common Lisp with speed and
2671 readability in mind. Unlike other libraries, the code is not a
2672 pattern-matching-like, but a char-by-char procedural parser.")
2673 (home-page "https://github.com/fukamachi/proc-parse")
2674 (license license:bsd-2))))
2675
2676 (define-public cl-proc-parse
2677 (sbcl-package->cl-source-package sbcl-proc-parse))
2678
2679 (define-public ecl-proc-parse
2680 (sbcl-package->ecl-package sbcl-proc-parse))
2681
2682 (define-public sbcl-parse-float
2683 (let ((commit "3074765101e41222b6b624a66aaf1e6416379f9c")
2684 (revision "2"))
2685 (package
2686 (name "sbcl-parse-float")
2687 (version (git-version "0.0.0" revision commit))
2688 (source
2689 (origin
2690 (method git-fetch)
2691 (uri (git-reference
2692 (url "https://github.com/soemraws/parse-float")
2693 (commit commit)))
2694 (sha256
2695 (base32 "0jd2spawc3v8vzqf8ky4cngl45jm65fhkrdf20mf6dcbn3mzpkmr"))
2696 (file-name (git-file-name "proc-parse" version))))
2697 (build-system asdf-build-system/sbcl)
2698 (arguments
2699 ;; FIXME: https://github.com/soemraws/parse-float/issues/12
2700 `(#:asd-systems '("parse-float" "parse-float-tests")))
2701 (native-inputs
2702 `(("lisp-unit" ,sbcl-lisp-unit)))
2703 (inputs
2704 `(("alexandria" ,sbcl-alexandria)))
2705 (home-page "https://github.com/soemraws/parse-float")
2706 (synopsis "Parse a floating point value from a string in Common Lisp")
2707 (description
2708 "This package exports the following function to parse floating-point
2709 values from a string in Common Lisp.")
2710 (license license:public-domain))))
2711
2712 (define-public cl-parse-float
2713 (sbcl-package->cl-source-package sbcl-parse-float))
2714
2715 (define-public ecl-parse-float
2716 (sbcl-package->ecl-package sbcl-parse-float))
2717
2718 (define-public sbcl-cl-string-match
2719 (let ((revision "1")
2720 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2721 (package
2722 (name "sbcl-cl-string-match")
2723 (version (git-version "0" revision changeset))
2724 (source
2725 (origin
2726 (method hg-fetch)
2727 (uri (hg-reference
2728 (url "https://bitbucket.org/vityok/cl-string-match/")
2729 (changeset changeset)))
2730 (sha256
2731 (base32
2732 "01wn5qx562w43ssy92xlfgv79w7p0nv0wbl76mpmba131n9ziq2y"))
2733 (file-name (git-file-name "cl-string-match" version))))
2734 (build-system asdf-build-system/sbcl)
2735 (inputs
2736 `(("alexandria" ,sbcl-alexandria)
2737 ("babel" ,sbcl-babel)
2738 ("iterate" ,sbcl-iterate)
2739 ("jpl-queues" ,sbcl-jpl-queues)
2740 ("jpl-util" ,sbcl-jpl-util)
2741 ("mgl-pax" ,sbcl-mgl-pax)
2742 ("parse-float" ,sbcl-parse-float)
2743 ("proc-parse" ,sbcl-proc-parse)
2744 ("yacc" ,sbcl-cl-yacc)))
2745 ;; TODO: Tests are not evaluated properly.
2746 (native-inputs
2747 ;; For testing:
2748 `(("lisp-unit" ,sbcl-lisp-unit)))
2749 (arguments
2750 `(#:tests? #f))
2751 (synopsis "Set of utilities to manipulate strings in Common Lisp")
2752 (description
2753 "@command{cl-strings} is a small, portable, dependency-free set of
2754 utilities that make it even easier to manipulate text in Common Lisp. It has
2755 100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
2756 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2757 (license license:bsd-3))))
2758
2759 (define-public cl-string-match
2760 (sbcl-package->cl-source-package sbcl-cl-string-match))
2761
2762 (define-public ecl-cl-string-match
2763 (sbcl-package->ecl-package sbcl-cl-string-match))
2764
2765 (define-public sbcl-ptester
2766 (let ((commit "fe69fde54f4bce00ce577feb918796c293fc7253")
2767 (revision "1"))
2768 (package
2769 (name "sbcl-ptester")
2770 (version (git-version "2.1.3" revision commit))
2771 (source
2772 (origin
2773 (method git-fetch)
2774 (uri (git-reference
2775 (url "http://git.kpe.io/ptester.git")
2776 (commit commit)))
2777 (file-name (git-file-name name version))
2778 (sha256
2779 (base32 "1l0lfl7cdnr2qf4zh38hi4llxg22c49zkm639bdkmvlkzwj3ndwf"))))
2780 (build-system asdf-build-system/sbcl)
2781 (home-page "http://quickdocs.org/ptester/")
2782 (synopsis "Portable test harness package")
2783 (description
2784 "@command{ptester} is a portable testing framework based on Franz's
2785 tester module.")
2786 (license license:llgpl))))
2787
2788 (define-public cl-ptester
2789 (sbcl-package->cl-source-package sbcl-ptester))
2790
2791 (define-public ecl-ptester
2792 (sbcl-package->ecl-package sbcl-ptester))
2793
2794 (define-public sbcl-puri
2795 (let ((commit "4bbab89d9ccbb26346899d1f496c97604fec567b")
2796 (revision "2"))
2797 (package
2798 (name "sbcl-puri")
2799 (version (git-version "1.5.7" revision commit))
2800 (source
2801 (origin
2802 (method git-fetch)
2803 (uri (git-reference
2804 (url "http://git.kpe.io/puri.git")
2805 (commit commit)))
2806 (file-name (git-file-name "puri" version))
2807 (sha256
2808 (base32 "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd"))))
2809 (build-system asdf-build-system/sbcl)
2810 (native-inputs
2811 `(("ptester" ,sbcl-ptester)))
2812 (home-page "http://puri.kpe.io/")
2813 (synopsis "Portable URI Library")
2814 (description
2815 "This is a portable Universal Resource Identifier library for Common
2816 Lisp programs. It parses URI according to the RFC 2396 specification.")
2817 (license license:llgpl))))
2818
2819 (define-public cl-puri
2820 (sbcl-package->cl-source-package sbcl-puri))
2821
2822 (define-public ecl-puri
2823 (sbcl-package->ecl-package sbcl-puri))
2824
2825 (define-public sbcl-qmynd
2826 (let ((commit "7e56daf73f0ed5f49a931c01af75fb874bcf3445")
2827 (revision "1"))
2828 (package
2829 (name "sbcl-qmynd")
2830 (version (git-version "1.0.0" revision commit))
2831 (source
2832 (origin
2833 (method git-fetch)
2834 (uri (git-reference
2835 (url "https://github.com/qitab/qmynd")
2836 (commit commit)))
2837 (file-name (git-file-name name version))
2838 (sha256
2839 (base32
2840 "06gw5wxcpdclb6a5i5k9lbmdlyqsp182czrm9bm1cpklzbj0ihrl"))))
2841 (build-system asdf-build-system/sbcl)
2842 (inputs
2843 `(("asdf-finalizers" ,sbcl-asdf-finalizers)
2844 ("babel" ,sbcl-babel)
2845 ("chipz" ,sbcl-chipz)
2846 ("cl+ssl" ,sbcl-cl+ssl)
2847 ("flexi-streams" ,sbcl-flexi-streams)
2848 ("ironclad" ,sbcl-ironclad)
2849 ("salza2" ,sbcl-salza2)
2850 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
2851 ("usocket" ,sbcl-usocket)))
2852 (home-page "https://github.com/qitab/qmynd")
2853 (synopsis "QITAB MySQL Native Driver for Common Lisp")
2854 (description "QMyND, the QITAB MySQL Native Driver, is a MySQL client
2855 library that directly talks to a MySQL server in its native network protocol.
2856
2857 It's a part of QITAB umbrella project.")
2858 (license license:expat))))
2859
2860 (define-public ecl-qmynd
2861 (sbcl-package->ecl-package sbcl-qmynd))
2862
2863 (define-public cl-qmynd
2864 (sbcl-package->cl-source-package sbcl-qmynd))
2865
2866 (define-public sbcl-queues
2867 (let ((commit "47d4da65e9ea20953b74aeeab7e89a831b66bc94"))
2868 (package
2869 (name "sbcl-queues")
2870 (version (git-version "0.0.0" "1" commit))
2871 (source
2872 (origin
2873 (method git-fetch)
2874 (uri (git-reference
2875 (url "https://github.com/oconnore/queues")
2876 (commit commit)))
2877 (file-name (git-file-name "queues" version))
2878 (sha256
2879 (base32
2880 "0wdhfnzi4v6d97pggzj2aw55si94w4327br94jrmyvwf351wqjvv"))))
2881 (build-system asdf-build-system/sbcl)
2882 (inputs
2883 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
2884 (arguments
2885 '(#:asd-systems '("queues"
2886 "queues.simple-queue"
2887 "queues.simple-cqueue"
2888 "queues.priority-queue"
2889 "queues.priority-cqueue")))
2890 (home-page "https://github.com/oconnore/queues")
2891 (synopsis "Common Lisp queue library")
2892 (description
2893 "This is a simple queue library for Common Lisp with features such as
2894 non-consing thread safe queues and fibonacci priority queues.")
2895 (license license:expat))))
2896
2897 (define-public cl-queues
2898 (sbcl-package->cl-source-package sbcl-queues))
2899
2900 (define-public ecl-queues
2901 (sbcl-package->ecl-package sbcl-queues))
2902
2903 (define-public sbcl-glsl-packing
2904 (let ((commit "03628159468a8e5b7f2a1d5e78b77053e136794a")
2905 (revision "1"))
2906 (package
2907 (name "sbcl-glsl-packing")
2908 (version (git-version "0.0.0" revision commit))
2909 (source
2910 (origin
2911 (method git-fetch)
2912 (uri (git-reference
2913 (url "https://github.com/3b/glsl-packing/")
2914 (commit commit)))
2915 (file-name (git-file-name "glsl-packing" version))
2916 (sha256
2917 (base32 "0k2f1771wd9kdrcasldy1r00k5bdgi9fd07in52zmjggc0i7dd80"))))
2918 (build-system asdf-build-system/sbcl)
2919 (inputs
2920 `(("alexandria" ,sbcl-alexandria)))
2921 (home-page "https://github.com/3b/glsl-packing/")
2922 (synopsis "Common Lisp utilities to calculate OpenGL layouts")
2923 (description
2924 "This is a Common Lisp library to calculate std140 or std430 layouts for
2925 a glsl UBO/SSBO.")
2926 (license license:expat))))
2927
2928 (define-public ecl-glsl-packing
2929 (sbcl-package->ecl-package sbcl-glsl-packing))
2930
2931 (define-public cl-glsl-packing
2932 (sbcl-package->cl-source-package sbcl-glsl-packing))
2933
2934 (define-public sbcl-glsl-spec
2935 (let ((commit "f04476f7da89355ae6856b33283c60ba95c6555d")
2936 (revision "1"))
2937 (package
2938 (name "sbcl-glsl-spec")
2939 (version (git-version "0.0.0" revision commit))
2940 (source
2941 (origin
2942 (method git-fetch)
2943 (uri (git-reference
2944 (url "https://github.com/cbaggers/glsl-spec")
2945 (commit commit)))
2946 (file-name (git-file-name "glsl-spec" version))
2947 (sha256
2948 (base32 "01ipspr22fgfj3w8wq2y81lzrjc4vpfiwnr3dqhjlpzzra46am8c"))))
2949 (build-system asdf-build-system/sbcl)
2950 (arguments
2951 `(#:asd-systems '("glsl-spec" "glsl-symbols" "glsl-docs")))
2952 (home-page "https://github.com/cbaggers/glsl-spec")
2953 (synopsis "Common Lisp GLSL specification as a datastructure")
2954 (description
2955 "This package contains the specification of all functions and variables
2956 from GLSL as data.")
2957 (license license:unlicense))))
2958
2959 (define-public ecl-glsl-spec
2960 (sbcl-package->ecl-package sbcl-glsl-spec))
2961
2962 (define-public cl-glsl-spec
2963 (sbcl-package->cl-source-package sbcl-glsl-spec))
2964
2965 (define-public sbcl-rtg-math
2966 (let ((commit "29fc5b3d0028a4a11a82355ecc8cca62662c69e0")
2967 (revision "1"))
2968 (package
2969 (name "sbcl-rtg-math")
2970 (version (git-version "0.0.0" revision commit))
2971 (source
2972 (origin
2973 (method git-fetch)
2974 (uri (git-reference
2975 (url "https://github.com/cbaggers/rtg-math")
2976 (commit commit)))
2977 (file-name (git-file-name "rtg-math" version))
2978 (sha256
2979 (base32 "0bhxxnv7ldkkb18zdxyz2rj2a3iawzq2kcp7cn5i91iby7n0082x"))))
2980 (build-system asdf-build-system/sbcl)
2981 (inputs
2982 `(("alexandria" ,sbcl-alexandria)
2983 ("documentation-utils" ,sbcl-documentation-utils)
2984 ("glsl-symbols" ,sbcl-glsl-spec)))
2985 (home-page "https://github.com/cbaggers/rtg-math")
2986 (synopsis "Common Lisp library of game-related math functions")
2987 (description
2988 "RTG-MATH provides a selection of the math routines most commonly needed
2989 for making realtime graphics in Lisp.")
2990 (license license:bsd-2))))
2991
2992 (define-public ecl-rtg-math
2993 (sbcl-package->ecl-package sbcl-rtg-math))
2994
2995 (define-public cl-rtg-math
2996 (sbcl-package->cl-source-package sbcl-rtg-math))
2997
2998 (define-public sbcl-varjo
2999 (let ((commit "9e77f30220053155d2ef8870ceba157f75e538d4")
3000 (revision "1"))
3001 (package
3002 (name "sbcl-varjo")
3003 (version (git-version "0.0.0" revision commit))
3004 (source
3005 (origin
3006 (method git-fetch)
3007 (uri (git-reference
3008 (url "https://github.com/cbaggers/varjo")
3009 (commit commit)))
3010 (file-name (git-file-name "varjo" version))
3011 (sha256
3012 (base32 "1p9x1wj576x5d31yvls9r1avkjkyhri7kyxbjfkg9z93a1w18j9z"))))
3013 (build-system asdf-build-system/sbcl)
3014 (native-inputs
3015 `(("fiveam" ,sbcl-fiveam)))
3016 (inputs
3017 `(("alexandria" ,sbcl-alexandria)
3018 ("cl-ppcre" ,sbcl-cl-ppcre)
3019 ("documentation-utils" ,sbcl-documentation-utils)
3020 ("fn" ,sbcl-fn)
3021 ("glsl-spec" ,sbcl-glsl-spec)
3022 ("named-readtables" ,sbcl-named-readtables)
3023 ("parse-float" ,sbcl-parse-float)
3024 ("vas-string-metrics" ,sbcl-vas-string-metrics)))
3025 (home-page "https://github.com/cbaggers/varjo")
3026 (synopsis "Lisp to GLSL Language Translator")
3027 (description
3028 "Varjo is a Lisp to GLSL compiler. Vari is the dialect of lisp Varjo
3029 compiles. It aims to be as close to Common Lisp as possible, but naturally it
3030 is statically typed so there are differences.")
3031 (license license:bsd-2))))
3032
3033 (define-public ecl-varjo
3034 (sbcl-package->ecl-package sbcl-varjo))
3035
3036 (define-public cl-varjo
3037 (sbcl-package->cl-source-package sbcl-varjo))
3038
3039 (define-public sbcl-cffi
3040 (package
3041 (name "sbcl-cffi")
3042 (version "0.23.0")
3043 (source
3044 (origin
3045 (method git-fetch)
3046 (uri (git-reference
3047 (url "https://github.com/cffi/cffi")
3048 (commit (string-append "v" version))))
3049 (file-name (git-file-name "cffi-bootstrap" version))
3050 (sha256
3051 (base32 "03s98imc5niwnpj3hhrafl7dmxq45g74h96sm68976k7ahi3vl5b"))))
3052 (build-system asdf-build-system/sbcl)
3053 (inputs
3054 `(("alexandria" ,sbcl-alexandria)
3055 ("babel" ,sbcl-babel)
3056 ("libffi" ,libffi)
3057 ("trivial-features" ,sbcl-trivial-features)))
3058 (native-inputs
3059 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3060 ("pkg-config" ,pkg-config)
3061 ("rt" ,sbcl-rt)))
3062 (arguments
3063 '(#:phases
3064 (modify-phases %standard-phases
3065 (add-after 'unpack 'fix-arm-support
3066 (lambda _
3067 ;; This is apparently deprecated since libffi-3.3.
3068 (substitute* "libffi/libffi-types.lisp"
3069 (("\\\(\\\(:unix64.*") ")\n"))
3070 #t))
3071 (add-after 'unpack 'fix-paths
3072 (lambda* (#:key inputs #:allow-other-keys)
3073 (substitute* "libffi/libffi.lisp"
3074 (("libffi.so.7" all) (string-append
3075 (assoc-ref inputs "libffi")
3076 "/lib/" all)))
3077 (substitute* "toolchain/c-toolchain.lisp"
3078 (("\"cc\"") (format #f "~S" (which "gcc"))))))
3079 (add-after 'build 'install-headers
3080 (lambda* (#:key outputs #:allow-other-keys)
3081 (install-file "grovel/common.h"
3082 (string-append
3083 (assoc-ref outputs "out")
3084 "/include/grovel")))))
3085 #:asd-files '("cffi.asd"
3086 "cffi-toolchain.asd"
3087 "cffi-grovel.asd"
3088 "cffi-libffi.asd"
3089 "cffi-uffi-compat.asd")
3090 #:asd-systems '("cffi"
3091 "cffi-libffi"
3092 "cffi-uffi-compat")))
3093 (home-page "https://common-lisp.net/project/cffi/")
3094 (synopsis "Common Foreign Function Interface for Common Lisp")
3095 (description "The Common Foreign Function Interface (CFFI)
3096 purports to be a portable foreign function interface for Common Lisp.
3097 The CFFI library is composed of a Lisp-implementation-specific backend
3098 in the CFFI-SYS package, and a portable frontend in the CFFI
3099 package.")
3100 (license license:expat)))
3101
3102 (define-public cl-cffi
3103 (sbcl-package->cl-source-package sbcl-cffi))
3104
3105 (define-public ecl-cffi
3106 (sbcl-package->ecl-package sbcl-cffi))
3107
3108 (define-public sbcl-cffi-c-ref
3109 (let ((commit "8123cbb6034c5f7921a0766107cfb8c4e8efd5ce")
3110 (revision "0"))
3111 (package
3112 (name "sbcl-cffi-c-ref")
3113 (version (git-version "1.0" revision commit))
3114 (source
3115 (origin
3116 (method git-fetch)
3117 (uri (git-reference
3118 (url "https://github.com/borodust/cffi-c-ref")
3119 (commit commit)))
3120 (sha256
3121 (base32 "1a3pp6xcisabqir3rp1gvvjfdxcvpm8yr35p38nri9azsinmmc7z"))
3122 (file-name (git-file-name "cffi-c-ref" version))))
3123 (build-system asdf-build-system/sbcl)
3124 (inputs
3125 `(("alexandria" ,sbcl-alexandria)
3126 ("cffi" ,sbcl-cffi)))
3127 (synopsis "Streamlined access to foreign memory")
3128 (description
3129 "This Common Lisp library provides macros to access foreign memory.")
3130 (home-page "https://github.com/borodust/cffi-c-ref")
3131 (license license:expat))))
3132
3133 (define-public cl-cffi-c-ref
3134 (sbcl-package->cl-source-package sbcl-cffi-c-ref))
3135
3136 (define-public ecl-cffi-c-ref
3137 (sbcl-package->ecl-package sbcl-cffi-c-ref))
3138
3139 (define-public sbcl-cl-sqlite
3140 (package
3141 (name "sbcl-cl-sqlite")
3142 (version "0.2.1")
3143 (source
3144 (origin
3145 (method git-fetch)
3146 (uri (git-reference
3147 (url "https://github.com/dmitryvk/cl-sqlite")
3148 (commit version)))
3149 (file-name (git-file-name "cl-sqlite" version))
3150 (sha256
3151 (base32
3152 "08iv7b4m0hh7qx2cvq4f510nrgdld0vicnvmqsh9w0fgrcgmyg4k"))))
3153 (build-system asdf-build-system/sbcl)
3154 (inputs
3155 `(("iterate" ,sbcl-iterate)
3156 ("cffi" ,sbcl-cffi)
3157 ("sqlite" ,sqlite)))
3158 (native-inputs
3159 `(("fiveam" ,sbcl-fiveam)
3160 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
3161 (arguments
3162 `(#:asd-systems '("sqlite")
3163 #:phases
3164 (modify-phases %standard-phases
3165 (add-after 'unpack 'fix-paths
3166 (lambda* (#:key inputs #:allow-other-keys)
3167 (substitute* "sqlite-ffi.lisp"
3168 (("libsqlite3" all) (string-append
3169 (assoc-ref inputs "sqlite")"/lib/" all))))))))
3170 (home-page "https://common-lisp.net/project/cl-sqlite/")
3171 (synopsis "Common Lisp binding for SQLite")
3172 (description
3173 "The @command{cl-sqlite} package is an interface to the SQLite embedded
3174 relational database engine.")
3175 (license license:public-domain)))
3176
3177 (define-public cl-sqlite
3178 (sbcl-package->cl-source-package sbcl-cl-sqlite))
3179
3180 (define-public ecl-cl-sqlite
3181 (sbcl-package->ecl-package sbcl-cl-sqlite))
3182
3183 (define-public sbcl-parenscript
3184 ;; Source archives are overwritten on every release, we use the Git repo instead.
3185 (let ((commit "7a1ac46353cecd144fc91915ba9f122aafcf4766"))
3186 (package
3187 (name "sbcl-parenscript")
3188 (version (git-version "2.7.1" "1" commit))
3189 (source
3190 (origin
3191 (method git-fetch)
3192 (uri (git-reference
3193 (url "https://gitlab.common-lisp.net/parenscript/parenscript")
3194 (commit commit)))
3195 (file-name (git-file-name "parenscript" version))
3196 (sha256
3197 (base32
3198 "0c22lqarrpbq82dg1sb3y6mp6w2faczp34ymzhnmff88yfq1xzsf"))))
3199 (build-system asdf-build-system/sbcl)
3200 (inputs
3201 `(("cl-ppcre" ,sbcl-cl-ppcre)
3202 ("anaphora" ,sbcl-anaphora)
3203 ("named-readtables" ,sbcl-named-readtables)))
3204 (home-page "https://common-lisp.net/project/parenscript/")
3205 (synopsis "Translator from a subset of Common Lisp to JavaScript")
3206 (description
3207 "Parenscript is a translator from an extended subset of Common Lisp to
3208 JavaScript. Parenscript code can run almost identically on both the
3209 browser (as JavaScript) and server (as Common Lisp).
3210
3211 Parenscript code is treated the same way as Common Lisp code, making the full
3212 power of Lisp macros available for JavaScript. This provides a web
3213 development environment that is unmatched in its ability to reduce code
3214 duplication and provide advanced meta-programming facilities to web
3215 developers.
3216
3217 At the same time, Parenscript is different from almost all other \"language
3218 X\" to JavaScript translators in that it imposes almost no overhead:
3219
3220 @itemize
3221 @item No run-time dependencies: Any piece of Parenscript code is runnable
3222 as-is. There are no JavaScript files to include.
3223 @item Native types: Parenscript works entirely with native JavaScript data
3224 types. There are no new types introduced, and object prototypes are not
3225 touched.
3226 @item Native calling convention: Any JavaScript code can be called without the
3227 need for bindings. Likewise, Parenscript can be used to make efficient,
3228 self-contained JavaScript libraries.
3229 @item Readable code: Parenscript generates concise, formatted, idiomatic
3230 JavaScript code. Identifier names are preserved. This enables seamless
3231 debugging in tools like Firebug.
3232 @item Efficiency: Parenscript introduces minimal overhead for advanced Common
3233 Lisp features. The generated code is almost as fast as hand-written
3234 JavaScript.
3235 @end itemize\n")
3236 (license license:bsd-3))))
3237
3238 (define-public cl-parenscript
3239 (sbcl-package->cl-source-package sbcl-parenscript))
3240
3241 (define-public ecl-parenscript
3242 (sbcl-package->ecl-package sbcl-parenscript))
3243
3244 (define-public sbcl-cl-json
3245 (let ((commit "6dfebb9540bfc3cc33582d0c03c9ec27cb913e79"))
3246 (package
3247 (name "sbcl-cl-json")
3248 (version (git-version "0.5" "1" commit))
3249 (source
3250 (origin
3251 (method git-fetch)
3252 (uri (git-reference
3253 (url "https://github.com/hankhero/cl-json")
3254 (commit commit)))
3255 (file-name (git-file-name "cl-json" version))
3256 (sha256
3257 (base32
3258 "0fx3m3x3s5ji950yzpazz4s0img3l6b3d6l3jrfjv0lr702496lh"))))
3259 (build-system asdf-build-system/sbcl)
3260 (native-inputs
3261 `(("fiveam" ,sbcl-fiveam)))
3262 (home-page "https://github.com/hankhero/cl-json")
3263 (synopsis "JSON encoder and decoder for Common-Lisp")
3264 (description
3265 "@command{cl-json} provides an encoder of Lisp objects to JSON format
3266 and a corresponding decoder of JSON data to Lisp objects. Both the encoder
3267 and the decoder are highly customizable; at the same time, the default
3268 settings ensure a very simple mode of operation, similar to that provided by
3269 @command{yason} or @command{st-json}.")
3270 (license license:expat))))
3271
3272 (define-public cl-json
3273 (sbcl-package->cl-source-package sbcl-cl-json))
3274
3275 (define-public ecl-cl-json
3276 (sbcl-package->ecl-package sbcl-cl-json))
3277
3278 (define-public sbcl-unix-opts
3279 (package
3280 (name "sbcl-unix-opts")
3281 (version "0.1.7")
3282 (source
3283 (origin
3284 (method git-fetch)
3285 (uri (git-reference
3286 (url "https://github.com/libre-man/unix-opts")
3287 (commit version)))
3288 (file-name (git-file-name "unix-opts" version))
3289 (sha256
3290 (base32
3291 "08djdi1ard09fijb7w9bdmhmwd98b1hzmcnjw9fqjiqa0g3b44rr"))))
3292 (build-system asdf-build-system/sbcl)
3293 (home-page "https://github.com/hankhero/cl-json")
3294 (synopsis "Unix-style command line options parser")
3295 (description
3296 "This is a minimalistic parser of command line options. The main
3297 advantage of the library is the ability to concisely define command line
3298 options once and then use this definition for parsing and extraction of
3299 command line arguments, as well as printing description of command line
3300 options (you get --help for free). This way you don't need to repeat
3301 yourself. Also, @command{unix-opts} doesn't depend on anything and
3302 precisely controls the behavior of the parser via Common Lisp restarts.")
3303 (license license:expat)))
3304
3305 (define-public cl-unix-opts
3306 (sbcl-package->cl-source-package sbcl-unix-opts))
3307
3308 (define-public ecl-unix-opts
3309 (sbcl-package->ecl-package sbcl-unix-opts))
3310
3311 (define-public sbcl-trivial-garbage
3312 (package
3313 (name "sbcl-trivial-garbage")
3314 (version "0.21")
3315 (source
3316 (origin
3317 (method git-fetch)
3318 (uri (git-reference
3319 (url "https://github.com/trivial-garbage/trivial-garbage")
3320 (commit (string-append "v" version))))
3321 (file-name (git-file-name "trivial-garbage" version))
3322 (sha256
3323 (base32 "0122jicfg7pca1wxw8zak1n92h5friqy60988ns0ysksj3fphw9n"))))
3324 (build-system asdf-build-system/sbcl)
3325 (native-inputs
3326 `(("rt" ,sbcl-rt)))
3327 (home-page "https://common-lisp.net/project/trivial-garbage/")
3328 (synopsis "Portable GC-related APIs for Common Lisp")
3329 (description "@command{trivial-garbage} provides a portable API to
3330 finalizers, weak hash-tables and weak pointers on all major implementations of
3331 the Common Lisp programming language.")
3332 (license license:public-domain)))
3333
3334 (define-public cl-trivial-garbage
3335 (sbcl-package->cl-source-package sbcl-trivial-garbage))
3336
3337 (define-public ecl-trivial-garbage
3338 (sbcl-package->ecl-package sbcl-trivial-garbage))
3339
3340 (define-public sbcl-closer-mop
3341 (let ((commit "19c9d33f576e10715fd79cc1d4f688dab0f241d6"))
3342 (package
3343 (name "sbcl-closer-mop")
3344 (version (git-version "1.0.0" "2" commit))
3345 (source
3346 (origin
3347 (method git-fetch)
3348 (uri (git-reference
3349 (url "https://github.com/pcostanza/closer-mop")
3350 (commit commit)))
3351 (sha256
3352 (base32 "1w3x087wvlwkd6swfdgbvjfs6kazf0la8ax4pjfzikwjch4snn2c"))
3353 (file-name (git-file-name "closer-mop" version ))))
3354 (build-system asdf-build-system/sbcl)
3355 (home-page "https://github.com/pcostanza/closer-mop")
3356 (synopsis "Rectifies absent or incorrect CLOS MOP features")
3357 (description "Closer to MOP is a compatibility layer that rectifies many
3358 of the absent or incorrect CLOS MOP features across a broad range of Common
3359 Lisp implementations.")
3360 (license license:expat))))
3361
3362 (define-public cl-closer-mop
3363 (sbcl-package->cl-source-package sbcl-closer-mop))
3364
3365 (define-public ecl-closer-mop
3366 (sbcl-package->ecl-package sbcl-closer-mop))
3367
3368 (define-public sbcl-cl-cffi-gtk
3369 (let ((commit "e9a46df65995d9a16e6c8dbdc1e09b775eb4a966"))
3370 (package
3371 (name "sbcl-cl-cffi-gtk")
3372 (version (git-version "0.11.2" "2" commit))
3373 (source
3374 (origin
3375 (method git-fetch)
3376 (uri (git-reference
3377 (url "https://github.com/Ferada/cl-cffi-gtk/")
3378 (commit commit)))
3379 (file-name (git-file-name "cl-cffi-gtk" version))
3380 (sha256
3381 (base32
3382 "04vix0gmqsj91lm975sx7jhlnz5gq1xf9jp873mp7c8frc5dk1jj"))))
3383 (build-system asdf-build-system/sbcl)
3384 (native-inputs
3385 `(("fiveam" ,sbcl-fiveam)))
3386 (inputs
3387 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3388 ("cairo" ,cairo)
3389 ("cffi" ,sbcl-cffi)
3390 ("closer-mop" ,sbcl-closer-mop)
3391 ("gdk-pixbuf" ,gdk-pixbuf)
3392 ("glib" ,glib)
3393 ("gtk" ,gtk+)
3394 ("iterate" ,sbcl-iterate)
3395 ("pango" ,pango)
3396 ("trivial-features" ,sbcl-trivial-features)
3397 ("trivial-garbage" ,sbcl-trivial-garbage)))
3398 (arguments
3399 `(#:asd-files '("gtk/cl-cffi-gtk.asd"
3400 "glib/cl-cffi-gtk-glib.asd"
3401 "gobject/cl-cffi-gtk-gobject.asd"
3402 "gio/cl-cffi-gtk-gio.asd"
3403 "cairo/cl-cffi-gtk-cairo.asd"
3404 "pango/cl-cffi-gtk-pango.asd"
3405 "gdk-pixbuf/cl-cffi-gtk-gdk-pixbuf.asd"
3406 "gdk/cl-cffi-gtk-gdk.asd")
3407 #:test-asd-file "test/cl-cffi-gtk-test.asd"
3408 ;; TODO: Tests fail with memory fault.
3409 ;; See https://github.com/Ferada/cl-cffi-gtk/issues/24.
3410 #:tests? #f
3411 #:phases
3412 (modify-phases %standard-phases
3413 (add-after 'unpack 'fix-paths
3414 (lambda* (#:key inputs #:allow-other-keys)
3415 (substitute* "glib/glib.init.lisp"
3416 (("libglib|libgthread" all)
3417 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3418 (substitute* "gobject/gobject.init.lisp"
3419 (("libgobject" all)
3420 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3421 (substitute* "gio/gio.init.lisp"
3422 (("libgio" all)
3423 (string-append (assoc-ref inputs "glib") "/lib/" all)))
3424 (substitute* "cairo/cairo.init.lisp"
3425 (("libcairo" all)
3426 (string-append (assoc-ref inputs "cairo") "/lib/" all)))
3427 (substitute* "pango/pango.init.lisp"
3428 (("libpango" all)
3429 (string-append (assoc-ref inputs "pango") "/lib/" all)))
3430 (substitute* "gdk-pixbuf/gdk-pixbuf.init.lisp"
3431 (("libgdk_pixbuf" all)
3432 (string-append (assoc-ref inputs "gdk-pixbuf") "/lib/" all)))
3433 (substitute* "gdk/gdk.init.lisp"
3434 (("libgdk" all)
3435 (string-append (assoc-ref inputs "gtk") "/lib/" all)))
3436 (substitute* "gdk/gdk.package.lisp"
3437 (("libgtk" all)
3438 (string-append (assoc-ref inputs "gtk") "/lib/" all))))))))
3439 (home-page "https://github.com/Ferada/cl-cffi-gtk/")
3440 (synopsis "Common Lisp binding for GTK+3")
3441 (description
3442 "@command{cl-cffi-gtk} is a Lisp binding to GTK+ 3 (GIMP Toolkit) which
3443 is a library for creating graphical user interfaces.")
3444 (license license:lgpl3))))
3445
3446 (define-public cl-cffi-gtk
3447 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
3448
3449 (define-public ecl-cl-cffi-gtk
3450 (sbcl-package->ecl-package sbcl-cl-cffi-gtk))
3451
3452 (define-public sbcl-cl-webkit
3453 (let ((commit "db855639d4a13f6ba296959cf11635b6b67421bf"))
3454 (package
3455 (name "sbcl-cl-webkit")
3456 (version (git-version "2.4" "13" commit))
3457 (source
3458 (origin
3459 (method git-fetch)
3460 (uri (git-reference
3461 (url "https://github.com/joachifm/cl-webkit")
3462 (commit commit)))
3463 (file-name (git-file-name "cl-webkit" version))
3464 (sha256
3465 (base32
3466 "01alj5bfsh2983pwpdy0zpa2rvl4kl0mqzs08ff46is3cb8fqs0g"))))
3467 (build-system asdf-build-system/sbcl)
3468 (inputs
3469 `(("cffi" ,sbcl-cffi)
3470 ("cl-cffi-gtk" ,sbcl-cl-cffi-gtk)
3471 ("webkitgtk" ,webkitgtk)))
3472 (arguments
3473 `(#:asd-systems '("cl-webkit2")
3474 #:phases
3475 (modify-phases %standard-phases
3476 (add-after 'unpack 'fix-paths
3477 (lambda* (#:key inputs #:allow-other-keys)
3478 (substitute* "webkit2/webkit2.init.lisp"
3479 (("libwebkit2gtk" all)
3480 (string-append
3481 (assoc-ref inputs "webkitgtk") "/lib/" all))))))))
3482 (home-page "https://github.com/joachifm/cl-webkit")
3483 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3484 (description
3485 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3486 currently targeting WebKit version 2. The WebKitGTK+ library adds web
3487 browsing capabilities to an application, leveraging the full power of the
3488 WebKit browsing engine.")
3489 (license license:expat))))
3490
3491 (define-public cl-webkit
3492 (sbcl-package->cl-source-package sbcl-cl-webkit))
3493
3494 (define-public ecl-cl-webkit
3495 (sbcl-package->ecl-package sbcl-cl-webkit))
3496
3497 (define-public sbcl-lparallel
3498 (package
3499 (name "sbcl-lparallel")
3500 (version "2.8.4")
3501 (source
3502 (origin
3503 (method git-fetch)
3504 (uri (git-reference
3505 (url "https://github.com/lmj/lparallel/")
3506 (commit (string-append "lparallel-" version))))
3507 (file-name (git-file-name "lparallel" version))
3508 (sha256
3509 (base32
3510 "0g0aylrbbrqsz0ahmwhvnk4cmc2931fllbpcfgzsprwnqqd7vwq9"))))
3511 (build-system asdf-build-system/sbcl)
3512 (inputs
3513 `(("alexandria" ,sbcl-alexandria)
3514 ("bordeaux-threads" ,sbcl-bordeaux-threads)
3515 ("trivial-garbage" ,sbcl-trivial-garbage)))
3516 (arguments
3517 `(#:phases
3518 (modify-phases %standard-phases
3519 (add-after 'unpack 'fix-dependency
3520 ;; lparallel loads a SBCL specific system in its asd file. This is
3521 ;; not carried over into the fasl which is generated. In order for
3522 ;; it to be carried over, it needs to be listed as a dependency.
3523 (lambda _
3524 (substitute* "lparallel.asd"
3525 ((":depends-on \\(:alexandria" all)
3526 (string-append all " #+sbcl :sb-cltl2"))))))))
3527 (home-page "https://lparallel.org/")
3528 (synopsis "Parallelism for Common Lisp")
3529 (description
3530 "@command{lparallel} is a library for parallel programming in Common
3531 Lisp, featuring:
3532
3533 @itemize
3534 @item a simple model of task submission with receiving queue,
3535 @item constructs for expressing fine-grained parallelism,
3536 @item asynchronous condition handling across thread boundaries,
3537 @item parallel versions of map, reduce, sort, remove, and many others,
3538 @item promises, futures, and delayed evaluation constructs,
3539 @item computation trees for parallelizing interconnected tasks,
3540 @item bounded and unbounded FIFO queues,
3541 @item high and low priority tasks,
3542 @item task killing by category,
3543 @item integrated timeouts.
3544 @end itemize\n")
3545 (license license:expat)))
3546
3547 (define-public cl-lparallel
3548 (sbcl-package->cl-source-package sbcl-lparallel))
3549
3550 (define-public ecl-lparallel
3551 (package
3552 (inherit (sbcl-package->ecl-package sbcl-lparallel))
3553 (arguments
3554 ;; TODO: Find why the tests get stuck forever; disable them for now.
3555 `(#:tests? #f))))
3556
3557 (define-public sbcl-cl-markup
3558 (let ((commit "e0eb7debf4bdff98d1f49d0f811321a6a637b390"))
3559 (package
3560 (name "sbcl-cl-markup")
3561 (version (git-version "0.1" "1" commit))
3562 (source
3563 (origin
3564 (method git-fetch)
3565 (uri (git-reference
3566 (url "https://github.com/arielnetworks/cl-markup/")
3567 (commit commit)))
3568 (file-name (git-file-name "cl-markup" version))
3569 (sha256
3570 (base32
3571 "10l6k45971dl13fkdmva7zc6i453lmq9j4xax2ci6pjzlc6xjhp7"))))
3572 (build-system asdf-build-system/sbcl)
3573 (home-page "https://github.com/arielnetworks/cl-markup/")
3574 (synopsis "Markup generation library for Common Lisp")
3575 (description
3576 "A modern markup generation library for Common Lisp that features:
3577
3578 @itemize
3579 @item Fast (even faster through compiling the code)
3580 @item Safety
3581 @item Support for multiple document types (markup, xml, html, html5, xhtml)
3582 @item Output with doctype
3583 @item Direct output to stream
3584 @end itemize\n")
3585 (license license:lgpl3+))))
3586
3587 (define-public cl-markup
3588 (sbcl-package->cl-source-package sbcl-cl-markup))
3589
3590 (define-public ecl-cl-markup
3591 (sbcl-package->ecl-package sbcl-cl-markup))
3592
3593 (define-public sbcl-cl-mustache
3594 (package
3595 (name "sbcl-cl-mustache")
3596 (version "0.12.1")
3597 (source
3598 (origin
3599 (method git-fetch)
3600 (uri (git-reference
3601 (url "https://github.com/kanru/cl-mustache")
3602 (commit (string-append "v" version))))
3603 (file-name (git-file-name "cl-mustache" version))
3604 (sha256
3605 (base32 "149xbb6wxq1napliwm9cv729hwcgfnjli6y8hingfixz7f10lhks"))))
3606 (build-system asdf-build-system/sbcl)
3607 (home-page "https://github.com/kanru/cl-mustache")
3608 (synopsis "Common Lisp Mustache template renderer")
3609 (description "This is a Common Lisp implementation for the Mustache
3610 template system. More details on the standard are available at
3611 @url{https://mustache.github.io}.")
3612 (license license:expat)))
3613
3614 (define-public cl-mustache
3615 (sbcl-package->cl-source-package sbcl-cl-mustache))
3616
3617 (define-public ecl-cl-mustache
3618 (sbcl-package->ecl-package sbcl-cl-mustache))
3619
3620 (define-public sbcl-cl-css
3621 (let ((commit "8fe654c8f0cf95b300718101cce4feb517f78e2f"))
3622 (package
3623 (name "sbcl-cl-css")
3624 (version (git-version "0.1" "1" commit))
3625 (source
3626 (origin
3627 (method git-fetch)
3628 (uri (git-reference
3629 (url "https://github.com/inaimathi/cl-css/")
3630 (commit commit)))
3631 (file-name (git-file-name "cl-css" version))
3632 (sha256
3633 (base32
3634 "1lc42zi2sw11fl2589sc19nr5sd2p0wy7wgvgwaggxa5f3ajhsmd"))))
3635 (build-system asdf-build-system/sbcl)
3636 (home-page "https://github.com/inaimathi/cl-css/")
3637 (synopsis "Non-validating, inline CSS generator for Common Lisp")
3638 (description
3639 "This is a dead-simple, non validating, inline CSS generator for Common
3640 Lisp. Its goals are axiomatic syntax, simple implementation to support
3641 portability, and boilerplate reduction in CSS.")
3642 (license license:expat))))
3643
3644 (define-public cl-css
3645 (sbcl-package->cl-source-package sbcl-cl-css))
3646
3647 (define-public ecl-cl-css
3648 (sbcl-package->ecl-package sbcl-cl-css))
3649
3650 (define-public sbcl-portable-threads
3651 (let ((commit "aa26bf38338a6b068bf8bfb3375d8d8c3b0a28df"))
3652 (package
3653 (name "sbcl-portable-threads")
3654 (version (git-version "2.3" "2" commit))
3655 (source
3656 (origin
3657 (method git-fetch)
3658 (uri (git-reference
3659 (url "https://github.com/binghe/portable-threads/")
3660 (commit commit)))
3661 (file-name (git-file-name "portable-threads" version))
3662 (sha256
3663 (base32 "058ksi07vfdmhrf5mdlc833s82m1rcqfja2266520m3r8bzs8bvs"))))
3664 (build-system asdf-build-system/sbcl)
3665 (arguments
3666 `(;; Tests seem broken.
3667 #:tests? #f))
3668 (home-page "https://github.com/binghe/portable-threads")
3669 (synopsis "Portable threads API for Common Lisp")
3670 (description
3671 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3672 Lisp (from GBBopen project).")
3673 (license license:asl2.0))))
3674
3675 (define-public cl-portable-threads
3676 (sbcl-package->cl-source-package sbcl-portable-threads))
3677
3678 (define-public ecl-portable-threads
3679 (sbcl-package->ecl-package sbcl-portable-threads))
3680
3681 (define-public sbcl-usocket
3682 (package
3683 (name "sbcl-usocket")
3684 (version "0.8.3")
3685 (source
3686 (origin
3687 (method git-fetch)
3688 (uri (git-reference
3689 (url "https://github.com/usocket/usocket/")
3690 (commit (string-append "v" version))))
3691 (file-name (git-file-name "usocket" version))
3692 (sha256
3693 (base32
3694 "0x746wr2324l6bn7skqzgkzcbj5kd0zp2ck0c8rldrw0rzabg826"))))
3695 (build-system asdf-build-system/sbcl)
3696 (native-inputs
3697 `(("rt" ,sbcl-rt)))
3698 (inputs
3699 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3700 ("split-sequence" ,sbcl-split-sequence)))
3701 (arguments
3702 `(#:tests? #f ; FIXME: Tests need network access?
3703 #:asd-systems '("usocket"
3704 "usocket-server")))
3705 (home-page "https://common-lisp.net/project/usocket/")
3706 (synopsis "Universal socket library for Common Lisp")
3707 (description
3708 "This library strives to provide a portable TCP/IP and UDP/IP socket
3709 interface for as many Common Lisp implementations as possible, while keeping
3710 the abstraction and portability layer as thin as possible.")
3711 (license license:expat)))
3712
3713 (define-public cl-usocket
3714 (sbcl-package->cl-source-package sbcl-usocket))
3715
3716 (define-public ecl-usocket
3717 (sbcl-package->ecl-package sbcl-usocket))
3718
3719 (define-public sbcl-s-xml
3720 (package
3721 (name "sbcl-s-xml")
3722 (version "3")
3723 (source
3724 (origin
3725 (method url-fetch)
3726 (uri "https://common-lisp.net/project/s-xml/s-xml.tgz")
3727 (sha256
3728 (base32
3729 "061qcr0dzshsa38s5ma4ay924cwak2nq9gy59dw6v9p0qb58nzjf"))))
3730 (build-system asdf-build-system/sbcl)
3731 (home-page "https://common-lisp.net/project/s-xml/")
3732 (synopsis "Simple XML parser implemented in Common Lisp")
3733 (description
3734 "S-XML is a simple XML parser implemented in Common Lisp. This XML
3735 parser implementation has the following features:
3736
3737 @itemize
3738 @item It works (handling many common XML usages).
3739 @item It is very small (the core is about 700 lines of code, including
3740 comments and whitespace).
3741 @item It has a core API that is simple, efficient and pure functional, much
3742 like that from SSAX (see also http://ssax.sourceforge.net).
3743 @item It supports different DOM models: an XSML-based one, an LXML-based one
3744 and a classic xml-element struct based one.
3745 @item It is reasonably time and space efficient (internally avoiding garbage
3746 generatation as much as possible).
3747 @item It does support CDATA.
3748 @item It should support the same character sets as your Common Lisp
3749 implementation.
3750 @item It does support XML name spaces.
3751 @end itemize
3752
3753 This XML parser implementation has the following limitations:
3754
3755 @itemize
3756 @item It does not support any special tags (like processing instructions).
3757 @item It is not validating, even skips DTD's all together.
3758 @end itemize\n")
3759 (license license:lgpl3+)))
3760
3761 (define-public cl-s-xml
3762 (sbcl-package->cl-source-package sbcl-s-xml))
3763
3764 (define-public ecl-s-xml
3765 (sbcl-package->ecl-package sbcl-s-xml))
3766
3767 (define-public sbcl-s-xml-rpc
3768 (package
3769 (name "sbcl-s-xml-rpc")
3770 (version "7")
3771 (source
3772 (origin
3773 (method url-fetch)
3774 (uri "https://common-lisp.net/project/s-xml-rpc/s-xml-rpc.tgz")
3775 (sha256
3776 (base32
3777 "02z7k163d51v0pzk8mn1xb6h5s6x64gjqkslhwm3a5x26k2gfs11"))))
3778 (build-system asdf-build-system/sbcl)
3779 (inputs
3780 `(("s-xml" ,sbcl-s-xml)))
3781 (home-page "https://common-lisp.net/project/s-xml-rpc/")
3782 (synopsis "Implementation of XML-RPC in Common Lisp for both client and server")
3783 (description
3784 "S-XML-RPC is an implementation of XML-RPC in Common Lisp for both
3785 client and server.")
3786 (license license:lgpl3+)))
3787
3788 (define-public cl-s-xml-rpc
3789 (sbcl-package->cl-source-package sbcl-s-xml-rpc))
3790
3791 (define-public ecl-s-xml-rpc
3792 (sbcl-package->ecl-package sbcl-s-xml-rpc))
3793
3794 (define-public sbcl-trivial-arguments
3795 (let ((commit "ecd84ed9cf9ef8f1e873d7409e6bd04979372aa7")
3796 (revision "1"))
3797 (package
3798 (name "sbcl-trivial-arguments")
3799 (version (git-version "1.1.0" revision commit))
3800 (source
3801 (origin
3802 (method git-fetch)
3803 (uri (git-reference
3804 (url "https://github.com/Shinmera/trivial-arguments")
3805 (commit commit)))
3806 (file-name (git-file-name "trivial-arguments" version))
3807 (sha256
3808 (base32 "02vaqfavhj8jqxnr68nnzvzshm8jbgcy6m9lvyv4daa6f7ihqf88"))))
3809 (build-system asdf-build-system/sbcl)
3810 (home-page "https://github.com/Shinmera/trivial-arguments")
3811 (synopsis "Common Lisp library to retrieve a function's lambda-list")
3812 (description
3813 "This is a simple library to retrieve the argument list of a function.")
3814 (license license:zlib))))
3815
3816 (define-public ecl-trivial-arguments
3817 (sbcl-package->ecl-package sbcl-trivial-arguments))
3818
3819 (define-public cl-trivial-arguments
3820 (sbcl-package->cl-source-package sbcl-trivial-arguments))
3821
3822 (define-public sbcl-trivial-clipboard
3823 (let ((commit "8a580cb97196be7cf096548eb1f46794cd22bb39"))
3824 (package
3825 (name "sbcl-trivial-clipboard")
3826 (version (git-version "0.0.0.0" "4" commit))
3827 (source
3828 (origin
3829 (method git-fetch)
3830 (uri (git-reference
3831 (url "https://github.com/snmsts/trivial-clipboard")
3832 (commit commit)))
3833 (file-name (git-file-name "trivial-clipboard" version))
3834 (sha256
3835 (base32
3836 "0apkgqrscylw3hhm5x2vs0z3hz6h7zd7dl5y3wr2zl8qjpvpc80k"))))
3837 (build-system asdf-build-system/sbcl)
3838 (inputs
3839 `(("xclip" ,xclip)))
3840 (native-inputs
3841 `(("fiveam" ,sbcl-fiveam)))
3842 (arguments
3843 `(#:phases
3844 (modify-phases %standard-phases
3845 (add-after 'unpack 'fix-paths
3846 (lambda* (#:key inputs #:allow-other-keys)
3847 (substitute* "src/text.lisp"
3848 (("\"xclip\"")
3849 (string-append "\"" (assoc-ref inputs "xclip") "/bin/xclip\""))))))))
3850 (home-page "https://github.com/snmsts/trivial-clipboard")
3851 (synopsis "Access system clipboard in Common Lisp")
3852 (description
3853 "@command{trivial-clipboard} gives access to the system clipboard.")
3854 (license license:expat))))
3855
3856 (define-public cl-trivial-clipboard
3857 (sbcl-package->cl-source-package sbcl-trivial-clipboard))
3858
3859 (define-public ecl-trivial-clipboard
3860 (sbcl-package->ecl-package sbcl-trivial-clipboard))
3861
3862 (define-public sbcl-trivial-backtrace
3863 (let ((commit "ca81c011b86424a381a7563cea3b924f24e6fbeb")
3864 (revision "1"))
3865 (package
3866 (name "sbcl-trivial-backtrace")
3867 (version (git-version "0.0.0" revision commit))
3868 (source
3869 (origin
3870 (method git-fetch)
3871 (uri (git-reference
3872 (url "https://github.com/gwkkwg/trivial-backtrace")
3873 (commit commit)))
3874 (file-name (git-file-name "trivial-backtrace" version))
3875 (sha256
3876 (base32 "10p41p43skj6cimdg8skjy7372s8v2xpkg8djjy0l8rm45i654k1"))))
3877 (build-system asdf-build-system/sbcl)
3878 (inputs
3879 `(("sbcl-lift" ,sbcl-lift)))
3880 (arguments
3881 `(#:phases
3882 (modify-phases %standard-phases
3883 (add-after 'check 'delete-test-results
3884 (lambda* (#:key outputs #:allow-other-keys)
3885 (let ((test-results (string-append (assoc-ref outputs "out")
3886 "/share/common-lisp/"
3887 (%lisp-type)
3888 "/trivial-backtrace"
3889 "/test-results")))
3890 (when (file-exists? test-results)
3891 (delete-file-recursively test-results)))
3892 #t)))))
3893 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3894 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3895 (description
3896 "One of the many things that didn't quite get into the Common Lisp
3897 standard was how to get a Lisp to output its call stack when something has
3898 gone wrong. As such, each Lisp has developed its own notion of what to
3899 display, how to display it, and what sort of arguments can be used to
3900 customize it. @code{trivial-backtrace} is a simple solution to generating a
3901 backtrace portably.")
3902 (license license:expat))))
3903
3904 (define-public cl-trivial-backtrace
3905 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3906
3907 (define-public ecl-trivial-backtrace
3908 (sbcl-package->ecl-package sbcl-trivial-backtrace))
3909
3910 (define-public sbcl-rfc2388
3911 (let ((commit "591bcf7e77f2c222c43953a80f8c297751dc0c4e")
3912 (revision "1"))
3913 (package
3914 (name "sbcl-rfc2388")
3915 (version (git-version "0.0.0" revision commit))
3916 (source
3917 (origin
3918 (method git-fetch)
3919 (uri (git-reference
3920 (url "https://github.com/jdz/rfc2388")
3921 (commit commit)))
3922 (file-name (git-file-name "rfc2388" version))
3923 (sha256
3924 (base32 "0phh5n3clhl9ji8jaxrajidn22d3f0aq87mlbfkkxlnx2pnw694k"))))
3925 (build-system asdf-build-system/sbcl)
3926 (home-page "https://github.com/jdz/rfc2388/")
3927 (synopsis "An implementation of RFC 2388 in Common Lisp")
3928 (description
3929 "This package contains an implementation of RFC 2388, which is used to
3930 process form data posted with HTTP POST method using enctype
3931 \"multipart/form-data\".")
3932 (license license:bsd-2))))
3933
3934 (define-public cl-rfc2388
3935 (sbcl-package->cl-source-package sbcl-rfc2388))
3936
3937 (define-public ecl-rfc2388
3938 (sbcl-package->ecl-package sbcl-rfc2388))
3939
3940 (define-public sbcl-md5
3941 (package
3942 (name "sbcl-md5")
3943 (version "2.0.4")
3944 (source
3945 (origin
3946 (method git-fetch)
3947 (uri (git-reference
3948 (url "https://github.com/pmai/md5")
3949 (commit (string-append "release-" version))))
3950 (file-name (git-file-name "md5" version))
3951 (sha256
3952 (base32 "1waqxzm7vlc22n92hv8r27anlvvjkkh9slhrky1ww7mdx4mmxwb8"))))
3953 (build-system asdf-build-system/sbcl)
3954 (home-page "https://github.com/pmai/md5")
3955 (synopsis
3956 "Common Lisp implementation of the MD5 Message-Digest Algorithm (RFC 1321)")
3957 (description
3958 "This package implements The MD5 Message-Digest Algorithm, as defined in
3959 RFC 1321 by R. Rivest, published April 1992.")
3960 (license license:public-domain)))
3961
3962 (define-public cl-md5
3963 (sbcl-package->cl-source-package sbcl-md5))
3964
3965 (define-public ecl-md5
3966 (package
3967 (inherit (sbcl-package->ecl-package sbcl-md5))
3968 (inputs
3969 `(("flexi-streams" ,ecl-flexi-streams)))))
3970
3971 (define-public sbcl-cl+ssl
3972 (let ((commit "701e645081e6533a3f0f0b3ac86389d6f506c4b5")
3973 (revision "1"))
3974 (package
3975 (name "sbcl-cl+ssl")
3976 (version (git-version "0.0.0" revision commit))
3977 (source
3978 (origin
3979 (method git-fetch)
3980 (uri (git-reference
3981 (url "https://github.com/cl-plus-ssl/cl-plus-ssl")
3982 (commit commit)))
3983 (file-name (git-file-name "cl+ssl" version))
3984 (sha256
3985 (base32 "0nfl275nwhff3m25872y388cydz14kqb6zbwywa6nj85r9k8bgs0"))))
3986 (build-system asdf-build-system/sbcl)
3987 (arguments
3988 '(#:phases
3989 (modify-phases %standard-phases
3990 (add-after 'unpack 'fix-paths
3991 (lambda* (#:key inputs #:allow-other-keys)
3992 (substitute* "src/reload.lisp"
3993 (("libssl.so" all)
3994 (string-append
3995 (assoc-ref inputs "openssl") "/lib/" all))))))))
3996 (inputs
3997 `(("openssl" ,openssl)
3998 ("sbcl-cffi" ,sbcl-cffi)
3999 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4000 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
4001 ("sbcl-bordeaux-threads" ,sbcl-bordeaux-threads)
4002 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)
4003 ("sbcl-alexandria" ,sbcl-alexandria)
4004 ("sbcl-trivial-features" ,sbcl-trivial-features)))
4005 (home-page "https://common-lisp.net/project/cl-plus-ssl/")
4006 (synopsis "Common Lisp bindings to OpenSSL")
4007 (description
4008 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
4009 code was written by Eric Marsden and includes contributions by Jochen Schmidt.
4010 Development into CL+SSL was done by David Lichteblau.")
4011 (license license:expat))))
4012
4013 (define-public cl-cl+ssl
4014 (sbcl-package->cl-source-package sbcl-cl+ssl))
4015
4016 (define-public ecl-cl+ssl
4017 (sbcl-package->ecl-package sbcl-cl+ssl))
4018
4019 (define-public sbcl-kmrcl
4020 (let ((version "1.111")
4021 (commit "4a27407aad9deb607ffb8847630cde3d041ea25a")
4022 (revision "1"))
4023 (package
4024 (name "sbcl-kmrcl")
4025 (version (git-version version revision commit))
4026 (source
4027 (origin
4028 (method git-fetch)
4029 (uri (git-reference
4030 (url "http://git.kpe.io/kmrcl.git/")
4031 (commit commit)))
4032 (file-name (git-file-name name version))
4033 (sha256
4034 (base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))))
4035 (build-system asdf-build-system/sbcl)
4036 (inputs
4037 `(("sbcl-rt" ,sbcl-rt)))
4038 (home-page "http://files.kpe.io/kmrcl/")
4039 (synopsis "General utilities for Common Lisp programs")
4040 (description
4041 "KMRCL is a collection of utilities used by a number of Kevin
4042 Rosenberg's Common Lisp packages.")
4043 (license license:llgpl))))
4044
4045 (define-public cl-kmrcl
4046 (sbcl-package->cl-source-package sbcl-kmrcl))
4047
4048 (define-public ecl-kmrcl
4049 (sbcl-package->ecl-package sbcl-kmrcl))
4050
4051 (define-public sbcl-cl-base64
4052 ;; 3.3.4 tests are broken, upstream fixes them.
4053 (let ((commit "577683b18fd880b82274d99fc96a18a710e3987a"))
4054 (package
4055 (name "sbcl-cl-base64")
4056 (version (git-version "3.3.4" "1" commit))
4057 (source
4058 (origin
4059 (method git-fetch)
4060 (uri (git-reference
4061 (url "http://git.kpe.io/cl-base64.git/")
4062 (commit commit)))
4063 (file-name (git-file-name name version))
4064 (sha256
4065 (base32 "12jj54h0fs6n237cvnp8v6hn0imfksammq22ys6pi0gwz2w47rbj"))))
4066 (build-system asdf-build-system/sbcl)
4067 (native-inputs ; For tests.
4068 `(("sbcl-ptester" ,sbcl-ptester)
4069 ("sbcl-kmrcl" ,sbcl-kmrcl)))
4070 (home-page "http://files.kpe.io/cl-base64/")
4071 (synopsis
4072 "Common Lisp package to encode and decode base64 with URI support")
4073 (description
4074 "This package provides highly optimized base64 encoding and decoding.
4075 Besides conversion to and from strings, integer conversions are supported.
4076 Encoding with Uniform Resource Identifiers is supported by using a modified
4077 encoding table that uses only URI-compatible characters.")
4078 (license license:bsd-3))))
4079
4080 (define-public cl-base64
4081 (sbcl-package->cl-source-package sbcl-cl-base64))
4082
4083 (define-public ecl-cl-base64
4084 (sbcl-package->ecl-package sbcl-cl-base64))
4085
4086 (define-public sbcl-chunga
4087 (package
4088 (name "sbcl-chunga")
4089 (version "1.1.7")
4090 (source
4091 (origin
4092 (method git-fetch)
4093 (uri (git-reference
4094 (url "https://github.com/edicl/chunga")
4095 (commit (string-append "v" version))))
4096 (file-name (git-file-name name version))
4097 (sha256
4098 (base32 "0jzn3nyb3f22gm983rfk99smqs3mhb9ivjmasvhq9qla5cl9pyhd"))))
4099 (build-system asdf-build-system/sbcl)
4100 (inputs
4101 `(("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4102 (home-page "https://edicl.github.io/chunga/")
4103 (synopsis "Portable chunked streams for Common Lisp")
4104 (description
4105 "Chunga implements streams capable of chunked encoding on demand as
4106 defined in RFC 2616.")
4107 (license license:bsd-2)))
4108
4109 (define-public cl-chunga
4110 (sbcl-package->cl-source-package sbcl-chunga))
4111
4112 (define-public ecl-chunga
4113 (sbcl-package->ecl-package sbcl-chunga))
4114
4115 (define-public sbcl-cl-who
4116 (let ((version "1.1.4")
4117 (commit "2c08caa4bafba720409af9171feeba3f32e86d32")
4118 (revision "1"))
4119 (package
4120 (name "sbcl-cl-who")
4121 (version (git-version version revision commit))
4122 (source
4123 (origin
4124 (method git-fetch)
4125 (uri (git-reference
4126 (url "https://github.com/edicl/cl-who")
4127 (commit commit)))
4128 (file-name (git-file-name name version))
4129 (sha256
4130 (base32
4131 "0yjb6sr3yazm288m318kqvj9xk8rm9n1lpimgf65ymqv0i5agxsb"))))
4132 (build-system asdf-build-system/sbcl)
4133 (native-inputs
4134 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4135 (home-page "https://edicl.github.io/cl-who/")
4136 (synopsis "Yet another Lisp markup language")
4137 (description
4138 "There are plenty of Lisp Markup Languages out there - every Lisp
4139 programmer seems to write at least one during his career - and CL-WHO (where
4140 WHO means \"with-html-output\" for want of a better acronym) is probably just
4141 as good or bad as the next one.")
4142 (license license:bsd-2))))
4143
4144 (define-public cl-who
4145 (sbcl-package->cl-source-package sbcl-cl-who))
4146
4147 (define-public ecl-cl-who
4148 (sbcl-package->ecl-package sbcl-cl-who))
4149
4150 (define-public sbcl-chipz
4151 (let ((version "0.8")
4152 (commit "75dfbc660a5a28161c57f115adf74c8a926bfc4d")
4153 (revision "1"))
4154 (package
4155 (name "sbcl-chipz")
4156 (version (git-version version revision commit))
4157 (source
4158 (origin
4159 (method git-fetch)
4160 (uri (git-reference
4161 (url "https://github.com/froydnj/chipz")
4162 (commit commit)))
4163 (file-name (git-file-name name version))
4164 (sha256
4165 (base32
4166 "0plx4rs39zbs4gjk77h4a2q11zpy75fh9v8hnxrvsf8fnakajhwg"))))
4167 (build-system asdf-build-system/sbcl)
4168 (native-inputs
4169 `(("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4170 (home-page "http://method-combination.net/lisp/chipz/")
4171 (synopsis
4172 "Common Lisp library for decompressing deflate, zlib, gzip, and bzip2
4173 data")
4174 (description
4175 "DEFLATE data, defined in RFC1951, forms the core of popular
4176 compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
4177 Chipz also provides for decompressing data in those formats as well. BZIP2 is
4178 the format used by the popular compression tool bzip2.")
4179 ;; The author describes it as "MIT-like"
4180 (license license:expat))))
4181
4182 (define-public cl-chipz
4183 (sbcl-package->cl-source-package sbcl-chipz))
4184
4185 (define-public ecl-chipz
4186 (sbcl-package->ecl-package sbcl-chipz))
4187
4188 (define-public sbcl-drakma
4189 (package
4190 (name "sbcl-drakma")
4191 (version "2.0.7")
4192 (source
4193 (origin
4194 (method git-fetch)
4195 (uri (git-reference
4196 (url "https://github.com/edicl/drakma")
4197 (commit (string-append "v" version))))
4198 (file-name (git-file-name name version))
4199 (sha256
4200 (base32
4201 "1441idnyif9xzx3ln1p3fg36k2v9h4wasjqrzc8y52j61420qpci"))))
4202 (build-system asdf-build-system/sbcl)
4203 (inputs
4204 `(("sbcl-puri" ,sbcl-puri)
4205 ("sbcl-cl-base64" ,sbcl-cl-base64)
4206 ("sbcl-chunga" ,sbcl-chunga)
4207 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
4208 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4209 ("sbcl-chipz" ,sbcl-chipz)
4210 ("sbcl-usocket" ,sbcl-usocket)
4211 ("sbcl-cl+ssl" ,sbcl-cl+ssl)))
4212 (native-inputs
4213 `(("sbcl-fiveam" ,sbcl-fiveam)))
4214 (home-page "https://edicl.github.io/drakma/")
4215 (synopsis "HTTP client written in Common Lisp")
4216 (description
4217 "Drakma is a full-featured HTTP client implemented in Common Lisp. It
4218 knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
4219 sockets, SSL, continuable uploads, file uploads, cookies, and more.")
4220 (license license:bsd-2)))
4221
4222 (define-public cl-drakma
4223 (sbcl-package->cl-source-package sbcl-drakma))
4224
4225 (define-public ecl-drakma
4226 (sbcl-package->ecl-package sbcl-drakma))
4227
4228 (define-public sbcl-hunchentoot
4229 (package
4230 (name "sbcl-hunchentoot")
4231 (version "1.2.38")
4232 (source
4233 (origin
4234 (method git-fetch)
4235 (uri (git-reference
4236 (url "https://github.com/edicl/hunchentoot")
4237 (commit (string-append "v" version))))
4238 (file-name (git-file-name "hunchentoot" version))
4239 (sha256
4240 (base32 "1anpcad7w045m4rsjs1f3xdhjwx5cppq1h0vlb3q7dz81fi3i6yq"))))
4241 (build-system asdf-build-system/sbcl)
4242 (native-inputs
4243 `(("sbcl-cl-who" ,sbcl-cl-who)
4244 ("sbcl-drakma" ,sbcl-drakma)))
4245 (inputs
4246 `(("sbcl-chunga" ,sbcl-chunga)
4247 ("sbcl-cl-base64" ,sbcl-cl-base64)
4248 ("sbcl-cl-fad" ,sbcl-cl-fad)
4249 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4250 ("sbcl-flexi-streams" ,sbcl-flexi-streams)
4251 ("sbcl-cl+ssl" ,sbcl-cl+ssl)
4252 ("sbcl-md5" ,sbcl-md5)
4253 ("sbcl-rfc2388" ,sbcl-rfc2388)
4254 ("sbcl-trivial-backtrace" ,sbcl-trivial-backtrace)
4255 ("sbcl-usocket" ,sbcl-usocket)))
4256 (home-page "https://edicl.github.io/hunchentoot/")
4257 (synopsis "Web server written in Common Lisp")
4258 (description
4259 "Hunchentoot is a web server written in Common Lisp and at the same
4260 time a toolkit for building dynamic websites. As a stand-alone web server,
4261 Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
4262 connections (keep-alive), and SSL.")
4263 (license license:bsd-2)))
4264
4265 (define-public cl-hunchentoot
4266 (sbcl-package->cl-source-package sbcl-hunchentoot))
4267
4268 (define-public ecl-hunchentoot
4269 (package
4270 (inherit (sbcl-package->ecl-package sbcl-hunchentoot))
4271 (arguments
4272 ;; Tests fail on ECL with 'Socket error in "socket": EINVAL'.
4273 '(#:tests? #f))))
4274
4275 (define-public sbcl-trivial-types
4276 (package
4277 (name "sbcl-trivial-types")
4278 (version "0.0.1")
4279 (source
4280 (origin
4281 (method git-fetch)
4282 (uri (git-reference
4283 (url "https://github.com/m2ym/trivial-types")
4284 (commit "ee869f2b7504d8aa9a74403641a5b42b16f47d88")))
4285 (file-name (git-file-name name version))
4286 (sha256
4287 (base32 "1s4cp9bdlbn8447q7w7f1wkgwrbvfzp20mgs307l5pxvdslin341"))))
4288 (build-system asdf-build-system/sbcl)
4289 (home-page "https://github.com/m2ym/trivial-types")
4290 (synopsis "Trivial type definitions for Common Lisp")
4291 (description
4292 "TRIVIAL-TYPES provides missing but important type definitions such as
4293 PROPER-LIST, ASSOCIATION-LIST, PROPERTY-LIST and TUPLE.")
4294 (license license:llgpl)))
4295
4296 (define-public cl-trivial-types
4297 (sbcl-package->cl-source-package sbcl-trivial-types))
4298
4299 (define-public ecl-trivial-types
4300 (sbcl-package->ecl-package sbcl-trivial-types))
4301
4302 (define-public sbcl-cl-annot
4303 (let ((commit "c99e69c15d935eabc671b483349a406e0da9518d")
4304 (revision "1"))
4305 (package
4306 (name "sbcl-cl-annot")
4307 (version (git-version "0.0.0" revision commit))
4308 (source
4309 (origin
4310 (method git-fetch)
4311 (uri (git-reference
4312 (url "https://github.com/m2ym/cl-annot")
4313 (commit commit)))
4314 (file-name (git-file-name name version))
4315 (sha256
4316 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
4317 (build-system asdf-build-system/sbcl)
4318 (inputs
4319 `(("sbcl-alexandria" ,sbcl-alexandria)))
4320 (home-page "https://github.com/m2ym/cl-annot")
4321 (synopsis "Python-like Annotation Syntax for Common Lisp.")
4322 (description
4323 "@code{cl-annot} is an general annotation library for Common Lisp.")
4324 (license license:llgpl))))
4325
4326 (define-public cl-annot
4327 (sbcl-package->cl-source-package sbcl-cl-annot))
4328
4329 (define-public ecl-cl-annot
4330 (sbcl-package->ecl-package sbcl-cl-annot))
4331
4332 (define-public sbcl-cl-syntax
4333 (package
4334 (name "sbcl-cl-syntax")
4335 (version "0.0.3")
4336 (source
4337 (origin
4338 (method git-fetch)
4339 (uri (git-reference
4340 (url "https://github.com/m2ym/cl-syntax")
4341 (commit "03f0c329bbd55b8622c37161e6278366525e2ccc")))
4342 (file-name (git-file-name "cl-syntax" version))
4343 (sha256
4344 (base32 "17ran8xp77asagl31xv8w819wafh6whwfc9p6dgx22ca537gyl4y"))))
4345 (build-system asdf-build-system/sbcl)
4346 (inputs
4347 `(("cl-annot" ,sbcl-cl-annot)
4348 ("cl-interpol" ,sbcl-cl-interpol)
4349 ("named-readtables" ,sbcl-named-readtables)
4350 ("trivial-types" ,sbcl-trivial-types)))
4351 (arguments
4352 '(#:asd-systems '("cl-syntax"
4353 "cl-syntax-annot"
4354 "cl-syntax-interpol")))
4355 (home-page "https://github.com/m2ym/cl-syntax")
4356 (synopsis "Reader Syntax Coventions for Common Lisp and SLIME")
4357 (description
4358 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
4359 (license license:llgpl)))
4360
4361 (define-public cl-syntax
4362 (sbcl-package->cl-source-package sbcl-cl-syntax))
4363
4364 (define-public ecl-cl-syntax
4365 (sbcl-package->ecl-package sbcl-cl-syntax))
4366
4367 (define-public sbcl-cl-utilities
4368 (let ((commit "dce2d2f6387091ea90357a130fa6d13a6776884b")
4369 (revision "1"))
4370 (package
4371 (name "sbcl-cl-utilities")
4372 (version (git-version "0.0.0" revision commit))
4373 (source
4374 (origin
4375 (method url-fetch)
4376 (uri
4377 (string-append
4378 "https://gitlab.common-lisp.net/cl-utilities/cl-utilities/-/"
4379 "archive/" commit "/cl-utilities-" commit ".tar.gz"))
4380 (sha256
4381 (base32 "1r46v730yf96nk2vb24qmagv9x96xvd08abqwhf02ghgydv1a7z2"))))
4382 (build-system asdf-build-system/sbcl)
4383 (arguments
4384 '(#:phases
4385 (modify-phases %standard-phases
4386 (add-after 'unpack 'fix-paths
4387 (lambda* (#:key inputs #:allow-other-keys)
4388 (substitute* "rotate-byte.lisp"
4389 (("in-package :cl-utilities)" all)
4390 "in-package :cl-utilities)\n\n#+sbcl\n(require :sb-rotate-byte)")))))))
4391 (home-page "http://common-lisp.net/project/cl-utilities")
4392 (synopsis "A collection of semi-standard utilities")
4393 (description
4394 "On Cliki.net <http://www.cliki.net/Common%20Lisp%20Utilities>, there
4395 is a collection of Common Lisp Utilities, things that everybody writes since
4396 they're not part of the official standard. There are some very useful things
4397 there; the only problems are that they aren't implemented as well as you'd
4398 like (some aren't implemented at all) and they aren't conveniently packaged
4399 and maintained. It takes quite a bit of work to carefully implement utilities
4400 for common use, commented and documented, with error checking placed
4401 everywhere some dumb user might make a mistake.")
4402 (license license:public-domain))))
4403
4404 (define-public cl-utilities
4405 (sbcl-package->cl-source-package sbcl-cl-utilities))
4406
4407 (define-public ecl-cl-utilities
4408 (sbcl-package->ecl-package sbcl-cl-utilities))
4409
4410 (define-public sbcl-map-set
4411 (let ((commit "7b4b545b68b8")
4412 (revision "1"))
4413 (package
4414 (name "sbcl-map-set")
4415 (version (git-version "0.0.0" revision commit))
4416 (source
4417 (origin
4418 (method url-fetch)
4419 (uri (string-append
4420 "https://bitbucket.org/tarballs_are_good/map-set/get/"
4421 commit ".tar.gz"))
4422 (sha256
4423 (base32 "1sx5j5qdsy5fklspfammwb16kjrhkggdavm922a9q86jm5l0b239"))))
4424 (build-system asdf-build-system/sbcl)
4425 (home-page "https://bitbucket.org/tarballs_are_good/map-set")
4426 (synopsis "Set-like data structure")
4427 (description
4428 "Implementation of a set-like data structure with constant time
4429 addition, removal, and random selection.")
4430 (license license:bsd-3))))
4431
4432 (define-public cl-map-set
4433 (sbcl-package->cl-source-package sbcl-map-set))
4434
4435 (define-public ecl-map-set
4436 (sbcl-package->ecl-package sbcl-map-set))
4437
4438 (define-public sbcl-quri
4439 (package
4440 (name "sbcl-quri")
4441 (version "0.3.0")
4442 (source
4443 (origin
4444 (method git-fetch)
4445 (uri (git-reference
4446 (url "https://github.com/fukamachi/quri")
4447 (commit version)))
4448 (file-name (git-file-name name version))
4449 (sha256
4450 (base32 "1pkvpiwwhx2fcknr7x47h7036ypkg8xzsskqbl5z315ipfmi8s2m"))))
4451 (build-system asdf-build-system/sbcl)
4452 (arguments
4453 ;; Test system must be loaded before, otherwise tests fail with:
4454 ;; Component QURI-ASD::QURI-TEST not found, required by #<SYSTEM
4455 ;; "quri">.
4456 '(#:asd-systems '("quri-test"
4457 "quri")))
4458 (native-inputs `(("sbcl-prove" ,sbcl-prove)))
4459 (inputs `(("sbcl-babel" ,sbcl-babel)
4460 ("sbcl-split-sequence" ,sbcl-split-sequence)
4461 ("sbcl-cl-utilities" ,sbcl-cl-utilities)
4462 ("sbcl-alexandria" ,sbcl-alexandria)))
4463 (home-page "https://github.com/fukamachi/quri")
4464 (synopsis "Yet another URI library for Common Lisp")
4465 (description
4466 "QURI (pronounced \"Q-ree\") is yet another URI library for Common
4467 Lisp. It is intended to be a replacement of PURI.")
4468 (license license:bsd-3)))
4469
4470 (define-public cl-quri
4471 (sbcl-package->cl-source-package sbcl-quri))
4472
4473 (define-public ecl-quri
4474 (sbcl-package->ecl-package sbcl-quri))
4475
4476 (define-public sbcl-myway
4477 (let ((commit "286230082a11f879c18b93f17ca571c5f676bfb7")
4478 (revision "1"))
4479 (package
4480 (name "sbcl-myway")
4481 (version (git-version "0.1.0" revision commit))
4482 (source
4483 (origin
4484 (method git-fetch)
4485 (uri (git-reference
4486 (url "https://github.com/fukamachi/myway")
4487 (commit commit)))
4488 (file-name (git-file-name "myway" version))
4489 (sha256
4490 (base32 "0briia9bk3lbr0frnx39d1qg6i38dm4j6z9w3yga3d40k6df4a90"))))
4491 (build-system asdf-build-system/sbcl)
4492 (arguments
4493 ;; Tests fail with: Component MYWAY-ASD::MYWAY-TEST not found, required
4494 ;; by #<SYSTEM "myway">. Why?
4495 '(#:tests? #f))
4496 (native-inputs
4497 `(("sbcl-prove" ,sbcl-prove)))
4498 (inputs
4499 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
4500 ("sbcl-quri" ,sbcl-quri)
4501 ("sbcl-map-set" ,sbcl-map-set)))
4502 (home-page "https://github.com/fukamachi/myway")
4503 (synopsis "Sinatra-compatible URL routing library for Common Lisp")
4504 (description "My Way is a Sinatra-compatible URL routing library.")
4505 (license license:llgpl))))
4506
4507 (define-public cl-myway
4508 (sbcl-package->cl-source-package sbcl-myway))
4509
4510 (define-public ecl-myway
4511 (sbcl-package->ecl-package sbcl-myway))
4512
4513 (define-public sbcl-xsubseq
4514 (let ((commit "5ce430b3da5cda3a73b9cf5cee4df2843034422b")
4515 (revision "1"))
4516 (package
4517 (name "sbcl-xsubseq")
4518 (version (git-version "0.0.1" revision commit))
4519 (source
4520 (origin
4521 (method git-fetch)
4522 (uri (git-reference
4523 (url "https://github.com/fukamachi/xsubseq")
4524 (commit commit)))
4525 (file-name (git-file-name name version))
4526 (sha256
4527 (base32 "1xz79q0p2mclf3sqjiwf6izdpb6xrsr350bv4mlmdlm6rg5r99px"))))
4528 (build-system asdf-build-system/sbcl)
4529 (arguments
4530 ;; Tests fail with: Component XSUBSEQ-ASD::XSUBSEQ-TEST not found,
4531 ;; required by #<SYSTEM "xsubseq">. Why?
4532 '(#:tests? #f))
4533 (native-inputs
4534 `(("sbcl-prove" ,sbcl-prove)))
4535 (home-page "https://github.com/fukamachi/xsubseq")
4536 (synopsis "Efficient way to use \"subseq\"s in Common Lisp")
4537 (description
4538 "XSubseq provides functions to be able to handle \"subseq\"s more
4539 effieiently.")
4540 (license license:bsd-2))))
4541
4542 (define-public cl-xsubseq
4543 (sbcl-package->cl-source-package sbcl-xsubseq))
4544
4545 (define-public ecl-xsubseq
4546 (sbcl-package->ecl-package sbcl-xsubseq))
4547
4548 (define-public sbcl-smart-buffer
4549 (let ((commit "09b9a9a0b3abaa37abe9a730f5aac2643dca4e62")
4550 (revision "1"))
4551 (package
4552 (name "sbcl-smart-buffer")
4553 (version (git-version "0.0.1" revision commit))
4554 (source
4555 (origin
4556 (method git-fetch)
4557 (uri (git-reference
4558 (url "https://github.com/fukamachi/smart-buffer")
4559 (commit commit)))
4560 (file-name (git-file-name name version))
4561 (sha256
4562 (base32 "0qz1zzxx0wm5ff7gpgsq550a59p0qj594zfmm2rglj97dahj54l7"))))
4563 (build-system asdf-build-system/sbcl)
4564 (arguments
4565 ;; Tests fail with: Component SMART-BUFFER-ASD::SMART-BUFFER-TEST not
4566 ;; found, required by #<SYSTEM "smart-buffer">. Why?
4567 `(#:tests? #f))
4568 (native-inputs
4569 `(("sbcl-prove" ,sbcl-prove)))
4570 (inputs
4571 `(("sbcl-xsubseq" ,sbcl-xsubseq)
4572 ("sbcl-flexi-streams" ,sbcl-flexi-streams)))
4573 (home-page "https://github.com/fukamachi/smart-buffer")
4574 (synopsis "Smart octets buffer")
4575 (description
4576 "Smart-buffer provides an output buffer which changes the destination
4577 depending on content size.")
4578 (license license:bsd-3))))
4579
4580 (define-public cl-smart-buffer
4581 (sbcl-package->cl-source-package sbcl-smart-buffer))
4582
4583 (define-public ecl-smart-buffer
4584 (sbcl-package->ecl-package sbcl-smart-buffer))
4585
4586 (define-public sbcl-fast-http
4587 (let ((commit "502a37715dcb8544cc8528b78143a942de662c5a")
4588 (revision "2"))
4589 (package
4590 (name "sbcl-fast-http")
4591 (version (git-version "0.2.0" revision commit))
4592 (source
4593 (origin
4594 (method git-fetch)
4595 (uri (git-reference
4596 (url "https://github.com/fukamachi/fast-http")
4597 (commit commit)))
4598 (file-name (git-file-name name version))
4599 (sha256
4600 (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
4601 (build-system asdf-build-system/sbcl)
4602 (arguments
4603 ;; Tests fail with: Component FAST-HTTP-ASD::FAST-HTTP-TEST not found,
4604 ;; required by #<SYSTEM "fast-http">. Why?
4605 `(#:tests? #f))
4606 (native-inputs
4607 `(("sbcl-prove" ,sbcl-prove)
4608 ("cl-syntax" ,sbcl-cl-syntax)))
4609 (inputs
4610 `(("sbcl-alexandria" ,sbcl-alexandria)
4611 ("sbcl-proc-parse" ,sbcl-proc-parse)
4612 ("sbcl-xsubseq" ,sbcl-xsubseq)
4613 ("sbcl-smart-buffer" ,sbcl-smart-buffer)
4614 ("sbcl-cl-utilities" ,sbcl-cl-utilities)))
4615 (home-page "https://github.com/fukamachi/fast-http")
4616 (synopsis "HTTP request/response parser for Common Lisp")
4617 (description
4618 "@code{fast-http} is a HTTP request/response protocol parser for Common
4619 Lisp.")
4620 ;; Author specified the MIT license
4621 (license license:expat))))
4622
4623 (define-public cl-fast-http
4624 (sbcl-package->cl-source-package sbcl-fast-http))
4625
4626 (define-public ecl-fast-http
4627 (sbcl-package->ecl-package sbcl-fast-http))
4628
4629 (define-public sbcl-static-vectors
4630 (package
4631 (name "sbcl-static-vectors")
4632 (version "1.8.6")
4633 (source
4634 (origin
4635 (method git-fetch)
4636 (uri (git-reference
4637 (url "https://github.com/sionescu/static-vectors")
4638 (commit (string-append "v" version))))
4639 (file-name (git-file-name name version))
4640 (sha256
4641 (base32 "01hwxzhyjkhsd3949g70120g7msw01byf0ia0pbj319q1a3cq7j9"))))
4642 (native-inputs
4643 `(("sbcl-fiveam" ,sbcl-fiveam)))
4644 (inputs
4645 `(("sbcl-alexandria" ,sbcl-alexandria)
4646 ("sbcl-cffi" ,sbcl-cffi)))
4647 (build-system asdf-build-system/sbcl)
4648 (home-page "https://github.com/sionescu/static-vectors")
4649 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4650 (description
4651 "With @code{static-vectors}, you can create vectors allocated in static
4652 memory.")
4653 (license license:expat)))
4654
4655 (define-public cl-static-vectors
4656 (sbcl-package->cl-source-package sbcl-static-vectors))
4657
4658 (define-public ecl-static-vectors
4659 (sbcl-package->ecl-package sbcl-static-vectors))
4660
4661 (define-public sbcl-marshal
4662 (let ((commit "eff1b15f2b0af2f26f71ad6a4dd5c4beab9299ec")
4663 (revision "1"))
4664 (package
4665 (name "sbcl-marshal")
4666 (version (git-version "1.3.0" revision commit))
4667 (source
4668 (origin
4669 (method git-fetch)
4670 (uri (git-reference
4671 (url "https://github.com/wlbr/cl-marshal")
4672 (commit commit)))
4673 (file-name (git-file-name name version))
4674 (sha256
4675 (base32 "08qs6fhk38xpkkjkpcj92mxx0lgy4ygrbbzrmnivdx281syr0gwh"))))
4676 (build-system asdf-build-system/sbcl)
4677 (home-page "https://github.com/wlbr/cl-marshal")
4678 (synopsis "Simple (de)serialization of Lisp datastructures")
4679 (description
4680 "Simple and fast marshalling of Lisp datastructures. Convert any object
4681 into a string representation, put it on a stream an revive it from there.
4682 Only minimal changes required to make your CLOS objects serializable.")
4683 (license license:expat))))
4684
4685 (define-public cl-marshal
4686 (sbcl-package->cl-source-package sbcl-marshal))
4687
4688 (define-public ecl-marshal
4689 (sbcl-package->ecl-package sbcl-marshal))
4690
4691 (define-public sbcl-checkl
4692 (let ((commit "80328800d047fef9b6e32dfe6bdc98396aee3cc9")
4693 (revision "1"))
4694 (package
4695 (name "sbcl-checkl")
4696 (version (git-version "0.0.0" revision commit))
4697 (source
4698 (origin
4699 (method git-fetch)
4700 (uri (git-reference
4701 (url "https://github.com/rpav/CheckL")
4702 (commit commit)))
4703 (file-name (git-file-name name version))
4704 (sha256
4705 (base32 "0bpisihx1gay44xmyr1dmhlwh00j0zzi04rp9fy35i95l2r4xdlx"))))
4706 (build-system asdf-build-system/sbcl)
4707 (arguments
4708 ;; Error while trying to load definition for system checkl-test from
4709 ;; pathname [...]/checkl-test.asd: The function CHECKL:DEFINE-TEST-OP
4710 ;; is undefined.
4711 '(#:asd-files '("checkl.asd")
4712 #:tests? #f))
4713 (native-inputs
4714 `(("sbcl-fiveam" ,sbcl-fiveam)))
4715 (inputs
4716 `(("sbcl-marshal" ,sbcl-marshal)))
4717 (home-page "https://github.com/rpav/CheckL/")
4718 (synopsis "Dynamic testing for Common Lisp")
4719 (description
4720 "CheckL lets you write tests dynamically, it checks resulting values
4721 against the last run.")
4722 ;; The author specifies both LLGPL and "BSD", but the "BSD" license
4723 ;; isn't specified anywhere, so I don't know which kind. LLGPL is the
4724 ;; stronger of the two and so I think only listing this should suffice.
4725 (license license:llgpl))))
4726
4727 (define-public cl-checkl
4728 (sbcl-package->cl-source-package sbcl-checkl))
4729
4730 (define-public ecl-checkl
4731 (sbcl-package->ecl-package sbcl-checkl))
4732
4733 (define-public sbcl-fast-io
4734 (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b")
4735 (revision "2"))
4736 (package
4737 (name "sbcl-fast-io")
4738 (version (git-version "1.0.0" revision commit))
4739 (source
4740 (origin
4741 (method git-fetch)
4742 (uri (git-reference
4743 (url "https://github.com/rpav/fast-io")
4744 (commit commit)))
4745 (file-name (git-file-name name version))
4746 (sha256
4747 (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n"))))
4748 (build-system asdf-build-system/sbcl)
4749 (arguments
4750 ;; Error while trying to load definition for system fast-io-test from
4751 ;; pathname [...]/fast-io-test.asd: The function CHECKL:DEFINE-TEST-OP
4752 ;; is undefined.
4753 '(#:tests? #f
4754 #:asd-files '("fast-io.asd")))
4755 (native-inputs
4756 `(("sbcl-fiveam" ,sbcl-fiveam)
4757 ("sbcl-checkl" ,sbcl-checkl)))
4758 (inputs
4759 `(("sbcl-alexandria" ,sbcl-alexandria)
4760 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)
4761 ("sbcl-static-vectors" ,sbcl-static-vectors)))
4762 (home-page "https://github.com/rpav/fast-io")
4763 (synopsis "Fast octet-vector/stream I/O for Common Lisp")
4764 (description
4765 "Fast-io is about improving performance to octet-vectors and octet
4766 streams (though primarily the former, while wrapping the latter).")
4767 ;; Author specifies this as NewBSD which is an alias
4768 (license license:bsd-3))))
4769
4770 (define-public cl-fast-io
4771 (sbcl-package->cl-source-package sbcl-fast-io))
4772
4773 (define-public ecl-fast-io
4774 (sbcl-package->ecl-package sbcl-fast-io))
4775
4776 (define-public sbcl-jonathan
4777 (let ((commit "1f448b4f7ac8265e56e1c02b32ce383e65316300")
4778 (revision "1"))
4779 (package
4780 (name "sbcl-jonathan")
4781 (version (git-version "0.1.0" revision commit))
4782 (source
4783 (origin
4784 (method git-fetch)
4785 (uri (git-reference
4786 (url "https://github.com/Rudolph-Miller/jonathan")
4787 (commit commit)))
4788 (file-name (git-file-name name version))
4789 (sha256
4790 (base32 "14x4iwz3mbag5jzzzr4sb6ai0m9r4q4kyypbq32jmsk2dx1hi807"))))
4791 (build-system asdf-build-system/sbcl)
4792 (arguments
4793 ;; Tests fail with: Component JONATHAN-ASD::JONATHAN-TEST not found,
4794 ;; required by #<SYSTEM "jonathan">. Why?
4795 `(#:tests? #f))
4796 (native-inputs
4797 `(("sbcl-prove" ,sbcl-prove)))
4798 (inputs
4799 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
4800 ("sbcl-fast-io" ,sbcl-fast-io)
4801 ("sbcl-proc-parse" ,sbcl-proc-parse)
4802 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
4803 (home-page "https://rudolph-miller.github.io/jonathan/overview.html")
4804 (synopsis "JSON encoder and decoder")
4805 (description
4806 "High performance JSON encoder and decoder. Currently support: SBCL,
4807 CCL.")
4808 ;; Author specifies the MIT license
4809 (license license:expat))))
4810
4811 (define-public cl-jonathan
4812 (sbcl-package->cl-source-package sbcl-jonathan))
4813
4814 (define-public ecl-jonathan
4815 (sbcl-package->ecl-package sbcl-jonathan))
4816
4817 (define-public sbcl-http-body
4818 (let ((commit "dd01dc4f5842e3d29728552e5163acce8386eb73")
4819 (revision "1"))
4820 (package
4821 (name "sbcl-http-body")
4822 (version (git-version "0.1.0" revision commit))
4823 (source
4824 (origin
4825 (method git-fetch)
4826 (uri (git-reference
4827 (url "https://github.com/fukamachi/http-body")
4828 (commit commit)))
4829 (file-name (git-file-name name version))
4830 (sha256
4831 (base32 "1jd06snjvxcprhapgfq8sx0y5lrldkvhf206ix6d5a23dd6zcmr0"))))
4832 (build-system asdf-build-system/sbcl)
4833 (arguments
4834 ;; Tests fail with: Component HTTP-BODY-ASD::HTTP-BODY-TEST not
4835 ;; found, required by #<SYSTEM "http-body">. Why?
4836 `(#:tests? #f))
4837 (native-inputs
4838 `(("sbcl-prove" ,sbcl-prove)))
4839 (inputs
4840 `(("sbcl-fast-http" ,sbcl-fast-http)
4841 ("sbcl-jonathan" ,sbcl-jonathan)
4842 ("sbcl-quri" ,sbcl-quri)))
4843 (home-page "https://github.com/fukamachi/http-body")
4844 (synopsis "HTTP POST data parser")
4845 (description
4846 "HTTP-Body parses HTTP POST data and returns POST parameters. It
4847 supports application/x-www-form-urlencoded, application/json, and
4848 multipart/form-data.")
4849 (license license:bsd-2))))
4850
4851 (define-public cl-http-body
4852 (sbcl-package->cl-source-package sbcl-http-body))
4853
4854 (define-public ecl-http-body
4855 (sbcl-package->ecl-package sbcl-http-body))
4856
4857 (define-public sbcl-circular-streams
4858 (let ((commit "e770bade1919c5e8533dd2078c93c3d3bbeb38df")
4859 (revision "1"))
4860 (package
4861 (name "sbcl-circular-streams")
4862 (version (git-version "0.1.0" revision commit))
4863 (source
4864 (origin
4865 (method git-fetch)
4866 (uri (git-reference
4867 (url "https://github.com/fukamachi/circular-streams")
4868 (commit commit)))
4869 (file-name (git-file-name name version))
4870 (sha256
4871 (base32 "1wpw6d5cciyqcf92f7mvihak52pd5s47kk4qq6f0r2z2as68p5rs"))))
4872 (build-system asdf-build-system/sbcl)
4873 (arguments
4874 ;; The tests depend on cl-test-more which is now prove. Prove
4875 ;; tests aren't working for some reason.
4876 `(#:tests? #f))
4877 (inputs
4878 `(("sbcl-fast-io" ,sbcl-fast-io)
4879 ("sbcl-trivial-gray-streams" ,sbcl-trivial-gray-streams)))
4880 (home-page "https://github.com/fukamachi/circular-streams")
4881 (synopsis "Circularly readable streams for Common Lisp")
4882 (description
4883 "Circular-Streams allows you to read streams circularly by wrapping real
4884 streams. Once you reach end-of-file of a stream, it's file position will be
4885 reset to 0 and you're able to read it again.")
4886 (license license:llgpl))))
4887
4888 (define-public cl-circular-streams
4889 (sbcl-package->cl-source-package sbcl-circular-streams))
4890
4891 (define-public ecl-circular-streams
4892 (sbcl-package->ecl-package sbcl-circular-streams))
4893
4894 (define-public sbcl-lack
4895 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4896 (revision "1"))
4897 (package
4898 (name "sbcl-lack")
4899 (version (git-version "0.1.0" revision commit))
4900 (source
4901 (origin
4902 (method git-fetch)
4903 (uri (git-reference
4904 (url "https://github.com/fukamachi/lack")
4905 (commit commit)))
4906 (file-name (git-file-name "lack" version))
4907 (sha256
4908 (base32 "1avh4ygcj9xcx4m17nj0wnxxaisk26w4ljs2bibzxaln24x7pi85"))))
4909 (build-system asdf-build-system/sbcl)
4910 (native-inputs
4911 `(("prove" ,sbcl-prove)))
4912 (inputs
4913 `(("circular-streams" ,sbcl-circular-streams)
4914 ("http-body" ,sbcl-http-body)
4915 ("ironclad" ,sbcl-ironclad)
4916 ("local-time" ,sbcl-local-time)
4917 ("quri" ,sbcl-quri)
4918 ("trivial-mimes" ,sbcl-trivial-mimes)))
4919 (arguments
4920 '(#:asd-systems '("lack"
4921 "lack-request"
4922 "lack-response"
4923 "lack-component"
4924 "lack-util"
4925 "lack-middleware-backtrace"
4926 "lack-middleware-static")
4927 #:test-asd-file "t-lack.asd"
4928 ;; XXX: Component :CLACK not found
4929 #:tests? #f))
4930 (home-page "https://github.com/fukamachi/lack")
4931 (synopsis "Lack, the core of Clack")
4932 (description
4933 "Lack is a Common Lisp library which allows web applications to be
4934 constructed of modular components. It was originally a part of Clack, however
4935 it's going to be rewritten as an individual project since Clack v2 with
4936 performance and simplicity in mind.")
4937 (license license:llgpl))))
4938
4939 (define-public cl-lack
4940 (sbcl-package->cl-source-package sbcl-lack))
4941
4942 (define-public ecl-lack
4943 (sbcl-package->ecl-package sbcl-lack))
4944
4945 (define-public sbcl-local-time
4946 (let ((commit "a177eb911c0e8116e2bfceb79049265a884b701b")
4947 (revision "2"))
4948 (package
4949 (name "sbcl-local-time")
4950 (version (git-version "1.0.6" revision commit))
4951 (source
4952 (origin
4953 (method git-fetch)
4954 (uri (git-reference
4955 (url "https://github.com/dlowe-net/local-time")
4956 (commit commit)))
4957 (file-name (git-file-name name version))
4958 (sha256
4959 (base32 "0wld28xx20k0ysgg6akic5lg4vkjd0iyhv86m388xfrv8xh87wii"))))
4960 (build-system asdf-build-system/sbcl)
4961 (native-inputs
4962 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
4963 (home-page "https://common-lisp.net/project/local-time/")
4964 (synopsis "Time manipulation library for Common Lisp")
4965 (description
4966 "The LOCAL-TIME library is a Common Lisp library for the manipulation of
4967 dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4968 Long Painful History of Time\".")
4969 (license license:expat))))
4970
4971 (define-public cl-local-time
4972 (sbcl-package->cl-source-package sbcl-local-time))
4973
4974 (define-public ecl-local-time
4975 (sbcl-package->ecl-package sbcl-local-time))
4976
4977 (define-public sbcl-chronicity
4978 (package
4979 (name "sbcl-chronicity")
4980 (version "0.4.1")
4981 (source
4982 (origin
4983 (method git-fetch)
4984 (uri (git-reference
4985 (url "https://github.com/chaitanyagupta/chronicity")
4986 (commit (string-append "v" version))))
4987 (file-name (git-file-name "chronicity" version))
4988 (sha256
4989 (base32 "0rzrl9is2v1aqbm0sym0qx3blnpd0bl13dkkmll6mb3983k2mkax"))))
4990 (build-system asdf-build-system/sbcl)
4991 (native-inputs
4992 `(("lisp-unit" ,sbcl-lisp-unit)))
4993 (inputs
4994 `(("cl-interpol" ,sbcl-cl-interpol)
4995 ("cl-ppcre" ,sbcl-cl-ppcre)
4996 ("local-time" ,sbcl-local-time)))
4997 (home-page "https://github.com/chaitanyagupta/chronicity")
4998 (synopsis "Natural language date and time parser for Common Lisp")
4999 (description
5000 "CHRONICITY is Common Lisp natural language date and time parser inspired
5001 by Ruby's @code{Chronic}.")
5002 (license license:bsd-3)))
5003
5004 (define-public ecl-chronicity
5005 (sbcl-package->ecl-package sbcl-chronicity))
5006
5007 (define-public cl-chronicity
5008 (sbcl-package->cl-source-package sbcl-chronicity))
5009
5010 (define-public sbcl-trivial-mimes
5011 (let ((commit "a741fc2f567a4f86b853fd4677d75e62c03e51d9")
5012 (revision "2"))
5013 (package
5014 (name "sbcl-trivial-mimes")
5015 (version (git-version "1.1.0" revision commit))
5016 (source
5017 (origin
5018 (method git-fetch)
5019 (uri (git-reference
5020 (url "https://github.com/Shinmera/trivial-mimes")
5021 (commit commit)))
5022 (file-name (git-file-name name version))
5023 (sha256
5024 (base32 "00kcm17q5plpzdj1qwg83ldhxksilgpcdkf3m9azxcdr968xs9di"))))
5025 (build-system asdf-build-system/sbcl)
5026 (native-inputs
5027 `(("stefil" ,sbcl-hu.dwim.stefil)))
5028 (inputs
5029 `(("sbcl-cl-fad" ,sbcl-cl-fad)))
5030 (home-page "https://shinmera.github.io/trivial-mimes/")
5031 (synopsis "Tiny Common Lisp library to detect mime types in files")
5032 (description
5033 "This is a teensy library that provides some functions to determine the
5034 mime-type of a file.")
5035 (license license:zlib))))
5036
5037 (define-public cl-trivial-mimes
5038 (sbcl-package->cl-source-package sbcl-trivial-mimes))
5039
5040 (define-public ecl-trivial-mimes
5041 (sbcl-package->ecl-package sbcl-trivial-mimes))
5042
5043 (define-public sbcl-ningle
5044 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
5045 (revision "1"))
5046 (package
5047 (name "sbcl-ningle")
5048 (version (git-version "0.3.0" revision commit))
5049 (source
5050 (origin
5051 (method git-fetch)
5052 (uri (git-reference
5053 (url "https://github.com/fukamachi/ningle")
5054 (commit commit)))
5055 (file-name (git-file-name name version))
5056 (sha256
5057 (base32 "1bsl8cnxhacb8p92z9n89vhk1ikmij5zavk0m2zvmj7iqm79jzgw"))))
5058 (build-system asdf-build-system/sbcl)
5059 (arguments
5060 ;; TODO: pull in clack-test
5061 '(#:tests? #f
5062 #:phases
5063 (modify-phases %standard-phases
5064 (delete 'cleanup-files)
5065 (delete 'cleanup)
5066 (add-before 'cleanup 'combine-fasls
5067 (lambda* (#:key outputs #:allow-other-keys)
5068 (let* ((out (assoc-ref outputs "out"))
5069 (lib (string-append out "/lib/sbcl"))
5070 (ningle-path (string-append lib "/ningle"))
5071 (fasl-files (find-files out "\\.fasl$")))
5072 (mkdir-p ningle-path)
5073 (let ((fasl-path (lambda (name)
5074 (string-append ningle-path
5075 "/"
5076 (basename name)
5077 "--system.fasl"))))
5078 (for-each (lambda (file)
5079 (rename-file file
5080 (fasl-path
5081 (basename file ".fasl"))))
5082 fasl-files))
5083 fasl-files)
5084 #t)))))
5085 (native-inputs
5086 `(("sbcl-prove" ,sbcl-prove)))
5087 (inputs
5088 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
5089 ("sbcl-myway" ,sbcl-myway)
5090 ("sbcl-lack" ,sbcl-lack)
5091 ("sbcl-alexandria" ,sbcl-alexandria)
5092 ("sbcl-babel" ,sbcl-babel)))
5093 (home-page "https://8arrow.org/ningle/")
5094 (synopsis "Super micro framework for Common Lisp")
5095 (description
5096 "Ningle is a lightweight web application framework for Common Lisp.")
5097 (license license:llgpl))))
5098
5099 (define-public cl-ningle
5100 (sbcl-package->cl-source-package sbcl-ningle))
5101
5102 (define-public ecl-ningle
5103 (sbcl-package->ecl-package sbcl-ningle))
5104
5105 (define-public sbcl-cl-fastcgi
5106 (let ((commit "de8b49b26de9863996ec18db28af8ab7e8ac4e20")
5107 (revision "2"))
5108 (package
5109 (name "sbcl-cl-fastcgi")
5110 (version (git-version "0.2" revision commit))
5111 (source
5112 (origin
5113 (method git-fetch)
5114 (uri (git-reference
5115 (url "https://github.com/KDr2/cl-fastcgi/")
5116 (commit commit)))
5117 (file-name (git-file-name name version))
5118 (sha256
5119 (base32 "0xgmhx766q4nmrvn5z7ag3ikpr9phlh8ypi8b14azshq9lqbq0m7"))))
5120 (build-system asdf-build-system/sbcl)
5121 (inputs
5122 `(("usocket" ,sbcl-usocket)
5123 ("cffi" ,sbcl-cffi)
5124 ("fcgi" ,fcgi)))
5125 (arguments
5126 `(#:phases
5127 (modify-phases %standard-phases
5128 (add-after 'unpack 'fix-paths
5129 (lambda* (#:key inputs #:allow-other-keys)
5130 (substitute* "cl-fastcgi.lisp"
5131 (("\"libfcgi.so\"")
5132 (string-append
5133 "\""
5134 (assoc-ref inputs "fcgi") "/lib/libfcgi.so\""))))))))
5135 (home-page "https://kdr2.com/project/cl-fastcgi.html")
5136 (synopsis "FastCGI wrapper for Common Lisp")
5137 (description
5138 "CL-FastCGI is a generic version of SB-FastCGI, targeting to run on
5139 mostly Common Lisp implementation.")
5140 (license license:bsd-2))))
5141
5142 (define-public cl-fastcgi
5143 (sbcl-package->cl-source-package sbcl-cl-fastcgi))
5144
5145 (define-public ecl-cl-fastcgi
5146 (sbcl-package->ecl-package sbcl-cl-fastcgi))
5147
5148 (define-public sbcl-clack
5149 (let ((commit "e3e032843bb1220ab96263c411aa7f2feb4746e0")
5150 (revision "1"))
5151 (package
5152 (name "sbcl-clack")
5153 (version (git-version "2.0.0" revision commit))
5154 (source
5155 (origin
5156 (method git-fetch)
5157 (uri (git-reference
5158 (url "https://github.com/fukamachi/clack")
5159 (commit commit)))
5160 (file-name (git-file-name name version))
5161 (sha256
5162 (base32 "1ymzs6qyrwhlj6cgqsnpyn6g5cbp7a3s1vgxwna20y2q7y4iacy0"))))
5163 (build-system asdf-build-system/sbcl)
5164 (inputs
5165 `(("alexandria" ,sbcl-alexandria)
5166 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5167 ("cl-fastcgi" ,sbcl-cl-fastcgi)
5168 ("flexi-streams" ,sbcl-flexi-streams)
5169 ("hunchentoot" ,sbcl-hunchentoot)
5170 ("lack" ,sbcl-lack)
5171 ("split-sequence" ,sbcl-split-sequence)
5172 ("usocket" ,sbcl-usocket)
5173 ("quri" ,sbcl-quri)))
5174 (arguments
5175 '(#:asd-systems '("clack"
5176 "clack-handler-fcgi"
5177 "clack-socket"
5178 "clack-handler-hunchentoot")))
5179 (home-page "https://github.com/fukamachi/clack")
5180 (synopsis "Web Application Environment for Common Lisp")
5181 (description
5182 "Clack is a web application environment for Common Lisp inspired by
5183 Python's WSGI and Ruby's Rack.")
5184 (license license:llgpl))))
5185
5186 (define-public cl-clack
5187 (sbcl-package->cl-source-package sbcl-clack))
5188
5189 (define-public ecl-clack
5190 (sbcl-package->ecl-package sbcl-clack))
5191
5192 (define-public sbcl-cl-log
5193 (let ((commit "8f4b766d51e02245c310526cf1e4534ce634f837")
5194 (revision "1"))
5195 (package
5196 (name "sbcl-cl-log")
5197 (version "1.0.1")
5198 (source
5199 (origin
5200 (method git-fetch)
5201 (uri (git-reference
5202 (url "https://github.com/nicklevine/cl-log")
5203 (commit commit)))
5204 (sha256
5205 (base32 "1r3z9swy1b59swvaa5b97is9ysrfmjvjjhhw56p7p5hqg93b92ak"))
5206 (file-name (git-file-name "cl-log" version))))
5207 (build-system asdf-build-system/sbcl)
5208 (synopsis "Common Lisp general purpose logging utility")
5209 (description "CL-LOG is a general purpose logging utility, loosely modelled
5210 in some respects after Gary King's Log5. Its features include: logging to
5211 several destinations at once, via \"messengers\", each messenger is tailored to
5212 accept some log messages and reject others, and this tailoring can be changed
5213 on-the-fly, very rapid processing of messages which are rejected by all
5214 messengers, fully independent use of the utility by several different
5215 sub-systems in an application, support for messengers which cl:format text to a
5216 stream, support for messengers which do not invoke cl:format, timestamps in
5217 theory accurate to internal-time-units-per-second.")
5218 (home-page "https://github.com/nicklevine/cl-log")
5219 (license license:expat))))
5220
5221 (define-public cl-log
5222 (sbcl-package->cl-source-package sbcl-cl-log))
5223
5224 (define-public ecl-cl-log
5225 (sbcl-package->ecl-package sbcl-cl-log))
5226
5227 (define-public sbcl-log4cl
5228 (let ((commit "8c48d6f41d3a1475d0a91eed0638b9eecc398e35")
5229 (revision "1"))
5230 (package
5231 (name "sbcl-log4cl")
5232 (version (git-version "1.1.3" revision commit))
5233 (source
5234 (origin
5235 (method git-fetch)
5236 (uri (git-reference
5237 (url "https://github.com/sharplispers/log4cl")
5238 (commit commit)))
5239 (file-name (git-file-name "log4cl" version))
5240 (sha256
5241 (base32 "0166d9aip366pbpdk5gsi2f6xad6q61lssxgbrypa8zslwjn8736"))))
5242 (build-system asdf-build-system/sbcl)
5243 (native-inputs
5244 `(("stefil" ,sbcl-stefil)))
5245 (inputs
5246 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
5247 (home-page "https://github.com/7max/log4cl")
5248 (synopsis "Common Lisp logging framework, modeled after Log4J")
5249 (description
5250 "This is a Common Lisp logging framework that can log at various levels
5251 and mix text with expressions.")
5252 (license license:asl2.0))))
5253
5254 (define-public cl-log4cl
5255 (sbcl-package->cl-source-package sbcl-log4cl))
5256
5257 (define-public ecl-log4cl
5258 (sbcl-package->ecl-package sbcl-log4cl))
5259
5260 (define-public sbcl-printv
5261 (let ((commit "646d31978dbbb460fffb160fd65bb2be9a5a434e")
5262 (revision "1"))
5263 (package
5264 (name "sbcl-printv")
5265 (version (git-version "0.1.0" revision commit))
5266 (source
5267 (origin
5268 (method git-fetch)
5269 (uri (git-reference
5270 (url "https://github.com/danlentz/printv")
5271 (commit commit)))
5272 (file-name (git-file-name "printv" version))
5273 (sha256
5274 (base32 "08jvy82abm7qi3wrxh6gvmwg9gy0zzhg4cfqajdwrggbah8mj5a6"))))
5275 (build-system asdf-build-system/sbcl)
5276 (home-page "https://github.com/danlentz/printv")
5277 (synopsis "Common Lisp tracing and debug-logging macro")
5278 (description
5279 "@code{PRINTV} is a \"batteries-included\" tracing and debug-logging
5280 macro for Common Lisp.")
5281 (license license:asl2.0))))
5282
5283 (define-public ecl-printv
5284 (sbcl-package->ecl-package sbcl-printv))
5285
5286 (define-public cl-printv
5287 (sbcl-package->cl-source-package sbcl-printv))
5288
5289 (define-public sbcl-cl-debug
5290 (let ((commit "b334280806104ee7f7d3aec666bf7e08d2f89b31")
5291 (revision "1"))
5292 (package
5293 (name "sbcl-cl-debug")
5294 (version (git-version "1.0.0" revision commit))
5295 (source
5296 (origin
5297 (method git-fetch)
5298 (uri (git-reference
5299 (url "https://github.com/kmx-io/cl-debug")
5300 (commit commit)))
5301 (file-name (git-file-name "cl-debug" version))
5302 (sha256
5303 (base32 "0w5vxbjsgr3zfpivdmghmhzxskfdvm1p34c8whwps2xlhypxsa78"))))
5304 (build-system asdf-build-system/sbcl)
5305 (home-page "https://github.com/kmx-io/cl-debug")
5306 (synopsis "Common Lisp cross-package debugging facility")
5307 (description
5308 "CL-DEBUG provides a unified way to enable or disable debug-specific code.
5309 Debugging code can be enabled or disabled relative to program features denoted
5310 by either a symbol or a keyword.")
5311 (license license:isc))))
5312
5313 (define-public ecl-cl-debug
5314 (sbcl-package->ecl-package sbcl-cl-debug))
5315
5316 (define-public cl-debug
5317 (sbcl-package->cl-source-package sbcl-cl-debug))
5318
5319 (define-public sbcl-verbose
5320 (let ((commit "c5b7ecd465be61b35af17ef57564697b88397174")
5321 (revision "1"))
5322 (package
5323 (name "sbcl-verbose")
5324 (version (git-version "2.0.0" revision commit))
5325 (source
5326 (origin
5327 (method git-fetch)
5328 (uri (git-reference
5329 (url "https://github.com/Shinmera/verbose/")
5330 (commit commit)))
5331 (file-name (git-file-name "verbose" version))
5332 (sha256
5333 (base32 "0r51ydj5v7afi2jrlscbhxprv13d9vzg5316g1yzwaxc1kzsdsw6"))))
5334 (build-system asdf-build-system/sbcl)
5335 (inputs
5336 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
5337 ("dissect" ,sbcl-dissect)
5338 ("documentation-utils" ,sbcl-documentation-utils)
5339 ("local-time" ,sbcl-local-time)
5340 ("piping" ,sbcl-piping)))
5341 (home-page "https://shinmera.github.io/verbose/")
5342 (synopsis "Logging framework using the piping library")
5343 (description
5344 "This is a Common Lisp library providing logging faciltiy similar to
5345 @code{CL-LOG} and @code{LOG4CL}.")
5346 (license license:zlib))))
5347
5348 (define-public ecl-verbose
5349 (sbcl-package->ecl-package sbcl-verbose))
5350
5351 (define-public cl-verbose
5352 (sbcl-package->cl-source-package sbcl-verbose))
5353
5354 (define-public sbcl-find-port
5355 (let ((commit "00c96a25af93a0f8681d34ec548861f2d7485478")
5356 (revision "1"))
5357 (package
5358 (name "sbcl-find-port")
5359 (build-system asdf-build-system/sbcl)
5360 (version "0.1")
5361 (home-page "https://github.com/eudoxia0/find-port")
5362 (source
5363 (origin
5364 (method git-fetch)
5365 (uri (git-reference
5366 (url home-page)
5367 (commit commit)))
5368 (file-name (git-file-name name version))
5369 (sha256
5370 (base32
5371 "0d6dzbb45jh0rx90wgs6v020k2xa87mvzas3mvfzvivjvqqlpryq"))))
5372 (native-inputs
5373 `(("fiveam" ,sbcl-fiveam)))
5374 (inputs
5375 `(("sbcl-usocket" ,sbcl-usocket)))
5376 (synopsis "Find open ports programmatically in Common Lisp")
5377 (description "This is a small Common Lisp library that finds an open
5378 port within a range.")
5379 (license license:expat))))
5380
5381 (define-public cl-find-port
5382 (sbcl-package->cl-source-package sbcl-find-port))
5383
5384 (define-public ecl-find-port
5385 (sbcl-package->ecl-package sbcl-find-port))
5386
5387 (define-public sbcl-clunit
5388 (let ((commit "6f6d72873f0e1207f037470105969384f8380628")
5389 (revision "1"))
5390 (package
5391 (name "sbcl-clunit")
5392 (version (git-version "0.2.3" revision commit))
5393 (source
5394 (origin
5395 (method git-fetch)
5396 (uri (git-reference
5397 (url "https://github.com/tgutu/clunit")
5398 (commit commit)))
5399 (file-name (git-file-name name version))
5400 (sha256
5401 (base32
5402 "1idf2xnqzlhi8rbrqmzpmb3i1l6pbdzhhajkmhwbp6qjkmxa4h85"))))
5403 (build-system asdf-build-system/sbcl)
5404 (synopsis "CLUnit is a Common Lisp unit testing framework")
5405 (description
5406 "CLUnit is a Common Lisp unit testing framework. It is designed
5407 to be easy to use so that you can quickly start testing. CLUnit
5408 provides a rich set of features aimed at improving your unit testing
5409 experience.")
5410 (home-page "https://tgutu.github.io/clunit/")
5411 ;; MIT License
5412 (license license:expat))))
5413
5414 (define-public cl-clunit
5415 (sbcl-package->cl-source-package sbcl-clunit))
5416
5417 (define-public ecl-clunit
5418 (sbcl-package->ecl-package sbcl-clunit))
5419
5420 (define-public sbcl-py4cl
5421 (let ((commit "4c8a2b0814fd311f978964f825ce012290f60136")
5422 (revision "1"))
5423 (package
5424 (name "sbcl-py4cl")
5425 (version (git-version "0.0.0" revision commit))
5426 (source
5427 (origin
5428 (method git-fetch)
5429 (uri (git-reference
5430 (url "https://github.com/bendudson/py4cl")
5431 (commit commit)))
5432 (file-name (git-file-name name version))
5433 (sha256
5434 (base32
5435 "15mk7qdqjkj56gdnbyrdyz6r7m1h26ldvn6ch96pmvg5vmr1m45r"))
5436 (modules '((guix build utils)))))
5437 (build-system asdf-build-system/sbcl)
5438 (native-inputs
5439 `(("sbcl-clunit" ,sbcl-clunit)))
5440 (inputs
5441 `(("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5442 (propagated-inputs
5443 ;; This package doesn't do anything without python available
5444 `(("python" ,python)
5445 ;; For multi-dimensional array support
5446 ("python-numpy" ,python-numpy)))
5447 (arguments
5448 '(#:phases
5449 (modify-phases %standard-phases
5450 (add-after 'unpack 'replace-*base-directory*-var
5451 (lambda* (#:key outputs #:allow-other-keys)
5452 ;; In the ASD, the author makes an attempt to
5453 ;; programatically determine the location of the
5454 ;; source-code so lisp can call into "py4cl.py". We can
5455 ;; hard-code this since we know where this file will
5456 ;; reside.
5457 (substitute* "src/callpython.lisp"
5458 (("py4cl/config:\\*base-directory\\*")
5459 (string-append
5460 "\""
5461 (assoc-ref outputs "out")
5462 "/share/common-lisp/sbcl-source/py4cl/"
5463 "\""))))))))
5464 (synopsis "Call python from Common Lisp")
5465 (description
5466 "Py4CL is a bridge between Common Lisp and Python, which enables Common
5467 Lisp to interact with Python code. It uses streams to communicate with a
5468 separate python process, the approach taken by cl4py. This is different to
5469 the CFFI approach used by burgled-batteries, but has the same goal.")
5470 (home-page "https://github.com/bendudson/py4cl")
5471 ;; MIT License
5472 (license license:expat))))
5473
5474 (define-public cl-py4cl
5475 (sbcl-package->cl-source-package sbcl-py4cl))
5476
5477 (define-public ecl-py4cl
5478 (sbcl-package->ecl-package sbcl-py4cl))
5479
5480 (define-public sbcl-parse-declarations
5481 (let ((commit "549aebbfb9403a7fe948654126b9c814f443f4f2")
5482 (revision "1"))
5483 (package
5484 (name "sbcl-parse-declarations")
5485 (version (git-version "1.0.0" revision commit))
5486 (source
5487 (origin
5488 (method git-fetch)
5489 (uri (git-reference
5490 (url (string-append
5491 "https://gitlab.common-lisp.net/parse-declarations/"
5492 "parse-declarations.git"))
5493 (commit commit)))
5494 (file-name (git-file-name name version))
5495 (sha256
5496 (base32 "03g5qks4c59nmxa48pbslxkfh77h8hn8566jddp6m9pl15dzzpxd"))))
5497 (build-system asdf-build-system/sbcl)
5498 (arguments
5499 `(#:asd-systems '("parse-declarations-1.0")))
5500 (home-page "https://common-lisp.net/project/parse-declarations/")
5501 (synopsis "Parse, filter, and build declarations")
5502 (description
5503 "Parse-Declarations is a Common Lisp library to help writing
5504 macros which establish bindings. To be semantically correct, such
5505 macros must take user declarations into account, as these may affect
5506 the bindings they establish. Yet the ANSI standard of Common Lisp does
5507 not provide any operators to work with declarations in a convenient,
5508 high-level way. This library provides such operators.")
5509 ;; MIT License
5510 (license license:expat))))
5511
5512 (define-public cl-parse-declarations
5513 (sbcl-package->cl-source-package sbcl-parse-declarations))
5514
5515 (define-public ecl-parse-declarations
5516 (sbcl-package->ecl-package sbcl-parse-declarations))
5517
5518 (define-public sbcl-cl-quickcheck
5519 (let ((commit "807b2792a30c883a2fbecea8e7db355b50ba662f")
5520 (revision "1"))
5521 (package
5522 (name "sbcl-cl-quickcheck")
5523 (version (git-version "0.0.4" revision commit))
5524 (source
5525 (origin
5526 (method git-fetch)
5527 (uri (git-reference
5528 (url "https://github.com/mcandre/cl-quickcheck")
5529 (commit commit)))
5530 (file-name (git-file-name name version))
5531 (sha256
5532 (base32
5533 "165lhypq5xkcys6hvzb3jq7ywnmqvzaflda29qk2cbs3ggas4767"))))
5534 (build-system asdf-build-system/sbcl)
5535 (synopsis
5536 "Common Lisp port of the QuickCheck unit test framework")
5537 (description
5538 "Common Lisp port of the QuickCheck unit test framework")
5539 (home-page "https://github.com/mcandre/cl-quickcheck")
5540 ;; MIT
5541 (license license:expat))))
5542
5543 (define-public cl-quickcheck
5544 (sbcl-package->cl-source-package sbcl-cl-quickcheck))
5545
5546 (define-public ecl-cl-quickcheck
5547 (sbcl-package->ecl-package sbcl-cl-quickcheck))
5548
5549 (define-public sbcl-burgled-batteries3
5550 (let ((commit "f65f454d13bb6c40e17e9ec62e41eb5069e09760")
5551 (revision "2"))
5552 (package
5553 (name "sbcl-burgled-batteries3")
5554 (version (git-version "0.0.0" revision commit))
5555 (source
5556 (origin
5557 (method git-fetch)
5558 (uri (git-reference
5559 (url "https://github.com/snmsts/burgled-batteries3")
5560 (commit commit)))
5561 (file-name (git-file-name name version))
5562 (sha256
5563 (base32
5564 "1nzn7jawrfajyzwfnzrg2cmn9xxadcqh4szbpg0jggkhdkdzz4wa"))))
5565 (build-system asdf-build-system/sbcl)
5566 (arguments
5567 `(#:tests? #f
5568 #:modules (((guix build python-build-system) #:select (python-version))
5569 ,@%asdf-build-system-modules)
5570 #:imported-modules ((guix build python-build-system)
5571 ,@%asdf-build-system-modules)
5572 #:phases
5573 (modify-phases (@ (guix build asdf-build-system) %standard-phases)
5574 (add-after 'unpack 'set-*cpython-include-dir*-var
5575 (lambda* (#:key inputs #:allow-other-keys)
5576 (let ((python (assoc-ref inputs "python")))
5577 (setenv "BB_PYTHON3_INCLUDE_DIR"
5578 (string-append python "/include/python"
5579 (python-version python)))
5580 (setenv "BB_PYTHON3_DYLIB"
5581 (string-append python "/lib/libpython3.so"))
5582 #t)))
5583 (add-after 'unpack 'adjust-for-python-3.8
5584 (lambda _
5585 ;; This method is no longer part of the public API.
5586 (substitute* "ffi-interface.lisp"
5587 ((".*PyEval_ReInitThreads.*")
5588 ""))
5589 #t)))))
5590 (native-inputs
5591 `(("sbcl-cl-fad" ,sbcl-cl-fad)
5592 ("sbcl-lift" ,sbcl-lift)
5593 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5594 (inputs
5595 `(("python" ,python)
5596 ("sbcl-cffi" ,sbcl-cffi)
5597 ("sbcl-alexandria" , sbcl-alexandria)
5598 ("sbcl-parse-declarations-1.0" ,sbcl-parse-declarations)
5599 ("sbcl-trivial-garbage" ,sbcl-trivial-garbage)))
5600 (synopsis "Bridge between Python and Lisp (FFI bindings, etc.)")
5601 (description
5602 "This package provides a shim between Python3 (specifically, the
5603 CPython implementation of Python) and Common Lisp.")
5604 (home-page "https://github.com/snmsts/burgled-batteries3")
5605 (license license:expat))))
5606
5607 (define-public cl-burgled-batteries3
5608 (sbcl-package->cl-source-package sbcl-burgled-batteries3))
5609
5610 (define-public ecl-burgled-batteries3
5611 (sbcl-package->ecl-package sbcl-burgled-batteries3))
5612
5613 (define-public sbcl-metabang-bind
5614 (let ((commit "c93b7f7e1c18c954c2283efd6a7fdab36746ab5e")
5615 (revision "1"))
5616 (package
5617 (name "sbcl-metabang-bind")
5618 (version (git-version "0.8.0" revision commit))
5619 (source
5620 (origin
5621 (method git-fetch)
5622 (uri (git-reference
5623 (url "https://github.com/gwkkwg/metabang-bind")
5624 (commit commit)))
5625 (file-name (git-file-name name version))
5626 (sha256
5627 (base32
5628 "0hd0kr91795v77akpbcyqiss9p0p7ypa9dznrllincnmgvsxlmf0"))))
5629 (build-system asdf-build-system/sbcl)
5630 (native-inputs
5631 `(("sbcl-lift" ,sbcl-lift)))
5632 (synopsis "Macro that generalizes @code{multiple-value-bind} etc.")
5633 (description
5634 "Bind extends the idea of of let and destructing to provide a uniform
5635 syntax for all your accessor needs. It combines @code{let},
5636 @code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5637 editing, property or association-lists, and @code{multiple-value-bind} and a
5638 whole lot more into a single form.")
5639 (home-page "https://common-lisp.net/project/metabang-bind/")
5640 ;; MIT License
5641 (license license:expat))))
5642
5643 (define-public cl-metabang-bind
5644 (sbcl-package->cl-source-package sbcl-metabang-bind))
5645
5646 (define-public ecl-metabang-bind
5647 (sbcl-package->ecl-package sbcl-metabang-bind))
5648
5649 (define-public sbcl-fare-utils
5650 (let ((commit "66e9c6f1499140bc00ccc22febf2aa528cbb5724")
5651 (revision "1"))
5652 (package
5653 (name "sbcl-fare-utils")
5654 (version (git-version "1.0.0.5" revision commit))
5655 (source
5656 (origin
5657 (method git-fetch)
5658 (uri
5659 (git-reference
5660 (url
5661 "https://gitlab.common-lisp.net/frideau/fare-utils.git")
5662 (commit commit)))
5663 (file-name (git-file-name name version))
5664 (sha256
5665 (base32
5666 "01wsr1aap3jdzhn4hrqjbhsjx6qci9dbd3gh4gayv1p49rbg8aqr"))))
5667 (build-system asdf-build-system/sbcl)
5668 (arguments
5669 `(#:test-asd-file "test/fare-utils-test.asd"))
5670 (native-inputs
5671 `(("sbcl-hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5672 (synopsis "Collection of utilities and data structures")
5673 (description
5674 "fare-utils is a small collection of utilities. It contains a lot of
5675 basic everyday functions and macros.")
5676 (home-page "https://gitlab.common-lisp.net/frideau/fare-utils")
5677 ;; MIT License
5678 (license license:expat))))
5679
5680 (define-public cl-fare-utils
5681 (sbcl-package->cl-source-package sbcl-fare-utils))
5682
5683 (define-public ecl-fare-utils
5684 (sbcl-package->ecl-package sbcl-fare-utils))
5685
5686 (define-public sbcl-trivial-utf-8
5687 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5688 (revision "1"))
5689 (package
5690 (name "sbcl-trivial-utf-8")
5691 (version (git-version "0.0.0" revision commit))
5692 (source
5693 (origin
5694 (method git-fetch)
5695 (uri
5696 (git-reference
5697 (url (string-append "https://gitlab.common-lisp.net/"
5698 "trivial-utf-8/trivial-utf-8.git"))
5699 (commit commit)))
5700 (file-name (git-file-name name version))
5701 (sha256
5702 (base32
5703 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5704 (arguments
5705 ;; Guix incorrectly assumes the "8" is part of the version
5706 ;; number and lobs it off.
5707 `(#:asd-systems '("trivial-utf-8")))
5708 (build-system asdf-build-system/sbcl)
5709 (synopsis "UTF-8 input/output library")
5710 (description
5711 "The Babel library solves a similar problem while understanding more
5712 encodings. Trivial UTF-8 was written before Babel existed, but for new
5713 projects you might be better off going with Babel. The one plus that Trivial
5714 UTF-8 has is that it doesn't depend on any other libraries.")
5715 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5716 (license license:bsd-3))))
5717
5718 (define-public cl-trivial-utf-8
5719 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5720
5721 (define-public ecl-trivial-utf-8
5722 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5723
5724 (define-public sbcl-idna
5725 (package
5726 (name "sbcl-idna")
5727 (build-system asdf-build-system/sbcl)
5728 (version "0.2.2")
5729 (home-page "https://github.com/antifuchs/idna")
5730 (source
5731 (origin
5732 (method git-fetch)
5733 (uri (git-reference
5734 (url home-page)
5735 (commit version)))
5736 (file-name (git-file-name name version))
5737 (sha256
5738 (base32
5739 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5740 (inputs
5741 `(("split-sequence" ,sbcl-split-sequence)))
5742 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5743 (description "This Common Lisp library provides string encoding and
5744 decoding routines for IDNA, the International Domain Names in Applications.")
5745 (license license:expat)))
5746
5747 (define-public cl-idna
5748 (sbcl-package->cl-source-package sbcl-idna))
5749
5750 (define-public ecl-idna
5751 (sbcl-package->ecl-package sbcl-idna))
5752
5753 (define-public sbcl-swap-bytes
5754 (package
5755 (name "sbcl-swap-bytes")
5756 (build-system asdf-build-system/sbcl)
5757 (version "1.2")
5758 (home-page "https://github.com/sionescu/swap-bytes")
5759 (source
5760 (origin
5761 (method git-fetch)
5762 (uri (git-reference
5763 (url home-page)
5764 (commit (string-append "v" version))))
5765 (file-name (git-file-name name version))
5766 (sha256
5767 (base32
5768 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
5769 (inputs
5770 `(("trivial-features" ,sbcl-trivial-features)))
5771 (native-inputs
5772 `(("fiveam" ,sbcl-fiveam)))
5773 (synopsis "Efficient endianness conversion for Common Lisp")
5774 (description "This Common Lisp library provides optimized byte-swapping
5775 primitives. The library can change endianness of unsigned integers of length
5776 1/2/4/8. Very useful in implementing various network protocols and file
5777 formats.")
5778 (license license:expat)))
5779
5780 (define-public cl-swap-bytes
5781 (sbcl-package->cl-source-package sbcl-swap-bytes))
5782
5783 (define-public ecl-swap-bytes
5784 (sbcl-package->ecl-package sbcl-swap-bytes))
5785
5786 (define-public sbcl-iolib
5787 ;; Latest release is from June 2017.
5788 (let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
5789 (revision "2"))
5790 (package
5791 (name "sbcl-iolib")
5792 (version (git-version "0.8.3" revision commit))
5793 (home-page "https://github.com/sionescu/iolib")
5794 (source
5795 (origin
5796 (method git-fetch)
5797 (uri (git-reference
5798 (url home-page)
5799 (commit commit)))
5800 (file-name (git-file-name name version))
5801 (sha256
5802 (base32
5803 "1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
5804 (build-system asdf-build-system/sbcl)
5805 (inputs
5806 `(("alexandria" ,sbcl-alexandria)
5807 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5808 ("cffi" ,sbcl-cffi)
5809 ("idna" ,sbcl-idna)
5810 ("libfixposix" ,libfixposix)
5811 ("split-sequence" ,sbcl-split-sequence)
5812 ("swap-bytes" ,sbcl-swap-bytes)))
5813 (arguments
5814 '(#:asd-files '("iolib.asdf.asd"
5815 "iolib.conf.asd"
5816 "iolib.common-lisp.asd"
5817 "iolib.base.asd"
5818 "iolib.asd")
5819 #:phases
5820 (modify-phases %standard-phases
5821 (add-after 'unpack 'fix-paths
5822 (lambda* (#:key inputs #:allow-other-keys)
5823 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5824 (("\\(:default \"libfixposix\"\\)")
5825 (string-append
5826 "(:default \""
5827 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5828 ;; Socket tests need Internet access, disable them.
5829 (substitute* "iolib.asd"
5830 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5831 "")))))))
5832 (synopsis "Common Lisp I/O library")
5833 (description "IOlib is to be a better and more modern I/O library than
5834 the standard Common Lisp library. It contains a socket library, a DNS
5835 resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5836 and @code{kqueue(2)}), a pathname library and file-system utilities.")
5837 (license license:expat))))
5838
5839 (define-public cl-iolib
5840 (let ((parent (sbcl-package->cl-source-package sbcl-iolib)))
5841 (package
5842 (inherit parent)
5843 (propagated-inputs
5844 ;; Need header to compile.
5845 `(("libfixposix" ,libfixposix)
5846 ,@(package-propagated-inputs parent))))))
5847
5848 (define-public ecl-iolib
5849 (sbcl-package->ecl-package sbcl-iolib))
5850
5851 (define-public sbcl-ieee-floats
5852 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5853 (revision "1"))
5854 (package
5855 (name "sbcl-ieee-floats")
5856 (build-system asdf-build-system/sbcl)
5857 (version (git-version "20170924" revision commit))
5858 (home-page "https://github.com/marijnh/ieee-floats/")
5859 (source
5860 (origin
5861 (method git-fetch)
5862 (uri (git-reference
5863 (url home-page)
5864 (commit commit)))
5865 (file-name (git-file-name name version))
5866 (sha256
5867 (base32
5868 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5869 (native-inputs
5870 `(("fiveam" ,sbcl-fiveam)))
5871 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
5872 (description "This is a Common Lisp library that converts
5873 floating point values to IEEE 754 binary representation.")
5874 (license license:bsd-3))))
5875
5876 (define-public cl-ieee-floats
5877 (sbcl-package->cl-source-package sbcl-ieee-floats))
5878
5879 (define-public ecl-ieee-floats
5880 (sbcl-package->ecl-package sbcl-ieee-floats))
5881
5882 (define sbcl-closure-common
5883 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5884 (revision "1"))
5885 (package
5886 (name "sbcl-closure-common")
5887 (build-system asdf-build-system/sbcl)
5888 (version (git-version "20101006" revision commit))
5889 (home-page "https://common-lisp.net/project/cxml/")
5890 (source
5891 (origin
5892 (method git-fetch)
5893 (uri (git-reference
5894 (url "https://github.com/sharplispers/closure-common")
5895 (commit commit)))
5896 (file-name (git-file-name name version))
5897 (sha256
5898 (base32
5899 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5900 (inputs
5901 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5902 ("babel" ,sbcl-babel)))
5903 (synopsis "Support Common Lisp library for CXML")
5904 (description "Closure-common is an internal helper library. The name
5905 Closure is a reference to the web browser it was originally written for.")
5906 ;; TODO: License?
5907 (license #f))))
5908
5909 (define-public sbcl-cxml
5910 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5911 (revision "1"))
5912 (package
5913 (name "sbcl-cxml")
5914 (version (git-version "0.0.0" revision commit))
5915 (source
5916 (origin
5917 (method git-fetch)
5918 (uri (git-reference
5919 (url "https://github.com/sharplispers/cxml")
5920 (commit commit)))
5921 (file-name (git-file-name name version))
5922 (sha256
5923 (base32
5924 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
5925 (build-system asdf-build-system/sbcl)
5926 (inputs
5927 `(("closure-common" ,sbcl-closure-common)
5928 ("puri" ,sbcl-puri)
5929 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
5930 (synopsis "Common Lisp XML parser")
5931 (description "CXML implements a namespace-aware, validating XML 1.0
5932 parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
5933 offered, one SAX-like, the other similar to StAX.")
5934 (home-page "https://common-lisp.net/project/cxml/")
5935 (license license:llgpl))))
5936
5937 (define-public cl-cxml
5938 (sbcl-package->cl-source-package sbcl-cxml))
5939
5940 (define-public ecl-cxml
5941 (sbcl-package->ecl-package sbcl-cxml))
5942
5943 (define-public sbcl-cl-reexport
5944 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
5945 (revision "1"))
5946 (package
5947 (name "sbcl-cl-reexport")
5948 (build-system asdf-build-system/sbcl)
5949 (version (git-version "0.1" revision commit))
5950 (home-page "https://github.com/takagi/cl-reexport")
5951 (source
5952 (origin
5953 (method git-fetch)
5954 (uri (git-reference
5955 (url home-page)
5956 (commit commit)))
5957 (file-name (git-file-name name version))
5958 (sha256
5959 (base32
5960 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
5961 (inputs
5962 `(("alexandria" ,sbcl-alexandria)))
5963 (arguments
5964 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
5965 `(#:tests? #f))
5966 (synopsis "HTTP cookie manager for Common Lisp")
5967 (description "cl-cookie is a Common Lisp library featuring parsing of
5968 cookie headers, cookie creation, cookie jar creation and more.")
5969 (license license:llgpl))))
5970
5971 (define-public cl-reexport
5972 (sbcl-package->cl-source-package sbcl-cl-reexport))
5973
5974 (define-public ecl-cl-reexport
5975 (sbcl-package->ecl-package sbcl-cl-reexport))
5976
5977 (define-public sbcl-cl-cookie
5978 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
5979 (revision "1"))
5980 (package
5981 (name "sbcl-cl-cookie")
5982 (build-system asdf-build-system/sbcl)
5983 (version (git-version "0.9.10" revision commit))
5984 (home-page "https://github.com/fukamachi/cl-cookie")
5985 (source
5986 (origin
5987 (method git-fetch)
5988 (uri (git-reference
5989 (url home-page)
5990 (commit commit)))
5991 (file-name (git-file-name name version))
5992 (sha256
5993 (base32
5994 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
5995 (inputs
5996 `(("proc-parse" ,sbcl-proc-parse)
5997 ("alexandria" ,sbcl-alexandria)
5998 ("quri" ,sbcl-quri)
5999 ("cl-ppcre" ,sbcl-cl-ppcre)
6000 ("local-time" ,sbcl-local-time)))
6001 (native-inputs
6002 `(("prove" ,sbcl-prove)))
6003 (arguments
6004 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
6005 `(#:tests? #f))
6006 (synopsis "HTTP cookie manager for Common Lisp")
6007 (description "cl-cookie is a Common Lisp library featuring parsing of
6008 cookie headers, cookie creation, cookie jar creation and more.")
6009 (license license:bsd-2))))
6010
6011 (define-public cl-cookie
6012 (sbcl-package->cl-source-package sbcl-cl-cookie))
6013
6014 (define-public ecl-cl-cookie
6015 (sbcl-package->ecl-package sbcl-cl-cookie))
6016
6017 (define-public sbcl-dexador
6018 (let ((commit "953090f04c4d1a9ee6632b90133cdc297b68badc")
6019 (revision "1"))
6020 (package
6021 (name "sbcl-dexador")
6022 (build-system asdf-build-system/sbcl)
6023 (version "0.9.14" )
6024 (home-page "https://github.com/fukamachi/dexador")
6025 (source
6026 (origin
6027 (method git-fetch)
6028 (uri (git-reference
6029 (url home-page)
6030 (commit commit)))
6031 (file-name (git-file-name name version))
6032 (sha256
6033 (base32
6034 "0w18fz3301rpmwc3kwb810czcd24mbf7r1z8vdyc0v5crjfpw3mn"))))
6035 (inputs
6036 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
6037 ("babel" ,sbcl-babel)
6038 ("usocket" ,sbcl-usocket)
6039 ("fast-http" ,sbcl-fast-http)
6040 ("quri" ,sbcl-quri)
6041 ("fast-io" ,sbcl-fast-io)
6042 ("chunga" ,sbcl-chunga)
6043 ("cl-ppcre" ,sbcl-cl-ppcre)
6044 ("cl-cookie" ,sbcl-cl-cookie)
6045 ("trivial-mimes" ,sbcl-trivial-mimes)
6046 ("chipz" ,sbcl-chipz)
6047 ("cl-base64" ,sbcl-cl-base64)
6048 ("cl-reexport" ,sbcl-cl-reexport)
6049 ("cl+ssl" ,sbcl-cl+ssl)
6050 ("bordeaux-threads" ,sbcl-bordeaux-threads)
6051 ("alexandria" ,sbcl-alexandria)))
6052 (native-inputs
6053 `(("prove" ,sbcl-prove)
6054 ("lack" ,sbcl-lack)
6055 ("clack" ,sbcl-clack)
6056 ("babel" ,sbcl-babel)
6057 ("alexandria" ,sbcl-alexandria)
6058 ("cl-ppcre" ,sbcl-cl-ppcre)
6059 ("local-time" ,sbcl-local-time)
6060 ("trivial-features" ,sbcl-trivial-features)))
6061 (arguments
6062 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
6063 `(#:tests? #f
6064 #:phases
6065 (modify-phases %standard-phases
6066 (add-after 'unpack 'fix-permissions
6067 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
6068 (synopsis "Yet another HTTP client for Common Lisp")
6069 (description "Dexador is yet another HTTP client for Common Lisp with
6070 neat APIs and connection-pooling. It is meant to supersede Drakma.")
6071 (license license:expat))))
6072
6073 (define-public cl-dexador
6074 (package
6075 (inherit (sbcl-package->cl-source-package sbcl-dexador))
6076 (arguments
6077 `(#:phases
6078 ;; asdf-build-system/source has its own phases and does not inherit
6079 ;; from asdf-build-system/sbcl phases.
6080 (modify-phases %standard-phases/source
6081 ;; Already done in SBCL package.
6082 (delete 'reset-gzip-timestamps))))))
6083
6084 (define-public ecl-dexador
6085 (sbcl-package->ecl-package sbcl-dexador))
6086
6087 (define-public sbcl-lisp-namespace
6088 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
6089 (revision "1"))
6090 (package
6091 (name "sbcl-lisp-namespace")
6092 (build-system asdf-build-system/sbcl)
6093 (version (git-version "0.1" revision commit))
6094 (home-page "https://github.com/guicho271828/lisp-namespace")
6095 (source
6096 (origin
6097 (method git-fetch)
6098 (uri (git-reference
6099 (url home-page)
6100 (commit commit)))
6101 (file-name (git-file-name name version))
6102 (sha256
6103 (base32
6104 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
6105 (inputs
6106 `(("alexandria" ,sbcl-alexandria)))
6107 (native-inputs
6108 `(("fiveam" ,sbcl-fiveam)))
6109 (arguments
6110 `(#:test-asd-file "lisp-namespace.test.asd"
6111 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
6112 #:tests? #f))
6113 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
6114 (description "Common Lisp already has major 2 namespaces, function
6115 namespace and value namespace (or variable namespace), but there are actually
6116 more — e.g., class namespace.
6117 This library offers macros to deal with symbols from any namespace.")
6118 (license license:llgpl))))
6119
6120 (define-public cl-lisp-namespace
6121 (sbcl-package->cl-source-package sbcl-lisp-namespace))
6122
6123 (define-public ecl-lisp-namespace
6124 (sbcl-package->ecl-package sbcl-lisp-namespace))
6125
6126 (define-public sbcl-trivial-cltl2
6127 (let ((commit "8a3bda30dc25d2f65fcf514d0eb6e6db75252c61")
6128 (revision "2"))
6129 (package
6130 (name "sbcl-trivial-cltl2")
6131 (build-system asdf-build-system/sbcl)
6132 (version (git-version "0.1.1" revision commit))
6133 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
6134 (source
6135 (origin
6136 (method git-fetch)
6137 (uri (git-reference
6138 (url home-page)
6139 (commit commit)))
6140 (file-name (git-file-name name version))
6141 (sha256
6142 (base32
6143 "08cnzb9rnczn4pn2zpf0587ny4wjy1mjndy885fz9pw7xrlx37ip"))))
6144 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
6145 (description "This library is a portable compatibility layer around
6146 \"Common Lisp the Language, 2nd
6147 Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
6148 and it exports symbols from implementation-specific packages.")
6149 (license license:llgpl))))
6150
6151 (define-public cl-trivial-cltl2
6152 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
6153
6154 (define-public ecl-trivial-cltl2
6155 (sbcl-package->ecl-package sbcl-trivial-cltl2))
6156
6157 (define-public sbcl-introspect-environment
6158 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
6159 (revision "1"))
6160 (package
6161 (name "sbcl-introspect-environment")
6162 (build-system asdf-build-system/sbcl)
6163 (version (git-version "0.1" revision commit))
6164 (home-page "https://github.com/Bike/introspect-environment")
6165 (source
6166 (origin
6167 (method git-fetch)
6168 (uri (git-reference
6169 (url home-page)
6170 (commit commit)))
6171 (file-name (git-file-name name version))
6172 (sha256
6173 (base32
6174 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
6175 (native-inputs
6176 `(("fiveam" ,sbcl-fiveam)))
6177 (synopsis "Common Lisp environment introspection portability layer")
6178 (description "This library is a small interface to portable but
6179 nonstandard introspection of Common Lisp environments. It is intended to
6180 allow a bit more compile-time introspection of environments in Common Lisp.
6181
6182 Quite a bit of information is available at the time a macro or compiler-macro
6183 runs; inlining info, type declarations, that sort of thing. This information
6184 is all standard - any Common Lisp program can @code{(declare (integer x))} and
6185 such.
6186
6187 This info ought to be accessible through the standard @code{&environment}
6188 parameters, but it is not. Several implementations keep the information for
6189 their own purposes but do not make it available to user programs, because
6190 there is no standard mechanism to do so.
6191
6192 This library uses implementation-specific hooks to make information available
6193 to users. This is currently supported on SBCL, CCL, and CMUCL. Other
6194 implementations have implementations of the functions that do as much as they
6195 can and/or provide reasonable defaults.")
6196 (license license:wtfpl2))))
6197
6198 (define-public cl-introspect-environment
6199 (sbcl-package->cl-source-package sbcl-introspect-environment))
6200
6201 (define-public ecl-introspect-environment
6202 (sbcl-package->ecl-package sbcl-introspect-environment))
6203
6204 (define-public sbcl-type-i
6205 (let ((commit "d34440ab4ebf5a46a58deccb35950b15670e3667")
6206 (revision "2"))
6207 (package
6208 (name "sbcl-type-i")
6209 (build-system asdf-build-system/sbcl)
6210 (version (git-version "0.1" revision commit))
6211 (home-page "https://github.com/guicho271828/type-i")
6212 (source
6213 (origin
6214 (method git-fetch)
6215 (uri (git-reference
6216 (url home-page)
6217 (commit commit)))
6218 (file-name (git-file-name name version))
6219 (sha256
6220 (base32
6221 "12wsga0pwjkkr176lnjwkmmlm3ccp0n310sjj9h20lk53iyd0z69"))))
6222 (inputs
6223 `(("alexandria" ,sbcl-alexandria)
6224 ("introspect-environment" ,sbcl-introspect-environment)
6225 ("trivia.trivial" ,sbcl-trivia.trivial)))
6226 (native-inputs
6227 `(("fiveam" ,sbcl-fiveam)))
6228 (arguments
6229 `(#:test-asd-file "type-i.test.asd"))
6230 (synopsis "Type inference utility on unary predicates for Common Lisp")
6231 (description "This library tries to provide a way to detect what kind of
6232 type the given predicate is trying to check. This is different from inferring
6233 the return type of a function.")
6234 (license license:llgpl))))
6235
6236 (define-public cl-type-i
6237 (sbcl-package->cl-source-package sbcl-type-i))
6238
6239 (define-public ecl-type-i
6240 (package
6241 (inherit (sbcl-package->ecl-package sbcl-type-i))
6242 (arguments
6243 ;; The tests get stuck indefinitly
6244 '(#:tests? #f))))
6245
6246 (define-public sbcl-optima
6247 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
6248 (revision "1"))
6249 (package
6250 (name "sbcl-optima")
6251 (build-system asdf-build-system/sbcl)
6252 (version (git-version "1.0" revision commit))
6253 (home-page "https://github.com/m2ym/optima")
6254 (source
6255 (origin
6256 (method git-fetch)
6257 (uri (git-reference
6258 (url home-page)
6259 (commit commit)))
6260 (file-name (git-file-name name version))
6261 (sha256
6262 (base32
6263 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
6264 (inputs
6265 `(("alexandria" ,sbcl-alexandria)
6266 ("closer-mop" ,sbcl-closer-mop)))
6267 (native-inputs
6268 `(("eos" ,sbcl-eos)))
6269 (arguments
6270 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
6271 `(#:tests? #f
6272 #:test-asd-file "optima.test.asd"))
6273 (synopsis "Optimized pattern matching library for Common Lisp")
6274 (description "Optima is a fast pattern matching library which uses
6275 optimizing techniques widely used in the functional programming world.")
6276 (license license:expat))))
6277
6278 (define-public cl-optima
6279 (sbcl-package->cl-source-package sbcl-optima))
6280
6281 (define-public ecl-optima
6282 (sbcl-package->ecl-package sbcl-optima))
6283
6284 (define-public sbcl-fare-quasiquote
6285 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
6286 (revision "1"))
6287 (package
6288 (name "sbcl-fare-quasiquote")
6289 (build-system asdf-build-system/sbcl)
6290 (version (git-version "1.0.1" revision commit))
6291 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
6292 (source
6293 (origin
6294 (method git-fetch)
6295 (uri (git-reference
6296 (url (string-append "https://gitlab.common-lisp.net/frideau/"
6297 "fare-quasiquote.git"))
6298 (commit commit)))
6299 (file-name (git-file-name name version))
6300 (sha256
6301 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
6302 (inputs
6303 `(("fare-utils" ,sbcl-fare-utils)
6304 ("named-readtables" ,sbcl-named-readtables)
6305 ("optima" ,sbcl-optima)))
6306 (arguments
6307 ;; XXX: Circular dependencies: Tests depend on subsystems,
6308 ;; which depend on the main systems.
6309 `(#:tests? #f
6310 #:asd-systems '("fare-quasiquote"
6311 "fare-quasiquote-extras")
6312 #:phases
6313 (modify-phases %standard-phases
6314 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
6315 ;; commits after 1.0.0.5, but ASDF fails to read the
6316 ;; "-REVISION-COMMIT" part generated by Guix.
6317 (add-after 'unpack 'patch-requirement
6318 (lambda _
6319 (substitute* "fare-quasiquote.asd"
6320 (("\\(:version \"fare-utils\" \"1.0.0\"\\)")
6321 "\"fare-utils\""))
6322 (substitute* "fare-quasiquote-optima.asd"
6323 (("\\(:version \"optima\" \"1\\.0\"\\)")
6324 "\"optima\""))
6325 #t)))))
6326 (synopsis "Pattern-matching friendly implementation of quasiquote")
6327 (description "The main purpose of this n+2nd reimplementation of
6328 quasiquote is enable matching of quasiquoted patterns, using Optima or
6329 Trivia.")
6330 (license license:expat))))
6331
6332 (define-public cl-fare-quasiquote
6333 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
6334
6335 (define-public ecl-fare-quasiquote
6336 (sbcl-package->ecl-package sbcl-fare-quasiquote))
6337
6338 ;;; Split the trivia package in two to work around the circular dependency
6339 ;;; between guicho271828/trivia and guicho271828/type-i.
6340 (define-public sbcl-trivia.trivial
6341 (let ((commit "7286d5d2a4f685f1cac8370816f95276c0851111")
6342 (revision "3"))
6343 (package
6344 (name "sbcl-trivia.trivial")
6345 (version (git-version "0.0.0" revision commit))
6346 (source
6347 (origin
6348 (method git-fetch)
6349 (uri (git-reference
6350 (url "https://github.com/guicho271828/trivia")
6351 (commit commit)))
6352 (file-name (git-file-name "trivia" version))
6353 (sha256
6354 (base32
6355 "0ln0sj3jry7kzbmxhnin66kpbqan1wp8wwgdbw4k29afbdblkcca"))))
6356 (build-system asdf-build-system/sbcl)
6357 (inputs
6358 `(("alexandria" ,sbcl-alexandria)
6359 ("closer-mop" ,sbcl-closer-mop)
6360 ("lisp-namespace" ,sbcl-lisp-namespace)
6361 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
6362 (arguments
6363 '(#:phases
6364 (modify-phases %standard-phases
6365 (add-after 'unpack 'fix-build
6366 (lambda _
6367 (for-each delete-file
6368 '("trivia.balland2006.asd"
6369 "trivia.ppcre.asd"
6370 "trivia.quasiquote.asd"
6371 "trivia.cffi.asd"
6372 "trivia.asd"
6373 "trivia.test.asd"))
6374 #t)))))
6375 (synopsis "Pattern matching in Common Lisp")
6376 (description "Trivia is a pattern matching compiler that is compatible
6377 with Optima, another pattern matching library for Common Lisp. It is meant to
6378 be faster and more extensible than Optima.")
6379 (home-page "https://github.com/guicho271828/trivia")
6380 (license license:llgpl))))
6381
6382 (define-public cl-trivia.trivial
6383 (sbcl-package->cl-source-package sbcl-trivia.trivial))
6384
6385 (define-public ecl-trivia.trivial
6386 (sbcl-package->ecl-package sbcl-trivia.trivial))
6387
6388 (define-public sbcl-trivia
6389 (package
6390 (inherit sbcl-trivia.trivial)
6391 (name "sbcl-trivia")
6392 (native-inputs
6393 `(("fiveam" ,sbcl-fiveam)
6394 ("optima" ,sbcl-optima)))
6395 (inputs
6396 `(("alexandria" ,sbcl-alexandria)
6397 ("cffi" ,sbcl-cffi)
6398 ("cl-ppcre" ,sbcl-cl-ppcre)
6399 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6400 ("iterate" ,sbcl-iterate)
6401 ("trivia.trivial" ,sbcl-trivia.trivial)
6402 ("type-i" ,sbcl-type-i)))
6403 (arguments
6404 '(#:asd-systems '("trivia"
6405 "trivia.ppcre"
6406 "trivia.quasiquote"
6407 "trivia.cffi")
6408 #:test-asd-file "trivia.test.asd"
6409 #:phases
6410 (modify-phases %standard-phases
6411 (add-after 'unpack 'fix-build
6412 (lambda _
6413 (for-each delete-file
6414 '("trivia.level0.asd"
6415 "trivia.level1.asd"
6416 "trivia.level2.asd"
6417 "trivia.trivial.asd"))
6418 #t)))))))
6419
6420 (define-public cl-trivia
6421 (sbcl-package->cl-source-package sbcl-trivia))
6422
6423 (define-public ecl-trivia
6424 (sbcl-package->ecl-package sbcl-trivia))
6425
6426 (define-public sbcl-mk-string-metrics
6427 (package
6428 (name "sbcl-mk-string-metrics")
6429 (version "0.1.2")
6430 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6431 (source (origin
6432 (method git-fetch)
6433 (uri (git-reference
6434 (url home-page)
6435 (commit version)))
6436 (sha256
6437 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6438 (file-name (git-file-name name version))))
6439 (build-system asdf-build-system/sbcl)
6440 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6441 (description "This library implements efficient algorithms that calculate
6442 various string metrics in Common Lisp:
6443
6444 @itemize
6445 @item Damerau-Levenshtein distance
6446 @item Hamming distance
6447 @item Jaccard similarity coefficient
6448 @item Jaro distance
6449 @item Jaro-Winkler distance
6450 @item Levenshtein distance
6451 @item Normalized Damerau-Levenshtein distance
6452 @item Normalized Levenshtein distance
6453 @item Overlap coefficient
6454 @end itemize\n")
6455 (license license:x11)))
6456
6457 (define-public cl-mk-string-metrics
6458 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6459
6460 (define-public ecl-mk-string-metrics
6461 (sbcl-package->ecl-package sbcl-mk-string-metrics))
6462
6463 (define-public sbcl-cl-str
6464 (package
6465 (name "sbcl-cl-str")
6466 (version "0.19")
6467 (home-page "https://github.com/vindarel/cl-str")
6468 (source (origin
6469 (method git-fetch)
6470 (uri (git-reference
6471 (url home-page)
6472 (commit version)))
6473 (sha256
6474 (base32 "1jyza2jhn7w6fl4w87pv0m87z5ia48m6dqw12k0mdh7l3mgjq839"))
6475 (file-name (git-file-name name version))))
6476 (build-system asdf-build-system/sbcl)
6477 (inputs
6478 `(("cl-ppcre" ,sbcl-cl-ppcre)
6479 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
6480 ("cl-change-case" ,sbcl-cl-change-case)))
6481 (native-inputs
6482 `(("prove" ,sbcl-prove)))
6483 (arguments
6484 `(#:asd-systems '("str")
6485 #:test-asd-file "str.test.asd"))
6486 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6487 (description "A modern and consistent Common Lisp string manipulation
6488 library that focuses on modernity, simplicity and discoverability:
6489 @code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6490 @code{str:concat strings} instead of an unusual format construct; one
6491 discoverable library instead of many; consistency and composability, where
6492 @code{s} is always the last argument, which makes it easier to feed pipes and
6493 arrows.")
6494 (license license:expat)))
6495
6496 (define-public cl-str
6497 (sbcl-package->cl-source-package sbcl-cl-str))
6498
6499 (define-public ecl-cl-str
6500 (sbcl-package->ecl-package sbcl-cl-str))
6501
6502 (define-public sbcl-cl-xmlspam
6503 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6504 (package
6505 (name "sbcl-cl-xmlspam")
6506 (build-system asdf-build-system/sbcl)
6507 (version (git-version "0.0.0" "1" commit))
6508 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6509 (source
6510 (origin
6511 (method git-fetch)
6512 (uri (git-reference
6513 (url home-page)
6514 (commit commit)))
6515 (file-name (string-append name "-" version))
6516 (sha256
6517 (base32
6518 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6519 (inputs
6520 `(("cxml" ,sbcl-cxml)
6521 ("cl-ppcre" ,sbcl-cl-ppcre)))
6522 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6523 (description "CXML does an excellent job at parsing XML elements, but what
6524 do you do when you have a XML file that's larger than you want to fit in
6525 memory, and you want to extract some information from it? Writing code to deal
6526 with SAX events, or even using Klacks, quickly becomes tedious.
6527 @code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6528 to write code that mirrors the structure of the XML that it's parsing. It
6529 also makes it easy to shift paradigms when necessary - the usual Lisp control
6530 constructs can be used interchangeably with pattern matching, and the full
6531 power of CXML is available when necessary.")
6532 (license license:bsd-3))))
6533
6534 (define-public cl-xmlspam
6535 (sbcl-package->cl-source-package sbcl-cl-xmlspam))
6536
6537 (define-public ecl-cl-xmlspam
6538 (sbcl-package->ecl-package sbcl-cl-xmlspam))
6539
6540 (define-public sbcl-dbus
6541 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6542 (revision "1"))
6543 (package
6544 (name "sbcl-dbus")
6545 (version (git-version "20190408" revision commit))
6546 (home-page "https://github.com/death/dbus")
6547 (source
6548 (origin
6549 (method git-fetch)
6550 (uri (git-reference
6551 (url home-page)
6552 (commit commit)))
6553 (file-name (git-file-name name version))
6554 (sha256
6555 (base32
6556 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
6557 (build-system asdf-build-system/sbcl)
6558 (inputs
6559 `(("alexandria" ,sbcl-alexandria)
6560 ("trivial-garbage" ,sbcl-trivial-garbage)
6561 ("babel" ,sbcl-babel)
6562 ("iolib" ,sbcl-iolib)
6563 ("ieee-floats" ,sbcl-ieee-floats)
6564 ("flexi-streams" ,sbcl-flexi-streams)
6565 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6566 ("ironclad" ,sbcl-ironclad)))
6567 (synopsis "D-Bus client library for Common Lisp")
6568 (description "This is a Common Lisp library that publishes D-Bus
6569 objects as well as send and notify other objects connected to a bus.")
6570 (license license:bsd-2))))
6571
6572 (define-public cl-dbus
6573 (sbcl-package->cl-source-package sbcl-dbus))
6574
6575 (define-public ecl-dbus
6576 (sbcl-package->ecl-package sbcl-dbus))
6577
6578 (define-public sbcl-cl-hooks
6579 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6580 (revision "1"))
6581 (package
6582 (name "sbcl-cl-hooks")
6583 (build-system asdf-build-system/sbcl)
6584 (version (git-version "0.2.1" revision commit))
6585 (home-page "https://github.com/scymtym/architecture.hooks")
6586 (source
6587 (origin
6588 (method git-fetch)
6589 (uri (git-reference
6590 (url home-page)
6591 (commit commit)))
6592 (file-name (git-file-name name version))
6593 (sha256
6594 (base32
6595 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6596 (inputs
6597 `(("alexandria" ,sbcl-alexandria)
6598 ("let-plus" ,sbcl-let-plus)
6599 ("trivial-garbage" ,sbcl-trivial-garbage)
6600 ("closer-mop" ,sbcl-closer-mop)))
6601 (native-inputs
6602 `(("fiveam" ,sbcl-fiveam)))
6603 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6604 (description "A hook, in the present context, is a certain kind of
6605 extension point in a program that allows interleaving the execution of
6606 arbitrary code with the execution of a the program without introducing any
6607 coupling between the two. Hooks are used extensively in the extensible editor
6608 Emacs.
6609
6610 In the Common LISP Object System (CLOS), a similar kind of extensibility is
6611 possible using the flexible multi-method dispatch mechanism. It may even seem
6612 that the concept of hooks does not provide any benefits over the possibilities
6613 of CLOS. However, there are some differences:
6614
6615 @itemize
6616
6617 @item There can be only one method for each combination of specializers and
6618 qualifiers. As a result this kind of extension point cannot be used by
6619 multiple extensions independently.
6620 @item Removing code previously attached via a @code{:before}, @code{:after} or
6621 @code{:around} method can be cumbersome.
6622 @item There could be other or even multiple extension points besides @code{:before}
6623 and @code{:after} in a single method.
6624 @item Attaching codes to individual objects using eql specializers can be
6625 cumbersome.
6626 @item Introspection of code attached a particular extension point is
6627 cumbersome since this requires enumerating and inspecting the methods of a
6628 generic function.
6629 @end itemize
6630
6631 This library tries to complement some of these weaknesses of method-based
6632 extension-points via the concept of hooks.")
6633 (license license:llgpl))))
6634
6635 (define-public cl-hooks
6636 (sbcl-package->cl-source-package sbcl-cl-hooks))
6637
6638 (define-public ecl-cl-hooks
6639 (sbcl-package->ecl-package sbcl-cl-hooks))
6640
6641 (define-public sbcl-cl-autowrap
6642 (let ((revision "1")
6643 (commit "ae846d6968fc0d000de0c541638929a157f3009e"))
6644 ;; no taged branches
6645 (package
6646 (name "sbcl-cl-autowrap")
6647 (version (git-version "1.0" revision commit))
6648 (source
6649 (origin
6650 (method git-fetch)
6651 (uri (git-reference
6652 (url "https://github.com/rpav/cl-autowrap")
6653 (commit commit)))
6654 (file-name (git-file-name name version))
6655 (sha256
6656 (base32 "1gisldp2zns92kdcaikghm7c38ldy2d884n8bfg0wcjvbz78p3ar"))))
6657 (build-system asdf-build-system/sbcl)
6658 (inputs
6659 `(("alexandria" ,sbcl-alexandria)
6660 ("cffi" ,sbcl-cffi)
6661 ("cl-json" ,sbcl-cl-json)
6662 ("cl-ppcre" ,sbcl-cl-ppcre)
6663 ("defpackage-plus" ,sbcl-defpackage-plus)
6664 ("trivial-features" ,sbcl-trivial-features)))
6665 (home-page "https://github.com/rpav/cl-autowrap")
6666 (synopsis "FFI wrapper generator for Common Lisp")
6667 (description "This is a c2ffi-based wrapper generator for Common Lisp.")
6668 (license license:bsd-2))))
6669
6670 (define-public cl-autowrap
6671 (sbcl-package->cl-source-package sbcl-cl-autowrap))
6672
6673 (define-public ecl-cl-autowrap
6674 (sbcl-package->ecl-package sbcl-cl-autowrap))
6675
6676 (define-public sbcl-s-sysdeps
6677 ;; No release since 2013.
6678 (let ((commit "9aa23bbdceb24bcdbe0e7c39fa1901858f823106")
6679 (revision "2"))
6680 (package
6681 (name "sbcl-s-sysdeps")
6682 (build-system asdf-build-system/sbcl)
6683 (version (git-version "1" revision commit))
6684 (home-page "https://github.com/svenvc/s-sysdeps")
6685 (source
6686 (origin
6687 (method git-fetch)
6688 (uri (git-reference
6689 (url home-page)
6690 (commit commit)))
6691 (file-name (git-file-name name version))
6692 (sha256
6693 (base32
6694 "1fh8r7kf8s3hvqdg6b71b8p7w3v2kkga9bw8j3qqdxhzr6anpm0b"))))
6695 (inputs
6696 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
6697 ("usocket" ,sbcl-usocket)))
6698 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6699 (description "@code{s-sysdeps} is an abstraction layer over platform
6700 dependent functionality. This simple package is used as a building block in a
6701 number of other open source projects.
6702
6703 @code{s-sysdeps} abstracts:
6704
6705 @itemize
6706 @item managing processes,
6707 @item implementing a standard TCP/IP server,
6708 @item opening a client TCP/IP socket stream,
6709 @item working with process locks.
6710 @end itemize\n")
6711 (license license:llgpl))))
6712
6713 (define-public cl-s-sysdeps
6714 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6715
6716 (define-public ecl-s-sysdeps
6717 (sbcl-package->ecl-package sbcl-s-sysdeps))
6718
6719 (define-public sbcl-cl-prevalence
6720 (let ((commit "5a76be036092ed6c18cb695a9e03bce87e21b840")
6721 (revision "4"))
6722 (package
6723 (name "sbcl-cl-prevalence")
6724 (build-system asdf-build-system/sbcl)
6725 (version (git-version "5" revision commit))
6726 (home-page "https://github.com/40ants/cl-prevalence")
6727 (source
6728 (origin
6729 (method git-fetch)
6730 (uri (git-reference
6731 (url home-page)
6732 (commit commit)))
6733 (file-name (git-file-name name version))
6734 (sha256
6735 (base32
6736 "050h6hwv8f16b5v6fzba8zmih92hgaaq27i2x9wv1iib41gbia3r"))))
6737 (inputs
6738 `(("s-sysdeps" ,sbcl-s-sysdeps)
6739 ("s-xml" ,sbcl-s-xml)))
6740 (native-inputs
6741 `(("fiveam" ,sbcl-fiveam)))
6742 (synopsis "Implementation of object prevalence for Common Lisp")
6743 (description "This Common Lisp library implements object prevalence (see
6744 @url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6745 for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6746 classes and cyclic data structures are supported.")
6747 (license license:llgpl))))
6748
6749 (define-public cl-prevalence
6750 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6751
6752 (define-public ecl-cl-prevalence
6753 (sbcl-package->ecl-package sbcl-cl-prevalence))
6754
6755 (define-public sbcl-series
6756 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6757 (revision "1"))
6758 (package
6759 (name "sbcl-series")
6760 (version (git-version "2.2.11" revision commit))
6761 (source
6762 (origin
6763 (method git-fetch)
6764 (uri (git-reference
6765 (url "git://git.code.sf.net/p/series/series")
6766 (commit commit)))
6767 (file-name (git-file-name name version))
6768 (sha256
6769 (base32
6770 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6771 (build-system asdf-build-system/sbcl)
6772 (arguments
6773 ;; Disable the tests, they are apparently buggy and I didn't find
6774 ;; a simple way to make them run and pass.
6775 '(#:tests? #f))
6776 (synopsis "Series data structure for Common Lisp")
6777 (description
6778 "This Common Lisp library provides a series data structure much like
6779 a sequence, with similar kinds of operations. The difference is that in many
6780 situations, operations on series may be composed functionally and yet execute
6781 iteratively, without the need to construct intermediate series values
6782 explicitly. In this manner, series provide both the clarity of a functional
6783 programming style and the efficiency of an iterative programming style.")
6784 (home-page "http://series.sourceforge.net/")
6785 (license license:expat))))
6786
6787 (define-public cl-series
6788 (sbcl-package->cl-source-package sbcl-series))
6789
6790 (define-public ecl-series
6791 (sbcl-package->ecl-package sbcl-series))
6792
6793 (define-public sbcl-periods
6794 (let ((commit "60383dcef88a1ac11f82804ae7a33c361dcd2949")
6795 (revision "2"))
6796 (package
6797 (name "sbcl-periods")
6798 (version (git-version "0.0.2" revision commit))
6799 (source
6800 (origin
6801 (method git-fetch)
6802 (uri (git-reference
6803 (url "https://github.com/jwiegley/periods")
6804 (commit commit)))
6805 (file-name (git-file-name name version))
6806 (sha256
6807 (base32
6808 "1ym2j4an9ig2hl210jg91gpf7xfnp6mlhkw3n9kkdnwiji3ipqlk"))))
6809 (build-system asdf-build-system/sbcl)
6810 (inputs
6811 `(("local-time" ,sbcl-local-time)
6812 ("series" ,sbcl-series)))
6813 (arguments
6814 '(#:asd-systems '("periods"
6815 "periods-series")))
6816 (synopsis "Common Lisp library for manipulating date/time objects")
6817 (description
6818 "Periods is a Common Lisp library providing a set of utilities for
6819 manipulating times, distances between times, and both contiguous and
6820 discontiguous ranges of time.")
6821 (home-page "https://github.com/jwiegley/periods")
6822 (license license:bsd-3))))
6823
6824 (define-public cl-periods
6825 (sbcl-package->cl-source-package sbcl-periods))
6826
6827 (define-public ecl-periods
6828 (sbcl-package->ecl-package sbcl-periods))
6829
6830 (define-public sbcl-metatilities-base
6831 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6832 (revision "1"))
6833 (package
6834 (name "sbcl-metatilities-base")
6835 (version (git-version "0.6.6" revision commit))
6836 (source
6837 (origin
6838 (method git-fetch)
6839 (uri (git-reference
6840 (url "https://github.com/gwkkwg/metatilities-base")
6841 (commit commit)))
6842 (file-name (git-file-name name version))
6843 (sha256
6844 (base32
6845 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6846 (build-system asdf-build-system/sbcl)
6847 (native-inputs
6848 `(("lift" ,sbcl-lift)))
6849 (synopsis "Core of the metatilities Common Lisp library")
6850 (description
6851 "Metatilities-base is the core of the metatilities Common Lisp library
6852 which implements a set of utilities.")
6853 (home-page "https://common-lisp.net/project/metatilities-base/")
6854 (license license:expat))))
6855
6856 (define-public cl-metatilities-base
6857 (sbcl-package->cl-source-package sbcl-metatilities-base))
6858
6859 (define-public ecl-metatilities-base
6860 (sbcl-package->ecl-package sbcl-metatilities-base))
6861
6862 (define-public sbcl-cl-containers
6863 (let ((commit "3d1df53c22403121bffb5d553cf7acb1503850e7")
6864 (revision "3"))
6865 (package
6866 (name "sbcl-cl-containers")
6867 (version (git-version "0.12.1" revision commit))
6868 (source
6869 (origin
6870 (method git-fetch)
6871 (uri (git-reference
6872 (url "https://github.com/gwkkwg/cl-containers")
6873 (commit commit)))
6874 (file-name (git-file-name name version))
6875 (sha256
6876 (base32
6877 "18s6jfq11n8nv9k4biz32pm1s7y9zl054ry1gmdbcf39nisy377y"))))
6878 (build-system asdf-build-system/sbcl)
6879 (native-inputs
6880 `(("lift" ,sbcl-lift)))
6881 (inputs
6882 `(("metatilities-base" ,sbcl-metatilities-base)))
6883 (arguments
6884 '(#:asd-files '("cl-containers.asd")
6885 #:phases
6886 (modify-phases %standard-phases
6887 (add-after 'unpack 'relax-version-checks
6888 (lambda _
6889 (substitute* "cl-containers.asd"
6890 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6891 "\"metatilities-base\""))
6892 (substitute* "cl-containers-test.asd"
6893 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6894 "\"lift\""))
6895 #t)))))
6896 (synopsis "Container library for Common Lisp")
6897 (description
6898 "Common Lisp ships with a set of powerful built in data structures
6899 including the venerable list, full featured arrays, and hash-tables.
6900 CL-containers enhances and builds on these structures by adding containers
6901 that are not available in native Lisp (for example: binary search trees,
6902 red-black trees, sparse arrays and so on), and by providing a standard
6903 interface so that they are simpler to use and so that changing design
6904 decisions becomes significantly easier.")
6905 (home-page "https://common-lisp.net/project/cl-containers/")
6906 (license license:expat))))
6907
6908 (define-public cl-containers
6909 (sbcl-package->cl-source-package sbcl-cl-containers))
6910
6911 (define-public ecl-cl-containers
6912 (sbcl-package->ecl-package sbcl-cl-containers))
6913
6914 (define-public sbcl-xlunit
6915 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6916 (revision "1"))
6917 (package
6918 (name "sbcl-xlunit")
6919 (version (git-version "0.6.3" revision commit))
6920 (source
6921 (origin
6922 (method git-fetch)
6923 (uri (git-reference
6924 (url "http://git.kpe.io/xlunit.git")
6925 (commit commit)))
6926 (file-name (git-file-name name version))
6927 (sha256
6928 (base32
6929 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
6930 (build-system asdf-build-system/sbcl)
6931 (arguments
6932 '(#:phases
6933 (modify-phases %standard-phases
6934 (add-after 'unpack 'fix-tests
6935 (lambda _
6936 (substitute* "xlunit.asd"
6937 ((" :force t") ""))
6938 #t)))))
6939 (synopsis "Unit testing package for Common Lisp")
6940 (description
6941 "The XLUnit package is a toolkit for building test suites. It is based
6942 on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
6943 (home-page "http://quickdocs.org/xlunit/")
6944 (license license:bsd-3))))
6945
6946 (define-public cl-xlunit
6947 (sbcl-package->cl-source-package sbcl-xlunit))
6948
6949 (define-public ecl-xlunit
6950 (sbcl-package->ecl-package sbcl-xlunit))
6951
6952 (define-public sbcl-cambl
6953 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
6954 (revision "1"))
6955 (package
6956 (name "sbcl-cambl")
6957 (version (git-version "4.0.0" revision commit))
6958 (source
6959 (origin
6960 (method git-fetch)
6961 (uri (git-reference
6962 (url "https://github.com/jwiegley/cambl")
6963 (commit commit)))
6964 (file-name (git-file-name "cambl" version))
6965 (sha256
6966 (base32 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
6967 (build-system asdf-build-system/sbcl)
6968 (native-inputs
6969 `(("xlunit" ,sbcl-xlunit)))
6970 (inputs
6971 `(("alexandria" ,sbcl-alexandria)
6972 ("cl-containers" ,sbcl-cl-containers)
6973 ("local-time" ,sbcl-local-time)
6974 ("periods" ,sbcl-periods)))
6975 (arguments
6976 '(#:asd-files '("fprog.asd"
6977 "cambl.asd")))
6978 (synopsis "Commoditized amounts and balances for Common Lisp")
6979 (description
6980 "CAMBL is a Common Lisp library providing a convenient facility for
6981 working with commoditized values. It does not allow compound units (and so is
6982 not suited for scientific operations) but does work rather nicely for the
6983 purpose of financial calculations.")
6984 (home-page "https://github.com/jwiegley/cambl")
6985 (license license:bsd-3))))
6986
6987 (define-public cl-cambl
6988 (sbcl-package->cl-source-package sbcl-cambl))
6989
6990 (define-public ecl-cambl
6991 (sbcl-package->ecl-package sbcl-cambl))
6992
6993 (define-public sbcl-cl-ledger
6994 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
6995 (revision "1"))
6996 (package
6997 (name "sbcl-cl-ledger")
6998 (version (git-version "4.0.0" revision commit))
6999 (source
7000 (origin
7001 (method git-fetch)
7002 (uri (git-reference
7003 (url "https://github.com/ledger/cl-ledger")
7004 (commit commit)))
7005 (file-name (git-file-name name version))
7006 (sha256
7007 (base32
7008 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
7009 (build-system asdf-build-system/sbcl)
7010 (inputs
7011 `(("cambl" ,sbcl-cambl)
7012 ("cl-ppcre" ,sbcl-cl-ppcre)
7013 ("local-time" ,sbcl-local-time)
7014 ("periods" ,sbcl-periods)))
7015 (arguments
7016 '(#:phases
7017 (modify-phases %standard-phases
7018 (add-after 'unpack 'fix-system-definition
7019 (lambda _
7020 (substitute* "cl-ledger.asd"
7021 ((" :build-operation program-op") "")
7022 ((" :build-pathname \"cl-ledger\"") "")
7023 ((" :entry-point \"ledger::main\"") ""))
7024 #t)))))
7025 (synopsis "Common Lisp port of the Ledger accounting system")
7026 (description
7027 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
7028 system.")
7029 (home-page "https://github.com/ledger/cl-ledger")
7030 (license license:bsd-3))))
7031
7032 (define-public cl-ledger
7033 (sbcl-package->cl-source-package sbcl-cl-ledger))
7034
7035 (define-public ecl-cl-ledger
7036 (sbcl-package->ecl-package sbcl-cl-ledger))
7037
7038 (define-public sbcl-bst
7039 (let ((commit "8545aed0d504df2829ad139566feeabe22305388")
7040 (revision "0"))
7041 (package
7042 (name "sbcl-bst")
7043 (version (git-version "2.0" revision commit))
7044 (source
7045 (origin
7046 (method git-fetch)
7047 (uri (git-reference
7048 (url "https://github.com/glv2/bst")
7049 (commit commit)))
7050 (file-name (git-file-name name version))
7051 (sha256
7052 (base32 "18ig7rvxcra69437g0i8sxyv7c5dg26jqnx1rc2f9pxmihdprgk8"))))
7053 (build-system asdf-build-system/sbcl)
7054 (native-inputs
7055 `(("alexandria" ,sbcl-alexandria)
7056 ("fiveam" ,sbcl-fiveam)))
7057 (synopsis "Binary search tree for Common Lisp")
7058 (description
7059 "BST is a Common Lisp library for working with binary search trees that
7060 can contain any kind of values.")
7061 (home-page "https://github.com/glv2/bst")
7062 (license license:gpl3))))
7063
7064 (define-public cl-bst
7065 (sbcl-package->cl-source-package sbcl-bst))
7066
7067 (define-public ecl-bst
7068 (sbcl-package->ecl-package sbcl-bst))
7069
7070 (define-public sbcl-cl-octet-streams
7071 (package
7072 (name "sbcl-cl-octet-streams")
7073 (version "1.2")
7074 (source
7075 (origin
7076 (method git-fetch)
7077 (uri (git-reference
7078 (url "https://github.com/glv2/cl-octet-streams")
7079 (commit (string-append "v" version))))
7080 (file-name (git-file-name name version))
7081 (sha256
7082 (base32 "1hffh98bv4w5yrchagzwqrc43d2p473pvw7ka4kyyvhrr52dk2f8"))))
7083 (build-system asdf-build-system/sbcl)
7084 (native-inputs
7085 `(("fiveam" ,sbcl-fiveam)))
7086 (inputs
7087 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7088 (synopsis "In-memory octet streams for Common Lisp")
7089 (description
7090 "CL-octet-streams is a library implementing in-memory octet
7091 streams for Common Lisp. It was inspired by the trivial-octet-streams and
7092 cl-plumbing libraries.")
7093 (home-page "https://github.com/glv2/cl-octet-streams")
7094 (license license:gpl3+)))
7095
7096 (define-public cl-octet-streams
7097 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
7098
7099 (define-public ecl-cl-octet-streams
7100 (sbcl-package->ecl-package sbcl-cl-octet-streams))
7101
7102 (define-public sbcl-lzlib
7103 (let ((commit "cad10f5becbcfebb44b9d311a257563778803452")
7104 (revision "2"))
7105 (package
7106 (name "sbcl-lzlib")
7107 (version (git-version "1.1" revision commit))
7108 (source
7109 (origin
7110 (method git-fetch)
7111 (uri (git-reference
7112 (url "https://github.com/glv2/cl-lzlib")
7113 (commit commit)))
7114 (file-name (git-file-name name version))
7115 (sha256
7116 (base32 "09lp7li35h4jkls0448fj1sh6pjslr1w7ranbc4szjr8g0c2bdry"))))
7117 (build-system asdf-build-system/sbcl)
7118 (native-inputs
7119 `(("fiveam" ,sbcl-fiveam)))
7120 (inputs
7121 `(("cffi" ,sbcl-cffi)
7122 ("cl-octet-streams" ,sbcl-cl-octet-streams)
7123 ("lparallel" ,sbcl-lparallel)
7124 ("lzlib" ,lzlib)))
7125 (arguments
7126 '(#:phases
7127 (modify-phases %standard-phases
7128 (add-after 'unpack 'fix-paths
7129 (lambda* (#:key inputs #:allow-other-keys)
7130 (substitute* "src/lzlib.lisp"
7131 (("liblz\\.so")
7132 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
7133 #t)))))
7134 (synopsis "Common Lisp library for lzip (de)compression")
7135 (description
7136 "This Common Lisp library provides functions for lzip (LZMA)
7137 compression/decompression using bindings to the lzlib C library.")
7138 (home-page "https://github.com/glv2/cl-lzlib")
7139 (license license:gpl3+))))
7140
7141 (define-public cl-lzlib
7142 (sbcl-package->cl-source-package sbcl-lzlib))
7143
7144 (define-public ecl-lzlib
7145 (sbcl-package->ecl-package sbcl-lzlib))
7146
7147 (define-public sbcl-chanl
7148 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
7149 (revision "1"))
7150 (package
7151 (name "sbcl-chanl")
7152 (version (git-version "0.4.1" revision commit))
7153 (source
7154 (origin
7155 (method git-fetch)
7156 (uri (git-reference
7157 (url "https://github.com/zkat/chanl")
7158 (commit commit)))
7159 (file-name (git-file-name name version))
7160 (sha256
7161 (base32
7162 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
7163 (build-system asdf-build-system/sbcl)
7164 (native-inputs
7165 `(("fiveam" ,sbcl-fiveam)))
7166 (inputs
7167 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
7168 (synopsis "Portable channel-based concurrency for Common Lisp")
7169 (description "Common Lisp library for channel-based concurrency. In
7170 a nutshell, you create various threads sequentially executing tasks you need
7171 done, and use channel objects to communicate and synchronize the state of these
7172 threads.")
7173 (home-page "https://github.com/zkat/chanl")
7174 (license (list license:expat license:bsd-3)))))
7175
7176 (define-public cl-chanl
7177 (sbcl-package->cl-source-package sbcl-chanl))
7178
7179 (define-public ecl-chanl
7180 (sbcl-package->ecl-package sbcl-chanl))
7181
7182 (define-public sbcl-cl-store
7183 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
7184 (revision "1"))
7185 (package
7186 (name "sbcl-cl-store")
7187 (version (git-version "0.8.11" revision commit))
7188 (source
7189 (origin
7190 (method git-fetch)
7191 (uri (git-reference
7192 (url "https://github.com/skypher/cl-store")
7193 (commit commit)))
7194 (file-name (git-file-name name version))
7195 (sha256
7196 (base32
7197 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
7198 (build-system asdf-build-system/sbcl)
7199 (native-inputs
7200 `(("rt" ,sbcl-rt)))
7201 (synopsis "Common Lisp library to serialize data")
7202 (description
7203 "CL-STORE is a portable serialization package which should give you the
7204 ability to store all Common Lisp data types into streams.")
7205 (home-page "https://www.common-lisp.net/project/cl-store/")
7206 (license license:expat))))
7207
7208 (define-public cl-store
7209 (sbcl-package->cl-source-package sbcl-cl-store))
7210
7211 (define-public ecl-cl-store
7212 (sbcl-package->ecl-package sbcl-cl-store))
7213
7214 (define-public sbcl-specialization-store
7215 (let ((commit "8d39a866a6f24986aad3cc52349e9cb2653496f3")
7216 (revision "1"))
7217 (package
7218 (name "sbcl-specialization-store")
7219 (version (git-version "0.0.5" revision commit))
7220 (source
7221 (origin
7222 (method git-fetch)
7223 (uri (git-reference
7224 (url "https://github.com/markcox80/specialization-store")
7225 (commit commit)))
7226 (file-name (git-file-name "specialization-store" version))
7227 (sha256
7228 (base32 "0r0bgb46q4gy72l78s7djkxq8ibb4bb3yh9brsry5lih7br8lhi0"))))
7229 (build-system asdf-build-system/sbcl)
7230 (native-inputs
7231 `(("fiveam" ,sbcl-fiveam)))
7232 (inputs
7233 `(("alexandria" ,sbcl-alexandria)
7234 ("introspect-environment" ,sbcl-introspect-environment)))
7235 (home-page "https://github.com/markcox80/specialization-store")
7236 (synopsis "Different type of generic function for Common Lisp")
7237 (description
7238 "SPECIALIZATION-STORE system provides a new kind of function, called
7239 a store function, whose behavior depends on the types of objects passed to the
7240 function.")
7241 (license license:bsd-2))))
7242
7243 (define-public ecl-specialization-store
7244 (package
7245 (inherit (sbcl-package->ecl-package sbcl-specialization-store))
7246 (arguments
7247 ;; TODO: Find why the tests get stuck forever; disable them for now.
7248 `(#:tests? #f))))
7249
7250 (define-public cl-specialization-store
7251 (sbcl-package->cl-source-package sbcl-specialization-store))
7252
7253 (define-public sbcl-cl-gobject-introspection
7254 (let ((commit "d0136c8d9ade2560123af1fc55bbf70d2e3db539")
7255 (revision "1"))
7256 (package
7257 (name "sbcl-cl-gobject-introspection")
7258 (version (git-version "0.3" revision commit))
7259 (home-page "https://github.com/andy128k/cl-gobject-introspection")
7260 (source
7261 (origin
7262 (method git-fetch)
7263 (uri (git-reference
7264 (url home-page)
7265 (commit commit)))
7266 (file-name (git-file-name name version))
7267 (sha256
7268 (base32
7269 "0dz0r73pq7yhz2iq2jnkq977awx2zws2qfxdcy33329sys1ii32p"))))
7270 (build-system asdf-build-system/sbcl)
7271 (inputs
7272 `(("alexandria" ,sbcl-alexandria)
7273 ("cffi" ,sbcl-cffi)
7274 ("iterate" ,sbcl-iterate)
7275 ("trivial-garbage" ,sbcl-trivial-garbage)
7276 ("glib" ,glib)
7277 ("gobject-introspection" ,gobject-introspection)))
7278 (native-inputs
7279 `(("fiveam" ,sbcl-fiveam)))
7280 (arguments
7281 '(#:phases
7282 (modify-phases %standard-phases
7283 (add-after 'unpack 'fix-paths
7284 (lambda* (#:key inputs #:allow-other-keys)
7285 (substitute* "src/init.lisp"
7286 (("libgobject-2\\.0\\.so")
7287 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
7288 (("libgirepository-1\\.0\\.so")
7289 (string-append (assoc-ref inputs "gobject-introspection")
7290 "/lib/libgirepository-1.0.so")))
7291 #t)))))
7292 (synopsis "Common Lisp bindings to GObject Introspection")
7293 (description
7294 "This library is a bridge between Common Lisp and GObject
7295 Introspection, which enables Common Lisp programs to access the full interface
7296 of C+GObject libraries without the need of writing dedicated bindings.")
7297 (license (list license:bsd-3
7298 ;; Tests are under a different license.
7299 license:llgpl)))))
7300
7301 (define-public cl-gobject-introspection
7302 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
7303
7304 (define-public ecl-cl-gobject-introspection
7305 (sbcl-package->ecl-package sbcl-cl-gobject-introspection))
7306
7307 (define-public sbcl-cl-slug
7308 (let ((commit "ffb229d10f0d3f7f54e706791725225e200bf749")
7309 (revision "1"))
7310 (package
7311 (name "sbcl-cl-slug")
7312 (version (git-version "0.4.1" revision commit))
7313 (source
7314 (origin
7315 (method git-fetch)
7316 (uri (git-reference
7317 (url "https://github.com/EuAndreh/cl-slug")
7318 (commit commit)))
7319 (file-name (git-file-name "cl-slug" version))
7320 (sha256
7321 (base32 "1asdq6xllmsvfw5fky9wblqcx9isac9jrrlkfl7vyxcq1wxrnflx"))))
7322 (build-system asdf-build-system/sbcl)
7323 (arguments
7324 `(#:asd-files '("cl-slug-test.asd" "cl-slug.asd")
7325 #:asd-systems '("cl-slug-test" "cl-slug")))
7326 (native-inputs
7327 `(("prove" ,sbcl-prove)))
7328 (inputs
7329 `(("ppcre" ,sbcl-cl-ppcre)))
7330 (home-page "https://github.com/EuAndreh/cl-slug")
7331 (synopsis "Multi-language slug formatter")
7332 (description
7333 "This is a small Common Lisp library to make slugs, mainly for URIs,
7334 from English and beyond.")
7335 (license license:llgpl))))
7336
7337 (define-public ecl-cl-slug
7338 (sbcl-package->ecl-package sbcl-cl-slug))
7339
7340 (define-public cl-slug
7341 (sbcl-package->cl-source-package sbcl-cl-slug))
7342
7343 (define-public sbcl-string-case
7344 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
7345 (revision "0"))
7346 (package
7347 (name "sbcl-string-case")
7348 (version (git-version "0.0.2" revision commit))
7349 (home-page "https://github.com/pkhuong/string-case")
7350 (source
7351 (origin
7352 (method git-fetch)
7353 (uri (git-reference
7354 (url home-page)
7355 (commit commit)))
7356 (file-name (git-file-name name version))
7357 (sha256
7358 (base32
7359 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
7360 (build-system asdf-build-system/sbcl)
7361 (synopsis "Efficient string= case in Common Lisp")
7362 (description
7363 "@code{string-case} is a Common Lisp macro that generates specialised decision
7364 trees to dispatch on string equality.")
7365 (license license:bsd-3))))
7366
7367 (define-public cl-string-case
7368 (sbcl-package->cl-source-package sbcl-string-case))
7369
7370 (define-public ecl-string-case
7371 (sbcl-package->ecl-package sbcl-string-case))
7372
7373 (define-public sbcl-garbage-pools
7374 (let ((commit "9a7cb7f48b04197c0495df3b6d2e8395ad13f790")
7375 (revision "1"))
7376 (package
7377 (name "sbcl-garbage-pools")
7378 (version (git-version "0.1.2" revision commit))
7379 (source
7380 (origin
7381 (method git-fetch)
7382 (uri (git-reference
7383 (url "https://github.com/archimag/garbage-pools")
7384 (commit commit)))
7385 (file-name (git-file-name name version))
7386 (sha256
7387 (base32 "04jqwr6j138him6wc4nrwjzm4lvyj5j31xqab02nkf8h9hmsf5v1"))))
7388 (build-system asdf-build-system/sbcl)
7389 (home-page "https://github.com/archimag/garbage-pools")
7390 (synopsis "Resource management pools for Common Lisp")
7391 (description "GARBAGE-POOLS is Common Lisp re-implementation of the APR
7392 Pools for resource management.")
7393 (license license:expat))))
7394
7395 (define-public ecl-garbage-pools
7396 (sbcl-package->ecl-package sbcl-garbage-pools))
7397
7398 (define-public cl-garbage-pools
7399 (sbcl-package->cl-source-package sbcl-garbage-pools))
7400
7401 (define-public sbcl-global-vars
7402 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7403 (revision "0"))
7404 (package
7405 (name "sbcl-global-vars")
7406 (version (git-version "1.0.0" revision commit))
7407 (home-page "https://github.com/lmj/global-vars")
7408 (source
7409 (origin
7410 (method git-fetch)
7411 (uri (git-reference
7412 (url home-page)
7413 (commit commit)))
7414 (file-name (git-file-name name version))
7415 (sha256
7416 (base32
7417 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7418 (build-system asdf-build-system/sbcl)
7419 (synopsis "Efficient global variables in Common Lisp")
7420 (description
7421 "In Common Lisp, a special variable that is never dynamically bound
7422 typically serves as a stand-in for a global variable. The @code{global-vars}
7423 library provides true global variables that are implemented by some compilers.
7424 An attempt to rebind a global variable properly results in a compiler error.
7425 That is, a global variable cannot be dynamically bound.
7426
7427 Global variables therefore allow us to communicate an intended usage that
7428 differs from special variables. Global variables are also more efficient than
7429 special variables, especially in the presence of threads.")
7430 (license license:expat))))
7431
7432 (define-public cl-global-vars
7433 (sbcl-package->cl-source-package sbcl-global-vars))
7434
7435 (define-public ecl-global-vars
7436 (sbcl-package->ecl-package sbcl-global-vars))
7437
7438 (define-public sbcl-trivial-file-size
7439 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7440 (revision "0"))
7441 (package
7442 (name "sbcl-trivial-file-size")
7443 (version (git-version "0.0.0" revision commit))
7444 (home-page "https://github.com/ruricolist/trivial-file-size")
7445 (source
7446 (origin
7447 (method git-fetch)
7448 (uri (git-reference
7449 (url home-page)
7450 (commit commit)))
7451 (file-name (git-file-name name version))
7452 (sha256
7453 (base32
7454 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7455 (build-system asdf-build-system/sbcl)
7456 (native-inputs
7457 `(("fiveam" ,sbcl-fiveam)))
7458 (synopsis "Size of a file in bytes in Common Lisp")
7459 (description
7460 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7461 is to open the file with an element type of (unsigned-byte 8) and then
7462 calculate the length of the stream. This is less than ideal. In most cases
7463 it is better to get the size of the file from its metadata, using a system
7464 call.
7465
7466 This library exports a single function, file-size-in-octets. It returns the
7467 size of a file in bytes, using system calls when possible.")
7468 (license license:expat))))
7469
7470 (define-public cl-trivial-file-size
7471 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7472
7473 (define-public ecl-trivial-file-size
7474 (sbcl-package->ecl-package sbcl-trivial-file-size))
7475
7476 (define-public sbcl-trivial-macroexpand-all
7477 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7478 (revision "0"))
7479 (package
7480 (name "sbcl-trivial-macroexpand-all")
7481 (version (git-version "0.0.0" revision commit))
7482 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7483 (source
7484 (origin
7485 (method git-fetch)
7486 (uri (git-reference
7487 (url home-page)
7488 (commit commit)))
7489 (file-name (git-file-name name version))
7490 (sha256
7491 (base32
7492 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7493 (build-system asdf-build-system/sbcl)
7494 (native-inputs
7495 `(("fiveam" ,sbcl-fiveam)))
7496 (synopsis "Portable macroexpand-all for Common Lisp")
7497 (description
7498 "This library provides a macroexpand-all function that calls the
7499 implementation specific equivalent.")
7500 (license license:unlicense))))
7501
7502 (define-public cl-trivial-macroexpand-all
7503 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7504
7505 (define-public ecl-trivial-macroexpand-all
7506 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7507
7508 (define-public sbcl-serapeum
7509 (let ((commit "263f415a350736b44e3878524ff3997e656fca32")
7510 (revision "4"))
7511 (package
7512 (name "sbcl-serapeum")
7513 (version (git-version "0.0.0" revision commit))
7514 (home-page "https://github.com/ruricolist/serapeum")
7515 (source
7516 (origin
7517 (method git-fetch)
7518 (uri (git-reference
7519 (url home-page)
7520 (commit commit)))
7521 (file-name (git-file-name name version))
7522 (sha256
7523 (base32
7524 "1669yidvxq41s3g6hb2jk21bcb5s2bnfsacpyd5b0hdxbmc7knq3"))))
7525 (build-system asdf-build-system/sbcl)
7526 (inputs
7527 `(("alexandria" ,sbcl-alexandria)
7528 ("trivia" ,sbcl-trivia)
7529 ("split-sequence" ,sbcl-split-sequence)
7530 ("string-case" ,sbcl-string-case)
7531 ("parse-number" ,sbcl-parse-number)
7532 ("trivial-garbage" ,sbcl-trivial-garbage)
7533 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7534 ("named-readtables" ,sbcl-named-readtables)
7535 ("fare-quasiquote" ,sbcl-fare-quasiquote)
7536 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7537 ("global-vars" ,sbcl-global-vars)
7538 ("trivial-file-size" ,sbcl-trivial-file-size)
7539 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7540 (native-inputs
7541 `(("fiveam" ,sbcl-fiveam)
7542 ("local-time" ,sbcl-local-time)))
7543 (arguments
7544 '(#:phases
7545 (modify-phases %standard-phases
7546 (add-after 'unpack 'disable-failing-tests
7547 (lambda* (#:key inputs #:allow-other-keys)
7548 (substitute* "serapeum.asd"
7549 ;; Guix does not have Quicklisp, and probably never will.
7550 (("\\(:file \"quicklisp\"\\)") ""))
7551 #t)))))
7552 (synopsis "Common Lisp utility library beyond Alexandria")
7553 (description
7554 "Serapeum is a conservative library of Common Lisp utilities. It is a
7555 supplement, not a competitor, to Alexandria.")
7556 (license license:expat))))
7557
7558 (define-public cl-serapeum
7559 (sbcl-package->cl-source-package sbcl-serapeum))
7560
7561 (define-public ecl-serapeum
7562 (sbcl-package->ecl-package sbcl-serapeum))
7563
7564 (define-public sbcl-arrows
7565 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7566 (revision "0"))
7567 (package
7568 (name "sbcl-arrows")
7569 (version (git-version "0.2.0" revision commit))
7570 (source
7571 (origin
7572 (method git-fetch)
7573 (uri (git-reference
7574 (url "https://gitlab.com/Harleqin/arrows.git")
7575 (commit commit)))
7576 (file-name (git-file-name name version))
7577 (sha256
7578 (base32
7579 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7580 (build-system asdf-build-system/sbcl)
7581 (native-inputs
7582 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7583 (synopsis "Clojure-like arrow macros for Common Lisp")
7584 (description
7585 "This library implements the @code{->} and @code{->>} macros from
7586 Clojure, as well as several expansions on the idea.")
7587 (home-page "https://gitlab.com/Harleqin/arrows")
7588 (license license:public-domain))))
7589
7590 (define-public cl-arrows
7591 (sbcl-package->cl-source-package sbcl-arrows))
7592
7593 (define-public ecl-arrows
7594 (sbcl-package->ecl-package sbcl-arrows))
7595
7596 (define-public sbcl-simple-parallel-tasks
7597 (let ((commit "ce7b60f788d8f68dfb69b24aac54c0e3b63379a6")
7598 (revision "1"))
7599 (package
7600 (name "sbcl-simple-parallel-tasks")
7601 (version (git-version "1.0" revision commit))
7602 (source
7603 (origin
7604 (method git-fetch)
7605 (uri (git-reference
7606 (url "https://github.com/glv2/simple-parallel-tasks")
7607 (commit commit)))
7608 (file-name (git-file-name name version))
7609 (sha256
7610 (base32 "0gvbpyff4siifp3cp86cpr9ksmakn66fx21f3h0hpn647zl07nj7"))))
7611 (build-system asdf-build-system/sbcl)
7612 (native-inputs
7613 `(("fiveam" ,sbcl-fiveam)))
7614 (inputs
7615 `(("chanl" ,sbcl-chanl)))
7616 (synopsis "Common Lisp library to evaluate some forms in parallel")
7617 (description "This is a simple Common Lisp library to evaluate some
7618 forms in parallel.")
7619 (home-page "https://github.com/glv2/simple-parallel-tasks")
7620 (license license:gpl3))))
7621
7622 (define-public cl-simple-parallel-tasks
7623 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7624
7625 (define-public ecl-simple-parallel-tasks
7626 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7627
7628 (define-public sbcl-cl-heap
7629 (package
7630 (name "sbcl-cl-heap")
7631 (version "0.1.6")
7632 (source
7633 (origin
7634 (method url-fetch)
7635 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7636 "cl-heap_" version ".tar.gz"))
7637 (sha256
7638 (base32
7639 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7640 (build-system asdf-build-system/sbcl)
7641 (native-inputs
7642 `(("xlunit" ,sbcl-xlunit)))
7643 (arguments
7644 `(#:test-asd-file "cl-heap-tests.asd"))
7645 (synopsis "Heap and priority queue data structures for Common Lisp")
7646 (description
7647 "CL-HEAP provides various implementations of heap data structures (a
7648 binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7649 (home-page "https://common-lisp.net/project/cl-heap/")
7650 (license license:gpl3+)))
7651
7652 (define-public cl-heap
7653 (sbcl-package->cl-source-package sbcl-cl-heap))
7654
7655 (define-public ecl-cl-heap
7656 (sbcl-package->ecl-package sbcl-cl-heap))
7657
7658 (define-public sbcl-curry-compose-reader-macros
7659 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7660 (revision "0"))
7661 (package
7662 (name "sbcl-curry-compose-reader-macros")
7663 (version (git-version "1.0.0" revision commit))
7664 (source
7665 (origin
7666 (method git-fetch)
7667 (uri
7668 (git-reference
7669 (url "https://github.com/eschulte/curry-compose-reader-macros")
7670 (commit commit)))
7671 (file-name (git-file-name name version))
7672 (sha256
7673 (base32
7674 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7675 (build-system asdf-build-system/sbcl)
7676 (inputs
7677 `(("alexandria" ,sbcl-alexandria)
7678 ("named-readtables" ,sbcl-named-readtables)))
7679 (synopsis "Reader macros for partial application and composition")
7680 (description
7681 "This Common Lisp library provides reader macros for concise expression
7682 of function partial application and composition.")
7683 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7684 (license license:public-domain))))
7685
7686 (define-public cl-curry-compose-reader-macros
7687 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7688
7689 (define-public ecl-curry-compose-reader-macros
7690 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7691
7692 (define-public sbcl-yason
7693 (package
7694 (name "sbcl-yason")
7695 (version "0.7.7")
7696 (source
7697 (origin
7698 (method git-fetch)
7699 (uri (git-reference
7700 (url "https://github.com/phmarek/yason")
7701 (commit (string-append "v" version))))
7702 (file-name (git-file-name name version))
7703 (sha256
7704 (base32
7705 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7706 (build-system asdf-build-system/sbcl)
7707 (inputs
7708 `(("alexandria" ,sbcl-alexandria)
7709 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7710 (synopsis "Common Lisp JSON parser/encoder")
7711 (description
7712 "YASON is a Common Lisp library for encoding and decoding data in the
7713 JSON interchange format.")
7714 (home-page "https://github.com/phmarek/yason")
7715 (license license:bsd-3)))
7716
7717 (define-public cl-yason
7718 (sbcl-package->cl-source-package sbcl-yason))
7719
7720 (define-public ecl-yason
7721 (sbcl-package->ecl-package sbcl-yason))
7722
7723 (define-public sbcl-stefil
7724 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7725 (revision "0"))
7726 (package
7727 (name "sbcl-stefil")
7728 (version (git-version "0.1" revision commit))
7729 (source
7730 (origin
7731 (method git-fetch)
7732 (uri (git-reference
7733 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7734 (commit commit)))
7735 (file-name (git-file-name name version))
7736 (sha256
7737 (base32
7738 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7739 (build-system asdf-build-system/sbcl)
7740 (inputs
7741 `(("alexandria" ,sbcl-alexandria)
7742 ("iterate" ,sbcl-iterate)
7743 ("metabang-bind" ,sbcl-metabang-bind)
7744 ("swank" ,sbcl-slime-swank)))
7745 (arguments
7746 '(#:phases
7747 (modify-phases %standard-phases
7748 (add-after 'unpack 'drop-unnecessary-dependency
7749 (lambda _
7750 (substitute* "package.lisp"
7751 ((":stefil-system") ""))
7752 #t)))))
7753 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7754 (synopsis "Simple test framework")
7755 (description
7756 "Stefil is a simple test framework for Common Lisp, with a focus on
7757 interactive development.")
7758 (license license:public-domain))))
7759
7760 (define-public cl-stefil
7761 (sbcl-package->cl-source-package sbcl-stefil))
7762
7763 (define-public ecl-stefil
7764 (sbcl-package->ecl-package sbcl-stefil))
7765
7766 (define-public sbcl-graph
7767 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7768 (revision "0"))
7769 (package
7770 (name "sbcl-graph")
7771 (version (git-version "0.0.0" revision commit))
7772 (source
7773 (origin
7774 (method git-fetch)
7775 (uri
7776 (git-reference
7777 (url "https://github.com/eschulte/graph")
7778 (commit commit)))
7779 (file-name (git-file-name name version))
7780 (sha256
7781 (base32
7782 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))))
7783 (build-system asdf-build-system/sbcl)
7784 (native-inputs
7785 `(("stefil" ,sbcl-stefil)))
7786 (inputs
7787 `(("alexandria" ,sbcl-alexandria)
7788 ("cl-heap" ,sbcl-cl-heap)
7789 ("cl-ppcre" ,sbcl-cl-ppcre)
7790 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7791 ("metabang-bind" ,sbcl-metabang-bind)
7792 ("named-readtables" ,sbcl-named-readtables)
7793 ("yason" ,sbcl-yason)))
7794 (arguments
7795 '(#:asd-systems '("graph"
7796 "graph/dot"
7797 "graph/json")))
7798 (synopsis "Graph data structure and algorithms for Common Lisp")
7799 (description
7800 "The GRAPH Common Lisp library provides a data structures to represent
7801 graphs, as well as some graph manipulation and analysis algorithms (shortest
7802 path, maximum flow, minimum spanning tree, etc.).")
7803 (home-page "https://eschulte.github.io/graph/")
7804 (license license:gpl3+))))
7805
7806 (define-public cl-graph
7807 (sbcl-package->cl-source-package sbcl-graph))
7808
7809 (define-public ecl-graph
7810 (sbcl-package->ecl-package sbcl-graph))
7811
7812 (define-public sbcl-trivial-indent
7813 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7814 (revision "0"))
7815 (package
7816 (name "sbcl-trivial-indent")
7817 (version (git-version "1.0.0" revision commit))
7818 (source
7819 (origin
7820 (method git-fetch)
7821 (uri
7822 (git-reference
7823 (url "https://github.com/Shinmera/trivial-indent")
7824 (commit commit)))
7825 (file-name (git-file-name name version))
7826 (sha256
7827 (base32
7828 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7829 (build-system asdf-build-system/sbcl)
7830 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7831 (description
7832 "This library allows you to define custom indentation hints for your
7833 macros if the one recognised by SLIME automatically produces unwanted
7834 results.")
7835 (home-page "https://shinmera.github.io/trivial-indent/")
7836 (license license:zlib))))
7837
7838 (define-public cl-trivial-indent
7839 (sbcl-package->cl-source-package sbcl-trivial-indent))
7840
7841 (define-public ecl-trivial-indent
7842 (sbcl-package->ecl-package sbcl-trivial-indent))
7843
7844 (define-public sbcl-documentation-utils
7845 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7846 (revision "0"))
7847 (package
7848 (name "sbcl-documentation-utils")
7849 (version (git-version "1.2.0" revision commit))
7850 (source
7851 (origin
7852 (method git-fetch)
7853 (uri
7854 (git-reference
7855 (url "https://github.com/Shinmera/documentation-utils")
7856 (commit commit)))
7857 (file-name (git-file-name name version))
7858 (sha256
7859 (base32
7860 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7861 (build-system asdf-build-system/sbcl)
7862 (inputs
7863 `(("trivial-indent" ,sbcl-trivial-indent)))
7864 (synopsis "Few simple tools to document Common Lisp libraries")
7865 (description
7866 "This is a small library to help you with managing the Common Lisp
7867 docstrings for your library.")
7868 (home-page "https://shinmera.github.io/documentation-utils/")
7869 (license license:zlib))))
7870
7871 (define-public cl-documentation-utils
7872 (sbcl-package->cl-source-package sbcl-documentation-utils))
7873
7874 (define-public ecl-documentation-utils
7875 (sbcl-package->ecl-package sbcl-documentation-utils))
7876
7877 (define-public sbcl-documentation-utils-extensions
7878 (let ((commit "f67f8a05d583174662a594b79356b201c1d9d750"))
7879 (package
7880 (name "sbcl-documentation-utils-extensions")
7881 (version (git-version "0.0.0" "1" commit))
7882 (source
7883 (origin
7884 (method git-fetch)
7885 (uri
7886 (git-reference
7887 (url "https://github.com/sirherrbatka/documentation-utils-extensions/")
7888 (commit commit)))
7889 (file-name (git-file-name name version))
7890 (sha256
7891 (base32
7892 "0pn45c9rbxlnhn5nvhqz6kyv0nlirwxpg4j27niwdq80yxzsn51f"))))
7893 (build-system asdf-build-system/sbcl)
7894 (inputs
7895 `(("documentation-utils" ,sbcl-documentation-utils)))
7896 (home-page "https://github.com/sirherrbatka/documentation-utils-extensions")
7897 (synopsis "Set of extensions for documentation-utils")
7898 (description
7899 "Use @code{rich-formatter} to format documentation with sections @code{:syntax},
7900 @code{:arguments}, @code{:examples}, @code{:description}, @code{:returns},
7901 @code{:side-effects}, @code{:thread-safety}, @code{:affected-by},
7902 @code{:see-also} and @code{:notes}. Gather unformatted input by using
7903 @code{rich-aggregating-formatter} and @code{*DOCUMENTATION*} variable. Find
7904 gathered documentation with find-documentation function. Execute code stored
7905 in documentation with @code{execute-documentation}. See the examples in the
7906 @code{src/documentation.lisp} file. See the @code{documentation-utils} system
7907 for more information.")
7908 (license license:expat))))
7909
7910 (define-public cl-documentation-utils-extensions
7911 (sbcl-package->cl-source-package sbcl-documentation-utils-extensions))
7912
7913 (define-public ecl-documentation-utils-extensions
7914 (sbcl-package->ecl-package sbcl-documentation-utils-extensions))
7915
7916 (define-public sbcl-form-fiddle
7917 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7918 (revision "0"))
7919 (package
7920 (name "sbcl-form-fiddle")
7921 (version (git-version "1.1.0" revision commit))
7922 (source
7923 (origin
7924 (method git-fetch)
7925 (uri
7926 (git-reference
7927 (url "https://github.com/Shinmera/form-fiddle")
7928 (commit commit)))
7929 (file-name (git-file-name name version))
7930 (sha256
7931 (base32
7932 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
7933 (build-system asdf-build-system/sbcl)
7934 (inputs
7935 `(("documentation-utils" ,sbcl-documentation-utils)))
7936 (synopsis "Utilities to destructure Common Lisp lambda forms")
7937 (description
7938 "Often times we need to destructure a form definition in a Common Lisp
7939 macro. This library provides a set of simple utilities to help with that.")
7940 (home-page "https://shinmera.github.io/form-fiddle/")
7941 (license license:zlib))))
7942
7943 (define-public cl-form-fiddle
7944 (sbcl-package->cl-source-package sbcl-form-fiddle))
7945
7946 (define-public ecl-form-fiddle
7947 (sbcl-package->ecl-package sbcl-form-fiddle))
7948
7949 (define-public sbcl-parachute
7950 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
7951 (revision "0"))
7952 (package
7953 (name "sbcl-parachute")
7954 (version (git-version "1.1.1" revision commit))
7955 (source
7956 (origin
7957 (method git-fetch)
7958 (uri
7959 (git-reference
7960 (url "https://github.com/Shinmera/parachute")
7961 (commit commit)))
7962 (file-name (git-file-name name version))
7963 (sha256
7964 (base32
7965 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
7966 (build-system asdf-build-system/sbcl)
7967 (inputs
7968 `(("documentation-utils" ,sbcl-documentation-utils)
7969 ("form-fiddle" ,sbcl-form-fiddle)))
7970 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
7971 (description
7972 "Parachute is a simple-to-use and extensible testing framework.
7973 In Parachute, things are organised as a bunch of named tests within a package.
7974 Each test can contain a bunch of test forms that make up its body.")
7975 (home-page "https://shinmera.github.io/parachute/")
7976 (license license:zlib))))
7977
7978 (define-public cl-parachute
7979 (sbcl-package->cl-source-package sbcl-parachute))
7980
7981 (define-public ecl-parachute
7982 (sbcl-package->ecl-package sbcl-parachute))
7983
7984 (define-public sbcl-array-utils
7985 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
7986 (revision "0"))
7987 (package
7988 (name "sbcl-array-utils")
7989 (version (git-version "1.1.1" revision commit))
7990 (source
7991 (origin
7992 (method git-fetch)
7993 (uri
7994 (git-reference
7995 (url "https://github.com/Shinmera/array-utils")
7996 (commit commit)))
7997 (file-name (git-file-name name version))
7998 (sha256
7999 (base32
8000 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
8001 (build-system asdf-build-system/sbcl)
8002 (native-inputs
8003 `(("parachute" ,sbcl-parachute)))
8004 (inputs
8005 `(("documentation-utils" ,sbcl-documentation-utils)))
8006 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
8007 (description
8008 "A miniature toolkit that contains some useful shifting/popping/pushing
8009 functions for arrays and vectors. Originally from Plump.")
8010 (home-page "https://shinmera.github.io/array-utils/")
8011 (license license:zlib))))
8012
8013 (define-public cl-array-utils
8014 (sbcl-package->cl-source-package sbcl-array-utils))
8015
8016 (define-public ecl-array-utils
8017 (sbcl-package->ecl-package sbcl-array-utils))
8018
8019 (define-public sbcl-plump
8020 (let ((commit "34f890fe46efdebe7bb70d218f1937e98f632bf9")
8021 (revision "1"))
8022 (package
8023 (name "sbcl-plump")
8024 (version (git-version "2.0.0" revision commit))
8025 (source
8026 (origin
8027 (method git-fetch)
8028 (uri
8029 (git-reference
8030 (url "https://github.com/Shinmera/plump")
8031 (commit commit)))
8032 (file-name (git-file-name name version))
8033 (sha256
8034 (base32
8035 "0a0x8wn6vv1ylxcwck12k18gy0a366kdm6ddxxk7yynl4mwnqgkh"))))
8036 (build-system asdf-build-system/sbcl)
8037 (inputs
8038 `(("array-utils" ,sbcl-array-utils)
8039 ("documentation-utils" ,sbcl-documentation-utils)))
8040 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
8041 (description
8042 "Plump is a parser for HTML/XML-like documents, focusing on being
8043 lenient towards invalid markup. It can handle things like invalid attributes,
8044 bad closing tag order, unencoded entities, inexistent tag types, self-closing
8045 tags and so on. It parses documents to a class representation and offers a
8046 small set of DOM functions to manipulate it. It can be extended to parse to
8047 your own classes.")
8048 (home-page "https://shinmera.github.io/plump/")
8049 (license license:zlib))))
8050
8051 (define-public cl-plump
8052 (sbcl-package->cl-source-package sbcl-plump))
8053
8054 (define-public ecl-plump
8055 (sbcl-package->ecl-package sbcl-plump))
8056
8057 ;;; Split the antik package in two to work around the circular dependency
8058 ;;; between antik/antik and antik/gsll.
8059 (define-public sbcl-antik-base
8060 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
8061 (revision "1"))
8062 (package
8063 (name "sbcl-antik-base")
8064 (version (git-version "0.0.0" revision commit))
8065 (source
8066 (origin
8067 (method git-fetch)
8068 (uri (git-reference
8069 (url "https://gitlab.common-lisp.net/antik/antik.git")
8070 (commit commit)))
8071 (file-name (git-file-name name version))
8072 (sha256
8073 (base32
8074 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
8075 (build-system asdf-build-system/sbcl)
8076 (inputs
8077 `(("alexandria" ,sbcl-alexandria)
8078 ("cffi" ,sbcl-cffi)
8079 ("cl-ppcre" ,sbcl-cl-ppcre)
8080 ("drakma" ,sbcl-drakma)
8081 ("fare-utils" ,sbcl-fare-utils)
8082 ("iterate" ,sbcl-iterate)
8083 ("metabang-bind" ,sbcl-metabang-bind)
8084 ("named-readtables" ,sbcl-named-readtables)
8085 ("split-sequence" ,sbcl-split-sequence)
8086 ("static-vectors" ,sbcl-static-vectors)
8087 ("trivial-garbage" ,sbcl-trivial-garbage)
8088 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
8089 (native-inputs
8090 `(("lisp-unit" ,sbcl-lisp-unit)))
8091 (arguments
8092 '(#:asd-systems '("antik-base"
8093 "foreign-array")
8094 #:phases
8095 (modify-phases %standard-phases
8096 (add-after 'unpack 'fix-build
8097 (lambda _
8098 (for-each delete-file
8099 '("antik.asd"
8100 "physical-dimension.asd"
8101 "science-data.asd"))
8102 #t)))))
8103 (synopsis "Scientific and engineering computation in Common Lisp")
8104 (description
8105 "Antik provides a foundation for scientific and engineering
8106 computation in Common Lisp. It is designed not only to facilitate
8107 numerical computations, but to permit the use of numerical computation
8108 libraries and the interchange of data and procedures, whether
8109 foreign (non-Lisp) or Lisp libraries. It is named after the
8110 Antikythera mechanism, one of the oldest examples of a scientific
8111 computer known.")
8112 (home-page "https://common-lisp.net/project/antik/")
8113 (license license:gpl3))))
8114
8115 (define-public cl-antik-base
8116 (sbcl-package->cl-source-package sbcl-antik-base))
8117
8118 (define-public ecl-antik-base
8119 (let ((pkg (sbcl-package->ecl-package sbcl-antik-base)))
8120 (package
8121 (inherit pkg)
8122 (arguments
8123 (substitute-keyword-arguments (package-arguments pkg)
8124 ((#:phases phases)
8125 `(modify-phases ,phases
8126 (add-after 'unpack 'fix-readtable
8127 (lambda _
8128 (substitute* "input-output/readtable.lisp"
8129 (("#-ccl")
8130 "#-(or ccl ecl)"))
8131 #t)))))))))
8132
8133 (define-public sbcl-gsll
8134 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
8135 (revision "1"))
8136 (package
8137 (name "sbcl-gsll")
8138 (version (git-version "0.0.0" revision commit))
8139 (source
8140 (origin
8141 (method git-fetch)
8142 (uri (git-reference
8143 (url "https://gitlab.common-lisp.net/antik/gsll.git")
8144 (commit commit)))
8145 (file-name (git-file-name name version))
8146 (sha256
8147 (base32
8148 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
8149 (build-system asdf-build-system/sbcl)
8150 (native-inputs
8151 `(("lisp-unit" ,sbcl-lisp-unit)))
8152 (inputs
8153 `(("alexandria" ,sbcl-alexandria)
8154 ("antik-base" ,sbcl-antik-base)
8155 ("cffi" ,sbcl-cffi)
8156 ("gsl" ,gsl)
8157 ("metabang-bind" ,sbcl-metabang-bind)
8158 ("trivial-features" ,sbcl-trivial-features)
8159 ("trivial-garbage" ,sbcl-trivial-garbage)))
8160 (arguments
8161 `(#:tests? #f
8162 #:phases
8163 (modify-phases %standard-phases
8164 (add-after 'unpack 'fix-cffi-paths
8165 (lambda* (#:key inputs #:allow-other-keys)
8166 (substitute* "gsll.asd"
8167 ((":depends-on \\(#:foreign-array")
8168 ":depends-on (#:foreign-array #:cffi-libffi"))
8169 (substitute* "init/init.lisp"
8170 (("libgslcblas.so" all)
8171 (string-append
8172 (assoc-ref inputs "gsl") "/lib/" all)))
8173 (substitute* "init/init.lisp"
8174 (("libgsl.so" all)
8175 (string-append
8176 (assoc-ref inputs "gsl") "/lib/" all))))))))
8177 (synopsis "GNU Scientific Library for Lisp")
8178 (description
8179 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
8180 GNU Scientific Library (GSL) from Common Lisp. This library provides a
8181 full range of common mathematical operations useful to scientific and
8182 engineering applications. The design of the GSLL interface is such
8183 that access to most of the GSL library is possible in a Lisp-natural
8184 way; the intent is that the user not be hampered by the restrictions
8185 of the C language in which GSL has been written. GSLL thus provides
8186 interactive use of GSL for getting quick answers, even for someone not
8187 intending to program in Lisp.")
8188 (home-page "https://common-lisp.net/project/gsll/")
8189 (license license:gpl3))))
8190
8191 (define-public cl-gsll
8192 (sbcl-package->cl-source-package sbcl-gsll))
8193
8194 (define-public ecl-gsll
8195 (sbcl-package->ecl-package sbcl-gsll))
8196
8197 (define-public sbcl-antik
8198 (package
8199 (inherit sbcl-antik-base)
8200 (name "sbcl-antik")
8201 (inputs
8202 `(("antik-base" ,sbcl-antik-base)
8203 ("gsll" ,sbcl-gsll)))
8204 (arguments
8205 '(#:asd-systems '("antik"
8206 "science-data")
8207 #:phases
8208 (modify-phases %standard-phases
8209 (add-after 'unpack 'fix-build
8210 (lambda _
8211 (for-each delete-file
8212 '("antik-base.asd"
8213 "foreign-array.asd"))
8214 #t)))))))
8215
8216 (define-public cl-antik
8217 (sbcl-package->cl-source-package sbcl-antik))
8218
8219 (define-public sbcl-cl-interpol
8220 (let ((commit "70a1137f41dd8889004dbab9536b1adeac2497aa")
8221 (revision "1"))
8222 (package
8223 (name "sbcl-cl-interpol")
8224 (version (git-version "0.2.7" revision commit))
8225 (source
8226 (origin
8227 (method git-fetch)
8228 (uri (git-reference
8229 (url "https://github.com/edicl/cl-interpol")
8230 (commit commit)))
8231 (file-name (git-file-name "cl-interpol" version))
8232 (sha256
8233 (base32
8234 "1kr00zf62m7la7rxa2m5w49r9cyzamc106hvjcc8ffmi7a4jw490"))))
8235 (build-system asdf-build-system/sbcl)
8236 (inputs
8237 `(("cl-unicode" ,sbcl-cl-unicode)
8238 ("named-readtables" ,sbcl-named-readtables)))
8239 (native-inputs
8240 `(("flexi-streams" ,sbcl-flexi-streams)))
8241 (synopsis "String interpolation for Common Lisp")
8242 (description
8243 "CL-INTERPOL is a library for Common Lisp which modifies the
8244 reader so that you can have interpolation within strings similar to
8245 Perl or Unix Shell scripts. It also provides various ways to insert
8246 arbitrary characters into literal strings even if your editor/IDE
8247 doesn't support them.")
8248 (home-page "https://edicl.github.io/cl-interpol/")
8249 (license license:bsd-3))))
8250
8251 (define-public cl-interpol
8252 (sbcl-package->cl-source-package sbcl-cl-interpol))
8253
8254 (define-public ecl-cl-interpol
8255 (sbcl-package->ecl-package sbcl-cl-interpol))
8256
8257 (define-public sbcl-symbol-munger
8258 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
8259 (revision "1"))
8260 (package
8261 (name "sbcl-symbol-munger")
8262 (version (git-version "0.0.1" revision commit))
8263 (source
8264 (origin
8265 (method git-fetch)
8266 (uri (git-reference
8267 (url "https://github.com/AccelerationNet/symbol-munger")
8268 (commit commit)))
8269 (file-name (git-file-name name version))
8270 (sha256
8271 (base32
8272 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
8273 (build-system asdf-build-system/sbcl)
8274 (inputs
8275 `(("alexandria" ,sbcl-alexandria)
8276 ("iterate" ,sbcl-iterate)))
8277 (arguments
8278 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8279 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8280 '(#:tests? #f))
8281 (synopsis
8282 "Capitalization and spacing conversion functions for Common Lisp")
8283 (description
8284 "This is a Common Lisp library to change the capitalization and spacing
8285 of a string or a symbol. It can convert to and from Lisp, english, underscore
8286 and camel-case rules.")
8287 (home-page "https://github.com/AccelerationNet/symbol-munger")
8288 ;; The package declares a BSD license, but all of the license
8289 ;; text is MIT.
8290 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
8291 (license license:expat))))
8292
8293 (define-public cl-symbol-munger
8294 (sbcl-package->cl-source-package sbcl-symbol-munger))
8295
8296 (define-public ecl-symbol-munger
8297 (sbcl-package->ecl-package sbcl-symbol-munger))
8298
8299 (define-public sbcl-lisp-unit2
8300 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8301 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8302 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
8303 (revision "1"))
8304 (package
8305 (name "sbcl-lisp-unit2")
8306 (version (git-version "0.2.0" revision commit))
8307 (source
8308 (origin
8309 (method git-fetch)
8310 (uri (git-reference
8311 (url "https://github.com/AccelerationNet/lisp-unit2")
8312 (commit commit)))
8313 (file-name (git-file-name name version))
8314 (sha256
8315 (base32
8316 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
8317 (build-system asdf-build-system/sbcl)
8318 (inputs
8319 `(("alexandria" ,sbcl-alexandria)
8320 ("cl-interpol" ,sbcl-cl-interpol)
8321 ("iterate" ,sbcl-iterate)
8322 ("symbol-munger" ,sbcl-symbol-munger)))
8323 (synopsis "Test Framework for Common Lisp")
8324 (description
8325 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
8326 style of JUnit for Java. It is a new version of the lisp-unit library written
8327 by Chris Riesbeck.")
8328 (home-page "https://github.com/AccelerationNet/lisp-unit2")
8329 (license license:expat))))
8330
8331 (define-public cl-lisp-unit2
8332 (sbcl-package->cl-source-package sbcl-lisp-unit2))
8333
8334 (define-public ecl-lisp-unit2
8335 (sbcl-package->ecl-package sbcl-lisp-unit2))
8336
8337 (define-public sbcl-cl-csv
8338 (let ((commit "68ecb5d816545677513d7f6308d9e5e8d2265651")
8339 (revision "2"))
8340 (package
8341 (name "sbcl-cl-csv")
8342 (version (git-version "1.0.6" revision commit))
8343 (source
8344 (origin
8345 (method git-fetch)
8346 (uri (git-reference
8347 (url "https://github.com/AccelerationNet/cl-csv")
8348 (commit commit)))
8349 (file-name (git-file-name name version))
8350 (sha256
8351 (base32
8352 "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"))))
8353 (build-system asdf-build-system/sbcl)
8354 (arguments
8355 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
8356 `(#:tests? #f))
8357 (inputs
8358 `(("alexandria" ,sbcl-alexandria)
8359 ("cl-interpol" ,sbcl-cl-interpol)
8360 ("iterate" ,sbcl-iterate)))
8361 (native-inputs
8362 `(("lisp-unit2" ,sbcl-lisp-unit2)))
8363 (synopsis "Common lisp library for comma-separated values")
8364 (description
8365 "This is a Common Lisp library providing functions to read/write CSV
8366 from/to strings, streams and files.")
8367 (home-page "https://github.com/AccelerationNet/cl-csv")
8368 (license license:bsd-3))))
8369
8370 (define-public cl-csv
8371 (sbcl-package->cl-source-package sbcl-cl-csv))
8372
8373 (define-public ecl-cl-csv
8374 (sbcl-package->ecl-package sbcl-cl-csv))
8375
8376 (define-public sbcl-external-program
8377 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8378 (revision "1"))
8379 (package
8380 (name "sbcl-external-program")
8381 (version (git-version "0.0.6" revision commit))
8382 (source
8383 (origin
8384 (method git-fetch)
8385 (uri (git-reference
8386 (url "https://github.com/sellout/external-program")
8387 (commit commit)))
8388 (file-name (git-file-name name version))
8389 (sha256
8390 (base32
8391 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8392 (build-system asdf-build-system/sbcl)
8393 (inputs
8394 `(("trivial-features" ,sbcl-trivial-features)))
8395 (native-inputs
8396 `(("fiveam" ,sbcl-fiveam)))
8397 (synopsis "Common Lisp library for running external programs")
8398 (description
8399 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8400 process. It is an attempt to make the RUN-PROGRAM functionality in
8401 implementations like SBCL and CCL as portable as possible without
8402 sacrificing much in the way of power.")
8403 (home-page "https://github.com/sellout/external-program")
8404 (license license:llgpl))))
8405
8406 (define-public cl-external-program
8407 (sbcl-package->cl-source-package sbcl-external-program))
8408
8409 (define-public ecl-external-program
8410 (sbcl-package->ecl-package sbcl-external-program))
8411
8412 (define-public sbcl-cl-ana
8413 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8414 (revision "1"))
8415 (package
8416 (name "sbcl-cl-ana")
8417 (version (git-version "0.0.0" revision commit))
8418 (source
8419 (origin
8420 (method git-fetch)
8421 (uri (git-reference
8422 (url "https://github.com/ghollisjr/cl-ana")
8423 (commit commit)))
8424 (file-name (git-file-name name version))
8425 (sha256
8426 (base32 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
8427 (build-system asdf-build-system/sbcl)
8428 (native-inputs
8429 `(("cl-fad" ,sbcl-cl-fad)))
8430 (inputs
8431 `(("alexandria" ,sbcl-alexandria)
8432 ("antik" ,sbcl-antik)
8433 ("cffi" ,sbcl-cffi)
8434 ("cl-csv" ,sbcl-cl-csv)
8435 ("closer-mop" ,sbcl-closer-mop)
8436 ("external-program" ,sbcl-external-program)
8437 ("gsl" ,gsl)
8438 ("gsll" ,sbcl-gsll)
8439 ("hdf5" ,hdf5-parallel-openmpi)
8440 ("iterate" ,sbcl-iterate)
8441 ("libffi" ,libffi)
8442 ("split-sequence" ,sbcl-split-sequence)))
8443 (arguments
8444 `(#:phases
8445 (modify-phases %standard-phases
8446 (add-after 'unpack 'fix-paths
8447 (lambda* (#:key inputs #:allow-other-keys)
8448 (substitute* "hdf-cffi/hdf-cffi.lisp"
8449 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8450 (string-append (assoc-ref inputs "hdf5")
8451 "/lib/libhdf5.so")))
8452 (substitute* "gsl-cffi/gsl-cffi.lisp"
8453 (("define-foreign-library gsl-cffi" all)
8454 (string-append all " (:unix "
8455 (assoc-ref inputs "gsl")
8456 "/lib/libgsl.so)")))
8457 #t)))))
8458 (synopsis "Common Lisp data analysis library")
8459 (description
8460 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8461 binned data analysis along with nonlinear least squares fitting and
8462 visualization.")
8463 (home-page "https://github.com/ghollisjr/cl-ana")
8464 (license license:gpl3))))
8465
8466 (define-public cl-ana
8467 (sbcl-package->cl-source-package sbcl-cl-ana))
8468
8469 (define-public sbcl-archive
8470 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
8471 (revision "1"))
8472 (package
8473 (name "sbcl-archive")
8474 (version (git-version "0.9" revision commit))
8475 (source (origin
8476 (method git-fetch)
8477 (uri (git-reference
8478 (url "https://github.com/sharplispers/archive")
8479 (commit commit)))
8480 (file-name (git-file-name name version))
8481 (sha256
8482 (base32
8483 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
8484 (build-system asdf-build-system/sbcl)
8485 (inputs
8486 `(("cl-fad" ,sbcl-cl-fad)
8487 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
8488 (synopsis "Common Lisp library for tar and cpio archives")
8489 (description
8490 "This is a Common Lisp library to read and write disk-based file
8491 archives such as those generated by the tar and cpio programs on Unix.")
8492 (home-page "https://github.com/sharplispers/archive")
8493 (license license:bsd-3))))
8494
8495 (define-public cl-archive
8496 (sbcl-package->cl-source-package sbcl-archive))
8497
8498 (define-public ecl-archive
8499 (sbcl-package->ecl-package sbcl-archive))
8500
8501 (define-public sbcl-misc-extensions
8502 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
8503 (revision "1"))
8504 (package
8505 (name "sbcl-misc-extensions")
8506 (version (git-version "3.3" revision commit))
8507 (source
8508 (origin
8509 (method git-fetch)
8510 (uri (git-reference
8511 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
8512 (commit commit)))
8513 (file-name (git-file-name name version))
8514 (sha256
8515 (base32
8516 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
8517 (build-system asdf-build-system/sbcl)
8518 (synopsis "Collection of small macros and extensions for Common Lisp")
8519 (description
8520 "This project is intended as a catchall for small, general-purpose
8521 extensions to Common Lisp. It contains:
8522
8523 @itemize
8524 @item @code{new-let}, a macro that combines and generalizes @code{let},
8525 @code{let*} and @code{multiple-value-bind},
8526 @item @code{gmap}, an iteration macro that generalizes @code{map}.
8527 @end itemize\n")
8528 (home-page "https://common-lisp.net/project/misc-extensions/")
8529 (license license:public-domain))))
8530
8531 (define-public cl-misc-extensions
8532 (sbcl-package->cl-source-package sbcl-misc-extensions))
8533
8534 (define-public ecl-misc-extensions
8535 (sbcl-package->ecl-package sbcl-misc-extensions))
8536
8537 (define-public sbcl-mt19937
8538 (package
8539 (name "sbcl-mt19937")
8540 (version "1.1")
8541 (source
8542 (origin
8543 (method url-fetch)
8544 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
8545 "mt19937-latest.tar.gz"))
8546 (sha256
8547 (base32
8548 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
8549 (build-system asdf-build-system/sbcl)
8550 (synopsis "Mersenne Twister pseudo-random number generator")
8551 (description
8552 "MT19937 is a portable Mersenne Twister pseudo-random number generator
8553 for Common Lisp.")
8554 (home-page "https://www.cliki.net/mt19937")
8555 (license license:public-domain)))
8556
8557 (define-public cl-mt19937
8558 (sbcl-package->cl-source-package sbcl-mt19937))
8559
8560 (define-public ecl-mt19937
8561 (sbcl-package->ecl-package sbcl-mt19937))
8562
8563 (define-public sbcl-fset
8564 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
8565 (revision "1"))
8566 (package
8567 (name "sbcl-fset")
8568 (version (git-version "1.3.2" revision commit))
8569 (source
8570 (origin
8571 (method git-fetch)
8572 (uri (git-reference
8573 (url "https://github.com/slburson/fset")
8574 (commit commit)))
8575 (file-name (git-file-name name version))
8576 (sha256
8577 (base32
8578 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
8579 (snippet '(begin
8580 ;; Remove obsolete copy of system definition.
8581 (delete-file "Code/fset.asd")
8582 #t))))
8583 (build-system asdf-build-system/sbcl)
8584 (inputs
8585 `(("misc-extensions" ,sbcl-misc-extensions)
8586 ("mt19937" ,sbcl-mt19937)
8587 ("named-readtables" ,sbcl-named-readtables)))
8588 (synopsis "Functional set-theoretic collections library")
8589 (description
8590 "FSet is a functional set-theoretic collections library for Common Lisp.
8591 Functional means that all update operations return a new collection rather than
8592 modifying an existing one in place. Set-theoretic means that collections may
8593 be nested arbitrarily with no additional programmer effort; for instance, sets
8594 may contain sets, maps may be keyed by sets, etc.")
8595 (home-page "https://common-lisp.net/project/fset/Site/index.html")
8596 (license license:llgpl))))
8597
8598 (define-public cl-fset
8599 (sbcl-package->cl-source-package sbcl-fset))
8600
8601 (define-public ecl-fset
8602 (package
8603 (inherit (sbcl-package->ecl-package sbcl-fset))
8604 (arguments
8605 ;; Tests fails on ECL with "The function FSET::MAKE-CHAR is undefined".
8606 '(#:tests? #f))))
8607
8608 (define-public sbcl-cl-cont
8609 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
8610 (revision "1"))
8611 (package
8612 (name "sbcl-cl-cont")
8613 (version (git-version "0.3.8" revision commit))
8614 (source
8615 (origin
8616 (method git-fetch)
8617 (uri (git-reference
8618 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
8619 (commit commit)))
8620 (file-name (git-file-name name version))
8621 (sha256
8622 (base32
8623 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
8624 (build-system asdf-build-system/sbcl)
8625 (inputs
8626 `(("alexandria" ,sbcl-alexandria)
8627 ("closer-mop" ,sbcl-closer-mop)))
8628 (native-inputs
8629 `(("rt" ,sbcl-rt)))
8630 (synopsis "Delimited continuations for Common Lisp")
8631 (description
8632 "This is a library that implements delimited continuations by
8633 transforming Common Lisp code to continuation passing style.")
8634 (home-page "https://common-lisp.net/project/cl-cont/")
8635 (license license:llgpl))))
8636
8637 (define-public cl-cont
8638 (sbcl-package->cl-source-package sbcl-cl-cont))
8639
8640 (define-public ecl-cl-cont
8641 (sbcl-package->ecl-package sbcl-cl-cont))
8642
8643 (define-public sbcl-cl-coroutine
8644 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
8645 (revision "1"))
8646 (package
8647 (name "sbcl-cl-coroutine")
8648 (version (git-version "0.1" revision commit))
8649 (source
8650 (origin
8651 (method git-fetch)
8652 (uri (git-reference
8653 (url "https://github.com/takagi/cl-coroutine")
8654 (commit commit)))
8655 (file-name (git-file-name name version))
8656 (sha256
8657 (base32
8658 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
8659 (build-system asdf-build-system/sbcl)
8660 (inputs
8661 `(("alexandria" ,sbcl-alexandria)
8662 ("cl-cont" ,sbcl-cl-cont)))
8663 (native-inputs
8664 `(("prove" ,sbcl-prove)))
8665 (arguments
8666 `(;; TODO: Fix the tests. They fail with:
8667 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
8668 #:tests? #f
8669 #:phases
8670 (modify-phases %standard-phases
8671 (add-after 'unpack 'fix-tests
8672 (lambda _
8673 (substitute* "cl-coroutine-test.asd"
8674 (("cl-test-more")
8675 "prove"))
8676 #t)))))
8677 (synopsis "Coroutine library for Common Lisp")
8678 (description
8679 "This is a coroutine library for Common Lisp implemented using the
8680 continuations of the @code{cl-cont} library.")
8681 (home-page "https://github.com/takagi/cl-coroutine")
8682 (license license:llgpl))))
8683
8684 (define-public cl-coroutine
8685 (sbcl-package->cl-source-package sbcl-cl-coroutine))
8686
8687 (define-public ecl-cl-coroutine
8688 (sbcl-package->ecl-package sbcl-cl-coroutine))
8689
8690 (define-public sbcl-vas-string-metrics
8691 (let ((commit "f2e4500b180316123fbd549bd51c751ee2d6ba0f")
8692 (revision "1"))
8693 (package
8694 (name "sbcl-vas-string-metrics")
8695 (version (git-version "0.0.0" revision commit))
8696 (source
8697 (origin
8698 (method git-fetch)
8699 (uri (git-reference
8700 (url "https://github.com/vsedach/vas-string-metrics")
8701 (commit commit)))
8702 (file-name (git-file-name "vas-string-metrics" version))
8703 (sha256
8704 (base32 "11fcnd03ybzz37rkg3z0wsb727yqgcd9gn70sccfb34l89ia279k"))))
8705 (build-system asdf-build-system/sbcl)
8706 (arguments
8707 `(#:test-asd-file "test.vas-string-metrics.asd"))
8708 (home-page "https://github.com/vsedach/vas-string-metrics")
8709 (synopsis "String distance algorithms for Common Lisp")
8710 (description
8711 "VAS-STRING-METRICS provides the Jaro, Jaro-Winkler, Soerensen-Dice,
8712 Levenshtein, and normalized Levenshtein string distance/similarity metrics
8713 algorithms.")
8714 (license license:lgpl3+))))
8715
8716 (define-public ecl-vas-string-metrics
8717 (sbcl-package->ecl-package sbcl-vas-string-metrics))
8718
8719 (define-public cl-vas-string-metrics
8720 (sbcl-package->cl-source-package sbcl-vas-string-metrics))
8721
8722 (define-public sbcl-vom
8723 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
8724 (revision "1"))
8725 (package
8726 (name "sbcl-vom")
8727 (version (git-version "0.1.4" revision commit))
8728 (source
8729 (origin
8730 (method git-fetch)
8731 (uri (git-reference
8732 (url "https://github.com/orthecreedence/vom")
8733 (commit commit)))
8734 (file-name (git-file-name name version))
8735 (sha256
8736 (base32
8737 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
8738 (build-system asdf-build-system/sbcl)
8739 (synopsis "Tiny logging utility for Common Lisp")
8740 (description
8741 "Vom is a logging library for Common Lisp. It's goal is to be useful
8742 and small. It does not provide a lot of features as other loggers do, but
8743 has a small codebase that's easy to understand and use.")
8744 (home-page "https://github.com/orthecreedence/vom")
8745 (license license:expat))))
8746
8747 (define-public cl-vom
8748 (sbcl-package->cl-source-package sbcl-vom))
8749
8750 (define-public ecl-vom
8751 (sbcl-package->ecl-package sbcl-vom))
8752
8753 (define-public sbcl-cl-libuv
8754 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
8755 (revision "1"))
8756 (package
8757 (name "sbcl-cl-libuv")
8758 (version (git-version "0.1.6" revision commit))
8759 (source
8760 (origin
8761 (method git-fetch)
8762 (uri (git-reference
8763 (url "https://github.com/orthecreedence/cl-libuv")
8764 (commit commit)))
8765 (file-name (git-file-name name version))
8766 (sha256
8767 (base32
8768 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
8769 (build-system asdf-build-system/sbcl)
8770 (inputs
8771 `(("alexandria" ,sbcl-alexandria)
8772 ("cffi" ,sbcl-cffi)
8773 ("libuv" ,libuv)))
8774 (arguments
8775 `(#:phases
8776 (modify-phases %standard-phases
8777 (add-after 'unpack 'fix-paths
8778 (lambda* (#:key inputs #:allow-other-keys)
8779 (substitute* "lib.lisp"
8780 (("/usr/lib/libuv.so")
8781 (string-append (assoc-ref inputs "libuv")
8782 "/lib/libuv.so")))
8783 #t))
8784 (add-after 'fix-paths 'fix-system-definition
8785 (lambda _
8786 (substitute* "cl-libuv.asd"
8787 (("#:cffi #:alexandria")
8788 "#:cffi #:cffi-grovel #:alexandria"))
8789 #t)))))
8790 (synopsis "Common Lisp bindings to libuv")
8791 (description
8792 "This library provides low-level libuv bindings for Common Lisp.")
8793 (home-page "https://github.com/orthecreedence/cl-libuv")
8794 (license license:expat))))
8795
8796 (define-public cl-libuv
8797 (sbcl-package->cl-source-package sbcl-cl-libuv))
8798
8799 (define-public ecl-cl-libuv
8800 (sbcl-package->ecl-package sbcl-cl-libuv))
8801
8802 (define-public sbcl-cl-async
8803 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
8804 (revision "1"))
8805 (package
8806 (name "sbcl-cl-async")
8807 (version (git-version "0.6.1" revision commit))
8808 (source
8809 (origin
8810 (method git-fetch)
8811 (uri (git-reference
8812 (url "https://github.com/orthecreedence/cl-async")
8813 (commit commit)))
8814 (file-name (git-file-name name version))
8815 (sha256
8816 (base32
8817 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
8818 (build-system asdf-build-system/sbcl)
8819 (inputs
8820 `(("babel" ,sbcl-babel)
8821 ("bordeaux-threads" ,sbcl-bordeaux-threads)
8822 ("cffi" ,sbcl-cffi)
8823 ("cl-libuv" ,sbcl-cl-libuv)
8824 ("cl-ppcre" ,sbcl-cl-ppcre)
8825 ("fast-io" ,sbcl-fast-io)
8826 ("openssl" ,openssl)
8827 ("static-vectors" ,sbcl-static-vectors)
8828 ("trivial-features" ,sbcl-trivial-features)
8829 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
8830 ("vom" ,sbcl-vom)))
8831 (arguments
8832 `(#:asd-systems '("cl-async"
8833 "cl-async-repl"
8834 "cl-async-ssl")
8835 #:phases
8836 (modify-phases %standard-phases
8837 (add-after 'unpack 'fix-paths
8838 (lambda* (#:key inputs #:allow-other-keys)
8839 (substitute* "src/ssl/package.lisp"
8840 (("libcrypto\\.so")
8841 (string-append (assoc-ref inputs "openssl")
8842 "/lib/libcrypto.so"))
8843 (("libssl\\.so")
8844 (string-append (assoc-ref inputs "openssl")
8845 "/lib/libssl.so")))
8846 #t)))))
8847 (synopsis "Asynchronous operations for Common Lisp")
8848 (description
8849 "Cl-async is a library for general purpose, non-blocking programming in
8850 Common Lisp. It uses the libuv library as backend.")
8851 (home-page "https://orthecreedence.github.io/cl-async/")
8852 (license license:expat))))
8853
8854 (define-public cl-async
8855 (sbcl-package->cl-source-package sbcl-cl-async))
8856
8857 (define-public ecl-cl-async
8858 (sbcl-package->ecl-package sbcl-cl-async))
8859
8860 (define-public sbcl-blackbird
8861 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
8862 (revision "1"))
8863 (package
8864 (name "sbcl-blackbird")
8865 (version (git-version "0.5.2" revision commit))
8866 (source
8867 (origin
8868 (method git-fetch)
8869 (uri (git-reference
8870 (url "https://github.com/orthecreedence/blackbird")
8871 (commit commit)))
8872 (file-name (git-file-name name version))
8873 (sha256
8874 (base32
8875 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
8876 (build-system asdf-build-system/sbcl)
8877 (inputs
8878 `(("vom" ,sbcl-vom)))
8879 (native-inputs
8880 `(("cl-async" ,sbcl-cl-async)
8881 ("fiveam" ,sbcl-fiveam)))
8882 (synopsis "Promise implementation for Common Lisp")
8883 (description
8884 "This is a standalone promise implementation for Common Lisp. It is
8885 the successor to the now-deprecated cl-async-future project.")
8886 (home-page "https://orthecreedence.github.io/blackbird/")
8887 (license license:expat))))
8888
8889 (define-public cl-blackbird
8890 (sbcl-package->cl-source-package sbcl-blackbird))
8891
8892 (define-public ecl-blackbird
8893 (sbcl-package->ecl-package sbcl-blackbird))
8894
8895 (define-public sbcl-cl-async-future
8896 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
8897 (revision "1"))
8898 (package
8899 (name "sbcl-cl-async-future")
8900 (version (git-version "0.4.4.1" revision commit))
8901 (source
8902 (origin
8903 (method git-fetch)
8904 (uri (git-reference
8905 (url "https://github.com/orthecreedence/cl-async-future")
8906 (commit commit)))
8907 (file-name (git-file-name name version))
8908 (sha256
8909 (base32
8910 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
8911 (build-system asdf-build-system/sbcl)
8912 (inputs
8913 `(("blackbird" ,sbcl-blackbird)))
8914 (native-inputs
8915 `(("cl-async" ,sbcl-cl-async)
8916 ("eos" ,sbcl-eos)))
8917 (synopsis "Futures implementation for Common Lisp")
8918 (description
8919 "This is futures implementation for Common Lisp. It plugs in nicely
8920 to cl-async.")
8921 (home-page "https://orthecreedence.github.io/cl-async/future")
8922 (license license:expat))))
8923
8924 (define-public cl-async-future
8925 (sbcl-package->cl-source-package sbcl-cl-async-future))
8926
8927 (define-public ecl-cl-async-future
8928 (sbcl-package->ecl-package sbcl-cl-async-future))
8929
8930 (define-public sbcl-green-threads
8931 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
8932 (revision "1"))
8933 (package
8934 (name "sbcl-green-threads")
8935 (version (git-version "0.3" revision commit))
8936 (source
8937 (origin
8938 (method git-fetch)
8939 (uri (git-reference
8940 (url "https://github.com/thezerobit/green-threads")
8941 (commit commit)))
8942 (file-name (git-file-name name version))
8943 (sha256
8944 (base32
8945 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
8946 (build-system asdf-build-system/sbcl)
8947 (inputs
8948 `(("cl-async-future" ,sbcl-cl-async-future)
8949 ("cl-cont" ,sbcl-cl-cont)))
8950 (native-inputs
8951 `(("prove" ,sbcl-prove)))
8952 (arguments
8953 `(;; TODO: Fix the tests. They fail with:
8954 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
8955 #:tests? #f
8956 #:phases
8957 (modify-phases %standard-phases
8958 (add-after 'unpack 'fix-tests
8959 (lambda _
8960 (substitute* "green-threads-test.asd"
8961 (("cl-test-more")
8962 "prove"))
8963 #t)))))
8964 (synopsis "Cooperative multitasking library for Common Lisp")
8965 (description
8966 "This library allows for cooperative multitasking with help of cl-cont
8967 for continuations. It tries to mimic the API of bordeaux-threads as much as
8968 possible.")
8969 (home-page "https://github.com/thezerobit/green-threads")
8970 (license license:bsd-3))))
8971
8972 (define-public cl-green-threads
8973 (sbcl-package->cl-source-package sbcl-green-threads))
8974
8975 (define-public ecl-green-threads
8976 (sbcl-package->ecl-package sbcl-green-threads))
8977
8978 (define-public sbcl-cl-base32
8979 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
8980 (revision "1"))
8981 (package
8982 (name "sbcl-cl-base32")
8983 (version (git-version "0.1" revision commit))
8984 (source
8985 (origin
8986 (method git-fetch)
8987 (uri (git-reference
8988 (url "https://github.com/hargettp/cl-base32")
8989 (commit commit)))
8990 (file-name (git-file-name name version))
8991 (sha256
8992 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
8993 (build-system asdf-build-system/sbcl)
8994 (native-inputs
8995 `(("lisp-unit" ,sbcl-lisp-unit)))
8996 (synopsis "Common Lisp library for base32 encoding and decoding")
8997 (description
8998 "This package provides functions for base32 encoding and decoding as
8999 defined in RFC4648.")
9000 (home-page "https://github.com/hargettp/cl-base32")
9001 (license license:expat))))
9002
9003 (define-public cl-base32
9004 (sbcl-package->cl-source-package sbcl-cl-base32))
9005
9006 (define-public ecl-cl-base32
9007 (sbcl-package->ecl-package sbcl-cl-base32))
9008
9009 (define-public sbcl-cl-z85
9010 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
9011 (revision "1"))
9012 (package
9013 (name "sbcl-cl-z85")
9014 (version (git-version "1.0" revision commit))
9015 (source
9016 (origin
9017 (method git-fetch)
9018 (uri (git-reference
9019 (url "https://github.com/glv2/cl-z85")
9020 (commit commit)))
9021 (file-name (git-file-name name version))
9022 (sha256
9023 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
9024 (build-system asdf-build-system/sbcl)
9025 (native-inputs
9026 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
9027 ("fiveam" ,sbcl-fiveam)))
9028 (synopsis "Common Lisp library for Z85 encoding and decoding")
9029 (description
9030 "This package provides functions to encode or decode byte vectors or
9031 byte streams using the Z85 format, which is a base-85 encoding used by
9032 ZeroMQ.")
9033 (home-page "https://github.com/glv2/cl-z85")
9034 (license license:gpl3+))))
9035
9036 (define-public cl-z85
9037 (sbcl-package->cl-source-package sbcl-cl-z85))
9038
9039 (define-public ecl-cl-z85
9040 (sbcl-package->ecl-package sbcl-cl-z85))
9041
9042 (define-public sbcl-ltk
9043 (package
9044 (name "sbcl-ltk")
9045 (version "0.992")
9046 (source
9047 (origin
9048 (method git-fetch)
9049 (uri (git-reference
9050 (url "https://github.com/herth/ltk")
9051 (commit version)))
9052 (file-name (git-file-name name version))
9053 (sha256
9054 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
9055 (build-system asdf-build-system/sbcl)
9056 (inputs
9057 `(("imagemagick" ,imagemagick)
9058 ("tk" ,tk)))
9059 (arguments
9060 `(#:asd-systems '("ltk"
9061 "ltk-mw"
9062 "ltk-remote")
9063 #:tests? #f
9064 #:phases
9065 (modify-phases %standard-phases
9066 (add-after 'unpack 'fix-paths
9067 (lambda* (#:key inputs #:allow-other-keys)
9068 (substitute* "ltk/ltk.lisp"
9069 (("#-freebsd \"wish\"")
9070 (string-append "#-freebsd \""
9071 (assoc-ref inputs "tk")
9072 "/bin/wish\""))
9073 (("do-execute \"convert\"")
9074 (string-append "do-execute \""
9075 (assoc-ref inputs "imagemagick")
9076 "/bin/convert\"")))
9077 #t))
9078 (add-after 'unpack 'fix-build
9079 (lambda _
9080 (substitute* "ltk/ltk-remote.lisp"
9081 (("\\(:export")
9082 "(:shadow #:raise) (:export"))
9083 #t)))))
9084 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9085 (description
9086 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
9087 in pure Common Lisp and does not require any Tk knowledge for its usage.")
9088 (home-page "http://www.peter-herth.de/ltk/")
9089 (license license:llgpl)))
9090
9091 (define-public cl-ltk
9092 (sbcl-package->cl-source-package sbcl-ltk))
9093
9094 (define-public ecl-ltk
9095 (sbcl-package->ecl-package sbcl-ltk))
9096
9097 (define-public sbcl-cl-lex
9098 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
9099 (revision "1"))
9100 (package
9101 (name "sbcl-cl-lex")
9102 (version (git-version "1.1.3" revision commit))
9103 (source
9104 (origin
9105 (method git-fetch)
9106 (uri (git-reference
9107 (url "https://github.com/djr7C4/cl-lex")
9108 (commit commit)))
9109 (file-name (git-file-name name version))
9110 (sha256
9111 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
9112 (build-system asdf-build-system/sbcl)
9113 (inputs
9114 `(("cl-ppcre" ,sbcl-cl-ppcre)))
9115 (synopsis "Common Lisp macros for generating lexical analyzers")
9116 (description
9117 "This is a Common Lisp library providing a set of macros for generating
9118 lexical analyzers automatically. The lexers generated using @code{cl-lex} can
9119 be used with @code{cl-yacc}.")
9120 (home-page "https://github.com/djr7C4/cl-lex")
9121 (license license:gpl3))))
9122
9123 (define-public cl-lex
9124 (sbcl-package->cl-source-package sbcl-cl-lex))
9125
9126 (define-public ecl-cl-lex
9127 (sbcl-package->ecl-package sbcl-cl-lex))
9128
9129 (define-public sbcl-clunit2
9130 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
9131 (revision "1"))
9132 (package
9133 (name "sbcl-clunit2")
9134 (version (git-version "0.2.4" revision commit))
9135 (source
9136 (origin
9137 (method git-fetch)
9138 (uri (git-reference
9139 (url "https://notabug.org/cage/clunit2.git")
9140 (commit commit)))
9141 (file-name (git-file-name name version))
9142 (sha256
9143 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
9144 (build-system asdf-build-system/sbcl)
9145 (synopsis "Unit testing framework for Common Lisp")
9146 (description
9147 "CLUnit is a Common Lisp unit testing framework. It is designed to be
9148 easy to use so that you can quickly start testing.")
9149 (home-page "https://notabug.org/cage/clunit2")
9150 (license license:expat))))
9151
9152 (define-public cl-clunit2
9153 (sbcl-package->cl-source-package sbcl-clunit2))
9154
9155 (define-public ecl-clunit2
9156 (sbcl-package->ecl-package sbcl-clunit2))
9157
9158 (define-public sbcl-cl-colors2
9159 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
9160 (revision "1"))
9161 (package
9162 (name "sbcl-cl-colors2")
9163 (version (git-version "0.2.1" revision commit))
9164 (source
9165 (origin
9166 (method git-fetch)
9167 (uri (git-reference
9168 (url "https://notabug.org/cage/cl-colors2.git")
9169 (commit commit)))
9170 (file-name (git-file-name name version))
9171 (sha256
9172 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
9173 (build-system asdf-build-system/sbcl)
9174 (native-inputs
9175 `(("clunit2" ,sbcl-clunit2)))
9176 (inputs
9177 `(("alexandria" ,sbcl-alexandria)
9178 ("cl-ppcre" ,sbcl-cl-ppcre)))
9179 (synopsis "Color library for Common Lisp")
9180 (description
9181 "This is a very simple color library for Common Lisp, providing:
9182
9183 @itemize
9184 @item Types for representing colors in HSV and RGB spaces.
9185 @item Simple conversion functions between the above types (and also
9186 hexadecimal representation for RGB).
9187 @item Some predefined colors (currently X11 color names -- of course
9188 the library does not depend on X11).
9189 @end itemize\n")
9190 (home-page "https://notabug.org/cage/cl-colors2")
9191 (license license:boost1.0))))
9192
9193 (define-public cl-colors2
9194 (sbcl-package->cl-source-package sbcl-cl-colors2))
9195
9196 (define-public ecl-cl-colors2
9197 (sbcl-package->ecl-package sbcl-cl-colors2))
9198
9199 (define-public sbcl-cl-jpeg
9200 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
9201 (revision "1"))
9202 (package
9203 (name "sbcl-cl-jpeg")
9204 (version (git-version "2.8" revision commit))
9205 (source
9206 (origin
9207 (method git-fetch)
9208 (uri (git-reference
9209 (url "https://github.com/sharplispers/cl-jpeg")
9210 (commit commit)))
9211 (file-name (git-file-name name version))
9212 (sha256
9213 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
9214 (build-system asdf-build-system/sbcl)
9215 (synopsis "JPEG image library for Common Lisp")
9216 (description
9217 "This is a baseline JPEG codec written in Common Lisp. It can be used
9218 for reading and writing JPEG image files.")
9219 (home-page "https://github.com/sharplispers/cl-jpeg")
9220 (license license:bsd-3))))
9221
9222 (define-public cl-jpeg
9223 (sbcl-package->cl-source-package sbcl-cl-jpeg))
9224
9225 (define-public ecl-cl-jpeg
9226 (sbcl-package->ecl-package sbcl-cl-jpeg))
9227
9228 (define-public sbcl-png
9229 (let ((commit "11b965fe378fd0561abe3616b18ff03af5179648")
9230 (revision "1"))
9231 (package
9232 (name "sbcl-png")
9233 (version (git-version "0.6" revision commit))
9234 (source
9235 (origin
9236 (method git-fetch)
9237 (uri (git-reference
9238 (url "https://github.com/ljosa/cl-png")
9239 (commit commit)))
9240 (file-name (git-file-name "cl-png" version))
9241 (sha256
9242 (base32 "173hqwpd0rwqf95mfx1h9l9c3i8bb0gvnpspzmmz3g5x3440czy4"))))
9243 (build-system asdf-build-system/sbcl)
9244 (arguments
9245 `(#:phases
9246 (modify-phases %standard-phases
9247 (add-after 'unpack 'fix-lib-paths
9248 (lambda* (#:key inputs #:allow-other-keys)
9249 (substitute* "libpng.lisp"
9250 (("\"libpng\"")
9251 (string-append "\""
9252 (assoc-ref inputs "libpng")
9253 "/lib/libpng\""))))))))
9254 (inputs
9255 `(("cffi" ,sbcl-cffi)
9256 ("libpng" ,libpng)))
9257 (home-page "https://github.com/ljosa/cl-png")
9258 (synopsis "Read and write PNG file format")
9259 (description
9260 "This package provides a @code{PNG} Common Lisp system to operate with
9261 Portable Network Graphics file format.")
9262 (license license:lgpl2.1))))
9263
9264 (define-public ecl-png
9265 (sbcl-package->ecl-package sbcl-png))
9266
9267 (define-public cl-png
9268 (sbcl-package->cl-source-package sbcl-png))
9269
9270 (define-public sbcl-cl-svg
9271 (let ((commit "1e988ebd2d6e2ee7be4744208828ef1b59e5dcdc")
9272 (revision "1"))
9273 (package
9274 (name "sbcl-cl-svg")
9275 (version (git-version "0.0.3" revision commit))
9276 (source
9277 (origin
9278 (method git-fetch)
9279 (uri (git-reference
9280 (url "https://github.com/wmannis/cl-svg")
9281 (commit commit)))
9282 (file-name (git-file-name "cl-svg" version))
9283 (sha256
9284 (base32 "11rmzimy6j7ln7q5y1h2kw1225rsfb6fpn89qjcq7h5lc8fay0wz"))))
9285 (build-system asdf-build-system/sbcl)
9286 (home-page "https://github.com/wmannis/cl-svg")
9287 (synopsis "Write SVG file format")
9288 (description
9289 "This package provides the @code{CL-SVG} Common Lisp system to produce
9290 Scalable Vector Graphics files.")
9291 (license license:expat))))
9292
9293 (define-public ecl-cl-svg
9294 (sbcl-package->ecl-package sbcl-cl-svg))
9295
9296 (define-public cl-svg
9297 (sbcl-package->cl-source-package sbcl-cl-svg))
9298
9299 (define-public sbcl-nodgui
9300 (let ((commit "4a9c2e7714b278fbe97d198c56f54ea87290001d")
9301 (revision "1"))
9302 (package
9303 (name "sbcl-nodgui")
9304 (version (git-version "0.1.1" revision commit))
9305 (source
9306 (origin
9307 (method git-fetch)
9308 (uri (git-reference
9309 (url "https://notabug.org/cage/nodgui.git")
9310 (commit commit)))
9311 (file-name (git-file-name "nodgui" version))
9312 (sha256
9313 (base32 "1vgzzw459h32v2mi41cia6i940jqmvxlc8w3xj3516hbc2mqkaib"))))
9314 (build-system asdf-build-system/sbcl)
9315 (inputs
9316 `(("alexandria" ,sbcl-alexandria)
9317 ("bordeaux-threads" ,sbcl-bordeaux-threads)
9318 ("cl-colors2" ,sbcl-cl-colors2)
9319 ("cl-jpeg" ,sbcl-cl-jpeg)
9320 ("cl-lex" ,sbcl-cl-lex)
9321 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
9322 ("cl-unicode" ,sbcl-cl-unicode)
9323 ("cl-yacc" ,sbcl-cl-yacc)
9324 ("clunit2" ,sbcl-clunit2)
9325 ("named-readtables" ,sbcl-named-readtables)
9326 ("parse-number" ,sbcl-parse-number)
9327 ("tk" ,tk)))
9328 (arguments
9329 `(#:phases (modify-phases %standard-phases
9330 (add-after 'unpack 'fix-paths
9331 (lambda* (#:key inputs #:allow-other-keys)
9332 (substitute* "src/wish-communication.lisp"
9333 (("#-freebsd \"wish\"")
9334 (string-append "#-freebsd \""
9335 (assoc-ref inputs "tk")
9336 "/bin/wish\"")))
9337 #t)))))
9338 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9339 (description
9340 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
9341 toolkit. It also provides a few additional widgets more than the standard Tk
9342 ones.")
9343 (home-page "https://www.autistici.org/interzona/nodgui.html")
9344 (license license:llgpl))))
9345
9346 (define-public cl-nodgui
9347 (sbcl-package->cl-source-package sbcl-nodgui))
9348
9349 (define-public ecl-nodgui
9350 (sbcl-package->ecl-package sbcl-nodgui))
9351
9352 (define-public sbcl-salza2
9353 (package
9354 (name "sbcl-salza2")
9355 (version "2.0.9")
9356 (source
9357 (origin
9358 (method git-fetch)
9359 (uri (git-reference
9360 (url "https://github.com/xach/salza2")
9361 (commit (string-append "release-" version))))
9362 (file-name (git-file-name name version))
9363 (sha256
9364 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
9365 (build-system asdf-build-system/sbcl)
9366 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
9367 (description
9368 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
9369 deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
9370 respectively.")
9371 (home-page "https://www.xach.com/lisp/salza2/")
9372 (license license:bsd-2)))
9373
9374 (define-public cl-salza2
9375 (sbcl-package->cl-source-package sbcl-salza2))
9376
9377 (define-public ecl-salza2
9378 (sbcl-package->ecl-package sbcl-salza2))
9379
9380 (define-public sbcl-origin
9381 (let ((commit "d646134302456408d6d43580bb05299f1695ab8e")
9382 (revision "1"))
9383 (package
9384 (name "sbcl-origin")
9385 (version (git-version "2.0.0" revision commit))
9386 (source
9387 (origin
9388 (method git-fetch)
9389 (uri (git-reference
9390 (url "https://git.mfiano.net/mfiano/origin")
9391 (commit commit)))
9392 (file-name (git-file-name "origin" version))
9393 (sha256
9394 (base32 "1n9aszaif3yh8prs5r8v51fbj4r5jd1a048mivd5yij3hplkm82b"))))
9395 (build-system asdf-build-system/sbcl)
9396 (native-inputs
9397 `(("parachute" ,sbcl-parachute)))
9398 (inputs
9399 `(("golden-utils" ,sbcl-golden-utils)
9400 ("specialization-store" ,sbcl-specialization-store)))
9401 (home-page "https://git.mfiano.net/mfiano/origin")
9402 (synopsis "Common Lisp graphics math library")
9403 (description
9404 "This is a native Common Lisp graphics math library with an emphasis on
9405 performance and correctness.")
9406 (license license:expat))))
9407
9408 (define-public ecl-origin
9409 (sbcl-package->ecl-package sbcl-origin))
9410
9411 (define-public cl-origin
9412 (sbcl-package->cl-source-package sbcl-origin))
9413
9414 (define-public sbcl-png-read
9415 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
9416 (revision "1"))
9417 (package
9418 (name "sbcl-png-read")
9419 (version (git-version "0.3.1" revision commit))
9420 (source
9421 (origin
9422 (method git-fetch)
9423 (uri (git-reference
9424 (url "https://github.com/Ramarren/png-read")
9425 (commit commit)))
9426 (file-name (git-file-name name version))
9427 (sha256
9428 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
9429 (build-system asdf-build-system/sbcl)
9430 (inputs
9431 `(("babel" ,sbcl-babel)
9432 ("chipz" ,sbcl-chipz)
9433 ("iterate" ,sbcl-iterate)))
9434 (synopsis "PNG decoder for Common Lisp")
9435 (description "This is a Common Lisp library for reading PNG images.")
9436 (home-page "https://github.com/Ramarren/png-read")
9437 (license license:bsd-3))))
9438
9439 (define-public cl-png-read
9440 (sbcl-package->cl-source-package sbcl-png-read))
9441
9442 (define-public ecl-png-read
9443 (sbcl-package->ecl-package sbcl-png-read))
9444
9445 (define-public sbcl-3b-bmfont
9446 (let ((commit "d1b5bec0de580c2d08ec947a93c56b1400f2a37a")
9447 (revision "1"))
9448 (package
9449 (name "sbcl-3b-bmfont")
9450 (version (git-version "0.0.1" revision commit))
9451 (source
9452 (origin
9453 (method git-fetch)
9454 (uri (git-reference
9455 (url "https://github.com/3b/3b-bmfont/")
9456 (commit commit)))
9457 (file-name (git-file-name "3b-bmfont" version))
9458 (sha256
9459 (base32 "12sgf7m0h6fqzhvkas7vmci6mprj3j3fnz778jlbqbsydln6v2yc"))))
9460 (build-system asdf-build-system/sbcl)
9461 (arguments
9462 `(#:asd-systems
9463 '("3b-bmfont"
9464 "3b-bmfont/text"
9465 "3b-bmfont/common"
9466 "3b-bmfont/xml"
9467 "3b-bmfont/json")))
9468 (inputs
9469 `(("alexandria" ,sbcl-alexandria)
9470 ("cxml" ,sbcl-cxml)
9471 ("flexi-streams" ,sbcl-flexi-streams)
9472 ("jsown" ,sbcl-jsown)
9473 ("split-sequence" ,sbcl-split-sequence)))
9474 (home-page "https://github.com/3b/3b-bmfont/")
9475 (synopsis "Read/write bmfont metadata files")
9476 (description
9477 "This is a Common Lisp library which provides functionality to
9478 read/write Bit Map Font (BMF) into text, JSON and XML.")
9479 (license license:expat))))
9480
9481 (define-public ecl-3b-bmfont
9482 (sbcl-package->ecl-package sbcl-3b-bmfont))
9483
9484 (define-public cl-3b-bmfont
9485 (sbcl-package->cl-source-package sbcl-3b-bmfont))
9486
9487 (define-public sbcl-zpng
9488 (package
9489 (name "sbcl-zpng")
9490 (version "1.2.2")
9491 (source
9492 (origin
9493 (method git-fetch)
9494 (uri (git-reference
9495 (url "https://github.com/xach/zpng")
9496 (commit (string-append "release-" version))))
9497 (file-name (git-file-name name version))
9498 (sha256
9499 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
9500 (build-system asdf-build-system/sbcl)
9501 (inputs
9502 `(("salza2" ,sbcl-salza2)))
9503 (synopsis "PNG encoder for Common Lisp")
9504 (description "This is a Common Lisp library for creating PNG images.")
9505 (home-page "https://www.xach.com/lisp/zpng/")
9506 (license license:bsd-2)))
9507
9508 (define-public cl-zpng
9509 (sbcl-package->cl-source-package sbcl-zpng))
9510
9511 (define-public ecl-zpng
9512 (sbcl-package->ecl-package sbcl-zpng))
9513
9514 (define-public sbcl-cl-qrencode
9515 (package
9516 (name "sbcl-cl-qrencode")
9517 (version "0.1.2")
9518 (source
9519 (origin
9520 (method git-fetch)
9521 (uri (git-reference
9522 (url "https://github.com/jnjcc/cl-qrencode")
9523 (commit (string-append "v" version))))
9524 (file-name (git-file-name name version))
9525 (sha256
9526 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
9527 (build-system asdf-build-system/sbcl)
9528 (native-inputs
9529 `(("lisp-unit" ,sbcl-lisp-unit)))
9530 (inputs
9531 `(("zpng" ,sbcl-zpng)))
9532 (synopsis "QR code encoder for Common Lisp")
9533 (description
9534 "This Common Lisp library provides function to make QR codes and to save
9535 them as PNG files.")
9536 (home-page "https://github.com/jnjcc/cl-qrencode")
9537 (license license:gpl2+)))
9538
9539 (define-public cl-qrencode
9540 (sbcl-package->cl-source-package sbcl-cl-qrencode))
9541
9542 (define-public ecl-cl-qrencode
9543 (sbcl-package->ecl-package sbcl-cl-qrencode))
9544
9545 (define-public sbcl-hdf5-cffi
9546 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
9547 (revision "1"))
9548 (package
9549 (name "sbcl-hdf5-cffi")
9550 (version (git-version "1.8.18" revision commit))
9551 (source
9552 (origin
9553 (method git-fetch)
9554 (uri (git-reference
9555 (url "https://github.com/hdfgroup/hdf5-cffi")
9556 (commit commit)))
9557 (file-name (git-file-name name version))
9558 (sha256
9559 (base32
9560 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
9561 (build-system asdf-build-system/sbcl)
9562 (synopsis "Common Lisp bindings for the HDF5 library")
9563 (description
9564 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
9565 (home-page "https://github.com/hdfgroup/hdf5-cffi")
9566 (license (license:non-copyleft
9567 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
9568 commit
9569 "/LICENSE")))
9570 (inputs
9571 `(("cffi" ,sbcl-cffi)
9572 ("hdf5" ,hdf5-1.10)))
9573 (native-inputs
9574 `(("fiveam" ,sbcl-fiveam)))
9575 (arguments
9576 `(#:test-asd-file "hdf5-cffi.test.asd"
9577 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
9578 ;; I don't know if there is a way to tell asdf-build-system to load
9579 ;; an additional system first, so tests are disabled.
9580 #:tests? #f
9581 #:phases
9582 (modify-phases %standard-phases
9583 (add-after 'unpack 'fix-paths
9584 (lambda* (#:key inputs #:allow-other-keys)
9585 (substitute* "src/library.lisp"
9586 (("libhdf5.so")
9587 (string-append
9588 (assoc-ref inputs "hdf5")
9589 "/lib/libhdf5.so")))))
9590 (add-after 'unpack 'fix-dependencies
9591 (lambda* (#:key inputs #:allow-other-keys)
9592 (substitute* "hdf5-cffi.asd"
9593 ((":depends-on \\(:cffi\\)")
9594 ":depends-on (:cffi :cffi-grovel)"))
9595 (substitute* "hdf5-cffi.test.asd"
9596 ((":depends-on \\(:cffi :hdf5-cffi")
9597 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
9598
9599 (define-public cl-hdf5-cffi
9600 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
9601
9602 (define-public ecl-hdf5-cffi
9603 (sbcl-package->ecl-package sbcl-hdf5-cffi))
9604
9605 (define-public sbcl-cl-randist
9606 (package
9607 (name "sbcl-cl-randist")
9608 (version "0.4.2")
9609 (source
9610 (origin
9611 (method git-fetch)
9612 (uri (git-reference
9613 (url "https://github.com/lvaruzza/cl-randist")
9614 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
9615 (file-name (git-file-name name version))
9616 (sha256
9617 (base32
9618 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
9619 (build-system asdf-build-system/sbcl)
9620 (synopsis "Random distributions for Common Lisp")
9621 (description
9622 "Manual translation from C to Common Lisp of some random number
9623 generation functions from the GSL library.")
9624 (home-page "https://github.com/lvaruzza/cl-randist")
9625 (license license:bsd-2)
9626 (arguments
9627 `(#:tests? #f))))
9628
9629 (define-public cl-randist
9630 (sbcl-package->cl-source-package sbcl-cl-randist))
9631
9632 (define-public ecl-cl-randist
9633 (sbcl-package->ecl-package sbcl-cl-randist))
9634
9635 (define-public sbcl-float-features
9636 (package
9637 (name "sbcl-float-features")
9638 (version "1.0.0")
9639 (source
9640 (origin
9641 (method git-fetch)
9642 (uri (git-reference
9643 (url "https://github.com/Shinmera/float-features")
9644 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
9645 (file-name (git-file-name name version))
9646 (sha256
9647 (base32
9648 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
9649 (build-system asdf-build-system/sbcl)
9650 (synopsis "Common Lisp IEEE float portability library")
9651 (description
9652 "Portability library for IEEE float features that are not
9653 covered by the Common Lisp standard.")
9654 (home-page "https://github.com/Shinmera/float-features")
9655 (license license:zlib)
9656 (inputs
9657 `(("documentation-utils" ,sbcl-documentation-utils)))
9658 (arguments
9659 `(#:tests? #f))))
9660
9661 (define-public cl-float-features
9662 (sbcl-package->cl-source-package sbcl-float-features))
9663
9664 (define-public ecl-float-features
9665 (sbcl-package->ecl-package sbcl-float-features))
9666
9667 (define-public sbcl-function-cache
9668 (package
9669 (name "sbcl-function-cache")
9670 (version "1.0.3")
9671 (source
9672 (origin
9673 (method git-fetch)
9674 (uri (git-reference
9675 (url "https://github.com/AccelerationNet/function-cache")
9676 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
9677 (file-name (git-file-name name version))
9678 (sha256
9679 (base32
9680 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
9681 (build-system asdf-build-system/sbcl)
9682 (synopsis "Function caching / memoization library for Common Lisp")
9683 (description
9684 "A common lisp library that provides extensible function result
9685 caching based on arguments (an expanded form of memoization).")
9686 (home-page "https://github.com/AccelerationNet/function-cache")
9687 (license
9688 (license:non-copyleft
9689 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
9690 (inputs
9691 `(("alexandria" ,sbcl-alexandria)
9692 ("cl-interpol" ,sbcl-cl-interpol)
9693 ("iterate" ,sbcl-iterate)
9694 ("symbol-munger" ,sbcl-symbol-munger)
9695 ("closer-mop" ,sbcl-closer-mop)))
9696 (arguments
9697 `(#:tests? #f))))
9698
9699 (define-public cl-function-cache
9700 (sbcl-package->cl-source-package sbcl-function-cache))
9701
9702 (define-public ecl-function-cache
9703 (sbcl-package->ecl-package sbcl-function-cache))
9704
9705 (define-public sbcl-type-r
9706 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
9707 (revision "1"))
9708 (package
9709 (name "sbcl-type-r")
9710 (version (git-version "0.0.0" revision commit))
9711 (source
9712 (origin
9713 (method git-fetch)
9714 (uri (git-reference
9715 (url "https://github.com/guicho271828/type-r")
9716 (commit commit)))
9717 (file-name (git-file-name name version))
9718 (sha256
9719 (base32
9720 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
9721 (build-system asdf-build-system/sbcl)
9722 (synopsis "Parser interface for Common Lisp built-in compound types")
9723 (description
9724 "Collections of accessor functions and patterns to access
9725 the elements in compound type specifier, e.g. @code{dimensions} in
9726 @code{(array element-type dimensions)}")
9727 (home-page "https://github.com/guicho271828/type-r")
9728 (license license:lgpl3+)
9729 (inputs
9730 `(("trivia" ,sbcl-trivia)
9731 ("alexandria" ,sbcl-alexandria)))
9732 (native-inputs
9733 `(("fiveam" ,sbcl-fiveam)))
9734 (arguments
9735 `(#:test-asd-file "type-r.test.asd")))))
9736
9737 (define-public cl-type-r
9738 (sbcl-package->cl-source-package sbcl-type-r))
9739
9740 (define-public ecl-type-r
9741 (sbcl-package->ecl-package sbcl-type-r))
9742
9743 (define-public sbcl-trivialib-type-unify
9744 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
9745 (revision "1"))
9746 (package
9747 (name "sbcl-trivialib-type-unify")
9748 (version (git-version "0.1" revision commit))
9749 (source
9750 (origin
9751 (method git-fetch)
9752 (uri (git-reference
9753 (url "https://github.com/guicho271828/trivialib.type-unify")
9754 (commit commit)))
9755 (file-name (git-file-name name version))
9756 (sha256
9757 (base32
9758 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
9759 (build-system asdf-build-system/sbcl)
9760 (synopsis "Common Lisp type unification")
9761 (description
9762 "Unifies a parametrized type specifier against an actual type specifier.
9763 Importantly, it handles complicated array-subtypes and number-related types
9764 correctly.")
9765 (home-page "https://github.com/guicho271828/trivialib.type-unify")
9766 (license license:lgpl3+)
9767 (inputs
9768 `(("alexandria" ,sbcl-alexandria)
9769 ("trivia" ,sbcl-trivia)
9770 ("introspect-environment" ,sbcl-introspect-environment)
9771 ("type-r" ,sbcl-type-r)))
9772 (native-inputs
9773 `(("fiveam" ,sbcl-fiveam)))
9774 (arguments
9775 `(#:asd-systems '("trivialib.type-unify")
9776 #:test-asd-file "trivialib.type-unify.test.asd")))))
9777
9778 (define-public cl-trivialib-type-unify
9779 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
9780
9781 (define-public ecl-trivialib-type-unify
9782 (sbcl-package->ecl-package sbcl-trivialib-type-unify))
9783
9784 (define-public sbcl-specialized-function
9785 (let ((commit "dee56d2d2b6ecd10500ad291c56217698604ec35")
9786 (revision "2"))
9787 (package
9788 (name "sbcl-specialized-function")
9789 (version (git-version "0.0.0" revision commit))
9790 (source
9791 (origin
9792 (method git-fetch)
9793 (uri (git-reference
9794 (url "https://github.com/numcl/specialized-function")
9795 (commit commit)))
9796 (file-name (git-file-name name version))
9797 (sha256
9798 (base32 "1mcc7mmpbnmgnr1cl2jl5r1ai54gn7fbisv2c14sh9za5w4sib82"))))
9799 (build-system asdf-build-system/sbcl)
9800 (synopsis "Julia-like dispatch for Common Lisp")
9801 (description
9802 "This library is part of NUMCL. It provides a macro
9803 @code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
9804 lazily compiling a type-specific version of the function from the same
9805 code. The main target of this macro is speed.")
9806 (home-page "https://github.com/numcl/specialized-function")
9807 (license license:lgpl3+)
9808 (inputs
9809 `(("trivia" ,sbcl-trivia)
9810 ("alexandria" ,sbcl-alexandria)
9811 ("iterate" ,sbcl-iterate)
9812 ("lisp-namespace" ,sbcl-lisp-namespace)
9813 ("type-r" ,sbcl-type-r)
9814 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
9815 (native-inputs
9816 `(("fiveam" ,sbcl-fiveam)))
9817 (arguments
9818 `(#:asd-files '("specialized-function.asd")
9819 #:test-asd-file "specialized-function.test.asd"
9820 ;; Tests fail because they try to use an internal symbol of SBCL
9821 ;; that does not exists in recent versions:
9822 ;; "The variable SB-VM:COMPLEX-VECTOR-NIL-WIDETAG is unbound."
9823 #:tests? #f)))))
9824
9825 (define-public cl-specialized-function
9826 (sbcl-package->cl-source-package sbcl-specialized-function))
9827
9828 (define-public ecl-specialized-function
9829 (sbcl-package->ecl-package sbcl-specialized-function))
9830
9831 (define-public sbcl-constantfold
9832 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
9833 (revision "1"))
9834 (package
9835 (name "sbcl-constantfold")
9836 (version (git-version "0.1" revision commit))
9837 (source
9838 (origin
9839 (method git-fetch)
9840 (uri (git-reference
9841 (url "https://github.com/numcl/constantfold")
9842 (commit commit)))
9843 (file-name (git-file-name name version))
9844 (sha256
9845 (base32
9846 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
9847 (build-system asdf-build-system/sbcl)
9848 (synopsis "Support library for numcl")
9849 (description
9850 "Support library for numcl. Registers a function as an
9851 additional form that is considered as a candidate for a constant.")
9852 (home-page "https://github.com/numcl/constantfold")
9853 (license license:lgpl3+)
9854 (inputs
9855 `(("trivia" ,sbcl-trivia)
9856 ("alexandria" ,sbcl-alexandria)
9857 ("iterate" ,sbcl-iterate)
9858 ("lisp-namespace" ,sbcl-lisp-namespace)))
9859 (native-inputs
9860 `(("fiveam" ,sbcl-fiveam)))
9861 (arguments
9862 `(#:asd-files '("constantfold.asd")
9863 #:test-asd-file "constantfold.test.asd")))))
9864
9865 (define-public cl-constantfold
9866 (sbcl-package->cl-source-package sbcl-constantfold))
9867
9868 (define-public ecl-constantfold
9869 (sbcl-package->ecl-package sbcl-constantfold))
9870
9871 (define-public sbcl-gtype
9872 (let ((commit "2442e32485635525af278ebd8fa69a27d5b8cf18")
9873 (revision "2"))
9874 (package
9875 (name "sbcl-gtype")
9876 (version (git-version "0.1" revision commit))
9877 (source
9878 (origin
9879 (method git-fetch)
9880 (uri (git-reference
9881 (url "https://github.com/numcl/gtype")
9882 (commit commit)))
9883 (file-name (git-file-name name version))
9884 (sha256
9885 (base32 "0hbkfdw00v7bsa6zbric34p5w6hfwxycccg8wc2faq0cxhsvpv9h"))))
9886 (build-system asdf-build-system/sbcl)
9887 (synopsis "C++/Julia-like parametric types in Common Lisp")
9888 (description
9889 "Support library for numcl that provides Julia-like runtime parametric
9890 type correctness in Common Lisp. It is based on CLtL2 extensions.")
9891 (home-page "https://github.com/numcl/gtype")
9892 (license license:lgpl3+)
9893 (inputs
9894 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
9895 ("trivial-cltl2" ,sbcl-trivial-cltl2)
9896 ("trivia" ,sbcl-trivia)
9897 ("alexandria" ,sbcl-alexandria)
9898 ("iterate" ,sbcl-iterate)
9899 ("type-r" ,sbcl-type-r)))
9900 (native-inputs
9901 `(("fiveam" ,sbcl-fiveam)))
9902 (arguments
9903 `(#:asd-files '("gtype.asd")
9904 #:test-asd-file "gtype.test.asd")))))
9905
9906 (define-public cl-gtype
9907 (sbcl-package->cl-source-package sbcl-gtype))
9908
9909 (define-public ecl-gtype
9910 (let ((pkg (sbcl-package->ecl-package sbcl-gtype)))
9911 (package
9912 (inherit pkg)
9913 (arguments
9914 (substitute-keyword-arguments (package-arguments pkg)
9915 ;; The tests fail on ECL with a COMPILE-FILE-ERROR for t/package.lisp.
9916 ((#:tests? _ #f) #f))))))
9917
9918 (define-public sbcl-numcl
9919 (let ((commit "d19f36356be900c600ef08560c9e1af441a166cb")
9920 (revision "1"))
9921 (package
9922 (name "sbcl-numcl")
9923 (version (git-version "0.2.0" revision commit))
9924 (source
9925 (origin
9926 (method git-fetch)
9927 (uri (git-reference
9928 (url "https://github.com/numcl/numcl")
9929 (commit commit)))
9930 (file-name (git-file-name "numcl" version))
9931 (sha256
9932 (base32 "0q4ylfr7hl0gz2ynr0c15h09dmnli2x6ndnm5wr58wfplf1wfj31"))))
9933 (build-system asdf-build-system/sbcl)
9934 (arguments
9935 `(#:test-asd-file "numcl.test.asd"
9936 #:asd-files '("numcl.asd")))
9937 (native-inputs
9938 `(("fiveam" ,sbcl-fiveam)))
9939 (inputs
9940 `(("alexandria" ,sbcl-alexandria)
9941 ("cl-randist" ,sbcl-cl-randist)
9942 ("constantfold" ,sbcl-constantfold)
9943 ("float-features" ,sbcl-float-features)
9944 ("function-cache" ,sbcl-function-cache)
9945 ("gtype" ,sbcl-gtype)
9946 ("iterate" ,sbcl-iterate)
9947 ("lisp-namespace" ,sbcl-lisp-namespace)
9948 ("specialized-function" ,sbcl-specialized-function)
9949 ("trivia" ,sbcl-trivia)
9950 ("type-r" ,sbcl-type-r)))
9951 (home-page "https://numcl.github.io/numcl/")
9952 (synopsis "Numpy clone in Common Lisp")
9953 (description
9954 "This package is a Python Numpy clone implemented in pure Common Lisp.")
9955 (license license:lgpl3+))))
9956
9957 (define-public cl-numcl
9958 (sbcl-package->cl-source-package sbcl-numcl))
9959
9960 (define-public ecl-numcl
9961 (sbcl-package->ecl-package sbcl-numcl))
9962
9963 (define-public sbcl-pzmq
9964 (let ((commit "7c7390eedc469d033c72dc497984d1536ee75826")
9965 (revision "1"))
9966 (package
9967 (name "sbcl-pzmq")
9968 (version (git-version "0.0.0" revision commit))
9969 (source
9970 (origin
9971 (method git-fetch)
9972 (uri (git-reference
9973 (url "https://github.com/orivej/pzmq")
9974 (commit commit)))
9975 (file-name (git-file-name name version))
9976 (sha256
9977 (base32 "0gmwzf7h90wa7v4wnk49g0hv2mdalljpwhyigxcb967wzv8lqci9"))))
9978 (build-system asdf-build-system/sbcl)
9979 (native-inputs
9980 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
9981 ("fiveam" ,sbcl-fiveam)
9982 ("let-plus" ,sbcl-let-plus)))
9983 (inputs
9984 `(("cffi" ,sbcl-cffi)
9985 ("zeromq" ,zeromq)))
9986 (arguments
9987 `(#:phases (modify-phases %standard-phases
9988 (add-after 'unpack 'fix-paths
9989 (lambda* (#:key inputs #:allow-other-keys)
9990 (substitute* "c-api.lisp"
9991 (("\"libzmq")
9992 (string-append "\""
9993 (assoc-ref inputs "zeromq")
9994 "/lib/libzmq")))
9995 #t)))))
9996 (synopsis "Common Lisp bindings for the ZeroMQ library")
9997 (description "This Common Lisp library provides bindings for the ZeroMQ
9998 lightweight messaging kernel.")
9999 (home-page "https://github.com/orivej/pzmq")
10000 (license license:unlicense))))
10001
10002 (define-public cl-pzmq
10003 (sbcl-package->cl-source-package sbcl-pzmq))
10004
10005 (define-public ecl-pzmq
10006 (sbcl-package->ecl-package sbcl-pzmq))
10007
10008 (define-public sbcl-clss
10009 (let ((revision "1")
10010 (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d"))
10011 (package
10012 (name "sbcl-clss")
10013 (version (git-version "0.3.1" revision commit))
10014 (source
10015 (origin
10016 (method git-fetch)
10017 (uri
10018 (git-reference
10019 (url "https://github.com/Shinmera/clss")
10020 (commit commit)))
10021 (sha256
10022 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91"))
10023 (file-name (git-file-name name version))))
10024 (inputs
10025 `(("array-utils" ,sbcl-array-utils)
10026 ("plump" ,sbcl-plump)))
10027 (build-system asdf-build-system/sbcl)
10028 (synopsis "DOM tree searching engine based on CSS selectors")
10029 (description "CLSS is a DOM traversal engine based on CSS
10030 selectors. It makes use of the Plump-DOM and is used by lQuery.")
10031 (home-page "https://github.com/Shinmera/clss")
10032 (license license:zlib))))
10033
10034 (define-public cl-clss
10035 (sbcl-package->cl-source-package sbcl-clss))
10036
10037 (define-public ecl-clss
10038 (sbcl-package->ecl-package sbcl-clss))
10039
10040 (define-public sbcl-lquery
10041 (let ((revision "1")
10042 (commit "8048111c6b83956daa632e7a3ffbd8c9c203bd8d"))
10043 (package
10044 (name "sbcl-lquery")
10045 (version (git-version "3.2.1" revision commit))
10046 (source
10047 (origin
10048 (method git-fetch)
10049 (uri
10050 (git-reference
10051 (url "https://github.com/Shinmera/lquery")
10052 (commit commit)))
10053 (sha256
10054 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w"))
10055 (file-name (git-file-name name version))))
10056 (native-inputs
10057 `(("fiveam" ,sbcl-fiveam)))
10058 (inputs
10059 `(("array-utils" ,sbcl-array-utils)
10060 ("form-fiddle" ,sbcl-form-fiddle)
10061 ("plump" ,sbcl-plump)
10062 ("clss" ,sbcl-clss)))
10063 (build-system asdf-build-system/sbcl)
10064 (synopsis "Library to allow jQuery-like HTML/DOM manipulation")
10065 (description "@code{lQuery} is a DOM manipulation library written in
10066 Common Lisp, inspired by and based on the jQuery syntax and
10067 functions. It uses Plump and CLSS as DOM and selector engines. The
10068 main idea behind lQuery is to provide a simple interface for crawling
10069 and modifying HTML sites, as well as to allow for an alternative
10070 approach to templating.")
10071 (home-page "https://github.com/Shinmera/lquery")
10072 (license license:zlib))))
10073
10074 (define-public cl-lquery
10075 (sbcl-package->cl-source-package sbcl-lquery))
10076
10077 (define-public ecl-lquery
10078 (sbcl-package->ecl-package sbcl-lquery))
10079
10080 (define-public sbcl-cl-mysql
10081 (let ((commit "ab56c279c1815aec6ca0bfe85164ff7e85cfb6f9")
10082 (revision "1"))
10083 (package
10084 (name "sbcl-cl-mysql")
10085 (version (git-version "0.1" revision commit))
10086 (source
10087 (origin
10088 (method git-fetch)
10089 (uri (git-reference
10090 (url "https://github.com/hackinghat/cl-mysql")
10091 (commit commit)))
10092 (file-name (git-file-name name version))
10093 (sha256
10094 (base32 "0dg5ynx2ww94d0qfwrdrm7plkn43h64hs4iiq9mj2s1s4ixnp3lr"))))
10095 (build-system asdf-build-system/sbcl)
10096 (native-inputs
10097 `(("stefil" ,sbcl-stefil)))
10098 (inputs
10099 `(("cffi" ,sbcl-cffi)
10100 ("mariadb-lib" ,mariadb "lib")))
10101 (arguments
10102 `(#:tests? #f ; TODO: Tests require a running server
10103 #:phases
10104 (modify-phases %standard-phases
10105 (add-after 'unpack 'fix-paths
10106 (lambda* (#:key inputs #:allow-other-keys)
10107 (substitute* "system.lisp"
10108 (("libmysqlclient_r" all)
10109 (string-append (assoc-ref inputs "mariadb-lib")
10110 "/lib/"
10111 all)))
10112 #t)))))
10113 (synopsis "Common Lisp wrapper for MySQL")
10114 (description
10115 "@code{cl-mysql} is a Common Lisp implementation of a MySQL wrapper.")
10116 (home-page "http://www.hackinghat.com/index.php/cl-mysql")
10117 (license license:expat))))
10118
10119 (define-public cl-mysql
10120 (sbcl-package->cl-source-package sbcl-cl-mysql))
10121
10122 (define-public ecl-cl-mysql
10123 (sbcl-package->ecl-package sbcl-cl-mysql))
10124
10125 (define-public sbcl-postmodern
10126 (package
10127 (name "sbcl-postmodern")
10128 (version "1.32.9")
10129 (source
10130 (origin
10131 (method git-fetch)
10132 (uri (git-reference
10133 (url "https://github.com/marijnh/Postmodern")
10134 (commit (string-append "v" version))))
10135 (file-name (git-file-name name version))
10136 (sha256
10137 (base32 "137jci4hn4vlxf48y39k0di27kc89kvxy3brmn3vl9xq56sy6mhz"))))
10138 (build-system asdf-build-system/sbcl)
10139 (native-inputs
10140 `(("fiveam" ,sbcl-fiveam)))
10141 (inputs
10142 `(("alexandria" ,sbcl-alexandria)
10143 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10144 ("cl-base64" ,sbcl-cl-base64)
10145 ("cl-unicode" ,sbcl-cl-unicode)
10146 ("closer-mop" ,sbcl-closer-mop)
10147 ("global-vars" ,sbcl-global-vars)
10148 ("ironclad" ,sbcl-ironclad)
10149 ("local-time" ,sbcl-local-time)
10150 ("md5" ,sbcl-md5)
10151 ("split-sequence" ,sbcl-split-sequence)
10152 ("uax-15" ,sbcl-uax-15)
10153 ("usocket" ,sbcl-usocket)))
10154 (arguments
10155 ;; TODO: (Sharlatan-20210114T171037+0000) tests still failing but on other
10156 ;; step, some functionality in `local-time' prevents passing tests.
10157 ;; Error:
10158 ;;
10159 ;; Can't create directory
10160 ;; /gnu/store
10161 ;; /4f47agf1kyiz057ppy6x5p98i7mcbfsv-sbcl-local-time-1.0.6-2.a177eb9
10162 ;; /lib/common-lisp/sbcl/local-time/src/integration/
10163 ;;
10164 ;; NOTE: (Sharlatan-20210124T191940+0000): When set env HOME to /tmp above
10165 ;; issue is resolved but it required live test database to connect to now.
10166 ;; Keep tests switched off.
10167 `(#:tests? #f
10168 #:asd-systems '("cl-postgres"
10169 "s-sql"
10170 "postmodern"
10171 "simple-date"
10172 "simple-date/postgres-glue")))
10173 (synopsis "Common Lisp library for interacting with PostgreSQL")
10174 (description
10175 "@code{postmodern} is a Common Lisp library for interacting with
10176 PostgreSQL databases. It provides the following features:
10177
10178 @itemize
10179 @item Efficient communication with the database server without need for
10180 foreign libraries.
10181 @item Support for UTF-8 on Unicode-aware Lisp implementations.
10182 @item A syntax for mixing SQL and Lisp code.
10183 @item Convenient support for prepared statements and stored procedures.
10184 @item A metaclass for simple database-access objects.
10185 @end itemize\n
10186
10187 This package produces 4 systems: postmodern, cl-postgres, s-sql, simple-date
10188
10189 @code{SIMPLE-DATE} is a very basic implementation of date and time objects, used
10190 to support storing and retrieving time-related SQL types. It is not loaded by
10191 default and you can use local-time (which has support for timezones) instead.
10192
10193 @code{S-SQL} is used to compile s-expressions to strings of SQL code, escaping
10194 any Lisp values inside, and doing as much as possible of the work at compile
10195 time.
10196
10197 @code{CL-POSTGRES} is the low-level library used for interfacing with a PostgreSQL
10198 server over a socket.
10199
10200 @code{POSTMODERN} itself is a wrapper around these packages and provides higher
10201 level functions, a very simple data access object that can be mapped directly to
10202 database tables and some convient utilities. It then tries to put all these
10203 things together into a convenient programming interface")
10204 (home-page "https://marijnhaverbeke.nl/postmodern/")
10205 (license license:zlib)))
10206
10207 (define-public cl-postmodern
10208 (sbcl-package->cl-source-package sbcl-postmodern))
10209
10210 (define-public ecl-postmodern
10211 (package
10212 (inherit (sbcl-package->ecl-package sbcl-postmodern))
10213 (arguments
10214 `(#:tests? #f
10215 #:asd-systems '("cl-postgres"
10216 "s-sql"
10217 "postmodern"
10218 "simple-date"
10219 "simple-date/postgres-glue")
10220 #:phases
10221 (modify-phases %standard-phases
10222 (add-after 'unpack 'fix-build
10223 (lambda _
10224 (substitute* "cl-postgres.asd"
10225 ((":or :sbcl :allegro :ccl :clisp" all)
10226 (string-append all " :ecl")))
10227 #t)))))))
10228
10229 (define-public sbcl-db3
10230 (let ((commit "38e5ad35f025769fb7f8dcdc6e56df3e8efd8e6d")
10231 (revision "1"))
10232 (package
10233 (name "sbcl-db3")
10234 (version (git-version "0.0.0" revision commit))
10235 (source
10236 (origin
10237 (method git-fetch)
10238 (uri (git-reference
10239 (url "https://github.com/dimitri/cl-db3")
10240 (commit commit)))
10241 (file-name (git-file-name "cl-db3" version))
10242 (sha256
10243 (base32 "1i7j0mlri6kbklcx1lsm464s8kmyhhij5c4xh4aybrw8m4ixn1s5"))))
10244 (build-system asdf-build-system/sbcl)
10245 (home-page "https://github.com/dimitri/cl-db3")
10246 (synopsis "Common Lisp library to read dBase III database files")
10247 (description
10248 "This is a Common Lisp library for processing data found in dBase III
10249 database files (dbf and db3 files).")
10250 (license license:public-domain))))
10251
10252 (define-public ecl-db3
10253 (sbcl-package->ecl-package sbcl-db3))
10254
10255 (define-public cl-db3
10256 (sbcl-package->cl-source-package sbcl-db3))
10257
10258 (define-public sbcl-dbi
10259 ;; Master includes a breaking change which other packages depend on since
10260 ;; Quicklisp decided to follow it:
10261 ;; https://github.com/fukamachi/cl-dbi/commit/31c46869722f77fd5292a81b5b101f1347d7fce1
10262 (let ((commit "31c46869722f77fd5292a81b5b101f1347d7fce1"))
10263 (package
10264 (name "sbcl-dbi")
10265 (version (git-version "0.9.4" "1" commit))
10266 (source
10267 (origin
10268 (method git-fetch)
10269 (uri (git-reference
10270 (url "https://github.com/fukamachi/cl-dbi")
10271 (commit commit)))
10272 (file-name (git-file-name name version))
10273 (sha256
10274 (base32 "0r3n4rw12qqxad0cryym2ibm4ddl49gbq4ra227afibsr43nw5k3"))))
10275 (build-system asdf-build-system/sbcl)
10276 (native-inputs
10277 `(("rove" ,sbcl-rove)
10278 ("trivial-types" ,sbcl-trivial-types)))
10279 (inputs
10280 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10281 ("cl-mysql" ,sbcl-cl-mysql)
10282 ("cl-sqlite" ,sbcl-cl-sqlite)
10283 ("closer-mop" ,sbcl-closer-mop)
10284 ("postmodern" ,sbcl-postmodern)
10285 ("split-sequence" ,sbcl-split-sequence)
10286 ("trivial-garbage" ,sbcl-trivial-garbage)))
10287 (arguments
10288 `(#:asd-systems '("dbi"
10289 "dbd-mysql"
10290 "dbd-postgres"
10291 "dbd-sqlite3")))
10292 (synopsis "Database independent interface for Common Lisp")
10293 (description
10294 "@code{dbi} is a Common Lisp library providing a database independent
10295 interface for MySQL, PostgreSQL and SQLite.")
10296 (home-page "https://github.com/fukamachi/cl-dbi")
10297 (license license:llgpl))))
10298
10299 (define-public cl-dbi
10300 (sbcl-package->cl-source-package sbcl-dbi))
10301
10302 (define-public ecl-dbi
10303 (sbcl-package->ecl-package sbcl-dbi))
10304
10305 (define-public sbcl-uffi
10306 (package
10307 (name "sbcl-uffi")
10308 (version "2.1.2")
10309 (source
10310 (origin
10311 (method git-fetch)
10312 (uri (git-reference
10313 (url "http://git.kpe.io/uffi.git")
10314 (commit (string-append "v" version))))
10315 (file-name (git-file-name name version))
10316 (sha256
10317 (base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
10318 (build-system asdf-build-system/sbcl)
10319 (arguments
10320 `(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
10321 #:asd-files '("uffi.asd")
10322 #:phases
10323 (modify-phases %standard-phases
10324 (add-after 'unpack 'fix-permissions
10325 (lambda _
10326 (make-file-writable "doc/html.tar.gz")
10327 #t)))))
10328 (synopsis "Universal foreign function library for Common Lisp")
10329 (description
10330 "UFFI provides a universal foreign function interface (FFI)
10331 for Common Lisp.")
10332 (home-page "http://quickdocs.org/uffi/")
10333 (license license:llgpl)))
10334
10335 (define-public cl-uffi
10336 (package
10337 (inherit (sbcl-package->cl-source-package sbcl-uffi))
10338 (arguments
10339 `(#:phases
10340 ;; asdf-build-system/source has its own phases and does not inherit
10341 ;; from asdf-build-system/sbcl phases.
10342 (modify-phases %standard-phases/source
10343 ;; Already done in SBCL package.
10344 (delete 'reset-gzip-timestamps))))))
10345
10346 (define-public sbcl-clsql
10347 (package
10348 (name "sbcl-clsql")
10349 (version "6.7.0")
10350 (source
10351 (origin
10352 (method git-fetch)
10353 (uri (git-reference
10354 (url "http://git.kpe.io/clsql.git")
10355 (commit (string-append "v" version))))
10356 (file-name (git-file-name name version))
10357 (sha256
10358 (base32 "1v1k3s5bsy3lgd9gk459bzpb1r0kdjda25s29samxw4gsgf1fqvp"))
10359 (snippet
10360 '(begin
10361 ;; Remove precompiled libraries.
10362 (delete-file "db-mysql/clsql_mysql.dll")
10363 (delete-file "uffi/clsql_uffi.dll")
10364 (delete-file "uffi/clsql_uffi.lib")
10365 #t))))
10366 (build-system asdf-build-system/sbcl)
10367 (native-inputs
10368 `(("rt" ,sbcl-rt)))
10369 (inputs
10370 `(("cffi" ,sbcl-cffi)
10371 ("md5" ,sbcl-md5)
10372 ("mysql" ,mysql)
10373 ("postgresql" ,postgresql)
10374 ("postmodern" ,sbcl-postmodern)
10375 ("sqlite" ,sqlite)
10376 ("uffi" ,sbcl-uffi)
10377 ("zlib" ,zlib)))
10378 (arguments
10379 `(#:asd-files '("clsql.asd"
10380 "clsql-uffi.asd"
10381 "clsql-sqlite3.asd"
10382 "clsql-postgresql.asd"
10383 "clsql-postgresql-socket3.asd"
10384 "clsql-mysql.asd")
10385 #:asd-systems '("clsql"
10386 "clsql-sqlite3"
10387 "clsql-postgresql"
10388 "clsql-postgresql-socket3"
10389 "clsql-mysql")
10390 #:phases
10391 (modify-phases %standard-phases
10392 (add-after 'unpack 'fix-permissions
10393 (lambda _
10394 (make-file-writable "doc/html.tar.gz")
10395 #t))
10396 (add-after 'unpack 'fix-build
10397 (lambda _
10398 (substitute* "clsql-uffi.asd"
10399 (("\\(:version uffi \"2.0\"\\)")
10400 "uffi"))
10401 (substitute* "db-postgresql/postgresql-api.lisp"
10402 (("\\(data :cstring\\)")
10403 "(data :string)"))
10404 #t))
10405 (add-after 'unpack 'fix-paths
10406 (lambda* (#:key inputs outputs #:allow-other-keys)
10407 (substitute* "db-sqlite3/sqlite3-loader.lisp"
10408 (("libsqlite3")
10409 (string-append (assoc-ref inputs "sqlite")
10410 "/lib/libsqlite3")))
10411 (substitute* "db-postgresql/postgresql-loader.lisp"
10412 (("libpq")
10413 (string-append (assoc-ref inputs "postgresql")
10414 "/lib/libpq")))
10415 (let ((lib (string-append "#p\""
10416 (assoc-ref outputs "out")
10417 "/lib/\"")))
10418 (substitute* "clsql-mysql.asd"
10419 (("#p\"/usr/lib/clsql/clsql_mysql\\.so\"")
10420 lib))
10421 (substitute* "db-mysql/mysql-loader.lisp"
10422 (("libmysqlclient" all)
10423 (string-append (assoc-ref inputs "mysql") "/lib/" all))
10424 (("clsql-mysql-system::\\*library-file-dir\\*")
10425 lib)))
10426 #t))
10427 (add-before 'build 'build-helper-library
10428 (lambda* (#:key inputs outputs #:allow-other-keys)
10429 (let* ((mysql (assoc-ref inputs "mysql"))
10430 (inc-dir (string-append mysql "/include/mysql"))
10431 (lib-dir (string-append mysql "/lib"))
10432 (shared-lib-dir (string-append (assoc-ref outputs "out")
10433 "/lib"))
10434 (shared-lib (string-append shared-lib-dir
10435 "/clsql_mysql.so")))
10436 (mkdir-p shared-lib-dir)
10437 (invoke "gcc" "-fPIC" "-shared"
10438 "-I" inc-dir
10439 "db-mysql/clsql_mysql.c"
10440 "-Wl,-soname=clsql_mysql"
10441 "-L" lib-dir "-lmysqlclient" "-lz"
10442 "-o" shared-lib)
10443 #t)))
10444 (add-after 'unpack 'fix-tests
10445 (lambda _
10446 (substitute* "clsql.asd"
10447 (("clsql-tests :force t")
10448 "clsql-tests"))
10449 #t)))))
10450 (synopsis "Common Lisp SQL Interface library")
10451 (description
10452 "@code{clsql} is a Common Lisp interface to SQL RDBMS based on the
10453 Xanalys CommonSQL interface for Lispworks. It provides low-level database
10454 interfaces as well as a functional and an object oriented interface.")
10455 (home-page "http://clsql.kpe.io/")
10456 (license license:llgpl)))
10457
10458 (define-public cl-clsql
10459 (package
10460 (inherit (sbcl-package->cl-source-package sbcl-clsql))
10461 (native-inputs
10462 `(("rt" ,cl-rt)))
10463 (inputs
10464 `(("mysql" ,mysql)
10465 ("postgresql" ,postgresql)
10466 ("sqlite" ,sqlite)
10467 ("zlib" ,zlib)))
10468 (propagated-inputs
10469 `(("cffi" ,cl-cffi)
10470 ("md5" ,cl-md5)
10471 ("postmodern" ,cl-postmodern)
10472 ("uffi" ,cl-uffi)))
10473 (arguments
10474 `(#:phases
10475 ;; asdf-build-system/source has its own phases and does not inherit
10476 ;; from asdf-build-system/sbcl phases.
10477 (modify-phases %standard-phases/source
10478 (add-after 'unpack 'fix-permissions
10479 (lambda _
10480 (make-file-writable "doc/html.tar.gz")
10481 #t)))))))
10482
10483 (define-public ecl-clsql
10484 (let ((pkg (sbcl-package->ecl-package sbcl-clsql)))
10485 (package
10486 (inherit pkg)
10487 (inputs
10488 (alist-delete "uffi" (package-inputs pkg)))
10489 (arguments
10490 (substitute-keyword-arguments (package-arguments pkg)
10491 ((#:asd-files asd-files '())
10492 `(cons "clsql-cffi.asd" ,asd-files)))))))
10493
10494 (define-public sbcl-sycamore
10495 (let ((commit "fd2820fec165ad514493426dea209728f64e6d18"))
10496 (package
10497 (name "sbcl-sycamore")
10498 (version "0.0.20120604")
10499 (source
10500 (origin
10501 (method git-fetch)
10502 (uri (git-reference
10503 (url "https://github.com/ndantam/sycamore/")
10504 (commit commit)))
10505 (file-name (git-file-name name version))
10506 (sha256
10507 (base32 "00bv1aj89q5vldmq92zp2364jq312zjq2mbd3iyz1s2b4widzhl7"))))
10508 (build-system asdf-build-system/sbcl)
10509 (inputs
10510 `(("alexandria" ,sbcl-alexandria)
10511 ("cl-ppcre" ,sbcl-cl-ppcre)))
10512 (synopsis "Purely functional data structure library in Common Lisp")
10513 (description
10514 "Sycamore is a fast, purely functional data structure library in Common Lisp.
10515 If features:
10516
10517 @itemize
10518 @item Fast, purely functional weight-balanced binary trees.
10519 @item Leaf nodes are simple-vectors, greatly reducing tree height.
10520 @item Interfaces for tree Sets and Maps (dictionaries).
10521 @item Ropes.
10522 @item Purely functional pairing heaps.
10523 @item Purely functional amortized queue.
10524 @end itemize\n")
10525 (home-page "http://ndantam.github.io/sycamore/")
10526 (license license:bsd-3))))
10527
10528 (define-public cl-sycamore
10529 (sbcl-package->cl-source-package sbcl-sycamore))
10530
10531 (define-public ecl-sycamore
10532 (sbcl-package->ecl-package sbcl-sycamore))
10533
10534 (define-public sbcl-trivial-package-local-nicknames
10535 (package
10536 (name "sbcl-trivial-package-local-nicknames")
10537 (version "0.2")
10538 (home-page "https://github.com/phoe/trivial-package-local-nicknames")
10539 (source
10540 (origin
10541 (method git-fetch)
10542 (uri (git-reference
10543 (url home-page)
10544 (commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
10545 (file-name (git-file-name name version))
10546 (sha256
10547 (base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
10548 (build-system asdf-build-system/sbcl)
10549 (synopsis "Common Lisp compatibility library for package local nicknames")
10550 (description
10551 "This library is a portable compatibility layer around package local nicknames (PLN).
10552 This was done so there is a portability library for the PLN API not included
10553 in DEFPACKAGE.")
10554 (license license:unlicense)))
10555
10556 (define-public cl-trivial-package-local-nicknames
10557 (sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))
10558
10559 (define-public ecl-trivial-package-local-nicknames
10560 (sbcl-package->ecl-package sbcl-trivial-package-local-nicknames))
10561
10562 (define-public sbcl-enchant
10563 (let ((commit "6af162a7bf10541cbcfcfa6513894900329713fa"))
10564 (package
10565 (name "sbcl-enchant")
10566 (version (git-version "0.0.0" "1" commit))
10567 (home-page "https://github.com/tlikonen/cl-enchant")
10568 (source
10569 (origin
10570 (method git-fetch)
10571 (uri (git-reference
10572 (url home-page)
10573 (commit commit)))
10574 (file-name (git-file-name name version))
10575 (sha256
10576 (base32 "19yh5ihirzi1d8xqy1cjqipzd6ly3245cfxa5s9xx496rryz0s01"))))
10577 (build-system asdf-build-system/sbcl)
10578 (inputs
10579 `(("enchant" ,enchant)
10580 ("cffi" ,sbcl-cffi)))
10581 (arguments
10582 `(#:phases
10583 (modify-phases %standard-phases
10584 (add-after 'unpack 'fix-paths
10585 (lambda* (#:key inputs #:allow-other-keys)
10586 (substitute* "load-enchant.lisp"
10587 (("libenchant")
10588 (string-append
10589 (assoc-ref inputs "enchant") "/lib/libenchant-2"))))))))
10590 (synopsis "Common Lisp interface for the Enchant spell-checker library")
10591 (description
10592 "Enchant is a Common Lisp interface for the Enchant spell-checker
10593 library. The Enchant library is a generic spell-checker library which uses
10594 other spell-checkers transparently as back-end. The library supports the
10595 multiple checkers, including Aspell and Hunspell.")
10596 (license license:public-domain))))
10597
10598 (define-public cl-enchant
10599 (sbcl-package->cl-source-package sbcl-enchant))
10600
10601 (define-public ecl-enchant
10602 (sbcl-package->ecl-package sbcl-enchant))
10603
10604 (define-public sbcl-cl-change-case
10605 (let ((commit "45c70b601125889689e0c1c37d7e727a3a0af022")
10606 (revision "1"))
10607 (package
10608 (name "sbcl-cl-change-case")
10609 (version (git-version "0.2.0" revision commit))
10610 (home-page "https://github.com/rudolfochrist/cl-change-case")
10611 (source
10612 (origin
10613 (method git-fetch)
10614 (uri (git-reference
10615 (url home-page)
10616 (commit commit)))
10617 (file-name (git-file-name "cl-change-case" version))
10618 (sha256
10619 (base32 "0qmk341zzcsbf8sq0w9ix3r080zg4ri6vzxym63lhdjfzwz3y8if"))))
10620 (build-system asdf-build-system/sbcl)
10621 (inputs
10622 `(("cl-ppcre" ,sbcl-cl-ppcre)
10623 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
10624 (native-inputs
10625 `(("fiveam" ,sbcl-fiveam)))
10626 (synopsis
10627 "Convert Common Lisp strings between camelCase, PascalCase and more")
10628 (description
10629 "@code{cl-change-case} is a library to convert strings between
10630 camelCase, PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
10631 (license license:llgpl))))
10632
10633 (define-public cl-change-case
10634 (sbcl-package->cl-source-package sbcl-cl-change-case))
10635
10636 (define-public ecl-cl-change-case
10637 (sbcl-package->ecl-package sbcl-cl-change-case))
10638
10639 (define-public sbcl-modularize
10640 (let ((commit "86c5d9a11fbd2df9f0f03ac10b5d71837c8934ba")
10641 (revision "1"))
10642 (package
10643 (name "sbcl-modularize")
10644 (version (git-version "1.0.0" revision commit))
10645 (source
10646 (origin
10647 (method git-fetch)
10648 (uri (git-reference
10649 (url "https://github.com/Shinmera/modularize")
10650 (commit commit)))
10651 (file-name (git-file-name name version))
10652 (sha256
10653 (base32 "1zys29rfkb649rkgl3snxhajk8d5yf7ryxkrwy020kwdh7zdsg7d"))))
10654 (build-system asdf-build-system/sbcl)
10655 (arguments
10656 `(#:test-asd-file "modularize-test-module.asd"
10657 #:asd-files '("modularize.asd" "modularize-test-module.asd")
10658 #:asd-systems '("modularize" "modularize-test-module")))
10659 (inputs
10660 `(("documentation-utils" ,sbcl-documentation-utils)
10661 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)))
10662 (home-page "https://shinmera.github.io/modularize/")
10663 (synopsis "Common Lisp modularization framework")
10664 (description
10665 "@code{MODULARIZE} is an attempt at providing a common interface to
10666 segregate major application components. This is achieved by adding special
10667 treatment to packages. Each module is a package that is specially registered,
10668 which allows it to interact and co-exist with other modules in better ways. For
10669 instance, by adding module definition options you can introduce mechanisms to
10670 tie modules together in functionality, hook into each other and so on.")
10671 (license license:zlib))))
10672
10673 (define-public ecl-modularize
10674 (sbcl-package->ecl-package sbcl-modularize))
10675
10676 (define-public cl-modularize
10677 (sbcl-package->cl-source-package sbcl-modularize))
10678
10679 (define-public sbcl-modularize-hooks
10680 (let ((commit "e0348ed3ffd59a9ec31ca4ab28289e748bfbf96a")
10681 (revision "1"))
10682 (package
10683 (name "sbcl-modularize-hooks")
10684 (version (git-version "1.0.2" revision commit))
10685 (source
10686 (origin
10687 (method git-fetch)
10688 (uri (git-reference
10689 (url "https://github.com/Shinmera/modularize-hooks")
10690 (commit commit)))
10691 (file-name (git-file-name "modularize-hooks" version))
10692 (sha256
10693 (base32 "12kjvin8hxidwkzfb7inqv5b6g5qzcssnj9wc497v2ixc56fqdz7"))))
10694 (build-system asdf-build-system/sbcl)
10695 (inputs
10696 `(("closer-mop" ,sbcl-closer-mop)
10697 ("lambda-fiddle" ,sbcl-lambda-fiddle)
10698 ("modularize" ,sbcl-modularize)
10699 ("trivial-arguments" ,sbcl-trivial-arguments)))
10700 (home-page "https://shinmera.github.io/modularize-hooks/")
10701 (synopsis "Generic hooks and triggers extension for Modularize")
10702 (description
10703 "This is a simple extension to @code{MODULARIZE} that allows modules to
10704 define and trigger hooks, which other modules can hook on to.")
10705 (license license:zlib))))
10706
10707 (define-public ecl-modularize-hooks
10708 (sbcl-package->ecl-package sbcl-modularize-hooks))
10709
10710 (define-public cl-modularize-hooks
10711 (sbcl-package->cl-source-package sbcl-modularize-hooks))
10712
10713 (define-public sbcl-modularize-interfaces
10714 (let ((commit "96353657afb8c7aeba7ef5b51eb04c5ed3bcb6ef")
10715 (revision "1"))
10716 (package
10717 (name "sbcl-modularize-interfaces")
10718 (version (git-version "0.9.3" revision commit))
10719 (source
10720 (origin
10721 (method git-fetch)
10722 (uri (git-reference
10723 (url "https://github.com/Shinmera/modularize-interfaces")
10724 (commit commit)))
10725 (file-name (git-file-name "modularize-interfaces" version))
10726 (sha256
10727 (base32 "0bjf4wy39cwf75m7vh0r7mmcchs09yz2lrbyap98hnq8blq70fhc"))))
10728 (build-system asdf-build-system/sbcl)
10729 (inputs
10730 `(("lambda-fiddle" ,sbcl-lambda-fiddle)
10731 ("modularize" ,sbcl-modularize)
10732 ("trivial-arguments" ,sbcl-trivial-arguments)
10733 ("trivial-indent" ,sbcl-trivial-indent)))
10734 (home-page "https://shinmera.github.io/modularize-interfaces/")
10735 (synopsis "Programmatical interfaces extension for Modularize")
10736 (description
10737 "This is an extension to @code{MODULARIZE} that allows your application
10738 to define interfaces in-code that serve both as a primary documentation and as
10739 compliance control.")
10740 (license license:zlib))))
10741
10742 (define-public ecl-modularize-interfaces
10743 (sbcl-package->ecl-package sbcl-modularize-interfaces))
10744
10745 (define-public cl-modularize-interfaces
10746 (sbcl-package->cl-source-package sbcl-modularize-interfaces))
10747
10748 (define-public sbcl-moptilities
10749 (let ((commit "a436f16b357c96b82397ec018ea469574c10dd41"))
10750 (package
10751 (name "sbcl-moptilities")
10752 (version (git-version "0.3.13" "1" commit))
10753 (home-page "https://github.com/gwkkwg/moptilities/")
10754 (source
10755 (origin
10756 (method git-fetch)
10757 (uri (git-reference
10758 (url home-page)
10759 (commit commit)))
10760 (file-name (git-file-name name version))
10761 (sha256
10762 (base32 "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc"))))
10763 (build-system asdf-build-system/sbcl)
10764 (inputs
10765 `(("closer-mop" ,sbcl-closer-mop)))
10766 (native-inputs
10767 `(("lift" ,sbcl-lift)))
10768 (arguments
10769 `(#:phases
10770 (modify-phases %standard-phases
10771 (add-after 'unpack 'fix-tests
10772 (lambda _
10773 (substitute* "lift-standard.config"
10774 ((":relative-to lift-test")
10775 ":relative-to moptilities-test"))
10776 #t)))))
10777 (synopsis "Compatibility layer for Common Lisp MOP implementation differences")
10778 (description
10779 "MOP utilities provide a common interface between Lisps and make the
10780 MOP easier to use.")
10781 (license license:expat))))
10782
10783 (define-public cl-moptilities
10784 (sbcl-package->cl-source-package sbcl-moptilities))
10785
10786 (define-public sbcl-osicat
10787 (let ((commit "de0c18a367eedc857e1902a7319828af072a0d97"))
10788 (package
10789 (name "sbcl-osicat")
10790 (version (git-version "0.7.0" "1" commit))
10791 (home-page "http://www.common-lisp.net/project/osicat/")
10792 (source
10793 (origin
10794 (method git-fetch)
10795 (uri (git-reference
10796 (url "https://github.com/osicat/osicat")
10797 (commit commit)))
10798 (file-name (git-file-name name version))
10799 (sha256
10800 (base32 "15viw5pi5sa7qq9b4n2rr3dj2jkqr180rh9z1lh8w3rgl42i2adc"))))
10801 (build-system asdf-build-system/sbcl)
10802 (inputs
10803 `(("alexandria" ,sbcl-alexandria)
10804 ("cffi" ,sbcl-cffi)
10805 ("trivial-features" ,sbcl-trivial-features)))
10806 (native-inputs
10807 `(("rt" ,sbcl-rt)))
10808 (synopsis "Operating system interface for Common Lisp")
10809 (description
10810 "Osicat is a lightweight operating system interface for Common Lisp on
10811 Unix-platforms. It is not a POSIX-style API, but rather a simple lispy
10812 accompaniment to the standard ANSI facilities.")
10813 (license license:expat))))
10814
10815 (define-public cl-osicat
10816 (sbcl-package->cl-source-package sbcl-osicat))
10817
10818 (define-public ecl-osicat
10819 (sbcl-package->ecl-package sbcl-osicat))
10820
10821 (define-public sbcl-clx-xembed
10822 (let ((commit "a5c4b844d31ee68ffa58c933cc1cdddde6990743")
10823 (revision "1"))
10824 (package
10825 (name "sbcl-clx-xembed")
10826 (version (git-version "0.1" revision commit))
10827 (home-page "https://github.com/laynor/clx-xembed")
10828 (source
10829 (origin
10830 (method git-fetch)
10831 (uri (git-reference
10832 (url "https://github.com/laynor/clx-xembed")
10833 (commit commit)))
10834 (file-name (git-file-name name version))
10835 (sha256
10836 (base32 "1abx4v36ycmfjdwpjk4hh8058ya8whwia7ds9vd96q2qsrs57f12"))))
10837 (build-system asdf-build-system/sbcl)
10838 (arguments
10839 `(#:asd-systems '("xembed")))
10840 (inputs
10841 `(("sbcl-clx" ,sbcl-clx)))
10842 (synopsis "CL(x) xembed protocol implementation ")
10843 (description "CL(x) xembed protocol implementation")
10844 ;; MIT License
10845 (license license:expat))))
10846
10847 (define-public cl-clx-xembed
10848 (sbcl-package->cl-source-package sbcl-clx-xembed))
10849
10850 (define-public ecl-clx-xembed
10851 (sbcl-package->ecl-package sbcl-clx-xembed))
10852
10853 (define-public sbcl-quantile-estimator
10854 (package
10855 (name "sbcl-quantile-estimator")
10856 (version "0.0.1")
10857 (source
10858 (origin
10859 (method git-fetch)
10860 (uri (git-reference
10861 (url "https://github.com/deadtrickster/quantile-estimator.cl")
10862 (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
10863 (file-name (git-file-name name version))
10864 (sha256
10865 (base32
10866 "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
10867 (build-system asdf-build-system/sbcl)
10868 (arguments
10869 '(#:asd-files '("quantile-estimator.asd")))
10870 (inputs
10871 `(("alexandria" ,sbcl-alexandria)))
10872 (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
10873 (synopsis
10874 "Effective computation of biased quantiles over data streams")
10875 (description
10876 "Common Lisp implementation of Graham Cormode and S.
10877 Muthukrishnan's Effective Computation of Biased Quantiles over Data
10878 Streams in ICDE’05.")
10879 (license license:expat)))
10880
10881 (define-public cl-quantile-estimator
10882 (sbcl-package->cl-source-package sbcl-quantile-estimator))
10883
10884 (define-public ecl-quantile-estimator
10885 (sbcl-package->ecl-package sbcl-quantile-estimator))
10886
10887 (define-public sbcl-prometheus
10888 (package
10889 (name "sbcl-prometheus")
10890 (version "0.4.1")
10891 (source
10892 (origin
10893 (method git-fetch)
10894 (uri (git-reference
10895 (url "https://github.com/deadtrickster/prometheus.cl")
10896 (commit "7352b92296996ff383503e19bdd3bcea30409a15")))
10897 (file-name (git-file-name name version))
10898 (sha256
10899 (base32
10900 "0fzczls2kfgdx18pja4lqxjrz72i583185d8nq0pb3s331hhzh0z"))))
10901 (build-system asdf-build-system/sbcl)
10902 (inputs
10903 `(("alexandria" ,sbcl-alexandria)
10904 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10905 ("cffi" ,sbcl-cffi)
10906 ("cl-fad" ,sbcl-cl-fad)
10907 ("cl-ppcre" ,sbcl-cl-ppcre)
10908 ("drakma" ,sbcl-drakma)
10909 ("hunchentoot" ,sbcl-hunchentoot)
10910 ("local-time" ,sbcl-local-time)
10911 ("quantile-estimator" ,sbcl-quantile-estimator)
10912 ("salza2" ,sbcl-salza2)
10913 ("split-sequence" ,sbcl-split-sequence)
10914 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10915 (arguments
10916 '(#:asd-files '("prometheus.asd"
10917 "prometheus.collectors.sbcl.asd"
10918 "prometheus.collectors.process.asd"
10919 "prometheus.formats.text.asd"
10920 "prometheus.exposers.hunchentoot.asd"
10921 "prometheus.pushgateway.asd")
10922 #:asd-systems '("prometheus"
10923 "prometheus.collectors.sbcl"
10924 "prometheus.collectors.process"
10925 "prometheus.formats.text"
10926 "prometheus.exposers.hunchentoot"
10927 "prometheus.pushgateway")))
10928 (home-page "https://github.com/deadtrickster/prometheus.cl")
10929 (synopsis "Prometheus.io Common Lisp client")
10930 (description "Prometheus.io Common Lisp client.")
10931 (license license:expat)))
10932
10933 (define-public cl-prometheus
10934 (sbcl-package->cl-source-package sbcl-prometheus))
10935
10936 (define-public ecl-prometheus
10937 (sbcl-package->ecl-package sbcl-prometheus))
10938
10939 (define-public sbcl-uuid
10940 (let ((commit "e7d6680c3138385c0708f7aaf0c96622eeb140e8"))
10941 (package
10942 (name "sbcl-uuid")
10943 (version (git-version "2012.12.26" "1" commit))
10944 (source
10945 (origin
10946 (method git-fetch)
10947 (uri (git-reference
10948 (url "https://github.com/dardoria/uuid")
10949 (commit commit)))
10950 (file-name (git-file-name name version))
10951 (sha256
10952 (base32
10953 "0jnyp2kibcf5cwi60l6grjrj8wws9chasjvsw7xzwyym2lyid46f"))))
10954 (build-system asdf-build-system/sbcl)
10955 (inputs
10956 `(("ironclad" ,sbcl-ironclad)
10957 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10958 (home-page "https://github.com/dardoria/uuid")
10959 (synopsis
10960 "Common Lisp implementation of UUIDs according to RFC4122")
10961 (description
10962 "Common Lisp implementation of UUIDs according to RFC4122.")
10963 (license license:llgpl))))
10964
10965 (define-public cl-uuid
10966 (sbcl-package->cl-source-package sbcl-uuid))
10967
10968 (define-public ecl-uuid
10969 (sbcl-package->ecl-package sbcl-uuid))
10970
10971 (define-public sbcl-dissect
10972 (let ((commit "cffd38479f0e64e805f167bbdb240b783ecc8d45"))
10973 (package
10974 (name "sbcl-dissect")
10975 (version (git-version "1.0.0" "1" commit))
10976 (source
10977 (origin
10978 (method git-fetch)
10979 (uri (git-reference
10980 (url "https://github.com/Shinmera/dissect")
10981 (commit commit)))
10982 (file-name (git-file-name name version))
10983 (sha256
10984 (base32
10985 "0rmsjkgjl90gl6ssvgd60hb0d5diyhsiyypvw9hbc0ripvbmk5r5"))))
10986 (build-system asdf-build-system/sbcl)
10987 (inputs
10988 `(("cl-ppcre" ,sbcl-cl-ppcre)))
10989 (home-page "https://shinmera.github.io/dissect/")
10990 (synopsis
10991 "Introspection library for the call stack and restarts")
10992 (description
10993 "Dissect is a small Common Lisp library for introspecting the call stack
10994 and active restarts.")
10995 (license license:zlib))))
10996
10997 (define-public cl-dissect
10998 (sbcl-package->cl-source-package sbcl-dissect))
10999
11000 (define-public ecl-dissect
11001 (sbcl-package->ecl-package sbcl-dissect))
11002
11003 (define-public sbcl-rove
11004 (package
11005 (name "sbcl-rove")
11006 (version "0.9.6")
11007 (source
11008 (origin
11009 (method git-fetch)
11010 (uri (git-reference
11011 (url "https://github.com/fukamachi/rove")
11012 (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21")))
11013 (file-name (git-file-name name version))
11014 (sha256
11015 (base32
11016 "07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q"))))
11017 (build-system asdf-build-system/sbcl)
11018 (inputs
11019 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11020 ("dissect" ,sbcl-dissect)
11021 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
11022 (home-page "https://github.com/fukamachi/rove")
11023 (synopsis
11024 "Yet another common lisp testing library")
11025 (description
11026 "Rove is a unit testing framework for Common Lisp applications.
11027 This is intended to be a successor of Prove.")
11028 (license license:bsd-3)))
11029
11030 (define-public cl-rove
11031 (sbcl-package->cl-source-package sbcl-rove))
11032
11033 (define-public ecl-rove
11034 (sbcl-package->ecl-package sbcl-rove))
11035
11036 (define-public sbcl-exponential-backoff
11037 (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
11038 (package
11039 (name "sbcl-exponential-backoff")
11040 (version (git-version "0" "1" commit))
11041 (source
11042 (origin
11043 (method git-fetch)
11044 (uri (git-reference
11045 (url "https://github.com/death/exponential-backoff")
11046 (commit commit)))
11047 (file-name (git-file-name name version))
11048 (sha256
11049 (base32
11050 "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
11051 (build-system asdf-build-system/sbcl)
11052 (home-page "https://github.com/death/exponential-backoff")
11053 (synopsis "Exponential backoff algorithm in Common Lisp")
11054 (description
11055 "An implementation of the exponential backoff algorithm in Common Lisp.
11056 Inspired by the implementation found in Chromium. Read the header file to
11057 learn about each of the parameters.")
11058 (license license:expat))))
11059
11060 (define-public cl-exponential-backoff
11061 (sbcl-package->cl-source-package sbcl-exponential-backoff))
11062
11063 (define-public ecl-exponential-backoff
11064 (sbcl-package->ecl-package sbcl-exponential-backoff))
11065
11066 (define-public sbcl-sxql
11067 (let ((commit "5aa8b739492c5829e8623432b5d46482263990e8"))
11068 (package
11069 (name "sbcl-sxql")
11070 (version (git-version "0.1.0" "1" commit))
11071 (source
11072 (origin
11073 (method git-fetch)
11074 (uri (git-reference
11075 (url "https://github.com/fukamachi/sxql")
11076 (commit commit)))
11077 (file-name (git-file-name name version))
11078 (sha256
11079 (base32
11080 "0k25p6w2ld9cn8q8s20lda6yjfyp4q89219sviayfgixnj27avnj"))))
11081 (build-system asdf-build-system/sbcl)
11082 (arguments
11083 `(#:test-asd-file "sxql-test.asd"))
11084 (inputs
11085 `(("alexandria" ,sbcl-alexandria)
11086 ("cl-syntax" ,sbcl-cl-syntax)
11087 ("iterate" ,sbcl-iterate)
11088 ("optima" ,sbcl-optima)
11089 ("split-sequence" ,sbcl-split-sequence)
11090 ("trivial-types" ,sbcl-trivial-types)))
11091 (native-inputs
11092 `(("prove" ,sbcl-prove)))
11093 (home-page "https://github.com/fukamachi/sxql")
11094 (synopsis "SQL generator for Common Lisp")
11095 (description "SQL generator for Common Lisp.")
11096 (license license:bsd-3))))
11097
11098 (define-public cl-sxql
11099 (sbcl-package->cl-source-package sbcl-sxql))
11100
11101 (define-public ecl-sxql
11102 (sbcl-package->ecl-package sbcl-sxql))
11103
11104 (define-public sbcl-1am
11105 (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
11106 (package
11107 (name "sbcl-1am")
11108 (version (git-version "0.0" "1" commit))
11109 (source
11110 (origin
11111 (method git-fetch)
11112 (uri (git-reference
11113 (url "https://github.com/lmj/1am")
11114 (commit commit)))
11115 (file-name (git-file-name name version))
11116 (sha256
11117 (base32
11118 "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
11119 (build-system asdf-build-system/sbcl)
11120 (arguments
11121 `(#:asd-systems '("1am")))
11122 (home-page "https://github.com/lmj/1am")
11123 (synopsis "Minimal testing framework for Common Lisp")
11124 (description "A minimal testing framework for Common Lisp.")
11125 (license license:expat))))
11126
11127 (define-public cl-1am
11128 (sbcl-package->cl-source-package sbcl-1am))
11129
11130 (define-public ecl-1am
11131 (sbcl-package->ecl-package sbcl-1am))
11132
11133 (define-public sbcl-cl-ascii-table
11134 (let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
11135 (revision "1"))
11136 (package
11137 (name "sbcl-cl-ascii-table")
11138 (version (git-version "0.0.0" revision commit))
11139 (source
11140 (origin
11141 (method git-fetch)
11142 (uri (git-reference
11143 (url "https://github.com/telephil/cl-ascii-table")
11144 (commit commit)))
11145 (file-name (git-file-name name version))
11146 (sha256
11147 (base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
11148 (build-system asdf-build-system/sbcl)
11149 (synopsis "Library to make ascii-art tables")
11150 (description
11151 "This is a Common Lisp library to present tabular data in ascii-art
11152 tables.")
11153 (home-page "https://github.com/telephil/cl-ascii-table")
11154 (license license:expat))))
11155
11156 (define-public cl-ascii-table
11157 (sbcl-package->cl-source-package sbcl-cl-ascii-table))
11158
11159 (define-public ecl-cl-ascii-table
11160 (sbcl-package->ecl-package sbcl-cl-ascii-table))
11161
11162 (define-public sbcl-cl-rdkafka
11163 (package
11164 (name "sbcl-cl-rdkafka")
11165 (version "1.1.0")
11166 (source
11167 (origin
11168 (method git-fetch)
11169 (uri (git-reference
11170 (url "https://github.com/SahilKang/cl-rdkafka")
11171 (commit (string-append "v" version))))
11172 (file-name (git-file-name name version))
11173 (sha256
11174 (base32
11175 "0z2g0k0xy8k1p9g93h8dy9wbygaq7ziwagm4yz93zk67mhc0b84v"))))
11176 (build-system asdf-build-system/sbcl)
11177 (arguments
11178 `(#:tests? #f ; Attempts to connect to locally running Kafka
11179 #:phases
11180 (modify-phases %standard-phases
11181 (add-after 'unpack 'fix-paths
11182 (lambda* (#:key inputs #:allow-other-keys)
11183 (substitute* "src/low-level/librdkafka-bindings.lisp"
11184 (("librdkafka" all)
11185 (string-append (assoc-ref inputs "librdkafka") "/lib/"
11186 all))))))))
11187 (inputs
11188 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11189 ("cffi" ,sbcl-cffi)
11190 ("librdkafka" ,librdkafka)
11191 ("lparallel" ,sbcl-lparallel)
11192 ("trivial-garbage" ,sbcl-trivial-garbage)))
11193 (home-page "https://github.com/SahilKang/cl-rdkafka")
11194 (synopsis "Common Lisp client library for Apache Kafka")
11195 (description "A Common Lisp client library for Apache Kafka.")
11196 (license license:gpl3)))
11197
11198 (define-public cl-rdkafka
11199 (sbcl-package->cl-source-package sbcl-cl-rdkafka))
11200
11201 (define-public ecl-cl-rdkafka
11202 (sbcl-package->ecl-package sbcl-cl-rdkafka))
11203
11204 (define-public sbcl-acclimation
11205 (let ((commit "4d51150902568fcd59335f4cc4cfa022df6116a5"))
11206 (package
11207 (name "sbcl-acclimation")
11208 (version (git-version "0.0.0" "1" commit))
11209 (source
11210 (origin
11211 (method git-fetch)
11212 (uri (git-reference
11213 (url "https://github.com/robert-strandh/Acclimation")
11214 (commit commit)))
11215 (file-name (git-file-name name version))
11216 (sha256
11217 (base32
11218 "1aw7rarjl8ai57h0jxnp9hr3dka7qrs55mmbl1p6rhd6xj8mp9wq"))))
11219 (build-system asdf-build-system/sbcl)
11220 (home-page "https://github.com/robert-strandh/Acclimation")
11221 (synopsis "Internationalization library for Common Lisp")
11222 (description "This project is meant to provide tools for
11223 internationalizing Common Lisp programs.
11224
11225 One important aspect of internationalization is of course the language used in
11226 error messages, documentation strings, etc. But with this project we provide
11227 tools for all other aspects of internationalization as well, including dates,
11228 weight, temperature, names of physical quantitites, etc.")
11229 (license license:bsd-2))))
11230
11231 (define-public cl-acclimation
11232 (sbcl-package->cl-source-package sbcl-acclimation))
11233
11234 (define-public ecl-acclimation
11235 (sbcl-package->ecl-package sbcl-acclimation))
11236
11237 (define-public sbcl-clump
11238 (let ((commit "1ea4dbac1cb86713acff9ae58727dd187d21048a"))
11239 (package
11240 (name "sbcl-clump")
11241 (version (git-version "0.0.0" "1" commit))
11242 (source
11243 (origin
11244 (method git-fetch)
11245 (uri (git-reference
11246 (url "https://github.com/robert-strandh/Clump")
11247 (commit commit)))
11248 (file-name (git-file-name name version))
11249 (sha256
11250 (base32
11251 "1639msyagsswj85gc0wd90jgh8588j3qg5q70by9s2brf2q6w4lh"))))
11252 (inputs
11253 `(("acclimation" ,sbcl-acclimation)))
11254 (build-system asdf-build-system/sbcl)
11255 (home-page "https://github.com/robert-strandh/Clump")
11256 (synopsis "Collection of tree implementations for Common Lisp")
11257 (description "The purpose of this library is to provide a collection of
11258 implementations of trees.
11259
11260 In contrast to existing libraries such as cl-containers, it does not impose a
11261 particular use for the trees. Instead, it aims for a stratified design,
11262 allowing client code to choose between different levels of abstraction.
11263
11264 As a consequence of this policy, low-level interfaces are provided where
11265 the concrete representation is exposed, but also high level interfaces
11266 where the trees can be used as search trees or as trees that represent
11267 sequences of objects.")
11268 (license license:bsd-2))))
11269
11270 (define-public cl-clump
11271 (sbcl-package->cl-source-package sbcl-clump))
11272
11273 (define-public ecl-clump
11274 (sbcl-package->ecl-package sbcl-clump))
11275
11276 (define-public sbcl-cluffer
11277 (let ((commit "4aad29c276a58a593064e79972ee4d77cae0af4a"))
11278 (package
11279 (name "sbcl-cluffer")
11280 (version (git-version "0.0.0" "1" commit))
11281 (source
11282 (origin
11283 (method git-fetch)
11284 (uri (git-reference
11285 (url "https://github.com/robert-strandh/cluffer")
11286 (commit commit)))
11287 (file-name (git-file-name name version))
11288 (sha256
11289 (base32
11290 "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"))))
11291 (build-system asdf-build-system/sbcl)
11292 (inputs
11293 `(("acclimation" ,sbcl-acclimation)
11294 ("clump" ,sbcl-clump)))
11295 (home-page "https://github.com/robert-strandh/cluffer")
11296 (synopsis "Common Lisp library providing a protocol for text-editor buffers")
11297 (description "Cluffer is a library for representing the buffer of a text
11298 editor. As such, it defines a set of CLOS protocols for client code to
11299 interact with the buffer contents in various ways, and it supplies different
11300 implementations of those protocols for different purposes.")
11301 (license license:bsd-2))))
11302
11303 (define-public cl-cluffer
11304 (sbcl-package->cl-source-package sbcl-cluffer))
11305
11306 (define-public ecl-cluffer
11307 (sbcl-package->ecl-package sbcl-cluffer))
11308
11309 (define-public sbcl-cl-libsvm-format
11310 (let ((commit "3300f84fd8d9f5beafc114f543f9d83417c742fb")
11311 (revision "0"))
11312 (package
11313 (name "sbcl-cl-libsvm-format")
11314 (version (git-version "0.1.0" revision commit))
11315 (source
11316 (origin
11317 (method git-fetch)
11318 (uri (git-reference
11319 (url "https://github.com/masatoi/cl-libsvm-format")
11320 (commit commit)))
11321 (file-name (git-file-name name version))
11322 (sha256
11323 (base32
11324 "0284aj84xszhkhlivaigf9qj855fxad3mzmv3zfr0qzb5k0nzwrg"))))
11325 (build-system asdf-build-system/sbcl)
11326 (native-inputs
11327 `(("prove" ,sbcl-prove)))
11328 (inputs
11329 `(("alexandria" ,sbcl-alexandria)))
11330 (synopsis "LibSVM data format reader for Common Lisp")
11331 (description
11332 "This Common Lisp library provides a fast reader for data in LibSVM
11333 format.")
11334 (home-page "https://github.com/masatoi/cl-libsvm-format")
11335 (license license:expat))))
11336
11337 (define-public cl-libsvm-format
11338 (sbcl-package->cl-source-package sbcl-cl-libsvm-format))
11339
11340 (define-public ecl-cl-libsvm-format
11341 (sbcl-package->ecl-package sbcl-cl-libsvm-format))
11342
11343 (define-public sbcl-cl-online-learning
11344 (let ((commit "87fbef8a340219e853adb3a5bf44a0470da76964")
11345 (revision "1"))
11346 (package
11347 (name "sbcl-cl-online-learning")
11348 (version (git-version "0.5" revision commit))
11349 (source
11350 (origin
11351 (method git-fetch)
11352 (uri (git-reference
11353 (url "https://github.com/masatoi/cl-online-learning")
11354 (commit commit)))
11355 (file-name (git-file-name "cl-online-learning" version))
11356 (sha256
11357 (base32
11358 "1lfq04lnxivx59nq5dd02glyqsqzf3vdn4s9b8wnaln5fs8g2ph9"))))
11359 (build-system asdf-build-system/sbcl)
11360 (native-inputs
11361 `(("prove" ,sbcl-prove)))
11362 (inputs
11363 `(("cl-libsvm-format" ,sbcl-cl-libsvm-format)
11364 ("cl-store" ,sbcl-cl-store)))
11365 (arguments
11366 `(#:test-asd-file "cl-online-learning-test.asd"
11367 #:asd-systems '("cl-online-learning-test"
11368 "cl-online-learning")))
11369 (home-page "https://github.com/masatoi/cl-online-learning")
11370 (synopsis "Online Machine Learning for Common Lisp")
11371 (description
11372 "This library contains a collection of machine learning algorithms for
11373 online linear classification written in Common Lisp.")
11374 (license license:expat))))
11375
11376 (define-public cl-online-learning
11377 (sbcl-package->cl-source-package sbcl-cl-online-learning))
11378
11379 (define-public ecl-cl-online-learning
11380 (sbcl-package->ecl-package sbcl-cl-online-learning))
11381
11382 (define-public sbcl-cl-mpg123
11383 (let ((commit "5f042c839d2ea4a2ff2a7b60c839d8633d64161d")
11384 (revision "1"))
11385 (package
11386 (name "sbcl-cl-mpg123")
11387 (version (git-version "1.0.0" revision commit))
11388 (source
11389 (origin
11390 (method git-fetch)
11391 (uri (git-reference
11392 (url "https://github.com/Shirakumo/cl-mpg123")
11393 (commit commit)))
11394 (file-name (git-file-name "cl-mpg123" version))
11395 (sha256
11396 (base32 "1hl721xaczxck008ax2y3jpkm509ry1sg3lklh2k76764m3ndrjf"))
11397 (modules '((guix build utils)))
11398 (snippet
11399 '(begin
11400 ;; Remove bundled pre-compiled libraries.
11401 (delete-file-recursively "static")
11402 #t))))
11403 (build-system asdf-build-system/sbcl)
11404 (arguments
11405 `(#:asd-files '("cl-mpg123.asd" "cl-mpg123-example.asd")
11406 #:asd-systems '("cl-mpg123" "cl-mpg123-example")
11407 #:phases
11408 (modify-phases %standard-phases
11409 (add-after 'unpack 'fix-paths
11410 (lambda* (#:key inputs #:allow-other-keys)
11411 (substitute* "low-level.lisp"
11412 (("libmpg123.so" all)
11413 (string-append (assoc-ref inputs "libmpg123")
11414 "/lib/" all))))))))
11415 (inputs
11416 `(("cffi" ,sbcl-cffi)
11417 ("cl-out123" ,sbcl-cl-out123)
11418 ("documentation-utils" ,sbcl-documentation-utils)
11419 ("libmpg123" ,mpg123)
11420 ("trivial-features" ,sbcl-trivial-features)
11421 ("trivial-garbage" ,sbcl-trivial-garbage)
11422 ("verbose" ,sbcl-verbose)))
11423 (home-page "https://shirakumo.github.io/cl-mpg123/")
11424 (synopsis "Common Lisp bindings to libmpg123")
11425 (description
11426 "This is a bindings and wrapper library to @code{libmpg123} allowing for
11427 convenient, extensive, and fast decoding of MPEG1/2/3 (most prominently mp3)
11428 files.")
11429 (license license:zlib))))
11430
11431 (define-public ecl-cl-mpg123
11432 (sbcl-package->ecl-package sbcl-cl-mpg123))
11433
11434 (define-public cl-mpg123
11435 (sbcl-package->cl-source-package sbcl-cl-mpg123))
11436
11437 (define-public sbcl-cl-out123
11438 (let ((commit "6b58d3f8c2a28ad09059ac4c60fb3c781b9b421b")
11439 (revision "1"))
11440 (package
11441 (name "sbcl-cl-out123")
11442 (version (git-version "1.0.0" revision commit))
11443 (source
11444 (origin
11445 (method git-fetch)
11446 (uri (git-reference
11447 (url "https://github.com/Shirakumo/cl-out123")
11448 (commit commit)))
11449 (file-name (git-file-name "cl-out123" version))
11450 (sha256
11451 (base32 "0mdwgfax6sq68wvdgjjp78i40ah7wqkpqnvaq8a1c509k7ghdgv1"))
11452 (modules '((guix build utils)))
11453 (snippet
11454 '(begin
11455 ;; Remove bundled pre-compiled libraries.
11456 (delete-file-recursively "static")
11457 #t))))
11458 (build-system asdf-build-system/sbcl)
11459 (arguments
11460 `(#:phases
11461 (modify-phases %standard-phases
11462 (add-after 'unpack 'fix-paths
11463 (lambda* (#:key inputs #:allow-other-keys)
11464 (substitute* "low-level.lisp"
11465 (("libout123.so" all)
11466 (string-append (assoc-ref inputs "libout123")
11467 "/lib/" all)))))
11468 ;; NOTE: (Sharlatan-20210129T134529+0000): ECL package `ext' has no
11469 ;; exported macro `without-interrupts' it's moved to `mp' package
11470 ;; https://github.com/Shirakumo/cl-out123/issues/2
11471 ;; https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/mp.lsp
11472 (add-after 'unpack 'fix-ecl-package-name
11473 (lambda _
11474 (substitute* "wrapper.lisp"
11475 (("ext:without-interrupts.*") "mp:without-interrupts\n"))
11476 #t)))))
11477 (inputs
11478 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11479 ("cffi" ,sbcl-cffi)
11480 ("documentation-utils" ,sbcl-documentation-utils)
11481 ("libout123" ,mpg123)
11482 ("trivial-features" ,sbcl-trivial-features)
11483 ("trivial-garbage" ,sbcl-trivial-garbage)))
11484 (home-page "https://shirakumo.github.io/cl-out123/")
11485 (synopsis "Common Lisp bindings to libout123")
11486 (description
11487 "This is a bindings library to @code{libout123} which allows easy
11488 cross-platform audio playback.")
11489 (license license:zlib))))
11490
11491 (define-public ecl-cl-out123
11492 (sbcl-package->ecl-package sbcl-cl-out123))
11493
11494 (define-public cl-out123
11495 (sbcl-package->cl-source-package sbcl-cl-out123))
11496
11497 (define-public sbcl-cl-random-forest
11498 (let ((commit "fedb36ce99bb6f4d7e3a7dd6d8b058f331308f91")
11499 (revision "1"))
11500 (package
11501 (name "sbcl-cl-random-forest")
11502 (version (git-version "0.1" revision commit))
11503 (source
11504 (origin
11505 (method git-fetch)
11506 (uri (git-reference
11507 (url "https://github.com/masatoi/cl-random-forest")
11508 (commit commit)))
11509 (file-name (git-file-name name version))
11510 (sha256
11511 (base32
11512 "0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
11513 (build-system asdf-build-system/sbcl)
11514 (native-inputs
11515 `(("prove" ,sbcl-prove)
11516 ("trivial-garbage" ,sbcl-trivial-garbage)))
11517 (inputs
11518 `(("alexandria" ,sbcl-alexandria)
11519 ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
11520 ("cl-online-learning" ,sbcl-cl-online-learning)
11521 ("lparallel" ,sbcl-lparallel)))
11522 (arguments
11523 `(#:tests? #f)) ; The tests download data from the Internet
11524 (synopsis "Random Forest and Global Refinement for Common Lisp")
11525 (description
11526 "CL-random-forest is an implementation of Random Forest for multiclass
11527 classification and univariate regression written in Common Lisp. It also
11528 includes an implementation of Global Refinement of Random Forest.")
11529 (home-page "https://github.com/masatoi/cl-random-forest")
11530 (license license:expat))))
11531
11532 (define-public cl-random-forest
11533 (sbcl-package->cl-source-package sbcl-cl-random-forest))
11534
11535 (define-public ecl-cl-random-forest
11536 (sbcl-package->ecl-package sbcl-cl-random-forest))
11537
11538 (define-public sbcl-bordeaux-fft
11539 (let ((commit "4a1f5600cae59bdabcb32de4ee2d7d73a9450d6e")
11540 (revision "0"))
11541 (package
11542 (name "sbcl-bordeaux-fft")
11543 (version (git-version "1.0.1" revision commit))
11544 (source
11545 (origin
11546 (method git-fetch)
11547 (uri (git-reference
11548 (url "https://github.com/ahefner/bordeaux-fft")
11549 (commit commit)))
11550 (file-name (git-file-name name version))
11551 (sha256
11552 (base32 "0j584w6kq2k6r8lp2i14f9605rxhp3r15s33xs08iz1pndn6iwqf"))))
11553 (build-system asdf-build-system/sbcl)
11554 (home-page "http://vintage-digital.com/hefner/software/bordeaux-fft/")
11555 (synopsis "Fast Fourier Transform for Common Lisp")
11556 (description
11557 "The Bordeaux-FFT library provides a reasonably efficient implementation
11558 of the Fast Fourier Transform and its inverse for complex-valued inputs, in
11559 portable Common Lisp.")
11560 (license license:gpl2+))))
11561
11562 (define-public cl-bordeaux-fft
11563 (sbcl-package->cl-source-package sbcl-bordeaux-fft))
11564
11565 (define-public ecl-bordeaux-fft
11566 (sbcl-package->ecl-package sbcl-bordeaux-fft))
11567
11568 (define-public sbcl-napa-fft3
11569 (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236")
11570 (revision "0"))
11571 (package
11572 (name "sbcl-napa-fft3")
11573 (version (git-version "0.0.1" revision commit))
11574 (source
11575 (origin
11576 (method git-fetch)
11577 (uri (git-reference
11578 (url "https://github.com/pkhuong/Napa-FFT3")
11579 (commit commit)))
11580 (file-name (git-file-name name version))
11581 (sha256
11582 (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp"))))
11583 (build-system asdf-build-system/sbcl)
11584 (home-page "https://github.com/pkhuong/Napa-FFT3")
11585 (synopsis "Fast Fourier Transform routines in Common Lisp")
11586 (description
11587 "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also
11588 buildings blocks to express common operations that involve DFTs: filtering,
11589 convolutions, etc.")
11590 (license license:bsd-3))))
11591
11592 (define-public cl-napa-fft3
11593 (sbcl-package->cl-source-package sbcl-napa-fft3))
11594
11595 (define-public sbcl-cl-tga
11596 (let ((commit "4dc2f7b8a259b9360862306640a07a23d4afaacc")
11597 (revision "0"))
11598 (package
11599 (name "sbcl-cl-tga")
11600 (version (git-version "0.0.0" revision commit))
11601 (source
11602 (origin
11603 (method git-fetch)
11604 (uri (git-reference
11605 (url "https://github.com/fisxoj/cl-tga")
11606 (commit commit)))
11607 (file-name (git-file-name name version))
11608 (sha256
11609 (base32 "03k3npmn0xd3fd2m7vwxph82av2xrfb150imqrinlzqmzvz1v1br"))))
11610 (build-system asdf-build-system/sbcl)
11611 (home-page "https://github.com/fisxoj/cl-tga")
11612 (synopsis "TGA file loader for Common Lisp")
11613 (description
11614 "Cl-tga was written to facilitate loading @emph{.tga} files into OpenGL
11615 programs. It's a very simple library, and, at the moment, only supports
11616 non-RLE encoded forms of the files.")
11617 (license license:expat))))
11618
11619 (define-public cl-tga
11620 (sbcl-package->cl-source-package sbcl-cl-tga))
11621
11622 (define-public ecl-cl-tga
11623 (sbcl-package->ecl-package sbcl-cl-tga))
11624
11625 (define-public sbcl-com.gigamonkeys.binary-data
11626 (let ((commit "22e908976d7f3e2318b7168909f911b4a00963ee")
11627 (revision "0"))
11628 (package
11629 (name "sbcl-com.gigamonkeys.binary-data")
11630 (version (git-version "0.0.0" revision commit))
11631 (source
11632 (origin
11633 (method git-fetch)
11634 (uri (git-reference
11635 (url "https://github.com/gigamonkey/monkeylib-binary-data")
11636 (commit commit)))
11637 (file-name (git-file-name name version))
11638 (sha256
11639 (base32 "072v417vmcnvmyh8ddq9vmwwrizm7zwz9dpzi14qy9nsw8q649zw"))))
11640 (build-system asdf-build-system/sbcl)
11641 (inputs
11642 `(("alexandria" ,sbcl-alexandria)))
11643 (home-page "https://github.com/gigamonkey/monkeylib-binary-data")
11644 (synopsis "Common Lisp library for reading and writing binary data")
11645 (description
11646 "This a Common Lisp library for reading and writing binary data. It is
11647 based on code from chapter 24 of the book @emph{Practical Common Lisp}.")
11648 (license license:bsd-3))))
11649
11650 (define-public cl-com.gigamonkeys.binary-data
11651 (sbcl-package->cl-source-package sbcl-com.gigamonkeys.binary-data))
11652
11653 (define-public ecl-com.gigamonkeys.binary-data
11654 (sbcl-package->ecl-package sbcl-com.gigamonkeys.binary-data))
11655
11656 (define-public sbcl-deflate
11657 (package
11658 (name "sbcl-deflate")
11659 (version "1.0.3")
11660 (source
11661 (origin
11662 (method git-fetch)
11663 (uri (git-reference
11664 (url "https://github.com/pmai/Deflate")
11665 (commit (string-append "release-" version))))
11666 (file-name (git-file-name name version))
11667 (sha256
11668 (base32 "1jpdjnxh6cw2d8hk70r2sxn92is52s9b855irvwkdd777fdciids"))))
11669 (build-system asdf-build-system/sbcl)
11670 (home-page "https://github.com/pmai/Deflate")
11671 (synopsis "Native deflate decompression for Common Lisp")
11672 (description
11673 "This library is an implementation of Deflate (RFC 1951) decompression,
11674 with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952)
11675 wrappers of deflate streams. It currently does not handle compression.")
11676 (license license:expat)))
11677
11678 (define-public cl-deflate
11679 (sbcl-package->cl-source-package sbcl-deflate))
11680
11681 (define-public ecl-deflate
11682 (sbcl-package->ecl-package sbcl-deflate))
11683
11684 (define-public sbcl-skippy
11685 (let ((commit "e456210202ca702c792292c5060a264d45e47090")
11686 (revision "0"))
11687 (package
11688 (name "sbcl-skippy")
11689 (version (git-version "1.3.12" revision commit))
11690 (source
11691 (origin
11692 (method git-fetch)
11693 (uri (git-reference
11694 (url "https://github.com/xach/skippy")
11695 (commit commit)))
11696 (file-name (git-file-name name version))
11697 (sha256
11698 (base32 "1sxbn5nh24qpx9w64x8mhp259cxcl1x8p126wk3b91ijjsj7l5vj"))))
11699 (build-system asdf-build-system/sbcl)
11700 (home-page "https://xach.com/lisp/skippy/")
11701 (synopsis "Common Lisp library for GIF images")
11702 (description
11703 "Skippy is a Common Lisp library to read and write GIF image files.")
11704 (license license:bsd-2))))
11705
11706 (define-public cl-skippy
11707 (sbcl-package->cl-source-package sbcl-skippy))
11708
11709 (define-public ecl-skippy
11710 (sbcl-package->ecl-package sbcl-skippy))
11711
11712 (define-public sbcl-cl-freetype2
11713 (let ((commit "96058da730b4812df916c1f4ee18c99b3b15a3de")
11714 (revision "0"))
11715 (package
11716 (name "sbcl-cl-freetype2")
11717 (version (git-version "1.1" revision commit))
11718 (source
11719 (origin
11720 (method git-fetch)
11721 (uri (git-reference
11722 (url "https://github.com/rpav/cl-freetype2")
11723 (commit commit)))
11724 (file-name (git-file-name name version))
11725 (sha256
11726 (base32 "0f8darhairgxnb5bzqcny7nh7ss3471bdzix5rzcyiwdbr5kymjl"))))
11727 (build-system asdf-build-system/sbcl)
11728 (native-inputs
11729 `(("fiveam" ,sbcl-fiveam)))
11730 (inputs
11731 `(("alexandria" ,sbcl-alexandria)
11732 ("cffi" ,sbcl-cffi)
11733 ("freetype" ,freetype)
11734 ("trivial-garbage" ,sbcl-trivial-garbage)))
11735 (arguments
11736 `(#:phases
11737 (modify-phases %standard-phases
11738 (add-after 'unpack 'fix-paths
11739 (lambda* (#:key inputs #:allow-other-keys)
11740 (substitute* "src/ffi/ft2-lib.lisp"
11741 (("\"libfreetype\"")
11742 (string-append "\"" (assoc-ref inputs "freetype")
11743 "/lib/libfreetype\"")))
11744 (substitute* "src/ffi/grovel/grovel-freetype2.lisp"
11745 (("-I/usr/include/freetype")
11746 (string-append "-I" (assoc-ref inputs "freetype")
11747 "/include/freetype")))
11748 #t)))))
11749 (home-page "https://github.com/rpav/cl-freetype2")
11750 (synopsis "Common Lisp bindings for Freetype 2")
11751 (description
11752 "This is a general Freetype 2 wrapper for Common Lisp using CFFI. It's
11753 geared toward both using Freetype directly by providing a simplified API, as
11754 well as providing access to the underlying C structures and functions for use
11755 with other libraries which may also use Freetype.")
11756 (license license:bsd-3))))
11757
11758 (define-public cl-freetype2
11759 (sbcl-package->cl-source-package sbcl-cl-freetype2))
11760
11761 (define-public ecl-cl-freetype2
11762 (sbcl-package->ecl-package sbcl-cl-freetype2))
11763
11764 (define-public sbcl-opticl-core
11765 (let ((commit "b7cd13d26df6b824b216fbc360dc27bfadf04999")
11766 (revision "0"))
11767 (package
11768 (name "sbcl-opticl-core")
11769 (version (git-version "0.0.0" revision commit))
11770 (source
11771 (origin
11772 (method git-fetch)
11773 (uri (git-reference
11774 (url "https://github.com/slyrus/opticl-core")
11775 (commit commit)))
11776 (file-name (git-file-name name version))
11777 (sha256
11778 (base32 "0458bllabcdjghfrqx6aki49c9qmvfmkk8jl75cfpi7q0i12kh95"))))
11779 (build-system asdf-build-system/sbcl)
11780 (inputs
11781 `(("alexandria" ,sbcl-alexandria)))
11782 (home-page "https://github.com/slyrus/opticl-core")
11783 (synopsis "Core classes and pixel access macros for Opticl")
11784 (description
11785 "This Common Lisp library contains the core classes and pixel access
11786 macros for the Opticl image processing library.")
11787 (license license:bsd-2))))
11788
11789 (define-public cl-opticl-core
11790 (sbcl-package->cl-source-package sbcl-opticl-core))
11791
11792 (define-public ecl-opticl-core
11793 (sbcl-package->ecl-package sbcl-opticl-core))
11794
11795 (define-public sbcl-retrospectiff
11796 (let ((commit "c2a69d77d5010f8cdd9045b3e36a08a73da5d321")
11797 (revision "0"))
11798 (package
11799 (name "sbcl-retrospectiff")
11800 (version (git-version "0.2" revision commit))
11801 (source
11802 (origin
11803 (method git-fetch)
11804 (uri (git-reference
11805 (url "https://github.com/slyrus/retrospectiff")
11806 (commit commit)))
11807 (file-name (git-file-name name version))
11808 (sha256
11809 (base32 "0qsn9hpd8j2kp43dk05j8dczz9zppdff5rrclbp45n3ksk9inw8i"))))
11810 (build-system asdf-build-system/sbcl)
11811 (native-inputs
11812 `(("fiveam" ,sbcl-fiveam)))
11813 (inputs
11814 `(("cl-jpeg" ,sbcl-cl-jpeg)
11815 ("com.gigamonkeys.binary-data" ,sbcl-com.gigamonkeys.binary-data)
11816 ("deflate" ,sbcl-deflate)
11817 ("flexi-streams" ,sbcl-flexi-streams)
11818 ("ieee-floats" ,sbcl-ieee-floats)
11819 ("opticl-core" ,sbcl-opticl-core)))
11820 (home-page "https://github.com/slyrus/retrospectiff")
11821 (synopsis "Common Lisp library for TIFF images")
11822 (description
11823 "Retrospectiff is a common lisp library for reading and writing images
11824 in the TIFF (Tagged Image File Format) format.")
11825 (license license:bsd-2))))
11826
11827 (define-public cl-retrospectif
11828 (sbcl-package->cl-source-package sbcl-retrospectiff))
11829
11830 (define-public ecl-retrospectiff
11831 (sbcl-package->ecl-package sbcl-retrospectiff))
11832
11833 (define-public sbcl-mmap
11834 (let ((commit "ba2e98c67e25f0fb8ff838238561120a23903ce7")
11835 (revision "0"))
11836 (package
11837 (name "sbcl-mmap")
11838 (version (git-version "1.0.0" revision commit))
11839 (source
11840 (origin
11841 (method git-fetch)
11842 (uri (git-reference
11843 (url "https://github.com/Shinmera/mmap")
11844 (commit commit)))
11845 (file-name (git-file-name name version))
11846 (sha256
11847 (base32 "0qd0xp20i1pcfn12kkapv9pirb6hd4ns7kz4zf1mmjwykpsln96q"))))
11848 (build-system asdf-build-system/sbcl)
11849 (native-inputs
11850 `(("alexandria" ,sbcl-alexandria)
11851 ("cffi" ,sbcl-cffi)
11852 ("parachute" ,sbcl-parachute)
11853 ("trivial-features" ,sbcl-trivial-features)))
11854 (inputs
11855 `(("cffi" ,sbcl-cffi)
11856 ("documentation-utils" ,sbcl-documentation-utils)))
11857 (home-page "https://shinmera.github.io/mmap/")
11858 (synopsis "File memory mapping for Common Lisp")
11859 (description
11860 "This is a utility library providing access to the @emph{mmap} family of
11861 functions in a portable way. It allows you to directly map a file into the
11862 address space of your process without having to manually read it into memory
11863 sequentially. Typically this is much more efficient for files that are larger
11864 than a few Kb.")
11865 (license license:zlib))))
11866
11867 (define-public cl-mmap
11868 (sbcl-package->cl-source-package sbcl-mmap))
11869
11870 (define-public ecl-mmap
11871 (sbcl-package->ecl-package sbcl-mmap))
11872
11873 (define-public sbcl-3bz
11874 (let ((commit "569614c40408f3aefc77ba233e0e4bd66d3850ad")
11875 (revision "1"))
11876 (package
11877 (name "sbcl-3bz")
11878 (version (git-version "0.0.0" revision commit))
11879 (source
11880 (origin
11881 (method git-fetch)
11882 (uri (git-reference
11883 (url "https://github.com/3b/3bz")
11884 (commit commit)))
11885 (file-name (git-file-name name version))
11886 (sha256
11887 (base32 "0kvvlvf50jhhw1s510f3clpr1a68632bq6d698yxcrx722igcrg4"))))
11888 (build-system asdf-build-system/sbcl)
11889 (inputs
11890 `(("alexandria" ,sbcl-alexandria)
11891 ("babel" ,sbcl-babel)
11892 ("cffi" ,sbcl-cffi)
11893 ("mmap" ,sbcl-mmap)
11894 ("nibbles" ,sbcl-nibbles)
11895 ("trivial-features" ,sbcl-trivial-features)))
11896 (arguments
11897 ;; FIXME: #41437 - Build fails when package name starts from a digit
11898 `(#:asd-systems '("3bz")))
11899 (home-page "https://github.com/3b/3bz")
11900 (synopsis "Deflate decompression for Common Lisp")
11901 (description
11902 "3bz is an implementation of Deflate decompression (RFC 1951) optionally
11903 with zlib (RFC 1950) or gzip (RFC 1952) wrappers, with support for reading from
11904 foreign pointers (for use with mmap and similar, etc), and from CL octet
11905 vectors and streams.")
11906 (license license:expat))))
11907
11908 (define-public cl-3bz
11909 (sbcl-package->cl-source-package sbcl-3bz))
11910
11911 (define-public ecl-3bz
11912 (sbcl-package->ecl-package sbcl-3bz))
11913
11914 (define-public sbcl-zpb-exif
11915 (package
11916 (name "sbcl-zpb-exif")
11917 (version "1.2.4")
11918 (source
11919 (origin
11920 (method git-fetch)
11921 (uri (git-reference
11922 (url "https://github.com/xach/zpb-exif")
11923 (commit (string-append "release-" version))))
11924 (file-name (git-file-name name version))
11925 (sha256
11926 (base32 "15s227jhby55cisz14xafb0p1ws2jmrg2rrbbd00lrb97im84hy6"))))
11927 (build-system asdf-build-system/sbcl)
11928 (home-page "https://xach.com/lisp/zpb-exif/")
11929 (synopsis "EXIF information extractor for Common Lisp")
11930 (description
11931 "This is a Common Lisp library to extract EXIF information from image
11932 files.")
11933 (license license:bsd-2)))
11934
11935 (define-public cl-zpb-exif
11936 (sbcl-package->cl-source-package sbcl-zpb-exif))
11937
11938 (define-public ecl-zpb-exif
11939 (sbcl-package->ecl-package sbcl-zpb-exif))
11940
11941 (define-public sbcl-pngload
11942 (let ((commit "91f1d703c65bb6a94d6fee06ddbbbbbc5778b71f")
11943 (revision "2"))
11944 (package
11945 (name "sbcl-pngload")
11946 (version (git-version "2.0.0" revision commit))
11947 (source
11948 (origin
11949 (method git-fetch)
11950 (uri (git-reference
11951 (url "https://git.mfiano.net/mfiano/pngload.git")
11952 (commit commit)))
11953 (file-name (git-file-name "pngload" version))
11954 (sha256
11955 (base32 "0s94fdbrbqj12qvgyn2g4lfwvz7qhhzbclrpz5ni7adwxgrmvxl1"))))
11956 (build-system asdf-build-system/sbcl)
11957 (inputs
11958 `(("3bz" ,sbcl-3bz)
11959 ("alexandria" ,sbcl-alexandria)
11960 ("cffi" ,sbcl-cffi)
11961 ("mmap" ,sbcl-mmap)
11962 ("parse-float" ,sbcl-parse-float)
11963 ("static-vectors" ,sbcl-static-vectors)
11964 ("swap-bytes" ,sbcl-swap-bytes)
11965 ("zpb-exif" ,sbcl-zpb-exif)))
11966 (arguments
11967 ;; Test suite disabled because of a dependency cycle.
11968 ;; pngload tests depend on opticl which depends on pngload.
11969 '(#:tests? #f))
11970 (home-page "https://git.mfiano.net/mfiano/pngload.git")
11971 (synopsis "PNG image decoder for Common Lisp")
11972 (description
11973 "This is a Common Lisp library to load images in the PNG image format,
11974 both from files on disk, or streams in memory.")
11975 (license license:expat))))
11976
11977 (define-public cl-pngload
11978 (sbcl-package->cl-source-package sbcl-pngload))
11979
11980 (define-public ecl-pngload
11981 (sbcl-package->ecl-package sbcl-pngload))
11982
11983 (define-public sbcl-opticl
11984 (let ((commit "e8684416eca2e78e82a7b436d436ef2ea24c019d")
11985 (revision "0"))
11986 (package
11987 (name "sbcl-opticl")
11988 (version (git-version "0.0.0" revision commit))
11989 (source
11990 (origin
11991 (method git-fetch)
11992 (uri (git-reference
11993 (url "https://github.com/slyrus/opticl")
11994 (commit commit)))
11995 (file-name (git-file-name name version))
11996 (sha256
11997 (base32 "03rirnnhhisjbimlmpi725h1d3x0cfv00r57988am873dyzawmm1"))))
11998 (build-system asdf-build-system/sbcl)
11999 (native-inputs
12000 `(("fiveam" ,sbcl-fiveam)))
12001 (inputs
12002 `(("alexandria" ,sbcl-alexandria)
12003 ("cl-jpeg" ,sbcl-cl-jpeg)
12004 ("cl-tga" ,sbcl-cl-tga)
12005 ("png-read" ,sbcl-png-read)
12006 ("pngload" ,sbcl-pngload)
12007 ("retrospectiff" ,sbcl-retrospectiff)
12008 ("skippy" ,sbcl-skippy)
12009 ("zpng" ,sbcl-zpng)))
12010 (arguments
12011 '(#:asd-files '("opticl.asd")))
12012 (home-page "https://github.com/slyrus/opticl")
12013 (synopsis "Image processing library for Common Lisp")
12014 (description
12015 "Opticl is a Common Lisp library for representing, processing, loading,
12016 and saving 2-dimensional pixel-based images.")
12017 (license license:bsd-2))))
12018
12019 (define-public cl-opticl
12020 (sbcl-package->cl-source-package sbcl-opticl))
12021
12022 (define-public ecl-opticl
12023 (sbcl-package->ecl-package sbcl-opticl))
12024
12025 (define-public sbcl-mcclim
12026 (let ((commit "04cc542dd4b461b9d56406e40681d1a8f080730f")
12027 (revision "1"))
12028 (package
12029 (name "sbcl-mcclim")
12030 (version (git-version "0.9.7" revision commit))
12031 (source
12032 (origin
12033 (method git-fetch)
12034 (uri (git-reference
12035 (url "https://github.com/mcclim/mcclim")
12036 (commit commit)))
12037 (file-name (git-file-name name version))
12038 (sha256
12039 (base32 "1xjly8i62z72hfhlnz5kjd9i8xhrwckc7avyizxvhih67pkjmsx0"))))
12040 (build-system asdf-build-system/sbcl)
12041 (native-inputs
12042 `(("fiveam" ,sbcl-fiveam)
12043 ("pkg-config" ,pkg-config)))
12044 (inputs
12045 `(("alexandria" ,sbcl-alexandria)
12046 ("babel" ,sbcl-babel)
12047 ("bordeaux-threads" ,sbcl-bordeaux-threads)
12048 ("cl-freetype2" ,sbcl-cl-freetype2)
12049 ("cl-pdf" ,sbcl-cl-pdf)
12050 ("cffi" ,sbcl-cffi)
12051 ("cl-unicode" ,sbcl-cl-unicode)
12052 ("cl-vectors" ,sbcl-cl-vectors)
12053 ("closer-mop" ,sbcl-closer-mop)
12054 ("clx" ,sbcl-clx)
12055 ("flexi-streams" ,sbcl-flexi-streams)
12056 ("flexichain" ,sbcl-flexichain)
12057 ("font-dejavu" ,font-dejavu)
12058 ("fontconfig" ,fontconfig)
12059 ("freetype" ,freetype)
12060 ("harfbuzz" ,harfbuzz)
12061 ("log4cl" ,sbcl-log4cl)
12062 ("opticl" ,sbcl-opticl)
12063 ("spatial-trees" ,sbcl-spatial-trees)
12064 ("swank" ,sbcl-slime-swank)
12065 ("trivial-features" ,sbcl-trivial-features)
12066 ("trivial-garbage" ,sbcl-trivial-garbage)
12067 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
12068 ("zpb-ttf" ,sbcl-zpb-ttf)))
12069 (arguments
12070 '(#:asd-systems '("mcclim"
12071 "clim-examples")
12072 #:phases
12073 (modify-phases %standard-phases
12074 (add-after 'unpack 'fix-paths
12075 (lambda* (#:key inputs #:allow-other-keys)
12076 ;; mcclim-truetype uses DejaVu as default font and
12077 ;; sets the path at build time.
12078 (substitute* "Extensions/fonts/fontconfig.lisp"
12079 (("/usr/share/fonts/truetype/dejavu/")
12080 (string-append (assoc-ref inputs "font-dejavu")
12081 "/share/fonts/truetype/")))
12082 (substitute* "Extensions/fontconfig/src/functions.lisp"
12083 (("libfontconfig\\.so")
12084 (string-append (assoc-ref inputs "fontconfig")
12085 "/lib/libfontconfig.so")))
12086 (substitute* "Extensions/harfbuzz/src/functions.lisp"
12087 (("libharfbuzz\\.so")
12088 (string-append (assoc-ref inputs "harfbuzz")
12089 "/lib/libharfbuzz.so")))
12090 #t))
12091 (add-after 'unpack 'fix-build
12092 (lambda _
12093 ;; The cffi-grovel system does not get loaded automatically,
12094 ;; so we load it explicitly.
12095 (substitute* "Extensions/fontconfig/mcclim-fontconfig.asd"
12096 (("\\(asdf:defsystem #:mcclim-fontconfig" all)
12097 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
12098 (substitute* "Extensions/harfbuzz/mcclim-harfbuzz.asd"
12099 (("\\(asdf:defsystem #:mcclim-harfbuzz" all)
12100 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
12101 #t)))))
12102 (home-page "https://common-lisp.net/project/mcclim/")
12103 (synopsis "Common Lisp GUI toolkit")
12104 (description
12105 "McCLIM is an implementation of the @emph{Common Lisp Interface Manager
12106 specification}, a toolkit for writing GUIs in Common Lisp.")
12107 (license license:lgpl2.1+))))
12108
12109 (define-public cl-mcclim
12110 (sbcl-package->cl-source-package sbcl-mcclim))
12111
12112 (define-public ecl-mcclim
12113 (sbcl-package->ecl-package sbcl-mcclim))
12114
12115 (define-public sbcl-cl-inflector
12116 (let ((commit "f1ab16919ccce3bd82a0042677d9616dde2034fe")
12117 (revision "1"))
12118 (package
12119 (name "sbcl-cl-inflector")
12120 (version (git-version "0.2" revision commit))
12121 (source
12122 (origin
12123 (method git-fetch)
12124 (uri (git-reference
12125 (url "https://github.com/AccelerationNet/cl-inflector")
12126 (commit commit)))
12127 (file-name (git-file-name name version))
12128 (sha256
12129 (base32 "1xwwlhik1la4fp984qnx2dqq24v012qv4x0y49sngfpwg7n0ya7y"))))
12130 (build-system asdf-build-system/sbcl)
12131 (native-inputs
12132 `(("lisp-unit2" ,sbcl-lisp-unit2)))
12133 (inputs
12134 `(("alexandria" ,sbcl-alexandria)
12135 ("cl-ppcre" ,sbcl-cl-ppcre)))
12136 (home-page "https://github.com/AccelerationNet/cl-inflector")
12137 (synopsis "Library to pluralize/singularize English and Portuguese words")
12138 (description
12139 "This is a common lisp library to easily pluralize and singularize
12140 English and Portuguese words. This is a port of the ruby ActiveSupport
12141 Inflector module.")
12142 (license license:expat))))
12143
12144 (define-public cl-inflector
12145 (sbcl-package->cl-source-package sbcl-cl-inflector))
12146
12147 (define-public ecl-cl-inflector
12148 (sbcl-package->ecl-package sbcl-cl-inflector))
12149
12150 (define-public sbcl-ixf
12151 (let ((commit "ed26f87e4127e4a9e3aac4ff1e60d1f39cca5183")
12152 (revision "1"))
12153 (package
12154 (name "sbcl-ixf")
12155 (version (git-version "0.1.0" revision commit))
12156 (source
12157 (origin
12158 (method git-fetch)
12159 (uri (git-reference
12160 (url "https://github.com/dimitri/cl-ixf")
12161 (commit commit)))
12162 (file-name (git-file-name "cl-ixf" version))
12163 (sha256
12164 (base32 "1wjdnf4vr9z7lcfc49kl43g6l2i23q9n81siy494k17d766cdvqa"))))
12165 (build-system asdf-build-system/sbcl)
12166 (inputs
12167 `(("alexandria" ,sbcl-alexandria)
12168 ("babel" ,sbcl-babel)
12169 ("cl-ppcre" ,sbcl-cl-ppcre)
12170 ("ieee-floats" ,sbcl-ieee-floats)
12171 ("local-time" ,sbcl-local-time)
12172 ("md5" ,sbcl-md5)
12173 ("split-sequence" ,sbcl-split-sequence)))
12174 (home-page "https://github.com/dimitri/cl-ixf")
12175 (synopsis "Parse IBM IXF file format")
12176 (description
12177 "This is a Common Lisp library to handle the IBM PC version of the IXF
12178 (Integration Exchange Format) file format.")
12179 (license license:public-domain))))
12180
12181 (define-public ecl-ixf
12182 (sbcl-package->ecl-package sbcl-ixf))
12183
12184 (define-public cl-ixf
12185 (sbcl-package->cl-source-package sbcl-ixf))
12186
12187 (define-public sbcl-qbase64
12188 (package
12189 (name "sbcl-qbase64")
12190 (version "0.3.0")
12191 (source
12192 (origin
12193 (method git-fetch)
12194 (uri (git-reference
12195 (url "https://github.com/chaitanyagupta/qbase64")
12196 (commit version)))
12197 (file-name (git-file-name name version))
12198 (sha256
12199 (base32 "1dir0s70ca3hagxv9x15zq4p4ajgl7jrcgqsza2n2y7iqbxh0dwi"))))
12200 (build-system asdf-build-system/sbcl)
12201 (inputs
12202 `(("metabang-bind" ,sbcl-metabang-bind)
12203 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
12204 (native-inputs
12205 `(("fiveam" ,sbcl-fiveam)))
12206 (home-page "https://github.com/chaitanyagupta/qbase64")
12207 (synopsis "Base64 encoder and decoder for Common Lisp")
12208 (description "@code{qbase64} provides a fast and flexible base64 encoder
12209 and decoder for Common Lisp.")
12210 (license license:bsd-3)))
12211
12212 (define-public cl-qbase64
12213 (sbcl-package->cl-source-package sbcl-qbase64))
12214
12215 (define-public ecl-qbase64
12216 (sbcl-package->ecl-package sbcl-qbase64))
12217
12218 (define-public sbcl-lw-compat
12219 ;; No release since 2013.
12220 (let ((commit "aabfe28c6c1a4949f9d7b3cb30319367c9fd1c0d"))
12221 (package
12222 (name "sbcl-lw-compat")
12223 (version (git-version "1.0.0" "1" commit))
12224 (source
12225 (origin
12226 (method git-fetch)
12227 (uri (git-reference
12228 (url "https://github.com/pcostanza/lw-compat/")
12229 (commit commit)))
12230 (file-name (git-file-name name version))
12231 (sha256
12232 (base32 "131rq5k2mlv9bfhmafiv6nfsivl4cxx13d9wr06v5jrqnckh4aav"))))
12233 (build-system asdf-build-system/sbcl)
12234 (home-page "https://github.com/pcostanza/lw-compat/")
12235 (synopsis "LispWorks utilities ported to other Common Lisp implementations")
12236 (description "This package contains a few utility functions from the
12237 LispWorks library that are used in software such as ContextL.")
12238 (license license:expat))))
12239
12240 (define-public cl-lw-compat
12241 (sbcl-package->cl-source-package sbcl-lw-compat))
12242
12243 (define-public ecl-lw-compat
12244 (sbcl-package->ecl-package sbcl-lw-compat))
12245
12246 (define-public sbcl-contextl
12247 ;; No release since 2013.
12248 (let ((commit "5d18a71a85824f6c25a9f35a21052f967b8b6bb9"))
12249 (package
12250 (name "sbcl-contextl")
12251 (version (git-version "1.0.0" "1" commit))
12252 (source
12253 (origin
12254 (method git-fetch)
12255 (uri (git-reference
12256 (url "https://github.com/pcostanza/contextl/")
12257 (commit commit)))
12258 (file-name (git-file-name name version))
12259 (sha256
12260 (base32 "0gk1izx6l6g48nypmnm9r6mzjx0jixqjj2kc6klf8a88rr5xd226"))))
12261 (build-system asdf-build-system/sbcl)
12262 (inputs
12263 `(("closer-mop" ,sbcl-closer-mop)
12264 ("lw-compat" ,sbcl-lw-compat)))
12265 (home-page "https://github.com/pcostanza/contextl")
12266 (synopsis "Context-oriented programming for Common Lisp")
12267 (description "ContextL is a CLOS extension for Context-Oriented
12268 Programming (COP).
12269
12270 Find overview of ContextL's features in an overview paper:
12271 @url{http://www.p-cos.net/documents/contextl-soa.pdf}. See also this general
12272 overview article about COP which also contains some ContextL examples:
12273 @url{http://www.jot.fm/issues/issue_2008_03/article4/}.")
12274 (license license:expat))))
12275
12276 (define-public cl-contextl
12277 (sbcl-package->cl-source-package sbcl-contextl))
12278
12279 (define-public ecl-contextl
12280 (sbcl-package->ecl-package sbcl-contextl))
12281
12282 (define-public sbcl-hu.dwim.common-lisp
12283 (let ((commit "90558195773383142a57a16687d5e7f4adea6418"))
12284 (package
12285 (name "sbcl-hu.dwim.common-lisp")
12286 (version "2021-01-27")
12287 (source
12288 (origin
12289 (method git-fetch)
12290 (uri (git-reference
12291 (url "https://github.com/hu-dwim/hu.dwim.common-lisp/")
12292 (commit commit)))
12293 (file-name (git-file-name name version))
12294 (sha256
12295 (base32 "06zkdw3scnaw0d4nmsgkv7pi7sw00dikdgfgsqmbqfbz2yrsdabk"))))
12296 (build-system asdf-build-system/sbcl)
12297 (native-inputs
12298 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12299 (home-page "http://dwim.hu/project/hu.dwim.common-lisp")
12300 (synopsis "Redefine some standard Common Lisp names")
12301 (description "This library is a redefinition of the standard Common Lisp
12302 package that includes a number of renames and shadows. ")
12303 (license license:public-domain))))
12304
12305 (define-public cl-hu.dwim.common-lisp
12306 (sbcl-package->cl-source-package sbcl-hu.dwim.common-lisp))
12307
12308 (define-public ecl-hu.dwim.common-lisp
12309 (sbcl-package->ecl-package sbcl-hu.dwim.common-lisp))
12310
12311 (define-public sbcl-hu.dwim.common
12312 (package
12313 (name "sbcl-hu.dwim.common")
12314 (version "2015-07-09")
12315 (source
12316 (origin
12317 (method url-fetch)
12318 (uri (string-append
12319 "http://beta.quicklisp.org/archive/hu.dwim.common/"
12320 version "/hu.dwim.common-"
12321 (string-replace-substring version "-" "")
12322 "-darcs.tgz"))
12323 (sha256
12324 (base32 "12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp"))))
12325 (build-system asdf-build-system/sbcl)
12326 (native-inputs
12327 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12328 (inputs
12329 `(("alexandria" ,sbcl-alexandria)
12330 ("anaphora" ,sbcl-anaphora)
12331 ("closer-mop" ,sbcl-closer-mop)
12332 ("hu.dwim.common-lisp" ,sbcl-hu.dwim.common-lisp)
12333 ("iterate" ,sbcl-iterate)
12334 ("metabang-bind" ,sbcl-metabang-bind)))
12335 (home-page "http://dwim.hu/")
12336 (synopsis "Common Lisp library shared by other hu.dwim systems")
12337 (description "This package contains a support library for other
12338 hu.dwim systems.")
12339 (license license:public-domain)))
12340
12341 (define-public cl-hu.dwim.common
12342 (sbcl-package->cl-source-package sbcl-hu.dwim.common))
12343
12344 (define-public ecl-hu.dwim.common
12345 (sbcl-package->ecl-package sbcl-hu.dwim.common))
12346
12347 (define-public sbcl-hu.dwim.defclass-star
12348 (let ((commit "3086878a485074f9b2913c58267a9b764cd632fd"))
12349 (package
12350 (name "sbcl-hu.dwim.defclass-star")
12351 ;; We used to set version from the date when it was a darcs repo, so we
12352 ;; keep the year so that package gets updated on previous installs.
12353 (version (git-version "2021" "2" commit))
12354 (source
12355 (origin
12356 (method git-fetch)
12357 (uri (git-reference
12358 (url "https://github.com/hu-dwim/hu.dwim.defclass-star")
12359 (commit commit)))
12360 (file-name (git-file-name name version))
12361 (sha256
12362 (base32 "19ipds9r71qymfdp4izg0l7zmvinp06adr8rdalhaq7v7mzpg83z"))))
12363 (build-system asdf-build-system/sbcl)
12364 (native-inputs
12365 `( ;; These 2 inputs are only needed tests which are disabled, see below.
12366 ;; ("hu.dwim.common" ,sbcl-hu.dwim.common)
12367 ;; Need cl- package for the :hu.dwim.stefil+hu.dwim.def+swank system.
12368 ;; ("hu.dwim.stefil" ,cl-hu.dwim.stefil)
12369 ("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12370 (arguments
12371 `(#:test-asd-file "hu.dwim.defclass-star.test.asd"
12372 ;; Tests require a circular dependency: hu.dwim.stefil -> hu.dwim.def
12373 ;; -> hu.dwim.util -> hu.dwim.defclass-star.
12374 #:tests? #f))
12375 (home-page "https://github.com/hu-dwim/hu.dwim.defclass-star")
12376 (synopsis "Simplify definitions with defclass* and friends in Common Lisp")
12377 (description "@code{defclass-star} provides defclass* and defcondition* to
12378 simplify class and condition declarations. Features include:
12379
12380 @itemize
12381 @item Automatically export all or select slots at compile time.
12382 @item Define the @code{:initarg} and @code{:accessor} automatically.
12383 @item Specify a name transformer for both the @code{:initarg} and
12384 @code{:accessor}, etc.
12385 @item Specify the @code{:initform} as second slot value.
12386 @end itemize
12387
12388 See
12389 @url{https://common-lisp.net/project/defclass-star/configuration.lisp.html}
12390 for an example.")
12391 (license license:public-domain))))
12392
12393 (define-public cl-hu.dwim.defclass-star
12394 (sbcl-package->cl-source-package sbcl-hu.dwim.defclass-star))
12395
12396 (define-public ecl-hu.dwim.defclass-star
12397 (sbcl-package->ecl-package sbcl-hu.dwim.defclass-star))
12398
12399 (define-public sbcl-livesupport
12400 (let ((commit "71e6e412df9f3759ad8378fabb203913d82e228a")
12401 (revision "1"))
12402 (package
12403 (name "sbcl-livesupport")
12404 (version (git-version "0.0.0" revision commit))
12405 (source
12406 (origin
12407 (method git-fetch)
12408 (uri (git-reference
12409 (url "https://github.com/cbaggers/livesupport")
12410 (commit commit)))
12411 (file-name (git-file-name name version))
12412 (sha256
12413 (base32 "1rvnl0mncylbx63608pz5llss7y92j7z3ydambk9mcnjg2mjaapg"))))
12414 (build-system asdf-build-system/sbcl)
12415 (home-page "https://github.com/cbaggers/livesupport")
12416 (synopsis "Some helpers that make livecoding a little easier")
12417 (description "This package provides a macro commonly used in livecoding to
12418 enable continuing when errors are raised. Simply wrap around a chunk of code
12419 and it provides a restart called @code{continue} which ignores the error and
12420 carrys on from the end of the body.")
12421 (license license:bsd-2))))
12422
12423 (define-public cl-livesupport
12424 (sbcl-package->cl-source-package sbcl-livesupport))
12425
12426 (define-public ecl-livesupport
12427 (sbcl-package->ecl-package sbcl-livesupport))
12428
12429 (define-public sbcl-envy
12430 (let ((commit "956321b2852d58ba71c6fe621f5c2924178e9f88")
12431 (revision "1"))
12432 (package
12433 (name "sbcl-envy")
12434 (version (git-version "0.1" revision commit))
12435 (home-page "https://github.com/fukamachi/envy")
12436 (source
12437 (origin
12438 (method git-fetch)
12439 (uri (git-reference
12440 (url home-page)
12441 (commit commit)))
12442 (file-name (git-file-name name version))
12443 (sha256
12444 (base32 "17iwrfxcdinjbb2h6l09qf40s7xkbhrpmnljlwpjy8l8rll8h3vg"))))
12445 (build-system asdf-build-system/sbcl)
12446 ;; (native-inputs ; Only for tests.
12447 ;; `(("prove" ,sbcl-prove)
12448 ;; ("osicat" ,sbcl-osicat)))
12449 (arguments
12450 '(#:phases
12451 (modify-phases %standard-phases
12452 (add-after 'unpack 'fix-tests
12453 (lambda _
12454 (substitute* "envy-test.asd"
12455 (("cl-test-more") "prove"))
12456 #t)))
12457 ;; Tests fail with
12458 ;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
12459 ;; like xsubseq. Why?
12460 #:tests? #f))
12461 (synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV.")
12462 (description "Envy is a configuration manager for various applications.
12463 Envy uses an environment variable to determine a configuration to use. This
12464 can separate configuration system from an implementation.")
12465 (license license:bsd-2))))
12466
12467 (define-public cl-envy
12468 (sbcl-package->cl-source-package sbcl-envy))
12469
12470 (define-public ecl-envy
12471 (sbcl-package->ecl-package sbcl-envy))
12472
12473 (define-public sbcl-mito
12474 (let ((commit "d3b9e375ef364a65692da2185085a08c969ac88a")
12475 (revision "1"))
12476 (package
12477 (name "sbcl-mito")
12478 (version (git-version "0.1" revision commit))
12479 (home-page "https://github.com/fukamachi/mito")
12480 (source
12481 (origin
12482 (method git-fetch)
12483 (uri (git-reference
12484 (url home-page)
12485 (commit commit)))
12486 (file-name (git-file-name name version))
12487 (sha256
12488 (base32 "08mncgzjnbbsf1a6am3l73iw4lyfvz5ldjg5g84awfaxml4p73mb"))))
12489 (build-system asdf-build-system/sbcl)
12490 (native-inputs
12491 `(("prove" ,sbcl-prove)))
12492 (inputs
12493 `(("alexandria" ,sbcl-alexandria)
12494 ("cl-ppcre" ,sbcl-cl-ppcre)
12495 ("cl-reexport" ,sbcl-cl-reexport)
12496 ("closer-mop" ,sbcl-closer-mop)
12497 ("dbi" ,sbcl-dbi)
12498 ("dissect" ,sbcl-dissect)
12499 ("esrap" ,sbcl-esrap)
12500 ("local-time" ,sbcl-local-time)
12501 ("optima" ,sbcl-optima)
12502 ("sxql" ,sbcl-sxql)
12503 ("uuid" ,sbcl-uuid)))
12504 (arguments
12505 '(#:phases
12506 (modify-phases %standard-phases
12507 (add-after 'unpack 'remove-non-functional-tests
12508 (lambda _
12509 (substitute* "mito-test.asd"
12510 (("\\(:test-file \"db/mysql\"\\)") "")
12511 (("\\(:test-file \"db/postgres\"\\)") "")
12512 (("\\(:test-file \"dao\"\\)") "")
12513 ;; TODO: migration/sqlite3 should work, re-enable once
12514 ;; upstream has fixed it:
12515 ;; https://github.com/fukamachi/mito/issues/70
12516 (("\\(:test-file \"migration/sqlite3\"\\)") "")
12517 (("\\(:test-file \"migration/mysql\"\\)") "")
12518 (("\\(:test-file \"migration/postgres\"\\)") "")
12519 (("\\(:test-file \"postgres-types\"\\)") "")
12520 (("\\(:test-file \"mixin\"\\)") ""))
12521 #t)))
12522 ;; TODO: While all enabled tests pass, the phase fails with:
12523 ;; Component MITO-ASD::MITO-TEST not found, required by #<SYSTEM "mito">
12524 #:tests? #f))
12525 (synopsis "ORM for Common Lisp with migrations and relationships support")
12526 (description "Mito is yet another object relational mapper, and it aims
12527 to be a successor of Integral.
12528
12529 @itemize
12530 @item Support MySQL, PostgreSQL and SQLite3.
12531 @item Add id (serial/uuid primary key), created_at and updated_at by default
12532 like Ruby's ActiveRecord.
12533 @item Migrations.
12534 @item Database schema versioning.
12535 @end itemize\n")
12536 (license license:llgpl))))
12537
12538 (define-public cl-mito
12539 (sbcl-package->cl-source-package sbcl-mito))
12540
12541 (define-public ecl-mito
12542 (sbcl-package->ecl-package sbcl-mito))
12543
12544 (define-public sbcl-kebab
12545 (let ((commit "e7f77644c4e46131e7b8039d191d35fe6211f31b")
12546 (revision "1"))
12547 (package
12548 (name "sbcl-kebab")
12549 (version (git-version "0.1" revision commit))
12550 (home-page "https://github.com/pocket7878/kebab")
12551 (source
12552 (origin
12553 (method git-fetch)
12554 (uri (git-reference
12555 (url home-page)
12556 (commit commit)))
12557 (file-name (git-file-name name version))
12558 (sha256
12559 (base32 "0j5haabnvj0vz0rx9mwyfsb3qzpga9nickbjw8xs6vypkdzlqv1b"))))
12560 (build-system asdf-build-system/sbcl)
12561 (inputs
12562 `(("cl-ppcre" ,sbcl-cl-ppcre)
12563 ("alexandria" ,sbcl-alexandria)
12564 ("cl-interpol" ,sbcl-cl-interpol)
12565 ("split-sequence" ,sbcl-split-sequence)))
12566 (native-inputs
12567 `(("prove" ,sbcl-prove)))
12568 (arguments
12569 ;; Tests passes but the phase fails with
12570 ;; Component KEBAB-ASD::KEBAB-TEST not found, required by #<SYSTEM "kebab">.
12571 `(#:tests? #f))
12572 (synopsis "Common Lisp case converter")
12573 (description "This Common Lisp library converts strings, symbols and
12574 keywords between any of the following typographical cases: PascalCase,
12575 camelCase, snake_case, kebab-case (lisp-case).")
12576 (license license:llgpl))))
12577
12578 (define-public cl-kebab
12579 (sbcl-package->cl-source-package sbcl-kebab))
12580
12581 (define-public ecl-kebab
12582 (sbcl-package->ecl-package sbcl-kebab))
12583
12584 (define-public sbcl-datafly
12585 (let ((commit "adece27fcbc4b5ea39ad1a105048b6b7166e3b0d")
12586 (revision "1"))
12587 (package
12588 (name "sbcl-datafly")
12589 (version (git-version "0.1" revision commit))
12590 (home-page "https://github.com/fukamachi/datafly")
12591 (source
12592 (origin
12593 (method git-fetch)
12594 (uri (git-reference
12595 (url home-page)
12596 (commit commit)))
12597 (file-name (git-file-name name version))
12598 (sha256
12599 (base32 "16b78kzmglp2a4nxlxxl7rpf5zaibsgagn0p3c56fsxvx0c4hszv"))))
12600 (build-system asdf-build-system/sbcl)
12601 (inputs
12602 `(("alexandria" ,sbcl-alexandria)
12603 ("iterate" ,sbcl-iterate)
12604 ("optima" ,sbcl-optima)
12605 ("trivial-types" ,sbcl-trivial-types)
12606 ("closer-mop" ,sbcl-closer-mop)
12607 ("cl-syntax" ,sbcl-cl-syntax)
12608 ("sxql" ,sbcl-sxql)
12609 ("dbi" ,sbcl-dbi)
12610 ("babel" ,sbcl-babel)
12611 ("local-time" ,sbcl-local-time)
12612 ("function-cache" ,sbcl-function-cache)
12613 ("jonathan" ,sbcl-jonathan)
12614 ("kebab" ,sbcl-kebab)
12615 ("log4cl" ,sbcl-log4cl)))
12616 (native-inputs
12617 `(("prove" ,sbcl-prove)))
12618 (arguments
12619 ;; TODO: Tests fail with
12620 ;; While evaluating the form starting at line 22, column 0
12621 ;; of #P"/tmp/guix-build-sbcl-datafly-0.1-1.adece27.drv-0/source/t/datafly.lisp":
12622 ;; Unhandled SQLITE:SQLITE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
12623 ;; {10009F8083}>:
12624 ;; Error when binding parameter 1 to value NIL.
12625 ;; Code RANGE: column index out of range.
12626 `(#:tests? #f))
12627 (synopsis "Lightweight database library for Common Lisp")
12628 (description "Datafly is a lightweight database library for Common Lisp.")
12629 (license license:bsd-3))))
12630
12631 (define-public cl-datafly
12632 (sbcl-package->cl-source-package sbcl-datafly))
12633
12634 (define-public ecl-datafly
12635 (sbcl-package->ecl-package sbcl-datafly))
12636
12637 (define-public sbcl-do-urlencode
12638 (let ((commit "199846441dad5dfac5478b8dee4b4e20d107af6a")
12639 (revision "1"))
12640 (package
12641 (name "sbcl-do-urlencode")
12642 (version (git-version "0.0.0" revision commit))
12643 (home-page "https://github.com/drdo/do-urlencode")
12644 (source
12645 (origin
12646 (method git-fetch)
12647 (uri (git-reference
12648 (url home-page)
12649 (commit commit)))
12650 (file-name (git-file-name name version))
12651 (sha256
12652 (base32 "0k2i3d4k9cpci235mwfm0c5a4yqfkijr716bjv7cdlpzx88lazm9"))))
12653 (build-system asdf-build-system/sbcl)
12654 (inputs
12655 `(("alexandria" ,sbcl-alexandria)
12656 ("babel" ,sbcl-babel)))
12657 (synopsis "Percent Encoding (aka URL Encoding) Common Lisp library")
12658 (description "This library provides trivial percent encoding and
12659 decoding functions for URLs.")
12660 (license license:isc))))
12661
12662 (define-public cl-do-urlencode
12663 (sbcl-package->cl-source-package sbcl-do-urlencode))
12664
12665 (define-public ecl-do-urlencode
12666 (sbcl-package->ecl-package sbcl-do-urlencode))
12667
12668 (define-public sbcl-cl-emb
12669 (let ((commit "fd8652174d048d4525a81f38cdf42f4fa519f840")
12670 (revision "1"))
12671 (package
12672 (name "sbcl-cl-emb")
12673 (version (git-version "0.4.3" revision commit))
12674 (home-page "https://common-lisp.net/project/cl-emb/")
12675 (source
12676 (origin
12677 (method git-fetch)
12678 (uri (git-reference
12679 (url "https://github.com/38a938c2/cl-emb")
12680 (commit commit)))
12681 (file-name (git-file-name name version))
12682 (sha256
12683 (base32 "1xcm31n7afh5316lwz8iqbjx7kn5lw0l11arg8mhdmkx42aj4gkk"))))
12684 (build-system asdf-build-system/sbcl)
12685 (inputs
12686 `(("cl-ppcre" ,sbcl-cl-ppcre)))
12687 (synopsis "Templating system for Common Lisp")
12688 (description "A mixture of features from eRuby and HTML::Template. You
12689 could name it \"Yet Another LSP\" (LispServer Pages) but it's a bit more than
12690 that and not limited to a certain server or text format.")
12691 (license license:llgpl))))
12692
12693 (define-public cl-emb
12694 (sbcl-package->cl-source-package sbcl-cl-emb))
12695
12696 (define-public ecl-cl-emb
12697 (sbcl-package->ecl-package sbcl-cl-emb))
12698
12699 (define-public sbcl-cl-project
12700 (let ((commit "151107014e534fc4666222d57fec2cc8549c8814")
12701 (revision "1"))
12702 (package
12703 (name "sbcl-cl-project")
12704 (version (git-version "0.3.1" revision commit))
12705 (home-page "https://github.com/fukamachi/cl-project")
12706 (source
12707 (origin
12708 (method git-fetch)
12709 (uri (git-reference
12710 (url home-page)
12711 (commit commit)))
12712 (file-name (git-file-name name version))
12713 (sha256
12714 (base32 "1rmh6s1ncv8s2yrr14ja9wisgg745sq6xibqwb341ikdicxdp26y"))))
12715 (build-system asdf-build-system/sbcl)
12716 (inputs
12717 `(("cl-emb" ,sbcl-cl-emb)
12718 ("cl-ppcre" ,sbcl-cl-ppcre)
12719 ("local-time" ,sbcl-local-time)
12720 ("prove" ,sbcl-prove)))
12721 (arguments
12722 ;; Tests depend on caveman, which in turns depends on cl-project.
12723 '(#:tests? #f
12724 #:asd-files '("cl-project.asd")))
12725 (synopsis "Generate a skeleton for modern Common Lisp projects")
12726 (description "This library provides a modern project skeleton generator.
12727 In contract with other generators, CL-Project generates one package per file
12728 and encourages unit testing by generating a system for unit testing, so you
12729 can begin writing unit tests as soon as the project is generated.")
12730 (license license:llgpl))))
12731
12732 (define-public cl-project
12733 (sbcl-package->cl-source-package sbcl-cl-project))
12734
12735 (define-public ecl-cl-project
12736 (sbcl-package->ecl-package sbcl-cl-project))
12737
12738 (define-public sbcl-caveman
12739 (let ((commit "faa5f7e3b364fd7e7096af9a7bb06728b8d80441") ; No release since 2012
12740 (revision "1"))
12741 (package
12742 (name "sbcl-caveman")
12743 (version (git-version "2.4.0" revision commit))
12744 (home-page "http://8arrow.org/caveman/")
12745 (source
12746 (origin
12747 (method git-fetch)
12748 (uri (git-reference
12749 (url "https://github.com/fukamachi/caveman/")
12750 (commit commit)))
12751 (file-name (git-file-name name version))
12752 (sha256
12753 (base32 "0kh0gx05pczk8f7r9qdi4zn1p3d0a2prps27k7jpgvc1dxkl8qhq"))))
12754 (build-system asdf-build-system/sbcl)
12755 (inputs
12756 `(("ningle" ,cl-ningle)
12757 ("lack" ,sbcl-lack)
12758 ("cl-project" ,sbcl-cl-project)
12759 ("dbi" ,sbcl-dbi)
12760 ("cl-syntax" ,sbcl-cl-syntax)
12761 ("myway" ,sbcl-myway)
12762 ("quri" ,sbcl-quri)))
12763 (native-inputs
12764 `(("usocket" ,sbcl-usocket)
12765 ("dexador" ,sbcl-dexador)))
12766 (arguments
12767 `(#:asd-files '("caveman2.asd")
12768 #:asd-systems '("caveman2")
12769 #:phases
12770 (modify-phases %standard-phases
12771 (add-after 'unpack 'remove-v1
12772 (lambda _
12773 (delete-file-recursively "v1")
12774 (for-each delete-file
12775 '("README.v1.markdown" "caveman.asd" "caveman-test.asd")))))
12776 ;; TODO: Tests fail with:
12777 ;; writing /gnu/store/...-sbcl-caveman-2.4.0-1.faa5f7e/share/common-lisp/sbcl-source/caveman2/v2/t/tmp/myapp573/tests/myapp573.lisp
12778 ;; While evaluating the form starting at line 38, column 0
12779 ;; of #P"/tmp/guix-build-sbcl-caveman-2.4.0-1.faa5f7e.drv-0/source/v2/t/caveman.lisp":
12780 ;; Unhandled ASDF/FIND-COMPONENT:MISSING-COMPONENT in thread #<SB-THREAD:THREAD "main thread" RUNNING
12781 ;; {10009F8083}>:
12782 ;; Component "myapp573" not found
12783 #:tests? #f))
12784 (synopsis "Lightweight web application framework in Common Lisp")
12785 (description "Caveman is intended to be a collection of common parts for
12786 web applications. Caveman2 has three design goals:
12787
12788 @itemize
12789 @item Be extensible.
12790 @item Be practical.
12791 @item Don't force anything.
12792 @end itemize\n")
12793 (license license:llgpl))))
12794
12795 (define-public cl-caveman
12796 (package
12797 (inherit
12798 (sbcl-package->cl-source-package sbcl-caveman))
12799 (propagated-inputs
12800 `(("ningle" ,cl-ningle)))))
12801
12802 (define-public ecl-caveman
12803 (sbcl-package->ecl-package sbcl-caveman))
12804
12805 (define-public sbcl-lambda-fiddle
12806 (let ((commit "d16bba55acf6065b412f64ab8fdff679a4a32b1e") ;; no tagged branch
12807 (revision "1"))
12808 (package
12809 (name "sbcl-lambda-fiddle")
12810 (version (git-version "1.0.0" revision commit))
12811 (source
12812 (origin
12813 (method git-fetch)
12814 (uri (git-reference
12815 (url "https://github.com/Shinmera/lambda-fiddle")
12816 (commit commit)))
12817 (file-name (git-file-name name version))
12818 (sha256
12819 (base32 "1zarj1pqjqmk95kdx1axkgpwy2wq3canczk7f9z5hvaw5an6gand"))))
12820 (build-system asdf-build-system/sbcl)
12821 (home-page "https://github.com/Shinmera/lambda-fiddle")
12822 (synopsis "Collection of utilities to process lambda-lists")
12823 (description "This collection of utilities is useful in contexts where
12824 you want a macro that uses lambda-lists in some fashion but need more precise
12825 processing.")
12826 (license license:zlib))))
12827
12828 (define-public cl-lambda-fiddle
12829 (sbcl-package->cl-source-package sbcl-lambda-fiddle))
12830
12831 (define-public ecl-lambda-fiddle
12832 (sbcl-package->ecl-package sbcl-lambda-fiddle))
12833
12834 (define-public sbcl-xmls
12835 (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
12836 (revision "1"))
12837 (package
12838 (name "sbcl-xmls")
12839 (version (git-version "3.0.2" revision commit))
12840 (source
12841 (origin
12842 (method git-fetch)
12843 (uri (git-reference
12844 (url "https://github.com/rpgoldman/xmls")
12845 (commit commit)))
12846 (file-name (git-file-name name version))
12847 (sha256
12848 (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
12849 (native-inputs
12850 `(("fiveam" ,sbcl-fiveam)))
12851 (build-system asdf-build-system/sbcl)
12852 (home-page "https://github.com/rpgoldman/xmls")
12853 (synopsis "Non-validating XML parser for Common Lisp")
12854 (description "Xmls is a self-contained, easily embedded parser that
12855 recognizes a useful subset of the XML spec. It provides a simple mapping from
12856 XML to Lisp structures or s-expressions and back.")
12857 (license license:bsd-2))))
12858
12859 (define-public cl-xmls
12860 (sbcl-package->cl-source-package sbcl-xmls))
12861
12862 (define-public ecl-xmls
12863 (sbcl-package->ecl-package sbcl-xmls))
12864
12865 (define-public sbcl-geco
12866 (package
12867 (name "sbcl-geco")
12868 (version "2.1.1")
12869 (source
12870 (origin
12871 (method git-fetch)
12872 (uri (git-reference
12873 (url "https://github.com/gpwwjr/GECO")
12874 (commit (string-append "v" version))))
12875 (file-name (git-file-name "geco" version))
12876 (sha256
12877 (base32 "1rc8a4mk40hjx5qy980hjylv6xxqdbq38hg8c4w30y93abfd519s"))))
12878 (build-system asdf-build-system/sbcl)
12879 (home-page "http://hiwaay.net/~gpw/geco/geco.html")
12880 (synopsis "Genetic algorithm toolkit for Common Lisp")
12881 (description
12882 "GECO (Genetic Evolution through Combination of Objects) is an extensible,
12883 object-oriented framework for prototyping genetic algorithms in Common Lisp.")
12884 (license license:lgpl2.1+)))
12885
12886 (define-public cl-geco
12887 (sbcl-package->cl-source-package sbcl-geco))
12888
12889 (define-public ecl-geco
12890 (sbcl-package->ecl-package sbcl-geco))
12891
12892 (define-public sbcl-html-entities
12893 (let ((commit "4af018048e891f41d77e7d680ed3aeb639e1eedb"))
12894 (package
12895 (name "sbcl-html-entities")
12896 (version (git-version "0.02" "1" commit))
12897 (source
12898 (origin
12899 (method git-fetch)
12900 (uri (git-reference
12901 (url "https://github.com/BnMcGn/html-entities/")
12902 (commit commit)))
12903 (file-name (git-file-name name version))
12904 (sha256
12905 (base32 "1b2yl6lf6vis17y4n5s505p7ica96bdafcl6vydy1hg50fy33nfr"))))
12906 (build-system asdf-build-system/sbcl)
12907 (inputs
12908 `(("ppcre" ,sbcl-cl-ppcre)))
12909 (native-inputs
12910 `(("fiveam" ,sbcl-fiveam)))
12911 (home-page "https://github.com/BnMcGn/html-entities/")
12912 (synopsis "Encode and decode entities in HTML with Common Lisp")
12913 (description "Html-entities is a Common Lisp library that lets you
12914 encode and decode entities in HTML.")
12915 (license license:expat))))
12916
12917 (define-public cl-html-entities
12918 (sbcl-package->cl-source-package sbcl-html-entities))
12919
12920 (define-public ecl-html-entities
12921 (sbcl-package->ecl-package sbcl-html-entities))
12922
12923 (define-public sbcl-quicksearch
12924 (let ((commit "fb02ecf7c876ec580ab18c7d2c8c7814c06af599"))
12925 (package
12926 (name "sbcl-quicksearch")
12927 (version (git-version "0.01.04" "1" commit))
12928 (source
12929 (origin
12930 (method git-fetch)
12931 (uri (git-reference
12932 (url "https://github.com/tkych/quicksearch/")
12933 (commit commit)))
12934 (file-name (git-file-name name version))
12935 (sha256
12936 (base32 "16k19zjkhh7r64vjq371k5jwjs7cdfjz83flh561n4h4v1z89fps"))))
12937 (build-system asdf-build-system/sbcl)
12938 (inputs
12939 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
12940 ("iterate" ,sbcl-iterate)
12941 ("alexandria" ,sbcl-alexandria)
12942 ("anaphora" ,sbcl-anaphora)
12943 ("ppcre" ,sbcl-cl-ppcre)
12944 ("drakma" ,sbcl-drakma)
12945 ("html-entities" ,sbcl-html-entities)
12946 ("yason" ,sbcl-yason)
12947 ("flexi-streams" ,sbcl-flexi-streams)
12948 ("do-urlencode" ,sbcl-do-urlencode)))
12949 (home-page "https://github.com/tkych/quicksearch/")
12950 (synopsis "Search Engine Interface for Common Lisp packages")
12951 (description "Quicksearch is a search-engine-interface for Common Lisp.
12952 The goal of Quicksearch is to find the Common Lisp library quickly. For
12953 example, if you will find the library about json, just type @code{(qs:?
12954 'json)} at REPL.
12955
12956 The function @code{quicksearch} searches for Common Lisp projects in
12957 Quicklisp, Cliki, GitHub and BitBucket, then outputs results in REPL. The
12958 function @code{?} is abbreviation wrapper for @code{quicksearch}.")
12959 (license license:expat))))
12960
12961 (define-public cl-quicksearch
12962 (sbcl-package->cl-source-package sbcl-quicksearch))
12963
12964 (define-public ecl-quicksearch
12965 (sbcl-package->ecl-package sbcl-quicksearch))
12966
12967 (define-public sbcl-agutil
12968 (let ((commit "df188d754d472da9faa1601a48f1f37bb7b34d68"))
12969 (package
12970 (name "sbcl-agutil")
12971 (version (git-version "0.0.1" "1" commit))
12972 (source
12973 (origin
12974 (method git-fetch)
12975 (uri (git-reference
12976 (url "https://github.com/alex-gutev/agutil/")
12977 (commit commit)))
12978 (file-name (git-file-name name version))
12979 (sha256
12980 (base32 "1xpnyzksk2xld64b6lw6rw0gn5zxlb77jwna59sd4yl7kxhxlfpf"))))
12981 (build-system asdf-build-system/sbcl)
12982 (inputs
12983 `(("alexandria" ,sbcl-alexandria)
12984 ("trivia" ,sbcl-trivia)))
12985 (home-page "https://github.com/alex-gutev/agutil/")
12986 (synopsis "Collection of Common Lisp utilities")
12987 (description "A collection of Common Lisp utility functions and macros
12988 mostly not found in other utility packages.")
12989 (license license:expat))))
12990
12991 (define-public cl-agutil
12992 (sbcl-package->cl-source-package sbcl-agutil))
12993
12994 (define-public ecl-agutil
12995 (sbcl-package->ecl-package sbcl-agutil))
12996
12997 (define-public sbcl-custom-hash-table
12998 (let ((commit "f26983133940f5edf826ebbc8077acc04816ddfa"))
12999 (package
13000 (name "sbcl-custom-hash-table")
13001 (version (git-version "0.3" "1" commit))
13002 (source
13003 (origin
13004 (method git-fetch)
13005 (uri (git-reference
13006 (url "https://github.com/metawilm/cl-custom-hash-table")
13007 (commit commit)))
13008 (file-name (git-file-name name version))
13009 (sha256
13010 (base32 "1k4mvrpbqqds2fwjxp1bxmrfmr8ch4dkwhnkbw559knbqshvrlj5"))))
13011 (build-system asdf-build-system/sbcl)
13012 (arguments
13013 '(#:asd-files '("cl-custom-hash-table.asd")
13014 #:asd-systems '("cl-custom-hash-table")))
13015 (home-page "https://github.com/metawilm/cl-custom-hash-table")
13016 (synopsis "Custom hash tables for Common Lisp")
13017 (description "This library allows creation of hash tables with arbitrary
13018 @code{test}/@code{hash} functions, in addition to the @code{test} functions
13019 allowed by the standard (@code{EQ}, @code{EQL}, @code{EQUAL} and
13020 @code{EQUALP}), even in implementations that don't support this functionality
13021 directly.")
13022 (license license:expat))))
13023
13024 (define-public cl-custom-hash-table
13025 (sbcl-package->cl-source-package sbcl-custom-hash-table))
13026
13027 (define-public ecl-custom-hash-table
13028 (sbcl-package->ecl-package sbcl-custom-hash-table))
13029
13030 (define-public sbcl-collectors
13031 (let ((commit "13acef25d8422d1d82e067b1861e513587c166ee"))
13032 (package
13033 (name "sbcl-collectors")
13034 (version (git-version "0.1" "1" commit))
13035 (source
13036 (origin
13037 (method git-fetch)
13038 (uri (git-reference
13039 (url "https://github.com/AccelerationNet/collectors")
13040 (commit commit)))
13041 (file-name (git-file-name name version))
13042 (sha256
13043 (base32 "1si68n1j6rpns8jw6ksqjpb937pdl30v7xza8rld7j5vh0jhy2yi"))))
13044 (build-system asdf-build-system/sbcl)
13045 (inputs
13046 `(("alexandria" ,sbcl-alexandria)
13047 ("closer-mop" ,sbcl-closer-mop)
13048 ("symbol-munger" ,sbcl-symbol-munger)))
13049 (native-inputs
13050 `(("lisp-unit2" ,sbcl-lisp-unit2)))
13051 (home-page "https://github.com/AccelerationNet/collectors/")
13052 (synopsis "Common lisp library providing collector macros")
13053 (description "A small collection of common lisp macros to make
13054 collecting values easier.")
13055 (license license:bsd-3))))
13056
13057 (define-public cl-collectors
13058 (sbcl-package->cl-source-package sbcl-collectors))
13059
13060 (define-public ecl-collectors
13061 (sbcl-package->ecl-package sbcl-collectors))
13062
13063 (define-public sbcl-cl-environments
13064 (let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years.
13065 (package
13066 (name "sbcl-cl-environments")
13067 (version (git-version "0.2.3" "1" commit))
13068 (source
13069 (origin
13070 (method git-fetch)
13071 (uri (git-reference
13072 (url "https://github.com/alex-gutev/cl-environments")
13073 (commit commit)))
13074 (file-name (git-file-name name version))
13075 (sha256
13076 (base32
13077 "18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
13078 (build-system asdf-build-system/sbcl)
13079 (inputs
13080 `(("alexandria" ,sbcl-alexandria)
13081 ("anaphora" ,sbcl-anaphora)
13082 ("collectors" ,sbcl-collectors)
13083 ("optima" ,sbcl-optima)))
13084 (native-inputs
13085 `(("prove" ,sbcl-prove)))
13086 (home-page "https://github.com/alex-gutev/cl-environments")
13087 (synopsis "Implements the Common Lisp standard environment access API")
13088 (description "This library provides a uniform API, as specified in Common
13089 Lisp the Language 2, for accessing information about variable and function
13090 bindings from implementation-defined lexical environment objects. All major
13091 Common Lisp implementations are supported, even those which don't support the
13092 CLTL2 environment access API.")
13093 (license license:expat))))
13094
13095 (define-public cl-environments
13096 (sbcl-package->cl-source-package sbcl-cl-environments))
13097
13098 (define-public ecl-environments
13099 (sbcl-package->ecl-package sbcl-cl-environments))
13100
13101 (define-public sbcl-static-dispatch
13102 (let ((commit "6243afcd152854c52ba33daef7394367b657d9c6")
13103 (revision "1"))
13104 (package
13105 (name "sbcl-static-dispatch")
13106 (version (git-version "0.3" revision commit))
13107 (source
13108 (origin
13109 (method git-fetch)
13110 (uri (git-reference
13111 (url "https://github.com/alex-gutev/static-dispatch")
13112 (commit commit)))
13113 (file-name (git-file-name "static-dispatch" version))
13114 (sha256
13115 (base32 "1lli9ar1xbnhkgb5d01rlw4pvfylg2arrw68np2c07fpkkafimg7"))))
13116 (build-system asdf-build-system/sbcl)
13117 (native-inputs
13118 `(("prove" ,sbcl-prove)))
13119 (inputs
13120 `(("agutil" ,sbcl-agutil)
13121 ("alexandria" ,sbcl-alexandria)
13122 ("anaphora" ,sbcl-anaphora)
13123 ("arrows" ,sbcl-arrows)
13124 ("cl-environments" ,sbcl-cl-environments)
13125 ("closer-mop" ,sbcl-closer-mop)
13126 ("iterate" ,sbcl-iterate)
13127 ("trivia" ,sbcl-trivia)))
13128 (home-page "https://github.com/alex-gutev/static-dispatch")
13129 (synopsis "Static generic function dispatch for Common Lisp")
13130 (description "Static dispatch is a Common Lisp library, inspired by
13131 @code{inlined-generic-function}, which allows standard Common Lisp generic
13132 function dispatch to be performed statically (at compile time) rather than
13133 dynamically (runtime). This is similar to what is known as \"overloading\" in
13134 languages such as C++ and Java.
13135
13136 The purpose of static dispatch is to provide an optimization in cases where
13137 the usual dynamic dispatch is too slow, and the dynamic features of generic
13138 functions, such as adding/removing methods at runtime are not required. An
13139 example of such a case is a generic equality comparison function. Currently
13140 generic functions are considered far too slow to implement generic arithmetic
13141 and comparison operations when used heavily in numeric code.")
13142 (license license:expat))))
13143
13144 (define-public cl-static-dispatch
13145 (sbcl-package->cl-source-package sbcl-static-dispatch))
13146
13147 (define-public ecl-static-dispatch
13148 (sbcl-package->ecl-package sbcl-static-dispatch))
13149
13150 (define-public sbcl-generic-cl
13151 ;; Latest commit includes a necessary fix for our Guix build.
13152 (let ((commit "8e5a81487ee3c13fe5ffdc8bdda161d476639535"))
13153 (package
13154 (name "sbcl-generic-cl")
13155 (version (git-version "0.7.1" "1" commit))
13156 (source
13157 (origin
13158 (method git-fetch)
13159 (uri (git-reference
13160 (url "https://github.com/alex-gutev/generic-cl")
13161 (commit commit)))
13162 (file-name (git-file-name name version))
13163 (sha256
13164 (base32
13165 "11w0g79s4wmc78vmfng437rmsgnp5qn246zcyr540fp5nw0ad6ix"))))
13166 (build-system asdf-build-system/sbcl)
13167 (inputs
13168 `(("agutil" ,sbcl-agutil)
13169 ("alexandria" ,sbcl-alexandria)
13170 ("anaphora" ,sbcl-anaphora)
13171 ("arrows" ,sbcl-arrows)
13172 ("cl-custom-hash-table" ,sbcl-custom-hash-table)
13173 ("static-dispatch" ,sbcl-static-dispatch)
13174 ("trivia" ,sbcl-trivia)))
13175 (native-inputs
13176 `(("prove" ,sbcl-prove)))
13177 (arguments
13178 ;; Tests fail because SBCL head size is not high enough.
13179 ;; https://github.com/alex-gutev/generic-cl/issues/6
13180 `(#:tests? #f))
13181 (home-page "https://alex-gutev.github.io/generic-cl/")
13182 (synopsis "Generic function interface to standard Common Lisp functions")
13183 (description "@code{generic-cl} provides a generic function wrapper over
13184 various functions in the Common Lisp standard, such as equality predicates and
13185 sequence operations. The goal of this wrapper is to provide a standard
13186 interface to common operations, such as testing for the equality of two
13187 objects, which is extensible to user-defined types.")
13188 (license license:expat))))
13189
13190 (define-public cl-generic-cl
13191 (sbcl-package->cl-source-package sbcl-generic-cl))
13192
13193 (define-public ecl-generic-cl
13194 (sbcl-package->ecl-package sbcl-generic-cl))
13195
13196 (define-public sbcl-defpackage-plus
13197 (let ((revision "0")
13198 (commit "5492e27e0bdb7b75fa5177ea4388519dc7a75f11"))
13199 (package
13200 (name "sbcl-defpackage-plus")
13201 (version (git-version "1.0" revision commit))
13202 (source
13203 (origin
13204 (method git-fetch)
13205 (uri (git-reference
13206 (url "https://github.com/rpav/defpackage-plus")
13207 (commit commit)))
13208 (file-name (git-file-name name version))
13209 (sha256
13210 (base32 "0lzljvf343xb6mlh6lni2i27hpm5qd376522mk6hr2pa20vd6rdq"))))
13211 (build-system asdf-build-system/sbcl)
13212 (inputs
13213 `(("alexandria" ,sbcl-alexandria)))
13214 (home-page "https://github.com/rpav/defpackage-plus")
13215 (synopsis "Extensible @code{DEFPACKAGE} variant with version support")
13216 (description
13217 "@code{DEFPACKAGE-PLUS} is an extensible @code{DEFPACKAGE} variant with
13218 predictable cross-platform behavior and some utilities useful for versioning.")
13219 (license license:bsd-2))))
13220
13221 (define-public cl-defpackage-plus
13222 (sbcl-package->cl-source-package sbcl-defpackage-plus))
13223
13224 (define-public ecl-defpackage-plus
13225 (sbcl-package->ecl-package sbcl-defpackage-plus))
13226
13227 (define-public sbcl-deploy
13228 (let ((commit "9b20e64fe924b9e31832304d87a3a72c383dc6d8")
13229 (revision "2"))
13230 (package
13231 (name "sbcl-deploy")
13232 (version (git-version "1.0.0" revision commit))
13233 (source
13234 (origin
13235 (method git-fetch)
13236 (uri (git-reference
13237 (url "https://github.com/Shinmera/deploy")
13238 (commit commit)))
13239 (file-name (git-file-name "deploy" version))
13240 (sha256
13241 (base32 "07pfkibaridihg8lbq2czwa4iqifqk24n6rx7bfnv7i49p1ppja1"))))
13242 (build-system asdf-build-system/sbcl)
13243 (arguments
13244 `(#:test-asd-file "deploy-test.asd"
13245 #:asd-files '("deploy.asd"
13246 "deploy-test.asd")))
13247 (native-inputs
13248 `(("cl-mpg123" ,sbcl-cl-mpg123)
13249 ("cl-out123" ,sbcl-cl-out123)))
13250 (inputs
13251 `(("cffi" ,sbcl-cffi)
13252 ("documentation-utils" ,sbcl-documentation-utils)
13253 ("trivial-features" ,sbcl-trivial-features)))
13254 (home-page "https://shinmera.github.io/deploy/")
13255 (synopsis "Deployment tools for standalone Common Lisp application")
13256 (description
13257 "This is a system to help you easily and quickly deploy standalone
13258 common lisp applications as binaries. Specifically it is geared towards
13259 applications with foreign library dependencies that run some kind of GUI.")
13260 (license license:artistic2.0))))
13261
13262 (define-public cl-deploy
13263 (sbcl-package->cl-source-package sbcl-deploy))
13264
13265 (define-public ecl-deploy
13266 (sbcl-package->ecl-package sbcl-deploy))
13267
13268 (define-public sbcl-deeds
13269 ;; taged branch is outdated
13270 (let ((revision "1")
13271 (commit "f5df54eac79b58a34030e0eb8acf3952c788410d"))
13272 (package
13273 (name "sbcl-deeds")
13274 (version (git-version "1.1.1" revision commit))
13275 (source
13276 (origin
13277 (method git-fetch)
13278 (uri (git-reference
13279 (url "https://github.com/Shinmera/deeds")
13280 (commit commit)))
13281 (file-name (git-file-name name version))
13282 (sha256
13283 (base32 "062cnb2dwli6pw3zvv46jfxyxdzcbzwsck5pa6nw03qf1j1hyg3k"))))
13284 (build-system asdf-build-system/sbcl)
13285 (inputs
13286 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13287 ("closer-mop" ,sbcl-closer-mop)
13288 ("form-fiddle" ,sbcl-form-fiddle)
13289 ("lambda-fiddle" ,sbcl-lambda-fiddle)))
13290 (home-page "https://github.com/Shinmera/deeds")
13291 (synopsis "Extensible Event Delivery System")
13292 (description
13293 "@code{deeds} allows for efficient event delivery to multiple handlers
13294 with a complex event filtering system.")
13295 (license license:zlib))))
13296
13297 (define-public cl-deeds
13298 (sbcl-package->cl-source-package sbcl-deeds))
13299
13300 (define-public ecl-deeds
13301 (sbcl-package->ecl-package sbcl-deeds))
13302
13303 (define-public sbcl-make-hash
13304 ;; no tagged branch
13305 (let ((revision "1")
13306 (commit "ae0909cd8e697520a1085fac6f54ac2b448ebd21"))
13307 (package
13308 (name "sbcl-make-hash")
13309 (version (git-version "1.0.2" revision commit))
13310 (source
13311 (origin
13312 (method git-fetch)
13313 (uri (git-reference
13314 (url "https://github.com/genovese/make-hash")
13315 (commit commit)))
13316 (file-name (git-file-name name version))
13317 (sha256
13318 (base32 "1qa4mcmb3pv44py0j129dd8hjx09c2akpnds53b69151mgwv5qz8"))))
13319 (build-system asdf-build-system/sbcl)
13320 (home-page "https://github.com/genovese/make-hash")
13321 (synopsis "Common Lisp package for flexible hash table creation")
13322 (description
13323 "This is a Common Lisp package for hash table creation with flexible,
13324 extensible initializers.")
13325 (license license:bsd-3))))
13326
13327 (define-public cl-make-hash
13328 (sbcl-package->cl-source-package sbcl-make-hash))
13329
13330 (define-public ecl-make-hash
13331 (sbcl-package->ecl-package sbcl-make-hash))
13332
13333 (define-public sbcl-claw-support
13334 (package
13335 (name "sbcl-claw-support")
13336 (version "1.0.0")
13337 (source
13338 (origin
13339 (method git-fetch)
13340 (uri (git-reference
13341 (url "https://github.com/borodust/claw-support")
13342 (commit "9a15c8bed04585f45e6a461bcda1b475144dbd0b")))
13343 (file-name (git-file-name name version))
13344 (sha256
13345 (base32 "1my2ka7h72ipx5n3b465g6kjkasrhsvhqlijwcg6dhlzs5yygl23"))))
13346 (build-system asdf-build-system/sbcl)
13347 (home-page "https://github.com/borodust/claw-support")
13348 (synopsis "Support routines for claw")
13349 (description
13350 "This package provides support routines for the @code{claw} Common Lisp
13351 package.")
13352 (license license:expat)))
13353
13354 (define-public cl-claw-support
13355 (sbcl-package->cl-source-package sbcl-claw-support))
13356
13357 (define-public ecl-claw-support
13358 (sbcl-package->ecl-package sbcl-claw-support))
13359
13360 (define-public sbcl-claw
13361 (let ((revision "0")
13362 (commit "3cd4a96fca95eb9e8d5d069426694669f81b2250"))
13363 (package
13364 (name "sbcl-claw")
13365 (version (git-version "1.0" revision commit))
13366 (source
13367 (origin
13368 (method git-fetch)
13369 (uri (git-reference
13370 (url "https://github.com/borodust/claw")
13371 (commit commit)))
13372 (file-name (git-file-name "claw" version))
13373 (sha256
13374 (base32 "146yv0hc4hmk72562ssj2d41143pp84dcbd1h7f4nx1c7hf2bb0d"))))
13375 (build-system asdf-build-system/sbcl)
13376 (inputs
13377 `(("alexandria" ,sbcl-alexandria)
13378 ("cffi" ,sbcl-cffi)
13379 ("cl-json" ,sbcl-cl-json)
13380 ("cl-ppcre" ,sbcl-cl-ppcre)
13381 ("claw-support" ,sbcl-claw-support)
13382 ("local-time" ,sbcl-local-time)
13383 ("trivial-features" ,sbcl-trivial-features)))
13384 (home-page "https://github.com/borodust/claw")
13385 (synopsis "Autowrapper for Common Lisp")
13386 (description
13387 "This is a Common Lisp autowrapping facility for quickly creating clean
13388 and lean bindings to C libraries.")
13389 (license license:bsd-2))))
13390
13391 (define-public cl-claw
13392 (sbcl-package->cl-source-package sbcl-claw))
13393
13394 (define-public ecl-claw
13395 (sbcl-package->ecl-package sbcl-claw))
13396
13397 (define-public sbcl-claw-utils
13398 (let ((revision "0")
13399 (commit "efe25016501973dc369f067a64c7d225802bc56f"))
13400 (package
13401 (name "sbcl-claw-utils")
13402 ;; version is not specified
13403 (version (git-version "0.0.0" revision commit))
13404 (source
13405 (origin
13406 (method git-fetch)
13407 (uri (git-reference
13408 (url "https://github.com/borodust/claw-utils")
13409 (commit commit)))
13410 (file-name (git-file-name "claw-utils" version))
13411 (sha256
13412 (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
13413 (build-system asdf-build-system/sbcl)
13414 (inputs
13415 `(("alexandria" ,sbcl-alexandria)
13416 ("cffi" ,sbcl-cffi)
13417 ("claw" ,sbcl-claw)))
13418 (home-page "https://github.com/borodust/claw-utils")
13419 (synopsis "Utilities for easier autowrapping")
13420 (description
13421 "This Common Lisp library contains various handy utilities to help
13422 autowrapping with @code{claw}.")
13423 (license license:expat))))
13424
13425 (define-public cl-claw-utils
13426 (sbcl-package->cl-source-package sbcl-claw-utils))
13427
13428 (define-public ecl-claw-utils
13429 (sbcl-package->ecl-package sbcl-claw-utils))
13430
13431 (define-public sbcl-array-operations
13432 (let ((commit "75cbc3b1adb2e3ce2109489753d0f290b071e81b")
13433 (revision "0"))
13434 (package
13435 (name "sbcl-array-operations")
13436 (version (git-version "0.0.0" revision commit))
13437 (source
13438 (origin
13439 (method git-fetch)
13440 (uri (git-reference
13441 (url "https://github.com/bendudson/array-operations")
13442 (commit commit)))
13443 (file-name (git-file-name "array-operations" version))
13444 (sha256
13445 (base32 "0ip49hhq32w80qsc7jmspyda5r2rsszvw0mk2r3341cld78sz9ya"))))
13446 (build-system asdf-build-system/sbcl)
13447 (native-inputs
13448 `(("alexandria" ,sbcl-alexandria)
13449 ("clunit2" ,sbcl-clunit2)))
13450 (inputs
13451 `(("let-plus" ,sbcl-let-plus)))
13452 (synopsis "Simple array operations library for Common Lisp")
13453 (description
13454 "This library is a collection of functions and macros for manipulating
13455 Common Lisp arrays and performing numerical calculations with them.")
13456 (home-page "https://github.com/bendudson/array-operations")
13457 (license license:expat))))
13458
13459 (define-public cl-array-operations
13460 (sbcl-package->cl-source-package sbcl-array-operations))
13461
13462 (define-public ecl-array-operations
13463 (sbcl-package->ecl-package sbcl-array-operations))
13464
13465 (define-public sbcl-clml
13466 (let ((commit "95505b54c8c7b4b27f500c3be97fa5732f4b51a8")
13467 (revision "0"))
13468 (package
13469 (name "sbcl-clml")
13470 (version (git-version "0.0.0" revision commit))
13471 (source
13472 (origin
13473 (method git-fetch)
13474 (uri (git-reference
13475 (url "https://github.com/mmaul/clml")
13476 (commit commit)))
13477 (file-name (git-file-name "clml" version))
13478 (sha256
13479 (base32 "006pii59nmpc61n7p7h8ha5vjg6x0dya327i58z0rnvxs249h345"))
13480 ;; TODO: Remove this when the patch has been merged upstream.
13481 (patches (search-patches "sbcl-clml-fix-types.patch"))))
13482 (build-system asdf-build-system/sbcl)
13483 (inputs
13484 `(("alexandia" ,sbcl-alexandria)
13485 ("array-operations" ,sbcl-array-operations)
13486 ("cl-fad" ,sbcl-cl-fad)
13487 ("cl-ppcre" ,sbcl-cl-ppcre)
13488 ("drakma" ,sbcl-drakma)
13489 ("introspect-environment" ,sbcl-introspect-environment)
13490 ("iterate" ,sbcl-iterate)
13491 ("lparallel" ,sbcl-lparallel)
13492 ("parse-number" ,sbcl-parse-number)
13493 ("split-sequence" ,sbcl-split-sequence)
13494 ("trivial-garbage" ,sbcl-trivial-garbage)))
13495 (synopsis "Common Lisp machine learning library")
13496 (description
13497 "CLML (Common Lisp Machine Learning) is a high performance and large
13498 scale statistical machine learning package")
13499 (home-page "https://mmaul.github.io/clml/")
13500 (license license:llgpl))))
13501
13502 (define-public cl-clml
13503 (sbcl-package->cl-source-package sbcl-clml))
13504
13505 (define-public sbcl-utm-ups
13506 (let ((commit "ffcb7b6d5a56fb7d4b2b95b83bbd28ffe6e6961f")
13507 (revision "0"))
13508 (package
13509 (name "sbcl-utm-ups")
13510 (version (git-version "1.1" revision commit))
13511 (source
13512 (origin
13513 (method git-fetch)
13514 (uri (git-reference
13515 (url "https://github.com/glv2/utm-ups")
13516 (commit commit)))
13517 (file-name (git-file-name "utm-ups" version))
13518 (sha256
13519 (base32 "1rvyh0srgd81kvbzmq4ysd9y6c0qdwh23naqxc9asw1vh7fq08x1"))))
13520 (build-system asdf-build-system/sbcl)
13521 (native-inputs
13522 `(("fiveam" ,sbcl-fiveam)))
13523 (synopsis
13524 "Convert coordinates between latitude/longitude and UTM or UPS")
13525 (description
13526 "This a Common Lisp library to convert geographic coordinates between
13527 latitude/longitude and UTM (Universal Transverse Mercator) or UPS (Universal
13528 Polar Stereographic).")
13529 (home-page "https://github.com/glv2/utm-ups")
13530 (license license:gpl3+))))
13531
13532 (define-public cl-utm-ups
13533 (sbcl-package->cl-source-package sbcl-utm-ups))
13534
13535 (define-public ecl-utm-ups
13536 (sbcl-package->ecl-package sbcl-utm-ups))
13537
13538 (define-public sbcl-mgrs
13539 (let ((commit "00455460407b7e5509d1be3da09bf6152956761f")
13540 (revision "0"))
13541 (package
13542 (name "sbcl-mgrs")
13543 (version (git-version "1.0" revision commit))
13544 (source
13545 (origin
13546 (method git-fetch)
13547 (uri (git-reference
13548 (url "https://github.com/glv2/mgrs")
13549 (commit commit)))
13550 (file-name (git-file-name "mgrs" version))
13551 (sha256
13552 (base32 "0ckvn4hg3wwivzavhfashb6fap4a1q10l8krhbng8bdb54ac10sz"))))
13553 (build-system asdf-build-system/sbcl)
13554 (native-inputs
13555 `(("fiveam" ,sbcl-fiveam)))
13556 (inputs
13557 `(("utm-ups" ,sbcl-utm-ups)))
13558 (synopsis
13559 "Convert coordinates between latitude/longitude and MGRS")
13560 (description
13561 "This a Common Lisp library to convert geographic coordinates between
13562 latitude/longitude and MGRS.")
13563 (home-page "https://github.com/glv2/mgrs")
13564 (license license:gpl3+))))
13565
13566 (define-public cl-mgrs
13567 (sbcl-package->cl-source-package sbcl-mgrs))
13568
13569 (define-public ecl-mgrs
13570 (sbcl-package->ecl-package sbcl-mgrs))
13571
13572 (define-public sbcl-maidenhead
13573 (let ((commit "b756d235c27b5d6798867aa240318af1a8f35d6d")
13574 (revision "0"))
13575 (package
13576 (name "sbcl-maidenhead")
13577 (version (git-version "1.0" revision commit))
13578 (source
13579 (origin
13580 (method git-fetch)
13581 (uri (git-reference
13582 (url "https://github.com/glv2/maidenhead")
13583 (commit commit)))
13584 (file-name (git-file-name "maidenhead" version))
13585 (sha256
13586 (base32 "02p990zprhjvifmsfk8yh3frvz6xyw26ikzxvzglqdixbal36nr3"))))
13587 (build-system asdf-build-system/sbcl)
13588 (native-inputs
13589 `(("fiveam" ,sbcl-fiveam)))
13590 (synopsis
13591 "Convert coordinates between latitude/longitude and Maidenhead")
13592 (description
13593 "This a Common Lisp library to convert geographic coordinates between
13594 latitude/longitude and Maidenhead locator system.")
13595 (home-page "https://github.com/glv2/maidenhead")
13596 (license license:gpl3+))))
13597
13598 (define-public cl-maidenhead
13599 (sbcl-package->cl-source-package sbcl-maidenhead))
13600
13601 (define-public ecl-maidenhead
13602 (sbcl-package->ecl-package sbcl-maidenhead))
13603
13604 (define-public sbcl-olc
13605 (let ((commit "517e27fa57d9a119b00a29c4b6b31e553deff309")
13606 (revision "0"))
13607 (package
13608 (name "sbcl-olc")
13609 (version (git-version "1.0" revision commit))
13610 (source
13611 (origin
13612 (method git-fetch)
13613 (uri (git-reference
13614 (url "https://github.com/glv2/olc")
13615 (commit commit)))
13616 (file-name (git-file-name "olc" version))
13617 (sha256
13618 (base32 "1lnfhp6z6kc8l605zp4siyjiw74y1h4bdq3jfizi084v505wxhgr"))))
13619 (build-system asdf-build-system/sbcl)
13620 (native-inputs
13621 `(("fiveam" ,sbcl-fiveam)))
13622 (synopsis
13623 "Convert coordinates between latitude/longitude and Open Location Code")
13624 (description
13625 "This a Common Lisp library to convert geographic coordinates between
13626 latitude/longitude and Open Location Code.")
13627 (home-page "https://github.com/glv2/olc")
13628 (license license:gpl3+))))
13629
13630 (define-public cl-olc
13631 (sbcl-package->cl-source-package sbcl-olc))
13632
13633 (define-public ecl-olc
13634 (sbcl-package->ecl-package sbcl-olc))
13635
13636 (define-public sbcl-regex
13637 (let ((commit "fbc9a9f313b9edc1788f33d4b23a29151635ae22"))
13638 (package
13639 (name "sbcl-regex")
13640 (version (git-version "1" "1" commit))
13641 (source
13642 (origin
13643 (method git-fetch)
13644 (uri (git-reference
13645 (url "https://github.com/michaelw/regex/")
13646 (commit commit)))
13647 (file-name (git-file-name name version))
13648 (sha256
13649 (base32 "0wq5wlafrxv13wg28hg5b10sc48b88swsvznpy2zg7x37m4nmm6a"))))
13650 (build-system asdf-build-system/sbcl)
13651 (home-page "https://github.com/michaelw/regex/")
13652 (synopsis "Regular expression engine for Common Lisp")
13653 (description
13654 "This Common Lisp package provides a regular expression engine.")
13655 (license license:bsd-2))))
13656
13657 (define-public cl-regex
13658 (sbcl-package->cl-source-package sbcl-regex))
13659
13660 (define-public ecl-regex
13661 (sbcl-package->ecl-package sbcl-regex))
13662
13663 (define-public sbcl-clawk
13664 (let ((commit "3a91634df686417114044a98c063cbe76bfac7b6"))
13665 (package
13666 (name "sbcl-clawk")
13667 (version (git-version "4" "1" commit))
13668 (source
13669 (origin
13670 (method git-fetch)
13671 (uri (git-reference
13672 (url "https://github.com/sharplispers/clawk")
13673 (commit commit)))
13674 (file-name (git-file-name name version))
13675 (sha256
13676 (base32 "1ph3xjqilvinvgr9q3w47zxqyz1sqnq030nlx7kgkkv8j3bnqk7a"))))
13677 (build-system asdf-build-system/sbcl)
13678 (inputs
13679 `(("sbcl-regex" ,sbcl-regex)))
13680 (home-page "https://github.com/sharplispers/clawk")
13681 (synopsis "Common Lisp AWK")
13682 (description
13683 "CLAWK is an AWK implementation embedded into Common Lisp.")
13684 (license license:bsd-2))))
13685
13686 (define-public cl-clawk
13687 (sbcl-package->cl-source-package sbcl-clawk))
13688
13689 (define-public ecl-clawk
13690 (sbcl-package->ecl-package sbcl-clawk))
13691
13692 (define-public sbcl-check-it
13693 (let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
13694 (package
13695 (name "sbcl-check-it")
13696 (version (git-version "0.1.0" "1" commit))
13697 (source
13698 (origin
13699 (method git-fetch)
13700 (uri (git-reference
13701 (url "https://github.com/DalekBaldwin/check-it/")
13702 (commit commit)))
13703 (file-name (git-file-name name version))
13704 (sha256
13705 (base32 "1kbjwpniffdpv003igmlz5r0vy65m7wpfnhg54fhwirp1227hgg7"))))
13706 (build-system asdf-build-system/sbcl)
13707 (inputs
13708 `(("alexandria" ,sbcl-alexandria)
13709 ("closer-mop" ,sbcl-closer-mop)
13710 ("optima" ,sbcl-optima)))
13711 (native-inputs
13712 `(("stefil" ,sbcl-stefil)))
13713 (home-page "https://github.com/arclanguage/Clamp")
13714 (synopsis "Randomized specification-based testing for Common Lisp")
13715 (description
13716 "This is a randomized property-based testing library for Common Lisp.
13717 Rather than being a full-fledged general test framework in its own right, it's
13718 designed to embed randomized tests in whatever framework you like.")
13719 (license license:llgpl))))
13720
13721 (define-public cl-check-it
13722 (sbcl-package->cl-source-package sbcl-check-it))
13723
13724 (define-public ecl-check-it
13725 (sbcl-package->ecl-package sbcl-check-it))
13726
13727 (define-public sbcl-clamp
13728 (let ((commit "02b8f3953e5753cc61a719807c82f3795cd28fe1"))
13729 (package
13730 (name "sbcl-clamp")
13731 (version (git-version "0.3" "1" commit))
13732 (source
13733 (origin
13734 (method git-fetch)
13735 (uri (git-reference
13736 (url "https://github.com/arclanguage/Clamp")
13737 (commit commit)))
13738 (file-name (git-file-name name version))
13739 (sha256
13740 (base32 "0fdr9nqfmmpxm6hvjdxi1jkclya9xlnrw1yc3cn1m4ww3f50p31m"))))
13741 (build-system asdf-build-system/sbcl)
13742 (inputs
13743 `(("iterate" ,sbcl-iterate)
13744 ("cl-syntax" ,sbcl-cl-syntax)))
13745 (native-inputs
13746 `(("cl-unit" ,sbcl-clunit)
13747 ("check-it" ,sbcl-check-it)))
13748 (arguments
13749 `(#:phases
13750 (modify-phases %standard-phases
13751 (add-after 'unpack 'fix-build
13752 (lambda _
13753 (substitute* "clamp.asd"
13754 (("\\(:file \"read\" :depends-on \\(\"aliases\"\\)\\)")
13755 "(:file \"read\" :depends-on (\"aliases\" \"base\"))"))
13756 #t)))))
13757 (home-page "https://github.com/arclanguage/Clamp")
13758 (synopsis "Common Lisp with Arc macros and procedures")
13759 (description
13760 "Clamp is an attempt to bring the powerful, but verbose, language of
13761 Common Lisp up to the terseness of Arc.
13762
13763 There are two parts to Clamp. There is the core of Clamp, which implements
13764 the utilities of Arc that are easily converted from Arc to Common Lisp. The
13765 other part is the \"experimental\" part. It contains features of Arc that are
13766 not so easy to copy (ssyntax, argument destructuring, etc.).")
13767 (license license:artistic2.0))))
13768
13769 (define-public cl-clamp
13770 (sbcl-package->cl-source-package sbcl-clamp))
13771
13772 (define-public ecl-clamp
13773 (sbcl-package->ecl-package sbcl-clamp))
13774
13775 (define-public sbcl-trivial-shell
13776 (let ((commit "e02ec191b34b52deca5d1c4ee99d4fa13b8772e0"))
13777 (package
13778 (name "sbcl-trivial-shell")
13779 (version (git-version "0.2.0" "1" commit))
13780 (source
13781 (origin
13782 (method git-fetch)
13783 (uri (git-reference
13784 (url "https://github.com/gwkkwg/trivial-shell")
13785 (commit commit)))
13786 (file-name (git-file-name name version))
13787 (sha256
13788 (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85"))))
13789 (build-system asdf-build-system/sbcl)
13790 (native-inputs
13791 `(("lift" ,sbcl-lift)))
13792 (home-page "http://common-lisp.net/project/trivial-shell/")
13793 (synopsis "Common Lisp access to the shell")
13794 (description
13795 "A simple Common-Lisp interface to the underlying operating system.
13796 It's independent of the implementation and operating system.")
13797 (license license:expat))))
13798
13799 (define-public cl-trivial-shell
13800 (sbcl-package->cl-source-package sbcl-trivial-shell))
13801
13802 (define-public ecl-trivial-shell
13803 (sbcl-package->ecl-package sbcl-trivial-shell))
13804
13805 (define-public sbcl-clesh
13806 (let ((commit "44e96e04a72e5bc006dc4eb02ce8962348dd4a11"))
13807 (package
13808 (name "sbcl-clesh")
13809 (version (git-version "0.0.0" "1" commit))
13810 (source
13811 (origin
13812 (method git-fetch)
13813 (uri (git-reference
13814 (url "https://github.com/Neronus/Clesh")
13815 (commit commit)))
13816 (file-name (git-file-name name version))
13817 (sha256
13818 (base32 "012ry02djnqyvvs61wbbqj3saz621w2l9gczrywdxhi5p4ycx318"))))
13819 (build-system asdf-build-system/sbcl)
13820 (inputs
13821 `(("trivial-shell" ,sbcl-trivial-shell)
13822 ("named-readtables" ,sbcl-named-readtables)))
13823 (home-page "https://github.com/Neronus/Clesh")
13824 (synopsis "Embed shell code in Common Lisp")
13825 (description
13826 "This is a very short and simple program, written in Common Lisp, that
13827 extends Common Lisp to embed shell code in a manner similar to Perl's
13828 backtick. It has been forked from SHELISP.")
13829 (license license:bsd-2))))
13830
13831 (define-public cl-clesh
13832 (sbcl-package->cl-source-package sbcl-clesh))
13833
13834 (define-public ecl-clesh
13835 (sbcl-package->ecl-package sbcl-clesh))
13836
13837 (define-public sbcl-trivial-channels
13838 (let ((commit "e2370118d8983ba69c0360a7695f8f2e2fd6a8a6")
13839 (revision "1"))
13840 (package
13841 (name "sbcl-trivial-channels")
13842 (version (git-version "1.0" revision commit))
13843 (source
13844 (origin
13845 (method git-fetch)
13846 (uri (git-reference
13847 (url "https://github.com/rpav/trivial-channels")
13848 (commit commit)))
13849 (file-name (git-file-name "trivial-channels" version))
13850 (sha256
13851 (base32 "04wnxcgk40x8p0gxnz9arv1a5wasdqrdxa8c4p5v7r2mycfps6jj"))))
13852 (build-system asdf-build-system/sbcl)
13853 (inputs
13854 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13855 ("trivial-timeout" ,sbcl-trivial-timeout)))
13856 (home-page "https://github.com/rpav/trivial-channels")
13857 (synopsis "Common Lisp simple thread-safe channels with timeout")
13858 (description
13859 "It's very basic implementation of channels and queue for Common Lisp.")
13860 (license license:bsd-2))))
13861
13862 (define-public ecl-trivial-channels
13863 (sbcl-package->ecl-package sbcl-trivial-channels))
13864
13865 (define-public cl-trivial-channels
13866 (sbcl-package->cl-source-package sbcl-trivial-channels))
13867
13868 (define-public sbcl-trivial-download
13869 (let ((commit "d2472061d86b1cf3d32f388daacd4e32a13af699"))
13870 (package
13871 (name "sbcl-trivial-download")
13872 (version (git-version "0.3" "1" commit))
13873 (source
13874 (origin
13875 (method git-fetch)
13876 (uri (git-reference
13877 (url "https://github.com/eudoxia0/trivial-download/")
13878 (commit commit)))
13879 (file-name (git-file-name name version))
13880 (sha256
13881 (base32 "06f46zr3gp3wlm2kgxna24qd2gpr1v89x9fynh1x5vrw6c6hqjcv"))))
13882 (build-system asdf-build-system/sbcl)
13883 (inputs
13884 `(("drakma" ,sbcl-drakma)))
13885 (home-page "https://github.com/eudoxia0/trivial-download/")
13886 (synopsis "Download files from Common Lisp")
13887 (description
13888 "@code{trivial-download} allows you to download files from the Internet
13889 from Common Lisp. It provides a progress bar.")
13890 (license license:bsd-2))))
13891
13892 (define-public cl-trivial-download
13893 (sbcl-package->cl-source-package sbcl-trivial-download))
13894
13895 (define-public ecl-trivial-download
13896 (sbcl-package->ecl-package sbcl-trivial-download))
13897
13898 (define-public sbcl-gtwiwtg
13899 (package
13900 (name "sbcl-gtwiwtg")
13901 (version "0.1.1")
13902 (source
13903 (origin
13904 (method git-fetch)
13905 (uri (git-reference
13906 (url "https://github.com/cbeo/gtwiwtg/")
13907 (commit version)))
13908 (file-name (git-file-name name version))
13909 (sha256
13910 (base32 "0lkraw0dwh4is4x5sp5rjrw6f93m0gr9849abrbi12s25ws7jbw4"))))
13911 (build-system asdf-build-system/sbcl)
13912 (native-inputs
13913 `(("osicat" ,sbcl-osicat)
13914 ("prove" ,sbcl-prove)))
13915 (home-page "https://github.com/cbeo/gtwiwtg/")
13916 (synopsis "Naive generators for Common Lisp")
13917 (description
13918 "The GTWIWTG library (Generators The Way I Want Them Generated --
13919 technically not generators, but iterators) is meant to be small, explorable,
13920 and understandable.")
13921 (license license:gpl3)))
13922
13923 (define-public cl-gtwiwtg
13924 (sbcl-package->cl-source-package sbcl-gtwiwtg))
13925
13926 (define-public ecl-gtwiwtg
13927 (sbcl-package->ecl-package sbcl-gtwiwtg))
13928
13929 (define-public sbcl-cl-progress-bar
13930 (let ((commit "9374170858663c8fe829e9fb5a29bd2cb48d95ae"))
13931 (package
13932 (name "sbcl-cl-progress-bar")
13933 (version (git-version "0.0.0" "1" commit))
13934 (source
13935 (origin
13936 (method git-fetch)
13937 (uri (git-reference
13938 (url "https://github.com/sirherrbatka/cl-progress-bar/")
13939 (commit commit)))
13940 (file-name (git-file-name name version))
13941 (sha256
13942 (base32 "1ldb4qhmx431n3lsq71ynwb9ybazbfqd55icjbhi06mj52ngndir"))))
13943 (build-system asdf-build-system/sbcl)
13944 (inputs
13945 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13946 ("documentation-utils-extensions" ,sbcl-documentation-utils-extensions)))
13947 (home-page "https://github.com/sirherrbatka/cl-progress-bar/")
13948 (synopsis "Progress bars in Common Lisp")
13949 (description
13950 "This library provides almost the same code as used inside Quicklisp
13951 for drawning progress bars")
13952 (license license:expat))))
13953
13954 (define-public cl-progress-bar
13955 (sbcl-package->cl-source-package sbcl-cl-progress-bar))
13956
13957 (define-public ecl-cl-progress-bar
13958 (sbcl-package->ecl-package sbcl-cl-progress-bar))
13959
13960 (define-public sbcl-repl-utilities
13961 (let ((commit "7e300df663177ea4581f4e7e9c601377881dd986"))
13962 (package
13963 (name "sbcl-repl-utilities")
13964 (version (git-version "0.0.0" "1" commit))
13965 (source
13966 (origin
13967 (method git-fetch)
13968 (uri (git-reference
13969 (url "https://github.com/m-n/repl-utilities/")
13970 (commit commit)))
13971 (file-name (git-file-name name version))
13972 (sha256
13973 (base32 "1hh56pq5nw3l4b83dzlyss69f06r038byj2cnjwvci4hfjhdfcc3"))))
13974 (build-system asdf-build-system/sbcl)
13975 (home-page "https://github.com/m-n/repl-utilities")
13976 (synopsis "Ease common tasks at the Common Lisp REPL")
13977 (description
13978 "@code{repl-utilities} is a set of utilities which ease life at the
13979 REPL. It includes three sorts of features: introspective procedures,
13980 miscellaneous utility functions, and, pulling them together, methods to
13981 conveniently keep these symbols and optionally additional symbols available in
13982 whichever package you switch to.")
13983 (license license:bsd-2))))
13984
13985 (define-public cl-repl-utilities
13986 (sbcl-package->cl-source-package sbcl-repl-utilities))
13987
13988 (define-public ecl-repl-utilities
13989 (sbcl-package->ecl-package sbcl-repl-utilities))
13990
13991 (define-public sbcl-supertrace
13992 (let ((commit "66d22c3ff131ecd1c8048dfced1d62ed6024ecb0"))
13993 (package
13994 (name "sbcl-supertrace")
13995 (version (git-version "0.1.0" "1" commit))
13996 (source
13997 (origin
13998 (method git-fetch)
13999 (uri (git-reference
14000 (url "https://github.com/fukamachi/supertrace")
14001 (commit commit)))
14002 (file-name (git-file-name name version))
14003 (sha256
14004 (base32 "0n369n6b7y1m49biccnnr7svymjdsk8sksrkqrn3mj21vgv7s7bg"))))
14005 (build-system asdf-build-system/sbcl)
14006 (native-inputs
14007 `(("cffi-grovel" ,sbcl-cffi)
14008 ("rove" ,sbcl-rove)
14009 ("cl-ppcre" ,sbcl-cl-ppcre)
14010 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
14011 (inputs
14012 `(("cffi" ,sbcl-cffi)))
14013 (home-page "https://github.com/fukamachi/supertrace")
14014 (synopsis "Improved Common Lisp tracing for debugging and profiling")
14015 (description
14016 "Supertrace provides a superior Common Lisp @code{trace} functionality
14017 for debugging and profiling real world applications.")
14018 (license license:bsd-2))))
14019
14020 (define-public cl-supertrace
14021 (sbcl-package->cl-source-package sbcl-supertrace))
14022
14023 (define-public ecl-supertrace
14024 (sbcl-package->ecl-package sbcl-supertrace))
14025
14026 (define-public sbcl-trivial-benchmark
14027 (let ((commit "42d76733dd2e873471c6f1e27d39113293f7dd5c"))
14028 (package
14029 (name "sbcl-trivial-benchmark")
14030 (version (git-version "2.0.0" "1" commit))
14031 (source
14032 (origin
14033 (method git-fetch)
14034 (uri (git-reference
14035 (url "https://github.com/Shinmera/trivial-benchmark/")
14036 (commit commit)))
14037 (file-name (git-file-name name version))
14038 (sha256
14039 (base32 "0fbzqbpm2ixz85555krl36kbbbjyn699vdj6k383khi3g9y629fa"))))
14040 (build-system asdf-build-system/sbcl)
14041 (inputs
14042 `(("alexandria" ,sbcl-alexandria)))
14043 (home-page "http://shinmera.github.io/trivial-benchmark/")
14044 (synopsis "Easy to use benchmarking system for Common Lisp")
14045 (description
14046 "Trivial-Benchmark runs a block of code many times and outputs some
14047 statistical data for it. On SBCL this includes the data from @code{time}, for
14048 all other implementations just the @code{real-time} and @code{run-time} data.
14049 However, you can extend the system by adding your own @code{metrics} to it, or
14050 even by adding additional statistical @code{compute}ations. ")
14051 (license license:zlib))))
14052
14053 (define-public cl-trivial-benchmark
14054 (sbcl-package->cl-source-package sbcl-trivial-benchmark))
14055
14056 (define-public ecl-trivial-benchmark
14057 (sbcl-package->ecl-package sbcl-trivial-benchmark))
14058
14059 (define-public sbcl-glyphs
14060 (let ((commit "1ff5714e8c1dca327bc604dfe3e3d1f4b7755373"))
14061 (package
14062 (name "sbcl-glyphs")
14063 (version (git-version "0.0.0" "1" commit))
14064 (source
14065 (origin
14066 (method git-fetch)
14067 (uri (git-reference
14068 (url "https://github.com/ahungry/glyphs/")
14069 (commit commit)))
14070 (file-name (git-file-name name version))
14071 (sha256
14072 (base32 "17kai1anbkk5dj5sbrsin2fc019cmcbglb900db60v38myj0y0wf"))))
14073 (build-system asdf-build-system/sbcl)
14074 (inputs
14075 `(("cl-ppcre" ,sbcl-cl-ppcre)
14076 ("parenscript" ,sbcl-parenscript)
14077 ("named-readtables" ,sbcl-named-readtables)))
14078 (home-page "https://github.com/ahungry/glyphs/")
14079 (synopsis "Reduce Common Lisp verbosity")
14080 (description
14081 "This library is a little experiment in reducing verbosity in Common
14082 Lisp, inspired by BODOL (@url{https://github.com/bodil/BODOL}).")
14083 (license license:gpl3))))
14084
14085 (define-public cl-glyphs
14086 (sbcl-package->cl-source-package sbcl-glyphs))
14087
14088 (define-public ecl-glyphs
14089 (sbcl-package->ecl-package sbcl-glyphs))
14090
14091 (define-public sbcl-zs3
14092 (package
14093 (name "sbcl-zs3")
14094 (version "1.3.3")
14095 (source
14096 (origin
14097 (method git-fetch)
14098 (uri
14099 (git-reference
14100 (url "https://github.com/xach/zs3")
14101 (commit (string-append "release-" version))))
14102 (file-name (git-file-name "zs3" version))
14103 (sha256
14104 (base32 "186v95wgsj2hkxdw2jl9x1w4fddjclp7arp0rrd9vf5ly8h8sbf3"))))
14105 (build-system asdf-build-system/sbcl)
14106 (inputs
14107 `(("drakma" ,sbcl-drakma)
14108 ("alexandria" ,sbcl-alexandria)
14109 ("cxml" ,sbcl-cxml)
14110 ("ironclad" ,sbcl-ironclad)
14111 ("puri" ,sbcl-puri)
14112 ("cl-base64" ,sbcl-cl-base64)))
14113 (synopsis "Work with Amazon S3 and Amazon CloudFront from Common Lisp")
14114 (description "This is ZS3, a library for working with Amazon's Simple Storage
14115 Service (S3) and CloudFront service from Common Lisp.")
14116 (home-page "https://github.com/xach/zs3")
14117 (license license:bsd-2)))
14118
14119 (define-public cl-zs3
14120 (sbcl-package->cl-source-package sbcl-zs3))
14121
14122 (define-public ecl-zs3
14123 (sbcl-package->ecl-package sbcl-zs3))
14124
14125 (define-public sbcl-simple-neural-network
14126 (package
14127 (name "sbcl-simple-neural-network")
14128 (version "3.1")
14129 (source
14130 (origin
14131 (method git-fetch)
14132 (uri (git-reference
14133 (url "https://github.com/glv2/simple-neural-network")
14134 (commit (string-append "v" version))))
14135 (file-name (git-file-name "simple-neural-network" version))
14136 (sha256
14137 (base32 "1jj1c90fr5clwka0jv32hv6xp1bkdlpa6x5jh19an13rhx8ll4zr"))))
14138 (build-system asdf-build-system/sbcl)
14139 (native-inputs
14140 `(("chipz" ,sbcl-chipz)
14141 ("fiveam" ,sbcl-fiveam)))
14142 (inputs
14143 `(("cl-store" ,sbcl-cl-store)
14144 ("lparallel" ,sbcl-lparallel)))
14145 (arguments
14146 `(#:phases
14147 (modify-phases %standard-phases
14148 (add-after 'check 'remove-test-data
14149 (lambda* (#:key outputs #:allow-other-keys)
14150 (let ((out (assoc-ref outputs "out")))
14151 (for-each delete-file (find-files out "\\.gz$"))))))))
14152 (synopsis "Simple neural network in Common Lisp")
14153 (description
14154 "@code{simple-neural-network} is a Common Lisp library for creating,
14155 training and using basic neural networks. The networks created by this
14156 library are feedforward neural networks trained using backpropagation.")
14157 (home-page "https://github.com/glv2/simple-neural-network")
14158 (license license:gpl3+)))
14159
14160 (define-public cl-simple-neural-network
14161 (sbcl-package->cl-source-package sbcl-simple-neural-network))
14162
14163 (define-public ecl-simple-neural-network
14164 (sbcl-package->ecl-package sbcl-simple-neural-network))
14165
14166 (define-public sbcl-zstd
14167 (let ((commit "d144582c581aaa52bac24d6686af27fa3e781e06")
14168 (revision "1"))
14169 (package
14170 (name "sbcl-zstd")
14171 (version (git-version "1.0" revision commit))
14172 (source
14173 (origin
14174 (method git-fetch)
14175 (uri (git-reference
14176 (url "https://github.com/glv2/cl-zstd")
14177 (commit commit)))
14178 (file-name (git-file-name "cl-zstd" version))
14179 (sha256
14180 (base32 "1774jy8hzbi6nih3sq6vchk66f7g8w86dwgpbvljyfzcnkcaz6ql"))))
14181 (build-system asdf-build-system/sbcl)
14182 (native-inputs
14183 `(("fiveam" ,sbcl-fiveam)))
14184 (inputs
14185 `(("cffi" ,sbcl-cffi)
14186 ("cl-octet-streams" ,sbcl-cl-octet-streams)
14187 ("zstd-lib" ,zstd "lib")))
14188 (arguments
14189 '(#:phases
14190 (modify-phases %standard-phases
14191 (add-after 'unpack 'fix-paths
14192 (lambda* (#:key inputs #:allow-other-keys)
14193 (substitute* "src/libzstd.lisp"
14194 (("libzstd\\.so")
14195 (string-append (assoc-ref inputs "zstd-lib")
14196 "/lib/libzstd.so")))
14197 #t)))))
14198 (synopsis "Common Lisp library for Zstandard (de)compression")
14199 (description
14200 "This Common Lisp library provides functions for Zstandard
14201 compression/decompression using bindings to the libzstd C library.")
14202 (home-page "https://github.com/glv2/cl-zstd")
14203 (license license:gpl3+))))
14204
14205 (define-public cl-zstd
14206 (sbcl-package->cl-source-package sbcl-zstd))
14207
14208 (define-public ecl-zstd
14209 (sbcl-package->ecl-package sbcl-zstd))
14210
14211 (define-public sbcl-agnostic-lizard
14212 (let ((commit "fe3a73719f05901c8819f8995a3ebae738257952")
14213 (revision "1"))
14214 (package
14215 (name "sbcl-agnostic-lizard")
14216 (version (git-version "0.0.0" revision commit))
14217 (source
14218 (origin
14219 (method git-fetch)
14220 (uri (git-reference
14221 (url "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
14222 (commit commit)))
14223 (file-name (git-file-name name version))
14224 (sha256
14225 (base32 "0ax78y8w4zlp5dcwyhz2nq7j3shi49qn31dkfg8lv2jlg7mkwh2d"))))
14226 (build-system asdf-build-system/sbcl)
14227 (synopsis "Almost correct portable code walker for Common Lisp")
14228 (description
14229 "Agnostic Lizard is a portable implementation of a code walker and in
14230 particular of the macroexpand-all function (and macro) that makes a best
14231 effort to be correct while not expecting much beyond what the Common Lisp
14232 standard requires.
14233
14234 It aims to be implementation-agnostic and to climb the syntax trees.")
14235 (home-page "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
14236 (license license:gpl3+))))
14237
14238 (define-public cl-agnostic-lizard
14239 (sbcl-package->cl-source-package sbcl-agnostic-lizard))
14240
14241 (define-public ecl-agnostic-lizard
14242 (sbcl-package->ecl-package sbcl-agnostic-lizard))
14243
14244 (define-public sbcl-dynamic-classes
14245 (package
14246 (name "sbcl-dynamic-classes")
14247 (version "1.0.2")
14248 (source
14249 (origin
14250 (method git-fetch)
14251 (uri (git-reference
14252 (url "https://github.com/gwkkwg/dynamic-classes")
14253 (commit (string-append "version-" version))))
14254 (file-name (git-file-name "dynamic-classes" version))
14255 (sha256
14256 (base32 "1z3ag6w4ff0v6715xa9zhvwjqnp4i6zrjfmxdz8m115sklbwgm6c"))))
14257 (build-system asdf-build-system/sbcl)
14258 (inputs
14259 `(("metatilities-base" ,sbcl-metatilities-base)))
14260 (arguments
14261 ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing
14262 ;; test suites. lift-standard.config contains referances to deprecated
14263 ;; functionality.
14264 `(#:tests? #f))
14265 (home-page "https://common-lisp.net/project/dynamic-classes/")
14266 (synopsis "Dynamic class definition for Common Lisp")
14267 (description "Dynamic-Classes helps to ease the prototyping process by
14268 bringing dynamism to class definition.")
14269 (license license:expat)))
14270
14271 (define-public ecl-dynamic-classes
14272 (sbcl-package->ecl-package sbcl-dynamic-classes))
14273
14274 (define-public cl-dynamic-classes
14275 (sbcl-package->cl-source-package sbcl-dynamic-classes))
14276
14277 (define-public sbcl-cl-markdown
14278 ;; NOTE: (Sharlatan-20210106214629+0000) latest version tag
14279 ;; "version-0.10.6_version-0.10.6" is failing to build due to missing system
14280 ;; #:container-dynamic-classes
14281 (package
14282 (name "sbcl-cl-markdown")
14283 (version "0.10.4")
14284 (source
14285 (origin
14286 (method git-fetch)
14287 (uri (git-reference
14288 (url "https://github.com/gwkkwg/cl-markdown")
14289 (commit (string-append "version-" version))))
14290 (file-name (git-file-name "cl-markdown" version))
14291 (sha256
14292 (base32 "1wdjbdd1zyskxf7zlilcp6fmwkivybj0wjp64vvzb265d5xi7p8p"))))
14293 (build-system asdf-build-system/sbcl)
14294 (inputs
14295 `(("anaphora" ,sbcl-anaphora)
14296 ("cl-containers" ,sbcl-cl-containers)
14297 ("cl-ppcre" ,sbcl-cl-ppcre)
14298 ("dynamic-classes" ,sbcl-dynamic-classes)
14299 ("metabang-bind" ,sbcl-metabang-bind)
14300 ("metatilities-base" ,sbcl-metatilities-base)))
14301 (arguments
14302 ;; NOTE: (Sharlatan-20210107213629+0000) Tests depend on too many not
14303 ;; available systems, which themself are abandoned.
14304 `(#:tests? #f))
14305 (home-page "https://common-lisp.net/project/cl-markdown/")
14306 (synopsis "Common Lisp rewrite of Markdown")
14307 (description
14308 "This is an implementation of a Markdown parser in Common Lisp.")
14309 (license license:expat)))
14310
14311 (define-public ecl-cl-markdown
14312 (sbcl-package->ecl-package sbcl-cl-markdown))
14313
14314 (define-public cl-markdown
14315 (sbcl-package->cl-source-package sbcl-cl-markdown))
14316
14317 (define-public sbcl-magicffi
14318 (let ((commit "d88f2f280c31f639e4e05be75215d8a8dce6aef2"))
14319 (package
14320 (name "sbcl-magicffi")
14321 (version (git-version "0.0.0" "1" commit))
14322 (source
14323 (origin
14324 (method git-fetch)
14325 (uri (git-reference
14326 (url "https://github.com/dochang/magicffi/")
14327 (commit commit)))
14328 (file-name (git-file-name name version))
14329 (sha256
14330 (base32 "0p6ysa92fk34bhxpw7bycbfgw150fv11z9x8jr9xb4lh8cm2hvp6"))))
14331 (build-system asdf-build-system/sbcl)
14332 (native-inputs
14333 `(("alexandria" ,sbcl-alexandria)))
14334 (inputs
14335 `(("cffi" ,sbcl-cffi)
14336 ("ppcre" ,sbcl-cl-ppcre)
14337 ("libmagic" ,file)))
14338 (arguments
14339 `(#:phases
14340 (modify-phases %standard-phases
14341 (add-after 'unpack 'fix-paths
14342 (lambda* (#:key inputs #:allow-other-keys)
14343 (let ((magic (assoc-ref inputs "libmagic")))
14344 (substitute* "grovel.lisp"
14345 (("/usr/include/magic.h")
14346 (string-append magic "/include/magic.h")))
14347 (substitute* "api.lisp"
14348 ((":default \"libmagic\"" all)
14349 (string-append ":default \"" magic "/lib/libmagic\"")))))))))
14350 (home-page "https://common-lisp.net/project/magicffi/")
14351 (synopsis "Common Lisp interface to libmagic based on CFFI")
14352 (description
14353 "MAGICFFI is a Common Lisp CFFI interface to libmagic(3), the file type
14354 determination library using @emph{magic} numbers.")
14355 (license license:bsd-2))))
14356
14357 (define-public ecl-magicffi
14358 (sbcl-package->ecl-package sbcl-magicffi))
14359
14360 (define-public cl-magicffi
14361 (sbcl-package->cl-source-package sbcl-magicffi))
14362
14363 (define-public sbcl-shlex
14364 (let ((commit "c5616dffca0d4d8ddbc1cd6f37a96d88477b2740"))
14365 (package
14366 (name "sbcl-shlex")
14367 (version (git-version "0.0.0" "1" commit))
14368 (source
14369 (origin
14370 (method git-fetch)
14371 (uri (git-reference
14372 (url "https://github.com/ruricolist/cl-shlex")
14373 (commit commit)))
14374 (file-name (git-file-name name version))
14375 (sha256
14376 (base32 "1nas024n4wv319bf40aal96g72bgi9nkapj2chywj2cc6r8hzkfg"))))
14377 (build-system asdf-build-system/sbcl)
14378 (inputs
14379 `(("alexandria" ,sbcl-alexandria)
14380 ("serapeum" ,sbcl-serapeum)
14381 ("ppcre" ,sbcl-cl-ppcre)
14382 ("unicode" ,sbcl-cl-unicode)))
14383 (home-page "https://github.com/ruricolist/cl-shlex")
14384 (synopsis "Common Lisp lexical analyzer for shell-like syntaxes")
14385 (description
14386 "This library contains a lexer for syntaxes that use shell-like rules
14387 for quoting and commenting. It is a port of the @code{shlex} module from Python’s
14388 standard library.")
14389 (license license:expat))))
14390
14391 (define-public ecl-shlex
14392 (sbcl-package->ecl-package sbcl-shlex))
14393
14394 (define-public cl-shlex
14395 (sbcl-package->cl-source-package sbcl-shlex))
14396
14397 (define-public sbcl-cmd
14398 (let ((commit "bc5a3bee8f22917126e4c3d05b33f766e562dbd8"))
14399 (package
14400 (name "sbcl-cmd")
14401 (version (git-version "0.0.1" "3" commit))
14402 (source
14403 (origin
14404 (method git-fetch)
14405 (uri (git-reference
14406 (url "https://github.com/ruricolist/cmd/")
14407 (commit commit)))
14408 (file-name (git-file-name name version))
14409 (sha256
14410 (base32 "1sjlabrknw1kjb2y89vssjhcqh3slgly8wnr3152zgis8lsj2yc7"))))
14411 (build-system asdf-build-system/sbcl)
14412 (inputs
14413 `(("alexandria" ,sbcl-alexandria)
14414 ("coreutils" ,coreutils)
14415 ("procps" ,procps)
14416 ("serapeum" ,sbcl-serapeum)
14417 ("shlex" ,sbcl-shlex)
14418 ("trivia" ,sbcl-trivia)))
14419 (arguments
14420 `(#:phases
14421 (modify-phases %standard-phases
14422 (add-after 'unpack 'fix-paths
14423 (lambda* (#:key inputs #:allow-other-keys)
14424 (let ((bin (string-append (assoc-ref inputs "coreutils") "/bin"))
14425 (ps-bin (string-append (assoc-ref inputs "procps") "/bin")))
14426 (substitute* "cmd.lisp"
14427 (("\\(def \\+env\\+ \"env\"\\)")
14428 (format #f "(def +env+ \"~a/env\")" bin))
14429 (("\\(def \\+kill\\+ \"kill\"\\)")
14430 (format #f "(def +kill+ \"~a/kill\")" bin))
14431 (("\\(def \\+ps\\+ \"ps\"\\)")
14432 (format #f "(def +ps+ \"~a/ps\")" ps-bin))
14433 (("\\(def \\+pwd\\+ \"pwd\"\\)")
14434 (format #f "(def +pwd+ \"~a/pwd\")" bin))
14435 (("\\(def \\+sh\\+ \"/bin/sh\"\\)")
14436 (format #f "(def +sh+ \"~a\")" (which "sh")))
14437 (("\\(def \\+tr\\+ \"tr\"\\)")
14438 (format #f "(def +tr+ \"~a/tr\")" bin)))))))))
14439 (home-page "https://github.com/ruricolist/cmd")
14440 (synopsis "Conveniently run external programs from Common Lisp")
14441 (description
14442 "A utility for running external programs, built on UIOP.
14443 Cmd is designed to be natural to use, protect against shell interpolation and
14444 be usable from multi-threaded programs.")
14445 (license license:expat))))
14446
14447 (define-public ecl-cmd
14448 (sbcl-package->ecl-package sbcl-cmd))
14449
14450 (define-public cl-cmd
14451 (sbcl-package->cl-source-package sbcl-cmd))
14452
14453 (define-public sbcl-ppath
14454 (let ((commit "eb1a8173b4d1d691ea9a7699412123462f58c3ce"))
14455 (package
14456 (name "sbcl-ppath")
14457 (version (git-version "0.1" "1" commit))
14458 (source
14459 (origin
14460 (method git-fetch)
14461 (uri (git-reference
14462 (url "https://github.com/fourier/ppath/")
14463 (commit commit)))
14464 (file-name (git-file-name name commit))
14465 (sha256
14466 (base32 "1c46q9lmzqv14z80d3fwdawgn3pn4922x31fyqvsvbcjm4hd16fb"))))
14467 (build-system asdf-build-system/sbcl)
14468 (inputs
14469 `(("alexandria" ,sbcl-alexandria)
14470 ("cffi" ,sbcl-cffi)
14471 ("osicat" ,sbcl-osicat)
14472 ("ppcre" ,sbcl-cl-ppcre)
14473 ("split-sequence" ,sbcl-split-sequence)
14474 ("trivial-features" ,sbcl-trivial-features)))
14475 (native-inputs
14476 `(("cl-fad" ,sbcl-cl-fad)
14477 ("prove" ,sbcl-prove)))
14478 (home-page "https://github.com/fourier/ppath")
14479 (synopsis "Common Lisp's implementation of the Python's os.path module")
14480 (description
14481 "This library is a path strings manipulation library inspired by
14482 Python's @code{os.path}. All functionality from @code{os.path} is supported on
14483 major operation systems.
14484
14485 The philosophy behind is to use simple strings and \"dumb\" string
14486 manipulation functions to handle paths and filenames. Where possible the
14487 corresponding OS system functions are called.")
14488 (license license:bsd-2))))
14489
14490 (define-public ecl-ppath
14491 (sbcl-package->ecl-package sbcl-ppath))
14492
14493 (define-public cl-ppath
14494 (sbcl-package->cl-source-package sbcl-ppath))
14495
14496 (define-public sbcl-trivial-escapes
14497 (let ((commit "1eca78da2078495d09893be58c28b3aa7b8cc4d1"))
14498 (package
14499 (name "sbcl-trivial-escapes")
14500 (version (git-version "1.2.0" "1" commit))
14501 (source
14502 (origin
14503 (method git-fetch)
14504 (uri (git-reference
14505 (url "https://github.com/williamyaoh/trivial-escapes")
14506 (commit commit)))
14507 (file-name (git-file-name name commit))
14508 (sha256
14509 (base32 "0v6h8lk17iqv1qkxgqjyzn8gi6v0hvq2vmfbb01md3zjvjqxn6lr"))))
14510 (build-system asdf-build-system/sbcl)
14511 (inputs
14512 `(("named-readtables" ,sbcl-named-readtables)))
14513 (native-inputs
14514 `(("fiveam" ,sbcl-fiveam)))
14515 (home-page "https://github.com/williamyaoh/trivial-escapes")
14516 (synopsis "C-style escape directives for Common Lisp")
14517 (description
14518 "This Common Lisp library interprets escape characters the same way that
14519 most other programming language do.
14520 It provides four readtables. The default one lets you write strings like this:
14521 @code{#\"This string has\na newline in it!\"}.")
14522 (license license:public-domain))))
14523
14524 (define-public ecl-trivial-escapes
14525 (sbcl-package->ecl-package sbcl-trivial-escapes))
14526
14527 (define-public cl-trivial-escapes
14528 (sbcl-package->cl-source-package sbcl-trivial-escapes))
14529
14530 (define-public sbcl-cl-indentify
14531 (let ((commit "eb770f434defa4cd41d84bca822428dfd0dbac53"))
14532 (package
14533 (name "sbcl-cl-indentify")
14534 (version (git-version "0.1" "1" commit))
14535 (source
14536 (origin
14537 (method git-fetch)
14538 (uri (git-reference
14539 (url "https://github.com/yitzchak/cl-indentify")
14540 (commit commit)))
14541 (file-name (git-file-name name commit))
14542 (sha256
14543 (base32 "0ha36bhg474vr76vfhr13szc8cfdj1ickg92k1icz791bqaqg67p"))))
14544 (build-system asdf-build-system/sbcl)
14545 (inputs
14546 `(("alexandria" ,sbcl-alexandria)
14547 ("command-line-arguments" ,sbcl-command-line-arguments)
14548 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
14549 (native-inputs
14550 `(("trivial-escapes" ,sbcl-trivial-escapes)
14551 ("rove" ,sbcl-rove)))
14552 (home-page "https://github.com/yitzchak/cl-indentify")
14553 (synopsis "Code beautifier for Common Lisp")
14554 (description
14555 "A library and command line utility to automatically indent Common Lisp
14556 source files.")
14557 (license license:expat))))
14558
14559 (define-public ecl-cl-indentify
14560 (sbcl-package->ecl-package sbcl-cl-indentify))
14561
14562 (define-public cl-indentify
14563 (sbcl-package->cl-source-package sbcl-cl-indentify))
14564
14565 (define-public sbcl-concrete-syntax-tree
14566 (let ((commit "abd242a59dadc5452aa9dbc1d313c83ec2c11f46"))
14567 (package
14568 (name "sbcl-concrete-syntax-tree")
14569 (version (git-version "0.0.0" "1" commit))
14570 (source
14571 (origin
14572 (method git-fetch)
14573 (uri (git-reference
14574 (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14575 (commit commit)))
14576 (file-name (git-file-name name commit))
14577 (sha256
14578 (base32 "1lyrglc3h1if44gxd9cwv90wa90nrdjvb7fry39b1xn8ywdfa7di"))))
14579 (build-system asdf-build-system/sbcl)
14580 (inputs
14581 `(("acclimation" ,sbcl-acclimation)))
14582 (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14583 (synopsis "Parse Common Lisp code into a concrete syntax tree")
14584 (description
14585 "This library is intended to solve the problem of source tracking for
14586 Common Lisp code.
14587
14588 By \"source tracking\", it is meant that code elements that have a known
14589 origin in the form of a position in a file or in an editor buffer are
14590 associated with some kind of information about this origin.
14591
14592 Since the exact nature of such origin information depends on the Common Lisp
14593 implementation and the purpose of wanting to track that origin, the library
14594 does not impose a particular structure of this information. Instead, it
14595 provides utilities for manipulating source code in the form of what is called
14596 concrete syntax trees (CSTs for short) that preserve this information about
14597 the origin.")
14598 (license license:bsd-2))))
14599
14600 (define-public ecl-concrete-syntax-tree
14601 (sbcl-package->ecl-package sbcl-concrete-syntax-tree))
14602
14603 (define-public cl-concrete-syntax-tree
14604 (sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
14605
14606 (define-public sbcl-eclector
14607 (package
14608 (name "sbcl-eclector")
14609 (version "0.5.0")
14610 (source
14611 (origin
14612 (method git-fetch)
14613 (uri (git-reference
14614 (url "https://github.com/s-expressionists/Eclector")
14615 (commit version)))
14616 (file-name (git-file-name name version))
14617 (sha256
14618 (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
14619 (build-system asdf-build-system/sbcl)
14620 (inputs
14621 `(("acclimation" ,sbcl-acclimation)
14622 ("alexandria" ,sbcl-alexandria)
14623 ("closer-mop" ,sbcl-closer-mop)
14624 ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
14625 (native-inputs
14626 `(("fiveam" ,sbcl-fiveam)))
14627 (arguments
14628 '(#:asd-systems '("eclector"
14629 "eclector-concrete-syntax-tree")))
14630 (home-page "https://s-expressionists.github.io/Eclector/")
14631 (synopsis "Highly customizable, portable Common Lisp reader")
14632 (description
14633 "Eclector is a portable Common Lisp reader that is highly customizable,
14634 can recover from errors and can return concrete syntax trees.
14635
14636 In contrast to many other reader implementations, eclector can recover from
14637 most errors in the input supplied to it and continue reading. This capability
14638 is realized as a restart.
14639
14640 It can also produce instances of the concrete syntax tree classes provided by
14641 the concrete syntax tree library.")
14642 (license license:bsd-2)))
14643
14644 (define-public ecl-eclector
14645 (sbcl-package->ecl-package sbcl-eclector))
14646
14647 (define-public cl-eclector
14648 (sbcl-package->cl-source-package sbcl-eclector))
14649
14650 (define-public sbcl-jsown
14651 (let ((commit "744c4407bef58dfa876d9da0b5c0205d869e7977"))
14652 (package
14653 (name "sbcl-jsown")
14654 (version (git-version "1.0.1" "1" commit))
14655 (source
14656 (origin
14657 (method git-fetch)
14658 (uri (git-reference
14659 (url "https://github.com/madnificent/jsown")
14660 (commit commit)))
14661 (file-name (git-file-name name commit))
14662 (sha256
14663 (base32 "0gadvmf1d9bq35s61z76psrsnzwwk12svi66jigf491hv48wigw7"))))
14664 (build-system asdf-build-system/sbcl)
14665 (home-page "https://github.com/madnificent/jsown")
14666 (synopsis "Fast JSON reader / writer library for Common Lisp")
14667 (description
14668 "@code{jsown} is a high performance Common Lisp JSON parser. Its aim
14669 is to allow for the fast parsing of JSON objects in Common Lisp. Recently,
14670 functions and macros have been added to ease the burden of writing and editing
14671 @code{jsown} objects.
14672
14673 @code{jsown} allows you to parse JSON objects quickly to a modifiable Lisp
14674 list and write them back. If you only need partial retrieval of objects,
14675 @code{jsown} allows you to select the keys which you would like to see parsed.
14676 @code{jsown} also has a JSON writer and some helper methods to alter the JSON
14677 objects themselves.")
14678 (license license:expat))))
14679
14680 (define-public ecl-jsown
14681 (sbcl-package->ecl-package sbcl-jsown))
14682
14683 (define-public cl-jsown
14684 (sbcl-package->cl-source-package sbcl-jsown))
14685
14686 (define-public sbcl-system-locale
14687 (let ((commit "4b334bc2fa45651bcaa28ae7d9331095d6bf0a17"))
14688 (package
14689 (name "sbcl-system-locale")
14690 (version (git-version "1.0.0" "1" commit))
14691 (source
14692 (origin
14693 (method git-fetch)
14694 (uri (git-reference
14695 (url "https://github.com/Shinmera/system-locale/")
14696 (commit commit)))
14697 (file-name (git-file-name name commit))
14698 (sha256
14699 (base32 "00p5c053kmgq4ks6l9mxsqz6g3bjcybvkvj0bh3r90qgpkaawm1p"))))
14700 (build-system asdf-build-system/sbcl)
14701 (inputs
14702 `(("documentation-utils" ,sbcl-documentation-utils)))
14703 (home-page "https://shinmera.github.io/system-locale/")
14704 (synopsis "Get the system's locale and language settings in Common Lisp")
14705 (description
14706 "This library retrieves locale information configured on the
14707 system. This is helpful if you want to write applications and libraries that
14708 display messages in the user's native language.")
14709 (license license:zlib))))
14710
14711 (define-public ecl-system-locale
14712 (sbcl-package->ecl-package sbcl-system-locale))
14713
14714 (define-public cl-system-locale
14715 (sbcl-package->cl-source-package sbcl-system-locale))
14716
14717 (define-public sbcl-language-codes
14718 (let ((commit "e7aa0e37cb97a3d37d6bc7316b479d01bff8f42e"))
14719 (package
14720 (name "sbcl-language-codes")
14721 (version (git-version "1.0.0" "1" commit))
14722 (source
14723 (origin
14724 (method git-fetch)
14725 (uri (git-reference
14726 (url "https://github.com/Shinmera/language-codes")
14727 (commit commit)))
14728 (file-name (git-file-name name commit))
14729 (sha256
14730 (base32 "0py176ibmsc01n5r0q1bs1ykqf5jwdbh8kx0j1a814l9y51241v0"))))
14731 (build-system asdf-build-system/sbcl)
14732 (inputs
14733 `(("documentation-utils" ,sbcl-documentation-utils)))
14734 (home-page "https://shinmera.github.io/language-codes/")
14735 (synopsis "Map ISO language codes to language names in Common Lisp")
14736 (description
14737 "This is a small library providing the ISO-639 language code to
14738 language name mapping.")
14739 (license license:zlib))))
14740
14741 (define-public ecl-language-codes
14742 (sbcl-package->ecl-package sbcl-language-codes))
14743
14744 (define-public cl-language-codes
14745 (sbcl-package->cl-source-package sbcl-language-codes))
14746
14747 (define-public sbcl-multilang-documentation
14748 (let ((commit "59e798a07e949e8957a20927f52aca425d84e4a0"))
14749 (package
14750 (name "sbcl-multilang-documentation")
14751 (version (git-version "1.0.0" "1" commit))
14752 (source
14753 (origin
14754 (method git-fetch)
14755 (uri (git-reference
14756 (url "https://github.com/Shinmera/multilang-documentation")
14757 (commit commit)))
14758 (file-name (git-file-name name commit))
14759 (sha256
14760 (base32 "13y5jskx8n2b7kimpfarr8v777w3b7zj5swg1b99nj3hk0843ixw"))))
14761 (build-system asdf-build-system/sbcl)
14762 (inputs
14763 `(("documentation-utils" ,sbcl-documentation-utils)
14764 ("language-codes" ,sbcl-language-codes)
14765 ("system-locale" ,sbcl-system-locale)))
14766 (home-page "https://shinmera.github.io/multilang-documentation/")
14767 (synopsis "Add multiple languages support to Common Lisp documentation")
14768 (description
14769 "This library provides a drop-in replacement function for
14770 cl:documentation that supports multiple docstrings per-language, allowing you
14771 to write documentation that can be internationalised.")
14772 (license license:zlib))))
14773
14774 (define-public ecl-multilang-documentation
14775 (sbcl-package->ecl-package sbcl-multilang-documentation))
14776
14777 (define-public cl-multilang-documentation
14778 (sbcl-package->cl-source-package sbcl-multilang-documentation))
14779
14780 (define-public sbcl-trivial-do
14781 (let ((commit "03a1729f1e71bad3ebcf6cf098a0cce52dfa1163"))
14782 (package
14783 (name "sbcl-trivial-do")
14784 (version (git-version "0.1" "1" commit))
14785 (source
14786 (origin
14787 (method git-fetch)
14788 (uri (git-reference
14789 (url "https://github.com/yitzchak/trivial-do")
14790 (commit commit)))
14791 (file-name (git-file-name name commit))
14792 (sha256
14793 (base32 "1ffva79nkicc7wc8c2ic5nayis3b2rk5sxzj74yjkymkjgbpcrgd"))))
14794 (build-system asdf-build-system/sbcl)
14795 (home-page "https://github.com/yitzchak/trivial-do")
14796 (synopsis "Additional dolist style macros for Common Lisp")
14797 (description
14798 "Additional dolist style macros for Common Lisp, such as
14799 @code{doalist}, @code{dohash}, @code{dolist*}, @code{doplist}, @code{doseq}
14800 and @code{doseq*}.")
14801 (license license:zlib))))
14802
14803 (define-public ecl-trivial-do
14804 (sbcl-package->ecl-package sbcl-trivial-do))
14805
14806 (define-public cl-trivial-do
14807 (sbcl-package->cl-source-package sbcl-trivial-do))
14808
14809 (define-public sbcl-common-lisp-jupyter
14810 (let ((commit "011f60b69a3b8c70eefeafe7acb724cd00dd3e62"))
14811 (package
14812 (name "sbcl-common-lisp-jupyter")
14813 (version (git-version "0.1" "2" commit))
14814 (source
14815 (origin
14816 (method git-fetch)
14817 (uri (git-reference
14818 (url "https://github.com/yitzchak/common-lisp-jupyter")
14819 (commit commit)))
14820 (file-name (git-file-name name commit))
14821 (sha256
14822 (base32 "10jdghlcmp9p6ygrvw7g49i8f9jy71ybzn29n544fzb6g47siqhw"))))
14823 (build-system asdf-build-system/sbcl)
14824 (inputs
14825 `(("alexandria" ,sbcl-alexandria)
14826 ("babel" ,sbcl-babel)
14827 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14828 ("cl-base64" ,sbcl-cl-base64)
14829 ("cl-indentify" ,sbcl-cl-indentify)
14830 ("closer-mop" ,sbcl-closer-mop)
14831 ("eclector" ,sbcl-eclector)
14832 ("ironclad" ,sbcl-ironclad)
14833 ("iterate" ,sbcl-iterate)
14834 ("jsown" ,sbcl-jsown)
14835 ("multilang-documentation" ,sbcl-multilang-documentation)
14836 ("pzmq" ,sbcl-pzmq)
14837 ("puri" ,sbcl-puri)
14838 ("static-vectors" ,sbcl-static-vectors)
14839 ("trivial-do" ,sbcl-trivial-do)
14840 ("trivial-garbage" ,sbcl-trivial-garbage)
14841 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
14842 ("trivial-mimes" ,sbcl-trivial-mimes)))
14843 (home-page "https://yitzchak.github.io/common-lisp-jupyter/")
14844 (synopsis "Common Lisp kernel for Jupyter")
14845 (description
14846 "This is a Common Lisp kernel for Jupyter along with a library for
14847 building Jupyter kernels, based on Maxima-Jupyter which was based on
14848 @code{cl-jupyter}.")
14849 (license license:zlib))))
14850
14851 (define-public ecl-common-lisp-jupyter
14852 (sbcl-package->ecl-package sbcl-common-lisp-jupyter))
14853
14854 (define-public cl-common-lisp-jupyter
14855 (sbcl-package->cl-source-package sbcl-common-lisp-jupyter))
14856
14857 (define-public sbcl-radiance
14858 (let ((commit "5ffbe1f157edd17a13194495099efd81e052df85")
14859 (revision "1"))
14860 (package
14861 (name "sbcl-radiance")
14862 (version (git-version "2.1.2" revision commit))
14863 (source
14864 (origin
14865 (method git-fetch)
14866 (uri (git-reference
14867 (url "https://github.com/Shirakumo/radiance")
14868 (commit commit)))
14869 (file-name (git-file-name "radiance" version))
14870 (sha256
14871 (base32 "0hbkcnmnlj1cqzbv18zmla2iwbl65kxilz9764hndf8x8as1539c"))))
14872 (build-system asdf-build-system/sbcl)
14873 (arguments
14874 `(#:tests? #f ; TODO: The tests require some configuration.
14875 #:phases
14876 (modify-phases %standard-phases
14877 (add-after 'unpack 'disable-quicklisp
14878 (lambda _
14879 ;; Disable the automatic installation of systems by Quicklisp.
14880 ;; (Maybe there would be a way to package Quicklisp and make it
14881 ;; install things in the user's directory instead of
14882 ;; /gnu/store/...).
14883 (substitute* "interfaces.lisp"
14884 (("\\(unless \\(asdf:find-system configured-implementation NIL\\)"
14885 all)
14886 (string-append "#+quicklisp " all))))))))
14887 (native-inputs
14888 `(("alexandria" ,sbcl-alexandria)
14889 ("dexador" ,sbcl-dexador)
14890 ("parachute" ,sbcl-parachute)
14891 ("verbose" ,sbcl-verbose)))
14892 (inputs
14893 `(("babel" ,sbcl-babel)
14894 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14895 ("cl-ppcre" ,sbcl-cl-ppcre)
14896 ("closer-mop" ,sbcl-closer-mop)
14897 ("documentation-utils" ,sbcl-documentation-utils)
14898 ("deploy" ,sbcl-deploy)
14899 ("form-fiddle" ,sbcl-form-fiddle)
14900 ("lambda-fiddle" ,sbcl-lambda-fiddle)
14901 ("local-time" ,sbcl-local-time)
14902 ("modularize-hooks" ,sbcl-modularize-hooks)
14903 ("modularize-interfaces" ,sbcl-modularize-interfaces)
14904 ("puri" ,sbcl-puri)
14905 ("trivial-indent" ,sbcl-trivial-indent)
14906 ("trivial-mimes" ,sbcl-trivial-mimes)
14907 ("ubiquitous-concurrent" ,sbcl-ubiquitous)))
14908 (home-page "https://shirakumo.github.io/radiance/")
14909 (synopsis "Common Lisp web application environment")
14910 (description
14911 "Radiance is a web application environment, which is sort of like a web
14912 framework, but more general, more flexible. It should let you write personal
14913 websites and generally deployable applications easily and in such a way that
14914 they can be used on practically any setup without having to undergo special
14915 adaptations.")
14916 (license license:zlib))))
14917
14918 (define-public ecl-radiance
14919 (sbcl-package->ecl-package sbcl-radiance))
14920
14921 (define-public cl-radiance
14922 (sbcl-package->cl-source-package sbcl-radiance))
14923
14924 (define-public sbcl-daemon
14925 (let ((commit "d5652f4332c3cee21e9bf83b9237129605004597")
14926 (revision "1"))
14927 (package
14928 (name "sbcl-daemon")
14929 (version (git-version "0.0.4" revision commit))
14930 (source
14931 (origin
14932 (method git-fetch)
14933 (uri (git-reference
14934 (url "https://github.com/snmsts/daemon")
14935 (commit commit)))
14936 (file-name (git-file-name "daemon" version))
14937 (sha256
14938 (base32 "1kdxfnhh9fz34j8qs7pn7mwjz3v33q4v9nh0hqkyzraq5xs2j3f4"))))
14939 (build-system asdf-build-system/sbcl)
14940 (inputs
14941 `(("trivial-features" ,sbcl-trivial-features)))
14942 (home-page "https://github.com/snmsts/daemon")
14943 (synopsis "Daemonize Common Lisp processes")
14944 (description
14945 "DAEMON provides the functionality of daemonizing Common Lisp processes
14946 on UNIX like platforms.")
14947 (license license:expat))))
14948
14949 (define-public ecl-daemon
14950 (sbcl-package->ecl-package sbcl-daemon))
14951
14952 (define-public cl-daemon
14953 (sbcl-package->cl-source-package sbcl-daemon))
14954
14955 (define-public sbcl-file-attributes
14956 (let ((commit "bbde396438f37d676de9775239115410bec4da2d"))
14957 (package
14958 (name "sbcl-file-attributes")
14959 (version (git-version "1.0.0" "2" commit))
14960 (source
14961 (origin
14962 (method git-fetch)
14963 (uri (git-reference
14964 (url "https://github.com/Shinmera/file-attributes/")
14965 (commit commit)))
14966 (file-name (git-file-name name version))
14967 (sha256
14968 (base32 "0n8q818ry2shggjfhp8gjby8v5mla9pg97c5g19pcglpnwim7a74"))))
14969 (build-system asdf-build-system/sbcl)
14970 (inputs
14971 `(("cffi" ,sbcl-cffi)
14972 ("documentation-utils" ,sbcl-documentation-utils)
14973 ("trivial-features" ,sbcl-trivial-features)))
14974 (home-page "https://shinmera.github.io/file-attributes/")
14975 (synopsis "Access to common file attributes in Common Lisp")
14976 (description
14977 "This is a small OS portability library to retrieve and set file
14978 attributes not supported by the Common Lisp standard functions.")
14979 (license license:zlib))))
14980
14981 (define-public ecl-file-attributes
14982 (sbcl-package->ecl-package sbcl-file-attributes))
14983
14984 (define-public cl-file-attributes
14985 (sbcl-package->cl-source-package sbcl-file-attributes))
14986
14987 (define-public sbcl-cl-difflib
14988 (let ((commit "98eb335c693f1881584b83ca7be4a0fe05355c4e")
14989 (revision "0"))
14990 (package
14991 (name "sbcl-cl-difflib")
14992 (version (git-version "0.2" revision commit))
14993 (source
14994 (origin
14995 (method git-fetch)
14996 (uri (git-reference
14997 (url "https://github.com/wiseman/cl-difflib")
14998 (commit commit)))
14999 (file-name
15000 (git-file-name name version))
15001 (sha256
15002 (base32 "08if0abhqg191xcz9s7xv8faqq51nswzp8hw423fkqjzr24pmq48"))))
15003 (build-system asdf-build-system/sbcl)
15004 ;; Due to the age of this library tests use some deprecated
15005 ;; functionality and keep failing.
15006 (arguments
15007 '(#:tests? #f
15008 #:asd-files '("cl-difflib.asd")))
15009 (home-page "https://github.com/wiseman/cl-difflib")
15010 (synopsis "Compute differences between pairs of sequences")
15011 (description
15012 "A Common Lisp library for computing differences between
15013 sequences based on the Python difflib module.")
15014 (license license:expat))))
15015
15016 (define-public ecl-cl-difflib
15017 (sbcl-package->ecl-package sbcl-cl-difflib))
15018
15019 (define-public cl-difflib
15020 (sbcl-package->cl-source-package sbcl-cl-difflib))
15021
15022 (define-public sbcl-cl-html-diff
15023 (let ((commit "5a0b39d1c524278d6f60851d7786bb2585614310")
15024 (revision "0"))
15025 (package
15026 (name "sbcl-cl-html-diff")
15027 (version (git-version "0.1" revision commit))
15028 (source
15029 (origin
15030 (method git-fetch)
15031 (uri (git-reference
15032 (url "https://github.com/wiseman/cl-html-diff")
15033 (commit commit)))
15034 (file-name
15035 (git-file-name name version))
15036 (sha256
15037 (base32 "1varnijivzd4jpimn1cz8p5ks713zzha5cgl4vmb0xr8ahravwzb"))))
15038 (build-system asdf-build-system/sbcl)
15039 (inputs
15040 `(("cl-difflib" ,sbcl-cl-difflib)))
15041 (home-page "https://github.com/wiseman/cl-html-diff")
15042 (synopsis "Generate a human-readable diff of two HTML documents")
15043 (description
15044 "A Common Lisp library for generating a human-readable diff of two
15045 HTML documents.")
15046 (license license:expat))))
15047
15048 (define-public ecl-cl-html-diff
15049 (sbcl-package->ecl-package sbcl-cl-html-diff))
15050
15051 (define-public cl-html-diff
15052 (sbcl-package->cl-source-package sbcl-cl-html-diff))
15053
15054 (define-public sbcl-tooter
15055 (let ((commit "b8d4b245b1d946bc9da6f51a3d8c2dc43e4d3868")
15056 (revision "1"))
15057 (package
15058 (name "sbcl-tooter")
15059 (version (git-version "1.0.0" revision commit))
15060 (source
15061 (origin
15062 (method git-fetch)
15063 (uri (git-reference
15064 (url "https://github.com/Shinmera/tooter")
15065 (commit commit)))
15066 (file-name (git-file-name "tooter" version))
15067 (sha256
15068 (base32 "0g40dlis4dbw4p3zxz3scx27b9zm8zlzihywapf5zqrdqfx5hpq9"))))
15069 (build-system asdf-build-system/sbcl)
15070 (inputs
15071 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
15072 ("sbcl-documentation-utils" ,sbcl-documentation-utils)
15073 ("sbcl-drakma" ,sbcl-drakma)
15074 ("sbcl-yason" ,sbcl-yason)))
15075 (synopsis "Common Lisp client library for Mastodon instances")
15076 (description
15077 "This is a Common Lisp library implementing the full v1 REST API
15078 protocol for Mastodon.")
15079 (home-page "https://shinmera.github.io/tooter/")
15080 (license license:zlib))))
15081
15082 (define-public ecl-tooter
15083 (sbcl-package->ecl-package sbcl-tooter))
15084
15085 (define-public cl-tooter
15086 (sbcl-package->cl-source-package sbcl-tooter))
15087
15088 (define-public sbcl-croatoan
15089 (let ((commit "7077ef14d27e8708515ad8d309886f516e7fbd98")
15090 (revision "2"))
15091 (package
15092 (name "sbcl-croatoan")
15093 (version (git-version "0.0.1" revision commit))
15094 (source
15095 (origin
15096 (method git-fetch)
15097 (uri (git-reference
15098 (url "https://github.com/McParen/croatoan")
15099 (commit commit)))
15100 (file-name (git-file-name "croatoan" version))
15101 (sha256
15102 (base32 "0gf2sjpsdkd9s8imwy2wjrkdx82a5sc4yy9bndlnjlwmdraw4j37"))))
15103 (build-system asdf-build-system/sbcl)
15104 (arguments
15105 '(#:phases
15106 (modify-phases %standard-phases
15107 (add-after 'unpack 'fix-paths
15108 (lambda* (#:key inputs #:allow-other-keys)
15109 (substitute* "ncurses/ncurses.lisp"
15110 (("libncursesw" all)
15111 (string-append (assoc-ref inputs "ncurses")
15112 "/lib/"
15113 all))))))))
15114 (inputs
15115 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
15116 ("cffi" ,sbcl-cffi)
15117 ("ncurses" ,ncurses)
15118 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
15119 (synopsis "Common Lisp bindings for the ncurses terminal library")
15120 (description "Croatoan provides high-level Common Lisp CLOS bindings for
15121 the ncurses terminal library.")
15122 (home-page "https://github.com/McParen/croatoan")
15123 (license license:expat))))
15124
15125 (define-public ecl-croatoan
15126 (sbcl-package->ecl-package sbcl-croatoan))
15127
15128 (define-public cl-croatoan
15129 (sbcl-package->cl-source-package sbcl-croatoan))
15130
15131 (define-public sbcl-cl-spark
15132 (let ((commit "4e34bcebdcf8e45265986eb43ad4ad03bb41a581")
15133 (revision "1"))
15134 (package
15135 (name "sbcl-cl-spark")
15136 (version (git-version "0.1.13" revision commit))
15137 (source
15138 (origin
15139 (method git-fetch)
15140 (uri (git-reference
15141 (url "https://github.com/tkych/cl-spark")
15142 (commit commit)))
15143 (file-name (git-file-name "cl-spark" version))
15144 (sha256
15145 (base32 "0my1fsgi2rjaqkpk934f2bjy63pmnj7faza3fzvnk6k3l66y19nk"))))
15146 (build-system asdf-build-system/sbcl)
15147 (native-inputs
15148 `(("fiveam" ,sbcl-fiveam)))
15149 (synopsis "Common Lisp library to make histograms")
15150 (description "This is a Common Lisp library to make histograms using
15151 UTF-8 block characters.")
15152 (home-page "https://github.com/tkych/cl-spark")
15153 (license license:expat))))
15154
15155 (define-public ecl-cl-spark
15156 (sbcl-package->ecl-package sbcl-cl-spark))
15157
15158 (define-public cl-spark
15159 (sbcl-package->cl-source-package sbcl-cl-spark))
15160
15161 (define-public sbcl-access
15162 (let ((commit "1b26db3760018cdc4624f880f0a1e0155d8f6c50")
15163 (revision "1"))
15164 (package
15165 (name "sbcl-access")
15166 (version (git-version "1.5.0" revision commit))
15167 (source
15168 (origin
15169 (method git-fetch)
15170 (uri (git-reference
15171 (url "https://github.com/sharplispers/access")
15172 (commit commit)))
15173 (file-name (git-file-name "access" version))
15174 (sha256
15175 (base32 "1knd3n4mpzkc97i1znbas32pscd30416isvmx2pjmgvar6k93pl5"))))
15176 (build-system asdf-build-system/sbcl)
15177 (native-inputs
15178 `(("lisp-unit2" ,sbcl-lisp-unit2)))
15179 (inputs
15180 `(("alexandria" ,sbcl-alexandria)
15181 ("anaphora" ,sbcl-anaphora)
15182 ("closer-mop" ,sbcl-closer-mop)
15183 ("interpol" ,sbcl-cl-interpol)
15184 ("iterate" ,sbcl-iterate)))
15185 (synopsis
15186 "Common lisp library to unify access to dictionary-like structures")
15187 (description
15188 "This is a Common lisp library to unify access to the most common
15189 dictionary-like data structures.")
15190 (home-page "https://github.com/sharplispers/access")
15191 (license license:bsd-3))))
15192
15193 (define-public ecl-access
15194 (sbcl-package->ecl-package sbcl-access))
15195
15196 (define-public cl-access
15197 (sbcl-package->cl-source-package sbcl-access))
15198
15199 (define-public sbcl-sxql-composer
15200 (let ((commit "2b2230cb01ae1b68e28921d99e4814046867fb75")
15201 (revision "1"))
15202 (package
15203 (name "sbcl-sxql-composer")
15204 (version (git-version "0.1" revision commit))
15205 (source
15206 (origin
15207 (method git-fetch)
15208 (uri (git-reference
15209 (url "https://github.com/mmontone/sxql-composer")
15210 (commit commit)))
15211 (file-name (git-file-name "sxql-composer" version))
15212 (sha256
15213 (base32 "1agkrj3ymskzc3c7pxbrj123d1kygjqcls145m0ap3i07q96hh1r"))))
15214 (build-system asdf-build-system/sbcl)
15215 (inputs
15216 `(("sxql" ,sbcl-sxql)))
15217 (synopsis "Build and compose SXQL queries dynamically")
15218 (description
15219 "This is a Common Lisp library to build and compose SXQL queries
15220 dynamically.")
15221 (home-page "https://github.com/mmontone/sxql-composer")
15222 (license license:expat))))
15223
15224 (define-public ecl-sxql-composer
15225 (sbcl-package->ecl-package sbcl-sxql-composer))
15226
15227 (define-public cl-sxql-composer
15228 (sbcl-package->cl-source-package sbcl-sxql-composer))
15229
15230 (define-public sbcl-cl-i18n
15231 (let ((commit "fa0aa5bef8dfbdf2d72f7cc9f49e848ccbb567aa")
15232 (revision "1"))
15233 (package
15234 (name "sbcl-cl-i18n")
15235 (version (git-version "0.5.0" revision commit))
15236 (source
15237 (origin
15238 (method git-fetch)
15239 (uri (git-reference
15240 (url "https://notabug.org/cage/cl-i18n")
15241 (commit commit)))
15242 (file-name (git-file-name "cl-i18n" version))
15243 (sha256
15244 (base32 "1hpsdbb3hd79bzbrnbqgk2j3f0ispxvk91snp08fm2z3f1sds5as"))))
15245 (build-system asdf-build-system/sbcl)
15246 (inputs
15247 `(("alexandria" ,sbcl-alexandria)
15248 ("babel" ,sbcl-babel)
15249 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
15250 (synopsis "Internationalisation framework for Common Lisp")
15251 (description
15252 "This is a Gettext-style internationalisation framework for Common
15253 Lisp.")
15254 (home-page "https://notabug.org/cage/cl-i18n")
15255 (license license:llgpl))))
15256
15257 (define-public ecl-cl-i18n
15258 (sbcl-package->ecl-package sbcl-cl-i18n))
15259
15260 (define-public cl-i18n
15261 (sbcl-package->cl-source-package sbcl-cl-i18n))
15262
15263 (define-public sbcl-crypto-shortcuts
15264 (let ((commit "7efd22d80e867cd8c9f8f363d4fe7b51ee2dadc0")
15265 (revision "1"))
15266 (package
15267 (name "sbcl-crypto-shortcuts")
15268 (version (git-version "2.0.0" revision commit))
15269 (source
15270 (origin
15271 (method git-fetch)
15272 (uri (git-reference
15273 (url "https://github.com/Shinmera/crypto-shortcuts")
15274 (commit commit)))
15275 (file-name (git-file-name "crypto-shortcuts" version))
15276 (sha256
15277 (base32 "0c0m0ar04jn7qf2v8c4sivamlzki03r13rnxy8b3n27rh9r6hgin"))))
15278 (build-system asdf-build-system/sbcl)
15279 (inputs
15280 `(("cl-base64" ,sbcl-cl-base64)
15281 ("flexi-stream" ,sbcl-flexi-streams)
15282 ("ironclad" ,sbcl-ironclad)))
15283 (synopsis "Collection of common cryptography functions")
15284 (description
15285 "This is a collection of common cryptography functions for Common
15286 Lisp.")
15287 (home-page "https://shinmera.github.io/crypto-shortcuts/")
15288 (license license:zlib))))
15289
15290 (define-public ecl-crypto-shortcuts
15291 (sbcl-package->ecl-package sbcl-crypto-shortcuts))
15292
15293 (define-public cl-crypto-shortcuts
15294 (sbcl-package->cl-source-package sbcl-crypto-shortcuts))
15295
15296 (define-public sbcl-cl-html5-parser
15297 (let ((commit "74a92eb3a183a0afd089ea33350e816e6b9aeefa")
15298 (revision "1"))
15299 (package
15300 (name "sbcl-cl-html5-parser")
15301 (version (git-version "0.0.0" revision commit))
15302 (source
15303 (origin
15304 (method git-fetch)
15305 (uri (git-reference
15306 (url "https://github.com/rotatef/cl-html5-parser")
15307 (commit commit)))
15308 (file-name (git-file-name "cl-html5-parser" version))
15309 (sha256
15310 (base32 "04if61wigylsmn996rbfl8ylsd0d9hzdmg7p2wiglncibjzcl5k9"))))
15311 (build-system asdf-build-system/sbcl)
15312 (arguments
15313 '(#:tests? #f
15314 #:asd-systems '("cl-html5-parser")))
15315 (inputs
15316 `(("cl-ppcre" ,sbcl-cl-ppcre)
15317 ("flexi-stream" ,sbcl-flexi-streams)
15318 ("string-case" ,sbcl-string-case)))
15319 (synopsis "HTML5 parser for Common Lisp")
15320 (description "This a Common Lisp library to parse HTML5 documents.")
15321 (home-page "https://github.com/rotatef/cl-html5-parser")
15322 (license license:lgpl3+))))
15323
15324 (define-public ecl-cl-html5-parser
15325 (sbcl-package->ecl-package sbcl-cl-html5-parser))
15326
15327 (define-public cl-html5-parser
15328 (sbcl-package->cl-source-package sbcl-cl-html5-parser))
15329
15330 (define-public sbcl-percent-encoding
15331 (let ((commit "c1224e22bc8048fbd3ebbc9329715a0c1b673170")
15332 (revision "1"))
15333 (package
15334 (name "sbcl-percent-encoding")
15335 (version (git-version "0.1" revision commit))
15336 (source
15337 (origin
15338 (method git-fetch)
15339 (uri (git-reference
15340 (url "https://github.com/llibra/percent-encoding")
15341 (commit commit)))
15342 (file-name (git-file-name "percent-encoding" version))
15343 (sha256
15344 (base32 "0q1lh3sa6mkjr5gcdkgimkpc29rgf9cjhv90f61h8ridj28grq0h"))))
15345 (build-system asdf-build-system/sbcl)
15346 (native-inputs
15347 `(("fiveam" ,sbcl-fiveam)))
15348 (inputs
15349 `(("anaphora" ,sbcl-anaphora)
15350 ("babel" ,sbcl-babel)))
15351 (synopsis "RFC 3986 percent-encoding library")
15352 (description
15353 "This is a Common Lisp library providing RFC 3986 percent-encoding.")
15354 (home-page "https://github.com/llibra/percent-encoding")
15355 (license license:expat))))
15356
15357 (define-public ecl-percent-encoding
15358 (sbcl-package->ecl-package sbcl-percent-encoding))
15359
15360 (define-public cl-percent-encoding
15361 (sbcl-package->cl-source-package sbcl-percent-encoding))
15362
15363 (define-public sbcl-cl-mount-info
15364 (let ((commit "2024f5037a7f63db3e3587dc9972cd7b9318f06b")
15365 (revision "1"))
15366 (package
15367 (name "sbcl-cl-mount-info")
15368 (version (git-version "0.0.1" revision commit))
15369 (source
15370 (origin
15371 (method git-fetch)
15372 (uri (git-reference
15373 (url "https://notabug.org/cage/cl-mount-info.git")
15374 (commit commit)))
15375 (file-name (git-file-name "cl-mount-info" version))
15376 (sha256
15377 (base32 "0vza9gj9q42nzb5v8aj22lmn4aqx9vrddsb5a343nbwfz89hbh9x"))))
15378 (build-system asdf-build-system/sbcl)
15379 (inputs
15380 `(("alexandria" ,sbcl-alexandria)
15381 ("cffi" ,sbcl-cffi)
15382 ("cl-ppcre" ,sbcl-cl-ppcre)))
15383 (home-page "https://notabug.org/cage/cl-mount-info.git")
15384 (synopsis "Library to get information about mounted filesystems")
15385 (description
15386 "CL-MOUNT-INFO is a Common Lisp wrapper around @code{getmntent(3)} and
15387 related C functions to get information about the mounted file system.")
15388 (license license:lgpl3))))
15389
15390 (define-public ecl-cl-mount-info
15391 (sbcl-package->ecl-package sbcl-cl-mount-info))
15392
15393 (define-public cl-mount-info
15394 (sbcl-package->cl-source-package sbcl-cl-mount-info))
15395
15396 (define-public sbcl-cl-diskspace
15397 (let ((commit "2dce2d0387d58221c452bd76c7b9b7a7de81ef55")
15398 (revision "1"))
15399 (package
15400 (name "sbcl-cl-diskspace")
15401 (version (git-version "0.3.1" revision commit))
15402 (source
15403 (origin
15404 (method git-fetch)
15405 (uri (git-reference
15406 (url "https://github.com/muyinliu/cl-diskspace")
15407 (commit commit)))
15408 (file-name (git-file-name "cl-diskspace" version))
15409 (sha256
15410 (base32 "0l19hxqw6b8i5i1jdbr45k1xib9axcwdagsp3y8wkb35g6wwc0s7"))))
15411 (build-system asdf-build-system/sbcl)
15412 (arguments
15413 `(#:phases
15414 (modify-phases %standard-phases
15415 (add-after 'unpack 'fix-paths
15416 (lambda* (#:key inputs #:allow-other-keys)
15417 (substitute* "src/unix/cl-diskspace-list-all-disks-with-df.lisp"
15418 (("grep")
15419 (string-append (assoc-ref inputs "grep") "/bin/grep")))
15420 (substitute* "src/unix/cl-diskspace-list-all-disks-with-df.lisp"
15421 (("/bin/df")
15422 (which "df")))
15423 #t)))))
15424 (inputs
15425 `(("cl-ppcre" ,sbcl-cl-ppcre)
15426 ("cffi" ,sbcl-cffi)
15427 ("grep" ,grep)))
15428 (home-page "https://github.com/muyinliu/cl-diskspace")
15429 (synopsis "Disk space information library for Common Lisp")
15430 (description
15431 "CL-DISKSPACE is a Common Lisp library to list disks with the command
15432 line tool @code{df} and get disk space information using @code{statvfs}.")
15433 (license license:isc))))
15434
15435 (define-public ecl-cl-diskspace
15436 (sbcl-package->ecl-package sbcl-cl-diskspace))
15437
15438 (define-public cl-diskspace
15439 (sbcl-package->cl-source-package sbcl-cl-diskspace))
15440
15441 (define-public sbcl-cl-cpus
15442 (package
15443 (name "sbcl-cl-cpus")
15444 (version "0.0.3")
15445 (source
15446 (origin
15447 (method git-fetch)
15448 (uri (git-reference
15449 (url "https://github.com/muyinliu/cl-cpus")
15450 (commit (string-append "v" version))))
15451 (file-name (git-file-name "cl-cpus" version))
15452 (sha256
15453 (base32 "0sdaff9hpsx7bpkkkqavmxmrrlc2d61gmqjjgn8xchncng4a0rf8"))))
15454 (build-system asdf-build-system/sbcl)
15455 (inputs
15456 `(("cffi" ,sbcl-cffi)))
15457 (home-page "https://github.com/muyinliu/cl-cpus")
15458 (synopsis "Common Lisp feature to get number of CPUs")
15459 (description
15460 "This package provides a Common Lisp system which has only one function to
15461 return the CPU count of the current system.")
15462 (license license:isc)))
15463
15464 (define-public ecl-cl-cpus
15465 (sbcl-package->ecl-package sbcl-cl-cpus))
15466
15467 (define-public cl-cpus
15468 (sbcl-package->cl-source-package sbcl-cl-cpus))
15469
15470 (define-public sbcl-fof
15471 (package
15472 (name "sbcl-fof")
15473 (version "0.1.0")
15474 (source
15475 (origin
15476 (method git-fetch)
15477 (uri (git-reference
15478 (url "https://gitlab.com/ambrevar/fof")
15479 (commit version)))
15480 (file-name (git-file-name name version))
15481 (sha256
15482 (base32 "1xdnlqrjfmgdgw58avkci881iwarv4am2vq09b14pfifmpxpzv10"))))
15483 (build-system asdf-build-system/sbcl)
15484 (arguments
15485 `(#:phases
15486 (modify-phases %standard-phases
15487 (add-after 'unpack 'fix-paths
15488 (lambda* (#:key inputs #:allow-other-keys)
15489 (substitute* "ffprobe.lisp"
15490 (("\\(defvar \\*ffprobe-command\\* \"ffprobe\"\\)")
15491 (format #f "(defvar *ffprobe-command* \"~a/bin/ffprobe\")"
15492 (assoc-ref inputs "ffmpeg") )))
15493 #t)))))
15494 (inputs
15495 `(("alexandria" ,sbcl-alexandria)
15496 ("hu.dwim.defclass-star" ,sbcl-hu.dwim.defclass-star)
15497 ("local-time" ,sbcl-local-time)
15498 ("magicffi" ,sbcl-magicffi)
15499 ("osicat" ,sbcl-osicat)
15500 ("serapeum" ,sbcl-serapeum)
15501 ("str" ,sbcl-cl-str)
15502 ("trivia" ,sbcl-trivia)
15503 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)
15504 ;; Non-CL deps:
15505 ("ffmpeg" ,ffmpeg)))
15506 (home-page "https://gitlab.com/ambrevar/fof")
15507 (synopsis "File object finder library for Common Lisp")
15508 (description
15509 "This library enable rapid file search, inspection and manipulation
15510 straight from the REPL.
15511 It aims at replacing Unix tools such as @code{find} or @code{du}.
15512 It also offers a replacement to the @code{pathname} Common Lisp API.
15513 Slot writers which commit changes to disk, e.g. permissions, modification
15514 time, etc.")
15515 (license license:gpl3+)))
15516
15517 (define-public ecl-fof
15518 (sbcl-package->ecl-package sbcl-fof))
15519
15520 (define-public cl-fof
15521 (sbcl-package->cl-source-package sbcl-fof))
15522
15523 (define-public sbcl-computable-reals
15524 (let ((commit "fdc73d75e79d0a4ce6d01c822c950ae2eb137d39"))
15525 (package
15526 (name "sbcl-computable-reals")
15527 (version (git-version "1.1.0" "1" commit))
15528 (source
15529 (origin
15530 (method git-fetch)
15531 (uri (git-reference
15532 (url "https://github.com/stylewarning/computable-reals")
15533 (commit commit)))
15534 (file-name (git-file-name name version))
15535 (sha256
15536 (base32 "0f12axi53x14l12dgf4a1lfq3p1fx7fh7sjfc0db3lk88ph9qfwl"))))
15537 (build-system asdf-build-system/sbcl)
15538 (home-page "https://github.com/stylewarning/computable-reals")
15539 (synopsis "Arbitrary-precision, re-computing real-numbers in Common Lisp")
15540 (description
15541 "This library provides arbitrary precision (floating point) real
15542 numbers in Common Lisp.")
15543 (license license:bsd-3))))
15544
15545 (define-public ecl-computable-reals
15546 (sbcl-package->ecl-package sbcl-computable-reals))
15547
15548 (define-public cl-computable-reals
15549 (sbcl-package->cl-source-package sbcl-computable-reals))
15550
15551 (define-public sbcl-html-template
15552 (package
15553 (name "sbcl-html-template")
15554 (version "0.9.2")
15555 (source
15556 (origin
15557 (method git-fetch)
15558 (uri (git-reference
15559 (url "https://github.com/edicl/html-template")
15560 (commit (string-append "v" version))))
15561 (file-name (git-file-name name version))
15562 (sha256
15563 (base32 "0wz3czvjsn4x971dsiia9f9nvvcmbkablcl75zsvxndkimc93wxb"))))
15564 (build-system asdf-build-system/sbcl)
15565 (home-page "https://edicl.github.io/html-template/")
15566 (synopsis "HTML templates from Common Lisp")
15567 (description
15568 "HTML-TEMPLATE is a Common Lisp library which can be used to fill
15569 templates with arbitrary (string) values at runtime. The result does not have
15570 to be HTML.
15571
15572 It is loosely modeled after the Perl module @code{HTML::Template} and
15573 partially compatible with a its syntax, though both libraries contain some
15574 extensions that the other does not support.
15575
15576 HTML-TEMPLATE translates templates into efficient closures which can be
15577 re-used as often as needed. It uses a cache mechanism so you can update
15578 templates while your program is running and have the changes take effect
15579 immediately.")
15580 (license license:bsd-2)))
15581
15582 (define-public ecl-html-template
15583 (sbcl-package->ecl-package sbcl-html-template))
15584
15585 (define-public cl-html-template
15586 (sbcl-package->cl-source-package sbcl-html-template))
15587
15588 (define-public sbcl-quickproject
15589 (package
15590 (name "sbcl-quickproject")
15591 (version "1.4.1")
15592 (source
15593 (origin
15594 (method git-fetch)
15595 (uri (git-reference
15596 (url "https://github.com/xach/quickproject")
15597 (commit (string-append "release-" version))))
15598 (file-name (git-file-name name version))
15599 (sha256
15600 (base32 "1szs8p2wr1yr9mjmj3h3557l6wxzzga0iszimb68z0hb1jj3lva6"))))
15601 (build-system asdf-build-system/sbcl)
15602 (inputs
15603 `(("cl-fad" ,sbcl-cl-fad)
15604 ("html-template" ,sbcl-html-template)))
15605 (arguments
15606 '(#:asd-files '("quickproject.asd")))
15607 (home-page "https://xach.com/lisp/quickproject/")
15608 (synopsis "Create Common Lisp project skeletons")
15609 (description
15610 "Quickproject provides a quick way to make a Common Lisp project. After
15611 creating a project, it extends the ASDF registry so the project may be
15612 immediately loaded.")
15613 (license license:expat)))
15614
15615 (define-public ecl-quickproject
15616 (sbcl-package->ecl-package sbcl-quickproject))
15617
15618 (define-public cl-quickproject
15619 (sbcl-package->cl-source-package sbcl-quickproject))
15620
15621 (define-public sbcl-bodge-math
15622 (let ((commit "9159b7faf88d440024c07110dbef2abddb20b9af")
15623 (revision "1"))
15624 (package
15625 (name "sbcl-bodge-math")
15626 (version (git-version "1.0.0" revision commit))
15627 (source
15628 (origin
15629 (method git-fetch)
15630 (uri (git-reference
15631 (url "https://github.com/borodust/bodge-math")
15632 (commit commit)))
15633 (file-name (git-file-name "bodge-math" version))
15634 (sha256
15635 (base32 "0r3vnl9lywn4ksy34apcv6j825qp7l1naddawr14v4lwacndb80v"))))
15636 (build-system asdf-build-system/sbcl)
15637 (inputs
15638 `(("bodge-utilities" ,sbcl-bodge-utilities)
15639 ("rtg-math" ,sbcl-rtg-math)))
15640 (home-page "https://github.com/borodust/bodge-math")
15641 (synopsis "Common Lisp core math utilities of BODGE library collection")
15642 (description
15643 "This Common Lisp package contains the core math utilities of the
15644 @emph{Bodge} library collection.")
15645 (license license:expat))))
15646
15647 (define-public ecl-bodge-math
15648 (sbcl-package->ecl-package sbcl-bodge-math))
15649
15650 (define-public cl-bodge-math
15651 (sbcl-package->cl-source-package sbcl-bodge-math))
15652
15653 (define-public sbcl-bodge-blobs-support
15654 (let ((commit "c5034ca5f4fc3a44dbadeba215a09afd59a404b0")
15655 (revision "1"))
15656 (package
15657 (name "sbcl-bodge-blobs-support")
15658 (version (git-version "1.0.0" revision commit))
15659 (source
15660 (origin
15661 (method git-fetch)
15662 (uri (git-reference
15663 (url "https://github.com/borodust/bodge-blobs-support")
15664 (commit commit)))
15665 (file-name (git-file-name "bodge-blobs-support" version))
15666 (sha256
15667 (base32 "02nd1x6y1akp1ymv1y4z9ympwbnpd1drwi4f86xbjszxqff6jyj8"))))
15668 (build-system asdf-build-system/sbcl)
15669 (native-inputs
15670 `(("trivial-features" ,sbcl-trivial-features)))
15671 (inputs
15672 `(("cffi" ,sbcl-cffi)
15673 ("sbcl-alexandria" ,sbcl-alexandria)))
15674 (home-page "https://github.com/borodust/bodge-blobs-support")
15675 (synopsis "Common Lisp utilities for blob packages")
15676 (description
15677 "This is a Common Lisp library for simplifying packaging and loading of
15678 compiled foreign library collection.")
15679 (license license:unlicense))))
15680
15681 (define-public cl-bodge-blobs-support
15682 (sbcl-package->cl-source-package sbcl-bodge-blobs-support))
15683
15684 (define-public ecl-bodge-blobs-support
15685 (sbcl-package->ecl-package sbcl-bodge-blobs-support))
15686
15687 (define-public sbcl-cl-conspack
15688 (let ((commit "fc8473bc6f929696b03b43820596b7c976c4678e")
15689 (revision "1"))
15690 (package
15691 (name "sbcl-cl-conspack")
15692 (version (git-version "0.0.0" revision commit))
15693 (source
15694 (origin
15695 (method git-fetch)
15696 (uri (git-reference
15697 (url "https://github.com/conspack/cl-conspack")
15698 (commit commit)))
15699 (file-name (git-file-name "cl-conspack" version))
15700 (sha256
15701 (base32 "0b7qzvsrpvnw12hqhjmz0b02sigj0kdjy55j4k7xzmj8684cs8bx"))))
15702 (build-system asdf-build-system/sbcl)
15703 ;; FIXME: (Sharlatan-20210331T220652+0100): Test are disabled because of:
15704 ;;
15705 ;; Error while trying to load definition for system cl-conspack-test
15706 ;; from pathname .../cl-conspack/cl-conspack-test.asd:
15707 ;; Error opening .../checkl/formalize-tmpGHU3ALSV.fasl": Permission denied
15708 ;;
15709 ;; It looks like the issues is in CheckL itself as other packages keep
15710 ;; failing test where it's in use.
15711 (arguments
15712 '(#:tests? #f
15713 #:asd-files '("cl-conspack.asd")))
15714 (native-inputs
15715 `(("checkl" ,sbcl-checkl)))
15716 (inputs
15717 `(("alexandria" ,sbcl-alexandria)
15718 ("closer-mop" ,sbcl-closer-mop)
15719 ("fast-io" ,sbcl-fast-io)
15720 ("ieee-floats" ,sbcl-ieee-floats)
15721 ("trivial-garbage" ,sbcl-trivial-garbage)
15722 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
15723 (home-page "https://github.com/conspack/cl-conspack")
15724 (synopsis "CONSPACK implementation for Common Lisp")
15725 (description
15726 "This package provides a CONSPACK implementation for Common Lisp.")
15727 (license license:bsd-3))))
15728
15729 (define-public ecl-cl-conspack
15730 (sbcl-package->ecl-package sbcl-cl-conspack))
15731
15732 (define-public cl-conspack
15733 (sbcl-package->cl-source-package sbcl-cl-conspack))
15734
15735 (define-public sbcl-cl-opengl
15736 (let ((commit "e2d83e0977b7e7ac3f3d348d8ccc7ccd04e74d59")
15737 (revision "1"))
15738 (package
15739 (name "sbcl-cl-opengl")
15740 (version (git-version "0.1.0" revision commit))
15741 (source
15742 (origin
15743 (method git-fetch)
15744 (uri (git-reference
15745 (url "https://github.com/3b/cl-opengl")
15746 (commit commit)))
15747 (file-name (git-file-name "cl-opengl" version))
15748 (sha256
15749 (base32 "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"))))
15750 (build-system asdf-build-system/sbcl)
15751 (arguments
15752 `(#:asd-systems '("cl-opengl" "cl-glu" "cl-glut")
15753 #:phases
15754 (modify-phases %standard-phases
15755 (add-after 'unpack 'patch-lib-path
15756 (lambda* (#:key inputs #:allow-other-keys)
15757 (substitute* "gl/library.lisp"
15758 (("libGL.so" all)
15759 (string-append (assoc-ref inputs "mesa") "/lib/" all)))
15760 (substitute* "glu/library.lisp"
15761 (("libGLU.so" all)
15762 (string-append (assoc-ref inputs "glu") "/lib/" all)))
15763 (substitute* "glut/library.lisp"
15764 (("libglut.so" all)
15765 (string-append (assoc-ref inputs "freeglut") "/lib/" all)))
15766 #t)))))
15767 (inputs
15768 `(("alexandria" ,sbcl-alexandria)
15769 ("cffi" ,sbcl-cffi)
15770 ("float-features" ,sbcl-float-features)
15771 ("freeglut" ,freeglut)
15772 ("glu" ,glu)
15773 ("mesa" ,mesa)))
15774 (home-page "https://github.com/3b/cl-opengl")
15775 (synopsis "Common Lisp bindings to OpenGL, GLU and GLUT APIs")
15776 (description
15777 "This package provides a set of bindings and utilities for accessing the
15778 OpenGL (Mesa), GLU and GLUT (FreeGLUT) APIs using CFFI.")
15779 (license license:bsd-3))))
15780
15781 (define-public ecl-cl-opengl
15782 (sbcl-package->ecl-package sbcl-cl-opengl))
15783
15784 (define-public cl-opengl
15785 (sbcl-package->cl-source-package sbcl-cl-opengl))
15786
15787 (define-public sbcl-shadow
15788 (let ((commit "b2031adbfba3579b48c9d39ad997e19b79b6852f")
15789 (revision "1"))
15790 (package
15791 (name "sbcl-shadow")
15792 (version (git-version "0.0.0" revision commit))
15793 (source
15794 (origin
15795 (method git-fetch)
15796 (uri (git-reference
15797 (url "https://git.mfiano.net/mfiano/shadow")
15798 (commit commit)))
15799 (file-name (git-file-name "shadow" version))
15800 (sha256
15801 (base32 "0w1i734gkdkziin74ql2nhx7jdjxx02ylssaa6qdrvnj4br1124a"))))
15802 (build-system asdf-build-system/sbcl)
15803 (inputs
15804 `(("cffi" ,sbcl-cffi)
15805 ("cl-opengl" ,sbcl-cl-opengl)
15806 ("glsl-packing" ,sbcl-glsl-packing)
15807 ("golden-utils" ,sbcl-golden-utils)
15808 ("static-vectors" ,sbcl-static-vectors)
15809 ("varjo" ,sbcl-varjo)))
15810 (home-page "https://git.mfiano.net/mfiano/shadow")
15811 (synopsis "Management system for OpenGL shader programs")
15812 (description
15813 "This package provides a Common Lisp library for defining OpenGL shader
15814 programs. There are also functions for referencing shader programs by name,
15815 querying for basic information about them, modifying uniform variables
15816 throughout the lifecycle of an OpenGL application, and managing certain OpenGL
15817 buffer object types (UBO, SSBO currently).")
15818 (license license:expat))))
15819
15820 (define-public ecl-shadow
15821 (sbcl-package->ecl-package sbcl-shadow))
15822
15823 (define-public cl-shadow
15824 (sbcl-package->cl-source-package sbcl-shadow))
15825
15826 (define-public sbcl-umbra
15827 (let ((commit "d6ef2f6cbfa26180929061129eaf325bf17f73d8")
15828 (revision "1"))
15829 (package
15830 (name "sbcl-umbra")
15831 (version (git-version "0.0.0" revision commit))
15832 (source
15833 (origin
15834 (method git-fetch)
15835 (uri (git-reference
15836 (url "https://git.mfiano.net/mfiano/umbra")
15837 (commit commit)))
15838 (file-name (git-file-name "umbra" version))
15839 (sha256
15840 (base32 "04vyh2j00zdpb8ryxr8g81wjcmqlz9wrn55r3cypcj4qg970r5wi"))))
15841 (build-system asdf-build-system/sbcl)
15842 (inputs
15843 `(("golden-utils" ,sbcl-golden-utils)
15844 ("shadow" ,sbcl-shadow)
15845 ("varjo" ,sbcl-varjo)))
15846 (home-page "https://git.mfiano.net/mfiano/umbra")
15847 (synopsis "Common Lisp library of reusable GPU shader functions")
15848 (description
15849 "This is a Common Lisp library consisting of a collection of useful GPU
15850 shader functions, written with @code{Shadow}.")
15851 (license license:expat))))
15852
15853 (define-public ecl-umbra
15854 (sbcl-package->ecl-package sbcl-umbra))
15855
15856 (define-public cl-umbra
15857 (sbcl-package->cl-source-package sbcl-umbra))
15858
15859 (define-public sbcl-abstract-classes
15860 (let ((commit "7fa74f1e057f9ba7c1ffecff14f049f979e45267")
15861 (revision "1"))
15862 (package
15863 (name "sbcl-abstract-classes")
15864 (version (git-version "1.7.0" revision commit))
15865 (source
15866 (origin
15867 (method git-fetch)
15868 (uri (git-reference
15869 (url "https://bitbucket.org/eeeickythump/cl-abstract-classes")
15870 (commit commit)))
15871 (file-name (git-file-name "cl-abstract-classes" version))
15872 (sha256
15873 (base32 "06lby4i6xbbgs7kgb0f3fqybvyskyg6djhrf967lnysv7hn3zpg9"))))
15874 (build-system asdf-build-system/sbcl)
15875 (inputs
15876 `(("closer-mop" ,sbcl-closer-mop)))
15877 (arguments
15878 `(#:asd-systems '("abstract-classes" "singleton-classes")))
15879 (home-page "https://bitbucket.org/eeeickythump/cl-abstract-classes")
15880 (synopsis "Abstract, final, and singleton metaclasses for CLOS")
15881 (description
15882 "This package provides Common Lisp extension to the MOP to allow
15883 abstract, final and singleton classes.")
15884 (license license:public-domain))))
15885
15886 (define-public ecl-abstract-classes
15887 (sbcl-package->ecl-package sbcl-abstract-classes))
15888
15889 (define-public cl-abstract-classes
15890 (sbcl-package->cl-source-package sbcl-abstract-classes))
15891
15892 (define-public sbcl-coalton
15893 (let ((commit "4a42ffb4222fde3abfd1b50d96e455ff2eef9fe8")
15894 (revision "1"))
15895 (package
15896 (name "sbcl-coalton")
15897 (version (git-version "0.0.0" revision commit))
15898 (source
15899 (origin
15900 (method git-fetch)
15901 (uri (git-reference
15902 (url "https://github.com/stylewarning/coalton")
15903 (commit commit)))
15904 (file-name (git-file-name "coalton" version))
15905 (sha256
15906 (base32 "0aidwwam7cnhb3p9212zbv5w2dl6kr5iklzanypzr1a9lqaxwdlk"))))
15907 (build-system asdf-build-system/sbcl)
15908 (native-inputs
15909 `(("fiasco" ,sbcl-fiasco)))
15910 (inputs
15911 `(("abstract-classes" ,sbcl-abstract-classes)
15912 ("alexandria" ,sbcl-alexandria)
15913 ("global-vars" ,sbcl-global-vars)
15914 ("optima" ,sbcl-optima)
15915 ("trivial-garbage" ,sbcl-trivial-garbage)))
15916 (home-page "https://github.com/stylewarning/coalton")
15917 (synopsis "Dialect of ML in Common Lisp")
15918 (description
15919 "Coalton is a dialect of ML embedded in Common Lisp. It emphasizes
15920 practicality and interoperability with Lisp, and is intended to be a DSL that
15921 allows one to gradually make their programs safer.")
15922 (license license:expat))))
15923
15924 (define-public ecl-coalton
15925 (sbcl-package->ecl-package sbcl-coalton))
15926
15927 (define-public cl-coalton
15928 (sbcl-package->cl-source-package sbcl-coalton))
15929
15930 (define-public sbcl-clip
15931 (let ((commit "7afa68702fbb99c47ed115ea0faccd97a29d9b2e")
15932 (revision "1"))
15933 (package
15934 (name "sbcl-clip")
15935 (version (git-version "0.7.0" revision commit))
15936 (source
15937 (origin
15938 (method git-fetch)
15939 (uri (git-reference
15940 (url "https://github.com/shinmera/clip")
15941 (commit commit)))
15942 (file-name (git-file-name "clip" version))
15943 (sha256
15944 (base32 "13kkajkva2shm19fvn4yashsw18l6imv2rmy3hmpcky7g5ay7bv3"))))
15945 (build-system asdf-build-system/sbcl)
15946 (inputs
15947 `(("array-utils" ,sbcl-array-utils)
15948 ("lquery" ,sbcl-lquery)))
15949 (home-page "https://shinmera.github.io/clip/")
15950 (synopsis "Common Lisp HTML templating engine")
15951 (description
15952 "Clip is an attempt at a templating library that allows you to write
15953 templates in a way that is both accessible to direct webdesign and
15954 flexible. The main idea is to incorporate transformation commands into an HTML
15955 file through tags and attributes. Clip is heavily dependant on Plump and
15956 lQuery.")
15957 (license license:zlib))))
15958
15959 (define-public ecl-clip
15960 (sbcl-package->ecl-package sbcl-clip))
15961
15962 (define-public cl-clip
15963 (sbcl-package->cl-source-package sbcl-clip))