gnu: libretro-lowresnx: Update to 1.2.
[jackhill/guix/guix.git] / gnu / packages / lisp-xyz.scm
CommitLineData
88f06fd0
PN
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>
3c986a7d 6;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
88f06fd0 7;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca>
92afa57b 8;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
a13063d6 9;;; Copyright © 2017, 2018, 2019, 2020 Efraim Flashner <efraim@flashner.co.il>
88f06fd0
PN
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>
caa22090 13;;; Copyright © 2018, 2020, 2021 Pierre Neidhardt <mail@ambrevar.xyz>
88f06fd0 14;;; Copyright © 2018, 2019 Pierre Langlois <pierre.langlois@gmx.com>
20972e4e 15;;; Copyright © 2019, 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
88f06fd0 16;;; Copyright © 2019 Jesse Gildersleve <jessejohngildersleve@protonmail.com>
69c05267 17;;; Copyright © 2019, 2020, 2021 Guillaume Le Vaillant <glv@posteo.net>
7ae8c34b 18;;; Copyright © 2019 Brett Gilio <brettg@gnu.org>
c6397e3e 19;;; Copyright © 2020 Konrad Hinsen <konrad.hinsen@fastmail.net>
cfc9004e 20;;; Copyright © 2020 Dimakis Dimakakos <me@bendersteed.tech>
1fbd1b4c 21;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
b50a1442 22;;; Copyright © 2020, 2021 Adam Kandur <rndd@tuta.io>
288fe185 23;;; Copyright © 2020, 2021 Sharlatan Hellseher <sharlatanus@gmail.com>
06ab8948 24;;; Copyright © 2021 Aurora <rind38@disroot.org>
60528f9b 25;;; Copyright © 2021 Matthew Kraai <kraai@ftbfs.org>
073ae1b9 26;;; Copyright © 2021 André A. Gomes <andremegafone@gmail.com>
9e76de04 27;;; Copyright © 2021 Cage <cage-dev@twistfold.it>
8a625dd2 28;;; Copyright © 2021 Cameron Chaparro <cameron@cameronchaparro.com>
88f06fd0
PN
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)
7f29d778 60 #:use-module (gnu packages base)
88f06fd0
PN
61 #:use-module (gnu packages c)
62 #:use-module (gnu packages compression)
8a6c0f55 63 #:use-module (gnu packages databases)
2fa04968 64 #:use-module (gnu packages enchant)
3bd8d045 65 #:use-module (gnu packages file)
1c5901ae 66 #:use-module (gnu packages fonts)
ec2c73b8 67 #:use-module (gnu packages fontutils)
83ecb381 68 #:use-module (gnu packages gl)
88f06fd0
PN
69 #:use-module (gnu packages glib)
70 #:use-module (gnu packages gtk)
1cef75fa 71 #:use-module (gnu packages image)
d3a2df68 72 #:use-module (gnu packages imagemagick)
37b48dc1 73 #:use-module (gnu packages libevent)
88f06fd0 74 #:use-module (gnu packages libffi)
af55e2aa 75 #:use-module (gnu packages linux)
88f06fd0 76 #:use-module (gnu packages lisp)
064dbb71 77 #:use-module (gnu packages maths)
9c8ed43d 78 #:use-module (gnu packages mp3)
8768df2e 79 #:use-module (gnu packages ncurses)
a3f6c410 80 #:use-module (gnu packages networking)
88f06fd0
PN
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)
d3a2df68 85 #:use-module (gnu packages tcl)
88f06fd0 86 #:use-module (gnu packages tls)
336088d5 87 #:use-module (gnu packages video)
0d1c7c97 88 #:use-module (gnu packages web)
88f06fd0
PN
89 #:use-module (gnu packages webkit)
90 #:use-module (gnu packages xdisorg)
91 #:use-module (ice-9 match)
bdd3b1b2 92 #:use-module (srfi srfi-1)
88f06fd0
PN
93 #:use-module (srfi srfi-19))
94
95(define-public sbcl-alexandria
012bdf2e
GLV
96 (package
97 (name "sbcl-alexandria")
fcc9c5a5 98 (version "1.2")
012bdf2e
GLV
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
fcc9c5a5 107 "0bcqs0z9xlqgjz43qzgq9i07vdlnjllpm1wwa37wpkg0w975r712"))
012bdf2e
GLV
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
88f06fd0
PN
115conceptual extensions to Common Lisp. It is conservative in scope, and
116portable between implementations.")
012bdf2e
GLV
117 (home-page "https://common-lisp.net/project/alexandria/")
118 (license license:public-domain)))
88f06fd0
PN
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
f9c507bb
SH
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
156collection.")
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
c1ed3b04
AK
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
186implementation 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
ed39a7c1 195(define-public sbcl-golden-utils
b54fc8f5
SH
196 (let ((commit "62a5cb948a011eb26e7a89f56d5839a3334b4100")
197 (revision "2"))
ed39a7c1
SH
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)))
b54fc8f5 207 (file-name (git-file-name "golden-utils" version))
ed39a7c1 208 (sha256
b54fc8f5 209 (base32 "13mvxqwd1nmpq8h5hb1s60wyqdj7ji4haxrqr0sy3csyqa8aq2j8"))))
ed39a7c1
SH
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
14c00ab7
SH
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
253finalization of compile-time constructs while building Lisp source files.
254
255It 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
88f06fd0
PN
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
280ASDF. A file-local variable behaves like @code{*PACKAGE*} and
281@code{*READTABLE*} with respect to @code{LOAD} and @code{COMPILE-FILE}: a new
282dynamic binding is created before processing the file, so that any
283modification to the variable becomes essentially file-local.
284
285In 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
f42e54df
SH
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
317Unix-style command-line arguments. Use it in conjunction with asdf:program-op
318or 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
88f06fd0
PN
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
b0e7b699 335 (url "https://github.com/sionescu/fiveam")
88f06fd0
PN
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
347goes) regression testing framework. It has been designed with Common Lisp's
348interactive 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
3fef3cb8
A
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
389features (partial) DCC, CTCP and all relevant commands from the IRC
390RFCs (RFC2810, RFC2811 and RFC2812).
391
392Features:
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
102f668a
SH
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
436timeouts.")
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
88f06fd0 445(define-public sbcl-bordeaux-threads
5a647850
GLV
446 (package
447 (name "sbcl-bordeaux-threads")
d2a34eba 448 (version "0.8.8")
5a647850
GLV
449 (source (origin
450 (method git-fetch)
451 (uri (git-reference
b0e7b699 452 (url "https://github.com/sionescu/bordeaux-threads")
5a647850
GLV
453 (commit (string-append "v" version))))
454 (sha256
d2a34eba 455 (base32 "19i443fz3488v1pbbr9x24y8h8vlyhny9vj6c9jk5prm702awrp6"))
5a647850
GLV
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
88f06fd0
PN
463MP/Threading interface. It is similar to the CLIM-SYS threading and lock
464support.")
5a647850
GLV
465 (home-page "https://common-lisp.net/project/bordeaux-threads/")
466 (license license:x11)))
88f06fd0
PN
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")
f15cc738 476 (commit "ebd59b1afed03b9dc8544320f8f432fdf92ab010"))
88f06fd0
PN
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
b0e7b699 485 (url "https://github.com/trivial-gray-streams/trivial-gray-streams")
88f06fd0
PN
486 (commit commit)))
487 (sha256
f15cc738 488 (base32 "0b1pxlccmnagk9cbh4cy8s5k66g3x0gwib5shjwr24xvrji6lp94"))
88f06fd0
PN
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
494ANSI CL by David N. Gray. The proposal did not make it into ANSI CL, but most
495popular CL implementations implement it. This package provides an extremely
496thin compatibility layer for gray streams.")
0eecc9eb 497 (home-page "https://www.cliki.net/trivial-gray-streams")
88f06fd0
PN
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
b0e7b699 516 (url "https://github.com/joaotavora/fiasco")
88f06fd0
PN
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,
528logical 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")
6b0604fd 545 (version "1.0.18")
88f06fd0
PN
546 (source
547 (origin
548 (method git-fetch)
549 (uri (git-reference
b0e7b699 550 (url "https://github.com/edicl/flexi-streams")
88f06fd0
PN
551 (commit (string-append "v" version))))
552 (file-name (git-file-name "flexi-streams" version))
553 (sha256
6b0604fd 554 (base32 "0bjv7fd2acknidc5dyi3h85pn10krxv5jyxs1xg8jya2rlfv7f1j"))))
88f06fd0
PN
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
566streams that can be layered atop real binary or bivalent streams and that can
567be used to read and write character data in various single- or multi-octet
568encodings which can be changed on the fly. It also supplies in-memory binary
569streams 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
2ae30334
SH
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
604the ABNF grammar format as described in RFC2234. The generated parser is a
605regular expression scanner provided by the cl-ppcre lib, which means that we
606can't parse recursive grammar definition. One such definition is the ABNF
607definition as given by the RFC. Fortunately, as you have this lib, you most
608probably don't need to generate another parser to handle that particular ABNF
609grammar.")
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
88f06fd0
PN
618(define-public sbcl-cl-ppcre
619 (package
620 (name "sbcl-cl-ppcre")
6c874425 621 (version "2.1.1")
88f06fd0
PN
622 (source
623 (origin
624 (method git-fetch)
625 (uri (git-reference
b0e7b699 626 (url "https://github.com/edicl/cl-ppcre")
88f06fd0
PN
627 (commit (string-append "v" version))))
628 (file-name (git-file-name "cl-ppcre" version))
629 (sha256
6c874425 630 (base32 "0dwvr29diqzcg5n6jvbk2rnd90i05l7n828hhw99khmqd0kz7xsi"))))
88f06fd0 631 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
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)))))
88f06fd0
PN
644 (synopsis "Portable regular expression library for Common Lisp")
645 (description "CL-PPCRE is a portable regular expression library for Common
646Lisp, which is compatible with perl. It is pretty fast, thread-safe, and
647compatible 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
62248987
SH
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
1cf22d47
SH
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
707expression 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
582bc6a8
SH
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)))
1b7be882
GLV
734 (arguments
735 '(#:asd-systems '("ubiquitous"
736 "ubiquitous-concurrent")))
582bc6a8
SH
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
741configuration storage. It automatically takes care of finding a suitable place
742to save your data, and provides simple functions to access and modify the data
743within.")
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
14efb2f8 752(define-public sbcl-uax-15
064a7ea6
SH
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
778RFC7564.")
779 (license license:expat)))
14efb2f8
SH
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
2ff8b5ba 787(define-public sbcl-cl-unicode
6fdfef66 788 (package
2ff8b5ba 789 (name "sbcl-cl-unicode")
6fdfef66
GLV
790 (version "0.1.6")
791 (source (origin
792 (method git-fetch)
793 (uri (git-reference
b0e7b699 794 (url "https://github.com/edicl/cl-unicode")
6fdfef66
GLV
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)
2ff8b5ba
GLV
801 (native-inputs
802 `(("flexi-streams" ,sbcl-flexi-streams)))
6fdfef66
GLV
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
88f06fd0
PN
808is compatible with perl. It is pretty fast, thread-safe, and compatible with
809ANSI-compliant Common Lisp implementations.")
6fdfef66 810 (license license:bsd-2)))
88f06fd0 811
88f06fd0
PN
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
2ff8b5ba
GLV
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
3d8c8d15
GLV
836(define-public cl-ppcre-unicode
837 (sbcl-package->cl-source-package sbcl-cl-ppcre-unicode))
838
2ff8b5ba
GLV
839(define-public ecl-cl-ppcre-unicode
840 (sbcl-package->ecl-package sbcl-cl-ppcre-unicode))
841
92afa57b
RW
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
b0e7b699 850 (url "https://github.com/xach/zpb-ttf")
92afa57b
RW
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
861reading typographic metrics, glyph outlines, and other information from the
862file.")
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
2ff8b5ba 871(define-public sbcl-cl-vectors
64997728 872 (package
2ff8b5ba 873 (name "sbcl-cl-vectors")
64997728
RW
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)
0dbd7c3c 884 (inputs
2ff8b5ba
GLV
885 `(("zpb-ttf" ,sbcl-zpb-ttf)))
886 (arguments
3f8bbf7c 887 '(#:asd-systems '("cl-vectors"
2ff8b5ba
GLV
888 "cl-paths-ttf")))
889 (home-page "http://projects.tuxee.net/cl-vectors/")
94c621bd
RW
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
2ff8b5ba
GLV
893anti-aliased vectorial paths.")
894 (license license:expat)))
94c621bd
RW
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
7c62d384
RW
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
b0e7b699 913 (url "https://github.com/rpav/spatial-trees")
7c62d384
RW
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
7c62d384
RW
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
929spatially-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
5dfde3f5
RW
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
b0e7b699 949 (url "https://github.com/robert-strandh/Flexichain")
5dfde3f5
RW
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,
960allowing client code to dynamically add elements to, and delete elements from
961a 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
e088a010
RW
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
b0e7b699 981 (url "https://github.com/mbattyani/cl-pdf")
e088a010
RW
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
995files.")
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
88f06fd0
PN
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
b0e7b699 1013 (url "https://github.com/sharplispers/clx")
88f06fd0
PN
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)))
f0db7779 1022 (home-page "https://www.cliki.net/portable-clx")
88f06fd0
PN
1023 (synopsis "X11 client library for Common Lisp")
1024 (description "CLX is an X11 client library for Common Lisp. The code was
1025originally taken from a CMUCL distribution, was modified somewhat in order to
1026make it compile and run under SBCL, then a selection of patches were added
1027from 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
1fbd1b4c
OP
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)
1fbd1b4c
OP
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
1069antialiased TrueType font rendering using CLX and XRender extension.")
1070 (license license:expat))))
1071
d9bdde74
GLV
1072(define-public cl-clx-truetype
1073 (sbcl-package->cl-source-package sbcl-clx-truetype))
1074
e7cbcf5a
GLV
1075(define-public ecl-clx-truetype
1076 (sbcl-package->ecl-package sbcl-clx-truetype))
1077
2ff8b5ba 1078(define-public sbcl-slynk
d9f1752c 1079 (let ((commit "fb84318c08f59bc786e047006fc81e2ace568309"))
e53dcaef
PN
1080 (package
1081 (name "sbcl-slynk")
d9f1752c 1082 (version (git-version "1.0.43" "4" commit))
e53dcaef
PN
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
d9f1752c 1091 (base32 "0z123k9ak7yjb9bxb5qx48f33ma8066rhkqh8xc14z7shk75jybj"))
09bba548 1092 (file-name (git-file-name "slynk" version))))
e53dcaef
PN
1093 (build-system asdf-build-system/sbcl)
1094 (outputs '("out" "image"))
1095 (arguments
09bba548 1096 `(#:phases
e53dcaef
PN
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.
88f06fd0 1117It also features a completely redesigned REPL based on Emacs's own
c3c63352 1118full-featured @code{comint-mode}, live code annotations, and a consistent interactive
88f06fd0
PN
1119button interface. Everything can be copied to the REPL. One can create
1120multiple inspectors with independent history.")
e53dcaef
PN
1121 (home-page "https://github.com/joaotavora/sly")
1122 (license license:public-domain)
1123 (properties `((cl-source-variant . ,(delay cl-slynk)))))))
88f06fd0
PN
1124
1125(define-public cl-slynk
b6c55a72 1126 (sbcl-package->cl-source-package sbcl-slynk))
88f06fd0 1127
88f06fd0 1128(define-public ecl-slynk
b6c55a72
GLV
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))))))))
88f06fd0
PN
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)
9ca4c654 1156 (home-page "https://marijnhaverbeke.nl/parse-js/")
88f06fd0
PN
1157 (synopsis "Parse JavaScript")
1158 (description "Parse-js is a Common Lisp package for parsing
1159JavaScript (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
e7cbcf5a
GLV
1165(define-public ecl-parse-js
1166 (sbcl-package->ecl-package sbcl-parse-js))
1167
88f06fd0
PN
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)
fed4ff33 1183 (home-page "https://www.cliki.net/PARSE-NUMBER")
88f06fd0
PN
1184 (synopsis "Parse numbers")
1185 (description "@code{parse-number} is a library of functions for parsing
1186strings into one of the standard Common Lisp number types without using the
1187reader. @code{parse-number} accepts an arbitrary string and attempts to parse
1188the string into one of the standard Common Lisp number types, if possible, or
1189else @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
e7cbcf5a
GLV
1195(define-public ecl-parse-number
1196 (sbcl-package->ecl-package sbcl-parse-number))
1197
88f06fd0
PN
1198(define-public sbcl-iterate
1199 (package
1200 (name "sbcl-iterate")
f36ec871 1201 (version "1.5")
88f06fd0
PN
1202 (source
1203 (origin
1204 (method url-fetch)
f36ec871
GLV
1205 (uri (string-append "https://common-lisp.net/project/iterate/releases/"
1206 "iterate-" version ".tar.gz"))
88f06fd0
PN
1207 (sha256
1208 (base32
f36ec871 1209 "1lqsbhrkfl0yif46aymvb7l3nb9wdcmj4jyw485blj32jb4famzn"))))
88f06fd0
PN
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.
1216It 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
b0e7b699 1243 (url "https://github.com/mishoo/cl-uglify-js")
88f06fd0
PN
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
1259compressor. 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
12df8b7b
GLV
1276(define-public ecl-cl-uglify-js
1277 (sbcl-package->ecl-package sbcl-cl-uglify-js))
1278
ba42da24
PN
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
2ff8b5ba 1294
ba42da24 1295 (require :asdf)
2ff8b5ba
GLV
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/\")"
ba42da24 1300 (assoc-ref %build-inputs "sbcl")
2ff8b5ba 1301 (assoc-ref %build-inputs "sbcl-cl-uglify-js")
ba42da24
PN
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
88f06fd0
PN
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
1351utilities that make it even easier to manipulate text in Common Lisp. It has
1352100% 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
c75e3494
PN
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
b0e7b699 1372 (url "https://github.com/trivial-features/trivial-features")
c75e3494
PN
1373 (commit commit)))
1374 (file-name (git-file-name "trivial-features" version))
1375 (sha256
1376 (base32 "14pcahr8r2j3idhyy216zyw8jnj1dnrx0qbkkbdqkvwzign1ah4j"))))
1377 (build-system asdf-build-system/sbcl)
3f8bbf7c
GLV
1378 (arguments
1379 '(#:asd-files '("trivial-features.asd")
1380 #:tests? #f))
c75e3494
PN
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
88f06fd0 1384consistent across multiple Common Lisp implementations.")
c75e3494 1385 (license license:expat))))
88f06fd0
PN
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
4a9cb7a4
PN
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
88f06fd0 1412documentation system, explicit development support, etc.")
4a9cb7a4 1413 (license license:public-domain))))
88f06fd0
PN
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
f72caafc 1422 (let ((commit "414902c6f575818c39a8a156b8b61b1adfa73dad"))
88f06fd0
PN
1423 (package
1424 (name "sbcl-hu.dwim.stefil")
f72caafc 1425 (version (git-version "0.0.0" "2" commit))
88f06fd0
PN
1426 (source
1427 (origin
1428 (method git-fetch)
1429 (uri
1430 (git-reference
f72caafc 1431 (url "https://github.com/hu-dwim/hu.dwim.stefil")
88f06fd0
PN
1432 (commit commit)))
1433 (sha256
f72caafc 1434 (base32 "14izmjjim590rh74swrssavdmdznj2z8vhqixy780sjhpcr5pmkc"))
88f06fd0
PN
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)))
f72caafc 1441 (home-page "http://dwim.hu/project/hu.dwim.stefil")
88f06fd0
PN
1442 (synopsis "Simple test framework")
1443 (description "Stefil is a simple test framework for Common Lisp,
1444with 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
8e596809
PN
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
b0e7b699 1463 (url "https://github.com/cl-babel/babel")
8e596809
PN
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
88f06fd0 1477GNU libiconv, but completely written in Common Lisp.")
8e596809 1478 (license license:expat))))
88f06fd0
PN
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
3f8bbf7c 1502 `(#:asd-systems '("yacc")))
88f06fd0
PN
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
1506to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.
1507
1508CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used
1509by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due
1510to 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
974b94ae
PN
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
1542concurrency primitives that unify parallel and lazy evaluation, are integrated
1543with the Common Lisp condition system, and have automatic resource
1544management.")
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
88f06fd0
PN
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
1575and 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
f7174a28
SH
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
f65b1b52
SH
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
1635pure 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
9fcd3e4c
SH
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
1668that are seedable with deterministic results across hardware and Common Lisp
1669implementations.")
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
88f06fd0
PN
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
1709Additionally, a synchronization wrapper is provided to make any queue
1710conforming to the @command{jpl-queues} API thread-safe for lightweight
1711multithreading applications. (See Calispel for a more sophisticated CL
1712multithreaded message-passing library with timeouts and alternation among
1713several 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
5ff25d15
PN
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
1749channels, in the style of the occam programming language, also known as
1750communicating sequential processes (CSP). See
1751@url{https://en.wikipedia.org/wiki/Communicating_sequential_processes}.
1752
1753Calispel channels let one thread communicate with another, facilitating
1754unidirectional communication of any Lisp object. Channels may be unbuffered,
1755where a sender waits for a receiver (or vice versa) before either operation can
1756continue, or channels may be buffered with flexible policy options.
1757
1758Because sending and receiving on a channel may block, either operation can time
1759out after a specified amount of time.
1760
1761A 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
1763block, alternation selects the first operation that doesn't block and executes
1764associated code. Alternation can also time out, executing an \"otherwise\"
1765clause if no operation becomes available within a set amount of time.
1766
1767Calispel is a message-passing library, and as such leaves the role of
1768threading abstractions and utilities left to be filled by complementary
1769libraries 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
88f06fd0 1779(define-public sbcl-eos
c203be27
GLV
1780 (let ((commit "b4413bccc4d142cbe1bf49516c3a0a22c9d99243")
1781 (revision "2"))
88f06fd0
PN
1782 (package
1783 (name "sbcl-eos")
c203be27 1784 (version (git-version "0.0.0" revision commit))
88f06fd0
PN
1785 (source
1786 (origin
1787 (method git-fetch)
1788 (uri (git-reference
1789 (url "https://github.com/adlai/Eos")
1790 (commit commit)))
1791 (sha256
c203be27 1792 (base32 "1afllvmlnx97yzz404gycl3pa3kwx427k3hrbf37rpmjlv47knhk"))
88f06fd0
PN
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.
1798It began as a fork of FiveAM; however, FiveAM development has continued, while
1799that 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
85eaafaf
GLV
1810 (let ((commit "da6b24fb18bdb8e7e177bcf2820cdaf0b560deb6")
1811 (revision "1"))
88f06fd0
PN
1812 (package
1813 (name "sbcl-esrap")
85eaafaf 1814 (version (git-version "0.18" revision commit))
88f06fd0
PN
1815 (source
1816 (origin
1817 (method git-fetch)
1818 (uri (git-reference
85eaafaf 1819 (url "https://github.com/scymtym/esrap")
88f06fd0
PN
1820 (commit commit)))
1821 (sha256
85eaafaf 1822 (base32 "12vf3bxwzf8icnf6rw1xalvm7493cfbb46r2vlhc09s59djkf39q"))
88f06fd0
PN
1823 (file-name (git-file-name "esrap" version))))
1824 (build-system asdf-build-system/sbcl)
1825 (native-inputs
85eaafaf 1826 `(("fiveam" ,sbcl-fiveam)))
88f06fd0
PN
1827 (inputs
1828 `(("alexandria" ,sbcl-alexandria)))
1829 (synopsis "Common Lisp packrat parser")
1830 (description
85eaafaf 1831 "This is a packrat parser for Common Lisp.
88f06fd0
PN
1832In 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)
85eaafaf
GLV
1839@item left-recursive grammars
1840@item functions as terminals
1841@item accurate, customizable parse error reports
88f06fd0 1842@end itemize\n")
85eaafaf 1843 (home-page "https://scymtym.github.io/esrap/")
88f06fd0
PN
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")
92da0588 1855 (version "2.0.0")
88f06fd0
PN
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
92da0588 1864 "0jcpnx21hkfwqj5fvp7kc6pn1qcz9hk7g2s5x8h0349x1j2irln0"))
88f06fd0
PN
1865 (file-name (git-file-name "split-sequence" version))))
1866 (build-system asdf-build-system/sbcl)
92da0588
GLV
1867 (native-inputs
1868 `(("fiveam" ,sbcl-fiveam)))
88f06fd0
PN
1869 (synopsis "Member of the Common Lisp Utilities family of programs")
1870 (description
1871 "Splits sequence into a list of subsequences delimited by objects
1872satisfying 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
1932supporting the following languages: Common Lisp, Emacs Lisp, Scheme, Clojure,
1933C, 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
80546d54
SH
1945 (let ((commit "6fc5759448f6f6df6f6df556e020a289a2643288")
1946 (revision "2"))
88f06fd0
PN
1947 (package
1948 (name "sbcl-3bmd")
80546d54 1949 (version (git-version "0.0.0" revision commit))
88f06fd0
PN
1950 (source
1951 (origin
1952 (method git-fetch)
1953 (uri (git-reference
1954 (url "https://github.com/3b/3bmd")
1955 (commit commit)))
1956 (sha256
80546d54 1957 (base32 "1avmbp8xdjlbqpqk7p3vmj7abiw5p3vb5mrxp4wlvgql4sf6z3p4"))
88f06fd0
PN
1958 (file-name (git-file-name "3bmd" version))))
1959 (build-system asdf-build-system/sbcl)
1960 (arguments
80546d54
SH
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")))
88f06fd0 1970 (inputs
80546d54
SH
1971 `(("alexandria" ,sbcl-alexandria)
1972 ("colorize" ,sbcl-colorize)
2ff8b5ba 1973 ("esrap" ,sbcl-esrap)
88f06fd0 1974 ("split-sequence" ,sbcl-split-sequence)))
80546d54 1975 (home-page "https://github.com/3b/3bmd")
88f06fd0
PN
1976 (synopsis "Markdown processor in Command Lisp using esrap parser")
1977 (description
80546d54
SH
1978 "This is a Common Lisp Markdown to HTML converter, using @command{esrap}
1979for parsing, and grammar based on @command{peg-markdown}.")
88f06fd0
PN
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
88f06fd0
PN
1988(define-public sbcl-cl-fad
1989 (package
1990 (name "sbcl-cl-fad")
f0d9eaca 1991 (version "0.7.6")
88f06fd0
PN
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
f0d9eaca 2000 "1gc8i82v6gks7g0lnm54r4prk2mklidv2flm5fvbr0a7rsys0vpa"))
88f06fd0
PN
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
2008Lisp's standard pathname functions. It is intended to provide some
2009unification between current CL implementations on Windows, OS X, Linux, and
2010Unix. Most of the code was written by Peter Seibel for his book Practical
2011Common 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
84aef839
SH
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
2043to be used in cases where the word @emph{lambda} and the arguments are longer
2044than 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
88f06fd0 2053(define-public sbcl-rt
e81b0719
GLV
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))))
88f06fd0
PN
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
b8d4568b
GLV
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
88f06fd0
PN
2105have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned
2106flavors. Common Lisp sort of supports this by specifying :element-type for
2107streams, but that facility is underspecified and there's nothing similar for
2108read/write from octet vectors. What most people wind up doing is rolling their
2109own small facility for their particular needs and calling it a day.
2110
2111This library attempts to be comprehensive and centralize such
2112facilities. Functions to read 16-, 32-, and 64-bit quantities from octet
2113vectors in signed or unsigned flavors are provided; these functions are also
2114SETFable. Since it's sometimes desirable to read/write directly from streams,
2115functions for doing so are also provided. On some implementations,
2116reading/writing IEEE singles/doubles (i.e. single-float and double-float) will
2117also be supported.")
b8d4568b
GLV
2118 (home-page "https://github.com/sharplispers/nibbles")
2119 (license license:bsd-3))))
88f06fd0
PN
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")
7c9016bb 2130 (version "0.55")
88f06fd0
PN
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
7c9016bb 2138 (base32 "1w4slnc4143w1gcff1wxsivzb8kcji0bpd7y9rld3sabay0qprwl"))
88f06fd0
PN
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)
d2a9a39c 2146 ("flexi-streams" ,sbcl-flexi-streams)))
88f06fd0
PN
2147 (synopsis "Cryptographic toolkit written in Common Lisp")
2148 (description
2149 "Ironclad is a cryptography library written entirely in Common Lisp.
2150It includes support for several popular ciphers, digests, MACs and public key
2151cryptography algorithms. For several implementations that support Gray
2152streams, 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
905b6235
SH
2163 (let ((commit "585a28eee8b1b1999279b48cb7e9731187e14b66")
2164 (revision "3"))
88f06fd0
PN
2165 (package
2166 (name "sbcl-named-readtables")
438d8113 2167 (version (git-version "0.9" revision commit))
88f06fd0
PN
2168 (source
2169 (origin
2170 (method git-fetch)
2171 (uri (git-reference
b0e7b699 2172 (url "https://github.com/melisgl/named-readtables")
88f06fd0
PN
2173 (commit commit)))
2174 (sha256
905b6235 2175 (base32 "072p5djqq9pliw9r20rmpz5r5q5yn6rhbp98vkkp7gfcnp5ppj51"))
88f06fd0
PN
2176 (file-name (git-file-name "named-readtables" version))))
2177 (build-system asdf-build-system/sbcl)
88f06fd0
PN
2178 (home-page "https://github.com/melisgl/named-readtables/")
2179 (synopsis "Library that creates a namespace for named readtables")
905b6235
SH
2180 (description
2181 "Named readtables is a library that creates a namespace for named
2182readtables, which is akin to package namespacing in Common Lisp.")
88f06fd0
PN
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
288fe185
SH
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
2212Python module functionality in Common Lisp. In short, it implements reading
2213and writing of .INI-file style configuration files with sections containing
2214key/value pairs of configuration options. In line with the functionalities in
2215the python module, does this package implement basic interpolation of option
2216values 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
88f06fd0
PN
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
2245simpler to input string literals which contain backslashes and double quotes
2246This is very useful for writing complicated docstrings and, as it turns out,
2247writing 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
2ff8b5ba 2256(define-public sbcl-slime-swank
88f06fd0 2257 (package
2ff8b5ba 2258 (name "sbcl-slime-swank")
c35403cc 2259 (version "2.26")
88f06fd0
PN
2260 (source
2261 (origin
2ff8b5ba 2262 (file-name (git-file-name "slime-swank" version))
88f06fd0
PN
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
c35403cc 2269 "0mxb1wnw19v0s72w2wkz5afdlzvpy5nn7pr4vav403qybac0sw5c"))))
2ff8b5ba
GLV
2270 (build-system asdf-build-system/sbcl)
2271 (arguments
3f8bbf7c 2272 '(#:asd-systems '("swank")))
88f06fd0
PN
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
2277processes 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
2ff8b5ba
GLV
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))
88f06fd0
PN
2286
2287(define-public sbcl-mgl-pax
81c1d127
SH
2288 (let ((commit "4ada6eb26364e71addb169ce58e4ba83bc7a8eaa")
2289 (revision "2"))
88f06fd0
PN
2290 (package
2291 (name "sbcl-mgl-pax")
81c1d127 2292 (version (git-version "0.0.3" revision commit))
88f06fd0
PN
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
81c1d127 2300 (base32 "1s38crgvmd9hgqwsscqpj6m6c10a074zjgg8k5sl15yih1wkpssm"))
88f06fd0
PN
2301 (file-name (git-file-name "mgl-pax" version))))
2302 (build-system asdf-build-system/sbcl)
2303 (inputs
2304 `(("3bmd" ,sbcl-3bmd)
88f06fd0
PN
2305 ("babel" ,sbcl-babel)
2306 ("cl-fad" ,sbcl-cl-fad)
2307 ("ironclad" ,sbcl-ironclad)
2308 ("named-readtables" ,sbcl-named-readtables)
2ff8b5ba
GLV
2309 ("pythonic-string-reader" ,sbcl-pythonic-string-reader)
2310 ("swank" ,sbcl-slime-swank)))
88f06fd0
PN
2311 (synopsis "Exploratory programming environment and documentation generator")
2312 (description
2313 "PAX provides an extremely poor man's Explorable Programming
2314environment. Narrative primarily lives in so called sections that mix markdown
2315docstrings with references to functions, variables, etc, all of which should
2316probably have their own docstrings.
2317
2318The primary focus is on making code easily explorable by using SLIME's
2319@command{M-.} (@command{slime-edit-definition}). See how to enable some
2320fanciness in Emacs Integration. Generating documentation from sections and all
2321the referenced items in Markdown or HTML format is also implemented.
2322
2323With the simplistic tools provided, one may accomplish similar effects as with
2324Literate Programming, but documentation is generated from code, not vice versa
2325and there is no support for chunking yet. Code is first, code must look
2326pretty, 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
81c1d127 2334 (sbcl-package->ecl-package sbcl-mgl-pax))
88f06fd0 2335
88eb5370
SH
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
2371server. It uses the @code{libsybdb} foreign library provided by the FreeTDS
2372project.")
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
88f06fd0
PN
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
2400testing. 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
2430new 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
a6179f68
SH
2442 (let ((commit "2594160d6ca3a77d8750110dfa63214256aab852")
2443 (revision "2"))
88f06fd0
PN
2444 (package
2445 (name "sbcl-lift")
a6179f68 2446 (version (git-version "1.7.1" revision commit))
88f06fd0
PN
2447 (source
2448 (origin
2449 (method git-fetch)
2450 (uri (git-reference
2451 (url "https://github.com/gwkkwg/lift")
2452 (commit commit)))
2453 (sha256
a6179f68 2454 (base32 "01xvz9sl5l5lai4h9dabmcjnm659wf5zllaxqbs55lffskp6jwq3"))
88f06fd0
PN
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.
2469Though inspired by SUnit and JUnit, it's built with Lisp in mind. In LIFT,
2470testcases are organized into hierarchical testsuites each of which can have
2471its own fixture. When run, a testcase can succeed, fail, or error. LIFT
2472supports 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
2506extension of let*. It features:
2507
2508@itemize
2509@item Clean, consistent syntax and small implementation (less than 300 LOC,
2510not 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
2550hexadecimal representation for RGB).
2551@item Some predefined colors (currently X11 color names – of course the
2552library does not depend on X11).Because color in your terminal is nice.
2553@end itemize
2554
2555This 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
2589ANSI terminal with colored text. It provides the macro @command{with-color}
2590which causes everything printed in the body to be displayed with the provided
2591color. It further provides functions which will print the argument with the
2592named 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
2ff8b5ba 2602(define-public sbcl-prove
88f06fd0
PN
2603 (let ((commit "4f9122bd393e63c5c70c1fba23070622317cfaa0"))
2604 (package
2ff8b5ba 2605 (name "sbcl-prove")
88f06fd0
PN
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)
2ff8b5ba
GLV
2618 (inputs
2619 `(("alexandria" ,sbcl-alexandria)
2620 ("cl-ppcre" ,sbcl-cl-ppcre)
2621 ("cl-ansi-text" ,sbcl-cl-ansi-text)))
2ff8b5ba 2622 (synopsis "Yet another unit testing framework for Common Lisp")
88f06fd0 2623 (description
2ff8b5ba 2624 "This project was originally called @command{cl-test-more}.
88f06fd0
PN
2625@command{prove} is yet another unit testing framework for Common Lisp. The
2626advantages 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
2ff8b5ba
GLV
2634@end itemize\n")
2635 (home-page "https://github.com/fukamachi/prove")
2636 (license license:expat))))
88f06fd0
PN
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
2ff8b5ba 2664 `(("prove" ,sbcl-prove)))
88f06fd0
PN
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
2671readability in mind. Unlike other libraries, the code is not a
2672pattern-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
65454c1c
SH
2683 (let ((commit "3074765101e41222b6b624a66aaf1e6416379f9c")
2684 (revision "2"))
88f06fd0
PN
2685 (package
2686 (name "sbcl-parse-float")
65454c1c 2687 (version (git-version "0.0.0" revision commit))
88f06fd0
PN
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
65454c1c 2695 (base32 "0jd2spawc3v8vzqf8ky4cngl45jm65fhkrdf20mf6dcbn3mzpkmr"))
88f06fd0
PN
2696 (file-name (git-file-name "proc-parse" version))))
2697 (build-system asdf-build-system/sbcl)
88f06fd0 2698 (arguments
65454c1c
SH
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")
88f06fd0
PN
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
2709values from a string in Common Lisp.")
88f06fd0
PN
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
2ff8b5ba 2718(define-public sbcl-cl-string-match
88f06fd0
PN
2719 (let ((revision "1")
2720 (changeset "5048480a61243e6f1b02884012c8f25cdbee6d97"))
2721 (package
2ff8b5ba
GLV
2722 (name "sbcl-cl-string-match")
2723 (version (git-version "0" revision changeset))
88f06fd0
PN
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)
2ff8b5ba
GLV
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)))
88f06fd0 2749 (arguments
3f8bbf7c 2750 `(#:tests? #f))
2ff8b5ba 2751 (synopsis "Set of utilities to manipulate strings in Common Lisp")
88f06fd0 2752 (description
2ff8b5ba
GLV
2753 "@command{cl-strings} is a small, portable, dependency-free set of
2754utilities that make it even easier to manipulate text in Common Lisp. It has
2755100% test coverage and works at least on sbcl, ecl, ccl, abcl and clisp.")
88f06fd0
PN
2756 (home-page "https://bitbucket.org/vityok/cl-string-match/")
2757 (license license:bsd-3))))
2758
88f06fd0
PN
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
d9d8e3c2
GLV
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
88f06fd0 2785tester module.")
d9d8e3c2 2786 (license license:llgpl))))
88f06fd0
PN
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
e05a36a8
SH
2795 (let ((commit "4bbab89d9ccbb26346899d1f496c97604fec567b")
2796 (revision "2"))
ff6cf9fa
GLV
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)))
e05a36a8 2806 (file-name (git-file-name "puri" version))
ff6cf9fa 2807 (sha256
e05a36a8 2808 (base32 "0gq2rsr0aihs0z20v4zqvmdl4szq53b52rh97pvnmwrlbn4mapmd"))))
ff6cf9fa
GLV
2809 (build-system asdf-build-system/sbcl)
2810 (native-inputs
2811 `(("ptester" ,sbcl-ptester)))
e05a36a8 2812 (home-page "http://puri.kpe.io/")
ff6cf9fa
GLV
2813 (synopsis "Portable URI Library")
2814 (description
2815 "This is a portable Universal Resource Identifier library for Common
2816Lisp programs. It parses URI according to the RFC 2396 specification.")
2817 (license license:llgpl))))
88f06fd0
PN
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
10c06966
SH
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
2855library that directly talks to a MySQL server in its native network protocol.
2856
2857It'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
88f06fd0
PN
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)
2ff8b5ba
GLV
2882 (inputs
2883 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
2884 (arguments
3f8bbf7c 2885 '(#:asd-systems '("queues"
2ff8b5ba
GLV
2886 "queues.simple-queue"
2887 "queues.simple-cqueue"
2888 "queues.priority-queue"
2889 "queues.priority-cqueue")))
88f06fd0
PN
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
2894non-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
0ce63d11
SH
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
2925a 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
a1dd7c3b
SH
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
2956from 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
4f4ea082
SH
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
2989for 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
091ce05e
SH
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
3029compiles. It aims to be as close to Common Lisp as possible, but naturally it
3030is 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
2ff8b5ba 3039(define-public sbcl-cffi
88f06fd0 3040 (package
2ff8b5ba 3041 (name "sbcl-cffi")
06ab8948 3042 (version "0.23.0")
88f06fd0
PN
3043 (source
3044 (origin
3045 (method git-fetch)
3046 (uri (git-reference
b0e7b699 3047 (url "https://github.com/cffi/cffi")
88f06fd0
PN
3048 (commit (string-append "v" version))))
3049 (file-name (git-file-name "cffi-bootstrap" version))
3050 (sha256
06ab8948 3051 (base32 "03s98imc5niwnpj3hhrafl7dmxq45g74h96sm68976k7ahi3vl5b"))))
88f06fd0
PN
3052 (build-system asdf-build-system/sbcl)
3053 (inputs
2ff8b5ba 3054 `(("alexandria" ,sbcl-alexandria)
88f06fd0 3055 ("babel" ,sbcl-babel)
2ff8b5ba 3056 ("libffi" ,libffi)
88f06fd0
PN
3057 ("trivial-features" ,sbcl-trivial-features)))
3058 (native-inputs
2ff8b5ba
GLV
3059 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3060 ("pkg-config" ,pkg-config)
3061 ("rt" ,sbcl-rt)))
88f06fd0
PN
3062 (arguments
3063 '(#:phases
3064 (modify-phases %standard-phases
a13063d6
EF
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))
88f06fd0
PN
3071 (add-after 'unpack 'fix-paths
3072 (lambda* (#:key inputs #:allow-other-keys)
3073 (substitute* "libffi/libffi.lisp"
25a2f2ef 3074 (("libffi.so.7" all) (string-append
88f06fd0
PN
3075 (assoc-ref inputs "libffi")
3076 "/lib/" all)))
3077 (substitute* "toolchain/c-toolchain.lisp"
2ff8b5ba
GLV
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")))
88f06fd0
PN
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)
3096purports to be a portable foreign function interface for Common Lisp.
3097The CFFI library is composed of a Lisp-implementation-specific backend
3098in the CFFI-SYS package, and a portable frontend in the CFFI
3099package.")
3100 (license license:expat)))
3101
2ff8b5ba
GLV
3102(define-public cl-cffi
3103 (sbcl-package->cl-source-package sbcl-cffi))
88f06fd0 3104
2ff8b5ba
GLV
3105(define-public ecl-cffi
3106 (sbcl-package->ecl-package sbcl-cffi))
88f06fd0 3107
f9dd7683
AK
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
2ff8b5ba 3139(define-public sbcl-cl-sqlite
b7d974b3
PN
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
3f8bbf7c 3162 `(#:asd-systems '("sqlite")
b7d974b3
PN
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
88f06fd0 3174relational database engine.")
b7d974b3 3175 (license license:public-domain)))
88f06fd0
PN
3176
3177(define-public cl-sqlite
3178 (sbcl-package->cl-source-package sbcl-cl-sqlite))
3179
12df8b7b
GLV
3180(define-public ecl-cl-sqlite
3181 (sbcl-package->ecl-package sbcl-cl-sqlite))
3182
88f06fd0 3183(define-public sbcl-parenscript
a84b7a4a
PN
3184 ;; Source archives are overwritten on every release, we use the Git repo instead.
3185 (let ((commit "7a1ac46353cecd144fc91915ba9f122aafcf4766"))
88f06fd0
PN
3186 (package
3187 (name "sbcl-parenscript")
a84b7a4a 3188 (version (git-version "2.7.1" "1" commit))
88f06fd0
PN
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
a84b7a4a 3198 "0c22lqarrpbq82dg1sb3y6mp6w2faczp34ymzhnmff88yfq1xzsf"))))
88f06fd0
PN
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
3208JavaScript. Parenscript code can run almost identically on both the
3209browser (as JavaScript) and server (as Common Lisp).
3210
3211Parenscript code is treated the same way as Common Lisp code, making the full
3212power of Lisp macros available for JavaScript. This provides a web
3213development environment that is unmatched in its ability to reduce code
3214duplication and provide advanced meta-programming facilities to web
3215developers.
3216
3217At the same time, Parenscript is different from almost all other \"language
3218X\" 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
3222as-is. There are no JavaScript files to include.
3223@item Native types: Parenscript works entirely with native JavaScript data
3224types. There are no new types introduced, and object prototypes are not
3225touched.
3226@item Native calling convention: Any JavaScript code can be called without the
3227need for bindings. Likewise, Parenscript can be used to make efficient,
3228self-contained JavaScript libraries.
3229@item Readable code: Parenscript generates concise, formatted, idiomatic
3230JavaScript code. Identifier names are preserved. This enables seamless
3231debugging in tools like Firebug.
3232@item Efficiency: Parenscript introduces minimal overhead for advanced Common
3233Lisp features. The generated code is almost as fast as hand-written
3234JavaScript.
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
3266and a corresponding decoder of JSON data to Lisp objects. Both the encoder
3267and the decoder are highly customizable; at the same time, the default
3268settings 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
3297advantage of the library is the ability to concisely define command line
3298options once and then use this definition for parsing and extraction of
3299command line arguments, as well as printing description of command line
3300options (you get --help for free). This way you don't need to repeat
102fc7bc
VC
3301yourself. Also, @command{unix-opts} doesn't depend on anything and
3302precisely controls the behavior of the parser via Common Lisp restarts.")
88f06fd0
PN
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
b0e7b699 3319 (url "https://github.com/trivial-garbage/trivial-garbage")
88f06fd0
PN
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
3330finalizers, weak hash-tables and weak pointers on all major implementations of
3331the 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
d4c04565 3341 (let ((commit "19c9d33f576e10715fd79cc1d4f688dab0f241d6"))
88f06fd0
PN
3342 (package
3343 (name "sbcl-closer-mop")
d4c04565 3344 (version (git-version "1.0.0" "2" commit))
88f06fd0
PN
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
d4c04565 3352 (base32 "1w3x087wvlwkd6swfdgbvjfs6kazf0la8ax4pjfzikwjch4snn2c"))
88f06fd0
PN
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
3358of the absent or incorrect CLOS MOP features across a broad range of Common
3359Lisp 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
2ff8b5ba 3368(define-public sbcl-cl-cffi-gtk
fd689a83 3369 (let ((commit "e9a46df65995d9a16e6c8dbdc1e09b775eb4a966"))
88f06fd0 3370 (package
2ff8b5ba 3371 (name "sbcl-cl-cffi-gtk")
fd689a83 3372 (version (git-version "0.11.2" "2" commit))
88f06fd0
PN
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
fd689a83 3382 "04vix0gmqsj91lm975sx7jhlnz5gq1xf9jp873mp7c8frc5dk1jj"))))
88f06fd0 3383 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
3384 (native-inputs
3385 `(("fiveam" ,sbcl-fiveam)))
88f06fd0 3386 (inputs
2ff8b5ba
GLV
3387 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3388 ("cairo" ,cairo)
88f06fd0 3389 ("cffi" ,sbcl-cffi)
2ff8b5ba
GLV
3390 ("closer-mop" ,sbcl-closer-mop)
3391 ("gdk-pixbuf" ,gdk-pixbuf)
0fadc00a 3392 ("glib" ,glib)
2ff8b5ba
GLV
3393 ("gtk" ,gtk+)
3394 ("iterate" ,sbcl-iterate)
0fadc00a 3395 ("pango" ,pango)
2ff8b5ba
GLV
3396 ("trivial-features" ,sbcl-trivial-features)
3397 ("trivial-garbage" ,sbcl-trivial-garbage)))
0fadc00a 3398 (arguments
2ff8b5ba
GLV
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")
2ff8b5ba
GLV
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
0fadc00a
PN
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))))))))
88f06fd0
PN
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
3443is a library for creating graphical user interfaces.")
3444 (license license:lgpl3))))
3445
88f06fd0
PN
3446(define-public cl-cffi-gtk
3447 (sbcl-package->cl-source-package sbcl-cl-cffi-gtk))
3448
e7cbcf5a
GLV
3449(define-public ecl-cl-cffi-gtk
3450 (sbcl-package->ecl-package sbcl-cl-cffi-gtk))
3451
88f06fd0 3452(define-public sbcl-cl-webkit
8a32b6a5 3453 (let ((commit "db855639d4a13f6ba296959cf11635b6b67421bf"))
88f06fd0
PN
3454 (package
3455 (name "sbcl-cl-webkit")
8a32b6a5 3456 (version (git-version "2.4" "13" commit))
88f06fd0
PN
3457 (source
3458 (origin
3459 (method git-fetch)
3460 (uri (git-reference
94aab844 3461 (url "https://github.com/joachifm/cl-webkit")
88f06fd0
PN
3462 (commit commit)))
3463 (file-name (git-file-name "cl-webkit" version))
3464 (sha256
3465 (base32
8a32b6a5 3466 "01alj5bfsh2983pwpdy0zpa2rvl4kl0mqzs08ff46is3cb8fqs0g"))))
88f06fd0
PN
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
3f8bbf7c 3473 `(#:asd-systems '("cl-webkit2")
88f06fd0
PN
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))))))))
94aab844 3482 (home-page "https://github.com/joachifm/cl-webkit")
88f06fd0
PN
3483 (synopsis "Binding to WebKitGTK+ for Common Lisp")
3484 (description
3485 "@command{cl-webkit} is a binding to WebKitGTK+ for Common Lisp,
3486currently targeting WebKit version 2. The WebKitGTK+ library adds web
3487browsing capabilities to an application, leveraging the full power of the
3488WebKit browsing engine.")
3489 (license license:expat))))
3490
3491(define-public cl-webkit
3492 (sbcl-package->cl-source-package sbcl-cl-webkit))
3493
12df8b7b
GLV
3494(define-public ecl-cl-webkit
3495 (sbcl-package->ecl-package sbcl-cl-webkit))
3496
88f06fd0
PN
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)))
388a8975
KCB
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"))))))))
88f06fd0
PN
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
3531Lisp, 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
6ca66f64
GLV
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))))
88f06fd0
PN
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
c072887b
SH
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
3610template 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
88f06fd0
PN
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
3640Lisp. Its goals are axiomatic syntax, simple implementation to support
3641portability, 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
cb92693e 3651 (let ((commit "aa26bf38338a6b068bf8bfb3375d8d8c3b0a28df"))
88f06fd0
PN
3652 (package
3653 (name "sbcl-portable-threads")
cb92693e 3654 (version (git-version "2.3" "2" commit))
88f06fd0
PN
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
cb92693e 3663 (base32 "058ksi07vfdmhrf5mdlc833s82m1rcqfja2266520m3r8bzs8bvs"))))
88f06fd0
PN
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")
cb92693e 3669 (synopsis "Portable threads API for Common Lisp")
88f06fd0
PN
3670 (description
3671 "Portable Threads (and Scheduled and Periodic Functions) API for Common
3672Lisp (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
2ff8b5ba 3678(define-public ecl-portable-threads
88f06fd0
PN
3679 (sbcl-package->ecl-package sbcl-portable-threads))
3680
2ff8b5ba 3681(define-public sbcl-usocket
b23e6f5d 3682 (package
2ff8b5ba 3683 (name "sbcl-usocket")
b23e6f5d
GLV
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)
2ff8b5ba
GLV
3696 (native-inputs
3697 `(("rt" ,sbcl-rt)))
b23e6f5d 3698 (inputs
2ff8b5ba
GLV
3699 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
3700 ("split-sequence" ,sbcl-split-sequence)))
b23e6f5d 3701 (arguments
2ff8b5ba 3702 `(#:tests? #f ; FIXME: Tests need network access?
2ff8b5ba
GLV
3703 #:asd-systems '("usocket"
3704 "usocket-server")))
b23e6f5d 3705 (home-page "https://common-lisp.net/project/usocket/")
2ff8b5ba 3706 (synopsis "Universal socket library for Common Lisp")
b23e6f5d
GLV
3707 (description
3708 "This library strives to provide a portable TCP/IP and UDP/IP socket
88f06fd0
PN
3709interface for as many Common Lisp implementations as possible, while keeping
3710the abstraction and portability layer as thin as possible.")
b23e6f5d 3711 (license license:expat)))
88f06fd0 3712
88f06fd0
PN
3713(define-public cl-usocket
3714 (sbcl-package->cl-source-package sbcl-usocket))
3715
b23e6f5d 3716(define-public ecl-usocket
88f06fd0
PN
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
3735parser 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
3740comments and whitespace).
3741@item It has a core API that is simple, efficient and pure functional, much
3742like that from SSAX (see also http://ssax.sourceforge.net).
3743@item It supports different DOM models: an XSML-based one, an LXML-based one
3744and a classic xml-element struct based one.
3745@item It is reasonably time and space efficient (internally avoiding garbage
3746generatation as much as possible).
3747@item It does support CDATA.
3748@item It should support the same character sets as your Common Lisp
3749implementation.
3750@item It does support XML name spaces.
3751@end itemize
3752
3753This 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
3785client 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
538d9114
SH
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
88f06fd0 3822(define-public sbcl-trivial-clipboard
bdf72966 3823 (let ((commit "8a580cb97196be7cf096548eb1f46794cd22bb39"))
88f06fd0
PN
3824 (package
3825 (name "sbcl-trivial-clipboard")
bdf72966 3826 (version (git-version "0.0.0.0" "4" commit))
88f06fd0
PN
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
bdf72966 3836 "0apkgqrscylw3hhm5x2vs0z3hz6h7zd7dl5y3wr2zl8qjpvpc80k"))))
88f06fd0
PN
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"
bdf72966
PN
3848 (("\"xclip\"")
3849 (string-append "\"" (assoc-ref inputs "xclip") "/bin/xclip\""))))))))
88f06fd0
PN
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
b0e7b699 3872 (url "https://github.com/gwkkwg/trivial-backtrace")
88f06fd0
PN
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)))
8dc2af3b
GLV
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/"
3136fda7 3887 (%lisp-type)
8dc2af3b
GLV
3888 "/trivial-backtrace"
3889 "/test-results")))
3890 (when (file-exists? test-results)
3891 (delete-file-recursively test-results)))
3892 #t)))))
88f06fd0
PN
3893 (home-page "https://common-lisp.net/project/trivial-backtrace/")
3894 (synopsis "Portable simple API to work with backtraces in Common Lisp")
3895 (description
d35a0f14 3896 "One of the many things that didn't quite get into the Common Lisp
88f06fd0
PN
3897standard was how to get a Lisp to output its call stack when something has
3898gone wrong. As such, each Lisp has developed its own notion of what to
3899display, how to display it, and what sort of arguments can be used to
3900customize it. @code{trivial-backtrace} is a simple solution to generating a
3901backtrace portably.")
3902 (license license:expat))))
3903
3904(define-public cl-trivial-backtrace
3905 (sbcl-package->cl-source-package sbcl-trivial-backtrace))
3906
12df8b7b
GLV
3907(define-public ecl-trivial-backtrace
3908 (sbcl-package->ecl-package sbcl-trivial-backtrace))
3909
88f06fd0
PN
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
b0e7b699 3920 (url "https://github.com/jdz/rfc2388")
88f06fd0
PN
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
3930process 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
12df8b7b
GLV
3937(define-public ecl-rfc2388
3938 (sbcl-package->ecl-package sbcl-rfc2388))
3939
88f06fd0
PN
3940(define-public sbcl-md5
3941 (package
3942 (name "sbcl-md5")
3943 (version "2.0.4")
3944 (source
3945 (origin
fffe9a15
EF
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))
88f06fd0 3951 (sha256
fffe9a15 3952 (base32 "1waqxzm7vlc22n92hv8r27anlvvjkkh9slhrky1ww7mdx4mmxwb8"))))
88f06fd0
PN
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
3959RFC 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
588a4492
PN
3965(define-public ecl-md5
3966 (package
3967 (inherit (sbcl-package->ecl-package sbcl-md5))
3968 (inputs
3969 `(("flexi-streams" ,ecl-flexi-streams)))))
3970
88f06fd0 3971(define-public sbcl-cl+ssl
14620ce7 3972 (let ((commit "701e645081e6533a3f0f0b3ac86389d6f506c4b5")
88f06fd0
PN
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
b0e7b699 3981 (url "https://github.com/cl-plus-ssl/cl-plus-ssl")
88f06fd0
PN
3982 (commit commit)))
3983 (file-name (git-file-name "cl+ssl" version))
3984 (sha256
14620ce7 3985 (base32 "0nfl275nwhff3m25872y388cydz14kqb6zbwywa6nj85r9k8bgs0"))))
88f06fd0
PN
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)))
113c9b97 4005 (home-page "https://common-lisp.net/project/cl-plus-ssl/")
88f06fd0
PN
4006 (synopsis "Common Lisp bindings to OpenSSL")
4007 (description
4008 "This library is a fork of SSL-CMUCL. The original SSL-CMUCL source
4009code was written by Eric Marsden and includes contributions by Jochen Schmidt.
4010Development 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
e7cbcf5a
GLV
4016(define-public ecl-cl+ssl
4017 (sbcl-package->ecl-package sbcl-cl+ssl))
4018
88f06fd0 4019(define-public sbcl-kmrcl
23611680
PN
4020 (let ((version "1.111")
4021 (commit "4a27407aad9deb607ffb8847630cde3d041ea25a")
88f06fd0
PN
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
23611680 4034 (base32 "06gx04mah5nc8w78s0j8628divbf1s5w7af8w7pvzb2d5mgvrbd2"))))
88f06fd0 4035 (build-system asdf-build-system/sbcl)
88f06fd0
PN
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
23611680 4042Rosenberg's Common Lisp packages.")
88f06fd0
PN
4043 (license license:llgpl))))
4044
4045(define-public cl-kmrcl
4046 (sbcl-package->cl-source-package sbcl-kmrcl))
4047
e7cbcf5a
GLV
4048(define-public ecl-kmrcl
4049 (sbcl-package->ecl-package sbcl-kmrcl))
4050
88f06fd0 4051(define-public sbcl-cl-base64
7cb44409
PN
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)))
49ae5f79 4063 (file-name (git-file-name name version))
7cb44409
PN
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.
88f06fd0
PN
4075Besides conversion to and from strings, integer conversions are supported.
4076Encoding with Uniform Resource Identifiers is supported by using a modified
4077encoding table that uses only URI-compatible characters.")
7cb44409 4078 (license license:bsd-3))))
88f06fd0
PN
4079
4080(define-public cl-base64
4081 (sbcl-package->cl-source-package sbcl-cl-base64))
4082
e7cbcf5a
GLV
4083(define-public ecl-cl-base64
4084 (sbcl-package->ecl-package sbcl-cl-base64))
4085
88f06fd0
PN
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
b0e7b699 4094 (url "https://github.com/edicl/chunga")
88f06fd0
PN
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
4106defined in RFC 2616.")
4107 (license license:bsd-2)))
4108
4109(define-public cl-chunga
4110 (sbcl-package->cl-source-package sbcl-chunga))
4111
e7cbcf5a
GLV
4112(define-public ecl-chunga
4113 (sbcl-package->ecl-package sbcl-chunga))
4114
88f06fd0
PN
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
b0e7b699 4126 (url "https://github.com/edicl/cl-who")
88f06fd0
PN
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
4139programmer seems to write at least one during his career - and CL-WHO (where
4140WHO means \"with-html-output\" for want of a better acronym) is probably just
4141as good or bad as the next one.")
4142 (license license:bsd-2))))
4143
12df8b7b 4144(define-public cl-who
88f06fd0
PN
4145 (sbcl-package->cl-source-package sbcl-cl-who))
4146
12df8b7b
GLV
4147(define-public ecl-cl-who
4148 (sbcl-package->ecl-package sbcl-cl-who))
4149
88f06fd0
PN
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
b0e7b699 4161 (url "https://github.com/froydnj/chipz")
88f06fd0
PN
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
4173data")
4174 (description
4175 "DEFLATE data, defined in RFC1951, forms the core of popular
4176compression formats such as zlib (RFC 1950) and gzip (RFC 1952). As such,
4177Chipz also provides for decompressing data in those formats as well. BZIP2 is
4178the 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
e7cbcf5a
GLV
4185(define-public ecl-chipz
4186 (sbcl-package->ecl-package sbcl-chipz))
4187
88f06fd0 4188(define-public sbcl-drakma
a2b6b973
GLV
4189 (package
4190 (name "sbcl-drakma")
4191 (version "2.0.7")
4192 (source
4193 (origin
4194 (method git-fetch)
4195 (uri (git-reference
b0e7b699 4196 (url "https://github.com/edicl/drakma")
a2b6b973
GLV
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
88f06fd0
PN
4218knows how to handle HTTP/1.1 chunking, persistent connections, re-usable
4219sockets, SSL, continuable uploads, file uploads, cookies, and more.")
a2b6b973 4220 (license license:bsd-2)))
88f06fd0
PN
4221
4222(define-public cl-drakma
4223 (sbcl-package->cl-source-package sbcl-drakma))
4224
10ac723b
GLV
4225(define-public ecl-drakma
4226 (sbcl-package->ecl-package sbcl-drakma))
4227
88f06fd0
PN
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
b0e7b699 4236 (url "https://github.com/edicl/hunchentoot")
88f06fd0
PN
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
4260time a toolkit for building dynamic websites. As a stand-alone web server,
4261Hunchentoot is capable of HTTP/1.1 chunking (both directions), persistent
4262connections (keep-alive), and SSL.")
4263 (license license:bsd-2)))
4264
4265(define-public cl-hunchentoot
4266 (sbcl-package->cl-source-package sbcl-hunchentoot))
4267
bdd3b1b2
GLV
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
88f06fd0
PN
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
b0e7b699 4283 (url "https://github.com/m2ym/trivial-types")
88f06fd0
PN
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
4293PROPER-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
12df8b7b
GLV
4299(define-public ecl-trivial-types
4300 (sbcl-package->ecl-package sbcl-trivial-types))
4301
88f06fd0
PN
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
b0e7b699 4312 (url "https://github.com/m2ym/cl-annot")
88f06fd0
PN
4313 (commit commit)))
4314 (file-name (git-file-name name version))
4315 (sha256
4316 (base32 "1wq1gs9jjd5m6iwrv06c2d7i5dvqsfjcljgbspfbc93cg5xahk4n"))))
4317 (build-system asdf-build-system/sbcl)
88f06fd0
PN
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
e7cbcf5a
GLV
4329(define-public ecl-cl-annot
4330 (sbcl-package->ecl-package sbcl-cl-annot))
4331
2ff8b5ba 4332(define-public sbcl-cl-syntax
5b22df94 4333 (package
2ff8b5ba
GLV
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)
5b22df94 4346 (inputs
2ff8b5ba
GLV
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
3f8bbf7c 4352 '(#:asd-systems '("cl-syntax"
2ff8b5ba
GLV
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")
5b22df94 4357 (description
2ff8b5ba
GLV
4358 "CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.")
4359 (license license:llgpl)))
5b22df94 4360
2ff8b5ba
GLV
4361(define-public cl-syntax
4362 (sbcl-package->cl-source-package sbcl-cl-syntax))
5b22df94 4363
12df8b7b
GLV
4364(define-public ecl-cl-syntax
4365 (sbcl-package->ecl-package sbcl-cl-syntax))
4366
88f06fd0
PN
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
e765d9c9 4384 '(#:phases
88f06fd0
PN
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
4395is a collection of Common Lisp Utilities, things that everybody writes since
4396they're not part of the official standard. There are some very useful things
4397there; the only problems are that they aren't implemented as well as you'd
4398like (some aren't implemented at all) and they aren't conveniently packaged
4399and maintained. It takes quite a bit of work to carefully implement utilities
4400for common use, commented and documented, with error checking placed
4401everywhere 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
12df8b7b
GLV
4407(define-public ecl-cl-utilities
4408 (sbcl-package->ecl-package sbcl-cl-utilities))
4409
88f06fd0
PN
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
4429addition, 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
e7cbcf5a
GLV
4435(define-public ecl-map-set
4436 (sbcl-package->ecl-package sbcl-map-set))
4437
88f06fd0 4438(define-public sbcl-quri
6e70211b
PN
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
88f06fd0 4467Lisp. It is intended to be a replacement of PURI.")
6e70211b 4468 (license license:bsd-3)))
88f06fd0
PN
4469
4470(define-public cl-quri
4471 (sbcl-package->cl-source-package sbcl-quri))
4472
e7cbcf5a
GLV
4473(define-public ecl-quri
4474 (sbcl-package->ecl-package sbcl-quri))
4475
88f06fd0
PN
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
b0e7b699 4486 (url "https://github.com/fukamachi/myway")
88f06fd0
PN
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
2ff8b5ba 4497 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
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
e7cbcf5a
GLV
4510(define-public ecl-myway
4511 (sbcl-package->ecl-package sbcl-myway))
4512
88f06fd0
PN
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
2ff8b5ba 4534 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
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
4539effieiently.")
4540 (license license:bsd-2))))
4541
4542(define-public cl-xsubseq
4543 (sbcl-package->cl-source-package sbcl-xsubseq))
4544
12df8b7b
GLV
4545(define-public ecl-xsubseq
4546 (sbcl-package->ecl-package sbcl-xsubseq))
4547
88f06fd0
PN
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
2ff8b5ba 4569 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
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
4577depending 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
12df8b7b
GLV
4583(define-public ecl-smart-buffer
4584 (sbcl-package->ecl-package sbcl-smart-buffer))
4585
88f06fd0 4586(define-public sbcl-fast-http
47e73008
PN
4587 (let ((commit "502a37715dcb8544cc8528b78143a942de662c5a")
4588 (revision "2"))
88f06fd0
PN
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
47e73008 4600 (base32 "0al2g7g219jjljsf7b23pbilpgacxy5as5gs2nqf76b5qni396mi"))))
88f06fd0
PN
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
2ff8b5ba
GLV
4607 `(("sbcl-prove" ,sbcl-prove)
4608 ("cl-syntax" ,sbcl-cl-syntax)))
88f06fd0
PN
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
4619Lisp.")
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
e7cbcf5a
GLV
4626(define-public ecl-fast-http
4627 (sbcl-package->ecl-package sbcl-fast-http))
4628
88f06fd0 4629(define-public sbcl-static-vectors
ba55cbda
GLV
4630 (package
4631 (name "sbcl-static-vectors")
301f6323 4632 (version "1.8.6")
ba55cbda
GLV
4633 (source
4634 (origin
88f06fd0
PN
4635 (method git-fetch)
4636 (uri (git-reference
b0e7b699 4637 (url "https://github.com/sionescu/static-vectors")
ba55cbda 4638 (commit (string-append "v" version))))
88f06fd0
PN
4639 (file-name (git-file-name name version))
4640 (sha256
301f6323 4641 (base32 "01hwxzhyjkhsd3949g70120g7msw01byf0ia0pbj319q1a3cq7j9"))))
ba55cbda
GLV
4642 (native-inputs
4643 `(("sbcl-fiveam" ,sbcl-fiveam)))
4644 (inputs
301f6323
SH
4645 `(("sbcl-alexandria" ,sbcl-alexandria)
4646 ("sbcl-cffi" ,sbcl-cffi)))
ba55cbda 4647 (build-system asdf-build-system/sbcl)
6b40dbff 4648 (home-page "https://github.com/sionescu/static-vectors")
ba55cbda
GLV
4649 (synopsis "Allocate SIMPLE-ARRAYs in static memory")
4650 (description
4651 "With @code{static-vectors}, you can create vectors allocated in static
88f06fd0 4652memory.")
ba55cbda 4653 (license license:expat)))
88f06fd0
PN
4654
4655(define-public cl-static-vectors
4656 (sbcl-package->cl-source-package sbcl-static-vectors))
4657
f6a6f085
GLV
4658(define-public ecl-static-vectors
4659 (sbcl-package->ecl-package sbcl-static-vectors))
4660
88f06fd0
PN
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
b0e7b699 4671 (url "https://github.com/wlbr/cl-marshal")
88f06fd0
PN
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
4681into a string representation, put it on a stream an revive it from there.
4682Only 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
e7cbcf5a
GLV
4688(define-public ecl-marshal
4689 (sbcl-package->ecl-package sbcl-marshal))
4690
88f06fd0
PN
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
b0e7b699 4701 (url "https://github.com/rpav/CheckL")
88f06fd0
PN
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.
3f8bbf7c
GLV
4711 '(#:asd-files '("checkl.asd")
4712 #:tests? #f))
88f06fd0
PN
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
4721against 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
e7cbcf5a
GLV
4730(define-public ecl-checkl
4731 (sbcl-package->ecl-package sbcl-checkl))
4732
88f06fd0 4733(define-public sbcl-fast-io
481f41e3
PN
4734 (let ((commit "603f4903dd74fb221859da7058ae6ca3853fe64b")
4735 (revision "2"))
88f06fd0
PN
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
b0e7b699 4743 (url "https://github.com/rpav/fast-io")
88f06fd0
PN
4744 (commit commit)))
4745 (file-name (git-file-name name version))
4746 (sha256
481f41e3 4747 (base32 "00agvc0xx4w715i6ach05p995zpcpghn04xc06zyci06q677vw3n"))))
88f06fd0
PN
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.
3f8bbf7c
GLV
4753 '(#:tests? #f
4754 #:asd-files '("fast-io.asd")))
88f06fd0
PN
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
4766streams (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
e7cbcf5a
GLV
4773(define-public ecl-fast-io
4774 (sbcl-package->ecl-package sbcl-fast-io))
4775
88f06fd0
PN
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
b0e7b699 4786 (url "https://github.com/Rudolph-Miller/jonathan")
88f06fd0
PN
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
2ff8b5ba 4797 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
4798 (inputs
4799 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
88f06fd0
PN
4800 ("sbcl-fast-io" ,sbcl-fast-io)
4801 ("sbcl-proc-parse" ,sbcl-proc-parse)
4802 ("sbcl-cl-ppcre" ,sbcl-cl-ppcre)))
46a5d07e 4803 (home-page "https://rudolph-miller.github.io/jonathan/overview.html")
88f06fd0
PN
4804 (synopsis "JSON encoder and decoder")
4805 (description
4806 "High performance JSON encoder and decoder. Currently support: SBCL,
4807CCL.")
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
e7cbcf5a
GLV
4814(define-public ecl-jonathan
4815 (sbcl-package->ecl-package sbcl-jonathan))
4816
88f06fd0
PN
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
2ff8b5ba 4838 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
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
4847supports application/x-www-form-urlencoded, application/json, and
4848multipart/form-data.")
4849 (license license:bsd-2))))
4850
4851(define-public cl-http-body
4852 (sbcl-package->cl-source-package sbcl-http-body))
4853
e7cbcf5a
GLV
4854(define-public ecl-http-body
4855 (sbcl-package->ecl-package sbcl-http-body))
4856
88f06fd0
PN
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
4884streams. Once you reach end-of-file of a stream, it's file position will be
4885reset 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
e7cbcf5a
GLV
4891(define-public ecl-circular-streams
4892 (sbcl-package->ecl-package sbcl-circular-streams))
4893
2ff8b5ba 4894(define-public sbcl-lack
88f06fd0
PN
4895 (let ((commit "abff8efeb0c3a848e6bb0022f2b8b7fa3a1bc88b")
4896 (revision "1"))
4897 (package
2ff8b5ba
GLV
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
3f8bbf7c 4920 '(#:asd-systems '("lack"
2ff8b5ba
GLV
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
88f06fd0
PN
4934constructed of modular components. It was originally a part of Clack, however
4935it's going to be rewritten as an individual project since Clack v2 with
4936performance and simplicity in mind.")
2ff8b5ba 4937 (license license:llgpl))))
88f06fd0 4938
2ff8b5ba
GLV
4939(define-public cl-lack
4940 (sbcl-package->cl-source-package sbcl-lack))
88f06fd0 4941
e7cbcf5a
GLV
4942(define-public ecl-lack
4943 (sbcl-package->ecl-package sbcl-lack))
4944
88f06fd0 4945(define-public sbcl-local-time
6c1982d4
SH
4946 (let ((commit "a177eb911c0e8116e2bfceb79049265a884b701b")
4947 (revision "2"))
88f06fd0
PN
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
b0e7b699 4955 (url "https://github.com/dlowe-net/local-time")
88f06fd0
PN
4956 (commit commit)))
4957 (file-name (git-file-name name version))
4958 (sha256
6c1982d4 4959 (base32 "0wld28xx20k0ysgg6akic5lg4vkjd0iyhv86m388xfrv8xh87wii"))))
88f06fd0 4960 (build-system asdf-build-system/sbcl)
88f06fd0 4961 (native-inputs
6c1982d4 4962 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
88f06fd0
PN
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
4967dates and times. It is based almost entirely upon Erik Naggum's paper \"The
4968Long 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
e7cbcf5a
GLV
4974(define-public ecl-local-time
4975 (sbcl-package->ecl-package sbcl-local-time))
4976
1f3b7c02
SH
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
5001by 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
2ff8b5ba 5010(define-public sbcl-trivial-mimes
30ec5e5a
PN
5011 (let ((commit "a741fc2f567a4f86b853fd4677d75e62c03e51d9")
5012 (revision "2"))
88f06fd0 5013 (package
2ff8b5ba
GLV
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
30ec5e5a 5024 (base32 "00kcm17q5plpzdj1qwg83ldhxksilgpcdkf3m9azxcdr968xs9di"))))
2ff8b5ba 5025 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
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
5034mime-type of a file.")
30ec5e5a 5035 (license license:zlib))))
88f06fd0 5036
2ff8b5ba
GLV
5037(define-public cl-trivial-mimes
5038 (sbcl-package->cl-source-package sbcl-trivial-mimes))
88f06fd0 5039
2ff8b5ba
GLV
5040(define-public ecl-trivial-mimes
5041 (sbcl-package->ecl-package sbcl-trivial-mimes))
5042
5043(define-public sbcl-ningle
5044 (let ((commit "50bd4f09b5a03a7249bd4d78265d6451563b25ad")
88f06fd0
PN
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
b0e7b699 5053 (url "https://github.com/fukamachi/ningle")
88f06fd0
PN
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
2ff8b5ba 5086 `(("sbcl-prove" ,sbcl-prove)))
88f06fd0
PN
5087 (inputs
5088 `(("sbcl-cl-syntax" ,sbcl-cl-syntax)
88f06fd0 5089 ("sbcl-myway" ,sbcl-myway)
2ff8b5ba 5090 ("sbcl-lack" ,sbcl-lack)
88f06fd0
PN
5091 ("sbcl-alexandria" ,sbcl-alexandria)
5092 ("sbcl-babel" ,sbcl-babel)))
f13695ec 5093 (home-page "https://8arrow.org/ningle/")
88f06fd0
PN
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
e7cbcf5a
GLV
5102(define-public ecl-ningle
5103 (sbcl-package->ecl-package sbcl-ningle))
5104
0d1c7c97 5105(define-public sbcl-cl-fastcgi
d9010a35
PN
5106 (let ((commit "de8b49b26de9863996ec18db28af8ab7e8ac4e20")
5107 (revision "2"))
0d1c7c97
PN
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
d9010a35 5119 (base32 "0xgmhx766q4nmrvn5z7ag3ikpr9phlh8ypi8b14azshq9lqbq0m7"))))
0d1c7c97
PN
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
5139mostly Common Lisp implementation.")
0d1c7c97
PN
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
88f06fd0 5148(define-public sbcl-clack
2ff8b5ba
GLV
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
3f8bbf7c 5175 '(#:asd-systems '("clack"
2ff8b5ba
GLV
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
88f06fd0 5183Python's WSGI and Ruby's Rack.")
2ff8b5ba 5184 (license license:llgpl))))
88f06fd0
PN
5185
5186(define-public cl-clack
5187 (sbcl-package->cl-source-package sbcl-clack))
5188
bdd3b1b2
GLV
5189(define-public ecl-clack
5190 (sbcl-package->ecl-package sbcl-clack))
5191
65d3fab5
SH
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
5210in some respects after Gary King's Log5. Its features include: logging to
5211several destinations at once, via \"messengers\", each messenger is tailored to
5212accept some log messages and reject others, and this tailoring can be changed
5213on-the-fly, very rapid processing of messages which are rejected by all
5214messengers, fully independent use of the utility by several different
5215sub-systems in an application, support for messengers which cl:format text to a
5216stream, support for messengers which do not invoke cl:format, timestamps in
5217theory 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
88f06fd0 5227(define-public sbcl-log4cl
cfaa1bec 5228 (let ((commit "8c48d6f41d3a1475d0a91eed0638b9eecc398e35")
88f06fd0
PN
5229 (revision "1"))
5230 (package
5231 (name "sbcl-log4cl")
cfaa1bec 5232 (version (git-version "1.1.3" revision commit))
88f06fd0
PN
5233 (source
5234 (origin
5235 (method git-fetch)
5236 (uri (git-reference
5237 (url "https://github.com/sharplispers/log4cl")
5238 (commit commit)))
cfaa1bec 5239 (file-name (git-file-name "log4cl" version))
88f06fd0 5240 (sha256
cfaa1bec
SH
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)))
88f06fd0 5247 (home-page "https://github.com/7max/log4cl")
cfaa1bec
SH
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
5251and mix text with expressions.")
88f06fd0
PN
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
8ff9cc8b
SH
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
5280macro 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
a0a2449d
SH
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.
5309Debugging code can be enabled or disabled relative to program features denoted
5310by 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
67793f33
SH
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
88f06fd0
PN
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
5378port 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
b0e7b699 5397 (url "https://github.com/tgutu/clunit")
88f06fd0
PN
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
5407to be easy to use so that you can quickly start testing. CLUnit
5408provides a rich set of features aimed at improving your unit testing
5409experience.")
b4034d1b 5410 (home-page "https://tgutu.github.io/clunit/")
88f06fd0
PN
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
b0e7b699 5430 (url "https://github.com/bendudson/py4cl")
88f06fd0
PN
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
5467Lisp to interact with Python code. It uses streams to communicate with a
5468separate python process, the approach taken by cl4py. This is different to
5469the 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
1fce78c4
GLV
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
3f8bbf7c 5499 `(#:asd-systems '("parse-declarations-1.0")))
1fce78c4
GLV
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
88f06fd0
PN
5504macros which establish bindings. To be semantically correct, such
5505macros must take user declarations into account, as these may affect
5506the bindings they establish. Yet the ANSI standard of Common Lisp does
5507not provide any operators to work with declarations in a convenient,
5508high-level way. This library provides such operators.")
1fce78c4
GLV
5509 ;; MIT License
5510 (license license:expat))))
88f06fd0
PN
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
b0e7b699 5528 (url "https://github.com/mcandre/cl-quickcheck")
88f06fd0
PN
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
2ff8b5ba 5543(define-public cl-quickcheck
88f06fd0
PN
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
839fa4cd
MB
5550 (let ((commit "f65f454d13bb6c40e17e9ec62e41eb5069e09760")
5551 (revision "2"))
88f06fd0
PN
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
b0e7b699 5559 (url "https://github.com/snmsts/burgled-batteries3")
88f06fd0
PN
5560 (commit commit)))
5561 (file-name (git-file-name name version))
5562 (sha256
5563 (base32
839fa4cd 5564 "1nzn7jawrfajyzwfnzrg2cmn9xxadcqh4szbpg0jggkhdkdzz4wa"))))
88f06fd0
PN
5565 (build-system asdf-build-system/sbcl)
5566 (arguments
839fa4cd
MB
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)
88f06fd0 5572 #:phases
839fa4cd 5573 (modify-phases (@ (guix build asdf-build-system) %standard-phases)
88f06fd0
PN
5574 (add-after 'unpack 'set-*cpython-include-dir*-var
5575 (lambda* (#:key inputs #:allow-other-keys)
839fa4cd
MB
5576 (let ((python (assoc-ref inputs "python")))
5577 (setenv "BB_PYTHON3_INCLUDE_DIR"
5578 (string-append python "/include/python"
8c83069b 5579 (python-version python)))
839fa4cd
MB
5580 (setenv "BB_PYTHON3_DYLIB"
5581 (string-append python "/lib/libpython3.so"))
8c83069b
MB
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)))))
88f06fd0 5590 (native-inputs
3d280dae 5591 `(("sbcl-cl-fad" ,sbcl-cl-fad)
88f06fd0
PN
5592 ("sbcl-lift" ,sbcl-lift)
5593 ("sbcl-cl-quickcheck" ,sbcl-cl-quickcheck)))
5594 (inputs
3d280dae
MB
5595 `(("python" ,python)
5596 ("sbcl-cffi" ,sbcl-cffi)
88f06fd0
PN
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
5603CPython implementation of Python) and Common Lisp.")
5604 (home-page "https://github.com/snmsts/burgled-batteries3")
88f06fd0
PN
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
b0e7b699 5623 (url "https://github.com/gwkkwg/metabang-bind")
88f06fd0
PN
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
5635syntax for all your accessor needs. It combines @code{let},
5636@code{destructuring-bind}, @code{with-slots}, @code{with-accessors}, structure
5637editing, property or association-lists, and @code{multiple-value-bind} and a
5638whole 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
5675basic 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
9f084143
SH
5686(define-public sbcl-fare-mop
5687 (let ((commit "538aa94590a0354f382eddd9238934763434af30")
5688 (revision "1"))
5689 (package
5690 (name "sbcl-fare-mop")
5691 (version (git-version "1.0.1" revision commit))
5692 (source
5693 (origin
5694 (method git-fetch)
5695 (uri (git-reference
5696 (url "https://github.com/fare/fare-mop")
5697 (commit commit)))
5698 (file-name (git-file-name "fare-mop" version))
5699 (sha256
5700 (base32
5701 "0maxs8392953fhnaa6zwnm2mdbhxjxipp4g4rvypm06ixr6pyv1c"))))
5702 (build-system asdf-build-system/sbcl)
5703 (inputs
5704 `(("close-mop" ,sbcl-closer-mop)
5705 ("fare-utils" ,sbcl-fare-utils)))
5706 (home-page "https://github.com/fare/fare-mop")
5707 (synopsis "General purpose Common Lisp utilities using the MOP")
5708 (description
5709 "FARE-MOP is a small collection of utilities using the MetaObject
5710Protocol. It notably contains a SIMPLE-PRINT-OBJECT method, and
5711a SIMPLE-PRINT-OBJECT-MIXIN mixin that allow you to trivially define
5712PRINT-OBJECT methods that print the interesting slots in your objects, which is
5713great for REPL interaction and debugging.")
5714 (license license:unlicense))))
5715
5716(define-public ecl-fare-mop
5717 (sbcl-package->ecl-package sbcl-fare-mop))
5718
5719(define-public cl-fare-mop
5720 (sbcl-package->cl-source-package sbcl-fare-mop))
5721
bde6c43f
SH
5722(define-public sbcl-inferior-shell
5723 (let ((commit "15c2d04a7398db965ea1c3ba2d49efa7c851f2c2")
5724 (revision "1"))
5725 (package
5726 (name "sbcl-inferior-shell")
5727 (version (git-version "2.0.5" revision commit))
5728 (source
5729 (origin
5730 (method git-fetch)
5731 (uri (git-reference
5732 (url "https://github.com/fare/inferior-shell")
5733 (commit commit)))
5734 (file-name (git-file-name "inferior-shell" version))
5735 (sha256
5736 (base32 "02qx37zzk5j4xmwh77k2qa2wvnzvaj6qml5dh2q7b6b1ljvgcj4m"))))
5737 (build-system asdf-build-system/sbcl)
5738 (native-inputs
5739 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
5740 (inputs
5741 `(("alexandira" ,sbcl-alexandria)
5742 ("fare-mop" ,sbcl-fare-mop)
5743 ("fare-quasiquote" ,sbcl-fare-quasiquote)
5744 ("fare-utils" ,sbcl-fare-utils)
5745 ("trivia" ,sbcl-trivia)))
5746 (home-page "https://github.com/fare/inferior-shell")
5747 (synopsis "Spawn local or remote processes and shell pipes")
5748 (description
5749 "This package provides a Common Lisp system helping in scripting, it
5750uses @code{uiop:run-program} as a backend.")
5751 (license license:expat))))
5752
5753(define-public ecl-inferior-shell
5754 (sbcl-package->ecl-package sbcl-inferior-shell))
5755
5756(define-public cl-inferior-shell
5757 (sbcl-package->cl-source-package sbcl-inferior-shell))
5758
88f06fd0
PN
5759(define-public sbcl-trivial-utf-8
5760 (let ((commit "4d427cfbb1c452436a0efb71c3205c9da67f718f")
5761 (revision "1"))
5762 (package
5763 (name "sbcl-trivial-utf-8")
5764 (version (git-version "0.0.0" revision commit))
5765 (source
5766 (origin
5767 (method git-fetch)
5768 (uri
5769 (git-reference
5770 (url (string-append "https://gitlab.common-lisp.net/"
5771 "trivial-utf-8/trivial-utf-8.git"))
5772 (commit commit)))
5773 (file-name (git-file-name name version))
5774 (sha256
5775 (base32
5776 "1jz27gz8gvqdmvp3k9bxschs6d5b3qgk94qp2bj6nv1d0jc3m1l1"))))
5777 (arguments
5778 ;; Guix incorrectly assumes the "8" is part of the version
5779 ;; number and lobs it off.
3f8bbf7c 5780 `(#:asd-systems '("trivial-utf-8")))
88f06fd0
PN
5781 (build-system asdf-build-system/sbcl)
5782 (synopsis "UTF-8 input/output library")
5783 (description
5784 "The Babel library solves a similar problem while understanding more
5785encodings. Trivial UTF-8 was written before Babel existed, but for new
5786projects you might be better off going with Babel. The one plus that Trivial
5787UTF-8 has is that it doesn't depend on any other libraries.")
5788 (home-page "https://common-lisp.net/project/trivial-utf-8/")
5789 (license license:bsd-3))))
5790
5791(define-public cl-trivial-utf-8
5792 (sbcl-package->cl-source-package sbcl-trivial-utf-8))
5793
5794(define-public ecl-trivial-utf-8
5795 (sbcl-package->ecl-package sbcl-trivial-utf-8))
5796
5797(define-public sbcl-idna
5798 (package
5799 (name "sbcl-idna")
5800 (build-system asdf-build-system/sbcl)
5801 (version "0.2.2")
5802 (home-page "https://github.com/antifuchs/idna")
5803 (source
5804 (origin
5805 (method git-fetch)
5806 (uri (git-reference
5807 (url home-page)
5808 (commit version)))
5809 (file-name (git-file-name name version))
5810 (sha256
5811 (base32
5812 "00nbr3mffxhlq14gg9d16pa6691s4qh35inyw76v906s77khm5a2"))))
5813 (inputs
5814 `(("split-sequence" ,sbcl-split-sequence)))
5815 (synopsis "IDNA string encoding and decoding routines for Common Lisp")
5816 (description "This Common Lisp library provides string encoding and
5817decoding routines for IDNA, the International Domain Names in Applications.")
5818 (license license:expat)))
5819
5820(define-public cl-idna
5821 (sbcl-package->cl-source-package sbcl-idna))
5822
5823(define-public ecl-idna
5824 (sbcl-package->ecl-package sbcl-idna))
5825
5826(define-public sbcl-swap-bytes
5827 (package
5828 (name "sbcl-swap-bytes")
5829 (build-system asdf-build-system/sbcl)
dbf6de58 5830 (version "1.2")
88f06fd0
PN
5831 (home-page "https://github.com/sionescu/swap-bytes")
5832 (source
5833 (origin
5834 (method git-fetch)
5835 (uri (git-reference
5836 (url home-page)
5837 (commit (string-append "v" version))))
5838 (file-name (git-file-name name version))
5839 (sha256
5840 (base32
dbf6de58 5841 "1hw1v1lw26rifyznpnj1csphha9jgzwpiic16ni3pvs6hcsni9rz"))))
88f06fd0
PN
5842 (inputs
5843 `(("trivial-features" ,sbcl-trivial-features)))
5844 (native-inputs
5845 `(("fiveam" ,sbcl-fiveam)))
88f06fd0
PN
5846 (synopsis "Efficient endianness conversion for Common Lisp")
5847 (description "This Common Lisp library provides optimized byte-swapping
5848primitives. The library can change endianness of unsigned integers of length
58491/2/4/8. Very useful in implementing various network protocols and file
5850formats.")
5851 (license license:expat)))
5852
5853(define-public cl-swap-bytes
5854 (sbcl-package->cl-source-package sbcl-swap-bytes))
5855
5856(define-public ecl-swap-bytes
5857 (sbcl-package->ecl-package sbcl-swap-bytes))
5858
2ff8b5ba 5859(define-public sbcl-iolib
88f06fd0 5860 ;; Latest release is from June 2017.
53c4a0da
PN
5861 (let ((commit "7f5ea3a8457a29d224b24653c2b3657fb1898021")
5862 (revision "2"))
88f06fd0 5863 (package
2ff8b5ba 5864 (name "sbcl-iolib")
53c4a0da 5865 (version (git-version "0.8.3" revision commit))
88f06fd0
PN
5866 (home-page "https://github.com/sionescu/iolib")
5867 (source
5868 (origin
5869 (method git-fetch)
5870 (uri (git-reference
5871 (url home-page)
5872 (commit commit)))
5873 (file-name (git-file-name name version))
5874 (sha256
5875 (base32
53c4a0da 5876 "1bg5w7lm61hqk4b0svmri8a590q36z76jfa0sdgzb39r98c04w12"))))
2ff8b5ba 5877 (build-system asdf-build-system/sbcl)
88f06fd0 5878 (inputs
2ff8b5ba
GLV
5879 `(("alexandria" ,sbcl-alexandria)
5880 ("bordeaux-threads" ,sbcl-bordeaux-threads)
5881 ("cffi" ,sbcl-cffi)
5882 ("idna" ,sbcl-idna)
5883 ("libfixposix" ,libfixposix)
5884 ("split-sequence" ,sbcl-split-sequence)
5885 ("swap-bytes" ,sbcl-swap-bytes)))
88f06fd0 5886 (arguments
2ff8b5ba
GLV
5887 '(#:asd-files '("iolib.asdf.asd"
5888 "iolib.conf.asd"
5889 "iolib.common-lisp.asd"
5890 "iolib.base.asd"
5891 "iolib.asd")
2ff8b5ba
GLV
5892 #:phases
5893 (modify-phases %standard-phases
5894 (add-after 'unpack 'fix-paths
5895 (lambda* (#:key inputs #:allow-other-keys)
5896 (substitute* "src/syscalls/ffi-functions-unix.lisp"
5897 (("\\(:default \"libfixposix\"\\)")
5898 (string-append
5899 "(:default \""
5900 (assoc-ref inputs "libfixposix") "/lib/libfixposix\")")))
5901 ;; Socket tests need Internet access, disable them.
5902 (substitute* "iolib.asd"
5903 (("\\(:file \"sockets\" :depends-on \\(\"pkgdcl\" \"defsuites\"\\)\\)")
5904 "")))))))
5905 (synopsis "Common Lisp I/O library")
88f06fd0
PN
5906 (description "IOlib is to be a better and more modern I/O library than
5907the standard Common Lisp library. It contains a socket library, a DNS
5908resolver, an I/O multiplexer(which supports @code{select(2)}, @code{epoll(4)}
5909and @code{kqueue(2)}), a pathname library and file-system utilities.")
5910 (license license:expat))))
5911
af5c4eff 5912(define-public cl-iolib
c6201ab9
PN
5913 (let ((parent (sbcl-package->cl-source-package sbcl-iolib)))
5914 (package
5915 (inherit parent)
5916 (propagated-inputs
5917 ;; Need header to compile.
5918 `(("libfixposix" ,libfixposix)
5919 ,@(package-propagated-inputs parent))))))
af5c4eff 5920
e7cbcf5a
GLV
5921(define-public ecl-iolib
5922 (sbcl-package->ecl-package sbcl-iolib))
5923
88f06fd0
PN
5924(define-public sbcl-ieee-floats
5925 (let ((commit "566b51a005e81ff618554b9b2f0b795d3b29398d")
5926 (revision "1"))
5927 (package
5928 (name "sbcl-ieee-floats")
5929 (build-system asdf-build-system/sbcl)
5930 (version (git-version "20170924" revision commit))
5931 (home-page "https://github.com/marijnh/ieee-floats/")
5932 (source
5933 (origin
5934 (method git-fetch)
5935 (uri (git-reference
5936 (url home-page)
5937 (commit commit)))
5938 (file-name (git-file-name name version))
5939 (sha256
5940 (base32
5941 "1xyj49j9x3lc84cv3dhbf9ja34ywjk1c46dklx425fxw9mkwm83m"))))
5942 (native-inputs
5943 `(("fiveam" ,sbcl-fiveam)))
5944 (synopsis "IEEE 754 binary representation for floats in Common Lisp")
c05181a3 5945 (description "This is a Common Lisp library that converts
88f06fd0
PN
5946floating point values to IEEE 754 binary representation.")
5947 (license license:bsd-3))))
5948
5949(define-public cl-ieee-floats
5950 (sbcl-package->cl-source-package sbcl-ieee-floats))
5951
e7cbcf5a
GLV
5952(define-public ecl-ieee-floats
5953 (sbcl-package->ecl-package sbcl-ieee-floats))
5954
88f06fd0
PN
5955(define sbcl-closure-common
5956 (let ((commit "e3c5f5f454b72b01b89115e581c3c52a7e201e5c")
5957 (revision "1"))
5958 (package
5959 (name "sbcl-closure-common")
5960 (build-system asdf-build-system/sbcl)
5961 (version (git-version "20101006" revision commit))
5962 (home-page "https://common-lisp.net/project/cxml/")
5963 (source
5964 (origin
5965 (method git-fetch)
5966 (uri (git-reference
5967 (url "https://github.com/sharplispers/closure-common")
5968 (commit commit)))
5969 (file-name (git-file-name name version))
5970 (sha256
5971 (base32
5972 "0k5r2qxn122pxi301ijir3nayi9sg4d7yiy276l36qmzwhp4mg5n"))))
5973 (inputs
5974 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
5975 ("babel" ,sbcl-babel)))
5976 (synopsis "Support Common Lisp library for CXML")
5977 (description "Closure-common is an internal helper library. The name
5978Closure is a reference to the web browser it was originally written for.")
5979 ;; TODO: License?
5980 (license #f))))
5981
2ff8b5ba 5982(define-public sbcl-cxml
88f06fd0
PN
5983 (let ((commit "00b22bf4c4cf11c993d5866fae284f95ab18e6bf")
5984 (revision "1"))
5985 (package
2ff8b5ba 5986 (name "sbcl-cxml")
88f06fd0 5987 (version (git-version "0.0.0" revision commit))
88f06fd0
PN
5988 (source
5989 (origin
5990 (method git-fetch)
5991 (uri (git-reference
5992 (url "https://github.com/sharplispers/cxml")
5993 (commit commit)))
5994 (file-name (git-file-name name version))
5995 (sha256
5996 (base32
5997 "13kif7rf3gqdycsk9zq0d7y0g9y81krkl0z87k0p2fkbjfgrph37"))))
2ff8b5ba 5998 (build-system asdf-build-system/sbcl)
88f06fd0
PN
5999 (inputs
6000 `(("closure-common" ,sbcl-closure-common)
6001 ("puri" ,sbcl-puri)
2ff8b5ba 6002 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
2ff8b5ba
GLV
6003 (synopsis "Common Lisp XML parser")
6004 (description "CXML implements a namespace-aware, validating XML 1.0
6005parser as well as the DOM Level 2 Core interfaces. Two parser interfaces are
6006offered, one SAX-like, the other similar to StAX.")
6007 (home-page "https://common-lisp.net/project/cxml/")
6008 (license license:llgpl))))
88f06fd0
PN
6009
6010(define-public cl-cxml
6011 (sbcl-package->cl-source-package sbcl-cxml))
6012
e7cbcf5a
GLV
6013(define-public ecl-cxml
6014 (sbcl-package->ecl-package sbcl-cxml))
6015
88f06fd0
PN
6016(define-public sbcl-cl-reexport
6017 (let ((commit "312f3661bbe187b5f28536cd7ec2956e91366c3b")
6018 (revision "1"))
6019 (package
6020 (name "sbcl-cl-reexport")
6021 (build-system asdf-build-system/sbcl)
6022 (version (git-version "0.1" revision commit))
6023 (home-page "https://github.com/takagi/cl-reexport")
6024 (source
6025 (origin
6026 (method git-fetch)
6027 (uri (git-reference
6028 (url home-page)
6029 (commit commit)))
6030 (file-name (git-file-name name version))
6031 (sha256
6032 (base32
6033 "1cwpn1m3wrl0fl9plznn7p464db646gnfc8zkyk97dyxski2aq0x"))))
6034 (inputs
6035 `(("alexandria" ,sbcl-alexandria)))
6036 (arguments
6037 ;; TODO: Tests fail because cl-test-more is missing, but I can't find it online.
6038 `(#:tests? #f))
6039 (synopsis "HTTP cookie manager for Common Lisp")
6040 (description "cl-cookie is a Common Lisp library featuring parsing of
6041cookie headers, cookie creation, cookie jar creation and more.")
6042 (license license:llgpl))))
6043
6044(define-public cl-reexport
6045 (sbcl-package->cl-source-package sbcl-cl-reexport))
6046
e7cbcf5a
GLV
6047(define-public ecl-cl-reexport
6048 (sbcl-package->ecl-package sbcl-cl-reexport))
6049
88f06fd0
PN
6050(define-public sbcl-cl-cookie
6051 (let ((commit "cea55aed8b9ad25fafd13defbcb9fe8f41b29546")
6052 (revision "1"))
6053 (package
6054 (name "sbcl-cl-cookie")
6055 (build-system asdf-build-system/sbcl)
6056 (version (git-version "0.9.10" revision commit))
6057 (home-page "https://github.com/fukamachi/cl-cookie")
6058 (source
6059 (origin
6060 (method git-fetch)
6061 (uri (git-reference
6062 (url home-page)
6063 (commit commit)))
6064 (file-name (git-file-name name version))
6065 (sha256
6066 (base32
6067 "090g7z75h98zvc1ldx0vh4jn4086dhjm2w30jcwkq553qmyxwl8h"))))
6068 (inputs
6069 `(("proc-parse" ,sbcl-proc-parse)
6070 ("alexandria" ,sbcl-alexandria)
6071 ("quri" ,sbcl-quri)
6072 ("cl-ppcre" ,sbcl-cl-ppcre)
6073 ("local-time" ,sbcl-local-time)))
6074 (native-inputs
2ff8b5ba 6075 `(("prove" ,sbcl-prove)))
88f06fd0
PN
6076 (arguments
6077 ;; TODO: Tests fail because cl-cookie depends on cl-cookie-test.
6078 `(#:tests? #f))
6079 (synopsis "HTTP cookie manager for Common Lisp")
6080 (description "cl-cookie is a Common Lisp library featuring parsing of
6081cookie headers, cookie creation, cookie jar creation and more.")
6082 (license license:bsd-2))))
6083
6084(define-public cl-cookie
6085 (sbcl-package->cl-source-package sbcl-cl-cookie))
6086
e7cbcf5a
GLV
6087(define-public ecl-cl-cookie
6088 (sbcl-package->ecl-package sbcl-cl-cookie))
6089
88f06fd0 6090(define-public sbcl-dexador
e067ef95 6091 (let ((commit "953090f04c4d1a9ee6632b90133cdc297b68badc")
88f06fd0
PN
6092 (revision "1"))
6093 (package
6094 (name "sbcl-dexador")
6095 (build-system asdf-build-system/sbcl)
e067ef95 6096 (version "0.9.14" )
88f06fd0
PN
6097 (home-page "https://github.com/fukamachi/dexador")
6098 (source
6099 (origin
6100 (method git-fetch)
6101 (uri (git-reference
6102 (url home-page)
6103 (commit commit)))
6104 (file-name (git-file-name name version))
6105 (sha256
6106 (base32
e067ef95 6107 "0w18fz3301rpmwc3kwb810czcd24mbf7r1z8vdyc0v5crjfpw3mn"))))
88f06fd0
PN
6108 (inputs
6109 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)
6110 ("babel" ,sbcl-babel)
6111 ("usocket" ,sbcl-usocket)
6112 ("fast-http" ,sbcl-fast-http)
6113 ("quri" ,sbcl-quri)
6114 ("fast-io" ,sbcl-fast-io)
6115 ("chunga" ,sbcl-chunga)
6116 ("cl-ppcre" ,sbcl-cl-ppcre)
6117 ("cl-cookie" ,sbcl-cl-cookie)
6118 ("trivial-mimes" ,sbcl-trivial-mimes)
6119 ("chipz" ,sbcl-chipz)
6120 ("cl-base64" ,sbcl-cl-base64)
6121 ("cl-reexport" ,sbcl-cl-reexport)
6122 ("cl+ssl" ,sbcl-cl+ssl)
6123 ("bordeaux-threads" ,sbcl-bordeaux-threads)
6124 ("alexandria" ,sbcl-alexandria)))
6125 (native-inputs
6126 `(("prove" ,sbcl-prove)
2ff8b5ba 6127 ("lack" ,sbcl-lack)
88f06fd0
PN
6128 ("clack" ,sbcl-clack)
6129 ("babel" ,sbcl-babel)
6130 ("alexandria" ,sbcl-alexandria)
6131 ("cl-ppcre" ,sbcl-cl-ppcre)
e067ef95
PN
6132 ("local-time" ,sbcl-local-time)
6133 ("trivial-features" ,sbcl-trivial-features)))
88f06fd0
PN
6134 (arguments
6135 ;; TODO: Circular dependency: tests depend on clack-test which depends on dexador.
6136 `(#:tests? #f
6137 #:phases
6138 (modify-phases %standard-phases
6139 (add-after 'unpack 'fix-permissions
6140 (lambda _ (make-file-writable "t/data/test.gz") #t)))))
6141 (synopsis "Yet another HTTP client for Common Lisp")
6142 (description "Dexador is yet another HTTP client for Common Lisp with
6143neat APIs and connection-pooling. It is meant to supersede Drakma.")
6144 (license license:expat))))
6145
6146(define-public cl-dexador
6147 (package
6148 (inherit (sbcl-package->cl-source-package sbcl-dexador))
6149 (arguments
6150 `(#:phases
6151 ;; asdf-build-system/source has its own phases and does not inherit
6152 ;; from asdf-build-system/sbcl phases.
6153 (modify-phases %standard-phases/source
09db7f39
PN
6154 ;; Already done in SBCL package.
6155 (delete 'reset-gzip-timestamps))))))
88f06fd0
PN
6156
6157(define-public ecl-dexador
6158 (sbcl-package->ecl-package sbcl-dexador))
6159
6160(define-public sbcl-lisp-namespace
6161 (let ((commit "28107cafe34e4c1c67490fde60c7f92dc610b2e0")
6162 (revision "1"))
6163 (package
6164 (name "sbcl-lisp-namespace")
6165 (build-system asdf-build-system/sbcl)
6166 (version (git-version "0.1" revision commit))
6167 (home-page "https://github.com/guicho271828/lisp-namespace")
6168 (source
6169 (origin
6170 (method git-fetch)
6171 (uri (git-reference
6172 (url home-page)
6173 (commit commit)))
6174 (file-name (git-file-name name version))
6175 (sha256
6176 (base32
6177 "1jw2wykp06z2afb9nm1lgfzll5cjlj36pnknjx614057zkkxq4iy"))))
6178 (inputs
6179 `(("alexandria" ,sbcl-alexandria)))
6180 (native-inputs
6181 `(("fiveam" ,sbcl-fiveam)))
6182 (arguments
6183 `(#:test-asd-file "lisp-namespace.test.asd"
6184 ;; XXX: Component LISP-NAMESPACE-ASD::LISP-NAMESPACE.TEST not found
6185 #:tests? #f))
6186 (synopsis "LISP-N, or extensible namespaces in Common Lisp")
6187 (description "Common Lisp already has major 2 namespaces, function
6188namespace and value namespace (or variable namespace), but there are actually
6189more — e.g., class namespace.
6190This library offers macros to deal with symbols from any namespace.")
6191 (license license:llgpl))))
6192
6193(define-public cl-lisp-namespace
6194 (sbcl-package->cl-source-package sbcl-lisp-namespace))
6195
e7cbcf5a
GLV
6196(define-public ecl-lisp-namespace
6197 (sbcl-package->ecl-package sbcl-lisp-namespace))
6198
88f06fd0 6199(define-public sbcl-trivial-cltl2
36ceab7d
PN
6200 (let ((commit "8a3bda30dc25d2f65fcf514d0eb6e6db75252c61")
6201 (revision "2"))
88f06fd0
PN
6202 (package
6203 (name "sbcl-trivial-cltl2")
6204 (build-system asdf-build-system/sbcl)
6205 (version (git-version "0.1.1" revision commit))
6206 (home-page "https://github.com/Zulu-Inuoe/trivial-cltl2")
6207 (source
6208 (origin
6209 (method git-fetch)
6210 (uri (git-reference
6211 (url home-page)
6212 (commit commit)))
6213 (file-name (git-file-name name version))
6214 (sha256
6215 (base32
36ceab7d 6216 "08cnzb9rnczn4pn2zpf0587ny4wjy1mjndy885fz9pw7xrlx37ip"))))
88f06fd0
PN
6217 (synopsis "Simple CLtL2 compatibility layer for Common Lisp")
6218 (description "This library is a portable compatibility layer around
6219\"Common Lisp the Language, 2nd
6220Edition\" (@url{https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node102.html})
6221and it exports symbols from implementation-specific packages.")
6222 (license license:llgpl))))
6223
6224(define-public cl-trivial-cltl2
6225 (sbcl-package->cl-source-package sbcl-trivial-cltl2))
6226
12df8b7b
GLV
6227(define-public ecl-trivial-cltl2
6228 (sbcl-package->ecl-package sbcl-trivial-cltl2))
6229
88f06fd0
PN
6230(define-public sbcl-introspect-environment
6231 (let ((commit "fff42f8f8fd0d99db5ad6c5812e53de7d660020b")
6232 (revision "1"))
6233 (package
6234 (name "sbcl-introspect-environment")
6235 (build-system asdf-build-system/sbcl)
6236 (version (git-version "0.1" revision commit))
6237 (home-page "https://github.com/Bike/introspect-environment")
6238 (source
6239 (origin
6240 (method git-fetch)
6241 (uri (git-reference
6242 (url home-page)
6243 (commit commit)))
6244 (file-name (git-file-name name version))
6245 (sha256
6246 (base32
6247 "1i305n0wfmpac63ni4i3vixnnkl8daw5ncxy0k3dv92krgx6qzhp"))))
6248 (native-inputs
6249 `(("fiveam" ,sbcl-fiveam)))
6250 (synopsis "Common Lisp environment introspection portability layer")
6251 (description "This library is a small interface to portable but
6252nonstandard introspection of Common Lisp environments. It is intended to
6253allow a bit more compile-time introspection of environments in Common Lisp.
6254
6255Quite a bit of information is available at the time a macro or compiler-macro
6256runs; inlining info, type declarations, that sort of thing. This information
6257is all standard - any Common Lisp program can @code{(declare (integer x))} and
6258such.
6259
6260This info ought to be accessible through the standard @code{&environment}
6261parameters, but it is not. Several implementations keep the information for
6262their own purposes but do not make it available to user programs, because
6263there is no standard mechanism to do so.
6264
6265This library uses implementation-specific hooks to make information available
6266to users. This is currently supported on SBCL, CCL, and CMUCL. Other
6267implementations have implementations of the functions that do as much as they
6268can and/or provide reasonable defaults.")
6269 (license license:wtfpl2))))
6270
6271(define-public cl-introspect-environment
6272 (sbcl-package->cl-source-package sbcl-introspect-environment))
6273
e7cbcf5a
GLV
6274(define-public ecl-introspect-environment
6275 (sbcl-package->ecl-package sbcl-introspect-environment))
6276
88f06fd0 6277(define-public sbcl-type-i
758f32af
PN
6278 (let ((commit "d34440ab4ebf5a46a58deccb35950b15670e3667")
6279 (revision "2"))
88f06fd0
PN
6280 (package
6281 (name "sbcl-type-i")
6282 (build-system asdf-build-system/sbcl)
6283 (version (git-version "0.1" revision commit))
6284 (home-page "https://github.com/guicho271828/type-i")
6285 (source
6286 (origin
6287 (method git-fetch)
6288 (uri (git-reference
6289 (url home-page)
6290 (commit commit)))
6291 (file-name (git-file-name name version))
6292 (sha256
6293 (base32
758f32af 6294 "12wsga0pwjkkr176lnjwkmmlm3ccp0n310sjj9h20lk53iyd0z69"))))
88f06fd0
PN
6295 (inputs
6296 `(("alexandria" ,sbcl-alexandria)
6297 ("introspect-environment" ,sbcl-introspect-environment)
6298 ("trivia.trivial" ,sbcl-trivia.trivial)))
6299 (native-inputs
6300 `(("fiveam" ,sbcl-fiveam)))
6301 (arguments
6302 `(#:test-asd-file "type-i.test.asd"))
6303 (synopsis "Type inference utility on unary predicates for Common Lisp")
6304 (description "This library tries to provide a way to detect what kind of
6305type the given predicate is trying to check. This is different from inferring
6306the return type of a function.")
6307 (license license:llgpl))))
6308
6309(define-public cl-type-i
6310 (sbcl-package->cl-source-package sbcl-type-i))
6311
12df8b7b
GLV
6312(define-public ecl-type-i
6313 (package
6314 (inherit (sbcl-package->ecl-package sbcl-type-i))
6315 (arguments
6316 ;; The tests get stuck indefinitly
6317 '(#:tests? #f))))
6318
88f06fd0
PN
6319(define-public sbcl-optima
6320 (let ((commit "373b245b928c1a5cce91a6cb5bfe5dd77eb36195")
6321 (revision "1"))
6322 (package
6323 (name "sbcl-optima")
6324 (build-system asdf-build-system/sbcl)
6325 (version (git-version "1.0" revision commit))
6326 (home-page "https://github.com/m2ym/optima")
6327 (source
6328 (origin
6329 (method git-fetch)
6330 (uri (git-reference
6331 (url home-page)
6332 (commit commit)))
6333 (file-name (git-file-name name version))
6334 (sha256
6335 (base32
6336 "1yw4ymq7ms89342kkvb3aqxgv0w38m9kd8ikdqxxzyybnkjhndal"))))
6337 (inputs
6338 `(("alexandria" ,sbcl-alexandria)
6339 ("closer-mop" ,sbcl-closer-mop)))
6340 (native-inputs
6341 `(("eos" ,sbcl-eos)))
6342 (arguments
6343 ;; XXX: Circular dependencies: tests depend on optima.ppcre which depends on optima.
6344 `(#:tests? #f
6345 #:test-asd-file "optima.test.asd"))
6346 (synopsis "Optimized pattern matching library for Common Lisp")
6347 (description "Optima is a fast pattern matching library which uses
6348optimizing techniques widely used in the functional programming world.")
6349 (license license:expat))))
6350
6351(define-public cl-optima
6352 (sbcl-package->cl-source-package sbcl-optima))
6353
e7cbcf5a
GLV
6354(define-public ecl-optima
6355 (sbcl-package->ecl-package sbcl-optima))
6356
88f06fd0 6357(define-public sbcl-fare-quasiquote
639b47e6
GLV
6358 (let ((commit "640d39a0451094071b3e093c97667b3947f43639")
6359 (revision "1"))
6360 (package
6361 (name "sbcl-fare-quasiquote")
6362 (build-system asdf-build-system/sbcl)
6363 (version (git-version "1.0.1" revision commit))
6364 (home-page "https://gitlab.common-lisp.net/frideau/fare-quasiquote")
6365 (source
6366 (origin
6367 (method git-fetch)
6368 (uri (git-reference
6369 (url (string-append "https://gitlab.common-lisp.net/frideau/"
6370 "fare-quasiquote.git"))
6371 (commit commit)))
6372 (file-name (git-file-name name version))
6373 (sha256
6374 (base32 "1g6q11l50kgija9f55lzqpcwvaq0ljiw8v1j265hnyg6nahjwjvg"))))
6375 (inputs
2ff8b5ba
GLV
6376 `(("fare-utils" ,sbcl-fare-utils)
6377 ("named-readtables" ,sbcl-named-readtables)
6378 ("optima" ,sbcl-optima)))
639b47e6
GLV
6379 (arguments
6380 ;; XXX: Circular dependencies: Tests depend on subsystems,
6381 ;; which depend on the main systems.
6382 `(#:tests? #f
2ff8b5ba
GLV
6383 #:asd-systems '("fare-quasiquote"
6384 "fare-quasiquote-extras")
639b47e6
GLV
6385 #:phases
6386 (modify-phases %standard-phases
6387 ;; XXX: Require 1.0.0 version of fare-utils, and we package some
6388 ;; commits after 1.0.0.5, but ASDF fails to read the
6389 ;; "-REVISION-COMMIT" part generated by Guix.
6390 (add-after 'unpack 'patch-requirement
6391 (lambda _
6392 (substitute* "fare-quasiquote.asd"
6393 (("\\(:version \"fare-utils\" \"1.0.0\"\\)")
2ff8b5ba
GLV
6394 "\"fare-utils\""))
6395 (substitute* "fare-quasiquote-optima.asd"
6396 (("\\(:version \"optima\" \"1\\.0\"\\)")
6397 "\"optima\""))
6398 #t)))))
639b47e6
GLV
6399 (synopsis "Pattern-matching friendly implementation of quasiquote")
6400 (description "The main purpose of this n+2nd reimplementation of
88f06fd0
PN
6401quasiquote is enable matching of quasiquoted patterns, using Optima or
6402Trivia.")
639b47e6 6403 (license license:expat))))
88f06fd0
PN
6404
6405(define-public cl-fare-quasiquote
6406 (sbcl-package->cl-source-package sbcl-fare-quasiquote))
6407
e7cbcf5a
GLV
6408(define-public ecl-fare-quasiquote
6409 (sbcl-package->ecl-package sbcl-fare-quasiquote))
6410
2ff8b5ba
GLV
6411;;; Split the trivia package in two to work around the circular dependency
6412;;; between guicho271828/trivia and guicho271828/type-i.
6413(define-public sbcl-trivia.trivial
e2140278
PN
6414 (let ((commit "7286d5d2a4f685f1cac8370816f95276c0851111")
6415 (revision "3"))
88f06fd0 6416 (package
2ff8b5ba 6417 (name "sbcl-trivia.trivial")
88f06fd0 6418 (version (git-version "0.0.0" revision commit))
88f06fd0
PN
6419 (source
6420 (origin
6421 (method git-fetch)
6422 (uri (git-reference
2ff8b5ba 6423 (url "https://github.com/guicho271828/trivia")
88f06fd0 6424 (commit commit)))
2ff8b5ba 6425 (file-name (git-file-name "trivia" version))
88f06fd0
PN
6426 (sha256
6427 (base32
e2140278 6428 "0ln0sj3jry7kzbmxhnin66kpbqan1wp8wwgdbw4k29afbdblkcca"))))
2ff8b5ba 6429 (build-system asdf-build-system/sbcl)
88f06fd0 6430 (inputs
2ff8b5ba
GLV
6431 `(("alexandria" ,sbcl-alexandria)
6432 ("closer-mop" ,sbcl-closer-mop)
6433 ("lisp-namespace" ,sbcl-lisp-namespace)
6434 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
6435 (arguments
e765d9c9 6436 '(#:phases
2ff8b5ba
GLV
6437 (modify-phases %standard-phases
6438 (add-after 'unpack 'fix-build
6439 (lambda _
6440 (for-each delete-file
6441 '("trivia.balland2006.asd"
6442 "trivia.ppcre.asd"
6443 "trivia.quasiquote.asd"
6444 "trivia.cffi.asd"
6445 "trivia.asd"
6446 "trivia.test.asd"))
6447 #t)))))
88f06fd0
PN
6448 (synopsis "Pattern matching in Common Lisp")
6449 (description "Trivia is a pattern matching compiler that is compatible
6450with Optima, another pattern matching library for Common Lisp. It is meant to
6451be faster and more extensible than Optima.")
2ff8b5ba 6452 (home-page "https://github.com/guicho271828/trivia")
88f06fd0
PN
6453 (license license:llgpl))))
6454
d9bdde74
GLV
6455(define-public cl-trivia.trivial
6456 (sbcl-package->cl-source-package sbcl-trivia.trivial))
6457
12df8b7b
GLV
6458(define-public ecl-trivia.trivial
6459 (sbcl-package->ecl-package sbcl-trivia.trivial))
6460
88f06fd0
PN
6461(define-public sbcl-trivia
6462 (package
2ff8b5ba 6463 (inherit sbcl-trivia.trivial)
88f06fd0 6464 (name "sbcl-trivia")
88f06fd0
PN
6465 (native-inputs
6466 `(("fiveam" ,sbcl-fiveam)
88f06fd0 6467 ("optima" ,sbcl-optima)))
2ff8b5ba
GLV
6468 (inputs
6469 `(("alexandria" ,sbcl-alexandria)
6470 ("cffi" ,sbcl-cffi)
6471 ("cl-ppcre" ,sbcl-cl-ppcre)
6472 ("fare-quasiquote" ,sbcl-fare-quasiquote)
6473 ("iterate" ,sbcl-iterate)
6474 ("trivia.trivial" ,sbcl-trivia.trivial)
6475 ("type-i" ,sbcl-type-i)))
6476 (arguments
3f8bbf7c 6477 '(#:asd-systems '("trivia"
2ff8b5ba
GLV
6478 "trivia.ppcre"
6479 "trivia.quasiquote"
6480 "trivia.cffi")
6481 #:test-asd-file "trivia.test.asd"
6482 #:phases
6483 (modify-phases %standard-phases
6484 (add-after 'unpack 'fix-build
6485 (lambda _
6486 (for-each delete-file
6487 '("trivia.level0.asd"
6488 "trivia.level1.asd"
6489 "trivia.level2.asd"
6490 "trivia.trivial.asd"))
6491 #t)))))))
88f06fd0
PN
6492
6493(define-public cl-trivia
6494 (sbcl-package->cl-source-package sbcl-trivia))
6495
12df8b7b
GLV
6496(define-public ecl-trivia
6497 (sbcl-package->ecl-package sbcl-trivia))
6498
88f06fd0
PN
6499(define-public sbcl-mk-string-metrics
6500 (package
6501 (name "sbcl-mk-string-metrics")
6502 (version "0.1.2")
6503 (home-page "https://github.com/cbaggers/mk-string-metrics/")
6504 (source (origin
6505 (method git-fetch)
6506 (uri (git-reference
6507 (url home-page)
6508 (commit version)))
6509 (sha256
6510 (base32 "0bg0bv2mfd4k0g3x72x563hvmrx18xavaffr6xk5rh4if5j7kcf6"))
6511 (file-name (git-file-name name version))))
6512 (build-system asdf-build-system/sbcl)
6513 (synopsis "Calculate various string metrics efficiently in Common Lisp")
6514 (description "This library implements efficient algorithms that calculate
6515various string metrics in Common Lisp:
6516
6517@itemize
6518@item Damerau-Levenshtein distance
6519@item Hamming distance
6520@item Jaccard similarity coefficient
6521@item Jaro distance
6522@item Jaro-Winkler distance
6523@item Levenshtein distance
6524@item Normalized Damerau-Levenshtein distance
6525@item Normalized Levenshtein distance
6526@item Overlap coefficient
6527@end itemize\n")
6528 (license license:x11)))
6529
6530(define-public cl-mk-string-metrics
6531 (sbcl-package->cl-source-package sbcl-mk-string-metrics))
6532
e7cbcf5a
GLV
6533(define-public ecl-mk-string-metrics
6534 (sbcl-package->ecl-package sbcl-mk-string-metrics))
6535
88f06fd0 6536(define-public sbcl-cl-str
cc978955
PN
6537 (package
6538 (name "sbcl-cl-str")
6539 (version "0.19")
6540 (home-page "https://github.com/vindarel/cl-str")
6541 (source (origin
6542 (method git-fetch)
6543 (uri (git-reference
6544 (url home-page)
6545 (commit version)))
6546 (sha256
6547 (base32 "1jyza2jhn7w6fl4w87pv0m87z5ia48m6dqw12k0mdh7l3mgjq839"))
6548 (file-name (git-file-name name version))))
6549 (build-system asdf-build-system/sbcl)
6550 (inputs
6551 `(("cl-ppcre" ,sbcl-cl-ppcre)
6552 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
6553 ("cl-change-case" ,sbcl-cl-change-case)))
6554 (native-inputs
32787d65 6555 `(("prove" ,sbcl-prove)))
cc978955 6556 (arguments
32787d65 6557 `(#:asd-systems '("str")
cc978955
PN
6558 #:test-asd-file "str.test.asd"))
6559 (synopsis "Modern, consistent and terse Common Lisp string manipulation library")
6560 (description "A modern and consistent Common Lisp string manipulation
88f06fd0
PN
6561library that focuses on modernity, simplicity and discoverability:
6562@code{(str:trim s)} instead of @code{(string-trim '(#\\Space ...) s)}), or
6563@code{str:concat strings} instead of an unusual format construct; one
6564discoverable library instead of many; consistency and composability, where
6565@code{s} is always the last argument, which makes it easier to feed pipes and
6566arrows.")
cc978955 6567 (license license:expat)))
88f06fd0
PN
6568
6569(define-public cl-str
6570 (sbcl-package->cl-source-package sbcl-cl-str))
6571
12df8b7b
GLV
6572(define-public ecl-cl-str
6573 (sbcl-package->ecl-package sbcl-cl-str))
6574
88f06fd0
PN
6575(define-public sbcl-cl-xmlspam
6576 (let ((commit "ea06abcca2a73a9779bcfb09081e56665f94e22a"))
6577 (package
6578 (name "sbcl-cl-xmlspam")
6579 (build-system asdf-build-system/sbcl)
6580 (version (git-version "0.0.0" "1" commit))
6581 (home-page "https://github.com/rogpeppe/cl-xmlspam")
6582 (source
6583 (origin
6584 (method git-fetch)
6585 (uri (git-reference
6586 (url home-page)
6587 (commit commit)))
6588 (file-name (string-append name "-" version))
6589 (sha256
6590 (base32
6591 "0w4rqvrgdgk3fwfq3kx4r7wwdr2bv3b6n3bdqwsiriw9psqzpz2s"))))
6592 (inputs
6593 `(("cxml" ,sbcl-cxml)
6594 ("cl-ppcre" ,sbcl-cl-ppcre)))
6595 (synopsis "Concise, regexp-like pattern matching on streaming XML for Common Lisp")
6596 (description "CXML does an excellent job at parsing XML elements, but what
6597do you do when you have a XML file that's larger than you want to fit in
6598memory, and you want to extract some information from it? Writing code to deal
6599with SAX events, or even using Klacks, quickly becomes tedious.
6600@code{cl-xmlspam} (for XML Stream PAttern Matcher) is designed to make it easy
6601to write code that mirrors the structure of the XML that it's parsing. It
6602also makes it easy to shift paradigms when necessary - the usual Lisp control
6603constructs can be used interchangeably with pattern matching, and the full
6604power of CXML is available when necessary.")
6605 (license license:bsd-3))))
6606
d9bdde74
GLV
6607(define-public cl-xmlspam
6608 (sbcl-package->cl-source-package sbcl-cl-xmlspam))
6609
12df8b7b
GLV
6610(define-public ecl-cl-xmlspam
6611 (sbcl-package->ecl-package sbcl-cl-xmlspam))
6612
2ff8b5ba 6613(define-public sbcl-dbus
88f06fd0
PN
6614 (let ((commit "24b452df3a45ca5dc95015500f34baad175c981a")
6615 (revision "1"))
6616 (package
2ff8b5ba 6617 (name "sbcl-dbus")
88f06fd0
PN
6618 (version (git-version "20190408" revision commit))
6619 (home-page "https://github.com/death/dbus")
6620 (source
6621 (origin
6622 (method git-fetch)
6623 (uri (git-reference
6624 (url home-page)
6625 (commit commit)))
6626 (file-name (git-file-name name version))
6627 (sha256
6628 (base32
6629 "0fw2q866yddbf23nk9pxphm9gsasx35vjyss82xzvndnjmzlqfl5"))))
2ff8b5ba
GLV
6630 (build-system asdf-build-system/sbcl)
6631 (inputs
88f06fd0
PN
6632 `(("alexandria" ,sbcl-alexandria)
6633 ("trivial-garbage" ,sbcl-trivial-garbage)
6634 ("babel" ,sbcl-babel)
6635 ("iolib" ,sbcl-iolib)
88f06fd0
PN
6636 ("ieee-floats" ,sbcl-ieee-floats)
6637 ("flexi-streams" ,sbcl-flexi-streams)
6638 ("cl-xmlspam" ,sbcl-cl-xmlspam)
6639 ("ironclad" ,sbcl-ironclad)))
6640 (synopsis "D-Bus client library for Common Lisp")
104b1bde 6641 (description "This is a Common Lisp library that publishes D-Bus
88f06fd0
PN
6642objects as well as send and notify other objects connected to a bus.")
6643 (license license:bsd-2))))
6644
2ff8b5ba
GLV
6645(define-public cl-dbus
6646 (sbcl-package->cl-source-package sbcl-dbus))
6647
e7cbcf5a
GLV
6648(define-public ecl-dbus
6649 (sbcl-package->ecl-package sbcl-dbus))
6650
88f06fd0
PN
6651(define-public sbcl-cl-hooks
6652 (let ((commit "5b638083f3b4f1221a52631d9c8a0a265565cac7")
6653 (revision "1"))
6654 (package
6655 (name "sbcl-cl-hooks")
6656 (build-system asdf-build-system/sbcl)
6657 (version (git-version "0.2.1" revision commit))
6658 (home-page "https://github.com/scymtym/architecture.hooks")
6659 (source
6660 (origin
6661 (method git-fetch)
6662 (uri (git-reference
6663 (url home-page)
6664 (commit commit)))
6665 (file-name (git-file-name name version))
6666 (sha256
6667 (base32
6668 "0bg3l0a28lw5gqqjp6p6b5nhwqk46sgkb7184w5qbfngw1hk8x9y"))))
6669 (inputs
6670 `(("alexandria" ,sbcl-alexandria)
6671 ("let-plus" ,sbcl-let-plus)
6672 ("trivial-garbage" ,sbcl-trivial-garbage)
6673 ("closer-mop" ,sbcl-closer-mop)))
6674 (native-inputs
6675 `(("fiveam" ,sbcl-fiveam)))
6676 (synopsis "Hooks extension point mechanism (as in Emacs) for Common Lisp")
6677 (description "A hook, in the present context, is a certain kind of
6678extension point in a program that allows interleaving the execution of
6679arbitrary code with the execution of a the program without introducing any
6680coupling between the two. Hooks are used extensively in the extensible editor
6681Emacs.
6682
6683In the Common LISP Object System (CLOS), a similar kind of extensibility is
6684possible using the flexible multi-method dispatch mechanism. It may even seem
6685that the concept of hooks does not provide any benefits over the possibilities
6686of CLOS. However, there are some differences:
6687
6688@itemize
6689
6690@item There can be only one method for each combination of specializers and
6691qualifiers. As a result this kind of extension point cannot be used by
6692multiple extensions independently.
6693@item Removing code previously attached via a @code{:before}, @code{:after} or
6694@code{:around} method can be cumbersome.
6695@item There could be other or even multiple extension points besides @code{:before}
6696and @code{:after} in a single method.
6697@item Attaching codes to individual objects using eql specializers can be
6698cumbersome.
6699@item Introspection of code attached a particular extension point is
6700cumbersome since this requires enumerating and inspecting the methods of a
6701generic function.
6702@end itemize
6703
6704This library tries to complement some of these weaknesses of method-based
6705extension-points via the concept of hooks.")
6706 (license license:llgpl))))
6707
6708(define-public cl-hooks
6709 (sbcl-package->cl-source-package sbcl-cl-hooks))
6710
6711(define-public ecl-cl-hooks
6712 (sbcl-package->ecl-package sbcl-cl-hooks))
6713
703cdbbd
AK
6714(define-public sbcl-cl-autowrap
6715 (let ((revision "1")
6716 (commit "ae846d6968fc0d000de0c541638929a157f3009e"))
6717 ;; no taged branches
6718 (package
6719 (name "sbcl-cl-autowrap")
6720 (version (git-version "1.0" revision commit))
6721 (source
6722 (origin
6723 (method git-fetch)
6724 (uri (git-reference
6725 (url "https://github.com/rpav/cl-autowrap")
6726 (commit commit)))
6727 (file-name (git-file-name name version))
6728 (sha256
6729 (base32 "1gisldp2zns92kdcaikghm7c38ldy2d884n8bfg0wcjvbz78p3ar"))))
6730 (build-system asdf-build-system/sbcl)
6731 (inputs
6732 `(("alexandria" ,sbcl-alexandria)
6733 ("cffi" ,sbcl-cffi)
6734 ("cl-json" ,sbcl-cl-json)
6735 ("cl-ppcre" ,sbcl-cl-ppcre)
6736 ("defpackage-plus" ,sbcl-defpackage-plus)
6737 ("trivial-features" ,sbcl-trivial-features)))
6738 (home-page "https://github.com/rpav/cl-autowrap")
6739 (synopsis "FFI wrapper generator for Common Lisp")
6740 (description "This is a c2ffi-based wrapper generator for Common Lisp.")
6741 (license license:bsd-2))))
6742
6743(define-public cl-autowrap
6744 (sbcl-package->cl-source-package sbcl-cl-autowrap))
6745
6746(define-public ecl-cl-autowrap
6747 (sbcl-package->ecl-package sbcl-cl-autowrap))
6748
88f06fd0 6749(define-public sbcl-s-sysdeps
bdfd1d18
PN
6750 ;; No release since 2013.
6751 (let ((commit "9aa23bbdceb24bcdbe0e7c39fa1901858f823106")
6752 (revision "2"))
88f06fd0
PN
6753 (package
6754 (name "sbcl-s-sysdeps")
6755 (build-system asdf-build-system/sbcl)
6756 (version (git-version "1" revision commit))
6757 (home-page "https://github.com/svenvc/s-sysdeps")
6758 (source
6759 (origin
6760 (method git-fetch)
6761 (uri (git-reference
6762 (url home-page)
6763 (commit commit)))
6764 (file-name (git-file-name name version))
6765 (sha256
6766 (base32
bdfd1d18
PN
6767 "1fh8r7kf8s3hvqdg6b71b8p7w3v2kkga9bw8j3qqdxhzr6anpm0b"))))
6768 (inputs
6769 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2ff8b5ba 6770 ("usocket" ,sbcl-usocket)))
88f06fd0
PN
6771 (synopsis "Common Lisp abstraction layer over platform dependent functionality")
6772 (description "@code{s-sysdeps} is an abstraction layer over platform
6773dependent functionality. This simple package is used as a building block in a
6774number of other open source projects.
6775
6776@code{s-sysdeps} abstracts:
6777
6778@itemize
6779@item managing processes,
6780@item implementing a standard TCP/IP server,
6781@item opening a client TCP/IP socket stream,
6782@item working with process locks.
6783@end itemize\n")
6784 (license license:llgpl))))
6785
6786(define-public cl-s-sysdeps
6787 (sbcl-package->cl-source-package sbcl-s-sysdeps))
6788
6789(define-public ecl-s-sysdeps
6790 (sbcl-package->ecl-package sbcl-s-sysdeps))
6791
6792(define-public sbcl-cl-prevalence
58de426e
PN
6793 (let ((commit "5a76be036092ed6c18cb695a9e03bce87e21b840")
6794 (revision "4"))
88f06fd0
PN
6795 (package
6796 (name "sbcl-cl-prevalence")
6797 (build-system asdf-build-system/sbcl)
6798 (version (git-version "5" revision commit))
6799 (home-page "https://github.com/40ants/cl-prevalence")
6800 (source
6801 (origin
6802 (method git-fetch)
6803 (uri (git-reference
6804 (url home-page)
6805 (commit commit)))
6806 (file-name (git-file-name name version))
6807 (sha256
6808 (base32
58de426e 6809 "050h6hwv8f16b5v6fzba8zmih92hgaaq27i2x9wv1iib41gbia3r"))))
88f06fd0
PN
6810 (inputs
6811 `(("s-sysdeps" ,sbcl-s-sysdeps)
6812 ("s-xml" ,sbcl-s-xml)))
419db900
PN
6813 (native-inputs
6814 `(("fiveam" ,sbcl-fiveam)))
88f06fd0
PN
6815 (synopsis "Implementation of object prevalence for Common Lisp")
6816 (description "This Common Lisp library implements object prevalence (see
6817@url{https://en.wikipedia.org/wiki/System_prevalence}). It allows
6818for (de)serializing to and from s-exps as well as XML. Serialization of arbitrary
6819classes and cyclic data structures are supported.")
6820 (license license:llgpl))))
6821
6822(define-public cl-prevalence
6823 (sbcl-package->cl-source-package sbcl-cl-prevalence))
6824
6825(define-public ecl-cl-prevalence
6826 (sbcl-package->ecl-package sbcl-cl-prevalence))
6827
6828(define-public sbcl-series
6829 (let ((commit "da9061b336119d1e5214aff9117171d494d5a58a")
6830 (revision "1"))
6831 (package
6832 (name "sbcl-series")
6833 (version (git-version "2.2.11" revision commit))
6834 (source
6835 (origin
6836 (method git-fetch)
6837 (uri (git-reference
6838 (url "git://git.code.sf.net/p/series/series")
6839 (commit commit)))
6840 (file-name (git-file-name name version))
6841 (sha256
6842 (base32
6843 "07hk2lhfx42zk018pxqvn4gs77vd4n4g8m4xxbqaxgca76mifwfw"))))
6844 (build-system asdf-build-system/sbcl)
6845 (arguments
6846 ;; Disable the tests, they are apparently buggy and I didn't find
6847 ;; a simple way to make them run and pass.
6848 '(#:tests? #f))
6849 (synopsis "Series data structure for Common Lisp")
6850 (description
6851 "This Common Lisp library provides a series data structure much like
6852a sequence, with similar kinds of operations. The difference is that in many
6853situations, operations on series may be composed functionally and yet execute
6854iteratively, without the need to construct intermediate series values
6855explicitly. In this manner, series provide both the clarity of a functional
6856programming style and the efficiency of an iterative programming style.")
6857 (home-page "http://series.sourceforge.net/")
6858 (license license:expat))))
6859
6860(define-public cl-series
6861 (sbcl-package->cl-source-package sbcl-series))
6862
6863(define-public ecl-series
6864 (sbcl-package->ecl-package sbcl-series))
6865
6866(define-public sbcl-periods
ffd5ec05
PN
6867 (let ((commit "60383dcef88a1ac11f82804ae7a33c361dcd2949")
6868 (revision "2"))
88f06fd0
PN
6869 (package
6870 (name "sbcl-periods")
6871 (version (git-version "0.0.2" revision commit))
6872 (source
6873 (origin
6874 (method git-fetch)
6875 (uri (git-reference
b0e7b699 6876 (url "https://github.com/jwiegley/periods")
88f06fd0
PN
6877 (commit commit)))
6878 (file-name (git-file-name name version))
6879 (sha256
6880 (base32
ffd5ec05 6881 "1ym2j4an9ig2hl210jg91gpf7xfnp6mlhkw3n9kkdnwiji3ipqlk"))))
88f06fd0
PN
6882 (build-system asdf-build-system/sbcl)
6883 (inputs
2ff8b5ba
GLV
6884 `(("local-time" ,sbcl-local-time)
6885 ("series" ,sbcl-series)))
6886 (arguments
3f8bbf7c 6887 '(#:asd-systems '("periods"
2ff8b5ba 6888 "periods-series")))
88f06fd0
PN
6889 (synopsis "Common Lisp library for manipulating date/time objects")
6890 (description
6891 "Periods is a Common Lisp library providing a set of utilities for
6892manipulating times, distances between times, and both contiguous and
6893discontiguous ranges of time.")
6894 (home-page "https://github.com/jwiegley/periods")
6895 (license license:bsd-3))))
6896
6897(define-public cl-periods
6898 (sbcl-package->cl-source-package sbcl-periods))
6899
6900(define-public ecl-periods
6901 (sbcl-package->ecl-package sbcl-periods))
6902
88f06fd0
PN
6903(define-public sbcl-metatilities-base
6904 (let ((commit "6eaa9e3ff0939a93a92109dd0fcd218de85417d5")
6905 (revision "1"))
6906 (package
6907 (name "sbcl-metatilities-base")
6908 (version (git-version "0.6.6" revision commit))
6909 (source
6910 (origin
6911 (method git-fetch)
6912 (uri (git-reference
b0e7b699 6913 (url "https://github.com/gwkkwg/metatilities-base")
88f06fd0
PN
6914 (commit commit)))
6915 (file-name (git-file-name name version))
6916 (sha256
6917 (base32
6918 "0xpa86pdzlnf4v5g64j3ifaplx71sx2ha8b7vvakswi652679ma0"))))
6919 (build-system asdf-build-system/sbcl)
6920 (native-inputs
6921 `(("lift" ,sbcl-lift)))
6922 (synopsis "Core of the metatilities Common Lisp library")
6923 (description
6924 "Metatilities-base is the core of the metatilities Common Lisp library
6925which implements a set of utilities.")
6926 (home-page "https://common-lisp.net/project/metatilities-base/")
6927 (license license:expat))))
6928
6929(define-public cl-metatilities-base
6930 (sbcl-package->cl-source-package sbcl-metatilities-base))
6931
6932(define-public ecl-metatilities-base
6933 (sbcl-package->ecl-package sbcl-metatilities-base))
6934
6935(define-public sbcl-cl-containers
0ad6ecb8
PN
6936 (let ((commit "3d1df53c22403121bffb5d553cf7acb1503850e7")
6937 (revision "3"))
88f06fd0
PN
6938 (package
6939 (name "sbcl-cl-containers")
6940 (version (git-version "0.12.1" revision commit))
6941 (source
6942 (origin
6943 (method git-fetch)
6944 (uri (git-reference
b0e7b699 6945 (url "https://github.com/gwkkwg/cl-containers")
88f06fd0
PN
6946 (commit commit)))
6947 (file-name (git-file-name name version))
6948 (sha256
6949 (base32
0ad6ecb8 6950 "18s6jfq11n8nv9k4biz32pm1s7y9zl054ry1gmdbcf39nisy377y"))))
88f06fd0
PN
6951 (build-system asdf-build-system/sbcl)
6952 (native-inputs
6953 `(("lift" ,sbcl-lift)))
6954 (inputs
6955 `(("metatilities-base" ,sbcl-metatilities-base)))
6956 (arguments
3f8bbf7c
GLV
6957 '(#:asd-files '("cl-containers.asd")
6958 #:phases
88f06fd0
PN
6959 (modify-phases %standard-phases
6960 (add-after 'unpack 'relax-version-checks
6961 (lambda _
6962 (substitute* "cl-containers.asd"
6963 (("\\(:version \"metatilities-base\" \"0\\.6\\.6\"\\)")
6964 "\"metatilities-base\""))
6965 (substitute* "cl-containers-test.asd"
6966 (("\\(:version \"lift\" \"1\\.7\\.0\"\\)")
6967 "\"lift\""))
6968 #t)))))
6969 (synopsis "Container library for Common Lisp")
6970 (description
6971 "Common Lisp ships with a set of powerful built in data structures
6972including the venerable list, full featured arrays, and hash-tables.
6973CL-containers enhances and builds on these structures by adding containers
6974that are not available in native Lisp (for example: binary search trees,
6975red-black trees, sparse arrays and so on), and by providing a standard
6976interface so that they are simpler to use and so that changing design
6977decisions becomes significantly easier.")
6978 (home-page "https://common-lisp.net/project/cl-containers/")
6979 (license license:expat))))
6980
6981(define-public cl-containers
6982 (sbcl-package->cl-source-package sbcl-cl-containers))
6983
6984(define-public ecl-cl-containers
6985 (sbcl-package->ecl-package sbcl-cl-containers))
6986
6987(define-public sbcl-xlunit
6988 (let ((commit "3805d34b1d8dc77f7e0ee527a2490194292dd0fc")
6989 (revision "1"))
6990 (package
6991 (name "sbcl-xlunit")
6992 (version (git-version "0.6.3" revision commit))
6993 (source
6994 (origin
6995 (method git-fetch)
6996 (uri (git-reference
6997 (url "http://git.kpe.io/xlunit.git")
6998 (commit commit)))
6999 (file-name (git-file-name name version))
7000 (sha256
7001 (base32
7002 "0argfmp9nghs4sihyj3f8ch9qfib2b7ll07v5m9ziajgzsfl5xw3"))))
7003 (build-system asdf-build-system/sbcl)
7004 (arguments
7005 '(#:phases
7006 (modify-phases %standard-phases
7007 (add-after 'unpack 'fix-tests
7008 (lambda _
7009 (substitute* "xlunit.asd"
7010 ((" :force t") ""))
7011 #t)))))
7012 (synopsis "Unit testing package for Common Lisp")
7013 (description
7014 "The XLUnit package is a toolkit for building test suites. It is based
7015on the XPTest package by Craig Brozensky and the JUnit package by Kent Beck.")
7016 (home-page "http://quickdocs.org/xlunit/")
7017 (license license:bsd-3))))
7018
7019(define-public cl-xlunit
7020 (sbcl-package->cl-source-package sbcl-xlunit))
7021
7022(define-public ecl-xlunit
7023 (sbcl-package->ecl-package sbcl-xlunit))
7024
2ff8b5ba 7025(define-public sbcl-cambl
88f06fd0
PN
7026 (let ((commit "7016d1a98215f82605d1c158e7a16504ca1f4636")
7027 (revision "1"))
7028 (package
2ff8b5ba
GLV
7029 (name "sbcl-cambl")
7030 (version (git-version "4.0.0" revision commit))
88f06fd0
PN
7031 (source
7032 (origin
7033 (method git-fetch)
7034 (uri (git-reference
b0e7b699 7035 (url "https://github.com/jwiegley/cambl")
88f06fd0 7036 (commit commit)))
2ff8b5ba 7037 (file-name (git-file-name "cambl" version))
88f06fd0 7038 (sha256
2ff8b5ba 7039 (base32 "103mry04j2k9vznsxm7wcvccgxkil92cdrv52miwcmxl8daa4jiz"))))
88f06fd0 7040 (build-system asdf-build-system/sbcl)
88f06fd0
PN
7041 (native-inputs
7042 `(("xlunit" ,sbcl-xlunit)))
7043 (inputs
7044 `(("alexandria" ,sbcl-alexandria)
7045 ("cl-containers" ,sbcl-cl-containers)
7046 ("local-time" ,sbcl-local-time)
2ff8b5ba
GLV
7047 ("periods" ,sbcl-periods)))
7048 (arguments
7049 '(#:asd-files '("fprog.asd"
e765d9c9 7050 "cambl.asd")))
88f06fd0
PN
7051 (synopsis "Commoditized amounts and balances for Common Lisp")
7052 (description
7053 "CAMBL is a Common Lisp library providing a convenient facility for
7054working with commoditized values. It does not allow compound units (and so is
7055not suited for scientific operations) but does work rather nicely for the
2ff8b5ba
GLV
7056purpose of financial calculations.")
7057 (home-page "https://github.com/jwiegley/cambl")
7058 (license license:bsd-3))))
88f06fd0
PN
7059
7060(define-public cl-cambl
7061 (sbcl-package->cl-source-package sbcl-cambl))
7062
7063(define-public ecl-cambl
7064 (sbcl-package->ecl-package sbcl-cambl))
7065
7066(define-public sbcl-cl-ledger
7067 (let ((commit "08e0be41795e804cd36142e51756ad0b1caa377b")
7068 (revision "1"))
7069 (package
7070 (name "sbcl-cl-ledger")
7071 (version (git-version "4.0.0" revision commit))
7072 (source
7073 (origin
7074 (method git-fetch)
7075 (uri (git-reference
b0e7b699 7076 (url "https://github.com/ledger/cl-ledger")
88f06fd0
PN
7077 (commit commit)))
7078 (file-name (git-file-name name version))
7079 (sha256
7080 (base32
7081 "1via0qf6wjcyxnfbmfxjvms0ik9j8rqbifgpmnhrzvkhrq9pv8h1"))))
7082 (build-system asdf-build-system/sbcl)
7083 (inputs
7084 `(("cambl" ,sbcl-cambl)
7085 ("cl-ppcre" ,sbcl-cl-ppcre)
7086 ("local-time" ,sbcl-local-time)
2ff8b5ba 7087 ("periods" ,sbcl-periods)))
88f06fd0
PN
7088 (arguments
7089 '(#:phases
7090 (modify-phases %standard-phases
7091 (add-after 'unpack 'fix-system-definition
7092 (lambda _
7093 (substitute* "cl-ledger.asd"
7094 ((" :build-operation program-op") "")
7095 ((" :build-pathname \"cl-ledger\"") "")
7096 ((" :entry-point \"ledger::main\"") ""))
7097 #t)))))
7098 (synopsis "Common Lisp port of the Ledger accounting system")
7099 (description
7100 "CL-Ledger is a Common Lisp port of the Ledger double-entry accounting
7101system.")
7102 (home-page "https://github.com/ledger/cl-ledger")
7103 (license license:bsd-3))))
7104
7105(define-public cl-ledger
7106 (sbcl-package->cl-source-package sbcl-cl-ledger))
7107
7108(define-public ecl-cl-ledger
7109 (sbcl-package->ecl-package sbcl-cl-ledger))
7110
7111(define-public sbcl-bst
0ce02f67
GLV
7112 (let ((commit "8545aed0d504df2829ad139566feeabe22305388")
7113 (revision "0"))
88f06fd0
PN
7114 (package
7115 (name "sbcl-bst")
0ce02f67 7116 (version (git-version "2.0" revision commit))
88f06fd0
PN
7117 (source
7118 (origin
7119 (method git-fetch)
7120 (uri (git-reference
b0e7b699 7121 (url "https://github.com/glv2/bst")
88f06fd0
PN
7122 (commit commit)))
7123 (file-name (git-file-name name version))
7124 (sha256
0ce02f67 7125 (base32 "18ig7rvxcra69437g0i8sxyv7c5dg26jqnx1rc2f9pxmihdprgk8"))))
88f06fd0
PN
7126 (build-system asdf-build-system/sbcl)
7127 (native-inputs
7128 `(("alexandria" ,sbcl-alexandria)
7129 ("fiveam" ,sbcl-fiveam)))
7130 (synopsis "Binary search tree for Common Lisp")
7131 (description
7132 "BST is a Common Lisp library for working with binary search trees that
7133can contain any kind of values.")
7134 (home-page "https://github.com/glv2/bst")
7135 (license license:gpl3))))
7136
7137(define-public cl-bst
7138 (sbcl-package->cl-source-package sbcl-bst))
7139
7140(define-public ecl-bst
7141 (sbcl-package->ecl-package sbcl-bst))
7142
7143(define-public sbcl-cl-octet-streams
7144 (package
7145 (name "sbcl-cl-octet-streams")
dd4dff0c 7146 (version "1.2")
88f06fd0
PN
7147 (source
7148 (origin
7149 (method git-fetch)
7150 (uri (git-reference
b0e7b699 7151 (url "https://github.com/glv2/cl-octet-streams")
88f06fd0
PN
7152 (commit (string-append "v" version))))
7153 (file-name (git-file-name name version))
7154 (sha256
dd4dff0c 7155 (base32 "1hffh98bv4w5yrchagzwqrc43d2p473pvw7ka4kyyvhrr52dk2f8"))))
88f06fd0
PN
7156 (build-system asdf-build-system/sbcl)
7157 (native-inputs
7158 `(("fiveam" ,sbcl-fiveam)))
7159 (inputs
7160 `(("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7161 (synopsis "In-memory octet streams for Common Lisp")
7162 (description
7163 "CL-octet-streams is a library implementing in-memory octet
7164streams for Common Lisp. It was inspired by the trivial-octet-streams and
7165cl-plumbing libraries.")
7166 (home-page "https://github.com/glv2/cl-octet-streams")
7167 (license license:gpl3+)))
7168
7169(define-public cl-octet-streams
7170 (sbcl-package->cl-source-package sbcl-cl-octet-streams))
7171
7172(define-public ecl-cl-octet-streams
7173 (sbcl-package->ecl-package sbcl-cl-octet-streams))
7174
7175(define-public sbcl-lzlib
bfe2f67e
GLV
7176 (let ((commit "cad10f5becbcfebb44b9d311a257563778803452")
7177 (revision "2"))
88f06fd0
PN
7178 (package
7179 (name "sbcl-lzlib")
8ecec73d 7180 (version (git-version "1.1" revision commit))
88f06fd0
PN
7181 (source
7182 (origin
7183 (method git-fetch)
7184 (uri (git-reference
b0e7b699 7185 (url "https://github.com/glv2/cl-lzlib")
88f06fd0
PN
7186 (commit commit)))
7187 (file-name (git-file-name name version))
7188 (sha256
bfe2f67e 7189 (base32 "09lp7li35h4jkls0448fj1sh6pjslr1w7ranbc4szjr8g0c2bdry"))))
88f06fd0
PN
7190 (build-system asdf-build-system/sbcl)
7191 (native-inputs
7192 `(("fiveam" ,sbcl-fiveam)))
7193 (inputs
7194 `(("cffi" ,sbcl-cffi)
7195 ("cl-octet-streams" ,sbcl-cl-octet-streams)
8ecec73d 7196 ("lparallel" ,sbcl-lparallel)
88f06fd0
PN
7197 ("lzlib" ,lzlib)))
7198 (arguments
7199 '(#:phases
7200 (modify-phases %standard-phases
7201 (add-after 'unpack 'fix-paths
7202 (lambda* (#:key inputs #:allow-other-keys)
7203 (substitute* "src/lzlib.lisp"
7204 (("liblz\\.so")
7205 (string-append (assoc-ref inputs "lzlib") "/lib/liblz.so")))
7206 #t)))))
7207 (synopsis "Common Lisp library for lzip (de)compression")
7208 (description
7209 "This Common Lisp library provides functions for lzip (LZMA)
7210compression/decompression using bindings to the lzlib C library.")
7211 (home-page "https://github.com/glv2/cl-lzlib")
7212 (license license:gpl3+))))
7213
7214(define-public cl-lzlib
7215 (sbcl-package->cl-source-package sbcl-lzlib))
7216
7217(define-public ecl-lzlib
7218 (sbcl-package->ecl-package sbcl-lzlib))
7219
7220(define-public sbcl-chanl
00a9a936
GLV
7221 (let ((commit "56e90a126c78b39bb621a01585e8d3b985238e8c")
7222 (revision "1"))
88f06fd0
PN
7223 (package
7224 (name "sbcl-chanl")
7225 (version (git-version "0.4.1" revision commit))
7226 (source
7227 (origin
7228 (method git-fetch)
7229 (uri (git-reference
b0e7b699 7230 (url "https://github.com/zkat/chanl")
88f06fd0
PN
7231 (commit commit)))
7232 (file-name (git-file-name name version))
7233 (sha256
7234 (base32
00a9a936 7235 "0b1cf6c12qx5cy1fw2z42jgh566rp3l8nv5qf0qqc569s7bgmrh4"))))
88f06fd0
PN
7236 (build-system asdf-build-system/sbcl)
7237 (native-inputs
7238 `(("fiveam" ,sbcl-fiveam)))
7239 (inputs
7240 `(("bordeaux-threads" ,sbcl-bordeaux-threads)))
7241 (synopsis "Portable channel-based concurrency for Common Lisp")
7242 (description "Common Lisp library for channel-based concurrency. In
7243a nutshell, you create various threads sequentially executing tasks you need
7244done, and use channel objects to communicate and synchronize the state of these
7245threads.")
7246 (home-page "https://github.com/zkat/chanl")
7247 (license (list license:expat license:bsd-3)))))
7248
7249(define-public cl-chanl
7250 (sbcl-package->cl-source-package sbcl-chanl))
7251
7252(define-public ecl-chanl
00a9a936 7253 (sbcl-package->ecl-package sbcl-chanl))
88f06fd0
PN
7254
7255(define-public sbcl-cl-store
1896256d
BG
7256 (let ((commit "c787337a16ea8cf8a06227f35933a4ec774746b3")
7257 (revision "1"))
88f06fd0
PN
7258 (package
7259 (name "sbcl-cl-store")
7260 (version (git-version "0.8.11" revision commit))
7261 (source
7262 (origin
7263 (method git-fetch)
7264 (uri (git-reference
b0e7b699 7265 (url "https://github.com/skypher/cl-store")
88f06fd0
PN
7266 (commit commit)))
7267 (file-name (git-file-name name version))
7268 (sha256
7269 (base32
1896256d 7270 "194srkg8nrym19c6i7zbnkzshc1qhqa82m53qnkirz9fw928bqxr"))))
88f06fd0
PN
7271 (build-system asdf-build-system/sbcl)
7272 (native-inputs
7273 `(("rt" ,sbcl-rt)))
7274 (synopsis "Common Lisp library to serialize data")
7275 (description
7276 "CL-STORE is a portable serialization package which should give you the
7277ability to store all Common Lisp data types into streams.")
630a4b77 7278 (home-page "https://www.common-lisp.net/project/cl-store/")
88f06fd0
PN
7279 (license license:expat))))
7280
7281(define-public cl-store
7282 (sbcl-package->cl-source-package sbcl-cl-store))
7283
7284(define-public ecl-cl-store
7285 (sbcl-package->ecl-package sbcl-cl-store))
7286
68608dd4
SH
7287(define-public sbcl-specialization-store
7288 (let ((commit "8d39a866a6f24986aad3cc52349e9cb2653496f3")
7289 (revision "1"))
7290 (package
7291 (name "sbcl-specialization-store")
7292 (version (git-version "0.0.5" revision commit))
7293 (source
7294 (origin
7295 (method git-fetch)
7296 (uri (git-reference
7297 (url "https://github.com/markcox80/specialization-store")
7298 (commit commit)))
7299 (file-name (git-file-name "specialization-store" version))
7300 (sha256
7301 (base32 "0r0bgb46q4gy72l78s7djkxq8ibb4bb3yh9brsry5lih7br8lhi0"))))
7302 (build-system asdf-build-system/sbcl)
7303 (native-inputs
7304 `(("fiveam" ,sbcl-fiveam)))
7305 (inputs
7306 `(("alexandria" ,sbcl-alexandria)
7307 ("introspect-environment" ,sbcl-introspect-environment)))
7308 (home-page "https://github.com/markcox80/specialization-store")
7309 (synopsis "Different type of generic function for Common Lisp")
7310 (description
7311 "SPECIALIZATION-STORE system provides a new kind of function, called
7312a store function, whose behavior depends on the types of objects passed to the
7313function.")
7314 (license license:bsd-2))))
7315
7316(define-public ecl-specialization-store
7317 (package
7318 (inherit (sbcl-package->ecl-package sbcl-specialization-store))
7319 (arguments
7320 ;; TODO: Find why the tests get stuck forever; disable them for now.
7321 `(#:tests? #f))))
7322
7323(define-public cl-specialization-store
7324 (sbcl-package->cl-source-package sbcl-specialization-store))
7325
88f06fd0 7326(define-public sbcl-cl-gobject-introspection
f96a65eb
PN
7327 (let ((commit "d0136c8d9ade2560123af1fc55bbf70d2e3db539")
7328 (revision "1"))
88f06fd0
PN
7329 (package
7330 (name "sbcl-cl-gobject-introspection")
7331 (version (git-version "0.3" revision commit))
7332 (home-page "https://github.com/andy128k/cl-gobject-introspection")
7333 (source
7334 (origin
7335 (method git-fetch)
7336 (uri (git-reference
7337 (url home-page)
7338 (commit commit)))
7339 (file-name (git-file-name name version))
7340 (sha256
7341 (base32
f96a65eb 7342 "0dz0r73pq7yhz2iq2jnkq977awx2zws2qfxdcy33329sys1ii32p"))))
88f06fd0
PN
7343 (build-system asdf-build-system/sbcl)
7344 (inputs
7345 `(("alexandria" ,sbcl-alexandria)
7346 ("cffi" ,sbcl-cffi)
7347 ("iterate" ,sbcl-iterate)
7348 ("trivial-garbage" ,sbcl-trivial-garbage)
7349 ("glib" ,glib)
7350 ("gobject-introspection" ,gobject-introspection)))
7351 (native-inputs
7352 `(("fiveam" ,sbcl-fiveam)))
7353 (arguments
f96a65eb 7354 '(#:phases
88f06fd0 7355 (modify-phases %standard-phases
f96a65eb 7356 (add-after 'unpack 'fix-paths
88f06fd0
PN
7357 (lambda* (#:key inputs #:allow-other-keys)
7358 (substitute* "src/init.lisp"
7359 (("libgobject-2\\.0\\.so")
7360 (string-append (assoc-ref inputs "glib") "/lib/libgobject-2.0.so"))
7361 (("libgirepository-1\\.0\\.so")
7362 (string-append (assoc-ref inputs "gobject-introspection")
7363 "/lib/libgirepository-1.0.so")))
7364 #t)))))
7365 (synopsis "Common Lisp bindings to GObject Introspection")
7366 (description
7367 "This library is a bridge between Common Lisp and GObject
7368Introspection, which enables Common Lisp programs to access the full interface
7369of C+GObject libraries without the need of writing dedicated bindings.")
7370 (license (list license:bsd-3
7371 ;; Tests are under a different license.
7372 license:llgpl)))))
7373
7374(define-public cl-gobject-introspection
7375 (sbcl-package->cl-source-package sbcl-cl-gobject-introspection))
7376
e7cbcf5a
GLV
7377(define-public ecl-cl-gobject-introspection
7378 (sbcl-package->ecl-package sbcl-cl-gobject-introspection))
7379
df484455
SH
7380(define-public sbcl-cl-slug
7381 (let ((commit "ffb229d10f0d3f7f54e706791725225e200bf749")
7382 (revision "1"))
7383 (package
7384 (name "sbcl-cl-slug")
7385 (version (git-version "0.4.1" revision commit))
7386 (source
7387 (origin
7388 (method git-fetch)
7389 (uri (git-reference
7390 (url "https://github.com/EuAndreh/cl-slug")
7391 (commit commit)))
7392 (file-name (git-file-name "cl-slug" version))
7393 (sha256
7394 (base32 "1asdq6xllmsvfw5fky9wblqcx9isac9jrrlkfl7vyxcq1wxrnflx"))))
7395 (build-system asdf-build-system/sbcl)
7396 (arguments
7397 `(#:asd-files '("cl-slug-test.asd" "cl-slug.asd")
7398 #:asd-systems '("cl-slug-test" "cl-slug")))
7399 (native-inputs
7400 `(("prove" ,sbcl-prove)))
7401 (inputs
7402 `(("ppcre" ,sbcl-cl-ppcre)))
7403 (home-page "https://github.com/EuAndreh/cl-slug")
214461ed 7404 (synopsis "Multi-language slug formatter")
df484455
SH
7405 (description
7406 "This is a small Common Lisp library to make slugs, mainly for URIs,
214461ed 7407from English and beyond.")
df484455
SH
7408 (license license:llgpl))))
7409
7410(define-public ecl-cl-slug
7411 (sbcl-package->ecl-package sbcl-cl-slug))
7412
7413(define-public cl-slug
7414 (sbcl-package->cl-source-package sbcl-cl-slug))
7415
88f06fd0
PN
7416(define-public sbcl-string-case
7417 (let ((commit "718c761e33749e297cd2809c7ba3ade1985c49f7")
7418 (revision "0"))
7419 (package
7420 (name "sbcl-string-case")
7421 (version (git-version "0.0.2" revision commit))
7422 (home-page "https://github.com/pkhuong/string-case")
7423 (source
7424 (origin
7425 (method git-fetch)
7426 (uri (git-reference
7427 (url home-page)
7428 (commit commit)))
7429 (file-name (git-file-name name version))
7430 (sha256
7431 (base32
7432 "1n5i3yh0h5s636rcnwn7jwqy3rjflikra04lymimhpcshhjsk0md"))))
7433 (build-system asdf-build-system/sbcl)
7434 (synopsis "Efficient string= case in Common Lisp")
7435 (description
7436 "@code{string-case} is a Common Lisp macro that generates specialised decision
7437trees to dispatch on string equality.")
7438 (license license:bsd-3))))
7439
7440(define-public cl-string-case
7441 (sbcl-package->cl-source-package sbcl-string-case))
7442
7443(define-public ecl-string-case
7444 (sbcl-package->ecl-package sbcl-string-case))
7445
df898f72
SH
7446(define-public sbcl-garbage-pools
7447 (let ((commit "9a7cb7f48b04197c0495df3b6d2e8395ad13f790")
7448 (revision "1"))
7449 (package
7450 (name "sbcl-garbage-pools")
7451 (version (git-version "0.1.2" revision commit))
7452 (source
7453 (origin
7454 (method git-fetch)
7455 (uri (git-reference
7456 (url "https://github.com/archimag/garbage-pools")
7457 (commit commit)))
7458 (file-name (git-file-name name version))
7459 (sha256
7460 (base32 "04jqwr6j138him6wc4nrwjzm4lvyj5j31xqab02nkf8h9hmsf5v1"))))
7461 (build-system asdf-build-system/sbcl)
7462 (home-page "https://github.com/archimag/garbage-pools")
7463 (synopsis "Resource management pools for Common Lisp")
7464 (description "GARBAGE-POOLS is Common Lisp re-implementation of the APR
7465Pools for resource management.")
7466 (license license:expat))))
7467
7468(define-public ecl-garbage-pools
7469 (sbcl-package->ecl-package sbcl-garbage-pools))
7470
7471(define-public cl-garbage-pools
7472 (sbcl-package->cl-source-package sbcl-garbage-pools))
7473
88f06fd0
PN
7474(define-public sbcl-global-vars
7475 (let ((commit "c749f32c9b606a1457daa47d59630708ac0c266e")
7476 (revision "0"))
7477 (package
7478 (name "sbcl-global-vars")
7479 (version (git-version "1.0.0" revision commit))
7480 (home-page "https://github.com/lmj/global-vars")
7481 (source
7482 (origin
7483 (method git-fetch)
7484 (uri (git-reference
7485 (url home-page)
7486 (commit commit)))
7487 (file-name (git-file-name name version))
7488 (sha256
7489 (base32
7490 "06m3xc8l3pgsapl8fvsi9wf6y46zs75cp9zn7zh6dc65v4s5wz3d"))))
7491 (build-system asdf-build-system/sbcl)
7492 (synopsis "Efficient global variables in Common Lisp")
7493 (description
7494 "In Common Lisp, a special variable that is never dynamically bound
7495typically serves as a stand-in for a global variable. The @code{global-vars}
7496library provides true global variables that are implemented by some compilers.
7497An attempt to rebind a global variable properly results in a compiler error.
7498That is, a global variable cannot be dynamically bound.
7499
7500Global variables therefore allow us to communicate an intended usage that
7501differs from special variables. Global variables are also more efficient than
7502special variables, especially in the presence of threads.")
7503 (license license:expat))))
7504
7505(define-public cl-global-vars
7506 (sbcl-package->cl-source-package sbcl-global-vars))
7507
7508(define-public ecl-global-vars
7509 (sbcl-package->ecl-package sbcl-global-vars))
7510
7511(define-public sbcl-trivial-file-size
7512 (let ((commit "1c1d672a01a446ba0391dbb4ffc40be3b0476f23")
7513 (revision "0"))
7514 (package
7515 (name "sbcl-trivial-file-size")
7516 (version (git-version "0.0.0" revision commit))
7517 (home-page "https://github.com/ruricolist/trivial-file-size")
7518 (source
7519 (origin
7520 (method git-fetch)
7521 (uri (git-reference
7522 (url home-page)
7523 (commit commit)))
7524 (file-name (git-file-name name version))
7525 (sha256
7526 (base32
7527 "17pp86c9zs4y7i1sh7q9gbfw9iqv6655k7fz8qbj9ly1ypgxp4qs"))))
7528 (build-system asdf-build-system/sbcl)
7529 (native-inputs
7530 `(("fiveam" ,sbcl-fiveam)))
7531 (synopsis "Size of a file in bytes in Common Lisp")
7532 (description
7533 "The canonical way to determine the size of a file in bytes, using Common Lisp,
7534is to open the file with an element type of (unsigned-byte 8) and then
7535calculate the length of the stream. This is less than ideal. In most cases
7536it is better to get the size of the file from its metadata, using a system
7537call.
7538
7539This library exports a single function, file-size-in-octets. It returns the
7540size of a file in bytes, using system calls when possible.")
7541 (license license:expat))))
7542
7543(define-public cl-trivial-file-size
7544 (sbcl-package->cl-source-package sbcl-trivial-file-size))
7545
7546(define-public ecl-trivial-file-size
7547 (sbcl-package->ecl-package sbcl-trivial-file-size))
7548
7549(define-public sbcl-trivial-macroexpand-all
7550 (let ((commit "933270ac7107477de1bc92c1fd641fe646a7a8a9")
7551 (revision "0"))
7552 (package
7553 (name "sbcl-trivial-macroexpand-all")
7554 (version (git-version "0.0.0" revision commit))
7555 (home-page "https://github.com/cbaggers/trivial-macroexpand-all")
7556 (source
7557 (origin
7558 (method git-fetch)
7559 (uri (git-reference
7560 (url home-page)
7561 (commit commit)))
7562 (file-name (git-file-name name version))
7563 (sha256
7564 (base32
7565 "191hnn4b5j4i3crydmlzbm231kj0h7l8zj6mzj69r1npbzkas4bd"))))
7566 (build-system asdf-build-system/sbcl)
7567 (native-inputs
7568 `(("fiveam" ,sbcl-fiveam)))
7569 (synopsis "Portable macroexpand-all for Common Lisp")
7570 (description
7571 "This library provides a macroexpand-all function that calls the
7572implementation specific equivalent.")
7573 (license license:unlicense))))
7574
7575(define-public cl-trivial-macroexpand-all
7576 (sbcl-package->cl-source-package sbcl-trivial-macroexpand-all))
7577
7578(define-public ecl-trivial-macroexpand-all
7579 (sbcl-package->ecl-package sbcl-trivial-macroexpand-all))
7580
7581(define-public sbcl-serapeum
1836ebf7
PN
7582 (let ((commit "263f415a350736b44e3878524ff3997e656fca32")
7583 (revision "4"))
88f06fd0
PN
7584 (package
7585 (name "sbcl-serapeum")
7586 (version (git-version "0.0.0" revision commit))
7587 (home-page "https://github.com/ruricolist/serapeum")
7588 (source
7589 (origin
7590 (method git-fetch)
7591 (uri (git-reference
7592 (url home-page)
7593 (commit commit)))
7594 (file-name (git-file-name name version))
7595 (sha256
7596 (base32
1836ebf7 7597 "1669yidvxq41s3g6hb2jk21bcb5s2bnfsacpyd5b0hdxbmc7knq3"))))
88f06fd0
PN
7598 (build-system asdf-build-system/sbcl)
7599 (inputs
7600 `(("alexandria" ,sbcl-alexandria)
7601 ("trivia" ,sbcl-trivia)
88f06fd0
PN
7602 ("split-sequence" ,sbcl-split-sequence)
7603 ("string-case" ,sbcl-string-case)
7604 ("parse-number" ,sbcl-parse-number)
7605 ("trivial-garbage" ,sbcl-trivial-garbage)
7606 ("bordeaux-threads" ,sbcl-bordeaux-threads)
7607 ("named-readtables" ,sbcl-named-readtables)
2ff8b5ba 7608 ("fare-quasiquote" ,sbcl-fare-quasiquote)
88f06fd0
PN
7609 ("parse-declarations-1.0" ,sbcl-parse-declarations)
7610 ("global-vars" ,sbcl-global-vars)
7611 ("trivial-file-size" ,sbcl-trivial-file-size)
7612 ("trivial-macroexpand-all" ,sbcl-trivial-macroexpand-all)))
7613 (native-inputs
7614 `(("fiveam" ,sbcl-fiveam)
7615 ("local-time" ,sbcl-local-time)))
7616 (arguments
7617 '(#:phases
7618 (modify-phases %standard-phases
7619 (add-after 'unpack 'disable-failing-tests
7620 (lambda* (#:key inputs #:allow-other-keys)
7621 (substitute* "serapeum.asd"
7622 ;; Guix does not have Quicklisp, and probably never will.
7623 (("\\(:file \"quicklisp\"\\)") ""))
7624 #t)))))
7625 (synopsis "Common Lisp utility library beyond Alexandria")
7626 (description
7627 "Serapeum is a conservative library of Common Lisp utilities. It is a
7628supplement, not a competitor, to Alexandria.")
7629 (license license:expat))))
7630
7631(define-public cl-serapeum
7632 (sbcl-package->cl-source-package sbcl-serapeum))
7633
12df8b7b
GLV
7634(define-public ecl-serapeum
7635 (sbcl-package->ecl-package sbcl-serapeum))
7636
88f06fd0
PN
7637(define-public sbcl-arrows
7638 (let ((commit "df7cf0067e0132d9697ac8b1a4f1b9c88d4f5382")
7639 (revision "0"))
7640 (package
7641 (name "sbcl-arrows")
7642 (version (git-version "0.2.0" revision commit))
7643 (source
7644 (origin
7645 (method git-fetch)
7646 (uri (git-reference
7647 (url "https://gitlab.com/Harleqin/arrows.git")
7648 (commit commit)))
7649 (file-name (git-file-name name version))
7650 (sha256
7651 (base32
7652 "042k9vkssrqx9nhp14wdzm942zgdxvp35mba0p2syz98i75im2yy"))))
7653 (build-system asdf-build-system/sbcl)
7654 (native-inputs
7655 `(("hu.dwim.stefil" ,sbcl-hu.dwim.stefil)))
7656 (synopsis "Clojure-like arrow macros for Common Lisp")
7657 (description
7658 "This library implements the @code{->} and @code{->>} macros from
7659Clojure, as well as several expansions on the idea.")
7660 (home-page "https://gitlab.com/Harleqin/arrows")
7661 (license license:public-domain))))
7662
7663(define-public cl-arrows
7664 (sbcl-package->cl-source-package sbcl-arrows))
7665
7666(define-public ecl-arrows
7667 (sbcl-package->ecl-package sbcl-arrows))
7668
7669(define-public sbcl-simple-parallel-tasks
81108a98
GLV
7670 (let ((commit "ce7b60f788d8f68dfb69b24aac54c0e3b63379a6")
7671 (revision "1"))
88f06fd0
PN
7672 (package
7673 (name "sbcl-simple-parallel-tasks")
7674 (version (git-version "1.0" revision commit))
7675 (source
7676 (origin
7677 (method git-fetch)
7678 (uri (git-reference
b0e7b699 7679 (url "https://github.com/glv2/simple-parallel-tasks")
88f06fd0
PN
7680 (commit commit)))
7681 (file-name (git-file-name name version))
7682 (sha256
81108a98 7683 (base32 "0gvbpyff4siifp3cp86cpr9ksmakn66fx21f3h0hpn647zl07nj7"))))
88f06fd0
PN
7684 (build-system asdf-build-system/sbcl)
7685 (native-inputs
7686 `(("fiveam" ,sbcl-fiveam)))
7687 (inputs
7688 `(("chanl" ,sbcl-chanl)))
7689 (synopsis "Common Lisp library to evaluate some forms in parallel")
7690 (description "This is a simple Common Lisp library to evaluate some
7691forms in parallel.")
7692 (home-page "https://github.com/glv2/simple-parallel-tasks")
7693 (license license:gpl3))))
7694
7695(define-public cl-simple-parallel-tasks
7696 (sbcl-package->cl-source-package sbcl-simple-parallel-tasks))
7697
7698(define-public ecl-simple-parallel-tasks
7699 (sbcl-package->ecl-package sbcl-simple-parallel-tasks))
7700
7701(define-public sbcl-cl-heap
7702 (package
7703 (name "sbcl-cl-heap")
7704 (version "0.1.6")
7705 (source
7706 (origin
7707 (method url-fetch)
7708 (uri (string-append "https://common-lisp.net/project/cl-heap/releases/"
7709 "cl-heap_" version ".tar.gz"))
7710 (sha256
7711 (base32
7712 "163hb07p2nxz126rpq3cj5dyala24n0by5i5786n2qcr1w0bak4i"))))
7713 (build-system asdf-build-system/sbcl)
7714 (native-inputs
7715 `(("xlunit" ,sbcl-xlunit)))
7716 (arguments
7717 `(#:test-asd-file "cl-heap-tests.asd"))
7718 (synopsis "Heap and priority queue data structures for Common Lisp")
7719 (description
7720 "CL-HEAP provides various implementations of heap data structures (a
7721binary heap and a Fibonacci heap) as well as an efficient priority queue.")
7722 (home-page "https://common-lisp.net/project/cl-heap/")
7723 (license license:gpl3+)))
7724
7725(define-public cl-heap
7726 (sbcl-package->cl-source-package sbcl-cl-heap))
7727
7728(define-public ecl-cl-heap
7729 (sbcl-package->ecl-package sbcl-cl-heap))
7730
7731(define-public sbcl-curry-compose-reader-macros
7732 (let ((commit "beaa92dedf392726c042184bfd6149fa8d9e6ac2")
7733 (revision "0"))
7734 (package
7735 (name "sbcl-curry-compose-reader-macros")
7736 (version (git-version "1.0.0" revision commit))
7737 (source
7738 (origin
7739 (method git-fetch)
7740 (uri
7741 (git-reference
b0e7b699 7742 (url "https://github.com/eschulte/curry-compose-reader-macros")
88f06fd0
PN
7743 (commit commit)))
7744 (file-name (git-file-name name version))
7745 (sha256
7746 (base32
7747 "0rv9bl8xrad5wfcg5zs1dazvnpmvqz6297lbn8bywsrcfnlf7h98"))))
7748 (build-system asdf-build-system/sbcl)
7749 (inputs
7750 `(("alexandria" ,sbcl-alexandria)
7751 ("named-readtables" ,sbcl-named-readtables)))
7752 (synopsis "Reader macros for partial application and composition")
7753 (description
7754 "This Common Lisp library provides reader macros for concise expression
7755of function partial application and composition.")
7756 (home-page "https://eschulte.github.io/curry-compose-reader-macros/")
7757 (license license:public-domain))))
7758
7759(define-public cl-curry-compose-reader-macros
7760 (sbcl-package->cl-source-package sbcl-curry-compose-reader-macros))
7761
7762(define-public ecl-curry-compose-reader-macros
7763 (sbcl-package->ecl-package sbcl-curry-compose-reader-macros))
7764
7765(define-public sbcl-yason
7766 (package
7767 (name "sbcl-yason")
7768 (version "0.7.7")
7769 (source
7770 (origin
7771 (method git-fetch)
7772 (uri (git-reference
b0e7b699 7773 (url "https://github.com/phmarek/yason")
88f06fd0
PN
7774 (commit (string-append "v" version))))
7775 (file-name (git-file-name name version))
7776 (sha256
7777 (base32
7778 "0479rbjgbj80jpk5bby18inlv1kfp771a82rlcq5psrz65qqa9bj"))))
7779 (build-system asdf-build-system/sbcl)
7780 (inputs
7781 `(("alexandria" ,sbcl-alexandria)
7782 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
7783 (synopsis "Common Lisp JSON parser/encoder")
7784 (description
7785 "YASON is a Common Lisp library for encoding and decoding data in the
7786JSON interchange format.")
7787 (home-page "https://github.com/phmarek/yason")
7788 (license license:bsd-3)))
7789
7790(define-public cl-yason
7791 (sbcl-package->cl-source-package sbcl-yason))
7792
7793(define-public ecl-yason
7794 (sbcl-package->ecl-package sbcl-yason))
7795
7796(define-public sbcl-stefil
7797 (let ((commit "0398548ec95dceb50fc2c2c03e5fb0ce49b86c7a")
7798 (revision "0"))
7799 (package
7800 (name "sbcl-stefil")
7801 (version (git-version "0.1" revision commit))
7802 (source
7803 (origin
7804 (method git-fetch)
7805 (uri (git-reference
7806 (url "https://gitlab.common-lisp.net/stefil/stefil.git")
7807 (commit commit)))
7808 (file-name (git-file-name name version))
7809 (sha256
7810 (base32
7811 "0bqz64q2szzhf91zyqyssmvrz7da6442rs01808pf3wrdq28bclh"))))
7812 (build-system asdf-build-system/sbcl)
7813 (inputs
7814 `(("alexandria" ,sbcl-alexandria)
7815 ("iterate" ,sbcl-iterate)
2ff8b5ba
GLV
7816 ("metabang-bind" ,sbcl-metabang-bind)
7817 ("swank" ,sbcl-slime-swank)))
88f06fd0
PN
7818 (arguments
7819 '(#:phases
7820 (modify-phases %standard-phases
7821 (add-after 'unpack 'drop-unnecessary-dependency
7822 (lambda _
7823 (substitute* "package.lisp"
7824 ((":stefil-system") ""))
7825 #t)))))
7826 (home-page "https://common-lisp.net/project/stefil/index-old.shtml")
7827 (synopsis "Simple test framework")
7828 (description
7829 "Stefil is a simple test framework for Common Lisp, with a focus on
7830interactive development.")
7831 (license license:public-domain))))
7832
7833(define-public cl-stefil
7834 (sbcl-package->cl-source-package sbcl-stefil))
7835
12df8b7b
GLV
7836(define-public ecl-stefil
7837 (sbcl-package->ecl-package sbcl-stefil))
7838
88f06fd0
PN
7839(define-public sbcl-graph
7840 (let ((commit "78bf9ec930d8eae4f0861b5be76765fb1e45e24f")
7841 (revision "0"))
7842 (package
7843 (name "sbcl-graph")
7844 (version (git-version "0.0.0" revision commit))
7845 (source
7846 (origin
7847 (method git-fetch)
7848 (uri
7849 (git-reference
b0e7b699 7850 (url "https://github.com/eschulte/graph")
88f06fd0
PN
7851 (commit commit)))
7852 (file-name (git-file-name name version))
7853 (sha256
7854 (base32
2ff8b5ba 7855 "1qpij4xh8bqwc2myahpilcbh916v7vg0acz2fij14d3y0jm02h0g"))))
88f06fd0
PN
7856 (build-system asdf-build-system/sbcl)
7857 (native-inputs
7858 `(("stefil" ,sbcl-stefil)))
7859 (inputs
7860 `(("alexandria" ,sbcl-alexandria)
7861 ("cl-heap" ,sbcl-cl-heap)
2ff8b5ba 7862 ("cl-ppcre" ,sbcl-cl-ppcre)
88f06fd0
PN
7863 ("curry-compose-reader-macros" ,sbcl-curry-compose-reader-macros)
7864 ("metabang-bind" ,sbcl-metabang-bind)
2ff8b5ba
GLV
7865 ("named-readtables" ,sbcl-named-readtables)
7866 ("yason" ,sbcl-yason)))
88f06fd0 7867 (arguments
3f8bbf7c 7868 '(#:asd-systems '("graph"
2ff8b5ba
GLV
7869 "graph/dot"
7870 "graph/json")))
88f06fd0
PN
7871 (synopsis "Graph data structure and algorithms for Common Lisp")
7872 (description
7873 "The GRAPH Common Lisp library provides a data structures to represent
7874graphs, as well as some graph manipulation and analysis algorithms (shortest
7875path, maximum flow, minimum spanning tree, etc.).")
7876 (home-page "https://eschulte.github.io/graph/")
7877 (license license:gpl3+))))
7878
7879(define-public cl-graph
7880 (sbcl-package->cl-source-package sbcl-graph))
7881
e7cbcf5a
GLV
7882(define-public ecl-graph
7883 (sbcl-package->ecl-package sbcl-graph))
7884
3029b585
PN
7885(define-public sbcl-trivial-indent
7886 (let ((commit "2d016941751647c6cc5bd471751c2cf68861c94a")
7887 (revision "0"))
7888 (package
7889 (name "sbcl-trivial-indent")
7890 (version (git-version "1.0.0" revision commit))
7891 (source
7892 (origin
7893 (method git-fetch)
7894 (uri
7895 (git-reference
7896 (url "https://github.com/Shinmera/trivial-indent")
7897 (commit commit)))
7898 (file-name (git-file-name name version))
7899 (sha256
7900 (base32
7901 "1sj90nqz17w4jq0ixz00gb9g5g6d2s7l8r17zdby27gxxh51w266"))))
7902 (build-system asdf-build-system/sbcl)
7903 (synopsis "Simple Common Lisp library to allow indentation hints for SWANK")
7904 (description
7905 "This library allows you to define custom indentation hints for your
7906macros if the one recognised by SLIME automatically produces unwanted
7907results.")
7908 (home-page "https://shinmera.github.io/trivial-indent/")
7909 (license license:zlib))))
7910
7911(define-public cl-trivial-indent
7912 (sbcl-package->cl-source-package sbcl-trivial-indent))
8dc5ff8f 7913
12df8b7b
GLV
7914(define-public ecl-trivial-indent
7915 (sbcl-package->ecl-package sbcl-trivial-indent))
7916
8dc5ff8f
PN
7917(define-public sbcl-documentation-utils
7918 (let ((commit "98630dd5f7e36ae057fa09da3523f42ccb5d1f55")
7919 (revision "0"))
7920 (package
7921 (name "sbcl-documentation-utils")
7922 (version (git-version "1.2.0" revision commit))
7923 (source
7924 (origin
7925 (method git-fetch)
7926 (uri
7927 (git-reference
b0e7b699 7928 (url "https://github.com/Shinmera/documentation-utils")
8dc5ff8f
PN
7929 (commit commit)))
7930 (file-name (git-file-name name version))
7931 (sha256
7932 (base32
7933 "098qhkqskmmrh4wix34mawf7p5c87yql28r51r75yjxj577k5idq"))))
7934 (build-system asdf-build-system/sbcl)
7935 (inputs
7936 `(("trivial-indent" ,sbcl-trivial-indent)))
7937 (synopsis "Few simple tools to document Common Lisp libraries")
7938 (description
7939 "This is a small library to help you with managing the Common Lisp
7940docstrings for your library.")
7941 (home-page "https://shinmera.github.io/documentation-utils/")
7942 (license license:zlib))))
7943
7944(define-public cl-documentation-utils
7945 (sbcl-package->cl-source-package sbcl-documentation-utils))
aa47c9e7 7946
281537f4
GLV
7947(define-public ecl-documentation-utils
7948 (sbcl-package->ecl-package sbcl-documentation-utils))
7949
0b1f5713
PN
7950(define-public sbcl-documentation-utils-extensions
7951 (let ((commit "f67f8a05d583174662a594b79356b201c1d9d750"))
7952 (package
7953 (name "sbcl-documentation-utils-extensions")
7954 (version (git-version "0.0.0" "1" commit))
7955 (source
7956 (origin
7957 (method git-fetch)
7958 (uri
7959 (git-reference
7960 (url "https://github.com/sirherrbatka/documentation-utils-extensions/")
7961 (commit commit)))
7962 (file-name (git-file-name name version))
7963 (sha256
7964 (base32
7965 "0pn45c9rbxlnhn5nvhqz6kyv0nlirwxpg4j27niwdq80yxzsn51f"))))
7966 (build-system asdf-build-system/sbcl)
7967 (inputs
7968 `(("documentation-utils" ,sbcl-documentation-utils)))
7969 (home-page "https://github.com/sirherrbatka/documentation-utils-extensions")
7970 (synopsis "Set of extensions for documentation-utils")
7971 (description
7972 "Use @code{rich-formatter} to format documentation with sections @code{:syntax},
7973@code{:arguments}, @code{:examples}, @code{:description}, @code{:returns},
7974@code{:side-effects}, @code{:thread-safety}, @code{:affected-by},
7975@code{:see-also} and @code{:notes}. Gather unformatted input by using
7976@code{rich-aggregating-formatter} and @code{*DOCUMENTATION*} variable. Find
7977gathered documentation with find-documentation function. Execute code stored
7978in documentation with @code{execute-documentation}. See the examples in the
7979@code{src/documentation.lisp} file. See the @code{documentation-utils} system
7980for more information.")
7981 (license license:expat))))
7982
7983(define-public cl-documentation-utils-extensions
7984 (sbcl-package->cl-source-package sbcl-documentation-utils-extensions))
7985
7986(define-public ecl-documentation-utils-extensions
7987 (sbcl-package->ecl-package sbcl-documentation-utils-extensions))
7988
aa47c9e7
PN
7989(define-public sbcl-form-fiddle
7990 (let ((commit "e0c23599dbb8cff3e83e012f3d86d0764188ad18")
7991 (revision "0"))
7992 (package
7993 (name "sbcl-form-fiddle")
7994 (version (git-version "1.1.0" revision commit))
7995 (source
7996 (origin
7997 (method git-fetch)
7998 (uri
7999 (git-reference
8000 (url "https://github.com/Shinmera/form-fiddle")
8001 (commit commit)))
8002 (file-name (git-file-name name version))
8003 (sha256
8004 (base32
8005 "041iznc9mpfyrl0sv5893ys9pbb2pvbn9g3clarqi7gsfj483jln"))))
8006 (build-system asdf-build-system/sbcl)
8007 (inputs
8008 `(("documentation-utils" ,sbcl-documentation-utils)))
8009 (synopsis "Utilities to destructure Common Lisp lambda forms")
8010 (description
8011 "Often times we need to destructure a form definition in a Common Lisp
8012macro. This library provides a set of simple utilities to help with that.")
8013 (home-page "https://shinmera.github.io/form-fiddle/")
8014 (license license:zlib))))
8015
8016(define-public cl-form-fiddle
8017 (sbcl-package->cl-source-package sbcl-form-fiddle))
e0786d13 8018
e7cbcf5a
GLV
8019(define-public ecl-form-fiddle
8020 (sbcl-package->ecl-package sbcl-form-fiddle))
8021
e0786d13
PN
8022(define-public sbcl-parachute
8023 (let ((commit "ca04dd8e43010a6dfffa26dbe1d62af86008d666")
8024 (revision "0"))
8025 (package
8026 (name "sbcl-parachute")
8027 (version (git-version "1.1.1" revision commit))
8028 (source
8029 (origin
8030 (method git-fetch)
8031 (uri
8032 (git-reference
8033 (url "https://github.com/Shinmera/parachute")
8034 (commit commit)))
8035 (file-name (git-file-name name version))
8036 (sha256
8037 (base32
8038 "1mvsm3r0r6a2bg75nw0q7n9vlby3ch45qjl7hnb5k1z2n5x5lh60"))))
8039 (build-system asdf-build-system/sbcl)
8040 (inputs
8041 `(("documentation-utils" ,sbcl-documentation-utils)
8042 ("form-fiddle" ,sbcl-form-fiddle)))
8043 (synopsis "Extensible and cross-compatible testing framework for Common Lisp")
8044 (description
8045 "Parachute is a simple-to-use and extensible testing framework.
8046In Parachute, things are organised as a bunch of named tests within a package.
8047Each test can contain a bunch of test forms that make up its body.")
8048 (home-page "https://shinmera.github.io/parachute/")
8049 (license license:zlib))))
8050
8051(define-public cl-parachute
8052 (sbcl-package->cl-source-package sbcl-parachute))
f5b1da68 8053
e7cbcf5a
GLV
8054(define-public ecl-parachute
8055 (sbcl-package->ecl-package sbcl-parachute))
8056
f5b1da68
PN
8057(define-public sbcl-array-utils
8058 (let ((commit "f90eb9070d0b2205af51126a35033574725e5c56")
8059 (revision "0"))
8060 (package
8061 (name "sbcl-array-utils")
8062 (version (git-version "1.1.1" revision commit))
8063 (source
8064 (origin
8065 (method git-fetch)
8066 (uri
8067 (git-reference
8068 (url "https://github.com/Shinmera/array-utils")
8069 (commit commit)))
8070 (file-name (git-file-name name version))
8071 (sha256
8072 (base32
8073 "0zhwfbpr53vs1ii4sx75dz2k9yhh1xpwdqqpg8nmfndxkmhpbi3x"))))
8074 (build-system asdf-build-system/sbcl)
8075 (native-inputs
8076 `(("parachute" ,sbcl-parachute)))
8077 (inputs
8078 `(("documentation-utils" ,sbcl-documentation-utils)))
8079 (synopsis "Tiny collection of array and vector utilities for Common Lisp")
8080 (description
8081 "A miniature toolkit that contains some useful shifting/popping/pushing
8082functions for arrays and vectors. Originally from Plump.")
8083 (home-page "https://shinmera.github.io/array-utils/")
8084 (license license:zlib))))
8085
8086(define-public cl-array-utils
8087 (sbcl-package->cl-source-package sbcl-array-utils))
cbda07d4 8088
e7cbcf5a
GLV
8089(define-public ecl-array-utils
8090 (sbcl-package->ecl-package sbcl-array-utils))
8091
cbda07d4 8092(define-public sbcl-plump
ef4a5a85
PN
8093 (let ((commit "34f890fe46efdebe7bb70d218f1937e98f632bf9")
8094 (revision "1"))
cbda07d4
PN
8095 (package
8096 (name "sbcl-plump")
8097 (version (git-version "2.0.0" revision commit))
8098 (source
8099 (origin
8100 (method git-fetch)
8101 (uri
8102 (git-reference
8103 (url "https://github.com/Shinmera/plump")
8104 (commit commit)))
8105 (file-name (git-file-name name version))
8106 (sha256
8107 (base32
ef4a5a85 8108 "0a0x8wn6vv1ylxcwck12k18gy0a366kdm6ddxxk7yynl4mwnqgkh"))))
cbda07d4
PN
8109 (build-system asdf-build-system/sbcl)
8110 (inputs
8111 `(("array-utils" ,sbcl-array-utils)
8112 ("documentation-utils" ,sbcl-documentation-utils)))
8113 (synopsis "Lenient XML / XHTML / HTML parser for Common Lisp")
8114 (description
8115 "Plump is a parser for HTML/XML-like documents, focusing on being
8116lenient towards invalid markup. It can handle things like invalid attributes,
8117bad closing tag order, unencoded entities, inexistent tag types, self-closing
8118tags and so on. It parses documents to a class representation and offers a
8119small set of DOM functions to manipulate it. It can be extended to parse to
8120your own classes.")
8121 (home-page "https://shinmera.github.io/plump/")
8122 (license license:zlib))))
8123
8124(define-public cl-plump
8125 (sbcl-package->cl-source-package sbcl-plump))
20972e4e 8126
e7cbcf5a
GLV
8127(define-public ecl-plump
8128 (sbcl-package->ecl-package sbcl-plump))
8129
2ff8b5ba
GLV
8130;;; Split the antik package in two to work around the circular dependency
8131;;; between antik/antik and antik/gsll.
20972e4e
KCB
8132(define-public sbcl-antik-base
8133 (let ((commit "e4711a69b3d6bf37b5727af05c3cfd03e8428ba3")
8134 (revision "1"))
8135 (package
8136 (name "sbcl-antik-base")
8137 (version (git-version "0.0.0" revision commit))
8138 (source
8139 (origin
8140 (method git-fetch)
8141 (uri (git-reference
8142 (url "https://gitlab.common-lisp.net/antik/antik.git")
8143 (commit commit)))
8144 (file-name (git-file-name name version))
8145 (sha256
8146 (base32
8147 "047ga2c38par2xbgg4qx6hwv06qhf1c1f67as8xvir6s80lip1km"))))
8148 (build-system asdf-build-system/sbcl)
8149 (inputs
8150 `(("alexandria" ,sbcl-alexandria)
2ff8b5ba 8151 ("cffi" ,sbcl-cffi)
20972e4e 8152 ("cl-ppcre" ,sbcl-cl-ppcre)
2ff8b5ba
GLV
8153 ("drakma" ,sbcl-drakma)
8154 ("fare-utils" ,sbcl-fare-utils)
20972e4e
KCB
8155 ("iterate" ,sbcl-iterate)
8156 ("metabang-bind" ,sbcl-metabang-bind)
8157 ("named-readtables" ,sbcl-named-readtables)
2ff8b5ba
GLV
8158 ("split-sequence" ,sbcl-split-sequence)
8159 ("static-vectors" ,sbcl-static-vectors)
8160 ("trivial-garbage" ,sbcl-trivial-garbage)
8161 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
20972e4e
KCB
8162 (native-inputs
8163 `(("lisp-unit" ,sbcl-lisp-unit)))
2ff8b5ba 8164 (arguments
3f8bbf7c 8165 '(#:asd-systems '("antik-base"
e1dda5dd 8166 "foreign-array")
2ff8b5ba
GLV
8167 #:phases
8168 (modify-phases %standard-phases
8169 (add-after 'unpack 'fix-build
8170 (lambda _
e1dda5dd
GLV
8171 (for-each delete-file
8172 '("antik.asd"
8173 "physical-dimension.asd"
8174 "science-data.asd"))
2ff8b5ba 8175 #t)))))
20972e4e
KCB
8176 (synopsis "Scientific and engineering computation in Common Lisp")
8177 (description
8178 "Antik provides a foundation for scientific and engineering
8179computation in Common Lisp. It is designed not only to facilitate
8180numerical computations, but to permit the use of numerical computation
8181libraries and the interchange of data and procedures, whether
8182foreign (non-Lisp) or Lisp libraries. It is named after the
8183Antikythera mechanism, one of the oldest examples of a scientific
8184computer known.")
8185 (home-page "https://common-lisp.net/project/antik/")
8186 (license license:gpl3))))
8187
d9bdde74
GLV
8188(define-public cl-antik-base
8189 (sbcl-package->cl-source-package sbcl-antik-base))
8190
e1dda5dd
GLV
8191(define-public ecl-antik-base
8192 (let ((pkg (sbcl-package->ecl-package sbcl-antik-base)))
8193 (package
8194 (inherit pkg)
8195 (arguments
8196 (substitute-keyword-arguments (package-arguments pkg)
8197 ((#:phases phases)
8198 `(modify-phases ,phases
8199 (add-after 'unpack 'fix-readtable
8200 (lambda _
8201 (substitute* "input-output/readtable.lisp"
8202 (("#-ccl")
8203 "#-(or ccl ecl)"))
8204 #t)))))))))
8205
064dbb71
KCB
8206(define-public sbcl-gsll
8207 (let ((commit "1a8ada22f9cf5ed7372d352b2317f4ccdb6ab308")
8208 (revision "1"))
8209 (package
8210 (name "sbcl-gsll")
8211 (version (git-version "0.0.0" revision commit))
8212 (source
8213 (origin
8214 (method git-fetch)
8215 (uri (git-reference
8216 (url "https://gitlab.common-lisp.net/antik/gsll.git")
8217 (commit commit)))
8218 (file-name (git-file-name name version))
8219 (sha256
8220 (base32
8221 "0z5nypfk26hxihb08p085644afawicrgb4xvadh3lmrn46qbjfn4"))))
8222 (build-system asdf-build-system/sbcl)
8223 (native-inputs
8224 `(("lisp-unit" ,sbcl-lisp-unit)))
8225 (inputs
8226 `(("alexandria" ,sbcl-alexandria)
2ff8b5ba
GLV
8227 ("antik-base" ,sbcl-antik-base)
8228 ("cffi" ,sbcl-cffi)
064dbb71
KCB
8229 ("gsl" ,gsl)
8230 ("metabang-bind" ,sbcl-metabang-bind)
8231 ("trivial-features" ,sbcl-trivial-features)
8232 ("trivial-garbage" ,sbcl-trivial-garbage)))
8233 (arguments
8234 `(#:tests? #f
8235 #:phases
8236 (modify-phases %standard-phases
8237 (add-after 'unpack 'fix-cffi-paths
8238 (lambda* (#:key inputs #:allow-other-keys)
8239 (substitute* "gsll.asd"
8240 ((":depends-on \\(#:foreign-array")
8241 ":depends-on (#:foreign-array #:cffi-libffi"))
8242 (substitute* "init/init.lisp"
8243 (("libgslcblas.so" all)
8244 (string-append
8245 (assoc-ref inputs "gsl") "/lib/" all)))
8246 (substitute* "init/init.lisp"
8247 (("libgsl.so" all)
8248 (string-append
8249 (assoc-ref inputs "gsl") "/lib/" all))))))))
8250 (synopsis "GNU Scientific Library for Lisp")
8251 (description
8252 "The GNU Scientific Library for Lisp (GSLL) allows the use of the
8253GNU Scientific Library (GSL) from Common Lisp. This library provides a
8254full range of common mathematical operations useful to scientific and
8255engineering applications. The design of the GSLL interface is such
8256that access to most of the GSL library is possible in a Lisp-natural
8257way; the intent is that the user not be hampered by the restrictions
8258of the C language in which GSL has been written. GSLL thus provides
8259interactive use of GSL for getting quick answers, even for someone not
8260intending to program in Lisp.")
8261 (home-page "https://common-lisp.net/project/gsll/")
8262 (license license:gpl3))))
8263
8264(define-public cl-gsll
8265 (sbcl-package->cl-source-package sbcl-gsll))
f1faf1ca 8266
e1dda5dd
GLV
8267(define-public ecl-gsll
8268 (sbcl-package->ecl-package sbcl-gsll))
8269
f1faf1ca
KCB
8270(define-public sbcl-antik
8271 (package
8272 (inherit sbcl-antik-base)
8273 (name "sbcl-antik")
8274 (inputs
2ff8b5ba
GLV
8275 `(("antik-base" ,sbcl-antik-base)
8276 ("gsll" ,sbcl-gsll)))
f1faf1ca 8277 (arguments
e1dda5dd
GLV
8278 '(#:asd-systems '("antik"
8279 "science-data")
8280 #:phases
2ff8b5ba
GLV
8281 (modify-phases %standard-phases
8282 (add-after 'unpack 'fix-build
8283 (lambda _
8284 (for-each delete-file
8285 '("antik-base.asd"
e1dda5dd 8286 "foreign-array.asd"))
2ff8b5ba 8287 #t)))))))
f1faf1ca
KCB
8288
8289(define-public cl-antik
8290 (sbcl-package->cl-source-package sbcl-antik))
7b0bb0d1
KCB
8291
8292(define-public sbcl-cl-interpol
875b0bf6 8293 (let ((commit "70a1137f41dd8889004dbab9536b1adeac2497aa")
7b0bb0d1
KCB
8294 (revision "1"))
8295 (package
8296 (name "sbcl-cl-interpol")
875b0bf6 8297 (version (git-version "0.2.7" revision commit))
7b0bb0d1
KCB
8298 (source
8299 (origin
8300 (method git-fetch)
8301 (uri (git-reference
b0e7b699 8302 (url "https://github.com/edicl/cl-interpol")
7b0bb0d1 8303 (commit commit)))
875b0bf6 8304 (file-name (git-file-name "cl-interpol" version))
7b0bb0d1
KCB
8305 (sha256
8306 (base32
875b0bf6 8307 "1kr00zf62m7la7rxa2m5w49r9cyzamc106hvjcc8ffmi7a4jw490"))))
7b0bb0d1
KCB
8308 (build-system asdf-build-system/sbcl)
8309 (inputs
8310 `(("cl-unicode" ,sbcl-cl-unicode)
8311 ("named-readtables" ,sbcl-named-readtables)))
8312 (native-inputs
8313 `(("flexi-streams" ,sbcl-flexi-streams)))
8314 (synopsis "String interpolation for Common Lisp")
8315 (description
8316 "CL-INTERPOL is a library for Common Lisp which modifies the
8317reader so that you can have interpolation within strings similar to
8318Perl or Unix Shell scripts. It also provides various ways to insert
8319arbitrary characters into literal strings even if your editor/IDE
8320doesn't support them.")
8321 (home-page "https://edicl.github.io/cl-interpol/")
8322 (license license:bsd-3))))
8323
8324(define-public cl-interpol
8325 (sbcl-package->cl-source-package sbcl-cl-interpol))
8326
8327(define-public ecl-cl-interpol
8328 (sbcl-package->ecl-package sbcl-cl-interpol))
14ef7a92 8329
2ff8b5ba
GLV
8330(define-public sbcl-symbol-munger
8331 (let ((commit "97598d4c3c53fd5da72ab78908fbd5d8c7a13416")
14ef7a92
KCB
8332 (revision "1"))
8333 (package
2ff8b5ba 8334 (name "sbcl-symbol-munger")
14ef7a92
KCB
8335 (version (git-version "0.0.1" revision commit))
8336 (source
8337 (origin
8338 (method git-fetch)
8339 (uri (git-reference
b0e7b699 8340 (url "https://github.com/AccelerationNet/symbol-munger")
14ef7a92
KCB
8341 (commit commit)))
8342 (file-name (git-file-name name version))
8343 (sha256
8344 (base32
2ff8b5ba 8345 "0y8jywjy0ldyhp7bxf16fdvdd2qgqnd7nlhlqfpfnzxcqk4xy1km"))))
14ef7a92 8346 (build-system asdf-build-system/sbcl)
14ef7a92 8347 (inputs
2ff8b5ba
GLV
8348 `(("alexandria" ,sbcl-alexandria)
8349 ("iterate" ,sbcl-iterate)))
8350 (arguments
8351 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8352 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8353 '(#:tests? #f))
14ef7a92
KCB
8354 (synopsis
8355 "Capitalization and spacing conversion functions for Common Lisp")
8356 (description
8357 "This is a Common Lisp library to change the capitalization and spacing
8358of a string or a symbol. It can convert to and from Lisp, english, underscore
8359and camel-case rules.")
8360 (home-page "https://github.com/AccelerationNet/symbol-munger")
8361 ;; The package declares a BSD license, but all of the license
8362 ;; text is MIT.
8363 ;; See https://github.com/AccelerationNet/symbol-munger/issues/5
8364 (license license:expat))))
8365
2ff8b5ba
GLV
8366(define-public cl-symbol-munger
8367 (sbcl-package->cl-source-package sbcl-symbol-munger))
8368
8369(define-public ecl-symbol-munger
8370 (sbcl-package->ecl-package sbcl-symbol-munger))
8371
8372(define-public sbcl-lisp-unit2
14ef7a92
KCB
8373 ;; There is a cyclical dependency between symbol-munger and lisp-unit2.
8374 ;; See https://github.com/AccelerationNet/symbol-munger/issues/4
8375 (let ((commit "fb9721524d1e4e73abb223ee036d74ce14a5505c")
8376 (revision "1"))
8377 (package
2ff8b5ba 8378 (name "sbcl-lisp-unit2")
14ef7a92
KCB
8379 (version (git-version "0.2.0" revision commit))
8380 (source
8381 (origin
8382 (method git-fetch)
8383 (uri (git-reference
b0e7b699 8384 (url "https://github.com/AccelerationNet/lisp-unit2")
14ef7a92
KCB
8385 (commit commit)))
8386 (file-name (git-file-name name version))
8387 (sha256
8388 (base32
8389 "1rsqy8y0jqll6xn9a593848f5wvd5ribv4csry1ly0hmdhfnqzlp"))))
8390 (build-system asdf-build-system/sbcl)
14ef7a92
KCB
8391 (inputs
8392 `(("alexandria" ,sbcl-alexandria)
8393 ("cl-interpol" ,sbcl-cl-interpol)
8394 ("iterate" ,sbcl-iterate)
2ff8b5ba 8395 ("symbol-munger" ,sbcl-symbol-munger)))
14ef7a92
KCB
8396 (synopsis "Test Framework for Common Lisp")
8397 (description
8398 "LISP-UNIT2 is a Common Lisp library that supports unit testing in the
8399style of JUnit for Java. It is a new version of the lisp-unit library written
8400by Chris Riesbeck.")
8401 (home-page "https://github.com/AccelerationNet/lisp-unit2")
8402 (license license:expat))))
edfa2261 8403
b97dbb64
KCB
8404(define-public cl-lisp-unit2
8405 (sbcl-package->cl-source-package sbcl-lisp-unit2))
8406
8407(define-public ecl-lisp-unit2
8408 (sbcl-package->ecl-package sbcl-lisp-unit2))
f4448e43
KCB
8409
8410(define-public sbcl-cl-csv
be0ebf33
PN
8411 (let ((commit "68ecb5d816545677513d7f6308d9e5e8d2265651")
8412 (revision "2"))
f4448e43
KCB
8413 (package
8414 (name "sbcl-cl-csv")
8415 (version (git-version "1.0.6" revision commit))
8416 (source
8417 (origin
8418 (method git-fetch)
8419 (uri (git-reference
b0e7b699 8420 (url "https://github.com/AccelerationNet/cl-csv")
f4448e43
KCB
8421 (commit commit)))
8422 (file-name (git-file-name name version))
8423 (sha256
8424 (base32
be0ebf33 8425 "0gcmlbwx5m3kwgk12qi80w08ak8fgdnvyia429fz6gnxmhg0k54x"))))
f4448e43
KCB
8426 (build-system asdf-build-system/sbcl)
8427 (arguments
8428 ;; See: https://github.com/AccelerationNet/cl-csv/pull/34
8429 `(#:tests? #f))
8430 (inputs
8431 `(("alexandria" ,sbcl-alexandria)
8432 ("cl-interpol" ,sbcl-cl-interpol)
8433 ("iterate" ,sbcl-iterate)))
8434 (native-inputs
8435 `(("lisp-unit2" ,sbcl-lisp-unit2)))
8436 (synopsis "Common lisp library for comma-separated values")
8437 (description
8438 "This is a Common Lisp library providing functions to read/write CSV
8439from/to strings, streams and files.")
8440 (home-page "https://github.com/AccelerationNet/cl-csv")
8441 (license license:bsd-3))))
8442
8443(define-public cl-csv
8444 (sbcl-package->cl-source-package sbcl-cl-csv))
8445
8446(define-public ecl-cl-csv
8447 (sbcl-package->ecl-package sbcl-cl-csv))
6f0c2c95
KCB
8448
8449(define-public sbcl-external-program
8450 (let ((commit "5888b8f1fd3953feeeacecbba4384ddda584a749")
8451 (revision "1"))
8452 (package
8453 (name "sbcl-external-program")
8454 (version (git-version "0.0.6" revision commit))
8455 (source
8456 (origin
8457 (method git-fetch)
8458 (uri (git-reference
b0e7b699 8459 (url "https://github.com/sellout/external-program")
6f0c2c95
KCB
8460 (commit commit)))
8461 (file-name (git-file-name name version))
8462 (sha256
8463 (base32
8464 "0vww1x3yilb3bjwg6k184vaj4vxyxw4vralhnlm6lk4xac67kc9z"))))
8465 (build-system asdf-build-system/sbcl)
8466 (inputs
8467 `(("trivial-features" ,sbcl-trivial-features)))
8468 (native-inputs
8469 `(("fiveam" ,sbcl-fiveam)))
8470 (synopsis "Common Lisp library for running external programs")
8471 (description
8472 "EXTERNAL-PROGRAM enables running programs outside the Lisp
8473process. It is an attempt to make the RUN-PROGRAM functionality in
8474implementations like SBCL and CCL as portable as possible without
8475sacrificing much in the way of power.")
8476 (home-page "https://github.com/sellout/external-program")
8477 (license license:llgpl))))
8478
8479(define-public cl-external-program
8480 (sbcl-package->cl-source-package sbcl-external-program))
8481
8482(define-public ecl-external-program
8483 (sbcl-package->ecl-package sbcl-external-program))
710a2815 8484
2ff8b5ba 8485(define-public sbcl-cl-ana
710a2815
KCB
8486 (let ((commit "fa7cee4c50aa1c859652813049ba0da7c18a0df9")
8487 (revision "1"))
8488 (package
2ff8b5ba 8489 (name "sbcl-cl-ana")
710a2815
KCB
8490 (version (git-version "0.0.0" revision commit))
8491 (source
8492 (origin
8493 (method git-fetch)
8494 (uri (git-reference
b0e7b699 8495 (url "https://github.com/ghollisjr/cl-ana")
710a2815
KCB
8496 (commit commit)))
8497 (file-name (git-file-name name version))
8498 (sha256
2ff8b5ba 8499 (base32 "0mr47l57m276dbpap7irr4fcnk5fgknhf6mgv4043s8h73amk5qh"))))
710a2815 8500 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
8501 (native-inputs
8502 `(("cl-fad" ,sbcl-cl-fad)))
8503 (inputs
8504 `(("alexandria" ,sbcl-alexandria)
8505 ("antik" ,sbcl-antik)
8506 ("cffi" ,sbcl-cffi)
8507 ("cl-csv" ,sbcl-cl-csv)
8508 ("closer-mop" ,sbcl-closer-mop)
8509 ("external-program" ,sbcl-external-program)
8510 ("gsl" ,gsl)
8511 ("gsll" ,sbcl-gsll)
8512 ("hdf5" ,hdf5-parallel-openmpi)
8513 ("iterate" ,sbcl-iterate)
8514 ("libffi" ,libffi)
8515 ("split-sequence" ,sbcl-split-sequence)))
8516 (arguments
e765d9c9 8517 `(#:phases
2ff8b5ba
GLV
8518 (modify-phases %standard-phases
8519 (add-after 'unpack 'fix-paths
8520 (lambda* (#:key inputs #:allow-other-keys)
8521 (substitute* "hdf-cffi/hdf-cffi.lisp"
8522 (("/usr/lib/i386-linux-gnu/hdf5/serial/libhdf5.so")
8523 (string-append (assoc-ref inputs "hdf5")
8524 "/lib/libhdf5.so")))
8525 (substitute* "gsl-cffi/gsl-cffi.lisp"
8526 (("define-foreign-library gsl-cffi" all)
8527 (string-append all " (:unix "
8528 (assoc-ref inputs "gsl")
8529 "/lib/libgsl.so)")))
8530 #t)))))
710a2815
KCB
8531 (synopsis "Common Lisp data analysis library")
8532 (description
8533 "CL-ANA is a data analysis library in Common Lisp providing tabular and
8534binned data analysis along with nonlinear least squares fitting and
8535visualization.")
8536 (home-page "https://github.com/ghollisjr/cl-ana")
8537 (license license:gpl3))))
8538
2ff8b5ba
GLV
8539(define-public cl-ana
8540 (sbcl-package->cl-source-package sbcl-cl-ana))
6d69c5b4 8541
2ff8b5ba
GLV
8542(define-public sbcl-archive
8543 (let ((commit "631271c091ed02994bec3980cb288a2cf32c7cdc")
8544 (revision "1"))
8545 (package
8546 (name "sbcl-archive")
8547 (version (git-version "0.9" revision commit))
8548 (source (origin
8549 (method git-fetch)
8550 (uri (git-reference
8551 (url "https://github.com/sharplispers/archive")
8552 (commit commit)))
8553 (file-name (git-file-name name version))
8554 (sha256
8555 (base32
8556 "0pvsc9fmybx7rxd0kmzq4shi6hszdpwdc1sfy7jwyfxf8n3hnv4p"))))
8557 (build-system asdf-build-system/sbcl)
8558 (inputs
8559 `(("cl-fad" ,sbcl-cl-fad)
8560 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
8561 (synopsis "Common Lisp library for tar and cpio archives")
8562 (description
8563 "This is a Common Lisp library to read and write disk-based file
8564archives such as those generated by the tar and cpio programs on Unix.")
8565 (home-page "https://github.com/sharplispers/archive")
8566 (license license:bsd-3))))
39ba698b 8567
2ff8b5ba
GLV
8568(define-public cl-archive
8569 (sbcl-package->cl-source-package sbcl-archive))
39ba698b 8570
2ff8b5ba
GLV
8571(define-public ecl-archive
8572 (sbcl-package->ecl-package sbcl-archive))
39ba698b 8573
2ff8b5ba
GLV
8574(define-public sbcl-misc-extensions
8575 (let ((commit "101c05112bf2f1e1bbf527396822d2f50ca6327a")
8576 (revision "1"))
8577 (package
8578 (name "sbcl-misc-extensions")
8579 (version (git-version "3.3" revision commit))
8580 (source
8581 (origin
8582 (method git-fetch)
8583 (uri (git-reference
8584 (url "https://gitlab.common-lisp.net/misc-extensions/devel.git")
8585 (commit commit)))
8586 (file-name (git-file-name name version))
8587 (sha256
8588 (base32
8589 "0gz5f4p70qzilnxsnf5lih2n9m4wjcw8hlw4w8mpn9jyhyppyyv0"))))
8590 (build-system asdf-build-system/sbcl)
8591 (synopsis "Collection of small macros and extensions for Common Lisp")
8592 (description
8593 "This project is intended as a catchall for small, general-purpose
8594extensions to Common Lisp. It contains:
ad09a96a 8595
2ff8b5ba
GLV
8596@itemize
8597@item @code{new-let}, a macro that combines and generalizes @code{let},
8598@code{let*} and @code{multiple-value-bind},
8599@item @code{gmap}, an iteration macro that generalizes @code{map}.
8600@end itemize\n")
8601 (home-page "https://common-lisp.net/project/misc-extensions/")
8602 (license license:public-domain))))
ad09a96a 8603
2ff8b5ba
GLV
8604(define-public cl-misc-extensions
8605 (sbcl-package->cl-source-package sbcl-misc-extensions))
ad09a96a 8606
2ff8b5ba
GLV
8607(define-public ecl-misc-extensions
8608 (sbcl-package->ecl-package sbcl-misc-extensions))
141d96e1 8609
2ff8b5ba 8610(define-public sbcl-mt19937
141d96e1 8611 (package
2ff8b5ba
GLV
8612 (name "sbcl-mt19937")
8613 (version "1.1")
8614 (source
8615 (origin
8616 (method url-fetch)
8617 (uri (string-append "https://common-lisp.net/project/asdf-packaging/"
8618 "mt19937-latest.tar.gz"))
8619 (sha256
8620 (base32
8621 "1iw636b0iw5ygkv02y8i41lh7xj0acglv0hg5agryn0zzi2nf1xv"))))
8622 (build-system asdf-build-system/sbcl)
8623 (synopsis "Mersenne Twister pseudo-random number generator")
8624 (description
8625 "MT19937 is a portable Mersenne Twister pseudo-random number generator
8626for Common Lisp.")
8627 (home-page "https://www.cliki.net/mt19937")
8628 (license license:public-domain)))
141d96e1 8629
2ff8b5ba
GLV
8630(define-public cl-mt19937
8631 (sbcl-package->cl-source-package sbcl-mt19937))
141d96e1 8632
2ff8b5ba
GLV
8633(define-public ecl-mt19937
8634 (sbcl-package->ecl-package sbcl-mt19937))
7468ca3c 8635
2ff8b5ba
GLV
8636(define-public sbcl-fset
8637 (let ((commit "6d2f9ded8934d2b42f2571a0ba5bda091037d852")
8638 (revision "1"))
8639 (package
8640 (name "sbcl-fset")
8641 (version (git-version "1.3.2" revision commit))
8642 (source
8643 (origin
8644 (method git-fetch)
8645 (uri (git-reference
8646 (url "https://github.com/slburson/fset")
8647 (commit commit)))
8648 (file-name (git-file-name name version))
8649 (sha256
8650 (base32
8651 "127acblwrbqicx47h6sgvknz1cqyfn8p4xkhkn1m7hxh8w5gk1zy"))
8652 (snippet '(begin
8653 ;; Remove obsolete copy of system definition.
8654 (delete-file "Code/fset.asd")
8655 #t))))
8656 (build-system asdf-build-system/sbcl)
8657 (inputs
8658 `(("misc-extensions" ,sbcl-misc-extensions)
8659 ("mt19937" ,sbcl-mt19937)
8660 ("named-readtables" ,sbcl-named-readtables)))
8661 (synopsis "Functional set-theoretic collections library")
8662 (description
8663 "FSet is a functional set-theoretic collections library for Common Lisp.
8664Functional means that all update operations return a new collection rather than
8665modifying an existing one in place. Set-theoretic means that collections may
8666be nested arbitrarily with no additional programmer effort; for instance, sets
8667may contain sets, maps may be keyed by sets, etc.")
8668 (home-page "https://common-lisp.net/project/fset/Site/index.html")
8669 (license license:llgpl))))
7468ca3c 8670
2ff8b5ba
GLV
8671(define-public cl-fset
8672 (sbcl-package->cl-source-package sbcl-fset))
7468ca3c 8673
bdd3b1b2
GLV
8674(define-public ecl-fset
8675 (package
8676 (inherit (sbcl-package->ecl-package sbcl-fset))
8677 (arguments
8678 ;; Tests fails on ECL with "The function FSET::MAKE-CHAR is undefined".
8679 '(#:tests? #f))))
8680
2ff8b5ba
GLV
8681(define-public sbcl-cl-cont
8682 (let ((commit "fc1fa7e6eb64894fdca13e688e6015fad5290d2a")
8683 (revision "1"))
8684 (package
8685 (name "sbcl-cl-cont")
8686 (version (git-version "0.3.8" revision commit))
8687 (source
8688 (origin
8689 (method git-fetch)
8690 (uri (git-reference
8691 (url "https://gitlab.common-lisp.net/cl-cont/cl-cont.git")
8692 (commit commit)))
8693 (file-name (git-file-name name version))
8694 (sha256
8695 (base32
8696 "1zf8zvb0i6jm3hhfks4w74hibm6avgc6f9s1qwgjrn2bcik8lrvz"))))
8697 (build-system asdf-build-system/sbcl)
8698 (inputs
8699 `(("alexandria" ,sbcl-alexandria)
8700 ("closer-mop" ,sbcl-closer-mop)))
8701 (native-inputs
8702 `(("rt" ,sbcl-rt)))
8703 (synopsis "Delimited continuations for Common Lisp")
8704 (description
8705 "This is a library that implements delimited continuations by
8706transforming Common Lisp code to continuation passing style.")
8707 (home-page "https://common-lisp.net/project/cl-cont/")
8708 (license license:llgpl))))
f69f0235 8709
2ff8b5ba
GLV
8710(define-public cl-cont
8711 (sbcl-package->cl-source-package sbcl-cl-cont))
f69f0235 8712
2ff8b5ba
GLV
8713(define-public ecl-cl-cont
8714 (sbcl-package->ecl-package sbcl-cl-cont))
4101c714
GLV
8715
8716(define-public sbcl-cl-coroutine
8717 (let ((commit "de098f8d5debd8b14ef6864b5bdcbbf5ddbcfd72")
8718 (revision "1"))
8719 (package
8720 (name "sbcl-cl-coroutine")
8721 (version (git-version "0.1" revision commit))
8722 (source
8723 (origin
8724 (method git-fetch)
8725 (uri (git-reference
b0e7b699 8726 (url "https://github.com/takagi/cl-coroutine")
4101c714
GLV
8727 (commit commit)))
8728 (file-name (git-file-name name version))
8729 (sha256
8730 (base32
8731 "1cqdhdjxffgfs116l1swjlsmcbly0xgcgrckvaajd566idj9yj4l"))))
8732 (build-system asdf-build-system/sbcl)
8733 (inputs
8734 `(("alexandria" ,sbcl-alexandria)
8735 ("cl-cont" ,sbcl-cl-cont)))
8736 (native-inputs
8737 `(("prove" ,sbcl-prove)))
8738 (arguments
8739 `(;; TODO: Fix the tests. They fail with:
8740 ;; "Component CL-COROUTINE-ASD::CL-COROUTINE-TEST not found"
8741 #:tests? #f
8742 #:phases
8743 (modify-phases %standard-phases
8744 (add-after 'unpack 'fix-tests
8745 (lambda _
8746 (substitute* "cl-coroutine-test.asd"
8747 (("cl-test-more")
8748 "prove"))
8749 #t)))))
8750 (synopsis "Coroutine library for Common Lisp")
8751 (description
8752 "This is a coroutine library for Common Lisp implemented using the
8753continuations of the @code{cl-cont} library.")
8754 (home-page "https://github.com/takagi/cl-coroutine")
8755 (license license:llgpl))))
8756
8757(define-public cl-coroutine
8758 (sbcl-package->cl-source-package sbcl-cl-coroutine))
8759
8760(define-public ecl-cl-coroutine
8761 (sbcl-package->ecl-package sbcl-cl-coroutine))
5b8bc813 8762
4b1e0f30
SH
8763(define-public sbcl-vas-string-metrics
8764 (let ((commit "f2e4500b180316123fbd549bd51c751ee2d6ba0f")
8765 (revision "1"))
8766 (package
8767 (name "sbcl-vas-string-metrics")
8768 (version (git-version "0.0.0" revision commit))
8769 (source
8770 (origin
8771 (method git-fetch)
8772 (uri (git-reference
8773 (url "https://github.com/vsedach/vas-string-metrics")
8774 (commit commit)))
8775 (file-name (git-file-name "vas-string-metrics" version))
8776 (sha256
8777 (base32 "11fcnd03ybzz37rkg3z0wsb727yqgcd9gn70sccfb34l89ia279k"))))
8778 (build-system asdf-build-system/sbcl)
8779 (arguments
8780 `(#:test-asd-file "test.vas-string-metrics.asd"))
8781 (home-page "https://github.com/vsedach/vas-string-metrics")
8782 (synopsis "String distance algorithms for Common Lisp")
8783 (description
8784 "VAS-STRING-METRICS provides the Jaro, Jaro-Winkler, Soerensen-Dice,
8785Levenshtein, and normalized Levenshtein string distance/similarity metrics
8786algorithms.")
8787 (license license:lgpl3+))))
8788
8789(define-public ecl-vas-string-metrics
8790 (sbcl-package->ecl-package sbcl-vas-string-metrics))
8791
8792(define-public cl-vas-string-metrics
8793 (sbcl-package->cl-source-package sbcl-vas-string-metrics))
8794
5b8bc813
GLV
8795(define-public sbcl-vom
8796 (let ((commit "1aeafeb5b74c53741b79497e0ef4acf85c92ff24")
8797 (revision "1"))
8798 (package
8799 (name "sbcl-vom")
8800 (version (git-version "0.1.4" revision commit))
8801 (source
8802 (origin
8803 (method git-fetch)
8804 (uri (git-reference
b0e7b699 8805 (url "https://github.com/orthecreedence/vom")
5b8bc813
GLV
8806 (commit commit)))
8807 (file-name (git-file-name name version))
8808 (sha256
8809 (base32
8810 "0536kppj76ax4lrxhv42npkfjsmx45km2g439vf9jmw3apinz9cy"))))
8811 (build-system asdf-build-system/sbcl)
8812 (synopsis "Tiny logging utility for Common Lisp")
8813 (description
8814 "Vom is a logging library for Common Lisp. It's goal is to be useful
8815and small. It does not provide a lot of features as other loggers do, but
8816has a small codebase that's easy to understand and use.")
8817 (home-page "https://github.com/orthecreedence/vom")
8818 (license license:expat))))
8819
8820(define-public cl-vom
8821 (sbcl-package->cl-source-package sbcl-vom))
8822
8823(define-public ecl-vom
8824 (sbcl-package->ecl-package sbcl-vom))
37b48dc1
GLV
8825
8826(define-public sbcl-cl-libuv
8827 (let ((commit "32100c023c518038d0670a103eaa4d50dd785d29")
8828 (revision "1"))
8829 (package
8830 (name "sbcl-cl-libuv")
8831 (version (git-version "0.1.6" revision commit))
8832 (source
8833 (origin
8834 (method git-fetch)
8835 (uri (git-reference
b0e7b699 8836 (url "https://github.com/orthecreedence/cl-libuv")
37b48dc1
GLV
8837 (commit commit)))
8838 (file-name (git-file-name name version))
8839 (sha256
8840 (base32
8841 "1kwix4si8a8hza34ab2k7whrh7z0yrmx39v2wc3qblv9m244jkh1"))))
8842 (build-system asdf-build-system/sbcl)
8843 (inputs
8844 `(("alexandria" ,sbcl-alexandria)
8845 ("cffi" ,sbcl-cffi)
37b48dc1
GLV
8846 ("libuv" ,libuv)))
8847 (arguments
8848 `(#:phases
8849 (modify-phases %standard-phases
8850 (add-after 'unpack 'fix-paths
8851 (lambda* (#:key inputs #:allow-other-keys)
8852 (substitute* "lib.lisp"
8853 (("/usr/lib/libuv.so")
8854 (string-append (assoc-ref inputs "libuv")
8855 "/lib/libuv.so")))
8856 #t))
8857 (add-after 'fix-paths 'fix-system-definition
8858 (lambda _
8859 (substitute* "cl-libuv.asd"
8860 (("#:cffi #:alexandria")
8861 "#:cffi #:cffi-grovel #:alexandria"))
8862 #t)))))
8863 (synopsis "Common Lisp bindings to libuv")
8864 (description
8865 "This library provides low-level libuv bindings for Common Lisp.")
8866 (home-page "https://github.com/orthecreedence/cl-libuv")
8867 (license license:expat))))
8868
8869(define-public cl-libuv
8870 (sbcl-package->cl-source-package sbcl-cl-libuv))
8871
8872(define-public ecl-cl-libuv
8873 (sbcl-package->ecl-package sbcl-cl-libuv))
1cc1dfbb 8874
2ff8b5ba 8875(define-public sbcl-cl-async
1cc1dfbb
GLV
8876 (let ((commit "f6423e44404a44434d803605e0d2e17199158e28")
8877 (revision "1"))
8878 (package
2ff8b5ba 8879 (name "sbcl-cl-async")
1cc1dfbb
GLV
8880 (version (git-version "0.6.1" revision commit))
8881 (source
8882 (origin
8883 (method git-fetch)
8884 (uri (git-reference
b0e7b699 8885 (url "https://github.com/orthecreedence/cl-async")
1cc1dfbb
GLV
8886 (commit commit)))
8887 (file-name (git-file-name name version))
8888 (sha256
8889 (base32
8890 "11xi9dxb8mjgwzrkj88i0xkgk26z9w9ddxzbv6xsvfc1d4x5cf4x"))))
8891 (build-system asdf-build-system/sbcl)
8892 (inputs
2ff8b5ba
GLV
8893 `(("babel" ,sbcl-babel)
8894 ("bordeaux-threads" ,sbcl-bordeaux-threads)
1cc1dfbb 8895 ("cffi" ,sbcl-cffi)
2ff8b5ba
GLV
8896 ("cl-libuv" ,sbcl-cl-libuv)
8897 ("cl-ppcre" ,sbcl-cl-ppcre)
8898 ("fast-io" ,sbcl-fast-io)
8899 ("openssl" ,openssl)
8900 ("static-vectors" ,sbcl-static-vectors)
8901 ("trivial-features" ,sbcl-trivial-features)
8902 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
8903 ("vom" ,sbcl-vom)))
1cc1dfbb 8904 (arguments
3f8bbf7c 8905 `(#:asd-systems '("cl-async"
2ff8b5ba
GLV
8906 "cl-async-repl"
8907 "cl-async-ssl")
8908 #:phases
8909 (modify-phases %standard-phases
ae51aa91
GLV
8910 (add-after 'unpack 'fix-paths
8911 (lambda* (#:key inputs #:allow-other-keys)
8912 (substitute* "src/ssl/package.lisp"
8913 (("libcrypto\\.so")
8914 (string-append (assoc-ref inputs "openssl")
8915 "/lib/libcrypto.so"))
8916 (("libssl\\.so")
8917 (string-append (assoc-ref inputs "openssl")
8918 "/lib/libssl.so")))
2ff8b5ba
GLV
8919 #t)))))
8920 (synopsis "Asynchronous operations for Common Lisp")
8921 (description
8922 "Cl-async is a library for general purpose, non-blocking programming in
8923Common Lisp. It uses the libuv library as backend.")
8924 (home-page "https://orthecreedence.github.io/cl-async/")
8925 (license license:expat))))
ae51aa91 8926
2ff8b5ba
GLV
8927(define-public cl-async
8928 (sbcl-package->cl-source-package sbcl-cl-async))
ae51aa91 8929
2ff8b5ba
GLV
8930(define-public ecl-cl-async
8931 (sbcl-package->ecl-package sbcl-cl-async))
34f9b581
GLV
8932
8933(define-public sbcl-blackbird
8934 (let ((commit "d361f81c1411dec07f6c2dcb11c78f7aea9aaca8")
8935 (revision "1"))
8936 (package
8937 (name "sbcl-blackbird")
8938 (version (git-version "0.5.2" revision commit))
8939 (source
8940 (origin
8941 (method git-fetch)
8942 (uri (git-reference
b0e7b699 8943 (url "https://github.com/orthecreedence/blackbird")
34f9b581
GLV
8944 (commit commit)))
8945 (file-name (git-file-name name version))
8946 (sha256
8947 (base32
8948 "0xfds5yaya64arzr7w1x38karyz11swzbhxx1afldpradj9dh19c"))))
8949 (build-system asdf-build-system/sbcl)
8950 (inputs
8951 `(("vom" ,sbcl-vom)))
8952 (native-inputs
8953 `(("cl-async" ,sbcl-cl-async)
8954 ("fiveam" ,sbcl-fiveam)))
8955 (synopsis "Promise implementation for Common Lisp")
8956 (description
8957 "This is a standalone promise implementation for Common Lisp. It is
8958the successor to the now-deprecated cl-async-future project.")
e0318062 8959 (home-page "https://orthecreedence.github.io/blackbird/")
34f9b581
GLV
8960 (license license:expat))))
8961
8962(define-public cl-blackbird
8963 (sbcl-package->cl-source-package sbcl-blackbird))
8964
8965(define-public ecl-blackbird
8966 (sbcl-package->ecl-package sbcl-blackbird))
c5eedf80
GLV
8967
8968(define-public sbcl-cl-async-future
8969 (let ((commit "ee36c22a69a9516407458d2ed8b475f1fc473959")
8970 (revision "1"))
8971 (package
8972 (name "sbcl-cl-async-future")
8973 (version (git-version "0.4.4.1" revision commit))
8974 (source
8975 (origin
8976 (method git-fetch)
8977 (uri (git-reference
b0e7b699 8978 (url "https://github.com/orthecreedence/cl-async-future")
c5eedf80
GLV
8979 (commit commit)))
8980 (file-name (git-file-name name version))
8981 (sha256
8982 (base32
8983 "0z0sc7qlzzxk99f4l26zp6rai9kv0kj0f599sxai5s44p17zbbvh"))))
8984 (build-system asdf-build-system/sbcl)
8985 (inputs
8986 `(("blackbird" ,sbcl-blackbird)))
8987 (native-inputs
8988 `(("cl-async" ,sbcl-cl-async)
8989 ("eos" ,sbcl-eos)))
8990 (synopsis "Futures implementation for Common Lisp")
8991 (description
8992 "This is futures implementation for Common Lisp. It plugs in nicely
8993to cl-async.")
e0318062 8994 (home-page "https://orthecreedence.github.io/cl-async/future")
c5eedf80
GLV
8995 (license license:expat))))
8996
8997(define-public cl-async-future
8998 (sbcl-package->cl-source-package sbcl-cl-async-future))
8999
9000(define-public ecl-cl-async-future
9001 (sbcl-package->ecl-package sbcl-cl-async-future))
8ea00edf
GLV
9002
9003(define-public sbcl-green-threads
9004 (let ((commit "fff5ebecb441a37e5c511773716aafd84a3c5840")
9005 (revision "1"))
9006 (package
9007 (name "sbcl-green-threads")
9008 (version (git-version "0.3" revision commit))
9009 (source
9010 (origin
9011 (method git-fetch)
9012 (uri (git-reference
b0e7b699 9013 (url "https://github.com/thezerobit/green-threads")
8ea00edf
GLV
9014 (commit commit)))
9015 (file-name (git-file-name name version))
9016 (sha256
9017 (base32
9018 "1czw7nr0dwfps76h8hjvglk1wdh53yqbfbvv30whwbgqx33iippz"))))
9019 (build-system asdf-build-system/sbcl)
9020 (inputs
9021 `(("cl-async-future" ,sbcl-cl-async-future)
9022 ("cl-cont" ,sbcl-cl-cont)))
9023 (native-inputs
9024 `(("prove" ,sbcl-prove)))
9025 (arguments
9026 `(;; TODO: Fix the tests. They fail with:
9027 ;; "The function BLACKBIRD::PROMISE-VALUES is undefined"
9028 #:tests? #f
9029 #:phases
9030 (modify-phases %standard-phases
9031 (add-after 'unpack 'fix-tests
9032 (lambda _
9033 (substitute* "green-threads-test.asd"
9034 (("cl-test-more")
9035 "prove"))
9036 #t)))))
9037 (synopsis "Cooperative multitasking library for Common Lisp")
9038 (description
9039 "This library allows for cooperative multitasking with help of cl-cont
9040for continuations. It tries to mimic the API of bordeaux-threads as much as
9041possible.")
9042 (home-page "https://github.com/thezerobit/green-threads")
9043 (license license:bsd-3))))
9044
9045(define-public cl-green-threads
9046 (sbcl-package->cl-source-package sbcl-green-threads))
9047
9048(define-public ecl-green-threads
9049 (sbcl-package->ecl-package sbcl-green-threads))
3ac0e64d
GLV
9050
9051(define-public sbcl-cl-base32
9052 (let ((commit "8cdee06fab397f7b0a19583b57e7f0c98405be85")
9053 (revision "1"))
9054 (package
9055 (name "sbcl-cl-base32")
9056 (version (git-version "0.1" revision commit))
9057 (source
9058 (origin
9059 (method git-fetch)
9060 (uri (git-reference
b0e7b699 9061 (url "https://github.com/hargettp/cl-base32")
3ac0e64d
GLV
9062 (commit commit)))
9063 (file-name (git-file-name name version))
9064 (sha256
9065 (base32 "17jrng8jb05d64ggyd11hp308c2fl5drvf9g175blgrkkl8l4mf8"))))
9066 (build-system asdf-build-system/sbcl)
9067 (native-inputs
9068 `(("lisp-unit" ,sbcl-lisp-unit)))
9069 (synopsis "Common Lisp library for base32 encoding and decoding")
9070 (description
9071 "This package provides functions for base32 encoding and decoding as
9072defined in RFC4648.")
9073 (home-page "https://github.com/hargettp/cl-base32")
9074 (license license:expat))))
9075
9076(define-public cl-base32
9077 (sbcl-package->cl-source-package sbcl-cl-base32))
9078
9079(define-public ecl-cl-base32
9080 (sbcl-package->ecl-package sbcl-cl-base32))
c5bbcb82
GLV
9081
9082(define-public sbcl-cl-z85
9083 (let ((commit "85b3951a9cfa2603acb6aee15567684f9a108098")
9084 (revision "1"))
9085 (package
9086 (name "sbcl-cl-z85")
9087 (version (git-version "1.0" revision commit))
9088 (source
9089 (origin
9090 (method git-fetch)
9091 (uri (git-reference
b0e7b699 9092 (url "https://github.com/glv2/cl-z85")
c5bbcb82
GLV
9093 (commit commit)))
9094 (file-name (git-file-name name version))
9095 (sha256
9096 (base32 "0r27pidjaxbm7k1rr90nnajwl5xm2kp65g1fv0fva17lzy45z1mp"))))
9097 (build-system asdf-build-system/sbcl)
9098 (native-inputs
9099 `(("cl-octet-streams" ,sbcl-cl-octet-streams)
9100 ("fiveam" ,sbcl-fiveam)))
9101 (synopsis "Common Lisp library for Z85 encoding and decoding")
9102 (description
9103 "This package provides functions to encode or decode byte vectors or
9104byte streams using the Z85 format, which is a base-85 encoding used by
9105ZeroMQ.")
9106 (home-page "https://github.com/glv2/cl-z85")
9107 (license license:gpl3+))))
9108
9109(define-public cl-z85
9110 (sbcl-package->cl-source-package sbcl-cl-z85))
9111
9112(define-public ecl-cl-z85
9113 (sbcl-package->ecl-package sbcl-cl-z85))
d3a2df68
GLV
9114
9115(define-public sbcl-ltk
9116 (package
9117 (name "sbcl-ltk")
9118 (version "0.992")
9119 (source
9120 (origin
9121 (method git-fetch)
9122 (uri (git-reference
b0e7b699 9123 (url "https://github.com/herth/ltk")
d3a2df68
GLV
9124 (commit version)))
9125 (file-name (git-file-name name version))
9126 (sha256
9127 (base32 "13l2q4mskzilya9xh5wy2xvy30lwn104bd8wrq6ifds56r82iy3x"))))
9128 (build-system asdf-build-system/sbcl)
9129 (inputs
9130 `(("imagemagick" ,imagemagick)
9131 ("tk" ,tk)))
9132 (arguments
3f8bbf7c 9133 `(#:asd-systems '("ltk"
2ff8b5ba
GLV
9134 "ltk-mw"
9135 "ltk-remote")
d3a2df68 9136 #:tests? #f
2ff8b5ba
GLV
9137 #:phases
9138 (modify-phases %standard-phases
9139 (add-after 'unpack 'fix-paths
9140 (lambda* (#:key inputs #:allow-other-keys)
9141 (substitute* "ltk/ltk.lisp"
9142 (("#-freebsd \"wish\"")
9143 (string-append "#-freebsd \""
9144 (assoc-ref inputs "tk")
9145 "/bin/wish\""))
9146 (("do-execute \"convert\"")
9147 (string-append "do-execute \""
9148 (assoc-ref inputs "imagemagick")
9149 "/bin/convert\"")))
9150 #t))
9151 (add-after 'unpack 'fix-build
9152 (lambda _
9153 (substitute* "ltk/ltk-remote.lisp"
9154 (("\\(:export")
9155 "(:shadow #:raise) (:export"))
9156 #t)))))
d3a2df68
GLV
9157 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9158 (description
9159 "LTK is a Common Lisp binding for the Tk graphics toolkit. It is written
9160in pure Common Lisp and does not require any Tk knowledge for its usage.")
9161 (home-page "http://www.peter-herth.de/ltk/")
9162 (license license:llgpl)))
9163
9164(define-public cl-ltk
9165 (sbcl-package->cl-source-package sbcl-ltk))
9166
9167(define-public ecl-ltk
9168 (sbcl-package->ecl-package sbcl-ltk))
811747f9 9169
95abaafb
GLV
9170(define-public sbcl-cl-lex
9171 (let ((commit "f2dbbe25ef553005fb402d9a6203180c3fa1093b")
9172 (revision "1"))
9173 (package
9174 (name "sbcl-cl-lex")
9175 (version (git-version "1.1.3" revision commit))
9176 (source
9177 (origin
9178 (method git-fetch)
9179 (uri (git-reference
b0e7b699 9180 (url "https://github.com/djr7C4/cl-lex")
95abaafb
GLV
9181 (commit commit)))
9182 (file-name (git-file-name name version))
9183 (sha256
9184 (base32 "1kg50f76bfpfxcv4dfivq1n9a0xlsra2ajb0vd68lxwgbidgyc2y"))))
9185 (build-system asdf-build-system/sbcl)
9186 (inputs
9187 `(("cl-ppcre" ,sbcl-cl-ppcre)))
9188 (synopsis "Common Lisp macros for generating lexical analyzers")
9189 (description
9190 "This is a Common Lisp library providing a set of macros for generating
9191lexical analyzers automatically. The lexers generated using @code{cl-lex} can
9192be used with @code{cl-yacc}.")
9193 (home-page "https://github.com/djr7C4/cl-lex")
9194 (license license:gpl3))))
9195
9196(define-public cl-lex
9197 (sbcl-package->cl-source-package sbcl-cl-lex))
9198
9199(define-public ecl-cl-lex
9200 (sbcl-package->ecl-package sbcl-cl-lex))
21a519fa
GLV
9201
9202(define-public sbcl-clunit2
9203 (let ((commit "5e28343734eb9b7aee39306a614af92c1062d50b")
9204 (revision "1"))
9205 (package
9206 (name "sbcl-clunit2")
9207 (version (git-version "0.2.4" revision commit))
9208 (source
9209 (origin
9210 (method git-fetch)
9211 (uri (git-reference
9212 (url "https://notabug.org/cage/clunit2.git")
9213 (commit commit)))
9214 (file-name (git-file-name name version))
9215 (sha256
9216 (base32 "1ngiapfki6nm8a555mzhb5p7ch79i3w665za5bmb5j7q34fy80vw"))))
9217 (build-system asdf-build-system/sbcl)
9218 (synopsis "Unit testing framework for Common Lisp")
9219 (description
9220 "CLUnit is a Common Lisp unit testing framework. It is designed to be
9221easy to use so that you can quickly start testing.")
9222 (home-page "https://notabug.org/cage/clunit2")
9223 (license license:expat))))
9224
9225(define-public cl-clunit2
9226 (sbcl-package->cl-source-package sbcl-clunit2))
9227
9228(define-public ecl-clunit2
9229 (sbcl-package->ecl-package sbcl-clunit2))
e9a36a74
GLV
9230
9231(define-public sbcl-cl-colors2
9232 (let ((commit "795aedee593b095fecde574bd999b520dd03ed24")
9233 (revision "1"))
9234 (package
9235 (name "sbcl-cl-colors2")
9236 (version (git-version "0.2.1" revision commit))
9237 (source
9238 (origin
9239 (method git-fetch)
9240 (uri (git-reference
9241 (url "https://notabug.org/cage/cl-colors2.git")
9242 (commit commit)))
9243 (file-name (git-file-name name version))
9244 (sha256
9245 (base32 "0hlyf4h5chkjdp9armla5w4kw5acikk159sym7y8c4jbjp9x47ih"))))
9246 (build-system asdf-build-system/sbcl)
9247 (native-inputs
9248 `(("clunit2" ,sbcl-clunit2)))
9249 (inputs
9250 `(("alexandria" ,sbcl-alexandria)
9251 ("cl-ppcre" ,sbcl-cl-ppcre)))
9252 (synopsis "Color library for Common Lisp")
9253 (description
9254 "This is a very simple color library for Common Lisp, providing:
9255
9256@itemize
9257@item Types for representing colors in HSV and RGB spaces.
9258@item Simple conversion functions between the above types (and also
9259hexadecimal representation for RGB).
9260@item Some predefined colors (currently X11 color names -- of course
9261the library does not depend on X11).
9262@end itemize\n")
9263 (home-page "https://notabug.org/cage/cl-colors2")
9264 (license license:boost1.0))))
9265
9266(define-public cl-colors2
9267 (sbcl-package->cl-source-package sbcl-cl-colors2))
9268
9269(define-public ecl-cl-colors2
9270 (sbcl-package->ecl-package sbcl-cl-colors2))
d5f63a73
GLV
9271
9272(define-public sbcl-cl-jpeg
9273 (let ((commit "ec557038128df6895fbfb743bfe8faf8ec2534af")
9274 (revision "1"))
9275 (package
9276 (name "sbcl-cl-jpeg")
9277 (version (git-version "2.8" revision commit))
9278 (source
9279 (origin
9280 (method git-fetch)
9281 (uri (git-reference
b0e7b699 9282 (url "https://github.com/sharplispers/cl-jpeg")
d5f63a73
GLV
9283 (commit commit)))
9284 (file-name (git-file-name name version))
9285 (sha256
9286 (base32 "1bkkiqz8fqldlj1wbmrccjsvxcwj98h6s4b6gslr3cg2wmdv5xmy"))))
9287 (build-system asdf-build-system/sbcl)
9288 (synopsis "JPEG image library for Common Lisp")
9289 (description
9290 "This is a baseline JPEG codec written in Common Lisp. It can be used
9291for reading and writing JPEG image files.")
9292 (home-page "https://github.com/sharplispers/cl-jpeg")
9293 (license license:bsd-3))))
9294
9295(define-public cl-jpeg
9296 (sbcl-package->cl-source-package sbcl-cl-jpeg))
9297
9298(define-public ecl-cl-jpeg
9299 (sbcl-package->ecl-package sbcl-cl-jpeg))
227aeeb6 9300
1cef75fa
SH
9301(define-public sbcl-png
9302 (let ((commit "11b965fe378fd0561abe3616b18ff03af5179648")
9303 (revision "1"))
9304 (package
9305 (name "sbcl-png")
9306 (version (git-version "0.6" revision commit))
9307 (source
9308 (origin
9309 (method git-fetch)
9310 (uri (git-reference
9311 (url "https://github.com/ljosa/cl-png")
9312 (commit commit)))
9313 (file-name (git-file-name "cl-png" version))
9314 (sha256
9315 (base32 "173hqwpd0rwqf95mfx1h9l9c3i8bb0gvnpspzmmz3g5x3440czy4"))))
9316 (build-system asdf-build-system/sbcl)
9317 (arguments
9318 `(#:phases
9319 (modify-phases %standard-phases
9320 (add-after 'unpack 'fix-lib-paths
9321 (lambda* (#:key inputs #:allow-other-keys)
9322 (substitute* "libpng.lisp"
9323 (("\"libpng\"")
9324 (string-append "\""
9325 (assoc-ref inputs "libpng")
9326 "/lib/libpng\""))))))))
9327 (inputs
9328 `(("cffi" ,sbcl-cffi)
9329 ("libpng" ,libpng)))
9330 (home-page "https://github.com/ljosa/cl-png")
9331 (synopsis "Read and write PNG file format")
9332 (description
9333 "This package provides a @code{PNG} Common Lisp system to operate with
9334Portable Network Graphics file format.")
9335 (license license:lgpl2.1))))
9336
9337(define-public ecl-png
9338 (sbcl-package->ecl-package sbcl-png))
9339
9340(define-public cl-png
9341 (sbcl-package->cl-source-package sbcl-png))
9342
f7b45ede
SH
9343(define-public sbcl-cl-svg
9344 (let ((commit "1e988ebd2d6e2ee7be4744208828ef1b59e5dcdc")
9345 (revision "1"))
9346 (package
9347 (name "sbcl-cl-svg")
9348 (version (git-version "0.0.3" revision commit))
9349 (source
9350 (origin
9351 (method git-fetch)
9352 (uri (git-reference
9353 (url "https://github.com/wmannis/cl-svg")
9354 (commit commit)))
9355 (file-name (git-file-name "cl-svg" version))
9356 (sha256
9357 (base32 "11rmzimy6j7ln7q5y1h2kw1225rsfb6fpn89qjcq7h5lc8fay0wz"))))
9358 (build-system asdf-build-system/sbcl)
9359 (home-page "https://github.com/wmannis/cl-svg")
9360 (synopsis "Write SVG file format")
9361 (description
9362 "This package provides the @code{CL-SVG} Common Lisp system to produce
9363Scalable Vector Graphics files.")
9364 (license license:expat))))
9365
9366(define-public ecl-cl-svg
9367 (sbcl-package->ecl-package sbcl-cl-svg))
9368
9369(define-public cl-svg
9370 (sbcl-package->cl-source-package sbcl-cl-svg))
9371
227aeeb6 9372(define-public sbcl-nodgui
4c3a003a 9373 (let ((commit "4a9c2e7714b278fbe97d198c56f54ea87290001d")
227aeeb6
GLV
9374 (revision "1"))
9375 (package
9376 (name "sbcl-nodgui")
4c3a003a 9377 (version (git-version "0.1.1" revision commit))
227aeeb6
GLV
9378 (source
9379 (origin
9380 (method git-fetch)
9381 (uri (git-reference
9382 (url "https://notabug.org/cage/nodgui.git")
9383 (commit commit)))
4c3a003a 9384 (file-name (git-file-name "nodgui" version))
227aeeb6 9385 (sha256
4c3a003a 9386 (base32 "1vgzzw459h32v2mi41cia6i940jqmvxlc8w3xj3516hbc2mqkaib"))))
227aeeb6
GLV
9387 (build-system asdf-build-system/sbcl)
9388 (inputs
9389 `(("alexandria" ,sbcl-alexandria)
9390 ("bordeaux-threads" ,sbcl-bordeaux-threads)
9391 ("cl-colors2" ,sbcl-cl-colors2)
9392 ("cl-jpeg" ,sbcl-cl-jpeg)
9393 ("cl-lex" ,sbcl-cl-lex)
9394 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)
9395 ("cl-unicode" ,sbcl-cl-unicode)
9396 ("cl-yacc" ,sbcl-cl-yacc)
9397 ("clunit2" ,sbcl-clunit2)
9398 ("named-readtables" ,sbcl-named-readtables)
9399 ("parse-number" ,sbcl-parse-number)
9400 ("tk" ,tk)))
9401 (arguments
9402 `(#:phases (modify-phases %standard-phases
9403 (add-after 'unpack 'fix-paths
9404 (lambda* (#:key inputs #:allow-other-keys)
9405 (substitute* "src/wish-communication.lisp"
9406 (("#-freebsd \"wish\"")
9407 (string-append "#-freebsd \""
9408 (assoc-ref inputs "tk")
9409 "/bin/wish\"")))
9410 #t)))))
9411 (synopsis "Common Lisp bindings for the Tk GUI toolkit")
9412 (description
9413 "Nodgui (@emph{No Drama GUI}) is a Common Lisp binding for the Tk GUI
9414toolkit. It also provides a few additional widgets more than the standard Tk
9415ones.")
9416 (home-page "https://www.autistici.org/interzona/nodgui.html")
9417 (license license:llgpl))))
9418
9419(define-public cl-nodgui
9420 (sbcl-package->cl-source-package sbcl-nodgui))
9421
9422(define-public ecl-nodgui
9423 (sbcl-package->ecl-package sbcl-nodgui))
46cc2a38
GLV
9424
9425(define-public sbcl-salza2
9426 (package
9427 (name "sbcl-salza2")
9428 (version "2.0.9")
9429 (source
9430 (origin
9431 (method git-fetch)
9432 (uri (git-reference
b0e7b699 9433 (url "https://github.com/xach/salza2")
46cc2a38
GLV
9434 (commit (string-append "release-" version))))
9435 (file-name (git-file-name name version))
9436 (sha256
9437 (base32 "0p38rj4gq7j5k807php7hrz7l2zyyfshv8i9yms7i8lkgg3433ki"))))
9438 (build-system asdf-build-system/sbcl)
9439 (synopsis "Common Lisp library for zlib, deflate and gzip compression")
9440 (description
9441 "Salza2 is a Common Lisp library for creating compressed data in the zlib,
9442deflate, or gzip data formats, described in RFC 1950, RFC 1951, and RFC 1952,
9443respectively.")
9444 (home-page "https://www.xach.com/lisp/salza2/")
9445 (license license:bsd-2)))
9446
9447(define-public cl-salza2
9448 (sbcl-package->cl-source-package sbcl-salza2))
9449
9450(define-public ecl-salza2
9451 (sbcl-package->ecl-package sbcl-salza2))
28b307b0
SH
9452
9453(define-public sbcl-origin
9454 (let ((commit "d646134302456408d6d43580bb05299f1695ab8e")
9455 (revision "1"))
9456 (package
9457 (name "sbcl-origin")
9458 (version (git-version "2.0.0" revision commit))
9459 (source
9460 (origin
9461 (method git-fetch)
9462 (uri (git-reference
9463 (url "https://git.mfiano.net/mfiano/origin")
9464 (commit commit)))
9465 (file-name (git-file-name "origin" version))
9466 (sha256
9467 (base32 "1n9aszaif3yh8prs5r8v51fbj4r5jd1a048mivd5yij3hplkm82b"))))
9468 (build-system asdf-build-system/sbcl)
9469 (native-inputs
9470 `(("parachute" ,sbcl-parachute)))
9471 (inputs
9472 `(("golden-utils" ,sbcl-golden-utils)
9473 ("specialization-store" ,sbcl-specialization-store)))
9474 (home-page "https://git.mfiano.net/mfiano/origin")
9475 (synopsis "Common Lisp graphics math library")
9476 (description
9477 "This is a native Common Lisp graphics math library with an emphasis on
9478performance and correctness.")
9479 (license license:expat))))
9480
9481(define-public ecl-origin
9482 (sbcl-package->ecl-package sbcl-origin))
9483
9484(define-public cl-origin
9485 (sbcl-package->cl-source-package sbcl-origin))
d165821e
GLV
9486
9487(define-public sbcl-png-read
9488 (let ((commit "ec29f38a689972b9f1373f13bbbcd6b05deada88")
9489 (revision "1"))
9490 (package
9491 (name "sbcl-png-read")
9492 (version (git-version "0.3.1" revision commit))
9493 (source
9494 (origin
9495 (method git-fetch)
9496 (uri (git-reference
b0e7b699 9497 (url "https://github.com/Ramarren/png-read")
d165821e
GLV
9498 (commit commit)))
9499 (file-name (git-file-name name version))
9500 (sha256
9501 (base32 "0vyczbcwskrygrf1hgrsnk0jil8skmvf1kiaalw5jps4fjrfdkw0"))))
9502 (build-system asdf-build-system/sbcl)
9503 (inputs
9504 `(("babel" ,sbcl-babel)
9505 ("chipz" ,sbcl-chipz)
9506 ("iterate" ,sbcl-iterate)))
9507 (synopsis "PNG decoder for Common Lisp")
9508 (description "This is a Common Lisp library for reading PNG images.")
9509 (home-page "https://github.com/Ramarren/png-read")
9510 (license license:bsd-3))))
9511
9512(define-public cl-png-read
9513 (sbcl-package->cl-source-package sbcl-png-read))
9514
9515(define-public ecl-png-read
9516 (sbcl-package->ecl-package sbcl-png-read))
7b875e4e 9517
633e4416
SH
9518(define-public sbcl-3b-bmfont
9519 (let ((commit "d1b5bec0de580c2d08ec947a93c56b1400f2a37a")
9520 (revision "1"))
9521 (package
9522 (name "sbcl-3b-bmfont")
9523 (version (git-version "0.0.1" revision commit))
9524 (source
9525 (origin
9526 (method git-fetch)
9527 (uri (git-reference
9528 (url "https://github.com/3b/3b-bmfont/")
9529 (commit commit)))
9530 (file-name (git-file-name "3b-bmfont" version))
9531 (sha256
9532 (base32 "12sgf7m0h6fqzhvkas7vmci6mprj3j3fnz778jlbqbsydln6v2yc"))))
9533 (build-system asdf-build-system/sbcl)
9534 (arguments
9535 `(#:asd-systems
9536 '("3b-bmfont"
9537 "3b-bmfont/text"
9538 "3b-bmfont/common"
9539 "3b-bmfont/xml"
9540 "3b-bmfont/json")))
9541 (inputs
9542 `(("alexandria" ,sbcl-alexandria)
9543 ("cxml" ,sbcl-cxml)
9544 ("flexi-streams" ,sbcl-flexi-streams)
9545 ("jsown" ,sbcl-jsown)
9546 ("split-sequence" ,sbcl-split-sequence)))
9547 (home-page "https://github.com/3b/3b-bmfont/")
9548 (synopsis "Read/write bmfont metadata files")
9549 (description
9550 "This is a Common Lisp library which provides functionality to
9551read/write Bit Map Font (BMF) into text, JSON and XML.")
9552 (license license:expat))))
9553
9554(define-public ecl-3b-bmfont
9555 (sbcl-package->ecl-package sbcl-3b-bmfont))
9556
9557(define-public cl-3b-bmfont
9558 (sbcl-package->cl-source-package sbcl-3b-bmfont))
9559
7b875e4e
GLV
9560(define-public sbcl-zpng
9561 (package
9562 (name "sbcl-zpng")
9563 (version "1.2.2")
9564 (source
9565 (origin
9566 (method git-fetch)
9567 (uri (git-reference
b0e7b699 9568 (url "https://github.com/xach/zpng")
7b875e4e
GLV
9569 (commit (string-append "release-" version))))
9570 (file-name (git-file-name name version))
9571 (sha256
9572 (base32 "0b3ag3jhl3z7kdls3ahdsdxsfhhw5qrizk769984f4wkxhb69rcm"))))
9573 (build-system asdf-build-system/sbcl)
9574 (inputs
9575 `(("salza2" ,sbcl-salza2)))
9576 (synopsis "PNG encoder for Common Lisp")
9577 (description "This is a Common Lisp library for creating PNG images.")
9578 (home-page "https://www.xach.com/lisp/zpng/")
9579 (license license:bsd-2)))
9580
9581(define-public cl-zpng
9582 (sbcl-package->cl-source-package sbcl-zpng))
9583
9584(define-public ecl-zpng
9585 (sbcl-package->ecl-package sbcl-zpng))
5d4d4c01
GLV
9586
9587(define-public sbcl-cl-qrencode
9588 (package
9589 (name "sbcl-cl-qrencode")
9590 (version "0.1.2")
9591 (source
9592 (origin
9593 (method git-fetch)
9594 (uri (git-reference
b0e7b699 9595 (url "https://github.com/jnjcc/cl-qrencode")
5d4d4c01
GLV
9596 (commit (string-append "v" version))))
9597 (file-name (git-file-name name version))
9598 (sha256
9599 (base32 "1l5k131dchbf6cj8a8xqa731790p01p3qa1kdy2wa9dawy3ymkxr"))))
9600 (build-system asdf-build-system/sbcl)
9601 (native-inputs
9602 `(("lisp-unit" ,sbcl-lisp-unit)))
9603 (inputs
9604 `(("zpng" ,sbcl-zpng)))
9605 (synopsis "QR code encoder for Common Lisp")
9606 (description
9607 "This Common Lisp library provides function to make QR codes and to save
9608them as PNG files.")
9609 (home-page "https://github.com/jnjcc/cl-qrencode")
9610 (license license:gpl2+)))
9611
9612(define-public cl-qrencode
9613 (sbcl-package->cl-source-package sbcl-cl-qrencode))
9614
9615(define-public ecl-cl-qrencode
9616 (sbcl-package->ecl-package sbcl-cl-qrencode))
c6397e3e
KH
9617
9618(define-public sbcl-hdf5-cffi
9619 (let ((commit "5b5c88f191e470e4fe96b462334e3ce0806eed5c")
9620 (revision "1"))
9621 (package
9622 (name "sbcl-hdf5-cffi")
9623 (version (git-version "1.8.18" revision commit))
9624 (source
9625 (origin
9626 (method git-fetch)
9627 (uri (git-reference
b0e7b699 9628 (url "https://github.com/hdfgroup/hdf5-cffi")
c6397e3e
KH
9629 (commit commit)))
9630 (file-name (git-file-name name version))
9631 (sha256
9632 (base32
9633 "0vda3075423xz83qky998lpac5b04dwfv7bwgh9jq8cs5v0zrxjf"))))
9634 (build-system asdf-build-system/sbcl)
9635 (synopsis "Common Lisp bindings for the HDF5 library")
9636 (description
9637 "@code{hdf5-cffi} is a CFFI wrapper for the HDF5 library.")
9638 (home-page "https://github.com/hdfgroup/hdf5-cffi")
9639 (license (license:non-copyleft
9640 (string-append "https://github.com/HDFGroup/hdf5-cffi/raw/"
9641 commit
9642 "/LICENSE")))
9643 (inputs
9644 `(("cffi" ,sbcl-cffi)
c6397e3e
KH
9645 ("hdf5" ,hdf5-1.10)))
9646 (native-inputs
9647 `(("fiveam" ,sbcl-fiveam)))
9648 (arguments
e765d9c9 9649 `(#:test-asd-file "hdf5-cffi.test.asd"
c6397e3e
KH
9650 ;; Tests depend on hdf5-cffi.examples.asd in addition to hdf5-cffi.asd,
9651 ;; I don't know if there is a way to tell asdf-build-system to load
9652 ;; an additional system first, so tests are disabled.
9653 #:tests? #f
9654 #:phases
9655 (modify-phases %standard-phases
9656 (add-after 'unpack 'fix-paths
9657 (lambda* (#:key inputs #:allow-other-keys)
9658 (substitute* "src/library.lisp"
9659 (("libhdf5.so")
9660 (string-append
9661 (assoc-ref inputs "hdf5")
9662 "/lib/libhdf5.so")))))
9663 (add-after 'unpack 'fix-dependencies
9664 (lambda* (#:key inputs #:allow-other-keys)
9665 (substitute* "hdf5-cffi.asd"
9666 ((":depends-on \\(:cffi\\)")
9667 ":depends-on (:cffi :cffi-grovel)"))
9668 (substitute* "hdf5-cffi.test.asd"
9669 ((":depends-on \\(:cffi :hdf5-cffi")
9670 ":depends-on (:cffi :cffi-grovel :hdf5-cffi"))))))))))
9671
9672(define-public cl-hdf5-cffi
9673 (sbcl-package->cl-source-package sbcl-hdf5-cffi))
9674
9675(define-public ecl-hdf5-cffi
9676 (sbcl-package->ecl-package sbcl-hdf5-cffi))
c6e6254a
KH
9677
9678(define-public sbcl-cl-randist
9679 (package
9680 (name "sbcl-cl-randist")
9681 (version "0.4.2")
9682 (source
9683 (origin
9684 (method git-fetch)
9685 (uri (git-reference
b0e7b699 9686 (url "https://github.com/lvaruzza/cl-randist")
c6e6254a
KH
9687 (commit "f088a54b540a7adefab7c04094a6103f9edda3d0")))
9688 (file-name (git-file-name name version))
9689 (sha256
9690 (base32
9691 "0l8hyd6nbxb7f50vyxz3rbbm7kgr1fnadc40jywy4xj5vi5kpj5g"))))
9692 (build-system asdf-build-system/sbcl)
9693 (synopsis "Random distributions for Common Lisp")
9694 (description
9695 "Manual translation from C to Common Lisp of some random number
9696generation functions from the GSL library.")
9697 (home-page "https://github.com/lvaruzza/cl-randist")
9698 (license license:bsd-2)
9699 (arguments
e765d9c9 9700 `(#:tests? #f))))
c6e6254a
KH
9701
9702(define-public cl-randist
9703 (sbcl-package->cl-source-package sbcl-cl-randist))
9704
9705(define-public ecl-cl-randist
9706 (sbcl-package->ecl-package sbcl-cl-randist))
41884bfa
KH
9707
9708(define-public sbcl-float-features
9709 (package
9710 (name "sbcl-float-features")
9711 (version "1.0.0")
9712 (source
9713 (origin
9714 (method git-fetch)
9715 (uri (git-reference
b0e7b699 9716 (url "https://github.com/Shinmera/float-features")
41884bfa
KH
9717 (commit "d3ef60181635b0849aa28cfc238053b7ca4644b0")))
9718 (file-name (git-file-name name version))
9719 (sha256
9720 (base32
9721 "0yj419k7n59x6rh3grwr6frgwwyria2il6f7wxpfazm8cskv4lzr"))))
9722 (build-system asdf-build-system/sbcl)
9723 (synopsis "Common Lisp IEEE float portability library")
9724 (description
9725 "Portability library for IEEE float features that are not
9726covered by the Common Lisp standard.")
9727 (home-page "https://github.com/Shinmera/float-features")
9728 (license license:zlib)
9729 (inputs
9730 `(("documentation-utils" ,sbcl-documentation-utils)))
9731 (arguments
e765d9c9 9732 `(#:tests? #f))))
41884bfa
KH
9733
9734(define-public cl-float-features
9735 (sbcl-package->cl-source-package sbcl-float-features))
9736
9737(define-public ecl-float-features
9738 (sbcl-package->ecl-package sbcl-float-features))
06327c30
KH
9739
9740(define-public sbcl-function-cache
9741 (package
9742 (name "sbcl-function-cache")
9743 (version "1.0.3")
9744 (source
9745 (origin
9746 (method git-fetch)
9747 (uri (git-reference
b0e7b699 9748 (url "https://github.com/AccelerationNet/function-cache")
06327c30
KH
9749 (commit "6a5ada401e57da2c8abf046f582029926e61fce8")))
9750 (file-name (git-file-name name version))
9751 (sha256
9752 (base32
9753 "000vmd3f5rx5hs9nvphfric0gkzaadns31c6mxaslpv0k7pkrmc6"))))
9754 (build-system asdf-build-system/sbcl)
9755 (synopsis "Function caching / memoization library for Common Lisp")
9756 (description
9757 "A common lisp library that provides extensible function result
9758caching based on arguments (an expanded form of memoization).")
9759 (home-page "https://github.com/AccelerationNet/function-cache")
9760 (license
9761 (license:non-copyleft
9762 "https://github.com/AccelerationNet/function-cache/blob/master/README.md"))
9763 (inputs
9764 `(("alexandria" ,sbcl-alexandria)
9765 ("cl-interpol" ,sbcl-cl-interpol)
9766 ("iterate" ,sbcl-iterate)
9767 ("symbol-munger" ,sbcl-symbol-munger)
9768 ("closer-mop" ,sbcl-closer-mop)))
9769 (arguments
e765d9c9 9770 `(#:tests? #f))))
06327c30
KH
9771
9772(define-public cl-function-cache
9773 (sbcl-package->cl-source-package sbcl-function-cache))
9774
9775(define-public ecl-function-cache
9776 (sbcl-package->ecl-package sbcl-function-cache))
e4f7ef87
KH
9777
9778(define-public sbcl-type-r
9779 (let ((commit "83c89e38f2f7a7b16f1012777ecaf878cfa6a267")
9780 (revision "1"))
9781 (package
9782 (name "sbcl-type-r")
9783 (version (git-version "0.0.0" revision commit))
9784 (source
9785 (origin
9786 (method git-fetch)
9787 (uri (git-reference
b0e7b699 9788 (url "https://github.com/guicho271828/type-r")
e4f7ef87
KH
9789 (commit commit)))
9790 (file-name (git-file-name name version))
9791 (sha256
9792 (base32
9793 "1arsxc2539rg8vbrdirz4xxj1b06mc6g6rqndz7a02g127qvk2sm"))))
9794 (build-system asdf-build-system/sbcl)
9795 (synopsis "Parser interface for Common Lisp built-in compound types")
9796 (description
9797 "Collections of accessor functions and patterns to access
9798the elements in compound type specifier, e.g. @code{dimensions} in
9799@code{(array element-type dimensions)}")
9800 (home-page "https://github.com/guicho271828/type-r")
9801 (license license:lgpl3+)
9802 (inputs
9803 `(("trivia" ,sbcl-trivia)
9804 ("alexandria" ,sbcl-alexandria)))
9805 (native-inputs
9806 `(("fiveam" ,sbcl-fiveam)))
9807 (arguments
e765d9c9 9808 `(#:test-asd-file "type-r.test.asd")))))
e4f7ef87
KH
9809
9810(define-public cl-type-r
9811 (sbcl-package->cl-source-package sbcl-type-r))
8926866e 9812
12df8b7b
GLV
9813(define-public ecl-type-r
9814 (sbcl-package->ecl-package sbcl-type-r))
9815
8926866e
KH
9816(define-public sbcl-trivialib-type-unify
9817 (let ((commit "62492ebf04db567dcf435ae84c50b7b8202ecf99")
9818 (revision "1"))
9819 (package
9820 (name "sbcl-trivialib-type-unify")
9821 (version (git-version "0.1" revision commit))
9822 (source
9823 (origin
9824 (method git-fetch)
9825 (uri (git-reference
b0e7b699 9826 (url "https://github.com/guicho271828/trivialib.type-unify")
8926866e
KH
9827 (commit commit)))
9828 (file-name (git-file-name name version))
9829 (sha256
9830 (base32
9831 "1bkyfzbwv75p50zp8n1n9rh2r29pw3vgz91gmn2gzzkyq3khj1vh"))))
9832 (build-system asdf-build-system/sbcl)
9833 (synopsis "Common Lisp type unification")
9834 (description
9835 "Unifies a parametrized type specifier against an actual type specifier.
9836Importantly, it handles complicated array-subtypes and number-related types
9837correctly.")
9838 (home-page "https://github.com/guicho271828/trivialib.type-unify")
9839 (license license:lgpl3+)
9840 (inputs
9841 `(("alexandria" ,sbcl-alexandria)
9842 ("trivia" ,sbcl-trivia)
9843 ("introspect-environment" ,sbcl-introspect-environment)
9844 ("type-r" ,sbcl-type-r)))
9845 (native-inputs
9846 `(("fiveam" ,sbcl-fiveam)))
9847 (arguments
2ff8b5ba 9848 `(#:asd-systems '("trivialib.type-unify")
8926866e
KH
9849 #:test-asd-file "trivialib.type-unify.test.asd")))))
9850
9851(define-public cl-trivialib-type-unify
9852 (sbcl-package->cl-source-package sbcl-trivialib-type-unify))
ca6c5c7f 9853
12df8b7b
GLV
9854(define-public ecl-trivialib-type-unify
9855 (sbcl-package->ecl-package sbcl-trivialib-type-unify))
9856
ca6c5c7f 9857(define-public sbcl-specialized-function
e95a6311
GLV
9858 (let ((commit "dee56d2d2b6ecd10500ad291c56217698604ec35")
9859 (revision "2"))
ca6c5c7f
KH
9860 (package
9861 (name "sbcl-specialized-function")
9862 (version (git-version "0.0.0" revision commit))
9863 (source
9864 (origin
9865 (method git-fetch)
9866 (uri (git-reference
b0e7b699 9867 (url "https://github.com/numcl/specialized-function")
ca6c5c7f
KH
9868 (commit commit)))
9869 (file-name (git-file-name name version))
9870 (sha256
e95a6311 9871 (base32 "1mcc7mmpbnmgnr1cl2jl5r1ai54gn7fbisv2c14sh9za5w4sib82"))))
ca6c5c7f
KH
9872 (build-system asdf-build-system/sbcl)
9873 (synopsis "Julia-like dispatch for Common Lisp")
9874 (description
9875 "This library is part of NUMCL. It provides a macro
9876@code{SPECIALIZED} that performs a Julia-like dispatch on the arguments,
9877lazily compiling a type-specific version of the function from the same
9878code. The main target of this macro is speed.")
9879 (home-page "https://github.com/numcl/specialized-function")
9880 (license license:lgpl3+)
9881 (inputs
9882 `(("trivia" ,sbcl-trivia)
9883 ("alexandria" ,sbcl-alexandria)
9884 ("iterate" ,sbcl-iterate)
9885 ("lisp-namespace" ,sbcl-lisp-namespace)
9886 ("type-r" ,sbcl-type-r)
9887 ("trivial-cltl2" ,sbcl-trivial-cltl2)))
9888 (native-inputs
9889 `(("fiveam" ,sbcl-fiveam)))
9890 (arguments
e765d9c9 9891 `(#:asd-files '("specialized-function.asd")
26e92b7e
GLV
9892 #:test-asd-file "specialized-function.test.asd"
9893 ;; Tests fail because they try to use an internal symbol of SBCL
9894 ;; that does not exists in recent versions:
9895 ;; "The variable SB-VM:COMPLEX-VECTOR-NIL-WIDETAG is unbound."
9896 #:tests? #f)))))
ca6c5c7f
KH
9897
9898(define-public cl-specialized-function
9899 (sbcl-package->cl-source-package sbcl-specialized-function))
6e0f2b95 9900
e95a6311
GLV
9901(define-public ecl-specialized-function
9902 (sbcl-package->ecl-package sbcl-specialized-function))
9903
6e0f2b95
KH
9904(define-public sbcl-constantfold
9905 (let ((commit "0ff1d97a3fbcb89264f6a2af6ce62b73e7b421f4")
9906 (revision "1"))
9907 (package
9908 (name "sbcl-constantfold")
9909 (version (git-version "0.1" revision commit))
9910 (source
9911 (origin
9912 (method git-fetch)
9913 (uri (git-reference
b0e7b699 9914 (url "https://github.com/numcl/constantfold")
6e0f2b95
KH
9915 (commit commit)))
9916 (file-name (git-file-name name version))
9917 (sha256
9918 (base32
9919 "153h0569z6bff1qbad0bdssplwwny75l7ilqwcfqfdvzsxf9jh06"))))
9920 (build-system asdf-build-system/sbcl)
9921 (synopsis "Support library for numcl")
9922 (description
9923 "Support library for numcl. Registers a function as an
9924additional form that is considered as a candidate for a constant.")
9925 (home-page "https://github.com/numcl/constantfold")
9926 (license license:lgpl3+)
9927 (inputs
9928 `(("trivia" ,sbcl-trivia)
9929 ("alexandria" ,sbcl-alexandria)
9930 ("iterate" ,sbcl-iterate)
9931 ("lisp-namespace" ,sbcl-lisp-namespace)))
9932 (native-inputs
9933 `(("fiveam" ,sbcl-fiveam)))
9934 (arguments
e765d9c9 9935 `(#:asd-files '("constantfold.asd")
6e0f2b95
KH
9936 #:test-asd-file "constantfold.test.asd")))))
9937
9938(define-public cl-constantfold
9939 (sbcl-package->cl-source-package sbcl-constantfold))
5ce7d186 9940
12df8b7b
GLV
9941(define-public ecl-constantfold
9942 (sbcl-package->ecl-package sbcl-constantfold))
9943
5ce7d186 9944(define-public sbcl-gtype
e4c03dd5
GLV
9945 (let ((commit "2442e32485635525af278ebd8fa69a27d5b8cf18")
9946 (revision "2"))
5ce7d186
KH
9947 (package
9948 (name "sbcl-gtype")
9949 (version (git-version "0.1" revision commit))
9950 (source
9951 (origin
9952 (method git-fetch)
9953 (uri (git-reference
b0e7b699 9954 (url "https://github.com/numcl/gtype")
5ce7d186
KH
9955 (commit commit)))
9956 (file-name (git-file-name name version))
9957 (sha256
e4c03dd5 9958 (base32 "0hbkfdw00v7bsa6zbric34p5w6hfwxycccg8wc2faq0cxhsvpv9h"))))
5ce7d186
KH
9959 (build-system asdf-build-system/sbcl)
9960 (synopsis "C++/Julia-like parametric types in Common Lisp")
9961 (description
9962 "Support library for numcl that provides Julia-like runtime parametric
9963type correctness in Common Lisp. It is based on CLtL2 extensions.")
9964 (home-page "https://github.com/numcl/gtype")
9965 (license license:lgpl3+)
9966 (inputs
9967 `(("trivialib.type-unify" ,sbcl-trivialib-type-unify)
9968 ("trivial-cltl2" ,sbcl-trivial-cltl2)
9969 ("trivia" ,sbcl-trivia)
9970 ("alexandria" ,sbcl-alexandria)
9971 ("iterate" ,sbcl-iterate)
9972 ("type-r" ,sbcl-type-r)))
9973 (native-inputs
9974 `(("fiveam" ,sbcl-fiveam)))
9975 (arguments
e765d9c9 9976 `(#:asd-files '("gtype.asd")
5ce7d186
KH
9977 #:test-asd-file "gtype.test.asd")))))
9978
9979(define-public cl-gtype
9980 (sbcl-package->cl-source-package sbcl-gtype))
7ad12200 9981
e4c03dd5
GLV
9982(define-public ecl-gtype
9983 (let ((pkg (sbcl-package->ecl-package sbcl-gtype)))
9984 (package
9985 (inherit pkg)
9986 (arguments
9987 (substitute-keyword-arguments (package-arguments pkg)
9988 ;; The tests fail on ECL with a COMPILE-FILE-ERROR for t/package.lisp.
9989 ((#:tests? _ #f) #f))))))
9990
7ad12200 9991(define-public sbcl-numcl
75a4c831
SH
9992 (let ((commit "d19f36356be900c600ef08560c9e1af441a166cb")
9993 (revision "1"))
7ad12200
KH
9994 (package
9995 (name "sbcl-numcl")
75a4c831 9996 (version (git-version "0.2.0" revision commit))
7ad12200
KH
9997 (source
9998 (origin
9999 (method git-fetch)
10000 (uri (git-reference
b0e7b699 10001 (url "https://github.com/numcl/numcl")
7ad12200 10002 (commit commit)))
75a4c831 10003 (file-name (git-file-name "numcl" version))
7ad12200 10004 (sha256
75a4c831 10005 (base32 "0q4ylfr7hl0gz2ynr0c15h09dmnli2x6ndnm5wr58wfplf1wfj31"))))
7ad12200 10006 (build-system asdf-build-system/sbcl)
75a4c831
SH
10007 (arguments
10008 `(#:test-asd-file "numcl.test.asd"
10009 #:asd-files '("numcl.asd")))
10010 (native-inputs
10011 `(("fiveam" ,sbcl-fiveam)))
7ad12200 10012 (inputs
75a4c831 10013 `(("alexandria" ,sbcl-alexandria)
7ad12200 10014 ("cl-randist" ,sbcl-cl-randist)
75a4c831 10015 ("constantfold" ,sbcl-constantfold)
7ad12200
KH
10016 ("float-features" ,sbcl-float-features)
10017 ("function-cache" ,sbcl-function-cache)
75a4c831
SH
10018 ("gtype" ,sbcl-gtype)
10019 ("iterate" ,sbcl-iterate)
10020 ("lisp-namespace" ,sbcl-lisp-namespace)
7ad12200 10021 ("specialized-function" ,sbcl-specialized-function)
75a4c831
SH
10022 ("trivia" ,sbcl-trivia)
10023 ("type-r" ,sbcl-type-r)))
10024 (home-page "https://numcl.github.io/numcl/")
10025 (synopsis "Numpy clone in Common Lisp")
10026 (description
10027 "This package is a Python Numpy clone implemented in pure Common Lisp.")
10028 (license license:lgpl3+))))
7ad12200
KH
10029
10030(define-public cl-numcl
10031 (sbcl-package->cl-source-package sbcl-numcl))
a3f6c410 10032
4287ee69 10033(define-public ecl-numcl
bed78cde 10034 (sbcl-package->ecl-package sbcl-numcl))
4287ee69 10035
a3f6c410
GLV
10036(define-public sbcl-pzmq
10037 (let ((commit "7c7390eedc469d033c72dc497984d1536ee75826")
10038 (revision "1"))
10039 (package
10040 (name "sbcl-pzmq")
10041 (version (git-version "0.0.0" revision commit))
10042 (source
10043 (origin
10044 (method git-fetch)
10045 (uri (git-reference
b0e7b699 10046 (url "https://github.com/orivej/pzmq")
a3f6c410
GLV
10047 (commit commit)))
10048 (file-name (git-file-name name version))
10049 (sha256
10050 (base32 "0gmwzf7h90wa7v4wnk49g0hv2mdalljpwhyigxcb967wzv8lqci9"))))
10051 (build-system asdf-build-system/sbcl)
10052 (native-inputs
10053 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
10054 ("fiveam" ,sbcl-fiveam)
10055 ("let-plus" ,sbcl-let-plus)))
10056 (inputs
10057 `(("cffi" ,sbcl-cffi)
a3f6c410
GLV
10058 ("zeromq" ,zeromq)))
10059 (arguments
10060 `(#:phases (modify-phases %standard-phases
10061 (add-after 'unpack 'fix-paths
10062 (lambda* (#:key inputs #:allow-other-keys)
10063 (substitute* "c-api.lisp"
10064 (("\"libzmq")
10065 (string-append "\""
10066 (assoc-ref inputs "zeromq")
10067 "/lib/libzmq")))
10068 #t)))))
10069 (synopsis "Common Lisp bindings for the ZeroMQ library")
10070 (description "This Common Lisp library provides bindings for the ZeroMQ
10071lightweight messaging kernel.")
10072 (home-page "https://github.com/orivej/pzmq")
10073 (license license:unlicense))))
10074
10075(define-public cl-pzmq
10076 (sbcl-package->cl-source-package sbcl-pzmq))
10077
10078(define-public ecl-pzmq
10079 (sbcl-package->ecl-package sbcl-pzmq))
cfc9004e
DD
10080
10081(define-public sbcl-clss
10082 (let ((revision "1")
10083 (commit "2a8e8615ab55870d4ca01928f3ed3bbeb4e75c8d"))
10084 (package
10085 (name "sbcl-clss")
10086 (version (git-version "0.3.1" revision commit))
10087 (source
10088 (origin
10089 (method git-fetch)
10090 (uri
10091 (git-reference
b0e7b699 10092 (url "https://github.com/Shinmera/clss")
cfc9004e
DD
10093 (commit commit)))
10094 (sha256
10095 (base32 "0la4dbcda78x29szanylccrsljqrn9d1mhh569sqkyp44ni5fv91"))
10096 (file-name (git-file-name name version))))
10097 (inputs
10098 `(("array-utils" ,sbcl-array-utils)
10099 ("plump" ,sbcl-plump)))
10100 (build-system asdf-build-system/sbcl)
10101 (synopsis "DOM tree searching engine based on CSS selectors")
10102 (description "CLSS is a DOM traversal engine based on CSS
10103selectors. It makes use of the Plump-DOM and is used by lQuery.")
10104 (home-page "https://github.com/Shinmera/clss")
10105 (license license:zlib))))
10106
10107(define-public cl-clss
10108 (sbcl-package->cl-source-package sbcl-clss))
10109
10110(define-public ecl-clss
10111 (sbcl-package->ecl-package sbcl-clss))
eb859957
DD
10112
10113(define-public sbcl-lquery
10114 (let ((revision "1")
10115 (commit "8048111c6b83956daa632e7a3ffbd8c9c203bd8d"))
10116 (package
10117 (name "sbcl-lquery")
10118 (version (git-version "3.2.1" revision commit))
10119 (source
10120 (origin
10121 (method git-fetch)
10122 (uri
10123 (git-reference
b0e7b699 10124 (url "https://github.com/Shinmera/lquery")
eb859957
DD
10125 (commit commit)))
10126 (sha256
10127 (base32 "0520mcpxc2d6fdm8z61arpgd2z38kan7cf06qs373n5r64rakz6w"))
10128 (file-name (git-file-name name version))))
10129 (native-inputs
10130 `(("fiveam" ,sbcl-fiveam)))
10131 (inputs
10132 `(("array-utils" ,sbcl-array-utils)
10133 ("form-fiddle" ,sbcl-form-fiddle)
10134 ("plump" ,sbcl-plump)
10135 ("clss" ,sbcl-clss)))
10136 (build-system asdf-build-system/sbcl)
10137 (synopsis "Library to allow jQuery-like HTML/DOM manipulation")
10138 (description "@code{lQuery} is a DOM manipulation library written in
10139Common Lisp, inspired by and based on the jQuery syntax and
10140functions. It uses Plump and CLSS as DOM and selector engines. The
10141main idea behind lQuery is to provide a simple interface for crawling
10142and modifying HTML sites, as well as to allow for an alternative
10143approach to templating.")
10144 (home-page "https://github.com/Shinmera/lquery")
10145 (license license:zlib))))
10146
10147(define-public cl-lquery
10148 (sbcl-package->cl-source-package sbcl-lquery))
10149
10150(define-public ecl-lquery
10151 (sbcl-package->ecl-package sbcl-lquery))
8a6c0f55
GLV
10152
10153(define-public sbcl-cl-mysql
10154 (let ((commit "ab56c279c1815aec6ca0bfe85164ff7e85cfb6f9")
10155 (revision "1"))
10156 (package
10157 (name "sbcl-cl-mysql")
10158 (version (git-version "0.1" revision commit))
10159 (source
10160 (origin
10161 (method git-fetch)
10162 (uri (git-reference
b0e7b699 10163 (url "https://github.com/hackinghat/cl-mysql")
8a6c0f55
GLV
10164 (commit commit)))
10165 (file-name (git-file-name name version))
10166 (sha256
10167 (base32 "0dg5ynx2ww94d0qfwrdrm7plkn43h64hs4iiq9mj2s1s4ixnp3lr"))))
10168 (build-system asdf-build-system/sbcl)
10169 (native-inputs
10170 `(("stefil" ,sbcl-stefil)))
10171 (inputs
10172 `(("cffi" ,sbcl-cffi)
10173 ("mariadb-lib" ,mariadb "lib")))
10174 (arguments
10175 `(#:tests? #f ; TODO: Tests require a running server
10176 #:phases
10177 (modify-phases %standard-phases
10178 (add-after 'unpack 'fix-paths
10179 (lambda* (#:key inputs #:allow-other-keys)
10180 (substitute* "system.lisp"
10181 (("libmysqlclient_r" all)
10182 (string-append (assoc-ref inputs "mariadb-lib")
10183 "/lib/"
10184 all)))
10185 #t)))))
10186 (synopsis "Common Lisp wrapper for MySQL")
10187 (description
10188 "@code{cl-mysql} is a Common Lisp implementation of a MySQL wrapper.")
10189 (home-page "http://www.hackinghat.com/index.php/cl-mysql")
10190 (license license:expat))))
10191
10192(define-public cl-mysql
10193 (sbcl-package->cl-source-package sbcl-cl-mysql))
c79ea1a2 10194
e7cbcf5a
GLV
10195(define-public ecl-cl-mysql
10196 (sbcl-package->ecl-package sbcl-cl-mysql))
10197
2ff8b5ba 10198(define-public sbcl-postmodern
9717250d
SH
10199 (package
10200 (name "sbcl-postmodern")
3db4a00d 10201 (version "1.32.9")
9717250d
SH
10202 (source
10203 (origin
10204 (method git-fetch)
10205 (uri (git-reference
10206 (url "https://github.com/marijnh/Postmodern")
10207 (commit (string-append "v" version))))
10208 (file-name (git-file-name name version))
10209 (sha256
3db4a00d 10210 (base32 "137jci4hn4vlxf48y39k0di27kc89kvxy3brmn3vl9xq56sy6mhz"))))
9717250d
SH
10211 (build-system asdf-build-system/sbcl)
10212 (native-inputs
10213 `(("fiveam" ,sbcl-fiveam)))
10214 (inputs
10215 `(("alexandria" ,sbcl-alexandria)
10216 ("bordeaux-threads" ,sbcl-bordeaux-threads)
10217 ("cl-base64" ,sbcl-cl-base64)
10218 ("cl-unicode" ,sbcl-cl-unicode)
10219 ("closer-mop" ,sbcl-closer-mop)
10220 ("global-vars" ,sbcl-global-vars)
10221 ("ironclad" ,sbcl-ironclad)
10222 ("local-time" ,sbcl-local-time)
10223 ("md5" ,sbcl-md5)
10224 ("split-sequence" ,sbcl-split-sequence)
10225 ("uax-15" ,sbcl-uax-15)
10226 ("usocket" ,sbcl-usocket)))
10227 (arguments
10228 ;; TODO: (Sharlatan-20210114T171037+0000) tests still failing but on other
10229 ;; step, some functionality in `local-time' prevents passing tests.
10230 ;; Error:
10231 ;;
10232 ;; Can't create directory
10233 ;; /gnu/store
10234 ;; /4f47agf1kyiz057ppy6x5p98i7mcbfsv-sbcl-local-time-1.0.6-2.a177eb9
10235 ;; /lib/common-lisp/sbcl/local-time/src/integration/
10236 ;;
82a9ed3e
SH
10237 ;; NOTE: (Sharlatan-20210124T191940+0000): When set env HOME to /tmp above
10238 ;; issue is resolved but it required live test database to connect to now.
10239 ;; Keep tests switched off.
9717250d
SH
10240 `(#:tests? #f
10241 #:asd-systems '("cl-postgres"
10242 "s-sql"
10243 "postmodern"
10244 "simple-date"
10245 "simple-date/postgres-glue")))
10246 (synopsis "Common Lisp library for interacting with PostgreSQL")
10247 (description
10248 "@code{postmodern} is a Common Lisp library for interacting with
add1a356
GLV
10249PostgreSQL databases. It provides the following features:
10250
10251@itemize
10252@item Efficient communication with the database server without need for
10253foreign libraries.
10254@item Support for UTF-8 on Unicode-aware Lisp implementations.
10255@item A syntax for mixing SQL and Lisp code.
10256@item Convenient support for prepared statements and stored procedures.
10257@item A metaclass for simple database-access objects.
9717250d
SH
10258@end itemize\n
10259
10260This package produces 4 systems: postmodern, cl-postgres, s-sql, simple-date
10261
10262@code{SIMPLE-DATE} is a very basic implementation of date and time objects, used
10263to support storing and retrieving time-related SQL types. It is not loaded by
10264default and you can use local-time (which has support for timezones) instead.
10265
10266@code{S-SQL} is used to compile s-expressions to strings of SQL code, escaping
10267any Lisp values inside, and doing as much as possible of the work at compile
10268time.
10269
10270@code{CL-POSTGRES} is the low-level library used for interfacing with a PostgreSQL
10271server over a socket.
10272
10273@code{POSTMODERN} itself is a wrapper around these packages and provides higher
10274level functions, a very simple data access object that can be mapped directly to
10275database tables and some convient utilities. It then tries to put all these
10276things together into a convenient programming interface")
10277 (home-page "https://marijnhaverbeke.nl/postmodern/")
10278 (license license:zlib)))
add1a356
GLV
10279
10280(define-public cl-postmodern
10281 (sbcl-package->cl-source-package sbcl-postmodern))
47a6cde0 10282
12df8b7b
GLV
10283(define-public ecl-postmodern
10284 (package
10285 (inherit (sbcl-package->ecl-package sbcl-postmodern))
10286 (arguments
10287 `(#:tests? #f
9717250d
SH
10288 #:asd-systems '("cl-postgres"
10289 "s-sql"
10290 "postmodern"
10291 "simple-date"
12df8b7b
GLV
10292 "simple-date/postgres-glue")
10293 #:phases
10294 (modify-phases %standard-phases
10295 (add-after 'unpack 'fix-build
10296 (lambda _
10297 (substitute* "cl-postgres.asd"
9717250d
SH
10298 ((":or :sbcl :allegro :ccl :clisp" all)
10299 (string-append all " :ecl")))
12df8b7b
GLV
10300 #t)))))))
10301
d005f809
SH
10302(define-public sbcl-db3
10303 (let ((commit "38e5ad35f025769fb7f8dcdc6e56df3e8efd8e6d")
10304 (revision "1"))
10305 (package
10306 (name "sbcl-db3")
10307 (version (git-version "0.0.0" revision commit))
10308 (source
10309 (origin
10310 (method git-fetch)
10311 (uri (git-reference
10312 (url "https://github.com/dimitri/cl-db3")
10313 (commit commit)))
10314 (file-name (git-file-name "cl-db3" version))
10315 (sha256
10316 (base32 "1i7j0mlri6kbklcx1lsm464s8kmyhhij5c4xh4aybrw8m4ixn1s5"))))
10317 (build-system asdf-build-system/sbcl)
10318 (home-page "https://github.com/dimitri/cl-db3")
10319 (synopsis "Common Lisp library to read dBase III database files")
10320 (description
10321 "This is a Common Lisp library for processing data found in dBase III
10322database files (dbf and db3 files).")
10323 (license license:public-domain))))
10324
10325(define-public ecl-db3
10326 (sbcl-package->ecl-package sbcl-db3))
10327
10328(define-public cl-db3
10329 (sbcl-package->cl-source-package sbcl-db3))
10330
47a6cde0 10331(define-public sbcl-dbi
dba8f523
PN
10332 ;; Master includes a breaking change which other packages depend on since
10333 ;; Quicklisp decided to follow it:
10334 ;; https://github.com/fukamachi/cl-dbi/commit/31c46869722f77fd5292a81b5b101f1347d7fce1
10335 (let ((commit "31c46869722f77fd5292a81b5b101f1347d7fce1"))
10336 (package
10337 (name "sbcl-dbi")
10338 (version (git-version "0.9.4" "1" commit))
10339 (source
10340 (origin
10341 (method git-fetch)
10342 (uri (git-reference
10343 (url "https://github.com/fukamachi/cl-dbi")
10344 (commit commit)))
10345 (file-name (git-file-name name version))
10346 (sha256
10347 (base32 "0r3n4rw12qqxad0cryym2ibm4ddl49gbq4ra227afibsr43nw5k3"))))
10348 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
10349 (native-inputs
10350 `(("rove" ,sbcl-rove)
10351 ("trivial-types" ,sbcl-trivial-types)))
dba8f523
PN
10352 (inputs
10353 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
2ff8b5ba
GLV
10354 ("cl-mysql" ,sbcl-cl-mysql)
10355 ("cl-sqlite" ,sbcl-cl-sqlite)
dba8f523 10356 ("closer-mop" ,sbcl-closer-mop)
2ff8b5ba
GLV
10357 ("postmodern" ,sbcl-postmodern)
10358 ("split-sequence" ,sbcl-split-sequence)
10359 ("trivial-garbage" ,sbcl-trivial-garbage)))
dba8f523 10360 (arguments
3f8bbf7c 10361 `(#:asd-systems '("dbi"
2ff8b5ba
GLV
10362 "dbd-mysql"
10363 "dbd-postgres"
10364 "dbd-sqlite3")))
dba8f523
PN
10365 (synopsis "Database independent interface for Common Lisp")
10366 (description
10367 "@code{dbi} is a Common Lisp library providing a database independent
47a6cde0 10368interface for MySQL, PostgreSQL and SQLite.")
dba8f523
PN
10369 (home-page "https://github.com/fukamachi/cl-dbi")
10370 (license license:llgpl))))
47a6cde0
GLV
10371
10372(define-public cl-dbi
10373 (sbcl-package->cl-source-package sbcl-dbi))
903d0e81 10374
e7cbcf5a
GLV
10375(define-public ecl-dbi
10376 (sbcl-package->ecl-package sbcl-dbi))
10377
1aa7ad1f
GLV
10378(define-public sbcl-uffi
10379 (package
10380 (name "sbcl-uffi")
10381 (version "2.1.2")
10382 (source
10383 (origin
10384 (method git-fetch)
10385 (uri (git-reference
10386 (url "http://git.kpe.io/uffi.git")
10387 (commit (string-append "v" version))))
10388 (file-name (git-file-name name version))
10389 (sha256
10390 (base32 "1hqszvz0a3wk4s9faa83sc3vjxcb5rxmjclyr17yzwg55z733kry"))))
10391 (build-system asdf-build-system/sbcl)
10392 (arguments
10393 `(#:tests? #f ; TODO: Fix use of deprecated ASDF functions
3f8bbf7c 10394 #:asd-files '("uffi.asd")
1aa7ad1f
GLV
10395 #:phases
10396 (modify-phases %standard-phases
10397 (add-after 'unpack 'fix-permissions
10398 (lambda _
10399 (make-file-writable "doc/html.tar.gz")
10400 #t)))))
10401 (synopsis "Universal foreign function library for Common Lisp")
10402 (description
10403 "UFFI provides a universal foreign function interface (FFI)
10404 for Common Lisp.")
10405 (home-page "http://quickdocs.org/uffi/")
10406 (license license:llgpl)))
10407
10408(define-public cl-uffi
10409 (package
10410 (inherit (sbcl-package->cl-source-package sbcl-uffi))
10411 (arguments
10412 `(#:phases
10413 ;; asdf-build-system/source has its own phases and does not inherit
10414 ;; from asdf-build-system/sbcl phases.
10415 (modify-phases %standard-phases/source
3b392074
GLV
10416 ;; Already done in SBCL package.
10417 (delete 'reset-gzip-timestamps))))))
5ae56f68
GLV
10418
10419(define-public sbcl-clsql
10420 (package
10421 (name "sbcl-clsql")
10422 (version "6.7.0")
10423 (source
10424 (origin
10425 (method git-fetch)
10426 (uri (git-reference
10427 (url "http://git.kpe.io/clsql.git")
10428 (commit (string-append "v" version))))
10429 (file-name (git-file-name name version))
10430 (sha256
10431 (base32 "1v1k3s5bsy3lgd9gk459bzpb1r0kdjda25s29samxw4gsgf1fqvp"))
10432 (snippet
10433 '(begin
10434 ;; Remove precompiled libraries.
10435 (delete-file "db-mysql/clsql_mysql.dll")
10436 (delete-file "uffi/clsql_uffi.dll")
10437 (delete-file "uffi/clsql_uffi.lib")
10438 #t))))
10439 (build-system asdf-build-system/sbcl)
10440 (native-inputs
2ff8b5ba 10441 `(("rt" ,sbcl-rt)))
5ae56f68 10442 (inputs
2ff8b5ba
GLV
10443 `(("cffi" ,sbcl-cffi)
10444 ("md5" ,sbcl-md5)
10445 ("mysql" ,mysql)
5ae56f68 10446 ("postgresql" ,postgresql)
2ff8b5ba 10447 ("postmodern" ,sbcl-postmodern)
5ae56f68 10448 ("sqlite" ,sqlite)
2ff8b5ba 10449 ("uffi" ,sbcl-uffi)
5ae56f68 10450 ("zlib" ,zlib)))
5ae56f68 10451 (arguments
135bc7e3 10452 `(#:asd-files '("clsql.asd"
2ff8b5ba
GLV
10453 "clsql-uffi.asd"
10454 "clsql-sqlite3.asd"
10455 "clsql-postgresql.asd"
10456 "clsql-postgresql-socket3.asd"
10457 "clsql-mysql.asd")
10458 #:asd-systems '("clsql"
10459 "clsql-sqlite3"
135bc7e3 10460 "clsql-postgresql"
2ff8b5ba
GLV
10461 "clsql-postgresql-socket3"
10462 "clsql-mysql")
10463 #:phases
10464 (modify-phases %standard-phases
5ae56f68
GLV
10465 (add-after 'unpack 'fix-permissions
10466 (lambda _
10467 (make-file-writable "doc/html.tar.gz")
2ff8b5ba 10468 #t))
135bc7e3
GLV
10469 (add-after 'unpack 'fix-build
10470 (lambda _
10471 (substitute* "clsql-uffi.asd"
10472 (("\\(:version uffi \"2.0\"\\)")
10473 "uffi"))
10474 (substitute* "db-postgresql/postgresql-api.lisp"
10475 (("\\(data :cstring\\)")
10476 "(data :string)"))
10477 #t))
2ff8b5ba
GLV
10478 (add-after 'unpack 'fix-paths
10479 (lambda* (#:key inputs outputs #:allow-other-keys)
10480 (substitute* "db-sqlite3/sqlite3-loader.lisp"
10481 (("libsqlite3")
10482 (string-append (assoc-ref inputs "sqlite")
10483 "/lib/libsqlite3")))
10484 (substitute* "db-postgresql/postgresql-loader.lisp"
10485 (("libpq")
10486 (string-append (assoc-ref inputs "postgresql")
10487 "/lib/libpq")))
10488 (let ((lib (string-append "#p\""
10489 (assoc-ref outputs "out")
10490 "/lib/\"")))
10491 (substitute* "clsql-mysql.asd"
10492 (("#p\"/usr/lib/clsql/clsql_mysql\\.so\"")
10493 lib))
10494 (substitute* "db-mysql/mysql-loader.lisp"
10495 (("libmysqlclient" all)
10496 (string-append (assoc-ref inputs "mysql") "/lib/" all))
10497 (("clsql-mysql-system::\\*library-file-dir\\*")
10498 lib)))
10499 #t))
10500 (add-before 'build 'build-helper-library
10501 (lambda* (#:key inputs outputs #:allow-other-keys)
10502 (let* ((mysql (assoc-ref inputs "mysql"))
10503 (inc-dir (string-append mysql "/include/mysql"))
10504 (lib-dir (string-append mysql "/lib"))
10505 (shared-lib-dir (string-append (assoc-ref outputs "out")
10506 "/lib"))
10507 (shared-lib (string-append shared-lib-dir
10508 "/clsql_mysql.so")))
10509 (mkdir-p shared-lib-dir)
10510 (invoke "gcc" "-fPIC" "-shared"
10511 "-I" inc-dir
10512 "db-mysql/clsql_mysql.c"
10513 "-Wl,-soname=clsql_mysql"
10514 "-L" lib-dir "-lmysqlclient" "-lz"
10515 "-o" shared-lib)
10516 #t)))
10517 (add-after 'unpack 'fix-tests
10518 (lambda _
10519 (substitute* "clsql.asd"
10520 (("clsql-tests :force t")
10521 "clsql-tests"))
10522 #t)))))
10523 (synopsis "Common Lisp SQL Interface library")
10524 (description
10525 "@code{clsql} is a Common Lisp interface to SQL RDBMS based on the
10526Xanalys CommonSQL interface for Lispworks. It provides low-level database
10527interfaces as well as a functional and an object oriented interface.")
10528 (home-page "http://clsql.kpe.io/")
10529 (license license:llgpl)))
079ee3b5 10530
2ff8b5ba 10531(define-public cl-clsql
079ee3b5 10532 (package
2ff8b5ba
GLV
10533 (inherit (sbcl-package->cl-source-package sbcl-clsql))
10534 (native-inputs
10535 `(("rt" ,cl-rt)))
079ee3b5
GLV
10536 (inputs
10537 `(("mysql" ,mysql)
2ff8b5ba
GLV
10538 ("postgresql" ,postgresql)
10539 ("sqlite" ,sqlite)
079ee3b5 10540 ("zlib" ,zlib)))
2ff8b5ba
GLV
10541 (propagated-inputs
10542 `(("cffi" ,cl-cffi)
10543 ("md5" ,cl-md5)
10544 ("postmodern" ,cl-postmodern)
10545 ("uffi" ,cl-uffi)))
079ee3b5 10546 (arguments
2ff8b5ba
GLV
10547 `(#:phases
10548 ;; asdf-build-system/source has its own phases and does not inherit
10549 ;; from asdf-build-system/sbcl phases.
10550 (modify-phases %standard-phases/source
10551 (add-after 'unpack 'fix-permissions
10552 (lambda _
10553 (make-file-writable "doc/html.tar.gz")
10554 #t)))))))
6dfc981a 10555
bdd3b1b2
GLV
10556(define-public ecl-clsql
10557 (let ((pkg (sbcl-package->ecl-package sbcl-clsql)))
10558 (package
10559 (inherit pkg)
10560 (inputs
10561 (alist-delete "uffi" (package-inputs pkg)))
10562 (arguments
10563 (substitute-keyword-arguments (package-arguments pkg)
10564 ((#:asd-files asd-files '())
10565 `(cons "clsql-cffi.asd" ,asd-files)))))))
10566
6dfc981a
PN
10567(define-public sbcl-sycamore
10568 (let ((commit "fd2820fec165ad514493426dea209728f64e6d18"))
10569 (package
10570 (name "sbcl-sycamore")
10571 (version "0.0.20120604")
10572 (source
10573 (origin
10574 (method git-fetch)
10575 (uri (git-reference
10576 (url "https://github.com/ndantam/sycamore/")
10577 (commit commit)))
10578 (file-name (git-file-name name version))
10579 (sha256
10580 (base32 "00bv1aj89q5vldmq92zp2364jq312zjq2mbd3iyz1s2b4widzhl7"))))
10581 (build-system asdf-build-system/sbcl)
6dfc981a
PN
10582 (inputs
10583 `(("alexandria" ,sbcl-alexandria)
10584 ("cl-ppcre" ,sbcl-cl-ppcre)))
10585 (synopsis "Purely functional data structure library in Common Lisp")
10586 (description
10587 "Sycamore is a fast, purely functional data structure library in Common Lisp.
10588If features:
10589
10590@itemize
10591@item Fast, purely functional weight-balanced binary trees.
10592@item Leaf nodes are simple-vectors, greatly reducing tree height.
10593@item Interfaces for tree Sets and Maps (dictionaries).
10594@item Ropes.
10595@item Purely functional pairing heaps.
10596@item Purely functional amortized queue.
10597@end itemize\n")
10598 (home-page "http://ndantam.github.io/sycamore/")
10599 (license license:bsd-3))))
10600
10601(define-public cl-sycamore
10602 (sbcl-package->cl-source-package sbcl-sycamore))
eb5341c2 10603
12df8b7b
GLV
10604(define-public ecl-sycamore
10605 (sbcl-package->ecl-package sbcl-sycamore))
10606
eb5341c2
PN
10607(define-public sbcl-trivial-package-local-nicknames
10608 (package
10609 (name "sbcl-trivial-package-local-nicknames")
10610 (version "0.2")
10611 (home-page "https://github.com/phoe/trivial-package-local-nicknames")
10612 (source
10613 (origin
10614 (method git-fetch)
10615 (uri (git-reference
10616 (url home-page)
10617 (commit "16b7ad4c2b120f50da65154191f468ea5598460e")))
10618 (file-name (git-file-name name version))
10619 (sha256
10620 (base32 "18qc27xkjzdcqrilpk3pm7djldwq5rm3ggd5h9cr8hqcd54i2fqg"))))
10621 (build-system asdf-build-system/sbcl)
10622 (synopsis "Common Lisp compatibility library for package local nicknames")
10623 (description
10624 "This library is a portable compatibility layer around package local nicknames (PLN).
10625This was done so there is a portability library for the PLN API not included
10626in DEFPACKAGE.")
10627 (license license:unlicense)))
10628
10629(define-public cl-trivial-package-local-nicknames
10630 (sbcl-package->cl-source-package sbcl-trivial-package-local-nicknames))
2fa04968 10631
12df8b7b
GLV
10632(define-public ecl-trivial-package-local-nicknames
10633 (sbcl-package->ecl-package sbcl-trivial-package-local-nicknames))
10634
2fa04968
PN
10635(define-public sbcl-enchant
10636 (let ((commit "6af162a7bf10541cbcfcfa6513894900329713fa"))
10637 (package
10638 (name "sbcl-enchant")
10639 (version (git-version "0.0.0" "1" commit))
10640 (home-page "https://github.com/tlikonen/cl-enchant")
10641 (source
10642 (origin
10643 (method git-fetch)
10644 (uri (git-reference
10645 (url home-page)
10646 (commit commit)))
10647 (file-name (git-file-name name version))
10648 (sha256
10649 (base32 "19yh5ihirzi1d8xqy1cjqipzd6ly3245cfxa5s9xx496rryz0s01"))))
10650 (build-system asdf-build-system/sbcl)
10651 (inputs
10652 `(("enchant" ,enchant)
10653 ("cffi" ,sbcl-cffi)))
10654 (arguments
10655 `(#:phases
10656 (modify-phases %standard-phases
10657 (add-after 'unpack 'fix-paths
10658 (lambda* (#:key inputs #:allow-other-keys)
10659 (substitute* "load-enchant.lisp"
10660 (("libenchant")
10661 (string-append
10662 (assoc-ref inputs "enchant") "/lib/libenchant-2"))))))))
10663 (synopsis "Common Lisp interface for the Enchant spell-checker library")
10664 (description
10665 "Enchant is a Common Lisp interface for the Enchant spell-checker
10666library. The Enchant library is a generic spell-checker library which uses
10667other spell-checkers transparently as back-end. The library supports the
10668multiple checkers, including Aspell and Hunspell.")
10669 (license license:public-domain))))
10670
10671(define-public cl-enchant
10672 (sbcl-package->cl-source-package sbcl-enchant))
df95189d 10673
e7cbcf5a
GLV
10674(define-public ecl-enchant
10675 (sbcl-package->ecl-package sbcl-enchant))
10676
df95189d 10677(define-public sbcl-cl-change-case
fc284b73
SH
10678 (let ((commit "45c70b601125889689e0c1c37d7e727a3a0af022")
10679 (revision "1"))
df95189d
PN
10680 (package
10681 (name "sbcl-cl-change-case")
fc284b73 10682 (version (git-version "0.2.0" revision commit))
df95189d
PN
10683 (home-page "https://github.com/rudolfochrist/cl-change-case")
10684 (source
10685 (origin
10686 (method git-fetch)
10687 (uri (git-reference
10688 (url home-page)
10689 (commit commit)))
6cf3b1c2 10690 (file-name (git-file-name "cl-change-case" version))
df95189d 10691 (sha256
fc284b73 10692 (base32 "0qmk341zzcsbf8sq0w9ix3r080zg4ri6vzxym63lhdjfzwz3y8if"))))
df95189d
PN
10693 (build-system asdf-build-system/sbcl)
10694 (inputs
10695 `(("cl-ppcre" ,sbcl-cl-ppcre)
10696 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
10697 (native-inputs
10698 `(("fiveam" ,sbcl-fiveam)))
6cf3b1c2
GLV
10699 (synopsis
10700 "Convert Common Lisp strings between camelCase, PascalCase and more")
df95189d 10701 (description
6cf3b1c2
GLV
10702 "@code{cl-change-case} is a library to convert strings between
10703camelCase, PascalCase, snake_case, param-case, CONSTANT_CASE and more.")
df95189d
PN
10704 (license license:llgpl))))
10705
10706(define-public cl-change-case
10707 (sbcl-package->cl-source-package sbcl-cl-change-case))
53c05faf 10708
e7cbcf5a
GLV
10709(define-public ecl-cl-change-case
10710 (sbcl-package->ecl-package sbcl-cl-change-case))
10711
f39d8d2c
SH
10712(define-public sbcl-modularize
10713 (let ((commit "86c5d9a11fbd2df9f0f03ac10b5d71837c8934ba")
10714 (revision "1"))
10715 (package
10716 (name "sbcl-modularize")
10717 (version (git-version "1.0.0" revision commit))
10718 (source
10719 (origin
10720 (method git-fetch)
10721 (uri (git-reference
10722 (url "https://github.com/Shinmera/modularize")
10723 (commit commit)))
10724 (file-name (git-file-name name version))
10725 (sha256
10726 (base32 "1zys29rfkb649rkgl3snxhajk8d5yf7ryxkrwy020kwdh7zdsg7d"))))
10727 (build-system asdf-build-system/sbcl)
10728 (arguments
10729 `(#:test-asd-file "modularize-test-module.asd"
10730 #:asd-files '("modularize.asd" "modularize-test-module.asd")
10731 #:asd-systems '("modularize" "modularize-test-module")))
10732 (inputs
10733 `(("documentation-utils" ,sbcl-documentation-utils)
10734 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)))
10735 (home-page "https://shinmera.github.io/modularize/")
10736 (synopsis "Common Lisp modularization framework")
10737 (description
10738 "@code{MODULARIZE} is an attempt at providing a common interface to
10739segregate major application components. This is achieved by adding special
10740treatment to packages. Each module is a package that is specially registered,
10741which allows it to interact and co-exist with other modules in better ways. For
10742instance, by adding module definition options you can introduce mechanisms to
10743tie modules together in functionality, hook into each other and so on.")
10744 (license license:zlib))))
10745
10746(define-public ecl-modularize
10747 (sbcl-package->ecl-package sbcl-modularize))
10748
10749(define-public cl-modularize
10750 (sbcl-package->cl-source-package sbcl-modularize))
10751
82f4d5d2
SH
10752(define-public sbcl-modularize-hooks
10753 (let ((commit "e0348ed3ffd59a9ec31ca4ab28289e748bfbf96a")
10754 (revision "1"))
10755 (package
10756 (name "sbcl-modularize-hooks")
10757 (version (git-version "1.0.2" revision commit))
10758 (source
10759 (origin
10760 (method git-fetch)
10761 (uri (git-reference
10762 (url "https://github.com/Shinmera/modularize-hooks")
10763 (commit commit)))
10764 (file-name (git-file-name "modularize-hooks" version))
10765 (sha256
10766 (base32 "12kjvin8hxidwkzfb7inqv5b6g5qzcssnj9wc497v2ixc56fqdz7"))))
10767 (build-system asdf-build-system/sbcl)
10768 (inputs
10769 `(("closer-mop" ,sbcl-closer-mop)
10770 ("lambda-fiddle" ,sbcl-lambda-fiddle)
10771 ("modularize" ,sbcl-modularize)
10772 ("trivial-arguments" ,sbcl-trivial-arguments)))
10773 (home-page "https://shinmera.github.io/modularize-hooks/")
eccdc91e 10774 (synopsis "Generic hooks and triggers extension for Modularize")
82f4d5d2
SH
10775 (description
10776 "This is a simple extension to @code{MODULARIZE} that allows modules to
10777define and trigger hooks, which other modules can hook on to.")
10778 (license license:zlib))))
10779
10780(define-public ecl-modularize-hooks
10781 (sbcl-package->ecl-package sbcl-modularize-hooks))
10782
10783(define-public cl-modularize-hooks
10784 (sbcl-package->cl-source-package sbcl-modularize-hooks))
10785
34200753
SH
10786(define-public sbcl-modularize-interfaces
10787 (let ((commit "96353657afb8c7aeba7ef5b51eb04c5ed3bcb6ef")
10788 (revision "1"))
10789 (package
10790 (name "sbcl-modularize-interfaces")
10791 (version (git-version "0.9.3" revision commit))
10792 (source
10793 (origin
10794 (method git-fetch)
10795 (uri (git-reference
10796 (url "https://github.com/Shinmera/modularize-interfaces")
10797 (commit commit)))
10798 (file-name (git-file-name "modularize-interfaces" version))
10799 (sha256
10800 (base32 "0bjf4wy39cwf75m7vh0r7mmcchs09yz2lrbyap98hnq8blq70fhc"))))
10801 (build-system asdf-build-system/sbcl)
10802 (inputs
10803 `(("lambda-fiddle" ,sbcl-lambda-fiddle)
10804 ("modularize" ,sbcl-modularize)
10805 ("trivial-arguments" ,sbcl-trivial-arguments)
10806 ("trivial-indent" ,sbcl-trivial-indent)))
10807 (home-page "https://shinmera.github.io/modularize-interfaces/")
10808 (synopsis "Programmatical interfaces extension for Modularize")
10809 (description
10810 "This is an extension to @code{MODULARIZE} that allows your application
10811to define interfaces in-code that serve both as a primary documentation and as
10812compliance control.")
10813 (license license:zlib))))
10814
10815(define-public ecl-modularize-interfaces
10816 (sbcl-package->ecl-package sbcl-modularize-interfaces))
10817
10818(define-public cl-modularize-interfaces
10819 (sbcl-package->cl-source-package sbcl-modularize-interfaces))
10820
53c05faf
PN
10821(define-public sbcl-moptilities
10822 (let ((commit "a436f16b357c96b82397ec018ea469574c10dd41"))
10823 (package
10824 (name "sbcl-moptilities")
10825 (version (git-version "0.3.13" "1" commit))
10826 (home-page "https://github.com/gwkkwg/moptilities/")
10827 (source
10828 (origin
10829 (method git-fetch)
10830 (uri (git-reference
10831 (url home-page)
10832 (commit commit)))
10833 (file-name (git-file-name name version))
10834 (sha256
10835 (base32 "1q12bqjbj47lx98yim1kfnnhgfhkl80102fkgp9pdqxg0fp6g5fc"))))
10836 (build-system asdf-build-system/sbcl)
10837 (inputs
10838 `(("closer-mop" ,sbcl-closer-mop)))
10839 (native-inputs
10840 `(("lift" ,sbcl-lift)))
466bf553
GLV
10841 (arguments
10842 `(#:phases
10843 (modify-phases %standard-phases
10844 (add-after 'unpack 'fix-tests
10845 (lambda _
10846 (substitute* "lift-standard.config"
10847 ((":relative-to lift-test")
10848 ":relative-to moptilities-test"))
10849 #t)))))
53c05faf
PN
10850 (synopsis "Compatibility layer for Common Lisp MOP implementation differences")
10851 (description
10852 "MOP utilities provide a common interface between Lisps and make the
10853MOP easier to use.")
10854 (license license:expat))))
10855
10856(define-public cl-moptilities
10857 (sbcl-package->cl-source-package sbcl-moptilities))
8cf6d150
PN
10858
10859(define-public sbcl-osicat
10860 (let ((commit "de0c18a367eedc857e1902a7319828af072a0d97"))
10861 (package
10862 (name "sbcl-osicat")
10863 (version (git-version "0.7.0" "1" commit))
10864 (home-page "http://www.common-lisp.net/project/osicat/")
10865 (source
10866 (origin
10867 (method git-fetch)
10868 (uri (git-reference
10869 (url "https://github.com/osicat/osicat")
10870 (commit commit)))
10871 (file-name (git-file-name name version))
10872 (sha256
10873 (base32 "15viw5pi5sa7qq9b4n2rr3dj2jkqr180rh9z1lh8w3rgl42i2adc"))))
10874 (build-system asdf-build-system/sbcl)
8cf6d150
PN
10875 (inputs
10876 `(("alexandria" ,sbcl-alexandria)
10877 ("cffi" ,sbcl-cffi)
10878 ("trivial-features" ,sbcl-trivial-features)))
10879 (native-inputs
2ff8b5ba 10880 `(("rt" ,sbcl-rt)))
8cf6d150
PN
10881 (synopsis "Operating system interface for Common Lisp")
10882 (description
10883 "Osicat is a lightweight operating system interface for Common Lisp on
10884Unix-platforms. It is not a POSIX-style API, but rather a simple lispy
10885accompaniment to the standard ANSI facilities.")
10886 (license license:expat))))
10887
10888(define-public cl-osicat
10889 (sbcl-package->cl-source-package sbcl-osicat))
b2eae0e1 10890
e7cbcf5a
GLV
10891(define-public ecl-osicat
10892 (sbcl-package->ecl-package sbcl-osicat))
10893
152d50d9
KCB
10894(define-public sbcl-clx-xembed
10895 (let ((commit "a5c4b844d31ee68ffa58c933cc1cdddde6990743")
10896 (revision "1"))
10897 (package
10898 (name "sbcl-clx-xembed")
10899 (version (git-version "0.1" revision commit))
10900 (home-page "https://github.com/laynor/clx-xembed")
10901 (source
10902 (origin
10903 (method git-fetch)
10904 (uri (git-reference
b0e7b699 10905 (url "https://github.com/laynor/clx-xembed")
152d50d9
KCB
10906 (commit commit)))
10907 (file-name (git-file-name name version))
10908 (sha256
10909 (base32 "1abx4v36ycmfjdwpjk4hh8058ya8whwia7ds9vd96q2qsrs57f12"))))
10910 (build-system asdf-build-system/sbcl)
10911 (arguments
2ff8b5ba 10912 `(#:asd-systems '("xembed")))
152d50d9
KCB
10913 (inputs
10914 `(("sbcl-clx" ,sbcl-clx)))
10915 (synopsis "CL(x) xembed protocol implementation ")
10916 (description "CL(x) xembed protocol implementation")
10917 ;; MIT License
10918 (license license:expat))))
10919
10920(define-public cl-clx-xembed
10921 (sbcl-package->cl-source-package sbcl-clx-xembed))
10922
10923(define-public ecl-clx-xembed
10924 (sbcl-package->ecl-package sbcl-clx-xembed))
10925
b2eae0e1
KCB
10926(define-public sbcl-quantile-estimator
10927 (package
10928 (name "sbcl-quantile-estimator")
10929 (version "0.0.1")
10930 (source
10931 (origin
10932 (method git-fetch)
10933 (uri (git-reference
10934 (url "https://github.com/deadtrickster/quantile-estimator.cl")
10935 (commit "84d0ea405d793f5e808c68c4ddaf25417b0ff8e5")))
10936 (file-name (git-file-name name version))
10937 (sha256
10938 (base32
10939 "0rlswkf0siaabsvvch3dgxmg45fw5w8pd9b7ri2w7a298aya52z9"))))
10940 (build-system asdf-build-system/sbcl)
10941 (arguments
e765d9c9 10942 '(#:asd-files '("quantile-estimator.asd")))
b2eae0e1
KCB
10943 (inputs
10944 `(("alexandria" ,sbcl-alexandria)))
10945 (home-page "https://github.com/deadtrickster/quantile-estimator.cl")
10946 (synopsis
10947 "Effective computation of biased quantiles over data streams")
10948 (description
10949 "Common Lisp implementation of Graham Cormode and S.
10950Muthukrishnan's Effective Computation of Biased Quantiles over Data
10951Streams in ICDE’05.")
10952 (license license:expat)))
10953
10954(define-public cl-quantile-estimator
10955 (sbcl-package->cl-source-package sbcl-quantile-estimator))
10956
10957(define-public ecl-quantile-estimator
10958 (sbcl-package->ecl-package sbcl-quantile-estimator))
4c7c3077
KCB
10959
10960(define-public sbcl-prometheus
10961 (package
10962 (name "sbcl-prometheus")
10963 (version "0.4.1")
10964 (source
10965 (origin
10966 (method git-fetch)
10967 (uri (git-reference
b0e7b699 10968 (url "https://github.com/deadtrickster/prometheus.cl")
4c7c3077
KCB
10969 (commit "7352b92296996ff383503e19bdd3bcea30409a15")))
10970 (file-name (git-file-name name version))
10971 (sha256
10972 (base32
10973 "0fzczls2kfgdx18pja4lqxjrz72i583185d8nq0pb3s331hhzh0z"))))
10974 (build-system asdf-build-system/sbcl)
10975 (inputs
10976 `(("alexandria" ,sbcl-alexandria)
10977 ("bordeaux-threads" ,sbcl-bordeaux-threads)
2ff8b5ba
GLV
10978 ("cffi" ,sbcl-cffi)
10979 ("cl-fad" ,sbcl-cl-fad)
4c7c3077 10980 ("cl-ppcre" ,sbcl-cl-ppcre)
2ff8b5ba
GLV
10981 ("drakma" ,sbcl-drakma)
10982 ("hunchentoot" ,sbcl-hunchentoot)
4c7c3077 10983 ("local-time" ,sbcl-local-time)
2ff8b5ba
GLV
10984 ("quantile-estimator" ,sbcl-quantile-estimator)
10985 ("salza2" ,sbcl-salza2)
10986 ("split-sequence" ,sbcl-split-sequence)
10987 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
10988 (arguments
10989 '(#:asd-files '("prometheus.asd"
10990 "prometheus.collectors.sbcl.asd"
10991 "prometheus.collectors.process.asd"
10992 "prometheus.formats.text.asd"
10993 "prometheus.exposers.hunchentoot.asd"
10994 "prometheus.pushgateway.asd")
10995 #:asd-systems '("prometheus"
10996 "prometheus.collectors.sbcl"
10997 "prometheus.collectors.process"
10998 "prometheus.formats.text"
10999 "prometheus.exposers.hunchentoot"
11000 "prometheus.pushgateway")))
4c7c3077
KCB
11001 (home-page "https://github.com/deadtrickster/prometheus.cl")
11002 (synopsis "Prometheus.io Common Lisp client")
11003 (description "Prometheus.io Common Lisp client.")
11004 (license license:expat)))
11005
11006(define-public cl-prometheus
11007 (sbcl-package->cl-source-package sbcl-prometheus))
11008
11009(define-public ecl-prometheus
11010 (sbcl-package->ecl-package sbcl-prometheus))
4e21f5bc 11011
59dda970
KCB
11012(define-public sbcl-uuid
11013 (let ((commit "e7d6680c3138385c0708f7aaf0c96622eeb140e8"))
11014 (package
11015 (name "sbcl-uuid")
11016 (version (git-version "2012.12.26" "1" commit))
11017 (source
11018 (origin
11019 (method git-fetch)
11020 (uri (git-reference
b0e7b699 11021 (url "https://github.com/dardoria/uuid")
59dda970
KCB
11022 (commit commit)))
11023 (file-name (git-file-name name version))
11024 (sha256
11025 (base32
11026 "0jnyp2kibcf5cwi60l6grjrj8wws9chasjvsw7xzwyym2lyid46f"))))
11027 (build-system asdf-build-system/sbcl)
11028 (inputs
11029 `(("ironclad" ,sbcl-ironclad)
11030 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
11031 (home-page "https://github.com/dardoria/uuid")
11032 (synopsis
11033 "Common Lisp implementation of UUIDs according to RFC4122")
11034 (description
11035 "Common Lisp implementation of UUIDs according to RFC4122.")
11036 (license license:llgpl))))
11037
11038(define-public cl-uuid
11039 (sbcl-package->cl-source-package sbcl-uuid))
11040
11041(define-public ecl-uuid
11042 (sbcl-package->ecl-package sbcl-uuid))
adf70454
KCB
11043
11044(define-public sbcl-dissect
11045 (let ((commit "cffd38479f0e64e805f167bbdb240b783ecc8d45"))
11046 (package
11047 (name "sbcl-dissect")
11048 (version (git-version "1.0.0" "1" commit))
11049 (source
11050 (origin
11051 (method git-fetch)
11052 (uri (git-reference
b0e7b699 11053 (url "https://github.com/Shinmera/dissect")
adf70454
KCB
11054 (commit commit)))
11055 (file-name (git-file-name name version))
11056 (sha256
11057 (base32
11058 "0rmsjkgjl90gl6ssvgd60hb0d5diyhsiyypvw9hbc0ripvbmk5r5"))))
11059 (build-system asdf-build-system/sbcl)
11060 (inputs
11061 `(("cl-ppcre" ,sbcl-cl-ppcre)))
11062 (home-page "https://shinmera.github.io/dissect/")
11063 (synopsis
11064 "Introspection library for the call stack and restarts")
11065 (description
11066 "Dissect is a small Common Lisp library for introspecting the call stack
11067and active restarts.")
11068 (license license:zlib))))
11069
11070(define-public cl-dissect
11071 (sbcl-package->cl-source-package sbcl-dissect))
11072
11073(define-public ecl-dissect
11074 (sbcl-package->ecl-package sbcl-dissect))
38d738e9 11075
38d738e9
KCB
11076(define-public sbcl-rove
11077 (package
11078 (name "sbcl-rove")
11079 (version "0.9.6")
11080 (source
11081 (origin
11082 (method git-fetch)
11083 (uri (git-reference
b0e7b699 11084 (url "https://github.com/fukamachi/rove")
38d738e9
KCB
11085 (commit "f3695db08203bf26f3b861dc22ac0f4257d3ec21")))
11086 (file-name (git-file-name name version))
11087 (sha256
11088 (base32
11089 "07ala4l2fncxf540fzxj3h5mhi9i4wqllhj0rqk8m2ljl5zbz89q"))))
11090 (build-system asdf-build-system/sbcl)
11091 (inputs
11092 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11093 ("dissect" ,sbcl-dissect)
11094 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
11095 (home-page "https://github.com/fukamachi/rove")
11096 (synopsis
11097 "Yet another common lisp testing library")
11098 (description
11099 "Rove is a unit testing framework for Common Lisp applications.
11100This is intended to be a successor of Prove.")
11101 (license license:bsd-3)))
11102
11103(define-public cl-rove
11104 (sbcl-package->cl-source-package sbcl-rove))
11105
11106(define-public ecl-rove
11107 (sbcl-package->ecl-package sbcl-rove))
aae3df18
KCB
11108
11109(define-public sbcl-exponential-backoff
11110 (let ((commit "8d9e8444d8b3184a524c12ce3449f91613ab714f"))
11111 (package
11112 (name "sbcl-exponential-backoff")
11113 (version (git-version "0" "1" commit))
11114 (source
11115 (origin
11116 (method git-fetch)
11117 (uri (git-reference
b0e7b699 11118 (url "https://github.com/death/exponential-backoff")
aae3df18
KCB
11119 (commit commit)))
11120 (file-name (git-file-name name version))
11121 (sha256
11122 (base32
11123 "1389hm9hxv85s0125ja4js1bvh8ay4dsy9q1gaynjv27ynik6gmv"))))
11124 (build-system asdf-build-system/sbcl)
11125 (home-page "https://github.com/death/exponential-backoff")
11126 (synopsis "Exponential backoff algorithm in Common Lisp")
11127 (description
11128 "An implementation of the exponential backoff algorithm in Common Lisp.
11129Inspired by the implementation found in Chromium. Read the header file to
11130learn about each of the parameters.")
11131 (license license:expat))))
11132
11133(define-public cl-exponential-backoff
11134 (sbcl-package->cl-source-package sbcl-exponential-backoff))
11135
11136(define-public ecl-exponential-backoff
11137 (sbcl-package->ecl-package sbcl-exponential-backoff))
3e736218
KCB
11138
11139(define-public sbcl-sxql
11140 (let ((commit "5aa8b739492c5829e8623432b5d46482263990e8"))
11141 (package
11142 (name "sbcl-sxql")
11143 (version (git-version "0.1.0" "1" commit))
11144 (source
11145 (origin
11146 (method git-fetch)
11147 (uri (git-reference
b0e7b699 11148 (url "https://github.com/fukamachi/sxql")
3e736218
KCB
11149 (commit commit)))
11150 (file-name (git-file-name name version))
11151 (sha256
11152 (base32
11153 "0k25p6w2ld9cn8q8s20lda6yjfyp4q89219sviayfgixnj27avnj"))))
11154 (build-system asdf-build-system/sbcl)
11155 (arguments
11156 `(#:test-asd-file "sxql-test.asd"))
11157 (inputs
11158 `(("alexandria" ,sbcl-alexandria)
2ff8b5ba 11159 ("cl-syntax" ,sbcl-cl-syntax)
3e736218
KCB
11160 ("iterate" ,sbcl-iterate)
11161 ("optima" ,sbcl-optima)
11162 ("split-sequence" ,sbcl-split-sequence)
11163 ("trivial-types" ,sbcl-trivial-types)))
11164 (native-inputs
2ff8b5ba 11165 `(("prove" ,sbcl-prove)))
3e736218
KCB
11166 (home-page "https://github.com/fukamachi/sxql")
11167 (synopsis "SQL generator for Common Lisp")
11168 (description "SQL generator for Common Lisp.")
11169 (license license:bsd-3))))
11170
11171(define-public cl-sxql
11172 (sbcl-package->cl-source-package sbcl-sxql))
11173
11174(define-public ecl-sxql
11175 (sbcl-package->ecl-package sbcl-sxql))
1f9999df
KCB
11176
11177(define-public sbcl-1am
11178 (let ((commit "8b1da94eca4613fd8a20bdf63f0e609e379b0ba5"))
11179 (package
11180 (name "sbcl-1am")
11181 (version (git-version "0.0" "1" commit))
11182 (source
11183 (origin
11184 (method git-fetch)
11185 (uri (git-reference
b0e7b699 11186 (url "https://github.com/lmj/1am")
1f9999df
KCB
11187 (commit commit)))
11188 (file-name (git-file-name name version))
11189 (sha256
11190 (base32
11191 "05ss4nz1jb9kb796295482b62w5cj29msfj8zis33sp2rw2vmv2g"))))
11192 (build-system asdf-build-system/sbcl)
11193 (arguments
2ff8b5ba 11194 `(#:asd-systems '("1am")))
1f9999df
KCB
11195 (home-page "https://github.com/lmj/1am")
11196 (synopsis "Minimal testing framework for Common Lisp")
11197 (description "A minimal testing framework for Common Lisp.")
11198 (license license:expat))))
11199
11200(define-public cl-1am
11201 (sbcl-package->cl-source-package sbcl-1am))
11202
11203(define-public ecl-1am
11204 (sbcl-package->ecl-package sbcl-1am))
d7c60681
GLV
11205
11206(define-public sbcl-cl-ascii-table
11207 (let ((commit "d9f5e774a56fad1b416e4dadb8f8a5b0e84094e2")
11208 (revision "1"))
11209 (package
11210 (name "sbcl-cl-ascii-table")
11211 (version (git-version "0.0.0" revision commit))
11212 (source
11213 (origin
11214 (method git-fetch)
11215 (uri (git-reference
b0e7b699 11216 (url "https://github.com/telephil/cl-ascii-table")
d7c60681
GLV
11217 (commit commit)))
11218 (file-name (git-file-name name version))
11219 (sha256
11220 (base32 "125fdif9sgl7k0ngjhxv0wjas2q27d075025hvj2rx1b1x948z4s"))))
11221 (build-system asdf-build-system/sbcl)
11222 (synopsis "Library to make ascii-art tables")
11223 (description
11224 "This is a Common Lisp library to present tabular data in ascii-art
11225tables.")
11226 (home-page "https://github.com/telephil/cl-ascii-table")
11227 (license license:expat))))
11228
11229(define-public cl-ascii-table
11230 (sbcl-package->cl-source-package sbcl-cl-ascii-table))
11231
11232(define-public ecl-cl-ascii-table
11233 (sbcl-package->ecl-package sbcl-cl-ascii-table))
64174aff
KCB
11234
11235(define-public sbcl-cl-rdkafka
11236 (package
11237 (name "sbcl-cl-rdkafka")
ea6b4b90 11238 (version "1.1.0")
64174aff
KCB
11239 (source
11240 (origin
11241 (method git-fetch)
11242 (uri (git-reference
b0e7b699 11243 (url "https://github.com/SahilKang/cl-rdkafka")
64174aff
KCB
11244 (commit (string-append "v" version))))
11245 (file-name (git-file-name name version))
11246 (sha256
11247 (base32
ea6b4b90 11248 "0z2g0k0xy8k1p9g93h8dy9wbygaq7ziwagm4yz93zk67mhc0b84v"))))
64174aff
KCB
11249 (build-system asdf-build-system/sbcl)
11250 (arguments
11251 `(#:tests? #f ; Attempts to connect to locally running Kafka
11252 #:phases
11253 (modify-phases %standard-phases
11254 (add-after 'unpack 'fix-paths
11255 (lambda* (#:key inputs #:allow-other-keys)
11256 (substitute* "src/low-level/librdkafka-bindings.lisp"
11257 (("librdkafka" all)
11258 (string-append (assoc-ref inputs "librdkafka") "/lib/"
f596b476 11259 all))))))))
64174aff
KCB
11260 (inputs
11261 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11262 ("cffi" ,sbcl-cffi)
64174aff
KCB
11263 ("librdkafka" ,librdkafka)
11264 ("lparallel" ,sbcl-lparallel)
11265 ("trivial-garbage" ,sbcl-trivial-garbage)))
11266 (home-page "https://github.com/SahilKang/cl-rdkafka")
11267 (synopsis "Common Lisp client library for Apache Kafka")
11268 (description "A Common Lisp client library for Apache Kafka.")
11269 (license license:gpl3)))
11270
11271(define-public cl-rdkafka
11272 (sbcl-package->cl-source-package sbcl-cl-rdkafka))
04dd8018 11273
e7cbcf5a
GLV
11274(define-public ecl-cl-rdkafka
11275 (sbcl-package->ecl-package sbcl-cl-rdkafka))
11276
04dd8018
PN
11277(define-public sbcl-acclimation
11278 (let ((commit "4d51150902568fcd59335f4cc4cfa022df6116a5"))
11279 (package
11280 (name "sbcl-acclimation")
11281 (version (git-version "0.0.0" "1" commit))
11282 (source
11283 (origin
11284 (method git-fetch)
11285 (uri (git-reference
11286 (url "https://github.com/robert-strandh/Acclimation")
11287 (commit commit)))
11288 (file-name (git-file-name name version))
11289 (sha256
11290 (base32
11291 "1aw7rarjl8ai57h0jxnp9hr3dka7qrs55mmbl1p6rhd6xj8mp9wq"))))
11292 (build-system asdf-build-system/sbcl)
11293 (home-page "https://github.com/robert-strandh/Acclimation")
11294 (synopsis "Internationalization library for Common Lisp")
11295 (description "This project is meant to provide tools for
11296internationalizing Common Lisp programs.
11297
11298One important aspect of internationalization is of course the language used in
11299error messages, documentation strings, etc. But with this project we provide
11300tools for all other aspects of internationalization as well, including dates,
11301weight, temperature, names of physical quantitites, etc.")
11302 (license license:bsd-2))))
11303
11304(define-public cl-acclimation
11305 (sbcl-package->cl-source-package sbcl-acclimation))
ba1727b0 11306
e7cbcf5a
GLV
11307(define-public ecl-acclimation
11308 (sbcl-package->ecl-package sbcl-acclimation))
11309
2ff8b5ba 11310(define-public sbcl-clump
ba1727b0
PN
11311 (let ((commit "1ea4dbac1cb86713acff9ae58727dd187d21048a"))
11312 (package
2ff8b5ba 11313 (name "sbcl-clump")
ba1727b0
PN
11314 (version (git-version "0.0.0" "1" commit))
11315 (source
11316 (origin
11317 (method git-fetch)
11318 (uri (git-reference
11319 (url "https://github.com/robert-strandh/Clump")
11320 (commit commit)))
11321 (file-name (git-file-name name version))
11322 (sha256
11323 (base32
11324 "1639msyagsswj85gc0wd90jgh8588j3qg5q70by9s2brf2q6w4lh"))))
ba1727b0
PN
11325 (inputs
11326 `(("acclimation" ,sbcl-acclimation)))
11327 (build-system asdf-build-system/sbcl)
11328 (home-page "https://github.com/robert-strandh/Clump")
2ff8b5ba 11329 (synopsis "Collection of tree implementations for Common Lisp")
ba1727b0
PN
11330 (description "The purpose of this library is to provide a collection of
11331implementations of trees.
11332
11333In contrast to existing libraries such as cl-containers, it does not impose a
11334particular use for the trees. Instead, it aims for a stratified design,
11335allowing client code to choose between different levels of abstraction.
11336
11337As a consequence of this policy, low-level interfaces are provided where
11338the concrete representation is exposed, but also high level interfaces
11339where the trees can be used as search trees or as trees that represent
11340sequences of objects.")
11341 (license license:bsd-2))))
106354ea 11342
409fcee9
PN
11343(define-public cl-clump
11344 (sbcl-package->cl-source-package sbcl-clump))
19a1a98f 11345
e7cbcf5a
GLV
11346(define-public ecl-clump
11347 (sbcl-package->ecl-package sbcl-clump))
11348
2ff8b5ba 11349(define-public sbcl-cluffer
19a1a98f
PN
11350 (let ((commit "4aad29c276a58a593064e79972ee4d77cae0af4a"))
11351 (package
2ff8b5ba 11352 (name "sbcl-cluffer")
19a1a98f
PN
11353 (version (git-version "0.0.0" "1" commit))
11354 (source
11355 (origin
11356 (method git-fetch)
11357 (uri (git-reference
11358 (url "https://github.com/robert-strandh/cluffer")
11359 (commit commit)))
11360 (file-name (git-file-name name version))
11361 (sha256
11362 (base32
11363 "1bcg13g7qb3dr8z50aihdjqa6miz5ivlc9wsj2csgv1km1mak2kj"))))
19a1a98f 11364 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
11365 (inputs
11366 `(("acclimation" ,sbcl-acclimation)
11367 ("clump" ,sbcl-clump)))
19a1a98f
PN
11368 (home-page "https://github.com/robert-strandh/cluffer")
11369 (synopsis "Common Lisp library providing a protocol for text-editor buffers")
11370 (description "Cluffer is a library for representing the buffer of a text
11371editor. As such, it defines a set of CLOS protocols for client code to
11372interact with the buffer contents in various ways, and it supplies different
11373implementations of those protocols for different purposes.")
11374 (license license:bsd-2))))
a4a24f66 11375
89c98c06
PN
11376(define-public cl-cluffer
11377 (sbcl-package->cl-source-package sbcl-cluffer))
8f1ab4fb 11378
e7cbcf5a
GLV
11379(define-public ecl-cluffer
11380 (sbcl-package->ecl-package sbcl-cluffer))
11381
8f1ab4fb
GLV
11382(define-public sbcl-cl-libsvm-format
11383 (let ((commit "3300f84fd8d9f5beafc114f543f9d83417c742fb")
11384 (revision "0"))
11385 (package
11386 (name "sbcl-cl-libsvm-format")
11387 (version (git-version "0.1.0" revision commit))
11388 (source
11389 (origin
11390 (method git-fetch)
11391 (uri (git-reference
b0e7b699 11392 (url "https://github.com/masatoi/cl-libsvm-format")
8f1ab4fb
GLV
11393 (commit commit)))
11394 (file-name (git-file-name name version))
11395 (sha256
11396 (base32
11397 "0284aj84xszhkhlivaigf9qj855fxad3mzmv3zfr0qzb5k0nzwrg"))))
11398 (build-system asdf-build-system/sbcl)
11399 (native-inputs
2ff8b5ba 11400 `(("prove" ,sbcl-prove)))
8f1ab4fb
GLV
11401 (inputs
11402 `(("alexandria" ,sbcl-alexandria)))
11403 (synopsis "LibSVM data format reader for Common Lisp")
11404 (description
11405 "This Common Lisp library provides a fast reader for data in LibSVM
11406format.")
11407 (home-page "https://github.com/masatoi/cl-libsvm-format")
11408 (license license:expat))))
11409
11410(define-public cl-libsvm-format
11411 (sbcl-package->cl-source-package sbcl-cl-libsvm-format))
11412
11413(define-public ecl-cl-libsvm-format
11414 (sbcl-package->ecl-package sbcl-cl-libsvm-format))
11415
11416(define-public sbcl-cl-online-learning
e11055f0
SH
11417 (let ((commit "87fbef8a340219e853adb3a5bf44a0470da76964")
11418 (revision "1"))
8f1ab4fb
GLV
11419 (package
11420 (name "sbcl-cl-online-learning")
11421 (version (git-version "0.5" revision commit))
11422 (source
11423 (origin
11424 (method git-fetch)
11425 (uri (git-reference
b0e7b699 11426 (url "https://github.com/masatoi/cl-online-learning")
8f1ab4fb 11427 (commit commit)))
e11055f0 11428 (file-name (git-file-name "cl-online-learning" version))
8f1ab4fb
GLV
11429 (sha256
11430 (base32
e11055f0 11431 "1lfq04lnxivx59nq5dd02glyqsqzf3vdn4s9b8wnaln5fs8g2ph9"))))
8f1ab4fb
GLV
11432 (build-system asdf-build-system/sbcl)
11433 (native-inputs
2ff8b5ba 11434 `(("prove" ,sbcl-prove)))
8f1ab4fb
GLV
11435 (inputs
11436 `(("cl-libsvm-format" ,sbcl-cl-libsvm-format)
11437 ("cl-store" ,sbcl-cl-store)))
11438 (arguments
e11055f0
SH
11439 `(#:test-asd-file "cl-online-learning-test.asd"
11440 #:asd-systems '("cl-online-learning-test"
11441 "cl-online-learning")))
11442 (home-page "https://github.com/masatoi/cl-online-learning")
8f1ab4fb
GLV
11443 (synopsis "Online Machine Learning for Common Lisp")
11444 (description
11445 "This library contains a collection of machine learning algorithms for
11446online linear classification written in Common Lisp.")
8f1ab4fb
GLV
11447 (license license:expat))))
11448
11449(define-public cl-online-learning
11450 (sbcl-package->cl-source-package sbcl-cl-online-learning))
11451
11452(define-public ecl-cl-online-learning
11453 (sbcl-package->ecl-package sbcl-cl-online-learning))
11454
b41d8a70
SH
11455(define-public sbcl-cl-mpg123
11456 (let ((commit "5f042c839d2ea4a2ff2a7b60c839d8633d64161d")
11457 (revision "1"))
11458 (package
11459 (name "sbcl-cl-mpg123")
11460 (version (git-version "1.0.0" revision commit))
11461 (source
11462 (origin
11463 (method git-fetch)
11464 (uri (git-reference
11465 (url "https://github.com/Shirakumo/cl-mpg123")
11466 (commit commit)))
11467 (file-name (git-file-name "cl-mpg123" version))
11468 (sha256
11469 (base32 "1hl721xaczxck008ax2y3jpkm509ry1sg3lklh2k76764m3ndrjf"))
11470 (modules '((guix build utils)))
11471 (snippet
11472 '(begin
11473 ;; Remove bundled pre-compiled libraries.
11474 (delete-file-recursively "static")
11475 #t))))
11476 (build-system asdf-build-system/sbcl)
11477 (arguments
11478 `(#:asd-files '("cl-mpg123.asd" "cl-mpg123-example.asd")
11479 #:asd-systems '("cl-mpg123" "cl-mpg123-example")
11480 #:phases
11481 (modify-phases %standard-phases
11482 (add-after 'unpack 'fix-paths
11483 (lambda* (#:key inputs #:allow-other-keys)
11484 (substitute* "low-level.lisp"
11485 (("libmpg123.so" all)
11486 (string-append (assoc-ref inputs "libmpg123")
11487 "/lib/" all))))))))
11488 (inputs
11489 `(("cffi" ,sbcl-cffi)
11490 ("cl-out123" ,sbcl-cl-out123)
11491 ("documentation-utils" ,sbcl-documentation-utils)
11492 ("libmpg123" ,mpg123)
11493 ("trivial-features" ,sbcl-trivial-features)
11494 ("trivial-garbage" ,sbcl-trivial-garbage)
11495 ("verbose" ,sbcl-verbose)))
11496 (home-page "https://shirakumo.github.io/cl-mpg123/")
11497 (synopsis "Common Lisp bindings to libmpg123")
11498 (description
11499 "This is a bindings and wrapper library to @code{libmpg123} allowing for
11500convenient, extensive, and fast decoding of MPEG1/2/3 (most prominently mp3)
11501files.")
11502 (license license:zlib))))
11503
11504(define-public ecl-cl-mpg123
11505 (sbcl-package->ecl-package sbcl-cl-mpg123))
11506
11507(define-public cl-mpg123
11508 (sbcl-package->cl-source-package sbcl-cl-mpg123))
11509
9c8ed43d
SH
11510(define-public sbcl-cl-out123
11511 (let ((commit "6b58d3f8c2a28ad09059ac4c60fb3c781b9b421b")
11512 (revision "1"))
11513 (package
11514 (name "sbcl-cl-out123")
11515 (version (git-version "1.0.0" revision commit))
11516 (source
11517 (origin
11518 (method git-fetch)
11519 (uri (git-reference
11520 (url "https://github.com/Shirakumo/cl-out123")
11521 (commit commit)))
11522 (file-name (git-file-name "cl-out123" version))
11523 (sha256
11524 (base32 "0mdwgfax6sq68wvdgjjp78i40ah7wqkpqnvaq8a1c509k7ghdgv1"))
11525 (modules '((guix build utils)))
11526 (snippet
11527 '(begin
11528 ;; Remove bundled pre-compiled libraries.
11529 (delete-file-recursively "static")
11530 #t))))
11531 (build-system asdf-build-system/sbcl)
11532 (arguments
11533 `(#:phases
11534 (modify-phases %standard-phases
11535 (add-after 'unpack 'fix-paths
11536 (lambda* (#:key inputs #:allow-other-keys)
11537 (substitute* "low-level.lisp"
11538 (("libout123.so" all)
11539 (string-append (assoc-ref inputs "libout123")
11540 "/lib/" all)))))
11541 ;; NOTE: (Sharlatan-20210129T134529+0000): ECL package `ext' has no
11542 ;; exported macro `without-interrupts' it's moved to `mp' package
11543 ;; https://github.com/Shirakumo/cl-out123/issues/2
11544 ;; https://gitlab.com/embeddable-common-lisp/ecl/-/blob/develop/src/lsp/mp.lsp
11545 (add-after 'unpack 'fix-ecl-package-name
11546 (lambda _
11547 (substitute* "wrapper.lisp"
11548 (("ext:without-interrupts.*") "mp:without-interrupts\n"))
11549 #t)))))
11550 (inputs
11551 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
11552 ("cffi" ,sbcl-cffi)
11553 ("documentation-utils" ,sbcl-documentation-utils)
11554 ("libout123" ,mpg123)
11555 ("trivial-features" ,sbcl-trivial-features)
11556 ("trivial-garbage" ,sbcl-trivial-garbage)))
11557 (home-page "https://shirakumo.github.io/cl-out123/")
11558 (synopsis "Common Lisp bindings to libout123")
11559 (description
11560 "This is a bindings library to @code{libout123} which allows easy
11561cross-platform audio playback.")
11562 (license license:zlib))))
11563
11564(define-public ecl-cl-out123
11565 (sbcl-package->ecl-package sbcl-cl-out123))
11566
11567(define-public cl-out123
11568 (sbcl-package->cl-source-package sbcl-cl-out123))
11569
8f1ab4fb 11570(define-public sbcl-cl-random-forest
4e7d5e32
GLV
11571 (let ((commit "fedb36ce99bb6f4d7e3a7dd6d8b058f331308f91")
11572 (revision "1"))
8f1ab4fb
GLV
11573 (package
11574 (name "sbcl-cl-random-forest")
11575 (version (git-version "0.1" revision commit))
11576 (source
11577 (origin
11578 (method git-fetch)
11579 (uri (git-reference
b0e7b699 11580 (url "https://github.com/masatoi/cl-random-forest")
8f1ab4fb
GLV
11581 (commit commit)))
11582 (file-name (git-file-name name version))
11583 (sha256
11584 (base32
4e7d5e32 11585 "0wqh4dxy5hrvm14jgyfypwhdw35f24rsksid4blz5a6l2z16rlmq"))))
8f1ab4fb
GLV
11586 (build-system asdf-build-system/sbcl)
11587 (native-inputs
11588 `(("prove" ,sbcl-prove)
8f1ab4fb
GLV
11589 ("trivial-garbage" ,sbcl-trivial-garbage)))
11590 (inputs
11591 `(("alexandria" ,sbcl-alexandria)
11592 ("cl-libsvm-format" ,sbcl-cl-libsvm-format)
11593 ("cl-online-learning" ,sbcl-cl-online-learning)
11594 ("lparallel" ,sbcl-lparallel)))
11595 (arguments
11596 `(#:tests? #f)) ; The tests download data from the Internet
11597 (synopsis "Random Forest and Global Refinement for Common Lisp")
11598 (description
11599 "CL-random-forest is an implementation of Random Forest for multiclass
11600classification and univariate regression written in Common Lisp. It also
11601includes an implementation of Global Refinement of Random Forest.")
11602 (home-page "https://github.com/masatoi/cl-random-forest")
11603 (license license:expat))))
11604
11605(define-public cl-random-forest
11606 (sbcl-package->cl-source-package sbcl-cl-random-forest))
11607
11608(define-public ecl-cl-random-forest
11609 (sbcl-package->ecl-package sbcl-cl-random-forest))
5a2997e5
GLV
11610
11611(define-public sbcl-bordeaux-fft
11612 (let ((commit "4a1f5600cae59bdabcb32de4ee2d7d73a9450d6e")
11613 (revision "0"))
11614 (package
11615 (name "sbcl-bordeaux-fft")
11616 (version (git-version "1.0.1" revision commit))
11617 (source
11618 (origin
11619 (method git-fetch)
11620 (uri (git-reference
b0e7b699 11621 (url "https://github.com/ahefner/bordeaux-fft")
5a2997e5
GLV
11622 (commit commit)))
11623 (file-name (git-file-name name version))
11624 (sha256
11625 (base32 "0j584w6kq2k6r8lp2i14f9605rxhp3r15s33xs08iz1pndn6iwqf"))))
11626 (build-system asdf-build-system/sbcl)
11627 (home-page "http://vintage-digital.com/hefner/software/bordeaux-fft/")
11628 (synopsis "Fast Fourier Transform for Common Lisp")
11629 (description
11630 "The Bordeaux-FFT library provides a reasonably efficient implementation
11631of the Fast Fourier Transform and its inverse for complex-valued inputs, in
11632portable Common Lisp.")
11633 (license license:gpl2+))))
11634
11635(define-public cl-bordeaux-fft
11636 (sbcl-package->cl-source-package sbcl-bordeaux-fft))
11637
11638(define-public ecl-bordeaux-fft
11639 (sbcl-package->ecl-package sbcl-bordeaux-fft))
c7ce30cd
GLV
11640
11641(define-public sbcl-napa-fft3
11642 (let ((commit "f2d9614c7167da327c9ceebefb04ff6eae2d2236")
11643 (revision "0"))
11644 (package
11645 (name "sbcl-napa-fft3")
11646 (version (git-version "0.0.1" revision commit))
11647 (source
11648 (origin
11649 (method git-fetch)
11650 (uri (git-reference
b0e7b699 11651 (url "https://github.com/pkhuong/Napa-FFT3")
c7ce30cd
GLV
11652 (commit commit)))
11653 (file-name (git-file-name name version))
11654 (sha256
11655 (base32 "1hxjf599xgwm28gbryy7q96j9ys6hfszmv0qxpr5698hxnhknscp"))))
11656 (build-system asdf-build-system/sbcl)
11657 (home-page "https://github.com/pkhuong/Napa-FFT3")
11658 (synopsis "Fast Fourier Transform routines in Common Lisp")
11659 (description
11660 "Napa-FFT3 provides Discrete Fourier Transform (DFT) routines, but also
11661buildings blocks to express common operations that involve DFTs: filtering,
11662convolutions, etc.")
11663 (license license:bsd-3))))
11664
11665(define-public cl-napa-fft3
11666 (sbcl-package->cl-source-package sbcl-napa-fft3))
2020a056
GLV
11667
11668(define-public sbcl-cl-tga
11669 (let ((commit "4dc2f7b8a259b9360862306640a07a23d4afaacc")
11670 (revision "0"))
11671 (package
11672 (name "sbcl-cl-tga")
11673 (version (git-version "0.0.0" revision commit))
11674 (source
11675 (origin
11676 (method git-fetch)
11677 (uri (git-reference
11678 (url "https://github.com/fisxoj/cl-tga")
11679 (commit commit)))
11680 (file-name (git-file-name name version))
11681 (sha256
11682 (base32 "03k3npmn0xd3fd2m7vwxph82av2xrfb150imqrinlzqmzvz1v1br"))))
11683 (build-system asdf-build-system/sbcl)
11684 (home-page "https://github.com/fisxoj/cl-tga")
11685 (synopsis "TGA file loader for Common Lisp")
11686 (description
11687 "Cl-tga was written to facilitate loading @emph{.tga} files into OpenGL
11688programs. It's a very simple library, and, at the moment, only supports
11689non-RLE encoded forms of the files.")
11690 (license license:expat))))
11691
11692(define-public cl-tga
11693 (sbcl-package->cl-source-package sbcl-cl-tga))
11694
11695(define-public ecl-cl-tga
11696 (sbcl-package->ecl-package sbcl-cl-tga))
31c67a85
GLV
11697
11698(define-public sbcl-com.gigamonkeys.binary-data
11699 (let ((commit "22e908976d7f3e2318b7168909f911b4a00963ee")
11700 (revision "0"))
11701 (package
11702 (name "sbcl-com.gigamonkeys.binary-data")
11703 (version (git-version "0.0.0" revision commit))
11704 (source
11705 (origin
11706 (method git-fetch)
11707 (uri (git-reference
11708 (url "https://github.com/gigamonkey/monkeylib-binary-data")
11709 (commit commit)))
11710 (file-name (git-file-name name version))
11711 (sha256
11712 (base32 "072v417vmcnvmyh8ddq9vmwwrizm7zwz9dpzi14qy9nsw8q649zw"))))
11713 (build-system asdf-build-system/sbcl)
11714 (inputs
11715 `(("alexandria" ,sbcl-alexandria)))
11716 (home-page "https://github.com/gigamonkey/monkeylib-binary-data")
11717 (synopsis "Common Lisp library for reading and writing binary data")
11718 (description
11719 "This a Common Lisp library for reading and writing binary data. It is
11720based on code from chapter 24 of the book @emph{Practical Common Lisp}.")
11721 (license license:bsd-3))))
11722
11723(define-public cl-com.gigamonkeys.binary-data
11724 (sbcl-package->cl-source-package sbcl-com.gigamonkeys.binary-data))
11725
11726(define-public ecl-com.gigamonkeys.binary-data
11727 (sbcl-package->ecl-package sbcl-com.gigamonkeys.binary-data))
556daf64
GLV
11728
11729(define-public sbcl-deflate
11730 (package
11731 (name "sbcl-deflate")
11732 (version "1.0.3")
11733 (source
11734 (origin
11735 (method git-fetch)
11736 (uri (git-reference
11737 (url "https://github.com/pmai/Deflate")
11738 (commit (string-append "release-" version))))
11739 (file-name (git-file-name name version))
11740 (sha256
11741 (base32 "1jpdjnxh6cw2d8hk70r2sxn92is52s9b855irvwkdd777fdciids"))))
11742 (build-system asdf-build-system/sbcl)
11743 (home-page "https://github.com/pmai/Deflate")
11744 (synopsis "Native deflate decompression for Common Lisp")
11745 (description
11746 "This library is an implementation of Deflate (RFC 1951) decompression,
11747with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952)
11748wrappers of deflate streams. It currently does not handle compression.")
11749 (license license:expat)))
11750
11751(define-public cl-deflate
11752 (sbcl-package->cl-source-package sbcl-deflate))
11753
11754(define-public ecl-deflate
11755 (sbcl-package->ecl-package sbcl-deflate))
7387c090
GLV
11756
11757(define-public sbcl-skippy
11758 (let ((commit "e456210202ca702c792292c5060a264d45e47090")
11759 (revision "0"))
11760 (package
11761 (name "sbcl-skippy")
11762 (version (git-version "1.3.12" revision commit))
11763 (source
11764 (origin
11765 (method git-fetch)
11766 (uri (git-reference
11767 (url "https://github.com/xach/skippy")
11768 (commit commit)))
11769 (file-name (git-file-name name version))
11770 (sha256
11771 (base32 "1sxbn5nh24qpx9w64x8mhp259cxcl1x8p126wk3b91ijjsj7l5vj"))))
11772 (build-system asdf-build-system/sbcl)
11773 (home-page "https://xach.com/lisp/skippy/")
11774 (synopsis "Common Lisp library for GIF images")
11775 (description
11776 "Skippy is a Common Lisp library to read and write GIF image files.")
11777 (license license:bsd-2))))
11778
11779(define-public cl-skippy
11780 (sbcl-package->cl-source-package sbcl-skippy))
11781
11782(define-public ecl-skippy
11783 (sbcl-package->ecl-package sbcl-skippy))
ec2c73b8
GLV
11784
11785(define-public sbcl-cl-freetype2
11786 (let ((commit "96058da730b4812df916c1f4ee18c99b3b15a3de")
11787 (revision "0"))
11788 (package
11789 (name "sbcl-cl-freetype2")
11790 (version (git-version "1.1" revision commit))
11791 (source
11792 (origin
11793 (method git-fetch)
11794 (uri (git-reference
11795 (url "https://github.com/rpav/cl-freetype2")
11796 (commit commit)))
11797 (file-name (git-file-name name version))
11798 (sha256
11799 (base32 "0f8darhairgxnb5bzqcny7nh7ss3471bdzix5rzcyiwdbr5kymjl"))))
11800 (build-system asdf-build-system/sbcl)
11801 (native-inputs
11802 `(("fiveam" ,sbcl-fiveam)))
11803 (inputs
11804 `(("alexandria" ,sbcl-alexandria)
11805 ("cffi" ,sbcl-cffi)
ec2c73b8
GLV
11806 ("freetype" ,freetype)
11807 ("trivial-garbage" ,sbcl-trivial-garbage)))
11808 (arguments
11809 `(#:phases
11810 (modify-phases %standard-phases
11811 (add-after 'unpack 'fix-paths
11812 (lambda* (#:key inputs #:allow-other-keys)
11813 (substitute* "src/ffi/ft2-lib.lisp"
11814 (("\"libfreetype\"")
11815 (string-append "\"" (assoc-ref inputs "freetype")
11816 "/lib/libfreetype\"")))
11817 (substitute* "src/ffi/grovel/grovel-freetype2.lisp"
11818 (("-I/usr/include/freetype")
11819 (string-append "-I" (assoc-ref inputs "freetype")
11820 "/include/freetype")))
11821 #t)))))
11822 (home-page "https://github.com/rpav/cl-freetype2")
11823 (synopsis "Common Lisp bindings for Freetype 2")
11824 (description
11825 "This is a general Freetype 2 wrapper for Common Lisp using CFFI. It's
11826geared toward both using Freetype directly by providing a simplified API, as
11827well as providing access to the underlying C structures and functions for use
11828with other libraries which may also use Freetype.")
11829 (license license:bsd-3))))
11830
11831(define-public cl-freetype2
11832 (sbcl-package->cl-source-package sbcl-cl-freetype2))
11833
11834(define-public ecl-cl-freetype2
11835 (sbcl-package->ecl-package sbcl-cl-freetype2))
fc748ff0
GLV
11836
11837(define-public sbcl-opticl-core
11838 (let ((commit "b7cd13d26df6b824b216fbc360dc27bfadf04999")
11839 (revision "0"))
11840 (package
11841 (name "sbcl-opticl-core")
11842 (version (git-version "0.0.0" revision commit))
11843 (source
11844 (origin
11845 (method git-fetch)
11846 (uri (git-reference
11847 (url "https://github.com/slyrus/opticl-core")
11848 (commit commit)))
11849 (file-name (git-file-name name version))
11850 (sha256
11851 (base32 "0458bllabcdjghfrqx6aki49c9qmvfmkk8jl75cfpi7q0i12kh95"))))
11852 (build-system asdf-build-system/sbcl)
11853 (inputs
11854 `(("alexandria" ,sbcl-alexandria)))
11855 (home-page "https://github.com/slyrus/opticl-core")
11856 (synopsis "Core classes and pixel access macros for Opticl")
11857 (description
11858 "This Common Lisp library contains the core classes and pixel access
11859macros for the Opticl image processing library.")
11860 (license license:bsd-2))))
11861
11862(define-public cl-opticl-core
11863 (sbcl-package->cl-source-package sbcl-opticl-core))
11864
11865(define-public ecl-opticl-core
11866 (sbcl-package->ecl-package sbcl-opticl-core))
1c1b0532
GLV
11867
11868(define-public sbcl-retrospectiff
11869 (let ((commit "c2a69d77d5010f8cdd9045b3e36a08a73da5d321")
11870 (revision "0"))
11871 (package
11872 (name "sbcl-retrospectiff")
11873 (version (git-version "0.2" revision commit))
11874 (source
11875 (origin
11876 (method git-fetch)
11877 (uri (git-reference
11878 (url "https://github.com/slyrus/retrospectiff")
11879 (commit commit)))
11880 (file-name (git-file-name name version))
11881 (sha256
11882 (base32 "0qsn9hpd8j2kp43dk05j8dczz9zppdff5rrclbp45n3ksk9inw8i"))))
11883 (build-system asdf-build-system/sbcl)
11884 (native-inputs
11885 `(("fiveam" ,sbcl-fiveam)))
11886 (inputs
11887 `(("cl-jpeg" ,sbcl-cl-jpeg)
11888 ("com.gigamonkeys.binary-data" ,sbcl-com.gigamonkeys.binary-data)
11889 ("deflate" ,sbcl-deflate)
11890 ("flexi-streams" ,sbcl-flexi-streams)
11891 ("ieee-floats" ,sbcl-ieee-floats)
11892 ("opticl-core" ,sbcl-opticl-core)))
11893 (home-page "https://github.com/slyrus/retrospectiff")
11894 (synopsis "Common Lisp library for TIFF images")
11895 (description
11896 "Retrospectiff is a common lisp library for reading and writing images
11897in the TIFF (Tagged Image File Format) format.")
11898 (license license:bsd-2))))
11899
2ff8b5ba
GLV
11900(define-public cl-retrospectif
11901 (sbcl-package->cl-source-package sbcl-retrospectiff))
b0e7bc35 11902
2ff8b5ba
GLV
11903(define-public ecl-retrospectiff
11904 (sbcl-package->ecl-package sbcl-retrospectiff))
b736e9ba 11905
2ff8b5ba
GLV
11906(define-public sbcl-mmap
11907 (let ((commit "ba2e98c67e25f0fb8ff838238561120a23903ce7")
b736e9ba
GLV
11908 (revision "0"))
11909 (package
2ff8b5ba
GLV
11910 (name "sbcl-mmap")
11911 (version (git-version "1.0.0" revision commit))
b736e9ba
GLV
11912 (source
11913 (origin
11914 (method git-fetch)
11915 (uri (git-reference
2ff8b5ba 11916 (url "https://github.com/Shinmera/mmap")
b736e9ba
GLV
11917 (commit commit)))
11918 (file-name (git-file-name name version))
11919 (sha256
2ff8b5ba 11920 (base32 "0qd0xp20i1pcfn12kkapv9pirb6hd4ns7kz4zf1mmjwykpsln96q"))))
b736e9ba
GLV
11921 (build-system asdf-build-system/sbcl)
11922 (native-inputs
b736e9ba 11923 `(("alexandria" ,sbcl-alexandria)
2ff8b5ba
GLV
11924 ("cffi" ,sbcl-cffi)
11925 ("parachute" ,sbcl-parachute)
11926 ("trivial-features" ,sbcl-trivial-features)))
11927 (inputs
11928 `(("cffi" ,sbcl-cffi)
11929 ("documentation-utils" ,sbcl-documentation-utils)))
11930 (home-page "https://shinmera.github.io/mmap/")
11931 (synopsis "File memory mapping for Common Lisp")
b736e9ba 11932 (description
2ff8b5ba
GLV
11933 "This is a utility library providing access to the @emph{mmap} family of
11934functions in a portable way. It allows you to directly map a file into the
11935address space of your process without having to manually read it into memory
11936sequentially. Typically this is much more efficient for files that are larger
11937than a few Kb.")
11938 (license license:zlib))))
b736e9ba 11939
2ff8b5ba
GLV
11940(define-public cl-mmap
11941 (sbcl-package->cl-source-package sbcl-mmap))
d0a6906d 11942
2ff8b5ba
GLV
11943(define-public ecl-mmap
11944 (sbcl-package->ecl-package sbcl-mmap))
11945
11946(define-public sbcl-3bz
13337a2f
SH
11947 (let ((commit "569614c40408f3aefc77ba233e0e4bd66d3850ad")
11948 (revision "1"))
d0a6906d 11949 (package
2ff8b5ba
GLV
11950 (name "sbcl-3bz")
11951 (version (git-version "0.0.0" revision commit))
d0a6906d
GLV
11952 (source
11953 (origin
11954 (method git-fetch)
11955 (uri (git-reference
2ff8b5ba 11956 (url "https://github.com/3b/3bz")
d0a6906d
GLV
11957 (commit commit)))
11958 (file-name (git-file-name name version))
11959 (sha256
13337a2f 11960 (base32 "0kvvlvf50jhhw1s510f3clpr1a68632bq6d698yxcrx722igcrg4"))))
d0a6906d
GLV
11961 (build-system asdf-build-system/sbcl)
11962 (inputs
11963 `(("alexandria" ,sbcl-alexandria)
2ff8b5ba
GLV
11964 ("babel" ,sbcl-babel)
11965 ("cffi" ,sbcl-cffi)
11966 ("mmap" ,sbcl-mmap)
11967 ("nibbles" ,sbcl-nibbles)
11968 ("trivial-features" ,sbcl-trivial-features)))
11969 (arguments
13337a2f 11970 ;; FIXME: #41437 - Build fails when package name starts from a digit
2ff8b5ba
GLV
11971 `(#:asd-systems '("3bz")))
11972 (home-page "https://github.com/3b/3bz")
11973 (synopsis "Deflate decompression for Common Lisp")
d0a6906d 11974 (description
2ff8b5ba
GLV
11975 "3bz is an implementation of Deflate decompression (RFC 1951) optionally
11976with zlib (RFC 1950) or gzip (RFC 1952) wrappers, with support for reading from
11977foreign pointers (for use with mmap and similar, etc), and from CL octet
11978vectors and streams.")
11979 (license license:expat))))
1a1b584b 11980
2ff8b5ba
GLV
11981(define-public cl-3bz
11982 (sbcl-package->cl-source-package sbcl-3bz))
efa88f90 11983
2ff8b5ba
GLV
11984(define-public ecl-3bz
11985 (sbcl-package->ecl-package sbcl-3bz))
9757de5d 11986
2ff8b5ba 11987(define-public sbcl-zpb-exif
9757de5d 11988 (package
2ff8b5ba
GLV
11989 (name "sbcl-zpb-exif")
11990 (version "1.2.4")
11991 (source
11992 (origin
11993 (method git-fetch)
11994 (uri (git-reference
11995 (url "https://github.com/xach/zpb-exif")
11996 (commit (string-append "release-" version))))
11997 (file-name (git-file-name name version))
11998 (sha256
11999 (base32 "15s227jhby55cisz14xafb0p1ws2jmrg2rrbbd00lrb97im84hy6"))))
12000 (build-system asdf-build-system/sbcl)
12001 (home-page "https://xach.com/lisp/zpb-exif/")
12002 (synopsis "EXIF information extractor for Common Lisp")
12003 (description
12004 "This is a Common Lisp library to extract EXIF information from image
12005files.")
12006 (license license:bsd-2)))
000ee6e5 12007
2ff8b5ba
GLV
12008(define-public cl-zpb-exif
12009 (sbcl-package->cl-source-package sbcl-zpb-exif))
d92e2649 12010
2ff8b5ba
GLV
12011(define-public ecl-zpb-exif
12012 (sbcl-package->ecl-package sbcl-zpb-exif))
c93bd9f8 12013
2ff8b5ba 12014(define-public sbcl-pngload
6591e184
SH
12015 (let ((commit "91f1d703c65bb6a94d6fee06ddbbbbbc5778b71f")
12016 (revision "2"))
12017 (package
12018 (name "sbcl-pngload")
12019 (version (git-version "2.0.0" revision commit))
12020 (source
12021 (origin
12022 (method git-fetch)
12023 (uri (git-reference
12024 (url "https://git.mfiano.net/mfiano/pngload.git")
12025 (commit commit)))
12026 (file-name (git-file-name "pngload" version))
12027 (sha256
12028 (base32 "0s94fdbrbqj12qvgyn2g4lfwvz7qhhzbclrpz5ni7adwxgrmvxl1"))))
12029 (build-system asdf-build-system/sbcl)
12030 (inputs
12031 `(("3bz" ,sbcl-3bz)
12032 ("alexandria" ,sbcl-alexandria)
12033 ("cffi" ,sbcl-cffi)
12034 ("mmap" ,sbcl-mmap)
12035 ("parse-float" ,sbcl-parse-float)
12036 ("static-vectors" ,sbcl-static-vectors)
12037 ("swap-bytes" ,sbcl-swap-bytes)
12038 ("zpb-exif" ,sbcl-zpb-exif)))
12039 (arguments
12040 ;; Test suite disabled because of a dependency cycle.
12041 ;; pngload tests depend on opticl which depends on pngload.
12042 '(#:tests? #f))
12043 (home-page "https://git.mfiano.net/mfiano/pngload.git")
12044 (synopsis "PNG image decoder for Common Lisp")
12045 (description
12046 "This is a Common Lisp library to load images in the PNG image format,
2ff8b5ba 12047both from files on disk, or streams in memory.")
6591e184 12048 (license license:expat))))
92da537c 12049
2ff8b5ba
GLV
12050(define-public cl-pngload
12051 (sbcl-package->cl-source-package sbcl-pngload))
5d2abf9f 12052
2ff8b5ba
GLV
12053(define-public ecl-pngload
12054 (sbcl-package->ecl-package sbcl-pngload))
e8875462 12055
2ff8b5ba
GLV
12056(define-public sbcl-opticl
12057 (let ((commit "e8684416eca2e78e82a7b436d436ef2ea24c019d")
12058 (revision "0"))
12059 (package
12060 (name "sbcl-opticl")
12061 (version (git-version "0.0.0" revision commit))
12062 (source
12063 (origin
12064 (method git-fetch)
12065 (uri (git-reference
12066 (url "https://github.com/slyrus/opticl")
12067 (commit commit)))
12068 (file-name (git-file-name name version))
12069 (sha256
12070 (base32 "03rirnnhhisjbimlmpi725h1d3x0cfv00r57988am873dyzawmm1"))))
12071 (build-system asdf-build-system/sbcl)
12072 (native-inputs
12073 `(("fiveam" ,sbcl-fiveam)))
12074 (inputs
12075 `(("alexandria" ,sbcl-alexandria)
12076 ("cl-jpeg" ,sbcl-cl-jpeg)
12077 ("cl-tga" ,sbcl-cl-tga)
12078 ("png-read" ,sbcl-png-read)
12079 ("pngload" ,sbcl-pngload)
12080 ("retrospectiff" ,sbcl-retrospectiff)
12081 ("skippy" ,sbcl-skippy)
12082 ("zpng" ,sbcl-zpng)))
3f8bbf7c
GLV
12083 (arguments
12084 '(#:asd-files '("opticl.asd")))
2ff8b5ba
GLV
12085 (home-page "https://github.com/slyrus/opticl")
12086 (synopsis "Image processing library for Common Lisp")
12087 (description
12088 "Opticl is a Common Lisp library for representing, processing, loading,
12089and saving 2-dimensional pixel-based images.")
12090 (license license:bsd-2))))
8e0e7f35 12091
2ff8b5ba
GLV
12092(define-public cl-opticl
12093 (sbcl-package->cl-source-package sbcl-opticl))
8afd2d10 12094
e7cbcf5a
GLV
12095(define-public ecl-opticl
12096 (sbcl-package->ecl-package sbcl-opticl))
12097
8afd2d10 12098(define-public sbcl-mcclim
6af3d85a
GLV
12099 (let ((commit "04cc542dd4b461b9d56406e40681d1a8f080730f")
12100 (revision "1"))
0f935e95 12101 (package
2ff8b5ba
GLV
12102 (name "sbcl-mcclim")
12103 (version (git-version "0.9.7" revision commit))
12104 (source
12105 (origin
12106 (method git-fetch)
12107 (uri (git-reference
12108 (url "https://github.com/mcclim/mcclim")
12109 (commit commit)))
12110 (file-name (git-file-name name version))
12111 (sha256
6af3d85a 12112 (base32 "1xjly8i62z72hfhlnz5kjd9i8xhrwckc7avyizxvhih67pkjmsx0"))))
2ff8b5ba 12113 (build-system asdf-build-system/sbcl)
0f935e95 12114 (native-inputs
2ff8b5ba 12115 `(("fiveam" ,sbcl-fiveam)
0f935e95
GLV
12116 ("pkg-config" ,pkg-config)))
12117 (inputs
2ff8b5ba
GLV
12118 `(("alexandria" ,sbcl-alexandria)
12119 ("babel" ,sbcl-babel)
12120 ("bordeaux-threads" ,sbcl-bordeaux-threads)
12121 ("cl-freetype2" ,sbcl-cl-freetype2)
12122 ("cl-pdf" ,sbcl-cl-pdf)
12123 ("cffi" ,sbcl-cffi)
12124 ("cl-unicode" ,sbcl-cl-unicode)
12125 ("cl-vectors" ,sbcl-cl-vectors)
12126 ("closer-mop" ,sbcl-closer-mop)
12127 ("clx" ,sbcl-clx)
12128 ("flexi-streams" ,sbcl-flexi-streams)
12129 ("flexichain" ,sbcl-flexichain)
12130 ("font-dejavu" ,font-dejavu)
0f935e95
GLV
12131 ("fontconfig" ,fontconfig)
12132 ("freetype" ,freetype)
12133 ("harfbuzz" ,harfbuzz)
2ff8b5ba
GLV
12134 ("log4cl" ,sbcl-log4cl)
12135 ("opticl" ,sbcl-opticl)
12136 ("spatial-trees" ,sbcl-spatial-trees)
12137 ("swank" ,sbcl-slime-swank)
12138 ("trivial-features" ,sbcl-trivial-features)
12139 ("trivial-garbage" ,sbcl-trivial-garbage)
12140 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
12141 ("zpb-ttf" ,sbcl-zpb-ttf)))
12142 (arguments
3f8bbf7c 12143 '(#:asd-systems '("mcclim"
2ff8b5ba
GLV
12144 "clim-examples")
12145 #:phases
12146 (modify-phases %standard-phases
12147 (add-after 'unpack 'fix-paths
12148 (lambda* (#:key inputs #:allow-other-keys)
12149 ;; mcclim-truetype uses DejaVu as default font and
12150 ;; sets the path at build time.
12151 (substitute* "Extensions/fonts/fontconfig.lisp"
12152 (("/usr/share/fonts/truetype/dejavu/")
12153 (string-append (assoc-ref inputs "font-dejavu")
12154 "/share/fonts/truetype/")))
12155 (substitute* "Extensions/fontconfig/src/functions.lisp"
12156 (("libfontconfig\\.so")
12157 (string-append (assoc-ref inputs "fontconfig")
12158 "/lib/libfontconfig.so")))
12159 (substitute* "Extensions/harfbuzz/src/functions.lisp"
12160 (("libharfbuzz\\.so")
12161 (string-append (assoc-ref inputs "harfbuzz")
12162 "/lib/libharfbuzz.so")))
12163 #t))
12164 (add-after 'unpack 'fix-build
12165 (lambda _
12166 ;; The cffi-grovel system does not get loaded automatically,
12167 ;; so we load it explicitly.
12168 (substitute* "Extensions/fontconfig/mcclim-fontconfig.asd"
12169 (("\\(asdf:defsystem #:mcclim-fontconfig" all)
12170 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
12171 (substitute* "Extensions/harfbuzz/mcclim-harfbuzz.asd"
12172 (("\\(asdf:defsystem #:mcclim-harfbuzz" all)
12173 (string-append "(asdf:load-system :cffi-grovel)\n" all)))
12174 #t)))))
12175 (home-page "https://common-lisp.net/project/mcclim/")
12176 (synopsis "Common Lisp GUI toolkit")
12177 (description
12178 "McCLIM is an implementation of the @emph{Common Lisp Interface Manager
12179specification}, a toolkit for writing GUIs in Common Lisp.")
12180 (license license:lgpl2.1+))))
300b683f 12181
2ff8b5ba
GLV
12182(define-public cl-mcclim
12183 (sbcl-package->cl-source-package sbcl-mcclim))
4daa1218 12184
e7cbcf5a
GLV
12185(define-public ecl-mcclim
12186 (sbcl-package->ecl-package sbcl-mcclim))
12187
de681bdb
AK
12188(define-public sbcl-cl-inflector
12189 (let ((commit "f1ab16919ccce3bd82a0042677d9616dde2034fe")
12190 (revision "1"))
12191 (package
12192 (name "sbcl-cl-inflector")
12193 (version (git-version "0.2" revision commit))
12194 (source
12195 (origin
12196 (method git-fetch)
12197 (uri (git-reference
12198 (url "https://github.com/AccelerationNet/cl-inflector")
12199 (commit commit)))
12200 (file-name (git-file-name name version))
12201 (sha256
12202 (base32 "1xwwlhik1la4fp984qnx2dqq24v012qv4x0y49sngfpwg7n0ya7y"))))
12203 (build-system asdf-build-system/sbcl)
12204 (native-inputs
12205 `(("lisp-unit2" ,sbcl-lisp-unit2)))
12206 (inputs
12207 `(("alexandria" ,sbcl-alexandria)
12208 ("cl-ppcre" ,sbcl-cl-ppcre)))
12209 (home-page "https://github.com/AccelerationNet/cl-inflector")
12210 (synopsis "Library to pluralize/singularize English and Portuguese words")
12211 (description
12212 "This is a common lisp library to easily pluralize and singularize
12213English and Portuguese words. This is a port of the ruby ActiveSupport
12214Inflector module.")
12215 (license license:expat))))
12216
12217(define-public cl-inflector
12218 (sbcl-package->cl-source-package sbcl-cl-inflector))
12219
12220(define-public ecl-cl-inflector
12221 (sbcl-package->ecl-package sbcl-cl-inflector))
a05edef2 12222
1fc9baee
SH
12223(define-public sbcl-ixf
12224 (let ((commit "ed26f87e4127e4a9e3aac4ff1e60d1f39cca5183")
12225 (revision "1"))
12226 (package
12227 (name "sbcl-ixf")
12228 (version (git-version "0.1.0" revision commit))
12229 (source
12230 (origin
12231 (method git-fetch)
12232 (uri (git-reference
12233 (url "https://github.com/dimitri/cl-ixf")
12234 (commit commit)))
12235 (file-name (git-file-name "cl-ixf" version))
12236 (sha256
12237 (base32 "1wjdnf4vr9z7lcfc49kl43g6l2i23q9n81siy494k17d766cdvqa"))))
12238 (build-system asdf-build-system/sbcl)
12239 (inputs
12240 `(("alexandria" ,sbcl-alexandria)
12241 ("babel" ,sbcl-babel)
12242 ("cl-ppcre" ,sbcl-cl-ppcre)
12243 ("ieee-floats" ,sbcl-ieee-floats)
12244 ("local-time" ,sbcl-local-time)
12245 ("md5" ,sbcl-md5)
12246 ("split-sequence" ,sbcl-split-sequence)))
12247 (home-page "https://github.com/dimitri/cl-ixf")
12248 (synopsis "Parse IBM IXF file format")
12249 (description
12250 "This is a Common Lisp library to handle the IBM PC version of the IXF
12251(Integration Exchange Format) file format.")
12252 (license license:public-domain))))
12253
12254(define-public ecl-ixf
12255 (sbcl-package->ecl-package sbcl-ixf))
12256
12257(define-public cl-ixf
12258 (sbcl-package->cl-source-package sbcl-ixf))
12259
a05edef2
AK
12260(define-public sbcl-qbase64
12261 (package
12262 (name "sbcl-qbase64")
12263 (version "0.3.0")
12264 (source
12265 (origin
12266 (method git-fetch)
12267 (uri (git-reference
12268 (url "https://github.com/chaitanyagupta/qbase64")
12269 (commit version)))
12270 (file-name (git-file-name name version))
12271 (sha256
12272 (base32 "1dir0s70ca3hagxv9x15zq4p4ajgl7jrcgqsza2n2y7iqbxh0dwi"))))
12273 (build-system asdf-build-system/sbcl)
12274 (inputs
12275 `(("metabang-bind" ,sbcl-metabang-bind)
12276 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
12277 (native-inputs
12278 `(("fiveam" ,sbcl-fiveam)))
12279 (home-page "https://github.com/chaitanyagupta/qbase64")
12280 (synopsis "Base64 encoder and decoder for Common Lisp")
12281 (description "@code{qbase64} provides a fast and flexible base64 encoder
12282and decoder for Common Lisp.")
12283 (license license:bsd-3)))
12284
12285(define-public cl-qbase64
12286 (sbcl-package->cl-source-package sbcl-qbase64))
12287
12288(define-public ecl-qbase64
12289 (sbcl-package->ecl-package sbcl-qbase64))
635e8b07 12290
ebabcf23
PN
12291(define-public sbcl-lw-compat
12292 ;; No release since 2013.
12293 (let ((commit "aabfe28c6c1a4949f9d7b3cb30319367c9fd1c0d"))
12294 (package
12295 (name "sbcl-lw-compat")
12296 (version (git-version "1.0.0" "1" commit))
12297 (source
12298 (origin
12299 (method git-fetch)
12300 (uri (git-reference
12301 (url "https://github.com/pcostanza/lw-compat/")
12302 (commit commit)))
12303 (file-name (git-file-name name version))
12304 (sha256
12305 (base32 "131rq5k2mlv9bfhmafiv6nfsivl4cxx13d9wr06v5jrqnckh4aav"))))
12306 (build-system asdf-build-system/sbcl)
12307 (home-page "https://github.com/pcostanza/lw-compat/")
12308 (synopsis "LispWorks utilities ported to other Common Lisp implementations")
12309 (description "This package contains a few utility functions from the
12310LispWorks library that are used in software such as ContextL.")
12311 (license license:expat))))
12312
12313(define-public cl-lw-compat
12314 (sbcl-package->cl-source-package sbcl-lw-compat))
12315
12316(define-public ecl-lw-compat
12317 (sbcl-package->ecl-package sbcl-lw-compat))
12318
94585fff
PN
12319(define-public sbcl-contextl
12320 ;; No release since 2013.
12321 (let ((commit "5d18a71a85824f6c25a9f35a21052f967b8b6bb9"))
12322 (package
12323 (name "sbcl-contextl")
12324 (version (git-version "1.0.0" "1" commit))
12325 (source
12326 (origin
12327 (method git-fetch)
12328 (uri (git-reference
12329 (url "https://github.com/pcostanza/contextl/")
12330 (commit commit)))
12331 (file-name (git-file-name name version))
12332 (sha256
12333 (base32 "0gk1izx6l6g48nypmnm9r6mzjx0jixqjj2kc6klf8a88rr5xd226"))))
12334 (build-system asdf-build-system/sbcl)
12335 (inputs
12336 `(("closer-mop" ,sbcl-closer-mop)
12337 ("lw-compat" ,sbcl-lw-compat)))
12338 (home-page "https://github.com/pcostanza/contextl")
12339 (synopsis "Context-oriented programming for Common Lisp")
12340 (description "ContextL is a CLOS extension for Context-Oriented
12341Programming (COP).
12342
12343Find overview of ContextL's features in an overview paper:
12344@url{http://www.p-cos.net/documents/contextl-soa.pdf}. See also this general
12345overview article about COP which also contains some ContextL examples:
12346@url{http://www.jot.fm/issues/issue_2008_03/article4/}.")
12347 (license license:expat))))
12348
12349(define-public cl-contextl
12350 (sbcl-package->cl-source-package sbcl-contextl))
12351
12352(define-public ecl-contextl
12353 (sbcl-package->ecl-package sbcl-contextl))
12354
635e8b07 12355(define-public sbcl-hu.dwim.common-lisp
8664eede
PN
12356 (let ((commit "90558195773383142a57a16687d5e7f4adea6418"))
12357 (package
12358 (name "sbcl-hu.dwim.common-lisp")
12359 (version "2021-01-27")
12360 (source
12361 (origin
12362 (method git-fetch)
12363 (uri (git-reference
12364 (url "https://github.com/hu-dwim/hu.dwim.common-lisp/")
12365 (commit commit)))
12366 (file-name (git-file-name name version))
12367 (sha256
12368 (base32 "06zkdw3scnaw0d4nmsgkv7pi7sw00dikdgfgsqmbqfbz2yrsdabk"))))
12369 (build-system asdf-build-system/sbcl)
12370 (native-inputs
12371 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12372 (home-page "http://dwim.hu/project/hu.dwim.common-lisp")
12373 (synopsis "Redefine some standard Common Lisp names")
12374 (description "This library is a redefinition of the standard Common Lisp
635e8b07 12375package that includes a number of renames and shadows. ")
8664eede 12376 (license license:public-domain))))
635e8b07
PN
12377
12378(define-public cl-hu.dwim.common-lisp
12379 (sbcl-package->cl-source-package sbcl-hu.dwim.common-lisp))
12380
12381(define-public ecl-hu.dwim.common-lisp
12382 (sbcl-package->ecl-package sbcl-hu.dwim.common-lisp))
89a3fec5
PN
12383
12384(define-public sbcl-hu.dwim.common
12385 (package
12386 (name "sbcl-hu.dwim.common")
12387 (version "2015-07-09")
12388 (source
12389 (origin
12390 (method url-fetch)
12391 (uri (string-append
12392 "http://beta.quicklisp.org/archive/hu.dwim.common/"
12393 version "/hu.dwim.common-"
12394 (string-replace-substring version "-" "")
12395 "-darcs.tgz"))
12396 (sha256
12397 (base32 "12l1rr6w9m99w0b5gc6hv58ainjfhbc588kz6vwshn4gqsxyzbhp"))))
12398 (build-system asdf-build-system/sbcl)
12399 (native-inputs
12400 `(("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12401 (inputs
12402 `(("alexandria" ,sbcl-alexandria)
12403 ("anaphora" ,sbcl-anaphora)
12404 ("closer-mop" ,sbcl-closer-mop)
12405 ("hu.dwim.common-lisp" ,sbcl-hu.dwim.common-lisp)
12406 ("iterate" ,sbcl-iterate)
12407 ("metabang-bind" ,sbcl-metabang-bind)))
12408 (home-page "http://dwim.hu/")
12409 (synopsis "Common Lisp library shared by other hu.dwim systems")
9e7b2658
PN
12410 (description "This package contains a support library for other
12411hu.dwim systems.")
89a3fec5
PN
12412 (license license:public-domain)))
12413
12414(define-public cl-hu.dwim.common
12415 (sbcl-package->cl-source-package sbcl-hu.dwim.common))
12416
12417(define-public ecl-hu.dwim.common
12418 (sbcl-package->ecl-package sbcl-hu.dwim.common))
ec3c3aa7
PN
12419
12420(define-public sbcl-hu.dwim.defclass-star
c3e53066 12421 (let ((commit "3086878a485074f9b2913c58267a9b764cd632fd"))
174e3a0d
PN
12422 (package
12423 (name "sbcl-hu.dwim.defclass-star")
12424 ;; We used to set version from the date when it was a darcs repo, so we
12425 ;; keep the year so that package gets updated on previous installs.
c3e53066 12426 (version (git-version "2021" "2" commit))
174e3a0d
PN
12427 (source
12428 (origin
12429 (method git-fetch)
12430 (uri (git-reference
12431 (url "https://github.com/hu-dwim/hu.dwim.defclass-star")
12432 (commit commit)))
12433 (file-name (git-file-name name version))
12434 (sha256
c3e53066 12435 (base32 "19ipds9r71qymfdp4izg0l7zmvinp06adr8rdalhaq7v7mzpg83z"))))
174e3a0d
PN
12436 (build-system asdf-build-system/sbcl)
12437 (native-inputs
12438 `( ;; These 2 inputs are only needed tests which are disabled, see below.
12439 ;; ("hu.dwim.common" ,sbcl-hu.dwim.common)
12440 ;; Need cl- package for the :hu.dwim.stefil+hu.dwim.def+swank system.
12441 ;; ("hu.dwim.stefil" ,cl-hu.dwim.stefil)
12442 ("hu.dwim.asdf" ,sbcl-hu.dwim.asdf)))
12443 (arguments
12444 `(#:test-asd-file "hu.dwim.defclass-star.test.asd"
12445 ;; Tests require a circular dependency: hu.dwim.stefil -> hu.dwim.def
12446 ;; -> hu.dwim.util -> hu.dwim.defclass-star.
12447 #:tests? #f))
12448 (home-page "https://github.com/hu-dwim/hu.dwim.defclass-star")
12449 (synopsis "Simplify definitions with defclass* and friends in Common Lisp")
12450 (description "@code{defclass-star} provides defclass* and defcondition* to
ec3c3aa7
PN
12451simplify class and condition declarations. Features include:
12452
12453@itemize
12454@item Automatically export all or select slots at compile time.
7230f6d5 12455@item Define the @code{:initarg} and @code{:accessor} automatically.
ec3c3aa7
PN
12456@item Specify a name transformer for both the @code{:initarg} and
12457@code{:accessor}, etc.
12458@item Specify the @code{:initform} as second slot value.
12459@end itemize
12460
12461See
12462@url{https://common-lisp.net/project/defclass-star/configuration.lisp.html}
12463for an example.")
174e3a0d 12464 (license license:public-domain))))
ec3c3aa7
PN
12465
12466(define-public cl-hu.dwim.defclass-star
12467 (sbcl-package->cl-source-package sbcl-hu.dwim.defclass-star))
12468
12469(define-public ecl-hu.dwim.defclass-star
12470 (sbcl-package->ecl-package sbcl-hu.dwim.defclass-star))
ca7eada9
AK
12471
12472(define-public sbcl-livesupport
12473 (let ((commit "71e6e412df9f3759ad8378fabb203913d82e228a")
12474 (revision "1"))
12475 (package
12476 (name "sbcl-livesupport")
12477 (version (git-version "0.0.0" revision commit))
12478 (source
12479 (origin
12480 (method git-fetch)
12481 (uri (git-reference
12482 (url "https://github.com/cbaggers/livesupport")
12483 (commit commit)))
12484 (file-name (git-file-name name version))
12485 (sha256
12486 (base32 "1rvnl0mncylbx63608pz5llss7y92j7z3ydambk9mcnjg2mjaapg"))))
12487 (build-system asdf-build-system/sbcl)
12488 (home-page "https://github.com/cbaggers/livesupport")
12489 (synopsis "Some helpers that make livecoding a little easier")
12490 (description "This package provides a macro commonly used in livecoding to
12491enable continuing when errors are raised. Simply wrap around a chunk of code
12492and it provides a restart called @code{continue} which ignores the error and
12493carrys on from the end of the body.")
12494 (license license:bsd-2))))
12495
12496(define-public cl-livesupport
12497 (sbcl-package->cl-source-package sbcl-livesupport))
12498
12499(define-public ecl-livesupport
12500 (sbcl-package->ecl-package sbcl-livesupport))
bfa78462
PN
12501
12502(define-public sbcl-envy
12503 (let ((commit "956321b2852d58ba71c6fe621f5c2924178e9f88")
12504 (revision "1"))
12505 (package
12506 (name "sbcl-envy")
12507 (version (git-version "0.1" revision commit))
12508 (home-page "https://github.com/fukamachi/envy")
12509 (source
12510 (origin
12511 (method git-fetch)
12512 (uri (git-reference
12513 (url home-page)
12514 (commit commit)))
12515 (file-name (git-file-name name version))
12516 (sha256
12517 (base32 "17iwrfxcdinjbb2h6l09qf40s7xkbhrpmnljlwpjy8l8rll8h3vg"))))
12518 (build-system asdf-build-system/sbcl)
12519 ;; (native-inputs ; Only for tests.
12520 ;; `(("prove" ,sbcl-prove)
12521 ;; ("osicat" ,sbcl-osicat)))
12522 (arguments
12523 '(#:phases
12524 (modify-phases %standard-phases
12525 (add-after 'unpack 'fix-tests
12526 (lambda _
12527 (substitute* "envy-test.asd"
12528 (("cl-test-more") "prove"))
12529 #t)))
12530 ;; Tests fail with
12531 ;; Component ENVY-ASD::ENVY-TEST not found, required by #<SYSTEM "envy">
12532 ;; like xsubseq. Why?
12533 #:tests? #f))
12534 (synopsis "Common Lisp configuration switcher inspired by Perl's Config::ENV.")
12535 (description "Envy is a configuration manager for various applications.
12536Envy uses an environment variable to determine a configuration to use. This
12537can separate configuration system from an implementation.")
12538 (license license:bsd-2))))
12539
12540(define-public cl-envy
12541 (sbcl-package->cl-source-package sbcl-envy))
12542
12543(define-public ecl-envy
12544 (sbcl-package->ecl-package sbcl-envy))
f5e31b1d 12545
2ff8b5ba 12546(define-public sbcl-mito
f5e31b1d
PN
12547 (let ((commit "d3b9e375ef364a65692da2185085a08c969ac88a")
12548 (revision "1"))
12549 (package
2ff8b5ba 12550 (name "sbcl-mito")
f5e31b1d
PN
12551 (version (git-version "0.1" revision commit))
12552 (home-page "https://github.com/fukamachi/mito")
12553 (source
12554 (origin
12555 (method git-fetch)
12556 (uri (git-reference
12557 (url home-page)
12558 (commit commit)))
12559 (file-name (git-file-name name version))
12560 (sha256
12561 (base32 "08mncgzjnbbsf1a6am3l73iw4lyfvz5ldjg5g84awfaxml4p73mb"))))
12562 (build-system asdf-build-system/sbcl)
2ff8b5ba
GLV
12563 (native-inputs
12564 `(("prove" ,sbcl-prove)))
f5e31b1d 12565 (inputs
2ff8b5ba 12566 `(("alexandria" ,sbcl-alexandria)
f5e31b1d 12567 ("cl-ppcre" ,sbcl-cl-ppcre)
2ff8b5ba 12568 ("cl-reexport" ,sbcl-cl-reexport)
f5e31b1d 12569 ("closer-mop" ,sbcl-closer-mop)
2ff8b5ba 12570 ("dbi" ,sbcl-dbi)
f5e31b1d 12571 ("dissect" ,sbcl-dissect)
2ff8b5ba 12572 ("esrap" ,sbcl-esrap)
f5e31b1d 12573 ("local-time" ,sbcl-local-time)
2ff8b5ba
GLV
12574 ("optima" ,sbcl-optima)
12575 ("sxql" ,sbcl-sxql)
12576 ("uuid" ,sbcl-uuid)))
12577 (arguments
e765d9c9 12578 '(#:phases
f5e31b1d
PN
12579 (modify-phases %standard-phases
12580 (add-after 'unpack 'remove-non-functional-tests
12581 (lambda _
12582 (substitute* "mito-test.asd"
f5e31b1d
PN
12583 (("\\(:test-file \"db/mysql\"\\)") "")
12584 (("\\(:test-file \"db/postgres\"\\)") "")
12585 (("\\(:test-file \"dao\"\\)") "")
12586 ;; TODO: migration/sqlite3 should work, re-enable once
12587 ;; upstream has fixed it:
12588 ;; https://github.com/fukamachi/mito/issues/70
12589 (("\\(:test-file \"migration/sqlite3\"\\)") "")
12590 (("\\(:test-file \"migration/mysql\"\\)") "")
12591 (("\\(:test-file \"migration/postgres\"\\)") "")
12592 (("\\(:test-file \"postgres-types\"\\)") "")
12593 (("\\(:test-file \"mixin\"\\)") ""))
12594 #t)))
12595 ;; TODO: While all enabled tests pass, the phase fails with:
12596 ;; Component MITO-ASD::MITO-TEST not found, required by #<SYSTEM "mito">
2ff8b5ba
GLV
12597 #:tests? #f))
12598 (synopsis "ORM for Common Lisp with migrations and relationships support")
12599 (description "Mito is yet another object relational mapper, and it aims
12600to be a successor of Integral.
12601
12602@itemize
12603@item Support MySQL, PostgreSQL and SQLite3.
12604@item Add id (serial/uuid primary key), created_at and updated_at by default
12605like Ruby's ActiveRecord.
12606@item Migrations.
12607@item Database schema versioning.
12608@end itemize\n")
12609 (license license:llgpl))))
f5e31b1d
PN
12610
12611(define-public cl-mito
12612 (sbcl-package->cl-source-package sbcl-mito))
0bca68d9 12613
12df8b7b
GLV
12614(define-public ecl-mito
12615 (sbcl-package->ecl-package sbcl-mito))
12616
0bca68d9
PN
12617(define-public sbcl-kebab
12618 (let ((commit "e7f77644c4e46131e7b8039d191d35fe6211f31b")
12619 (revision "1"))
12620 (package
12621 (name "sbcl-kebab")
12622 (version (git-version "0.1" revision commit))
12623 (home-page "https://github.com/pocket7878/kebab")
12624 (source
12625 (origin
12626 (method git-fetch)
12627 (uri (git-reference
12628 (url home-page)
12629 (commit commit)))
12630 (file-name (git-file-name name version))
12631 (sha256
12632 (base32 "0j5haabnvj0vz0rx9mwyfsb3qzpga9nickbjw8xs6vypkdzlqv1b"))))
12633 (build-system asdf-build-system/sbcl)
12634 (inputs
12635 `(("cl-ppcre" ,sbcl-cl-ppcre)
12636 ("alexandria" ,sbcl-alexandria)
12637 ("cl-interpol" ,sbcl-cl-interpol)
12638 ("split-sequence" ,sbcl-split-sequence)))
12639 (native-inputs
2ff8b5ba 12640 `(("prove" ,sbcl-prove)))
0bca68d9
PN
12641 (arguments
12642 ;; Tests passes but the phase fails with
12643 ;; Component KEBAB-ASD::KEBAB-TEST not found, required by #<SYSTEM "kebab">.
12644 `(#:tests? #f))
12645 (synopsis "Common Lisp case converter")
12646 (description "This Common Lisp library converts strings, symbols and
12647keywords between any of the following typographical cases: PascalCase,
12648camelCase, snake_case, kebab-case (lisp-case).")
12649 (license license:llgpl))))
12650
12651(define-public cl-kebab
12652 (sbcl-package->cl-source-package sbcl-kebab))
12653
12654(define-public ecl-kebab
12655 (sbcl-package->ecl-package sbcl-kebab))
69006b0c
PN
12656
12657(define-public sbcl-datafly
12658 (let ((commit "adece27fcbc4b5ea39ad1a105048b6b7166e3b0d")
12659 (revision "1"))
12660 (package
12661 (name "sbcl-datafly")
12662 (version (git-version "0.1" revision commit))
12663 (home-page "https://github.com/fukamachi/datafly")
12664 (source
12665 (origin
12666 (method git-fetch)
12667 (uri (git-reference
12668 (url home-page)
12669 (commit commit)))
12670 (file-name (git-file-name name version))
12671 (sha256
12672 (base32 "16b78kzmglp2a4nxlxxl7rpf5zaibsgagn0p3c56fsxvx0c4hszv"))))
12673 (build-system asdf-build-system/sbcl)
12674 (inputs
12675 `(("alexandria" ,sbcl-alexandria)
12676 ("iterate" ,sbcl-iterate)
12677 ("optima" ,sbcl-optima)
12678 ("trivial-types" ,sbcl-trivial-types)
12679 ("closer-mop" ,sbcl-closer-mop)
2ff8b5ba 12680 ("cl-syntax" ,sbcl-cl-syntax)
69006b0c
PN
12681 ("sxql" ,sbcl-sxql)
12682 ("dbi" ,sbcl-dbi)
12683 ("babel" ,sbcl-babel)
12684 ("local-time" ,sbcl-local-time)
12685 ("function-cache" ,sbcl-function-cache)
12686 ("jonathan" ,sbcl-jonathan)
12687 ("kebab" ,sbcl-kebab)
12688 ("log4cl" ,sbcl-log4cl)))
12689 (native-inputs
2ff8b5ba 12690 `(("prove" ,sbcl-prove)))
69006b0c
PN
12691 (arguments
12692 ;; TODO: Tests fail with
12693 ;; While evaluating the form starting at line 22, column 0
12694 ;; of #P"/tmp/guix-build-sbcl-datafly-0.1-1.adece27.drv-0/source/t/datafly.lisp":
12695 ;; Unhandled SQLITE:SQLITE-ERROR in thread #<SB-THREAD:THREAD "main thread" RUNNING
12696 ;; {10009F8083}>:
12697 ;; Error when binding parameter 1 to value NIL.
12698 ;; Code RANGE: column index out of range.
12699 `(#:tests? #f))
12700 (synopsis "Lightweight database library for Common Lisp")
12701 (description "Datafly is a lightweight database library for Common Lisp.")
12702 (license license:bsd-3))))
12703
12704(define-public cl-datafly
12705 (sbcl-package->cl-source-package sbcl-datafly))
12706
12707(define-public ecl-datafly
12708 (sbcl-package->ecl-package sbcl-datafly))
56aeb1a4
PN
12709
12710(define-public sbcl-do-urlencode
12711 (let ((commit "199846441dad5dfac5478b8dee4b4e20d107af6a")
12712 (revision "1"))
12713 (package
12714 (name "sbcl-do-urlencode")
12715 (version (git-version "0.0.0" revision commit))
12716 (home-page "https://github.com/drdo/do-urlencode")
12717 (source
12718 (origin
12719 (method git-fetch)
12720 (uri (git-reference
12721 (url home-page)
12722 (commit commit)))
12723 (file-name (git-file-name name version))
12724 (sha256
12725 (base32 "0k2i3d4k9cpci235mwfm0c5a4yqfkijr716bjv7cdlpzx88lazm9"))))
12726 (build-system asdf-build-system/sbcl)
12727 (inputs
12728 `(("alexandria" ,sbcl-alexandria)
12729 ("babel" ,sbcl-babel)))
12730 (synopsis "Percent Encoding (aka URL Encoding) Common Lisp library")
12731 (description "This library provides trivial percent encoding and
12732decoding functions for URLs.")
12733 (license license:isc))))
12734
12735(define-public cl-do-urlencode
12736 (sbcl-package->cl-source-package sbcl-do-urlencode))
12737
12738(define-public ecl-do-urlencode
12739 (sbcl-package->ecl-package sbcl-do-urlencode))
d2c9f349
PN
12740
12741(define-public sbcl-cl-emb
12742 (let ((commit "fd8652174d048d4525a81f38cdf42f4fa519f840")
12743 (revision "1"))
12744 (package
12745 (name "sbcl-cl-emb")
12746 (version (git-version "0.4.3" revision commit))
12747 (home-page "https://common-lisp.net/project/cl-emb/")
12748 (source
12749 (origin
12750 (method git-fetch)
12751 (uri (git-reference
12752 (url "https://github.com/38a938c2/cl-emb")
12753 (commit commit)))
12754 (file-name (git-file-name name version))
12755 (sha256
12756 (base32 "1xcm31n7afh5316lwz8iqbjx7kn5lw0l11arg8mhdmkx42aj4gkk"))))
12757 (build-system asdf-build-system/sbcl)
12758 (inputs
12759 `(("cl-ppcre" ,sbcl-cl-ppcre)))
12760 (synopsis "Templating system for Common Lisp")
12761 (description "A mixture of features from eRuby and HTML::Template. You
12762could name it \"Yet Another LSP\" (LispServer Pages) but it's a bit more than
12763that and not limited to a certain server or text format.")
12764 (license license:llgpl))))
12765
12766(define-public cl-emb
12767 (sbcl-package->cl-source-package sbcl-cl-emb))
12768
12769(define-public ecl-cl-emb
12770 (sbcl-package->ecl-package sbcl-cl-emb))
bc1f552b
PN
12771
12772(define-public sbcl-cl-project
12773 (let ((commit "151107014e534fc4666222d57fec2cc8549c8814")
12774 (revision "1"))
12775 (package
12776 (name "sbcl-cl-project")
12777 (version (git-version "0.3.1" revision commit))
12778 (home-page "https://github.com/fukamachi/cl-project")
12779 (source
12780 (origin
12781 (method git-fetch)
12782 (uri (git-reference
12783 (url home-page)
12784 (commit commit)))
12785 (file-name (git-file-name name version))
12786 (sha256
12787 (base32 "1rmh6s1ncv8s2yrr14ja9wisgg745sq6xibqwb341ikdicxdp26y"))))
12788 (build-system asdf-build-system/sbcl)
12789 (inputs
12790 `(("cl-emb" ,sbcl-cl-emb)
12791 ("cl-ppcre" ,sbcl-cl-ppcre)
12792 ("local-time" ,sbcl-local-time)
12793 ("prove" ,sbcl-prove)))
12794 (arguments
12795 ;; Tests depend on caveman, which in turns depends on cl-project.
3f8bbf7c
GLV
12796 '(#:tests? #f
12797 #:asd-files '("cl-project.asd")))
bc1f552b
PN
12798 (synopsis "Generate a skeleton for modern Common Lisp projects")
12799 (description "This library provides a modern project skeleton generator.
12800In contract with other generators, CL-Project generates one package per file
12801and encourages unit testing by generating a system for unit testing, so you
12802can begin writing unit tests as soon as the project is generated.")
12803 (license license:llgpl))))
12804
12805(define-public cl-project
12806 (sbcl-package->cl-source-package sbcl-cl-project))
12807
12808(define-public ecl-cl-project
12809 (sbcl-package->ecl-package sbcl-cl-project))
f5ca844f
PN
12810
12811(define-public sbcl-caveman
12812 (let ((commit "faa5f7e3b364fd7e7096af9a7bb06728b8d80441") ; No release since 2012
12813 (revision "1"))
12814 (package
12815 (name "sbcl-caveman")
12816 (version (git-version "2.4.0" revision commit))
12817 (home-page "http://8arrow.org/caveman/")
12818 (source
12819 (origin
12820 (method git-fetch)
12821 (uri (git-reference
12822 (url "https://github.com/fukamachi/caveman/")
12823 (commit commit)))
12824 (file-name (git-file-name name version))
12825 (sha256
12826 (base32 "0kh0gx05pczk8f7r9qdi4zn1p3d0a2prps27k7jpgvc1dxkl8qhq"))))
12827 (build-system asdf-build-system/sbcl)
12828 (inputs
12829 `(("ningle" ,cl-ningle)
2ff8b5ba 12830 ("lack" ,sbcl-lack)
f5ca844f
PN
12831 ("cl-project" ,sbcl-cl-project)
12832 ("dbi" ,sbcl-dbi)
2ff8b5ba 12833 ("cl-syntax" ,sbcl-cl-syntax)
f5ca844f
PN
12834 ("myway" ,sbcl-myway)
12835 ("quri" ,sbcl-quri)))
12836 (native-inputs
12837 `(("usocket" ,sbcl-usocket)
12838 ("dexador" ,sbcl-dexador)))
12839 (arguments
2ff8b5ba
GLV
12840 `(#:asd-files '("caveman2.asd")
12841 #:asd-systems '("caveman2")
f5ca844f
PN
12842 #:phases
12843 (modify-phases %standard-phases
12844 (add-after 'unpack 'remove-v1
12845 (lambda _
12846 (delete-file-recursively "v1")
12847 (for-each delete-file
12848 '("README.v1.markdown" "caveman.asd" "caveman-test.asd")))))
12849 ;; TODO: Tests fail with:
d27afcc6 12850 ;; writing /gnu/store/...-sbcl-caveman-2.4.0-1.faa5f7e/share/common-lisp/sbcl-source/caveman2/v2/t/tmp/myapp573/tests/myapp573.lisp
f5ca844f
PN
12851 ;; While evaluating the form starting at line 38, column 0
12852 ;; of #P"/tmp/guix-build-sbcl-caveman-2.4.0-1.faa5f7e.drv-0/source/v2/t/caveman.lisp":
12853 ;; Unhandled ASDF/FIND-COMPONENT:MISSING-COMPONENT in thread #<SB-THREAD:THREAD "main thread" RUNNING
12854 ;; {10009F8083}>:
12855 ;; Component "myapp573" not found
12856 #:tests? #f))
12857 (synopsis "Lightweight web application framework in Common Lisp")
12858 (description "Caveman is intended to be a collection of common parts for
12859web applications. Caveman2 has three design goals:
12860
12861@itemize
12862@item Be extensible.
12863@item Be practical.
12864@item Don't force anything.
12865@end itemize\n")
12866 (license license:llgpl))))
12867
12868(define-public cl-caveman
12869 (package
12870 (inherit
12871 (sbcl-package->cl-source-package sbcl-caveman))
12872 (propagated-inputs
12873 `(("ningle" ,cl-ningle)))))
12874
12875(define-public ecl-caveman
12876 (sbcl-package->ecl-package sbcl-caveman))
582d0108
A
12877
12878(define-public sbcl-lambda-fiddle
12879 (let ((commit "d16bba55acf6065b412f64ab8fdff679a4a32b1e") ;; no tagged branch
12880 (revision "1"))
12881 (package
12882 (name "sbcl-lambda-fiddle")
12883 (version (git-version "1.0.0" revision commit))
12884 (source
12885 (origin
12886 (method git-fetch)
12887 (uri (git-reference
12888 (url "https://github.com/Shinmera/lambda-fiddle")
12889 (commit commit)))
12890 (file-name (git-file-name name version))
12891 (sha256
12892 (base32 "1zarj1pqjqmk95kdx1axkgpwy2wq3canczk7f9z5hvaw5an6gand"))))
12893 (build-system asdf-build-system/sbcl)
12894 (home-page "https://github.com/Shinmera/lambda-fiddle")
12895 (synopsis "Collection of utilities to process lambda-lists")
12896 (description "This collection of utilities is useful in contexts where
12897you want a macro that uses lambda-lists in some fashion but need more precise
12898processing.")
12899 (license license:zlib))))
12900
12901(define-public cl-lambda-fiddle
12902 (sbcl-package->cl-source-package sbcl-lambda-fiddle))
12903
12904(define-public ecl-lambda-fiddle
12905 (sbcl-package->ecl-package sbcl-lambda-fiddle))
7722c367
A
12906
12907(define-public sbcl-xmls
12908 (let ((commit "18546f0850b1338e03997ffd1696add1cb1800d1") ;; no tagged branch
12909 (revision "1"))
12910 (package
12911 (name "sbcl-xmls")
12912 (version (git-version "3.0.2" revision commit))
12913 (source
12914 (origin
12915 (method git-fetch)
12916 (uri (git-reference
12917 (url "https://github.com/rpgoldman/xmls")
12918 (commit commit)))
12919 (file-name (git-file-name name version))
12920 (sha256
12921 (base32 "1lmvfml2ldbb1wkhm25jqqk2bhwsz52hhcgljbnzj1xr8xhc3anp"))))
12922 (native-inputs
12923 `(("fiveam" ,sbcl-fiveam)))
12924 (build-system asdf-build-system/sbcl)
12925 (home-page "https://github.com/rpgoldman/xmls")
12926 (synopsis "Non-validating XML parser for Common Lisp")
12927 (description "Xmls is a self-contained, easily embedded parser that
12928recognizes a useful subset of the XML spec. It provides a simple mapping from
12929XML to Lisp structures or s-expressions and back.")
12930 (license license:bsd-2))))
12931
12932(define-public cl-xmls
12933 (sbcl-package->cl-source-package sbcl-xmls))
12934
12935(define-public ecl-xmls
12936 (sbcl-package->ecl-package sbcl-xmls))
5a723527
GLV
12937
12938(define-public sbcl-geco
12939 (package
12940 (name "sbcl-geco")
6e301c3a 12941 (version "2.1.1")
5a723527
GLV
12942 (source
12943 (origin
6e301c3a
GLV
12944 (method git-fetch)
12945 (uri (git-reference
12946 (url "https://github.com/gpwwjr/GECO")
12947 (commit (string-append "v" version))))
12948 (file-name (git-file-name "geco" version))
5a723527 12949 (sha256
6e301c3a 12950 (base32 "1rc8a4mk40hjx5qy980hjylv6xxqdbq38hg8c4w30y93abfd519s"))))
5a723527 12951 (build-system asdf-build-system/sbcl)
6e301c3a 12952 (home-page "http://hiwaay.net/~gpw/geco/geco.html")
5a723527
GLV
12953 (synopsis "Genetic algorithm toolkit for Common Lisp")
12954 (description
12955 "GECO (Genetic Evolution through Combination of Objects) is an extensible,
12956object-oriented framework for prototyping genetic algorithms in Common Lisp.")
12957 (license license:lgpl2.1+)))
12958
12959(define-public cl-geco
12960 (sbcl-package->cl-source-package sbcl-geco))
12961
12962(define-public ecl-geco
12963 (sbcl-package->ecl-package sbcl-geco))
50ff091d
PN
12964
12965(define-public sbcl-html-entities
12966 (let ((commit "4af018048e891f41d77e7d680ed3aeb639e1eedb"))
12967 (package
12968 (name "sbcl-html-entities")
12969 (version (git-version "0.02" "1" commit))
12970 (source
12971 (origin
12972 (method git-fetch)
12973 (uri (git-reference
12974 (url "https://github.com/BnMcGn/html-entities/")
12975 (commit commit)))
12976 (file-name (git-file-name name version))
12977 (sha256
12978 (base32 "1b2yl6lf6vis17y4n5s505p7ica96bdafcl6vydy1hg50fy33nfr"))))
12979 (build-system asdf-build-system/sbcl)
12980 (inputs
12981 `(("ppcre" ,sbcl-cl-ppcre)))
12982 (native-inputs
12983 `(("fiveam" ,sbcl-fiveam)))
12984 (home-page "https://github.com/BnMcGn/html-entities/")
12985 (synopsis "Encode and decode entities in HTML with Common Lisp")
12986 (description "Html-entities is a Common Lisp library that lets you
12987encode and decode entities in HTML.")
12988 (license license:expat))))
12989
12990(define-public cl-html-entities
12991 (sbcl-package->cl-source-package sbcl-html-entities))
12992
12993(define-public ecl-html-entities
12994 (sbcl-package->ecl-package sbcl-html-entities))
2631fc13
PN
12995
12996(define-public sbcl-quicksearch
12997 (let ((commit "fb02ecf7c876ec580ab18c7d2c8c7814c06af599"))
12998 (package
12999 (name "sbcl-quicksearch")
13000 (version (git-version "0.01.04" "1" commit))
13001 (source
13002 (origin
13003 (method git-fetch)
13004 (uri (git-reference
13005 (url "https://github.com/tkych/quicksearch/")
13006 (commit commit)))
13007 (file-name (git-file-name name version))
13008 (sha256
13009 (base32 "16k19zjkhh7r64vjq371k5jwjs7cdfjz83flh561n4h4v1z89fps"))))
13010 (build-system asdf-build-system/sbcl)
13011 (inputs
13012 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13013 ("iterate" ,sbcl-iterate)
13014 ("alexandria" ,sbcl-alexandria)
13015 ("anaphora" ,sbcl-anaphora)
13016 ("ppcre" ,sbcl-cl-ppcre)
13017 ("drakma" ,sbcl-drakma)
13018 ("html-entities" ,sbcl-html-entities)
13019 ("yason" ,sbcl-yason)
13020 ("flexi-streams" ,sbcl-flexi-streams)
13021 ("do-urlencode" ,sbcl-do-urlencode)))
13022 (home-page "https://github.com/tkych/quicksearch/")
13023 (synopsis "Search Engine Interface for Common Lisp packages")
13024 (description "Quicksearch is a search-engine-interface for Common Lisp.
13025The goal of Quicksearch is to find the Common Lisp library quickly. For
13026example, if you will find the library about json, just type @code{(qs:?
13027'json)} at REPL.
13028
13029The function @code{quicksearch} searches for Common Lisp projects in
13030Quicklisp, Cliki, GitHub and BitBucket, then outputs results in REPL. The
13031function @code{?} is abbreviation wrapper for @code{quicksearch}.")
13032 (license license:expat))))
13033
13034(define-public cl-quicksearch
13035 (sbcl-package->cl-source-package sbcl-quicksearch))
13036
13037(define-public ecl-quicksearch
13038 (sbcl-package->ecl-package sbcl-quicksearch))
f66fbb7a
PN
13039
13040(define-public sbcl-agutil
13041 (let ((commit "df188d754d472da9faa1601a48f1f37bb7b34d68"))
13042 (package
13043 (name "sbcl-agutil")
13044 (version (git-version "0.0.1" "1" commit))
13045 (source
13046 (origin
13047 (method git-fetch)
13048 (uri (git-reference
13049 (url "https://github.com/alex-gutev/agutil/")
13050 (commit commit)))
13051 (file-name (git-file-name name version))
13052 (sha256
13053 (base32 "1xpnyzksk2xld64b6lw6rw0gn5zxlb77jwna59sd4yl7kxhxlfpf"))))
13054 (build-system asdf-build-system/sbcl)
13055 (inputs
13056 `(("alexandria" ,sbcl-alexandria)
13057 ("trivia" ,sbcl-trivia)))
13058 (home-page "https://github.com/alex-gutev/agutil/")
13059 (synopsis "Collection of Common Lisp utilities")
13060 (description "A collection of Common Lisp utility functions and macros
13061mostly not found in other utility packages.")
13062 (license license:expat))))
13063
13064(define-public cl-agutil
13065 (sbcl-package->cl-source-package sbcl-agutil))
13066
13067(define-public ecl-agutil
13068 (sbcl-package->ecl-package sbcl-agutil))
e60bbd9a
PN
13069
13070(define-public sbcl-custom-hash-table
13071 (let ((commit "f26983133940f5edf826ebbc8077acc04816ddfa"))
13072 (package
13073 (name "sbcl-custom-hash-table")
13074 (version (git-version "0.3" "1" commit))
13075 (source
13076 (origin
13077 (method git-fetch)
13078 (uri (git-reference
13079 (url "https://github.com/metawilm/cl-custom-hash-table")
13080 (commit commit)))
13081 (file-name (git-file-name name version))
13082 (sha256
13083 (base32 "1k4mvrpbqqds2fwjxp1bxmrfmr8ch4dkwhnkbw559knbqshvrlj5"))))
13084 (build-system asdf-build-system/sbcl)
13085 (arguments
a9a0d348
MB
13086 '(#:asd-files '("cl-custom-hash-table.asd")
13087 #:asd-systems '("cl-custom-hash-table")))
e60bbd9a
PN
13088 (home-page "https://github.com/metawilm/cl-custom-hash-table")
13089 (synopsis "Custom hash tables for Common Lisp")
13090 (description "This library allows creation of hash tables with arbitrary
13091@code{test}/@code{hash} functions, in addition to the @code{test} functions
13092allowed by the standard (@code{EQ}, @code{EQL}, @code{EQUAL} and
13093@code{EQUALP}), even in implementations that don't support this functionality
13094directly.")
13095 (license license:expat))))
13096
13097(define-public cl-custom-hash-table
13098 (sbcl-package->cl-source-package sbcl-custom-hash-table))
13099
13100(define-public ecl-custom-hash-table
13101 (sbcl-package->ecl-package sbcl-custom-hash-table))
e744328a
PN
13102
13103(define-public sbcl-collectors
13104 (let ((commit "13acef25d8422d1d82e067b1861e513587c166ee"))
13105 (package
13106 (name "sbcl-collectors")
13107 (version (git-version "0.1" "1" commit))
13108 (source
13109 (origin
13110 (method git-fetch)
13111 (uri (git-reference
13112 (url "https://github.com/AccelerationNet/collectors")
13113 (commit commit)))
13114 (file-name (git-file-name name version))
13115 (sha256
13116 (base32 "1si68n1j6rpns8jw6ksqjpb937pdl30v7xza8rld7j5vh0jhy2yi"))))
13117 (build-system asdf-build-system/sbcl)
13118 (inputs
13119 `(("alexandria" ,sbcl-alexandria)
13120 ("closer-mop" ,sbcl-closer-mop)
13121 ("symbol-munger" ,sbcl-symbol-munger)))
13122 (native-inputs
13123 `(("lisp-unit2" ,sbcl-lisp-unit2)))
13124 (home-page "https://github.com/AccelerationNet/collectors/")
13125 (synopsis "Common lisp library providing collector macros")
13126 (description "A small collection of common lisp macros to make
13127collecting values easier.")
13128 (license license:bsd-3))))
13129
13130(define-public cl-collectors
13131 (sbcl-package->cl-source-package sbcl-collectors))
13132
13133(define-public ecl-collectors
13134 (sbcl-package->ecl-package sbcl-collectors))
6b886891 13135
a7489847
PN
13136(define-public sbcl-cl-environments
13137 (let ((commit "0b22154c5afefef23d1eba9a4fae11d73580ef41")) ; No version in 2 years.
9f78a37f 13138 (package
a7489847 13139 (name "sbcl-cl-environments")
9f78a37f
PN
13140 (version (git-version "0.2.3" "1" commit))
13141 (source
13142 (origin
13143 (method git-fetch)
13144 (uri (git-reference
13145 (url "https://github.com/alex-gutev/cl-environments")
13146 (commit commit)))
13147 (file-name (git-file-name name version))
13148 (sha256
13149 (base32
a7489847
PN
13150 "18r3wfarr7lgn78m6c66r0r9aazirv07gy7xgvqkl9pmrz1bc47m"))))
13151 (build-system asdf-build-system/sbcl)
0ee538c2
GLV
13152 (inputs
13153 `(("alexandria" ,sbcl-alexandria)
13154 ("anaphora" ,sbcl-anaphora)
13155 ("collectors" ,sbcl-collectors)
13156 ("optima" ,sbcl-optima)))
9f78a37f 13157 (native-inputs
a9a0d348 13158 `(("prove" ,sbcl-prove)))
9f78a37f
PN
13159 (home-page "https://github.com/alex-gutev/cl-environments")
13160 (synopsis "Implements the Common Lisp standard environment access API")
13161 (description "This library provides a uniform API, as specified in Common
6b886891
PN
13162Lisp the Language 2, for accessing information about variable and function
13163bindings from implementation-defined lexical environment objects. All major
13164Common Lisp implementations are supported, even those which don't support the
13165CLTL2 environment access API.")
9f78a37f 13166 (license license:expat))))
e22b88b6 13167
a7489847
PN
13168(define-public cl-environments
13169 (sbcl-package->cl-source-package sbcl-cl-environments))
13170
13171(define-public ecl-environments
13172 (sbcl-package->ecl-package sbcl-cl-environments))
13173
e22b88b6 13174(define-public sbcl-static-dispatch
3b4aede5
SH
13175 (let ((commit "6243afcd152854c52ba33daef7394367b657d9c6")
13176 (revision "1"))
13177 (package
13178 (name "sbcl-static-dispatch")
13179 (version (git-version "0.3" revision commit))
13180 (source
13181 (origin
13182 (method git-fetch)
13183 (uri (git-reference
13184 (url "https://github.com/alex-gutev/static-dispatch")
13185 (commit commit)))
13186 (file-name (git-file-name "static-dispatch" version))
13187 (sha256
13188 (base32 "1lli9ar1xbnhkgb5d01rlw4pvfylg2arrw68np2c07fpkkafimg7"))))
13189 (build-system asdf-build-system/sbcl)
13190 (native-inputs
13191 `(("prove" ,sbcl-prove)))
13192 (inputs
13193 `(("agutil" ,sbcl-agutil)
13194 ("alexandria" ,sbcl-alexandria)
13195 ("anaphora" ,sbcl-anaphora)
13196 ("arrows" ,sbcl-arrows)
13197 ("cl-environments" ,sbcl-cl-environments)
13198 ("closer-mop" ,sbcl-closer-mop)
13199 ("iterate" ,sbcl-iterate)
13200 ("trivia" ,sbcl-trivia)))
13201 (home-page "https://github.com/alex-gutev/static-dispatch")
13202 (synopsis "Static generic function dispatch for Common Lisp")
13203 (description "Static dispatch is a Common Lisp library, inspired by
e22b88b6
PN
13204@code{inlined-generic-function}, which allows standard Common Lisp generic
13205function dispatch to be performed statically (at compile time) rather than
13206dynamically (runtime). This is similar to what is known as \"overloading\" in
13207languages such as C++ and Java.
13208
13209The purpose of static dispatch is to provide an optimization in cases where
13210the usual dynamic dispatch is too slow, and the dynamic features of generic
13211functions, such as adding/removing methods at runtime are not required. An
13212example of such a case is a generic equality comparison function. Currently
13213generic functions are considered far too slow to implement generic arithmetic
13214and comparison operations when used heavily in numeric code.")
3b4aede5 13215 (license license:expat))))
e22b88b6
PN
13216
13217(define-public cl-static-dispatch
13218 (sbcl-package->cl-source-package sbcl-static-dispatch))
13219
13220(define-public ecl-static-dispatch
13221 (sbcl-package->ecl-package sbcl-static-dispatch))
7a34169f 13222
85821dcd
PN
13223(define-public sbcl-generic-cl
13224 ;; Latest commit includes a necessary fix for our Guix build.
13225 (let ((commit "8e5a81487ee3c13fe5ffdc8bdda161d476639535"))
13226 (package
13227 (name "sbcl-generic-cl")
13228 (version (git-version "0.7.1" "1" commit))
13229 (source
13230 (origin
13231 (method git-fetch)
13232 (uri (git-reference
13233 (url "https://github.com/alex-gutev/generic-cl")
13234 (commit commit)))
13235 (file-name (git-file-name name version))
13236 (sha256
13237 (base32
13238 "11w0g79s4wmc78vmfng437rmsgnp5qn246zcyr540fp5nw0ad6ix"))))
13239 (build-system asdf-build-system/sbcl)
13240 (inputs
13241 `(("agutil" ,sbcl-agutil)
13242 ("alexandria" ,sbcl-alexandria)
13243 ("anaphora" ,sbcl-anaphora)
13244 ("arrows" ,sbcl-arrows)
13245 ("cl-custom-hash-table" ,sbcl-custom-hash-table)
058d4fc8 13246 ("static-dispatch" ,sbcl-static-dispatch)
85821dcd 13247 ("trivia" ,sbcl-trivia)))
85821dcd
PN
13248 (native-inputs
13249 `(("prove" ,sbcl-prove)))
13250 (arguments
13251 ;; Tests fail because SBCL head size is not high enough.
13252 ;; https://github.com/alex-gutev/generic-cl/issues/6
13253 `(#:tests? #f))
13254 (home-page "https://alex-gutev.github.io/generic-cl/")
13255 (synopsis "Generic function interface to standard Common Lisp functions")
13256 (description "@code{generic-cl} provides a generic function wrapper over
13257various functions in the Common Lisp standard, such as equality predicates and
13258sequence operations. The goal of this wrapper is to provide a standard
13259interface to common operations, such as testing for the equality of two
13260objects, which is extensible to user-defined types.")
13261 (license license:expat))))
13262
13263(define-public cl-generic-cl
13264 (sbcl-package->cl-source-package sbcl-generic-cl))
13265
13266(define-public ecl-generic-cl
13267 (sbcl-package->ecl-package sbcl-generic-cl))
13268
7a34169f
AK
13269(define-public sbcl-defpackage-plus
13270 (let ((revision "0")
13271 (commit "5492e27e0bdb7b75fa5177ea4388519dc7a75f11"))
13272 (package
13273 (name "sbcl-defpackage-plus")
13274 (version (git-version "1.0" revision commit))
13275 (source
13276 (origin
13277 (method git-fetch)
13278 (uri (git-reference
13279 (url "https://github.com/rpav/defpackage-plus")
13280 (commit commit)))
13281 (file-name (git-file-name name version))
13282 (sha256
13283 (base32 "0lzljvf343xb6mlh6lni2i27hpm5qd376522mk6hr2pa20vd6rdq"))))
13284 (build-system asdf-build-system/sbcl)
13285 (inputs
13286 `(("alexandria" ,sbcl-alexandria)))
13287 (home-page "https://github.com/rpav/defpackage-plus")
13288 (synopsis "Extensible @code{DEFPACKAGE} variant with version support")
13289 (description
13290 "@code{DEFPACKAGE-PLUS} is an extensible @code{DEFPACKAGE} variant with
13291predictable cross-platform behavior and some utilities useful for versioning.")
13292 (license license:bsd-2))))
13293
13294(define-public cl-defpackage-plus
13295 (sbcl-package->cl-source-package sbcl-defpackage-plus))
13296
13297(define-public ecl-defpackage-plus
13298 (sbcl-package->ecl-package sbcl-defpackage-plus))
0fac1f25
AK
13299
13300(define-public sbcl-deploy
f8d81093
SH
13301 (let ((commit "9b20e64fe924b9e31832304d87a3a72c383dc6d8")
13302 (revision "2"))
0fac1f25
AK
13303 (package
13304 (name "sbcl-deploy")
13305 (version (git-version "1.0.0" revision commit))
13306 (source
13307 (origin
13308 (method git-fetch)
13309 (uri (git-reference
13310 (url "https://github.com/Shinmera/deploy")
13311 (commit commit)))
f8d81093 13312 (file-name (git-file-name "deploy" version))
0fac1f25 13313 (sha256
f8d81093 13314 (base32 "07pfkibaridihg8lbq2czwa4iqifqk24n6rx7bfnv7i49p1ppja1"))))
0fac1f25 13315 (build-system asdf-build-system/sbcl)
f8d81093
SH
13316 (arguments
13317 `(#:test-asd-file "deploy-test.asd"
13318 #:asd-files '("deploy.asd"
13319 "deploy-test.asd")))
13320 (native-inputs
13321 `(("cl-mpg123" ,sbcl-cl-mpg123)
13322 ("cl-out123" ,sbcl-cl-out123)))
0fac1f25
AK
13323 (inputs
13324 `(("cffi" ,sbcl-cffi)
f8d81093
SH
13325 ("documentation-utils" ,sbcl-documentation-utils)
13326 ("trivial-features" ,sbcl-trivial-features)))
0fac1f25
AK
13327 (home-page "https://shinmera.github.io/deploy/")
13328 (synopsis "Deployment tools for standalone Common Lisp application")
13329 (description
13330 "This is a system to help you easily and quickly deploy standalone
13331common lisp applications as binaries. Specifically it is geared towards
13332applications with foreign library dependencies that run some kind of GUI.")
13333 (license license:artistic2.0))))
13334
13335(define-public cl-deploy
13336 (sbcl-package->cl-source-package sbcl-deploy))
13337
13338(define-public ecl-deploy
13339 (sbcl-package->ecl-package sbcl-deploy))
84811414
AK
13340
13341(define-public sbcl-deeds
13342 ;; taged branch is outdated
13343 (let ((revision "1")
13344 (commit "f5df54eac79b58a34030e0eb8acf3952c788410d"))
13345 (package
13346 (name "sbcl-deeds")
13347 (version (git-version "1.1.1" revision commit))
13348 (source
13349 (origin
13350 (method git-fetch)
13351 (uri (git-reference
13352 (url "https://github.com/Shinmera/deeds")
13353 (commit commit)))
13354 (file-name (git-file-name name version))
13355 (sha256
13356 (base32 "062cnb2dwli6pw3zvv46jfxyxdzcbzwsck5pa6nw03qf1j1hyg3k"))))
13357 (build-system asdf-build-system/sbcl)
13358 (inputs
13359 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13360 ("closer-mop" ,sbcl-closer-mop)
13361 ("form-fiddle" ,sbcl-form-fiddle)
13362 ("lambda-fiddle" ,sbcl-lambda-fiddle)))
13363 (home-page "https://github.com/Shinmera/deeds")
13364 (synopsis "Extensible Event Delivery System")
13365 (description
13366 "@code{deeds} allows for efficient event delivery to multiple handlers
13367with a complex event filtering system.")
13368 (license license:zlib))))
13369
13370(define-public cl-deeds
13371 (sbcl-package->cl-source-package sbcl-deeds))
13372
13373(define-public ecl-deeds
13374 (sbcl-package->ecl-package sbcl-deeds))
e3d5a206
AK
13375
13376(define-public sbcl-make-hash
13377 ;; no tagged branch
13378 (let ((revision "1")
13379 (commit "ae0909cd8e697520a1085fac6f54ac2b448ebd21"))
13380 (package
13381 (name "sbcl-make-hash")
13382 (version (git-version "1.0.2" revision commit))
13383 (source
13384 (origin
13385 (method git-fetch)
13386 (uri (git-reference
13387 (url "https://github.com/genovese/make-hash")
13388 (commit commit)))
13389 (file-name (git-file-name name version))
13390 (sha256
13391 (base32 "1qa4mcmb3pv44py0j129dd8hjx09c2akpnds53b69151mgwv5qz8"))))
13392 (build-system asdf-build-system/sbcl)
13393 (home-page "https://github.com/genovese/make-hash")
13394 (synopsis "Common Lisp package for flexible hash table creation")
13395 (description
13396 "This is a Common Lisp package for hash table creation with flexible,
13397extensible initializers.")
13398 (license license:bsd-3))))
13399
13400(define-public cl-make-hash
13401 (sbcl-package->cl-source-package sbcl-make-hash))
13402
13403(define-public ecl-make-hash
13404 (sbcl-package->ecl-package sbcl-make-hash))
6e043dfc
AK
13405
13406(define-public sbcl-claw-support
13407 (package
13408 (name "sbcl-claw-support")
13409 (version "1.0.0")
13410 (source
13411 (origin
13412 (method git-fetch)
13413 (uri (git-reference
13414 (url "https://github.com/borodust/claw-support")
13415 (commit "9a15c8bed04585f45e6a461bcda1b475144dbd0b")))
13416 (file-name (git-file-name name version))
13417 (sha256
13418 (base32 "1my2ka7h72ipx5n3b465g6kjkasrhsvhqlijwcg6dhlzs5yygl23"))))
13419 (build-system asdf-build-system/sbcl)
13420 (home-page "https://github.com/borodust/claw-support")
13421 (synopsis "Support routines for claw")
13422 (description
8d8ecbfe 13423 "This package provides support routines for the @code{claw} Common Lisp
6e043dfc
AK
13424package.")
13425 (license license:expat)))
13426
13427(define-public cl-claw-support
13428 (sbcl-package->cl-source-package sbcl-claw-support))
13429
13430(define-public ecl-claw-support
13431 (sbcl-package->ecl-package sbcl-claw-support))
dec194bf 13432
b50a1442
AK
13433(define-public sbcl-claw
13434 (let ((revision "0")
13435 (commit "3cd4a96fca95eb9e8d5d069426694669f81b2250"))
13436 (package
13437 (name "sbcl-claw")
13438 (version (git-version "1.0" revision commit))
13439 (source
13440 (origin
13441 (method git-fetch)
13442 (uri (git-reference
13443 (url "https://github.com/borodust/claw")
13444 (commit commit)))
13445 (file-name (git-file-name "claw" version))
13446 (sha256
13447 (base32 "146yv0hc4hmk72562ssj2d41143pp84dcbd1h7f4nx1c7hf2bb0d"))))
13448 (build-system asdf-build-system/sbcl)
13449 (inputs
13450 `(("alexandria" ,sbcl-alexandria)
13451 ("cffi" ,sbcl-cffi)
13452 ("cl-json" ,sbcl-cl-json)
13453 ("cl-ppcre" ,sbcl-cl-ppcre)
13454 ("claw-support" ,sbcl-claw-support)
13455 ("local-time" ,sbcl-local-time)
13456 ("trivial-features" ,sbcl-trivial-features)))
13457 (home-page "https://github.com/borodust/claw")
13458 (synopsis "Autowrapper for Common Lisp")
13459 (description
13460 "This is a Common Lisp autowrapping facility for quickly creating clean
13461and lean bindings to C libraries.")
13462 (license license:bsd-2))))
13463
13464(define-public cl-claw
13465 (sbcl-package->cl-source-package sbcl-claw))
13466
13467(define-public ecl-claw
13468 (sbcl-package->ecl-package sbcl-claw))
13469
ef9c5247
AK
13470(define-public sbcl-claw-utils
13471 (let ((revision "0")
13472 (commit "efe25016501973dc369f067a64c7d225802bc56f"))
13473 (package
13474 (name "sbcl-claw-utils")
13475 ;; version is not specified
13476 (version (git-version "0.0.0" revision commit))
13477 (source
13478 (origin
13479 (method git-fetch)
13480 (uri (git-reference
13481 (url "https://github.com/borodust/claw-utils")
13482 (commit commit)))
13483 (file-name (git-file-name "claw-utils" version))
13484 (sha256
13485 (base32 "01df3kyf2qs3czi332dnz2s35x2j0fq46vgmsw7wjrrvnqc22mk5"))))
13486 (build-system asdf-build-system/sbcl)
13487 (inputs
13488 `(("alexandria" ,sbcl-alexandria)
13489 ("cffi" ,sbcl-cffi)
13490 ("claw" ,sbcl-claw)))
13491 (home-page "https://github.com/borodust/claw-utils")
13492 (synopsis "Utilities for easier autowrapping")
13493 (description
3a2e1fa7 13494 "This Common Lisp library contains various handy utilities to help
ef9c5247
AK
13495autowrapping with @code{claw}.")
13496 (license license:expat))))
13497
13498(define-public cl-claw-utils
13499 (sbcl-package->cl-source-package sbcl-claw-utils))
13500
13501(define-public ecl-claw-utils
13502 (sbcl-package->ecl-package sbcl-claw-utils))
13503
dec194bf
GLV
13504(define-public sbcl-array-operations
13505 (let ((commit "75cbc3b1adb2e3ce2109489753d0f290b071e81b")
13506 (revision "0"))
13507 (package
13508 (name "sbcl-array-operations")
13509 (version (git-version "0.0.0" revision commit))
13510 (source
13511 (origin
13512 (method git-fetch)
13513 (uri (git-reference
13514 (url "https://github.com/bendudson/array-operations")
13515 (commit commit)))
13516 (file-name (git-file-name "array-operations" version))
13517 (sha256
13518 (base32 "0ip49hhq32w80qsc7jmspyda5r2rsszvw0mk2r3341cld78sz9ya"))))
13519 (build-system asdf-build-system/sbcl)
13520 (native-inputs
13521 `(("alexandria" ,sbcl-alexandria)
13522 ("clunit2" ,sbcl-clunit2)))
13523 (inputs
13524 `(("let-plus" ,sbcl-let-plus)))
13525 (synopsis "Simple array operations library for Common Lisp")
13526 (description
13527 "This library is a collection of functions and macros for manipulating
13528Common Lisp arrays and performing numerical calculations with them.")
13529 (home-page "https://github.com/bendudson/array-operations")
13530 (license license:expat))))
13531
13532(define-public cl-array-operations
13533 (sbcl-package->cl-source-package sbcl-array-operations))
13534
13535(define-public ecl-array-operations
13536 (sbcl-package->ecl-package sbcl-array-operations))
0809e4a4
GLV
13537
13538(define-public sbcl-clml
13539 (let ((commit "95505b54c8c7b4b27f500c3be97fa5732f4b51a8")
13540 (revision "0"))
13541 (package
13542 (name "sbcl-clml")
13543 (version (git-version "0.0.0" revision commit))
13544 (source
13545 (origin
13546 (method git-fetch)
13547 (uri (git-reference
13548 (url "https://github.com/mmaul/clml")
13549 (commit commit)))
13550 (file-name (git-file-name "clml" version))
13551 (sha256
13552 (base32 "006pii59nmpc61n7p7h8ha5vjg6x0dya327i58z0rnvxs249h345"))
13553 ;; TODO: Remove this when the patch has been merged upstream.
13554 (patches (search-patches "sbcl-clml-fix-types.patch"))))
13555 (build-system asdf-build-system/sbcl)
13556 (inputs
13557 `(("alexandia" ,sbcl-alexandria)
13558 ("array-operations" ,sbcl-array-operations)
13559 ("cl-fad" ,sbcl-cl-fad)
13560 ("cl-ppcre" ,sbcl-cl-ppcre)
13561 ("drakma" ,sbcl-drakma)
13562 ("introspect-environment" ,sbcl-introspect-environment)
13563 ("iterate" ,sbcl-iterate)
13564 ("lparallel" ,sbcl-lparallel)
13565 ("parse-number" ,sbcl-parse-number)
13566 ("split-sequence" ,sbcl-split-sequence)
13567 ("trivial-garbage" ,sbcl-trivial-garbage)))
13568 (synopsis "Common Lisp machine learning library")
13569 (description
13570 "CLML (Common Lisp Machine Learning) is a high performance and large
13571scale statistical machine learning package")
13572 (home-page "https://mmaul.github.io/clml/")
13573 (license license:llgpl))))
13574
13575(define-public cl-clml
13576 (sbcl-package->cl-source-package sbcl-clml))
fd994faa
GLV
13577
13578(define-public sbcl-utm-ups
b1ea2f05 13579 (let ((commit "ffcb7b6d5a56fb7d4b2b95b83bbd28ffe6e6961f")
fd994faa
GLV
13580 (revision "0"))
13581 (package
13582 (name "sbcl-utm-ups")
b1ea2f05 13583 (version (git-version "1.1" revision commit))
fd994faa
GLV
13584 (source
13585 (origin
13586 (method git-fetch)
13587 (uri (git-reference
13588 (url "https://github.com/glv2/utm-ups")
13589 (commit commit)))
13590 (file-name (git-file-name "utm-ups" version))
13591 (sha256
b1ea2f05 13592 (base32 "1rvyh0srgd81kvbzmq4ysd9y6c0qdwh23naqxc9asw1vh7fq08x1"))))
fd994faa
GLV
13593 (build-system asdf-build-system/sbcl)
13594 (native-inputs
13595 `(("fiveam" ,sbcl-fiveam)))
13596 (synopsis
13597 "Convert coordinates between latitude/longitude and UTM or UPS")
13598 (description
13599 "This a Common Lisp library to convert geographic coordinates between
13600latitude/longitude and UTM (Universal Transverse Mercator) or UPS (Universal
13601Polar Stereographic).")
13602 (home-page "https://github.com/glv2/utm-ups")
13603 (license license:gpl3+))))
13604
13605(define-public cl-utm-ups
13606 (sbcl-package->cl-source-package sbcl-utm-ups))
13607
13608(define-public ecl-utm-ups
13609 (sbcl-package->ecl-package sbcl-utm-ups))
291328b1
GLV
13610
13611(define-public sbcl-mgrs
13612 (let ((commit "00455460407b7e5509d1be3da09bf6152956761f")
13613 (revision "0"))
13614 (package
13615 (name "sbcl-mgrs")
13616 (version (git-version "1.0" revision commit))
13617 (source
13618 (origin
13619 (method git-fetch)
13620 (uri (git-reference
13621 (url "https://github.com/glv2/mgrs")
13622 (commit commit)))
13623 (file-name (git-file-name "mgrs" version))
13624 (sha256
13625 (base32 "0ckvn4hg3wwivzavhfashb6fap4a1q10l8krhbng8bdb54ac10sz"))))
13626 (build-system asdf-build-system/sbcl)
13627 (native-inputs
13628 `(("fiveam" ,sbcl-fiveam)))
13629 (inputs
13630 `(("utm-ups" ,sbcl-utm-ups)))
13631 (synopsis
13632 "Convert coordinates between latitude/longitude and MGRS")
13633 (description
13634 "This a Common Lisp library to convert geographic coordinates between
13635latitude/longitude and MGRS.")
13636 (home-page "https://github.com/glv2/mgrs")
13637 (license license:gpl3+))))
13638
13639(define-public cl-mgrs
13640 (sbcl-package->cl-source-package sbcl-mgrs))
13641
13642(define-public ecl-mgrs
13643 (sbcl-package->ecl-package sbcl-mgrs))
deed0161
GLV
13644
13645(define-public sbcl-maidenhead
13646 (let ((commit "b756d235c27b5d6798867aa240318af1a8f35d6d")
13647 (revision "0"))
13648 (package
13649 (name "sbcl-maidenhead")
13650 (version (git-version "1.0" revision commit))
13651 (source
13652 (origin
13653 (method git-fetch)
13654 (uri (git-reference
13655 (url "https://github.com/glv2/maidenhead")
13656 (commit commit)))
13657 (file-name (git-file-name "maidenhead" version))
13658 (sha256
13659 (base32 "02p990zprhjvifmsfk8yh3frvz6xyw26ikzxvzglqdixbal36nr3"))))
13660 (build-system asdf-build-system/sbcl)
13661 (native-inputs
13662 `(("fiveam" ,sbcl-fiveam)))
13663 (synopsis
13664 "Convert coordinates between latitude/longitude and Maidenhead")
13665 (description
13666 "This a Common Lisp library to convert geographic coordinates between
13667latitude/longitude and Maidenhead locator system.")
13668 (home-page "https://github.com/glv2/maidenhead")
13669 (license license:gpl3+))))
13670
13671(define-public cl-maidenhead
13672 (sbcl-package->cl-source-package sbcl-maidenhead))
13673
13674(define-public ecl-maidenhead
13675 (sbcl-package->ecl-package sbcl-maidenhead))
ad884c3b
GLV
13676
13677(define-public sbcl-olc
13678 (let ((commit "517e27fa57d9a119b00a29c4b6b31e553deff309")
13679 (revision "0"))
13680 (package
13681 (name "sbcl-olc")
13682 (version (git-version "1.0" revision commit))
13683 (source
13684 (origin
13685 (method git-fetch)
13686 (uri (git-reference
13687 (url "https://github.com/glv2/olc")
13688 (commit commit)))
13689 (file-name (git-file-name "olc" version))
13690 (sha256
13691 (base32 "1lnfhp6z6kc8l605zp4siyjiw74y1h4bdq3jfizi084v505wxhgr"))))
13692 (build-system asdf-build-system/sbcl)
13693 (native-inputs
13694 `(("fiveam" ,sbcl-fiveam)))
13695 (synopsis
13696 "Convert coordinates between latitude/longitude and Open Location Code")
13697 (description
13698 "This a Common Lisp library to convert geographic coordinates between
13699latitude/longitude and Open Location Code.")
13700 (home-page "https://github.com/glv2/olc")
13701 (license license:gpl3+))))
13702
13703(define-public cl-olc
13704 (sbcl-package->cl-source-package sbcl-olc))
13705
13706(define-public ecl-olc
13707 (sbcl-package->ecl-package sbcl-olc))
d13fb04b
PN
13708
13709(define-public sbcl-regex
13710 (let ((commit "fbc9a9f313b9edc1788f33d4b23a29151635ae22"))
13711 (package
13712 (name "sbcl-regex")
13713 (version (git-version "1" "1" commit))
13714 (source
13715 (origin
13716 (method git-fetch)
13717 (uri (git-reference
13718 (url "https://github.com/michaelw/regex/")
13719 (commit commit)))
13720 (file-name (git-file-name name version))
13721 (sha256
13722 (base32 "0wq5wlafrxv13wg28hg5b10sc48b88swsvznpy2zg7x37m4nmm6a"))))
13723 (build-system asdf-build-system/sbcl)
13724 (home-page "https://github.com/michaelw/regex/")
13725 (synopsis "Regular expression engine for Common Lisp")
13726 (description
13727 "This Common Lisp package provides a regular expression engine.")
13728 (license license:bsd-2))))
13729
13730(define-public cl-regex
13731 (sbcl-package->cl-source-package sbcl-regex))
13732
13733(define-public ecl-regex
13734 (sbcl-package->ecl-package sbcl-regex))
6ba21a2e
PN
13735
13736(define-public sbcl-clawk
13737 (let ((commit "3a91634df686417114044a98c063cbe76bfac7b6"))
13738 (package
13739 (name "sbcl-clawk")
13740 (version (git-version "4" "1" commit))
13741 (source
13742 (origin
13743 (method git-fetch)
13744 (uri (git-reference
13745 (url "https://github.com/sharplispers/clawk")
13746 (commit commit)))
13747 (file-name (git-file-name name version))
13748 (sha256
13749 (base32 "1ph3xjqilvinvgr9q3w47zxqyz1sqnq030nlx7kgkkv8j3bnqk7a"))))
13750 (build-system asdf-build-system/sbcl)
13751 (inputs
13752 `(("sbcl-regex" ,sbcl-regex)))
13753 (home-page "https://github.com/sharplispers/clawk")
13754 (synopsis "Common Lisp AWK")
13755 (description
13756 "CLAWK is an AWK implementation embedded into Common Lisp.")
13757 (license license:bsd-2))))
13758
13759(define-public cl-clawk
13760 (sbcl-package->cl-source-package sbcl-clawk))
13761
13762(define-public ecl-clawk
13763 (sbcl-package->ecl-package sbcl-clawk))
8ee3e783
PN
13764
13765(define-public sbcl-check-it
13766 (let ((commit "b79c9103665be3976915b56b570038f03486e62f"))
13767 (package
13768 (name "sbcl-check-it")
13769 (version (git-version "0.1.0" "1" commit))
13770 (source
13771 (origin
13772 (method git-fetch)
13773 (uri (git-reference
13774 (url "https://github.com/DalekBaldwin/check-it/")
13775 (commit commit)))
13776 (file-name (git-file-name name version))
13777 (sha256
13778 (base32 "1kbjwpniffdpv003igmlz5r0vy65m7wpfnhg54fhwirp1227hgg7"))))
13779 (build-system asdf-build-system/sbcl)
13780 (inputs
13781 `(("alexandria" ,sbcl-alexandria)
13782 ("closer-mop" ,sbcl-closer-mop)
13783 ("optima" ,sbcl-optima)))
13784 (native-inputs
13785 `(("stefil" ,sbcl-stefil)))
13786 (home-page "https://github.com/arclanguage/Clamp")
13787 (synopsis "Randomized specification-based testing for Common Lisp")
13788 (description
13789 "This is a randomized property-based testing library for Common Lisp.
13790Rather than being a full-fledged general test framework in its own right, it's
13791designed to embed randomized tests in whatever framework you like.")
13792 (license license:llgpl))))
13793
13794(define-public cl-check-it
13795 (sbcl-package->cl-source-package sbcl-check-it))
13796
13797(define-public ecl-check-it
13798 (sbcl-package->ecl-package sbcl-check-it))
f8257207
PN
13799
13800(define-public sbcl-clamp
13801 (let ((commit "02b8f3953e5753cc61a719807c82f3795cd28fe1"))
13802 (package
13803 (name "sbcl-clamp")
13804 (version (git-version "0.3" "1" commit))
13805 (source
13806 (origin
13807 (method git-fetch)
13808 (uri (git-reference
13809 (url "https://github.com/arclanguage/Clamp")
13810 (commit commit)))
13811 (file-name (git-file-name name version))
13812 (sha256
13813 (base32 "0fdr9nqfmmpxm6hvjdxi1jkclya9xlnrw1yc3cn1m4ww3f50p31m"))))
13814 (build-system asdf-build-system/sbcl)
13815 (inputs
13816 `(("iterate" ,sbcl-iterate)
13817 ("cl-syntax" ,sbcl-cl-syntax)))
13818 (native-inputs
13819 `(("cl-unit" ,sbcl-clunit)
13820 ("check-it" ,sbcl-check-it)))
13821 (arguments
13822 `(#:phases
13823 (modify-phases %standard-phases
13824 (add-after 'unpack 'fix-build
13825 (lambda _
13826 (substitute* "clamp.asd"
13827 (("\\(:file \"read\" :depends-on \\(\"aliases\"\\)\\)")
13828 "(:file \"read\" :depends-on (\"aliases\" \"base\"))"))
13829 #t)))))
13830 (home-page "https://github.com/arclanguage/Clamp")
13831 (synopsis "Common Lisp with Arc macros and procedures")
13832 (description
13833 "Clamp is an attempt to bring the powerful, but verbose, language of
13834Common Lisp up to the terseness of Arc.
13835
13836There are two parts to Clamp. There is the core of Clamp, which implements
13837the utilities of Arc that are easily converted from Arc to Common Lisp. The
13838other part is the \"experimental\" part. It contains features of Arc that are
13839not so easy to copy (ssyntax, argument destructuring, etc.).")
13840 (license license:artistic2.0))))
13841
13842(define-public cl-clamp
13843 (sbcl-package->cl-source-package sbcl-clamp))
13844
13845(define-public ecl-clamp
13846 (sbcl-package->ecl-package sbcl-clamp))
91d59549
PN
13847
13848(define-public sbcl-trivial-shell
13849 (let ((commit "e02ec191b34b52deca5d1c4ee99d4fa13b8772e0"))
13850 (package
13851 (name "sbcl-trivial-shell")
13852 (version (git-version "0.2.0" "1" commit))
13853 (source
13854 (origin
13855 (method git-fetch)
13856 (uri (git-reference
13857 (url "https://github.com/gwkkwg/trivial-shell")
13858 (commit commit)))
13859 (file-name (git-file-name name version))
13860 (sha256
13861 (base32 "08mpkl5ij5sjfsyn8pq2kvsvpvyvr7ha1r8g1224fa667b8k2q85"))))
13862 (build-system asdf-build-system/sbcl)
13863 (native-inputs
13864 `(("lift" ,sbcl-lift)))
13865 (home-page "http://common-lisp.net/project/trivial-shell/")
13866 (synopsis "Common Lisp access to the shell")
13867 (description
13868 "A simple Common-Lisp interface to the underlying operating system.
13869It's independent of the implementation and operating system.")
13870 (license license:expat))))
13871
13872(define-public cl-trivial-shell
13873 (sbcl-package->cl-source-package sbcl-trivial-shell))
13874
13875(define-public ecl-trivial-shell
13876 (sbcl-package->ecl-package sbcl-trivial-shell))
65bf9f6b
PN
13877
13878(define-public sbcl-clesh
13879 (let ((commit "44e96e04a72e5bc006dc4eb02ce8962348dd4a11"))
13880 (package
13881 (name "sbcl-clesh")
13882 (version (git-version "0.0.0" "1" commit))
13883 (source
13884 (origin
13885 (method git-fetch)
13886 (uri (git-reference
13887 (url "https://github.com/Neronus/Clesh")
13888 (commit commit)))
13889 (file-name (git-file-name name version))
13890 (sha256
13891 (base32 "012ry02djnqyvvs61wbbqj3saz621w2l9gczrywdxhi5p4ycx318"))))
13892 (build-system asdf-build-system/sbcl)
13893 (inputs
13894 `(("trivial-shell" ,sbcl-trivial-shell)
13895 ("named-readtables" ,sbcl-named-readtables)))
13896 (home-page "https://github.com/Neronus/Clesh")
13897 (synopsis "Embed shell code in Common Lisp")
13898 (description
13899 "This is a very short and simple program, written in Common Lisp, that
13900extends Common Lisp to embed shell code in a manner similar to Perl's
13901backtick. It has been forked from SHELISP.")
13902 (license license:bsd-2))))
13903
13904(define-public cl-clesh
13905 (sbcl-package->cl-source-package sbcl-clesh))
13906
13907(define-public ecl-clesh
13908 (sbcl-package->ecl-package sbcl-clesh))
4f298eba 13909
dba6389c
SH
13910(define-public sbcl-trivial-channels
13911 (let ((commit "e2370118d8983ba69c0360a7695f8f2e2fd6a8a6")
13912 (revision "1"))
13913 (package
13914 (name "sbcl-trivial-channels")
13915 (version (git-version "1.0" revision commit))
13916 (source
13917 (origin
13918 (method git-fetch)
13919 (uri (git-reference
13920 (url "https://github.com/rpav/trivial-channels")
13921 (commit commit)))
13922 (file-name (git-file-name "trivial-channels" version))
13923 (sha256
13924 (base32 "04wnxcgk40x8p0gxnz9arv1a5wasdqrdxa8c4p5v7r2mycfps6jj"))))
13925 (build-system asdf-build-system/sbcl)
13926 (inputs
13927 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
13928 ("trivial-timeout" ,sbcl-trivial-timeout)))
13929 (home-page "https://github.com/rpav/trivial-channels")
13930 (synopsis "Common Lisp simple thread-safe channels with timeout")
13931 (description
13932 "It's very basic implementation of channels and queue for Common Lisp.")
13933 (license license:bsd-2))))
13934
13935(define-public ecl-trivial-channels
13936 (sbcl-package->ecl-package sbcl-trivial-channels))
13937
13938(define-public cl-trivial-channels
13939 (sbcl-package->cl-source-package sbcl-trivial-channels))
13940
4f298eba
PN
13941(define-public sbcl-trivial-download
13942 (let ((commit "d2472061d86b1cf3d32f388daacd4e32a13af699"))
13943 (package
13944 (name "sbcl-trivial-download")
13945 (version (git-version "0.3" "1" commit))
13946 (source
13947 (origin
13948 (method git-fetch)
13949 (uri (git-reference
13950 (url "https://github.com/eudoxia0/trivial-download/")
13951 (commit commit)))
13952 (file-name (git-file-name name version))
13953 (sha256
13954 (base32 "06f46zr3gp3wlm2kgxna24qd2gpr1v89x9fynh1x5vrw6c6hqjcv"))))
13955 (build-system asdf-build-system/sbcl)
13956 (inputs
13957 `(("drakma" ,sbcl-drakma)))
13958 (home-page "https://github.com/eudoxia0/trivial-download/")
13959 (synopsis "Download files from Common Lisp")
13960 (description
13961 "@code{trivial-download} allows you to download files from the Internet
13962from Common Lisp. It provides a progress bar.")
13963 (license license:bsd-2))))
13964
13965(define-public cl-trivial-download
13966 (sbcl-package->cl-source-package sbcl-trivial-download))
13967
13968(define-public ecl-trivial-download
13969 (sbcl-package->ecl-package sbcl-trivial-download))
52b81c32
PN
13970
13971(define-public sbcl-gtwiwtg
13972 (package
13973 (name "sbcl-gtwiwtg")
13974 (version "0.1.1")
13975 (source
13976 (origin
13977 (method git-fetch)
13978 (uri (git-reference
13979 (url "https://github.com/cbeo/gtwiwtg/")
13980 (commit version)))
13981 (file-name (git-file-name name version))
13982 (sha256
13983 (base32 "0lkraw0dwh4is4x5sp5rjrw6f93m0gr9849abrbi12s25ws7jbw4"))))
13984 (build-system asdf-build-system/sbcl)
13985 (native-inputs
13986 `(("osicat" ,sbcl-osicat)
13987 ("prove" ,sbcl-prove)))
13988 (home-page "https://github.com/cbeo/gtwiwtg/")
13989 (synopsis "Naive generators for Common Lisp")
13990 (description
13991 "The GTWIWTG library (Generators The Way I Want Them Generated --
13992technically not generators, but iterators) is meant to be small, explorable,
13993and understandable.")
13994 (license license:gpl3)))
13995
13996(define-public cl-gtwiwtg
13997 (sbcl-package->cl-source-package sbcl-gtwiwtg))
13998
13999(define-public ecl-gtwiwtg
14000 (sbcl-package->ecl-package sbcl-gtwiwtg))
40693b61
PN
14001
14002(define-public sbcl-cl-progress-bar
14003 (let ((commit "9374170858663c8fe829e9fb5a29bd2cb48d95ae"))
14004 (package
14005 (name "sbcl-cl-progress-bar")
14006 (version (git-version "0.0.0" "1" commit))
14007 (source
14008 (origin
14009 (method git-fetch)
14010 (uri (git-reference
14011 (url "https://github.com/sirherrbatka/cl-progress-bar/")
14012 (commit commit)))
14013 (file-name (git-file-name name version))
14014 (sha256
14015 (base32 "1ldb4qhmx431n3lsq71ynwb9ybazbfqd55icjbhi06mj52ngndir"))))
14016 (build-system asdf-build-system/sbcl)
14017 (inputs
14018 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
14019 ("documentation-utils-extensions" ,sbcl-documentation-utils-extensions)))
14020 (home-page "https://github.com/sirherrbatka/cl-progress-bar/")
14021 (synopsis "Progress bars in Common Lisp")
14022 (description
14023 "This library provides almost the same code as used inside Quicklisp
14024for drawning progress bars")
14025 (license license:expat))))
14026
14027(define-public cl-progress-bar
14028 (sbcl-package->cl-source-package sbcl-cl-progress-bar))
14029
14030(define-public ecl-cl-progress-bar
14031 (sbcl-package->ecl-package sbcl-cl-progress-bar))
e4c1818e
PN
14032
14033(define-public sbcl-repl-utilities
8aedb2f0 14034 (let ((commit "7e300df663177ea4581f4e7e9c601377881dd986"))
e4c1818e
PN
14035 (package
14036 (name "sbcl-repl-utilities")
14037 (version (git-version "0.0.0" "1" commit))
14038 (source
14039 (origin
14040 (method git-fetch)
14041 (uri (git-reference
14042 (url "https://github.com/m-n/repl-utilities/")
14043 (commit commit)))
14044 (file-name (git-file-name name version))
14045 (sha256
8aedb2f0 14046 (base32 "1hh56pq5nw3l4b83dzlyss69f06r038byj2cnjwvci4hfjhdfcc3"))))
e4c1818e
PN
14047 (build-system asdf-build-system/sbcl)
14048 (home-page "https://github.com/m-n/repl-utilities")
14049 (synopsis "Ease common tasks at the Common Lisp REPL")
14050 (description
14051 "@code{repl-utilities} is a set of utilities which ease life at the
14052REPL. It includes three sorts of features: introspective procedures,
14053miscellaneous utility functions, and, pulling them together, methods to
14054conveniently keep these symbols and optionally additional symbols available in
14055whichever package you switch to.")
14056 (license license:bsd-2))))
14057
14058(define-public cl-repl-utilities
14059 (sbcl-package->cl-source-package sbcl-repl-utilities))
14060
14061(define-public ecl-repl-utilities
14062 (sbcl-package->ecl-package sbcl-repl-utilities))
fc929639
PN
14063
14064(define-public sbcl-supertrace
14065 (let ((commit "66d22c3ff131ecd1c8048dfced1d62ed6024ecb0"))
14066 (package
14067 (name "sbcl-supertrace")
14068 (version (git-version "0.1.0" "1" commit))
14069 (source
14070 (origin
14071 (method git-fetch)
14072 (uri (git-reference
14073 (url "https://github.com/fukamachi/supertrace")
14074 (commit commit)))
14075 (file-name (git-file-name name version))
14076 (sha256
14077 (base32 "0n369n6b7y1m49biccnnr7svymjdsk8sksrkqrn3mj21vgv7s7bg"))))
14078 (build-system asdf-build-system/sbcl)
14079 (native-inputs
14080 `(("cffi-grovel" ,sbcl-cffi)
14081 ("rove" ,sbcl-rove)
14082 ("cl-ppcre" ,sbcl-cl-ppcre)
14083 ("bordeaux-threads" ,sbcl-bordeaux-threads)))
14084 (inputs
14085 `(("cffi" ,sbcl-cffi)))
14086 (home-page "https://github.com/fukamachi/supertrace")
14087 (synopsis "Improved Common Lisp tracing for debugging and profiling")
14088 (description
14089 "Supertrace provides a superior Common Lisp @code{trace} functionality
14090for debugging and profiling real world applications.")
14091 (license license:bsd-2))))
14092
14093(define-public cl-supertrace
14094 (sbcl-package->cl-source-package sbcl-supertrace))
14095
14096(define-public ecl-supertrace
14097 (sbcl-package->ecl-package sbcl-supertrace))
1467ae64
PN
14098
14099(define-public sbcl-trivial-benchmark
14100 (let ((commit "42d76733dd2e873471c6f1e27d39113293f7dd5c"))
14101 (package
14102 (name "sbcl-trivial-benchmark")
14103 (version (git-version "2.0.0" "1" commit))
14104 (source
14105 (origin
14106 (method git-fetch)
14107 (uri (git-reference
14108 (url "https://github.com/Shinmera/trivial-benchmark/")
14109 (commit commit)))
14110 (file-name (git-file-name name version))
14111 (sha256
14112 (base32 "0fbzqbpm2ixz85555krl36kbbbjyn699vdj6k383khi3g9y629fa"))))
14113 (build-system asdf-build-system/sbcl)
14114 (inputs
14115 `(("alexandria" ,sbcl-alexandria)))
14116 (home-page "http://shinmera.github.io/trivial-benchmark/")
14117 (synopsis "Easy to use benchmarking system for Common Lisp")
14118 (description
14119 "Trivial-Benchmark runs a block of code many times and outputs some
14120statistical data for it. On SBCL this includes the data from @code{time}, for
14121all other implementations just the @code{real-time} and @code{run-time} data.
14122However, you can extend the system by adding your own @code{metrics} to it, or
14123even by adding additional statistical @code{compute}ations. ")
14124 (license license:zlib))))
14125
14126(define-public cl-trivial-benchmark
14127 (sbcl-package->cl-source-package sbcl-trivial-benchmark))
14128
14129(define-public ecl-trivial-benchmark
14130 (sbcl-package->ecl-package sbcl-trivial-benchmark))
c16628ea
PN
14131
14132(define-public sbcl-glyphs
14133 (let ((commit "1ff5714e8c1dca327bc604dfe3e3d1f4b7755373"))
14134 (package
14135 (name "sbcl-glyphs")
14136 (version (git-version "0.0.0" "1" commit))
14137 (source
14138 (origin
14139 (method git-fetch)
14140 (uri (git-reference
14141 (url "https://github.com/ahungry/glyphs/")
14142 (commit commit)))
14143 (file-name (git-file-name name version))
14144 (sha256
14145 (base32 "17kai1anbkk5dj5sbrsin2fc019cmcbglb900db60v38myj0y0wf"))))
14146 (build-system asdf-build-system/sbcl)
14147 (inputs
14148 `(("cl-ppcre" ,sbcl-cl-ppcre)
14149 ("parenscript" ,sbcl-parenscript)
14150 ("named-readtables" ,sbcl-named-readtables)))
14151 (home-page "https://github.com/ahungry/glyphs/")
14152 (synopsis "Reduce Common Lisp verbosity")
14153 (description
14154 "This library is a little experiment in reducing verbosity in Common
14155Lisp, inspired by BODOL (@url{https://github.com/bodil/BODOL}).")
14156 (license license:gpl3))))
14157
14158(define-public cl-glyphs
14159 (sbcl-package->cl-source-package sbcl-glyphs))
14160
14161(define-public ecl-glyphs
14162 (sbcl-package->ecl-package sbcl-glyphs))
cebfb29a
SH
14163
14164(define-public sbcl-zs3
14165 (package
14166 (name "sbcl-zs3")
14167 (version "1.3.3")
14168 (source
14169 (origin
14170 (method git-fetch)
14171 (uri
14172 (git-reference
14173 (url "https://github.com/xach/zs3")
14174 (commit (string-append "release-" version))))
14175 (file-name (git-file-name "zs3" version))
14176 (sha256
14177 (base32 "186v95wgsj2hkxdw2jl9x1w4fddjclp7arp0rrd9vf5ly8h8sbf3"))))
14178 (build-system asdf-build-system/sbcl)
14179 (inputs
14180 `(("drakma" ,sbcl-drakma)
14181 ("alexandria" ,sbcl-alexandria)
14182 ("cxml" ,sbcl-cxml)
14183 ("ironclad" ,sbcl-ironclad)
14184 ("puri" ,sbcl-puri)
14185 ("cl-base64" ,sbcl-cl-base64)))
14186 (synopsis "Work with Amazon S3 and Amazon CloudFront from Common Lisp")
14187 (description "This is ZS3, a library for working with Amazon's Simple Storage
14188Service (S3) and CloudFront service from Common Lisp.")
14189 (home-page "https://github.com/xach/zs3")
14190 (license license:bsd-2)))
14191
14192(define-public cl-zs3
14193 (sbcl-package->cl-source-package sbcl-zs3))
14194
14195(define-public ecl-zs3
14196 (sbcl-package->ecl-package sbcl-zs3))
4a084c7a
GLV
14197
14198(define-public sbcl-simple-neural-network
14199 (package
14200 (name "sbcl-simple-neural-network")
14201 (version "3.1")
14202 (source
14203 (origin
14204 (method git-fetch)
14205 (uri (git-reference
14206 (url "https://github.com/glv2/simple-neural-network")
14207 (commit (string-append "v" version))))
14208 (file-name (git-file-name "simple-neural-network" version))
14209 (sha256
14210 (base32 "1jj1c90fr5clwka0jv32hv6xp1bkdlpa6x5jh19an13rhx8ll4zr"))))
14211 (build-system asdf-build-system/sbcl)
14212 (native-inputs
14213 `(("chipz" ,sbcl-chipz)
14214 ("fiveam" ,sbcl-fiveam)))
14215 (inputs
14216 `(("cl-store" ,sbcl-cl-store)
14217 ("lparallel" ,sbcl-lparallel)))
14218 (arguments
14219 `(#:phases
14220 (modify-phases %standard-phases
14221 (add-after 'check 'remove-test-data
14222 (lambda* (#:key outputs #:allow-other-keys)
14223 (let ((out (assoc-ref outputs "out")))
14224 (for-each delete-file (find-files out "\\.gz$"))))))))
14225 (synopsis "Simple neural network in Common Lisp")
14226 (description
14227 "@code{simple-neural-network} is a Common Lisp library for creating,
14228training and using basic neural networks. The networks created by this
14229library are feedforward neural networks trained using backpropagation.")
14230 (home-page "https://github.com/glv2/simple-neural-network")
14231 (license license:gpl3+)))
14232
14233(define-public cl-simple-neural-network
14234 (sbcl-package->cl-source-package sbcl-simple-neural-network))
14235
14236(define-public ecl-simple-neural-network
14237 (sbcl-package->ecl-package sbcl-simple-neural-network))
08c4dd51
GLV
14238
14239(define-public sbcl-zstd
14240 (let ((commit "d144582c581aaa52bac24d6686af27fa3e781e06")
14241 (revision "1"))
14242 (package
14243 (name "sbcl-zstd")
14244 (version (git-version "1.0" revision commit))
14245 (source
14246 (origin
14247 (method git-fetch)
14248 (uri (git-reference
14249 (url "https://github.com/glv2/cl-zstd")
14250 (commit commit)))
14251 (file-name (git-file-name "cl-zstd" version))
14252 (sha256
14253 (base32 "1774jy8hzbi6nih3sq6vchk66f7g8w86dwgpbvljyfzcnkcaz6ql"))))
14254 (build-system asdf-build-system/sbcl)
14255 (native-inputs
14256 `(("fiveam" ,sbcl-fiveam)))
14257 (inputs
14258 `(("cffi" ,sbcl-cffi)
14259 ("cl-octet-streams" ,sbcl-cl-octet-streams)
14260 ("zstd-lib" ,zstd "lib")))
14261 (arguments
14262 '(#:phases
14263 (modify-phases %standard-phases
14264 (add-after 'unpack 'fix-paths
14265 (lambda* (#:key inputs #:allow-other-keys)
14266 (substitute* "src/libzstd.lisp"
14267 (("libzstd\\.so")
14268 (string-append (assoc-ref inputs "zstd-lib")
14269 "/lib/libzstd.so")))
14270 #t)))))
14271 (synopsis "Common Lisp library for Zstandard (de)compression")
14272 (description
14273 "This Common Lisp library provides functions for Zstandard
14274compression/decompression using bindings to the libzstd C library.")
14275 (home-page "https://github.com/glv2/cl-zstd")
14276 (license license:gpl3+))))
14277
14278(define-public cl-zstd
14279 (sbcl-package->cl-source-package sbcl-zstd))
14280
14281(define-public ecl-zstd
14282 (sbcl-package->ecl-package sbcl-zstd))
caa22090
PN
14283
14284(define-public sbcl-agnostic-lizard
14285 (let ((commit "fe3a73719f05901c8819f8995a3ebae738257952")
14286 (revision "1"))
14287 (package
14288 (name "sbcl-agnostic-lizard")
14289 (version (git-version "0.0.0" revision commit))
14290 (source
14291 (origin
14292 (method git-fetch)
14293 (uri (git-reference
14294 (url "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
14295 (commit commit)))
14296 (file-name (git-file-name name version))
14297 (sha256
14298 (base32 "0ax78y8w4zlp5dcwyhz2nq7j3shi49qn31dkfg8lv2jlg7mkwh2d"))))
14299 (build-system asdf-build-system/sbcl)
14300 (synopsis "Almost correct portable code walker for Common Lisp")
14301 (description
14302 "Agnostic Lizard is a portable implementation of a code walker and in
14303particular of the macroexpand-all function (and macro) that makes a best
14304effort to be correct while not expecting much beyond what the Common Lisp
14305standard requires.
14306
14307It aims to be implementation-agnostic and to climb the syntax trees.")
69c05267 14308 (home-page "https://gitlab.common-lisp.net/mraskin/agnostic-lizard")
caa22090
PN
14309 (license license:gpl3+))))
14310
14311(define-public cl-agnostic-lizard
14312 (sbcl-package->cl-source-package sbcl-agnostic-lizard))
14313
14314(define-public ecl-agnostic-lizard
14315 (sbcl-package->ecl-package sbcl-agnostic-lizard))
b76ae073
SH
14316
14317(define-public sbcl-dynamic-classes
14318 (package
14319 (name "sbcl-dynamic-classes")
14320 (version "1.0.2")
14321 (source
14322 (origin
14323 (method git-fetch)
14324 (uri (git-reference
14325 (url "https://github.com/gwkkwg/dynamic-classes")
14326 (commit (string-append "version-" version))))
14327 (file-name (git-file-name "dynamic-classes" version))
14328 (sha256
14329 (base32 "1z3ag6w4ff0v6715xa9zhvwjqnp4i6zrjfmxdz8m115sklbwgm6c"))))
14330 (build-system asdf-build-system/sbcl)
14331 (inputs
14332 `(("metatilities-base" ,sbcl-metatilities-base)))
14333 (arguments
14334 ;; NOTE: (Sharlatan-20210106222900+0000) Circular dependencies and failing
14335 ;; test suites. lift-standard.config contains referances to deprecated
14336 ;; functionality.
14337 `(#:tests? #f))
14338 (home-page "https://common-lisp.net/project/dynamic-classes/")
14339 (synopsis "Dynamic class definition for Common Lisp")
14340 (description "Dynamic-Classes helps to ease the prototyping process by
14341bringing dynamism to class definition.")
14342 (license license:expat)))
14343
14344(define-public ecl-dynamic-classes
14345 (sbcl-package->ecl-package sbcl-dynamic-classes))
14346
14347(define-public cl-dynamic-classes
14348 (sbcl-package->cl-source-package sbcl-dynamic-classes))
375c44de
SH
14349
14350(define-public sbcl-cl-markdown
14351 ;; NOTE: (Sharlatan-20210106214629+0000) latest version tag
14352 ;; "version-0.10.6_version-0.10.6" is failing to build due to missing system
14353 ;; #:container-dynamic-classes
14354 (package
14355 (name "sbcl-cl-markdown")
14356 (version "0.10.4")
14357 (source
14358 (origin
14359 (method git-fetch)
14360 (uri (git-reference
14361 (url "https://github.com/gwkkwg/cl-markdown")
14362 (commit (string-append "version-" version))))
14363 (file-name (git-file-name "cl-markdown" version))
14364 (sha256
14365 (base32 "1wdjbdd1zyskxf7zlilcp6fmwkivybj0wjp64vvzb265d5xi7p8p"))))
14366 (build-system asdf-build-system/sbcl)
14367 (inputs
14368 `(("anaphora" ,sbcl-anaphora)
14369 ("cl-containers" ,sbcl-cl-containers)
14370 ("cl-ppcre" ,sbcl-cl-ppcre)
14371 ("dynamic-classes" ,sbcl-dynamic-classes)
14372 ("metabang-bind" ,sbcl-metabang-bind)
14373 ("metatilities-base" ,sbcl-metatilities-base)))
14374 (arguments
14375 ;; NOTE: (Sharlatan-20210107213629+0000) Tests depend on too many not
14376 ;; available systems, which themself are abandoned.
14377 `(#:tests? #f))
14378 (home-page "https://common-lisp.net/project/cl-markdown/")
14379 (synopsis "Common Lisp rewrite of Markdown")
14380 (description
14381 "This is an implementation of a Markdown parser in Common Lisp.")
14382 (license license:expat)))
14383
14384(define-public ecl-cl-markdown
14385 (sbcl-package->ecl-package sbcl-cl-markdown))
14386
14387(define-public cl-markdown
14388 (sbcl-package->cl-source-package sbcl-cl-markdown))
3bd8d045
PN
14389
14390(define-public sbcl-magicffi
14391 (let ((commit "d88f2f280c31f639e4e05be75215d8a8dce6aef2"))
14392 (package
14393 (name "sbcl-magicffi")
14394 (version (git-version "0.0.0" "1" commit))
14395 (source
14396 (origin
14397 (method git-fetch)
14398 (uri (git-reference
14399 (url "https://github.com/dochang/magicffi/")
14400 (commit commit)))
14401 (file-name (git-file-name name version))
14402 (sha256
14403 (base32 "0p6ysa92fk34bhxpw7bycbfgw150fv11z9x8jr9xb4lh8cm2hvp6"))))
14404 (build-system asdf-build-system/sbcl)
14405 (native-inputs
14406 `(("alexandria" ,sbcl-alexandria)))
14407 (inputs
14408 `(("cffi" ,sbcl-cffi)
14409 ("ppcre" ,sbcl-cl-ppcre)
14410 ("libmagic" ,file)))
14411 (arguments
14412 `(#:phases
14413 (modify-phases %standard-phases
14414 (add-after 'unpack 'fix-paths
14415 (lambda* (#:key inputs #:allow-other-keys)
14416 (let ((magic (assoc-ref inputs "libmagic")))
14417 (substitute* "grovel.lisp"
14418 (("/usr/include/magic.h")
14419 (string-append magic "/include/magic.h")))
14420 (substitute* "api.lisp"
14421 ((":default \"libmagic\"" all)
14422 (string-append ":default \"" magic "/lib/libmagic\"")))))))))
14423 (home-page "https://common-lisp.net/project/magicffi/")
14424 (synopsis "Common Lisp interface to libmagic based on CFFI")
14425 (description
14426 "MAGICFFI is a Common Lisp CFFI interface to libmagic(3), the file type
14427determination library using @emph{magic} numbers.")
14428 (license license:bsd-2))))
14429
14430(define-public ecl-magicffi
14431 (sbcl-package->ecl-package sbcl-magicffi))
14432
14433(define-public cl-magicffi
14434 (sbcl-package->cl-source-package sbcl-magicffi))
8142c550
PN
14435
14436(define-public sbcl-shlex
14437 (let ((commit "c5616dffca0d4d8ddbc1cd6f37a96d88477b2740"))
14438 (package
14439 (name "sbcl-shlex")
14440 (version (git-version "0.0.0" "1" commit))
14441 (source
14442 (origin
14443 (method git-fetch)
14444 (uri (git-reference
14445 (url "https://github.com/ruricolist/cl-shlex")
14446 (commit commit)))
14447 (file-name (git-file-name name version))
14448 (sha256
14449 (base32 "1nas024n4wv319bf40aal96g72bgi9nkapj2chywj2cc6r8hzkfg"))))
14450 (build-system asdf-build-system/sbcl)
14451 (inputs
14452 `(("alexandria" ,sbcl-alexandria)
14453 ("serapeum" ,sbcl-serapeum)
14454 ("ppcre" ,sbcl-cl-ppcre)
14455 ("unicode" ,sbcl-cl-unicode)))
14456 (home-page "https://github.com/ruricolist/cl-shlex")
14457 (synopsis "Common Lisp lexical analyzer for shell-like syntaxes")
14458 (description
14459 "This library contains a lexer for syntaxes that use shell-like rules
14460for quoting and commenting. It is a port of the @code{shlex} module from Python’s
14461standard library.")
14462 (license license:expat))))
14463
14464(define-public ecl-shlex
14465 (sbcl-package->ecl-package sbcl-shlex))
14466
14467(define-public cl-shlex
14468 (sbcl-package->cl-source-package sbcl-shlex))
dc9c866f
PN
14469
14470(define-public sbcl-cmd
af55e2aa 14471 (let ((commit "bc5a3bee8f22917126e4c3d05b33f766e562dbd8"))
dc9c866f
PN
14472 (package
14473 (name "sbcl-cmd")
af55e2aa 14474 (version (git-version "0.0.1" "3" commit))
dc9c866f
PN
14475 (source
14476 (origin
14477 (method git-fetch)
14478 (uri (git-reference
14479 (url "https://github.com/ruricolist/cmd/")
14480 (commit commit)))
14481 (file-name (git-file-name name version))
14482 (sha256
af55e2aa 14483 (base32 "1sjlabrknw1kjb2y89vssjhcqh3slgly8wnr3152zgis8lsj2yc7"))))
dc9c866f
PN
14484 (build-system asdf-build-system/sbcl)
14485 (inputs
14486 `(("alexandria" ,sbcl-alexandria)
7f29d778 14487 ("coreutils" ,coreutils)
af55e2aa 14488 ("procps" ,procps)
dc9c866f
PN
14489 ("serapeum" ,sbcl-serapeum)
14490 ("shlex" ,sbcl-shlex)
14491 ("trivia" ,sbcl-trivia)))
7f29d778
PN
14492 (arguments
14493 `(#:phases
14494 (modify-phases %standard-phases
14495 (add-after 'unpack 'fix-paths
14496 (lambda* (#:key inputs #:allow-other-keys)
af55e2aa
PN
14497 (let ((bin (string-append (assoc-ref inputs "coreutils") "/bin"))
14498 (ps-bin (string-append (assoc-ref inputs "procps") "/bin")))
60528f9b 14499 (substitute* "cmd.lisp"
af55e2aa
PN
14500 (("\\(def \\+env\\+ \"env\"\\)")
14501 (format #f "(def +env+ \"~a/env\")" bin))
14502 (("\\(def \\+kill\\+ \"kill\"\\)")
14503 (format #f "(def +kill+ \"~a/kill\")" bin))
14504 (("\\(def \\+ps\\+ \"ps\"\\)")
14505 (format #f "(def +ps+ \"~a/ps\")" ps-bin))
14506 (("\\(def \\+pwd\\+ \"pwd\"\\)")
14507 (format #f "(def +pwd+ \"~a/pwd\")" bin))
14508 (("\\(def \\+sh\\+ \"/bin/sh\"\\)")
14509 (format #f "(def +sh+ \"~a\")" (which "sh")))
14510 (("\\(def \\+tr\\+ \"tr\"\\)")
14511 (format #f "(def +tr+ \"~a/tr\")" bin)))))))))
dc9c866f
PN
14512 (home-page "https://github.com/ruricolist/cmd")
14513 (synopsis "Conveniently run external programs from Common Lisp")
14514 (description
14515 "A utility for running external programs, built on UIOP.
14516Cmd is designed to be natural to use, protect against shell interpolation and
14517be usable from multi-threaded programs.")
14518 (license license:expat))))
14519
14520(define-public ecl-cmd
14521 (sbcl-package->ecl-package sbcl-cmd))
14522
14523(define-public cl-cmd
b4e58e66 14524 (sbcl-package->cl-source-package sbcl-cmd))
833d220d
PN
14525
14526(define-public sbcl-ppath
14527 (let ((commit "eb1a8173b4d1d691ea9a7699412123462f58c3ce"))
14528 (package
14529 (name "sbcl-ppath")
14530 (version (git-version "0.1" "1" commit))
14531 (source
14532 (origin
14533 (method git-fetch)
14534 (uri (git-reference
14535 (url "https://github.com/fourier/ppath/")
14536 (commit commit)))
14537 (file-name (git-file-name name commit))
14538 (sha256
14539 (base32 "1c46q9lmzqv14z80d3fwdawgn3pn4922x31fyqvsvbcjm4hd16fb"))))
14540 (build-system asdf-build-system/sbcl)
14541 (inputs
14542 `(("alexandria" ,sbcl-alexandria)
14543 ("cffi" ,sbcl-cffi)
14544 ("osicat" ,sbcl-osicat)
14545 ("ppcre" ,sbcl-cl-ppcre)
14546 ("split-sequence" ,sbcl-split-sequence)
14547 ("trivial-features" ,sbcl-trivial-features)))
14548 (native-inputs
14549 `(("cl-fad" ,sbcl-cl-fad)
14550 ("prove" ,sbcl-prove)))
14551 (home-page "https://github.com/fourier/ppath")
14552 (synopsis "Common Lisp's implementation of the Python's os.path module")
14553 (description
14554 "This library is a path strings manipulation library inspired by
14555Python's @code{os.path}. All functionality from @code{os.path} is supported on
14556major operation systems.
14557
14558The philosophy behind is to use simple strings and \"dumb\" string
14559manipulation functions to handle paths and filenames. Where possible the
14560corresponding OS system functions are called.")
14561 (license license:bsd-2))))
14562
14563(define-public ecl-ppath
14564 (sbcl-package->ecl-package sbcl-ppath))
14565
14566(define-public cl-ppath
52ee15f0 14567 (sbcl-package->cl-source-package sbcl-ppath))
99e6365c
PN
14568
14569(define-public sbcl-trivial-escapes
14570 (let ((commit "1eca78da2078495d09893be58c28b3aa7b8cc4d1"))
14571 (package
14572 (name "sbcl-trivial-escapes")
14573 (version (git-version "1.2.0" "1" commit))
14574 (source
14575 (origin
14576 (method git-fetch)
14577 (uri (git-reference
14578 (url "https://github.com/williamyaoh/trivial-escapes")
14579 (commit commit)))
14580 (file-name (git-file-name name commit))
14581 (sha256
14582 (base32 "0v6h8lk17iqv1qkxgqjyzn8gi6v0hvq2vmfbb01md3zjvjqxn6lr"))))
14583 (build-system asdf-build-system/sbcl)
14584 (inputs
14585 `(("named-readtables" ,sbcl-named-readtables)))
14586 (native-inputs
14587 `(("fiveam" ,sbcl-fiveam)))
14588 (home-page "https://github.com/williamyaoh/trivial-escapes")
14589 (synopsis "C-style escape directives for Common Lisp")
14590 (description
14591 "This Common Lisp library interprets escape characters the same way that
14592most other programming language do.
14593It provides four readtables. The default one lets you write strings like this:
14594@code{#\"This string has\na newline in it!\"}.")
14595 (license license:public-domain))))
14596
14597(define-public ecl-trivial-escapes
14598 (sbcl-package->ecl-package sbcl-trivial-escapes))
14599
14600(define-public cl-trivial-escapes
14601 (sbcl-package->cl-source-package sbcl-trivial-escapes))
13e18b32
PN
14602
14603(define-public sbcl-cl-indentify
14604 (let ((commit "eb770f434defa4cd41d84bca822428dfd0dbac53"))
14605 (package
14606 (name "sbcl-cl-indentify")
14607 (version (git-version "0.1" "1" commit))
14608 (source
14609 (origin
14610 (method git-fetch)
14611 (uri (git-reference
14612 (url "https://github.com/yitzchak/cl-indentify")
14613 (commit commit)))
14614 (file-name (git-file-name name commit))
14615 (sha256
14616 (base32 "0ha36bhg474vr76vfhr13szc8cfdj1ickg92k1icz791bqaqg67p"))))
14617 (build-system asdf-build-system/sbcl)
14618 (inputs
14619 `(("alexandria" ,sbcl-alexandria)
14620 ("command-line-arguments" ,sbcl-command-line-arguments)
14621 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
14622 (native-inputs
14623 `(("trivial-escapes" ,sbcl-trivial-escapes)
14624 ("rove" ,sbcl-rove)))
14625 (home-page "https://github.com/yitzchak/cl-indentify")
14626 (synopsis "Code beautifier for Common Lisp")
14627 (description
14628 "A library and command line utility to automatically indent Common Lisp
14629source files.")
14630 (license license:expat))))
14631
14632(define-public ecl-cl-indentify
14633 (sbcl-package->ecl-package sbcl-cl-indentify))
14634
14635(define-public cl-indentify
14636 (sbcl-package->cl-source-package sbcl-cl-indentify))
bc14c6a4
PN
14637
14638(define-public sbcl-concrete-syntax-tree
14639 (let ((commit "abd242a59dadc5452aa9dbc1d313c83ec2c11f46"))
14640 (package
14641 (name "sbcl-concrete-syntax-tree")
14642 (version (git-version "0.0.0" "1" commit))
14643 (source
14644 (origin
14645 (method git-fetch)
14646 (uri (git-reference
14647 (url "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14648 (commit commit)))
14649 (file-name (git-file-name name commit))
14650 (sha256
14651 (base32 "1lyrglc3h1if44gxd9cwv90wa90nrdjvb7fry39b1xn8ywdfa7di"))))
14652 (build-system asdf-build-system/sbcl)
14653 (inputs
14654 `(("acclimation" ,sbcl-acclimation)))
14655 (home-page "https://github.com/s-expressionists/Concrete-Syntax-Tree")
14656 (synopsis "Parse Common Lisp code into a concrete syntax tree")
14657 (description
14658 "This library is intended to solve the problem of source tracking for
14659Common Lisp code.
14660
14661By \"source tracking\", it is meant that code elements that have a known
14662origin in the form of a position in a file or in an editor buffer are
14663associated with some kind of information about this origin.
14664
14665Since the exact nature of such origin information depends on the Common Lisp
14666implementation and the purpose of wanting to track that origin, the library
14667does not impose a particular structure of this information. Instead, it
14668provides utilities for manipulating source code in the form of what is called
14669concrete syntax trees (CSTs for short) that preserve this information about
14670the origin.")
14671 (license license:bsd-2))))
14672
14673(define-public ecl-concrete-syntax-tree
14674 (sbcl-package->ecl-package sbcl-concrete-syntax-tree))
14675
14676(define-public cl-concrete-syntax-tree
14677 (sbcl-package->cl-source-package sbcl-concrete-syntax-tree))
cdd1023d
PN
14678
14679(define-public sbcl-eclector
14680 (package
14681 (name "sbcl-eclector")
14682 (version "0.5.0")
14683 (source
14684 (origin
14685 (method git-fetch)
14686 (uri (git-reference
14687 (url "https://github.com/s-expressionists/Eclector")
14688 (commit version)))
14689 (file-name (git-file-name name version))
14690 (sha256
14691 (base32 "0bwkla0jdp5bg0q1zca5wg22b0nbdmglgax345nrhsf8bdrh47wm"))))
14692 (build-system asdf-build-system/sbcl)
14693 (inputs
14694 `(("acclimation" ,sbcl-acclimation)
14695 ("alexandria" ,sbcl-alexandria)
14696 ("closer-mop" ,sbcl-closer-mop)
14697 ("concrete-syntax-tree" ,sbcl-concrete-syntax-tree)))
14698 (native-inputs
14699 `(("fiveam" ,sbcl-fiveam)))
14700 (arguments
14701 '(#:asd-systems '("eclector"
14702 "eclector-concrete-syntax-tree")))
14703 (home-page "https://s-expressionists.github.io/Eclector/")
14704 (synopsis "Highly customizable, portable Common Lisp reader")
14705 (description
14706 "Eclector is a portable Common Lisp reader that is highly customizable,
14707can recover from errors and can return concrete syntax trees.
14708
14709In contrast to many other reader implementations, eclector can recover from
14710most errors in the input supplied to it and continue reading. This capability
14711is realized as a restart.
14712
14713It can also produce instances of the concrete syntax tree classes provided by
14714the concrete syntax tree library.")
14715 (license license:bsd-2)))
14716
14717(define-public ecl-eclector
14718 (sbcl-package->ecl-package sbcl-eclector))
14719
14720(define-public cl-eclector
14721 (sbcl-package->cl-source-package sbcl-eclector))
4e0b0bf2
PN
14722
14723(define-public sbcl-jsown
14724 (let ((commit "744c4407bef58dfa876d9da0b5c0205d869e7977"))
14725 (package
14726 (name "sbcl-jsown")
14727 (version (git-version "1.0.1" "1" commit))
14728 (source
14729 (origin
14730 (method git-fetch)
14731 (uri (git-reference
14732 (url "https://github.com/madnificent/jsown")
14733 (commit commit)))
14734 (file-name (git-file-name name commit))
14735 (sha256
14736 (base32 "0gadvmf1d9bq35s61z76psrsnzwwk12svi66jigf491hv48wigw7"))))
14737 (build-system asdf-build-system/sbcl)
14738 (home-page "https://github.com/madnificent/jsown")
14739 (synopsis "Fast JSON reader / writer library for Common Lisp")
14740 (description
14741 "@code{jsown} is a high performance Common Lisp JSON parser. Its aim
14742is to allow for the fast parsing of JSON objects in Common Lisp. Recently,
14743functions and macros have been added to ease the burden of writing and editing
14744@code{jsown} objects.
14745
14746@code{jsown} allows you to parse JSON objects quickly to a modifiable Lisp
14747list and write them back. If you only need partial retrieval of objects,
14748@code{jsown} allows you to select the keys which you would like to see parsed.
14749@code{jsown} also has a JSON writer and some helper methods to alter the JSON
14750objects themselves.")
14751 (license license:expat))))
14752
14753(define-public ecl-jsown
14754 (sbcl-package->ecl-package sbcl-jsown))
14755
14756(define-public cl-jsown
14757 (sbcl-package->cl-source-package sbcl-jsown))
abf21b14
PN
14758
14759(define-public sbcl-system-locale
14760 (let ((commit "4b334bc2fa45651bcaa28ae7d9331095d6bf0a17"))
14761 (package
14762 (name "sbcl-system-locale")
14763 (version (git-version "1.0.0" "1" commit))
14764 (source
14765 (origin
14766 (method git-fetch)
14767 (uri (git-reference
14768 (url "https://github.com/Shinmera/system-locale/")
14769 (commit commit)))
14770 (file-name (git-file-name name commit))
14771 (sha256
14772 (base32 "00p5c053kmgq4ks6l9mxsqz6g3bjcybvkvj0bh3r90qgpkaawm1p"))))
14773 (build-system asdf-build-system/sbcl)
14774 (inputs
14775 `(("documentation-utils" ,sbcl-documentation-utils)))
14776 (home-page "https://shinmera.github.io/system-locale/")
14777 (synopsis "Get the system's locale and language settings in Common Lisp")
14778 (description
14779 "This library retrieves locale information configured on the
14780system. This is helpful if you want to write applications and libraries that
14781display messages in the user's native language.")
14782 (license license:zlib))))
14783
14784(define-public ecl-system-locale
14785 (sbcl-package->ecl-package sbcl-system-locale))
14786
14787(define-public cl-system-locale
14788 (sbcl-package->cl-source-package sbcl-system-locale))
4c518507
PN
14789
14790(define-public sbcl-language-codes
14791 (let ((commit "e7aa0e37cb97a3d37d6bc7316b479d01bff8f42e"))
14792 (package
14793 (name "sbcl-language-codes")
14794 (version (git-version "1.0.0" "1" commit))
14795 (source
14796 (origin
14797 (method git-fetch)
14798 (uri (git-reference
14799 (url "https://github.com/Shinmera/language-codes")
14800 (commit commit)))
14801 (file-name (git-file-name name commit))
14802 (sha256
14803 (base32 "0py176ibmsc01n5r0q1bs1ykqf5jwdbh8kx0j1a814l9y51241v0"))))
14804 (build-system asdf-build-system/sbcl)
14805 (inputs
14806 `(("documentation-utils" ,sbcl-documentation-utils)))
14807 (home-page "https://shinmera.github.io/language-codes/")
14808 (synopsis "Map ISO language codes to language names in Common Lisp")
14809 (description
14810 "This is a small library providing the ISO-639 language code to
14811language name mapping.")
14812 (license license:zlib))))
14813
14814(define-public ecl-language-codes
14815 (sbcl-package->ecl-package sbcl-language-codes))
14816
14817(define-public cl-language-codes
14818 (sbcl-package->cl-source-package sbcl-language-codes))
773ffd1f
PN
14819
14820(define-public sbcl-multilang-documentation
14821 (let ((commit "59e798a07e949e8957a20927f52aca425d84e4a0"))
14822 (package
14823 (name "sbcl-multilang-documentation")
14824 (version (git-version "1.0.0" "1" commit))
14825 (source
14826 (origin
14827 (method git-fetch)
14828 (uri (git-reference
14829 (url "https://github.com/Shinmera/multilang-documentation")
14830 (commit commit)))
14831 (file-name (git-file-name name commit))
14832 (sha256
14833 (base32 "13y5jskx8n2b7kimpfarr8v777w3b7zj5swg1b99nj3hk0843ixw"))))
14834 (build-system asdf-build-system/sbcl)
14835 (inputs
14836 `(("documentation-utils" ,sbcl-documentation-utils)
14837 ("language-codes" ,sbcl-language-codes)
14838 ("system-locale" ,sbcl-system-locale)))
14839 (home-page "https://shinmera.github.io/multilang-documentation/")
14840 (synopsis "Add multiple languages support to Common Lisp documentation")
14841 (description
14842 "This library provides a drop-in replacement function for
14843cl:documentation that supports multiple docstrings per-language, allowing you
14844to write documentation that can be internationalised.")
14845 (license license:zlib))))
14846
14847(define-public ecl-multilang-documentation
14848 (sbcl-package->ecl-package sbcl-multilang-documentation))
14849
14850(define-public cl-multilang-documentation
14851 (sbcl-package->cl-source-package sbcl-multilang-documentation))
c2fe94ab
PN
14852
14853(define-public sbcl-trivial-do
14854 (let ((commit "03a1729f1e71bad3ebcf6cf098a0cce52dfa1163"))
14855 (package
14856 (name "sbcl-trivial-do")
14857 (version (git-version "0.1" "1" commit))
14858 (source
14859 (origin
14860 (method git-fetch)
14861 (uri (git-reference
14862 (url "https://github.com/yitzchak/trivial-do")
14863 (commit commit)))
14864 (file-name (git-file-name name commit))
14865 (sha256
14866 (base32 "1ffva79nkicc7wc8c2ic5nayis3b2rk5sxzj74yjkymkjgbpcrgd"))))
14867 (build-system asdf-build-system/sbcl)
14868 (home-page "https://github.com/yitzchak/trivial-do")
14869 (synopsis "Additional dolist style macros for Common Lisp")
14870 (description
14871 "Additional dolist style macros for Common Lisp, such as
14872@code{doalist}, @code{dohash}, @code{dolist*}, @code{doplist}, @code{doseq}
14873and @code{doseq*}.")
14874 (license license:zlib))))
14875
14876(define-public ecl-trivial-do
14877 (sbcl-package->ecl-package sbcl-trivial-do))
14878
14879(define-public cl-trivial-do
14880 (sbcl-package->cl-source-package sbcl-trivial-do))
cc1c91c1
PN
14881
14882(define-public sbcl-common-lisp-jupyter
602f86d6 14883 (let ((commit "011f60b69a3b8c70eefeafe7acb724cd00dd3e62"))
cc1c91c1
PN
14884 (package
14885 (name "sbcl-common-lisp-jupyter")
602f86d6 14886 (version (git-version "0.1" "2" commit))
cc1c91c1
PN
14887 (source
14888 (origin
14889 (method git-fetch)
14890 (uri (git-reference
14891 (url "https://github.com/yitzchak/common-lisp-jupyter")
14892 (commit commit)))
14893 (file-name (git-file-name name commit))
14894 (sha256
602f86d6 14895 (base32 "10jdghlcmp9p6ygrvw7g49i8f9jy71ybzn29n544fzb6g47siqhw"))))
cc1c91c1
PN
14896 (build-system asdf-build-system/sbcl)
14897 (inputs
14898 `(("alexandria" ,sbcl-alexandria)
14899 ("babel" ,sbcl-babel)
14900 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14901 ("cl-base64" ,sbcl-cl-base64)
14902 ("cl-indentify" ,sbcl-cl-indentify)
14903 ("closer-mop" ,sbcl-closer-mop)
14904 ("eclector" ,sbcl-eclector)
14905 ("ironclad" ,sbcl-ironclad)
14906 ("iterate" ,sbcl-iterate)
14907 ("jsown" ,sbcl-jsown)
14908 ("multilang-documentation" ,sbcl-multilang-documentation)
14909 ("pzmq" ,sbcl-pzmq)
14910 ("puri" ,sbcl-puri)
14911 ("static-vectors" ,sbcl-static-vectors)
14912 ("trivial-do" ,sbcl-trivial-do)
14913 ("trivial-garbage" ,sbcl-trivial-garbage)
14914 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)
14915 ("trivial-mimes" ,sbcl-trivial-mimes)))
14916 (home-page "https://yitzchak.github.io/common-lisp-jupyter/")
14917 (synopsis "Common Lisp kernel for Jupyter")
14918 (description
14919 "This is a Common Lisp kernel for Jupyter along with a library for
14920building Jupyter kernels, based on Maxima-Jupyter which was based on
14921@code{cl-jupyter}.")
14922 (license license:zlib))))
14923
14924(define-public ecl-common-lisp-jupyter
14925 (sbcl-package->ecl-package sbcl-common-lisp-jupyter))
14926
14927(define-public cl-common-lisp-jupyter
14928 (sbcl-package->cl-source-package sbcl-common-lisp-jupyter))
051c1271
SH
14929
14930(define-public sbcl-radiance
14931 (let ((commit "5ffbe1f157edd17a13194495099efd81e052df85")
14932 (revision "1"))
14933 (package
14934 (name "sbcl-radiance")
14935 (version (git-version "2.1.2" revision commit))
14936 (source
14937 (origin
14938 (method git-fetch)
14939 (uri (git-reference
14940 (url "https://github.com/Shirakumo/radiance")
14941 (commit commit)))
14942 (file-name (git-file-name "radiance" version))
14943 (sha256
14944 (base32 "0hbkcnmnlj1cqzbv18zmla2iwbl65kxilz9764hndf8x8as1539c"))))
14945 (build-system asdf-build-system/sbcl)
14946 (arguments
14947 `(#:tests? #f ; TODO: The tests require some configuration.
14948 #:phases
14949 (modify-phases %standard-phases
14950 (add-after 'unpack 'disable-quicklisp
14951 (lambda _
14952 ;; Disable the automatic installation of systems by Quicklisp.
14953 ;; (Maybe there would be a way to package Quicklisp and make it
14954 ;; install things in the user's directory instead of
14955 ;; /gnu/store/...).
14956 (substitute* "interfaces.lisp"
14957 (("\\(unless \\(asdf:find-system configured-implementation NIL\\)"
14958 all)
14959 (string-append "#+quicklisp " all))))))))
14960 (native-inputs
14961 `(("alexandria" ,sbcl-alexandria)
14962 ("dexador" ,sbcl-dexador)
14963 ("parachute" ,sbcl-parachute)
14964 ("verbose" ,sbcl-verbose)))
14965 (inputs
14966 `(("babel" ,sbcl-babel)
14967 ("bordeaux-threads" ,sbcl-bordeaux-threads)
14968 ("cl-ppcre" ,sbcl-cl-ppcre)
14969 ("closer-mop" ,sbcl-closer-mop)
14970 ("documentation-utils" ,sbcl-documentation-utils)
14971 ("deploy" ,sbcl-deploy)
14972 ("form-fiddle" ,sbcl-form-fiddle)
14973 ("lambda-fiddle" ,sbcl-lambda-fiddle)
14974 ("local-time" ,sbcl-local-time)
14975 ("modularize-hooks" ,sbcl-modularize-hooks)
14976 ("modularize-interfaces" ,sbcl-modularize-interfaces)
14977 ("puri" ,sbcl-puri)
14978 ("trivial-indent" ,sbcl-trivial-indent)
14979 ("trivial-mimes" ,sbcl-trivial-mimes)
14980 ("ubiquitous-concurrent" ,sbcl-ubiquitous)))
14981 (home-page "https://shirakumo.github.io/radiance/")
14982 (synopsis "Common Lisp web application environment")
14983 (description
14984 "Radiance is a web application environment, which is sort of like a web
14985framework, but more general, more flexible. It should let you write personal
14986websites and generally deployable applications easily and in such a way that
14987they can be used on practically any setup without having to undergo special
14988adaptations.")
14989 (license license:zlib))))
14990
14991(define-public ecl-radiance
14992 (sbcl-package->ecl-package sbcl-radiance))
14993
14994(define-public cl-radiance
14995 (sbcl-package->cl-source-package sbcl-radiance))
f35c9fd5
SH
14996
14997(define-public sbcl-daemon
14998 (let ((commit "d5652f4332c3cee21e9bf83b9237129605004597")
14999 (revision "1"))
15000 (package
15001 (name "sbcl-daemon")
15002 (version (git-version "0.0.4" revision commit))
15003 (source
15004 (origin
15005 (method git-fetch)
15006 (uri (git-reference
15007 (url "https://github.com/snmsts/daemon")
15008 (commit commit)))
15009 (file-name (git-file-name "daemon" version))
15010 (sha256
15011 (base32 "1kdxfnhh9fz34j8qs7pn7mwjz3v33q4v9nh0hqkyzraq5xs2j3f4"))))
15012 (build-system asdf-build-system/sbcl)
15013 (inputs
15014 `(("trivial-features" ,sbcl-trivial-features)))
15015 (home-page "https://github.com/snmsts/daemon")
15016 (synopsis "Daemonize Common Lisp processes")
15017 (description
15018 "DAEMON provides the functionality of daemonizing Common Lisp processes
15019on UNIX like platforms.")
15020 (license license:expat))))
15021
15022(define-public ecl-daemon
15023 (sbcl-package->ecl-package sbcl-daemon))
15024
15025(define-public cl-daemon
15026 (sbcl-package->cl-source-package sbcl-daemon))
14b32f62
PN
15027
15028(define-public sbcl-file-attributes
62418f3d 15029 (let ((commit "bbde396438f37d676de9775239115410bec4da2d"))
14b32f62
PN
15030 (package
15031 (name "sbcl-file-attributes")
62418f3d 15032 (version (git-version "1.0.0" "2" commit))
14b32f62
PN
15033 (source
15034 (origin
15035 (method git-fetch)
15036 (uri (git-reference
15037 (url "https://github.com/Shinmera/file-attributes/")
15038 (commit commit)))
15039 (file-name (git-file-name name version))
15040 (sha256
62418f3d 15041 (base32 "0n8q818ry2shggjfhp8gjby8v5mla9pg97c5g19pcglpnwim7a74"))))
14b32f62
PN
15042 (build-system asdf-build-system/sbcl)
15043 (inputs
15044 `(("cffi" ,sbcl-cffi)
15045 ("documentation-utils" ,sbcl-documentation-utils)
15046 ("trivial-features" ,sbcl-trivial-features)))
15047 (home-page "https://shinmera.github.io/file-attributes/")
15048 (synopsis "Access to common file attributes in Common Lisp")
15049 (description
15050 "This is a small OS portability library to retrieve and set file
15051attributes not supported by the Common Lisp standard functions.")
15052 (license license:zlib))))
b35dea1d
PN
15053
15054(define-public ecl-file-attributes
15055 (sbcl-package->ecl-package sbcl-file-attributes))
15056
15057(define-public cl-file-attributes
15058 (sbcl-package->cl-source-package sbcl-file-attributes))
073ae1b9
AAG
15059
15060(define-public sbcl-cl-difflib
15061 (let ((commit "98eb335c693f1881584b83ca7be4a0fe05355c4e")
15062 (revision "0"))
15063 (package
15064 (name "sbcl-cl-difflib")
15065 (version (git-version "0.2" revision commit))
15066 (source
15067 (origin
15068 (method git-fetch)
15069 (uri (git-reference
15070 (url "https://github.com/wiseman/cl-difflib")
15071 (commit commit)))
15072 (file-name
15073 (git-file-name name version))
15074 (sha256
15075 (base32 "08if0abhqg191xcz9s7xv8faqq51nswzp8hw423fkqjzr24pmq48"))))
15076 (build-system asdf-build-system/sbcl)
15077 ;; Due to the age of this library tests use some deprecated
15078 ;; functionality and keep failing.
15079 (arguments
15080 '(#:tests? #f
15081 #:asd-files '("cl-difflib.asd")))
15082 (home-page "https://github.com/wiseman/cl-difflib")
15083 (synopsis "Compute differences between pairs of sequences")
15084 (description
15085 "A Common Lisp library for computing differences between
15086sequences based on the Python difflib module.")
15087 (license license:expat))))
15088
15089(define-public ecl-cl-difflib
15090 (sbcl-package->ecl-package sbcl-cl-difflib))
15091
15092(define-public cl-difflib
15093 (sbcl-package->cl-source-package sbcl-cl-difflib))
db22d936
AAG
15094
15095(define-public sbcl-cl-html-diff
15096 (let ((commit "5a0b39d1c524278d6f60851d7786bb2585614310")
15097 (revision "0"))
15098 (package
15099 (name "sbcl-cl-html-diff")
15100 (version (git-version "0.1" revision commit))
15101 (source
15102 (origin
15103 (method git-fetch)
15104 (uri (git-reference
15105 (url "https://github.com/wiseman/cl-html-diff")
15106 (commit commit)))
15107 (file-name
15108 (git-file-name name version))
15109 (sha256
15110 (base32 "1varnijivzd4jpimn1cz8p5ks713zzha5cgl4vmb0xr8ahravwzb"))))
15111 (build-system asdf-build-system/sbcl)
15112 (inputs
15113 `(("cl-difflib" ,sbcl-cl-difflib)))
15114 (home-page "https://github.com/wiseman/cl-html-diff")
15115 (synopsis "Generate a human-readable diff of two HTML documents")
15116 (description
15117 "A Common Lisp library for generating a human-readable diff of two
15118HTML documents.")
15119 (license license:expat))))
15120
15121(define-public ecl-cl-html-diff
15122 (sbcl-package->ecl-package sbcl-cl-html-diff))
15123
15124(define-public cl-html-diff
15125 (sbcl-package->cl-source-package sbcl-cl-html-diff))
9e76de04 15126
15127(define-public sbcl-tooter
15128 (let ((commit "b8d4b245b1d946bc9da6f51a3d8c2dc43e4d3868")
15129 (revision "1"))
15130 (package
15131 (name "sbcl-tooter")
15132 (version (git-version "1.0.0" revision commit))
15133 (source
15134 (origin
15135 (method git-fetch)
15136 (uri (git-reference
15137 (url "https://github.com/Shinmera/tooter")
15138 (commit commit)))
15139 (file-name (git-file-name "tooter" version))
15140 (sha256
15141 (base32 "0g40dlis4dbw4p3zxz3scx27b9zm8zlzihywapf5zqrdqfx5hpq9"))))
15142 (build-system asdf-build-system/sbcl)
15143 (inputs
15144 `(("sbcl-cl-ppcre" ,sbcl-cl-ppcre)
15145 ("sbcl-documentation-utils" ,sbcl-documentation-utils)
15146 ("sbcl-drakma" ,sbcl-drakma)
15147 ("sbcl-yason" ,sbcl-yason)))
15148 (synopsis "Common Lisp client library for Mastodon instances")
15149 (description
15150 "This is a Common Lisp library implementing the full v1 REST API
15151protocol for Mastodon.")
15152 (home-page "https://shinmera.github.io/tooter/")
15153 (license license:zlib))))
15154
15155(define-public ecl-tooter
15156 (sbcl-package->ecl-package sbcl-tooter))
15157
15158(define-public cl-tooter
15159 (sbcl-package->cl-source-package sbcl-tooter))
8768df2e 15160
15161(define-public sbcl-croatoan
7b5b4212 15162 (let ((commit "7077ef14d27e8708515ad8d309886f516e7fbd98")
15163 (revision "2"))
8768df2e 15164 (package
15165 (name "sbcl-croatoan")
15166 (version (git-version "0.0.1" revision commit))
15167 (source
15168 (origin
15169 (method git-fetch)
15170 (uri (git-reference
15171 (url "https://github.com/McParen/croatoan")
15172 (commit commit)))
15173 (file-name (git-file-name "croatoan" version))
15174 (sha256
7b5b4212 15175 (base32 "0gf2sjpsdkd9s8imwy2wjrkdx82a5sc4yy9bndlnjlwmdraw4j37"))))
8768df2e 15176 (build-system asdf-build-system/sbcl)
15177 (arguments
15178 '(#:phases
15179 (modify-phases %standard-phases
15180 (add-after 'unpack 'fix-paths
15181 (lambda* (#:key inputs #:allow-other-keys)
15182 (substitute* "ncurses/ncurses.lisp"
15183 (("libncursesw" all)
15184 (string-append (assoc-ref inputs "ncurses")
15185 "/lib/"
15186 all))))))))
15187 (inputs
15188 `(("bordeaux-threads" ,sbcl-bordeaux-threads)
15189 ("cffi" ,sbcl-cffi)
15190 ("ncurses" ,ncurses)
15191 ("trivial-gray-streams" ,sbcl-trivial-gray-streams)))
15192 (synopsis "Common Lisp bindings for the ncurses terminal library")
15193 (description "Croatoan provides high-level Common Lisp CLOS bindings for
15194the ncurses terminal library.")
15195 (home-page "https://github.com/McParen/croatoan")
15196 (license license:expat))))
15197
15198(define-public ecl-croatoan
15199 (sbcl-package->ecl-package sbcl-croatoan))
15200
15201(define-public cl-croatoan
15202 (sbcl-package->cl-source-package sbcl-croatoan))
c1b8219d 15203
15204(define-public sbcl-cl-spark
15205 (let ((commit "4e34bcebdcf8e45265986eb43ad4ad03bb41a581")
15206 (revision "1"))
15207 (package
15208 (name "sbcl-cl-spark")
15209 (version (git-version "0.1.13" revision commit))
15210 (source
15211 (origin
15212 (method git-fetch)
15213 (uri (git-reference
15214 (url "https://github.com/tkych/cl-spark")
15215 (commit commit)))
15216 (file-name (git-file-name "cl-spark" version))
15217 (sha256
15218 (base32 "0my1fsgi2rjaqkpk934f2bjy63pmnj7faza3fzvnk6k3l66y19nk"))))
15219 (build-system asdf-build-system/sbcl)
15220 (native-inputs
15221 `(("fiveam" ,sbcl-fiveam)))
15222 (synopsis "Common Lisp library to make histograms")
15223 (description "This is a Common Lisp library to make histograms using
15224UTF-8 block characters.")
15225 (home-page "https://github.com/tkych/cl-spark")
15226 (license license:expat))))
15227
15228(define-public ecl-cl-spark
15229 (sbcl-package->ecl-package sbcl-cl-spark))
15230
15231(define-public cl-spark
15232 (sbcl-package->cl-source-package sbcl-cl-spark))
c88de964 15233
15234(define-public sbcl-access
15235 (let ((commit "1b26db3760018cdc4624f880f0a1e0155d8f6c50")
15236 (revision "1"))
15237 (package
15238 (name "sbcl-access")
15239 (version (git-version "1.5.0" revision commit))
15240 (source
15241 (origin
15242 (method git-fetch)
15243 (uri (git-reference
15244 (url "https://github.com/sharplispers/access")
15245 (commit commit)))
15246 (file-name (git-file-name "access" version))
15247 (sha256
15248 (base32 "1knd3n4mpzkc97i1znbas32pscd30416isvmx2pjmgvar6k93pl5"))))
15249 (build-system asdf-build-system/sbcl)
15250 (native-inputs
15251 `(("lisp-unit2" ,sbcl-lisp-unit2)))
15252 (inputs
15253 `(("alexandria" ,sbcl-alexandria)
15254 ("anaphora" ,sbcl-anaphora)
15255 ("closer-mop" ,sbcl-closer-mop)
15256 ("interpol" ,sbcl-cl-interpol)
15257 ("iterate" ,sbcl-iterate)))
15258 (synopsis
15259 "Common lisp library to unify access to dictionary-like structures")
15260 (description
15261 "This is a Common lisp library to unify access to the most common
15262dictionary-like data structures.")
15263 (home-page "https://github.com/sharplispers/access")
15264 (license license:bsd-3))))
15265
15266(define-public ecl-access
15267 (sbcl-package->ecl-package sbcl-access))
15268
15269(define-public cl-access
15270 (sbcl-package->cl-source-package sbcl-access))
3c1cc499
GLV
15271
15272(define-public sbcl-sxql-composer
15273 (let ((commit "2b2230cb01ae1b68e28921d99e4814046867fb75")
15274 (revision "1"))
15275 (package
15276 (name "sbcl-sxql-composer")
15277 (version (git-version "0.1" revision commit))
15278 (source
15279 (origin
15280 (method git-fetch)
15281 (uri (git-reference
15282 (url "https://github.com/mmontone/sxql-composer")
15283 (commit commit)))
15284 (file-name (git-file-name "sxql-composer" version))
15285 (sha256
15286 (base32 "1agkrj3ymskzc3c7pxbrj123d1kygjqcls145m0ap3i07q96hh1r"))))
15287 (build-system asdf-build-system/sbcl)
15288 (inputs
15289 `(("sxql" ,sbcl-sxql)))
15290 (synopsis "Build and compose SXQL queries dynamically")
15291 (description
15292 "This is a Common Lisp library to build and compose SXQL queries
15293dynamically.")
15294 (home-page "https://github.com/mmontone/sxql-composer")
15295 (license license:expat))))
15296
15297(define-public ecl-sxql-composer
15298 (sbcl-package->ecl-package sbcl-sxql-composer))
15299
15300(define-public cl-sxql-composer
15301 (sbcl-package->cl-source-package sbcl-sxql-composer))
88d822c5 15302
15303(define-public sbcl-cl-i18n
15304 (let ((commit "fa0aa5bef8dfbdf2d72f7cc9f49e848ccbb567aa")
15305 (revision "1"))
15306 (package
15307 (name "sbcl-cl-i18n")
15308 (version (git-version "0.5.0" revision commit))
15309 (source
15310 (origin
15311 (method git-fetch)
15312 (uri (git-reference
15313 (url "https://notabug.org/cage/cl-i18n")
15314 (commit commit)))
15315 (file-name (git-file-name "cl-i18n" version))
15316 (sha256
15317 (base32 "1hpsdbb3hd79bzbrnbqgk2j3f0ispxvk91snp08fm2z3f1sds5as"))))
15318 (build-system asdf-build-system/sbcl)
15319 (inputs
15320 `(("alexandria" ,sbcl-alexandria)
15321 ("babel" ,sbcl-babel)
15322 ("cl-ppcre-unicode" ,sbcl-cl-ppcre-unicode)))
15323 (synopsis "Internationalisation framework for Common Lisp")
15324 (description
15325 "This is a Gettext-style internationalisation framework for Common
15326Lisp.")
15327 (home-page "https://notabug.org/cage/cl-i18n")
15328 (license license:llgpl))))
15329
15330(define-public ecl-cl-i18n
15331 (sbcl-package->ecl-package sbcl-cl-i18n))
15332
15333(define-public cl-i18n
15334 (sbcl-package->cl-source-package sbcl-cl-i18n))
9e9c9a3a 15335
15336(define-public sbcl-crypto-shortcuts
15337 (let ((commit "7efd22d80e867cd8c9f8f363d4fe7b51ee2dadc0")
15338 (revision "1"))
15339 (package
15340 (name "sbcl-crypto-shortcuts")
15341 (version (git-version "2.0.0" revision commit))
15342 (source
15343 (origin
15344 (method git-fetch)
15345 (uri (git-reference
15346 (url "https://github.com/Shinmera/crypto-shortcuts")
15347 (commit commit)))
15348 (file-name (git-file-name "crypto-shortcuts" version))
15349 (sha256
15350 (base32 "0c0m0ar04jn7qf2v8c4sivamlzki03r13rnxy8b3n27rh9r6hgin"))))
15351 (build-system asdf-build-system/sbcl)
15352 (inputs
15353 `(("cl-base64" ,sbcl-cl-base64)
15354 ("flexi-stream" ,sbcl-flexi-streams)
15355 ("ironclad" ,sbcl-ironclad)))
15356 (synopsis "Collection of common cryptography functions")
15357 (description
15358 "This is a collection of common cryptography functions for Common
15359Lisp.")
15360 (home-page "https://shinmera.github.io/crypto-shortcuts/")
15361 (license license:zlib))))
15362
15363(define-public ecl-crypto-shortcuts
15364 (sbcl-package->ecl-package sbcl-crypto-shortcuts))
15365
15366(define-public cl-crypto-shortcuts
15367 (sbcl-package->cl-source-package sbcl-crypto-shortcuts))
f934892c 15368
15369(define-public sbcl-cl-html5-parser
15370 (let ((commit "74a92eb3a183a0afd089ea33350e816e6b9aeefa")
15371 (revision "1"))
15372 (package
15373 (name "sbcl-cl-html5-parser")
15374 (version (git-version "0.0.0" revision commit))
15375 (source
15376 (origin
15377 (method git-fetch)
15378 (uri (git-reference
15379 (url "https://github.com/rotatef/cl-html5-parser")
15380 (commit commit)))
15381 (file-name (git-file-name "cl-html5-parser" version))
15382 (sha256
15383 (base32 "04if61wigylsmn996rbfl8ylsd0d9hzdmg7p2wiglncibjzcl5k9"))))
15384 (build-system asdf-build-system/sbcl)
15385 (arguments
15386 '(#:tests? #f
15387 #:asd-systems '("cl-html5-parser")))
15388 (inputs
15389 `(("cl-ppcre" ,sbcl-cl-ppcre)
15390 ("flexi-stream" ,sbcl-flexi-streams)
15391 ("string-case" ,sbcl-string-case)))
15392 (synopsis "HTML5 parser for Common Lisp")
15393 (description "This a Common Lisp library to parse HTML5 documents.")
15394 (home-page "https://github.com/rotatef/cl-html5-parser")
15395 (license license:lgpl3+))))
15396
15397(define-public ecl-cl-html5-parser
15398 (sbcl-package->ecl-package sbcl-cl-html5-parser))
15399
15400(define-public cl-html5-parser
15401 (sbcl-package->cl-source-package sbcl-cl-html5-parser))
09f60f9e 15402
15403(define-public sbcl-percent-encoding
15404 (let ((commit "c1224e22bc8048fbd3ebbc9329715a0c1b673170")
15405 (revision "1"))
15406 (package
15407 (name "sbcl-percent-encoding")
15408 (version (git-version "0.1" revision commit))
15409 (source
15410 (origin
15411 (method git-fetch)
15412 (uri (git-reference
15413 (url "https://github.com/llibra/percent-encoding")
15414 (commit commit)))
15415 (file-name (git-file-name "percent-encoding" version))
15416 (sha256
15417 (base32 "0q1lh3sa6mkjr5gcdkgimkpc29rgf9cjhv90f61h8ridj28grq0h"))))
15418 (build-system asdf-build-system/sbcl)
15419 (native-inputs
15420 `(("fiveam" ,sbcl-fiveam)))
15421 (inputs
15422 `(("anaphora" ,sbcl-anaphora)
15423 ("babel" ,sbcl-babel)))
15424 (synopsis "RFC 3986 percent-encoding library")
15425 (description
15426 "This is a Common Lisp library providing RFC 3986 percent-encoding.")
15427 (home-page "https://github.com/llibra/percent-encoding")
15428 (license license:expat))))
15429
15430(define-public ecl-percent-encoding
15431 (sbcl-package->ecl-package sbcl-percent-encoding))
15432
15433(define-public cl-percent-encoding
15434 (sbcl-package->cl-source-package sbcl-percent-encoding))
3eec0e9b
SH
15435
15436(define-public sbcl-cl-mount-info
15437 (let ((commit "2024f5037a7f63db3e3587dc9972cd7b9318f06b")
15438 (revision "1"))
15439 (package
15440 (name "sbcl-cl-mount-info")
15441 (version (git-version "0.0.1" revision commit))
15442 (source
15443 (origin
15444 (method git-fetch)
15445 (uri (git-reference
15446 (url "https://notabug.org/cage/cl-mount-info.git")
15447 (commit commit)))
15448 (file-name (git-file-name "cl-mount-info" version))
15449 (sha256
15450 (base32 "0vza9gj9q42nzb5v8aj22lmn4aqx9vrddsb5a343nbwfz89hbh9x"))))
15451 (build-system asdf-build-system/sbcl)
15452 (inputs
15453 `(("alexandria" ,sbcl-alexandria)
15454 ("cffi" ,sbcl-cffi)
15455 ("cl-ppcre" ,sbcl-cl-ppcre)))
15456 (home-page "https://notabug.org/cage/cl-mount-info.git")
15457 (synopsis "Library to get information about mounted filesystems")
15458 (description
15459 "CL-MOUNT-INFO is a Common Lisp wrapper around @code{getmntent(3)} and
15460related C functions to get information about the mounted file system.")
15461 (license license:lgpl3))))
15462
15463(define-public ecl-cl-mount-info
15464 (sbcl-package->ecl-package sbcl-cl-mount-info))
15465
15466(define-public cl-mount-info
15467 (sbcl-package->cl-source-package sbcl-cl-mount-info))
d5a474be
SH
15468
15469(define-public sbcl-cl-diskspace
15470 (let ((commit "2dce2d0387d58221c452bd76c7b9b7a7de81ef55")
15471 (revision "1"))
15472 (package
15473 (name "sbcl-cl-diskspace")
15474 (version (git-version "0.3.1" revision commit))
15475 (source
15476 (origin
15477 (method git-fetch)
15478 (uri (git-reference
15479 (url "https://github.com/muyinliu/cl-diskspace")
15480 (commit commit)))
15481 (file-name (git-file-name "cl-diskspace" version))
15482 (sha256
15483 (base32 "0l19hxqw6b8i5i1jdbr45k1xib9axcwdagsp3y8wkb35g6wwc0s7"))))
15484 (build-system asdf-build-system/sbcl)
15485 (arguments
15486 `(#:phases
15487 (modify-phases %standard-phases
15488 (add-after 'unpack 'fix-paths
15489 (lambda* (#:key inputs #:allow-other-keys)
15490 (substitute* "src/unix/cl-diskspace-list-all-disks-with-df.lisp"
15491 (("grep")
15492 (string-append (assoc-ref inputs "grep") "/bin/grep")))
15493 (substitute* "src/unix/cl-diskspace-list-all-disks-with-df.lisp"
15494 (("/bin/df")
15495 (which "df")))
15496 #t)))))
15497 (inputs
15498 `(("cl-ppcre" ,sbcl-cl-ppcre)
15499 ("cffi" ,sbcl-cffi)
15500 ("grep" ,grep)))
15501 (home-page "https://github.com/muyinliu/cl-diskspace")
15502 (synopsis "Disk space information library for Common Lisp")
15503 (description
15504 "CL-DISKSPACE is a Common Lisp library to list disks with the command
15505line tool @code{df} and get disk space information using @code{statvfs}.")
15506 (license license:isc))))
15507
15508(define-public ecl-cl-diskspace
15509 (sbcl-package->ecl-package sbcl-cl-diskspace))
15510
15511(define-public cl-diskspace
15512 (sbcl-package->cl-source-package sbcl-cl-diskspace))
336088d5 15513
17c11ae9
SH
15514(define-public sbcl-cl-cpus
15515 (package
15516 (name "sbcl-cl-cpus")
15517 (version "0.0.3")
15518 (source
15519 (origin
15520 (method git-fetch)
15521 (uri (git-reference
15522 (url "https://github.com/muyinliu/cl-cpus")
15523 (commit (string-append "v" version))))
15524 (file-name (git-file-name "cl-cpus" version))
15525 (sha256
15526 (base32 "0sdaff9hpsx7bpkkkqavmxmrrlc2d61gmqjjgn8xchncng4a0rf8"))))
15527 (build-system asdf-build-system/sbcl)
15528 (inputs
15529 `(("cffi" ,sbcl-cffi)))
15530 (home-page "https://github.com/muyinliu/cl-cpus")
15531 (synopsis "Common Lisp feature to get number of CPUs")
15532 (description
15533 "This package provides a Common Lisp system which has only one function to
15534return the CPU count of the current system.")
15535 (license license:isc)))
15536
15537(define-public ecl-cl-cpus
15538 (sbcl-package->ecl-package sbcl-cl-cpus))
15539
15540(define-public cl-cpus
15541 (sbcl-package->cl-source-package sbcl-cl-cpus))
15542
336088d5
PN
15543(define-public sbcl-fof
15544 (package
15545 (name "sbcl-fof")
15546 (version "0.1.0")
15547 (source
15548 (origin
15549 (method git-fetch)
15550 (uri (git-reference
15551 (url "https://gitlab.com/ambrevar/fof")
15552 (commit version)))
15553 (file-name (git-file-name name version))
15554 (sha256
15555 (base32 "1xdnlqrjfmgdgw58avkci881iwarv4am2vq09b14pfifmpxpzv10"))))
15556 (build-system asdf-build-system/sbcl)
15557 (arguments
15558 `(#:phases
15559 (modify-phases %standard-phases
15560 (add-after 'unpack 'fix-paths
15561 (lambda* (#:key inputs #:allow-other-keys)
15562 (substitute* "ffprobe.lisp"
15563 (("\\(defvar \\*ffprobe-command\\* \"ffprobe\"\\)")
15564 (format #f "(defvar *ffprobe-command* \"~a/bin/ffprobe\")"
15565 (assoc-ref inputs "ffmpeg") )))
15566 #t)))))
15567 (inputs
15568 `(("alexandria" ,sbcl-alexandria)
15569 ("hu.dwim.defclass-star" ,sbcl-hu.dwim.defclass-star)
15570 ("local-time" ,sbcl-local-time)
15571 ("magicffi" ,sbcl-magicffi)
15572 ("osicat" ,sbcl-osicat)
15573 ("serapeum" ,sbcl-serapeum)
15574 ("str" ,sbcl-cl-str)
15575 ("trivia" ,sbcl-trivia)
15576 ("trivial-package-local-nicknames" ,sbcl-trivial-package-local-nicknames)
15577 ;; Non-CL deps:
15578 ("ffmpeg" ,ffmpeg)))
15579 (home-page "https://gitlab.com/ambrevar/fof")
15580 (synopsis "File object finder library for Common Lisp")
15581 (description
15582 "This library enable rapid file search, inspection and manipulation
15583straight from the REPL.
15584It aims at replacing Unix tools such as @code{find} or @code{du}.
15585It also offers a replacement to the @code{pathname} Common Lisp API.
15586Slot writers which commit changes to disk, e.g. permissions, modification
15587time, etc.")
15588 (license license:gpl3+)))
15589
15590(define-public ecl-fof
15591 (sbcl-package->ecl-package sbcl-fof))
15592
15593(define-public cl-fof
15594 (sbcl-package->cl-source-package sbcl-fof))
6dda2236
PN
15595
15596(define-public sbcl-computable-reals
15597 (let ((commit "fdc73d75e79d0a4ce6d01c822c950ae2eb137d39"))
15598 (package
15599 (name "sbcl-computable-reals")
15600 (version (git-version "1.1.0" "1" commit))
15601 (source
15602 (origin
15603 (method git-fetch)
15604 (uri (git-reference
15605 (url "https://github.com/stylewarning/computable-reals")
15606 (commit commit)))
15607 (file-name (git-file-name name version))
15608 (sha256
15609 (base32 "0f12axi53x14l12dgf4a1lfq3p1fx7fh7sjfc0db3lk88ph9qfwl"))))
15610 (build-system asdf-build-system/sbcl)
15611 (home-page "https://github.com/stylewarning/computable-reals")
15612 (synopsis "Arbitrary-precision, re-computing real-numbers in Common Lisp")
15613 (description
15614 "This library provides arbitrary precision (floating point) real
15615numbers in Common Lisp.")
15616 (license license:bsd-3))))
15617
15618(define-public ecl-computable-reals
15619 (sbcl-package->ecl-package sbcl-computable-reals))
15620
15621(define-public cl-computable-reals
15622 (sbcl-package->cl-source-package sbcl-computable-reals))
f445407d
PN
15623
15624(define-public sbcl-html-template
15625 (package
15626 (name "sbcl-html-template")
15627 (version "0.9.2")
15628 (source
15629 (origin
15630 (method git-fetch)
15631 (uri (git-reference
15632 (url "https://github.com/edicl/html-template")
15633 (commit (string-append "v" version))))
15634 (file-name (git-file-name name version))
15635 (sha256
15636 (base32 "0wz3czvjsn4x971dsiia9f9nvvcmbkablcl75zsvxndkimc93wxb"))))
15637 (build-system asdf-build-system/sbcl)
15638 (home-page "https://edicl.github.io/html-template/")
15639 (synopsis "HTML templates from Common Lisp")
15640 (description
15641 "HTML-TEMPLATE is a Common Lisp library which can be used to fill
15642templates with arbitrary (string) values at runtime. The result does not have
15643to be HTML.
15644
15645It is loosely modeled after the Perl module @code{HTML::Template} and
15646partially compatible with a its syntax, though both libraries contain some
15647extensions that the other does not support.
15648
15649HTML-TEMPLATE translates templates into efficient closures which can be
15650re-used as often as needed. It uses a cache mechanism so you can update
15651templates while your program is running and have the changes take effect
15652immediately.")
15653 (license license:bsd-2)))
15654
15655(define-public ecl-html-template
15656 (sbcl-package->ecl-package sbcl-html-template))
15657
15658(define-public cl-html-template
15659 (sbcl-package->cl-source-package sbcl-html-template))
8ee6bb91
PN
15660
15661(define-public sbcl-quickproject
15662 (package
15663 (name "sbcl-quickproject")
15664 (version "1.4.1")
15665 (source
15666 (origin
15667 (method git-fetch)
15668 (uri (git-reference
15669 (url "https://github.com/xach/quickproject")
15670 (commit (string-append "release-" version))))
15671 (file-name (git-file-name name version))
15672 (sha256
15673 (base32 "1szs8p2wr1yr9mjmj3h3557l6wxzzga0iszimb68z0hb1jj3lva6"))))
15674 (build-system asdf-build-system/sbcl)
15675 (inputs
15676 `(("cl-fad" ,sbcl-cl-fad)
15677 ("html-template" ,sbcl-html-template)))
15678 (arguments
15679 '(#:asd-files '("quickproject.asd")))
15680 (home-page "https://xach.com/lisp/quickproject/")
15681 (synopsis "Create Common Lisp project skeletons")
15682 (description
15683 "Quickproject provides a quick way to make a Common Lisp project. After
15684creating a project, it extends the ASDF registry so the project may be
15685immediately loaded.")
15686 (license license:expat)))
15687
15688(define-public ecl-quickproject
15689 (sbcl-package->ecl-package sbcl-quickproject))
15690
15691(define-public cl-quickproject
15692 (sbcl-package->cl-source-package sbcl-quickproject))
96df3fe7
SH
15693
15694(define-public sbcl-bodge-math
15695 (let ((commit "9159b7faf88d440024c07110dbef2abddb20b9af")
15696 (revision "1"))
15697 (package
15698 (name "sbcl-bodge-math")
15699 (version (git-version "1.0.0" revision commit))
15700 (source
15701 (origin
15702 (method git-fetch)
15703 (uri (git-reference
15704 (url "https://github.com/borodust/bodge-math")
15705 (commit commit)))
15706 (file-name (git-file-name "bodge-math" version))
15707 (sha256
15708 (base32 "0r3vnl9lywn4ksy34apcv6j825qp7l1naddawr14v4lwacndb80v"))))
15709 (build-system asdf-build-system/sbcl)
15710 (inputs
15711 `(("bodge-utilities" ,sbcl-bodge-utilities)
15712 ("rtg-math" ,sbcl-rtg-math)))
15713 (home-page "https://github.com/borodust/bodge-math")
15714 (synopsis "Common Lisp core math utilities of BODGE library collection")
15715 (description
15716 "This Common Lisp package contains the core math utilities of the
15717@emph{Bodge} library collection.")
15718 (license license:expat))))
15719
15720(define-public ecl-bodge-math
15721 (sbcl-package->ecl-package sbcl-bodge-math))
15722
15723(define-public cl-bodge-math
15724 (sbcl-package->cl-source-package sbcl-bodge-math))
a266c9fa 15725
4d7b6df5
AK
15726(define-public sbcl-bodge-blobs-support
15727 (let ((commit "c5034ca5f4fc3a44dbadeba215a09afd59a404b0")
15728 (revision "1"))
15729 (package
15730 (name "sbcl-bodge-blobs-support")
15731 (version (git-version "1.0.0" revision commit))
15732 (source
15733 (origin
15734 (method git-fetch)
15735 (uri (git-reference
15736 (url "https://github.com/borodust/bodge-blobs-support")
15737 (commit commit)))
15738 (file-name (git-file-name "bodge-blobs-support" version))
15739 (sha256
15740 (base32 "02nd1x6y1akp1ymv1y4z9ympwbnpd1drwi4f86xbjszxqff6jyj8"))))
15741 (build-system asdf-build-system/sbcl)
15742 (native-inputs
15743 `(("trivial-features" ,sbcl-trivial-features)))
15744 (inputs
15745 `(("cffi" ,sbcl-cffi)
15746 ("sbcl-alexandria" ,sbcl-alexandria)))
15747 (home-page "https://github.com/borodust/bodge-blobs-support")
15748 (synopsis "Common Lisp utilities for blob packages")
15749 (description
15750 "This is a Common Lisp library for simplifying packaging and loading of
15751compiled foreign library collection.")
15752 (license license:unlicense))))
15753
15754(define-public cl-bodge-blobs-support
15755 (sbcl-package->cl-source-package sbcl-bodge-blobs-support))
15756
15757(define-public ecl-bodge-blobs-support
15758 (sbcl-package->ecl-package sbcl-bodge-blobs-support))
15759
a266c9fa
SH
15760(define-public sbcl-cl-conspack
15761 (let ((commit "fc8473bc6f929696b03b43820596b7c976c4678e")
15762 (revision "1"))
15763 (package
15764 (name "sbcl-cl-conspack")
15765 (version (git-version "0.0.0" revision commit))
15766 (source
15767 (origin
15768 (method git-fetch)
15769 (uri (git-reference
15770 (url "https://github.com/conspack/cl-conspack")
15771 (commit commit)))
15772 (file-name (git-file-name "cl-conspack" version))
15773 (sha256
15774 (base32 "0b7qzvsrpvnw12hqhjmz0b02sigj0kdjy55j4k7xzmj8684cs8bx"))))
15775 (build-system asdf-build-system/sbcl)
15776 ;; FIXME: (Sharlatan-20210331T220652+0100): Test are disabled because of:
15777 ;;
15778 ;; Error while trying to load definition for system cl-conspack-test
15779 ;; from pathname .../cl-conspack/cl-conspack-test.asd:
15780 ;; Error opening .../checkl/formalize-tmpGHU3ALSV.fasl": Permission denied
15781 ;;
15782 ;; It looks like the issues is in CheckL itself as other packages keep
15783 ;; failing test where it's in use.
15784 (arguments
15785 '(#:tests? #f
15786 #:asd-files '("cl-conspack.asd")))
15787 (native-inputs
15788 `(("checkl" ,sbcl-checkl)))
15789 (inputs
15790 `(("alexandria" ,sbcl-alexandria)
15791 ("closer-mop" ,sbcl-closer-mop)
15792 ("fast-io" ,sbcl-fast-io)
15793 ("ieee-floats" ,sbcl-ieee-floats)
15794 ("trivial-garbage" ,sbcl-trivial-garbage)
15795 ("trivial-utf-8" ,sbcl-trivial-utf-8)))
15796 (home-page "https://github.com/conspack/cl-conspack")
15797 (synopsis "CONSPACK implementation for Common Lisp")
15798 (description
15799 "This package provides a CONSPACK implementation for Common Lisp.")
15800 (license license:bsd-3))))
15801
15802(define-public ecl-cl-conspack
15803 (sbcl-package->ecl-package sbcl-cl-conspack))
15804
15805(define-public cl-conspack
15806 (sbcl-package->cl-source-package sbcl-cl-conspack))
83ecb381
SH
15807
15808(define-public sbcl-cl-opengl
15809 (let ((commit "e2d83e0977b7e7ac3f3d348d8ccc7ccd04e74d59")
15810 (revision "1"))
15811 (package
15812 (name "sbcl-cl-opengl")
15813 (version (git-version "0.1.0" revision commit))
15814 (source
15815 (origin
15816 (method git-fetch)
15817 (uri (git-reference
15818 (url "https://github.com/3b/cl-opengl")
15819 (commit commit)))
15820 (file-name (git-file-name "cl-opengl" version))
15821 (sha256
15822 (base32 "0mhqmll09f079pnd6mgswz9nvr6h5n27d4q7zpmm2igf1v460id7"))))
15823 (build-system asdf-build-system/sbcl)
15824 (arguments
15825 `(#:asd-systems '("cl-opengl" "cl-glu" "cl-glut")
15826 #:phases
15827 (modify-phases %standard-phases
15828 (add-after 'unpack 'patch-lib-path
15829 (lambda* (#:key inputs #:allow-other-keys)
15830 (substitute* "gl/library.lisp"
15831 (("libGL.so" all)
15832 (string-append (assoc-ref inputs "mesa") "/lib/" all)))
15833 (substitute* "glu/library.lisp"
15834 (("libGLU.so" all)
15835 (string-append (assoc-ref inputs "glu") "/lib/" all)))
15836 (substitute* "glut/library.lisp"
15837 (("libglut.so" all)
15838 (string-append (assoc-ref inputs "freeglut") "/lib/" all)))
15839 #t)))))
15840 (inputs
15841 `(("alexandria" ,sbcl-alexandria)
15842 ("cffi" ,sbcl-cffi)
15843 ("float-features" ,sbcl-float-features)
15844 ("freeglut" ,freeglut)
15845 ("glu" ,glu)
15846 ("mesa" ,mesa)))
15847 (home-page "https://github.com/3b/cl-opengl")
15848 (synopsis "Common Lisp bindings to OpenGL, GLU and GLUT APIs")
15849 (description
15850 "This package provides a set of bindings and utilities for accessing the
15851OpenGL (Mesa), GLU and GLUT (FreeGLUT) APIs using CFFI.")
15852 (license license:bsd-3))))
15853
15854(define-public ecl-cl-opengl
15855 (sbcl-package->ecl-package sbcl-cl-opengl))
15856
15857(define-public cl-opengl
15858 (sbcl-package->cl-source-package sbcl-cl-opengl))
acaf97ab
SH
15859
15860(define-public sbcl-shadow
15861 (let ((commit "b2031adbfba3579b48c9d39ad997e19b79b6852f")
15862 (revision "1"))
15863 (package
15864 (name "sbcl-shadow")
15865 (version (git-version "0.0.0" revision commit))
15866 (source
15867 (origin
15868 (method git-fetch)
15869 (uri (git-reference
15870 (url "https://git.mfiano.net/mfiano/shadow")
15871 (commit commit)))
15872 (file-name (git-file-name "shadow" version))
15873 (sha256
15874 (base32 "0w1i734gkdkziin74ql2nhx7jdjxx02ylssaa6qdrvnj4br1124a"))))
15875 (build-system asdf-build-system/sbcl)
15876 (inputs
15877 `(("cffi" ,sbcl-cffi)
15878 ("cl-opengl" ,sbcl-cl-opengl)
15879 ("glsl-packing" ,sbcl-glsl-packing)
15880 ("golden-utils" ,sbcl-golden-utils)
15881 ("static-vectors" ,sbcl-static-vectors)
15882 ("varjo" ,sbcl-varjo)))
15883 (home-page "https://git.mfiano.net/mfiano/shadow")
15884 (synopsis "Management system for OpenGL shader programs")
15885 (description
15886 "This package provides a Common Lisp library for defining OpenGL shader
15887programs. There are also functions for referencing shader programs by name,
15888querying for basic information about them, modifying uniform variables
15889throughout the lifecycle of an OpenGL application, and managing certain OpenGL
15890buffer object types (UBO, SSBO currently).")
15891 (license license:expat))))
15892
15893(define-public ecl-shadow
15894 (sbcl-package->ecl-package sbcl-shadow))
15895
15896(define-public cl-shadow
15897 (sbcl-package->cl-source-package sbcl-shadow))
49d40b9e
SH
15898
15899(define-public sbcl-umbra
15900 (let ((commit "d6ef2f6cbfa26180929061129eaf325bf17f73d8")
15901 (revision "1"))
15902 (package
15903 (name "sbcl-umbra")
15904 (version (git-version "0.0.0" revision commit))
15905 (source
15906 (origin
15907 (method git-fetch)
15908 (uri (git-reference
15909 (url "https://git.mfiano.net/mfiano/umbra")
15910 (commit commit)))
15911 (file-name (git-file-name "umbra" version))
15912 (sha256
15913 (base32 "04vyh2j00zdpb8ryxr8g81wjcmqlz9wrn55r3cypcj4qg970r5wi"))))
15914 (build-system asdf-build-system/sbcl)
15915 (inputs
15916 `(("golden-utils" ,sbcl-golden-utils)
15917 ("shadow" ,sbcl-shadow)
15918 ("varjo" ,sbcl-varjo)))
15919 (home-page "https://git.mfiano.net/mfiano/umbra")
15920 (synopsis "Common Lisp library of reusable GPU shader functions")
15921 (description
15922 "This is a Common Lisp library consisting of a collection of useful GPU
15923shader functions, written with @code{Shadow}.")
15924 (license license:expat))))
15925
15926(define-public ecl-umbra
15927 (sbcl-package->ecl-package sbcl-umbra))
15928
15929(define-public cl-umbra
15930 (sbcl-package->cl-source-package sbcl-umbra))
ea9b1e3b
SH
15931
15932(define-public sbcl-abstract-classes
15933 (let ((commit "7fa74f1e057f9ba7c1ffecff14f049f979e45267")
15934 (revision "1"))
15935 (package
15936 (name "sbcl-abstract-classes")
15937 (version (git-version "1.7.0" revision commit))
15938 (source
15939 (origin
15940 (method git-fetch)
15941 (uri (git-reference
15942 (url "https://bitbucket.org/eeeickythump/cl-abstract-classes")
15943 (commit commit)))
15944 (file-name (git-file-name "cl-abstract-classes" version))
15945 (sha256
15946 (base32 "06lby4i6xbbgs7kgb0f3fqybvyskyg6djhrf967lnysv7hn3zpg9"))))
15947 (build-system asdf-build-system/sbcl)
15948 (inputs
15949 `(("closer-mop" ,sbcl-closer-mop)))
15950 (arguments
15951 `(#:asd-systems '("abstract-classes" "singleton-classes")))
15952 (home-page "https://bitbucket.org/eeeickythump/cl-abstract-classes")
15953 (synopsis "Abstract, final, and singleton metaclasses for CLOS")
15954 (description
15955 "This package provides Common Lisp extension to the MOP to allow
15956abstract, final and singleton classes.")
15957 (license license:public-domain))))
15958
15959(define-public ecl-abstract-classes
15960 (sbcl-package->ecl-package sbcl-abstract-classes))
15961
15962(define-public cl-abstract-classes
15963 (sbcl-package->cl-source-package sbcl-abstract-classes))
b749462c
SH
15964
15965(define-public sbcl-coalton
15966 (let ((commit "4a42ffb4222fde3abfd1b50d96e455ff2eef9fe8")
15967 (revision "1"))
15968 (package
15969 (name "sbcl-coalton")
15970 (version (git-version "0.0.0" revision commit))
15971 (source
15972 (origin
15973 (method git-fetch)
15974 (uri (git-reference
15975 (url "https://github.com/stylewarning/coalton")
15976 (commit commit)))
15977 (file-name (git-file-name "coalton" version))
15978 (sha256
15979 (base32 "0aidwwam7cnhb3p9212zbv5w2dl6kr5iklzanypzr1a9lqaxwdlk"))))
15980 (build-system asdf-build-system/sbcl)
15981 (native-inputs
15982 `(("fiasco" ,sbcl-fiasco)))
15983 (inputs
15984 `(("abstract-classes" ,sbcl-abstract-classes)
15985 ("alexandria" ,sbcl-alexandria)
15986 ("global-vars" ,sbcl-global-vars)
15987 ("optima" ,sbcl-optima)
15988 ("trivial-garbage" ,sbcl-trivial-garbage)))
15989 (home-page "https://github.com/stylewarning/coalton")
15990 (synopsis "Dialect of ML in Common Lisp")
15991 (description
15992 "Coalton is a dialect of ML embedded in Common Lisp. It emphasizes
15993practicality and interoperability with Lisp, and is intended to be a DSL that
15994allows one to gradually make their programs safer.")
15995 (license license:expat))))
15996
15997(define-public ecl-coalton
15998 (sbcl-package->ecl-package sbcl-coalton))
15999
16000(define-public cl-coalton
16001 (sbcl-package->cl-source-package sbcl-coalton))
8a625dd2
CC
16002
16003(define-public sbcl-clip
16004 (let ((commit "7afa68702fbb99c47ed115ea0faccd97a29d9b2e")
16005 (revision "1"))
16006 (package
16007 (name "sbcl-clip")
16008 (version (git-version "0.7.0" revision commit))
16009 (source
16010 (origin
16011 (method git-fetch)
16012 (uri (git-reference
16013 (url "https://github.com/shinmera/clip")
16014 (commit commit)))
16015 (file-name (git-file-name "clip" version))
16016 (sha256
16017 (base32 "13kkajkva2shm19fvn4yashsw18l6imv2rmy3hmpcky7g5ay7bv3"))))
16018 (build-system asdf-build-system/sbcl)
16019 (inputs
16020 `(("array-utils" ,sbcl-array-utils)
16021 ("lquery" ,sbcl-lquery)))
16022 (home-page "https://shinmera.github.io/clip/")
16023 (synopsis "Common Lisp HTML templating engine")
16024 (description
16025 "Clip is an attempt at a templating library that allows you to write
16026templates in a way that is both accessible to direct webdesign and
16027flexible. The main idea is to incorporate transformation commands into an HTML
cf423a37 16028file through tags and attributes. Clip is heavily dependent on Plump and
8a625dd2
CC
16029lQuery.")
16030 (license license:zlib))))
16031
16032(define-public ecl-clip
16033 (sbcl-package->ecl-package sbcl-clip))
16034
16035(define-public cl-clip
16036 (sbcl-package->cl-source-package sbcl-clip))
3de01371
SH
16037
16038(define-public sbcl-pathname-utils
16039 (let ((commit "70f517e44e13a38e0c8f296613236376d679fa8f")
16040 (revision "1"))
16041 (package
16042 (name "sbcl-pathname-utils")
16043 (version (git-version "1.1.0" revision commit))
16044 (source
16045 (origin
16046 (method git-fetch)
16047 (uri (git-reference
16048 (url "https://github.com/Shinmera/pathname-utils")
16049 (commit commit)))
16050 (file-name (git-file-name "pathname-utils" version))
16051 (sha256
16052 (base32 "1zm4bf6gajpgmhr7zwf7600zlaf8fs1fcyzabqsh2ma2crkgqdxq"))))
16053 (build-system asdf-build-system/sbcl)
16054 (native-inputs
16055 `(("parachute" ,sbcl-parachute)))
16056 (home-page "https://shinmera.github.io/pathname-utils/")
16057 (synopsis "Collection of utilities to help with pathname operations")
16058 (description
16059 "This package provides a Common Lisp system a with collection of common
16060tests and operations to help handling pathnames. It does not actually deal in
16061handling the accessing of files on the underlying system however.")
16062 (license license:zlib))))
16063
16064(define-public ecl-pathname-utils
16065 (sbcl-package->ecl-package sbcl-pathname-utils))
16066
16067(define-public cl-pathname-utils
16068 (sbcl-package->cl-source-package sbcl-pathname-utils))