_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
sbcl-calispel 0.1-1.e9f2f9c
Dependencies: sbcl-jpl-queues@0.1 sbcl-bordeaux-threads@0.9.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://www.thoughtcrime.us/software/calispel/
Licenses: ISC
Synopsis: Thread-safe message-passing channels in Common Lisp
Description:

Calispel is a Common Lisp library for thread-safe message-passing channels, in the style of the occam programming language, also known as communicating sequential processes (CSP). See https://en.wikipedia.org/wiki/Communicating_sequential_processes.

Calispel channels let one thread communicate with another, facilitating unidirectional communication of any Lisp object. Channels may be unbuffered, where a sender waits for a receiver (or vice versa) before either operation can continue, or channels may be buffered with flexible policy options.

Because sending and receiving on a channel may block, either operation can time out after a specified amount of time.

A syntax for alternation is provided (like ALT in occam, or Unix select()): given a sequence of operations, any or all of which may block, alternation selects the first operation that doesn't block and executes associated code. Alternation can also time out, executing an "otherwise" clause if no operation becomes available within a set amount of time.

Calispel is a message-passing library, and as such leaves the role of threading abstractions and utilities left to be filled by complementary libraries such as Bordeaux-Threads and Eager Future.

sbcl-cl-hooks 0.2.1-1.5b63808
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-let-plus@0.0.0-2.455e657 sbcl-trivial-garbage@0.21-0.3474f64 sbcl-closer-mop@1.0.0-3.7b86f2a
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/scymtym/architecture.hooks
Licenses: LLGPL
Synopsis: Hooks extension point mechanism (as in Emacs) for Common Lisp
Description:

A hook, in the present context, is a certain kind of extension point in a program that allows interleaving the execution of arbitrary code with the execution of a the program without introducing any coupling between the two. Hooks are used extensively in the extensible editor Emacs.

In the Common LISP Object System (CLOS), a similar kind of extensibility is possible using the flexible multi-method dispatch mechanism. It may even seem that the concept of hooks does not provide any benefits over the possibilities of CLOS. However, there are some differences:

  • There can be only one method for each combination of specializers and qualifiers. As a result this kind of extension point cannot be used by multiple extensions independently.

  • Removing code previously attached via a :before, :after or :around method can be cumbersome.

  • There could be other or even multiple extension points besides :before and :after in a single method.

  • Attaching codes to individual objects using eql specializers can be cumbersome.

  • Introspection of code attached a particular extension point is cumbersome since this requires enumerating and inspecting the methods of a generic function.

This library tries to complement some of these weaknesses of method-based extension-points via the concept of hooks.

sbcl-nkeymaps 1.1.1
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-fset@1.4.0 sbcl-cl-str@0.21 sbcl-trivial-package-local-nicknames@0.2
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/atlas-engineer/nkeymaps
Licenses: Modified BSD
Synopsis: Keymap facility for Common Lisp
Description:

This is a keymap facility for Common Lisp inspired by Emacsy (keymap.scm) which is inspired by Emacs.

  • Support prefix keys to other keymaps. For instance, if you prefix my-mode-map with C-c, then all bindings for my-mode will be accessible after pressing C-c.

  • List all bindings matching a given prefix. (Also known as which-key in Emacs.)

  • List the bindings associated to a command.

  • Support multiple inheritance.

  • Support keycode.

  • Validate keyspec at compile time.

  • define-key can set multiple bindings in a single call.

  • Support multiple scheme to make it easy to switch between, say, Emacs-style and VI-style bindings. This orthogonality to keymaps composes better than having multiple keymaps: changing scheme applies to the entire program, which is easier than looping through all keymaps to change them.

  • Translate keyspecs as a fallback. For instance if shift-a is not bound, check A.

  • Behaviour can be customized with global parameters such as *print-shortcut*.

  • The compose function can merge multiple keymaps together.

  • Support multiple arguments when that makes sense (e.g. multiple keymaps for lookup-key).

  • Key remapping à-la Emacs.

  • Typed keymaps, i.e. keymaps where bound values can only be of a given type. This is convenient to catch typos, for instance when binding 'FOO instead of #'FOO.

sbcl-mw-equiv 0.1.2-1.3ae8714
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sharplispers/mw-equiv/
Licenses: FreeBSD
Synopsis: Extensible object equivalence protocol for Common Lisp
Description:

Common Lisp comes with quite some functions to compare objects for equality, yet none is applicable in every situation and in general this is hard, as equality of objects depends on the semantics of operations on them. As consequence, users find themselves regularly in a situation where they have to roll their own specialized equality test.

This module provides one of many possible equivalence relations between standard Common Lisp objects. However, it can be extended for new objects through a simple CLOS protocol. The rules when two objects are considered equivalent distinguish between mutating and frozen objects. A frozen object is promised not to be mutated in the future in a way that operations on it can notice the difference.

We have chosen to compare mutating objects only for identity (pointer equality), to avoid various problems. Equivalence for frozen objects on the other hand is established by recursing on the objects' constituent parts and checking their equivalence. Hence, two objects are equivalent under the OBJECT= relation, if they are either identical, or if they are frozen and structurally equivalent, i.e. their constituents are point-wise equivalent.

Since many objects are potentially mutable, but are not necessarily mutated from a certain point in their life time on, it is possible to promise to the equivalence relation that they remain frozen for the rest of their life time, thus enabling coarser equivalence than the often too fine-grained pointer equality.

sbcl-stumptray 0.0.1-1.dd5b037
Dependencies: stumpwm-next@23.11-1.ca3d065 sbcl-alexandria@1.4-0.009b7e5 sbcl-xembed@0.1.0-1.a5c4b84
Channel: wigust
Location: wigust/packages/lisp.scm (wigust packages lisp)
Home page: https://github.com/stumpwm/stumpwm-contrib
Licenses:
Synopsis:
Description:
sbcl-stumptray 0.0.1-1.dd5b037
Dependencies: stumpwm@23.11-1.bd9151c sbcl-alexandria@1.4-0.009b7e5 sbcl-xembed@0.1.0-1.a5c4b84
Channel: wigust
Location: wigust/packages/lisp.scm (wigust packages lisp)
Home page: https://github.com/stumpwm/stumpwm-contrib
Licenses:
Synopsis:
Description:
sbcl-cepl.sdl2 0.0.0-1.6da5a03
Dependencies: sbcl-cepl@0.0.0-1.d1a10b6 sbcl-sdl2@0.0.0-2.80410b5
Channel: tassos-guix
Location: tassos-guix/packages/lisp-xyz.scm (tassos-guix packages lisp-xyz)
Home page: https://github.com/cbaggers/cepl.sdl2
Licenses: FreeBSD
Synopsis: Package that let's sdl2 host cepl
Description:

Package that let's sdl2 host cepl

sbcl-cl-base16 ae4b7f416c0c91f6323e901be912c0f7378fe3da
Dependencies: sbcl-cl-yaml@0.1-1.c3202be sbcl-cl-mustache@0.12.1 sbcl-cl-slug@0.4.1-1.ffb229d sbcl-trivial-shell@0.2.0-1.e02ec19
Channel: atlas
Location: atlas/packages/lisp.scm (atlas packages lisp)
Home page: https://github.com/tpine/cl-base16
Licenses: GPL 3
Synopsis: Common Lisp implementation of the base16 builder specification
Description:

Implementation of a base16 builder for lisp

sbcl-unit-test 0.0.0-1.266afaf
Channel: guix
Location: gnu/packages/lisp-check.scm (gnu packages lisp-check)
Home page: https://github.com/hanshuebner/unit-test
Licenses: Unlicense
Synopsis: Unit-testing framework for Common Lisp
Description:

This is a unit-testing framework for Common Lisp.

sbcl-cl-gendoc 1.0-0.c8fed7d
Dependencies: sbcl-cl-who@1.1.4-3.07dafe9 sbcl-3bmd@0.0.0-4.e68b2d4
Channel: guixrus
Location: guixrus/packages/common/lisp.scm (guixrus packages common lisp)
Home page: https://github.com/chfin/cl-gendoc/
Licenses: Expat
Synopsis: Simple component-based documentation generator
Description:

cl-gendoc is a simple component-based documentation generator.

sbcl-hdf5-cffi 1.8.18-1.5b5c88f
Dependencies: hdf5@1.10.9 sbcl-cffi@0.24.1-2.32c90d4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/hdfgroup/hdf5-cffi
Licenses: non-copyleft
Synopsis: Common Lisp bindings for the HDF5 library
Description:

hdf5-cffi is a CFFI wrapper for the HDF5 library.

sbcl-cl-syntax 0.0.3
Dependencies: sbcl-cl-annot@0.0.0-1.c99e69c sbcl-cl-interpol@0.2.7-1.70a1137 sbcl-named-readtables@0.9-4.d5ff162 sbcl-trivial-types@0.0.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/m2ym/cl-syntax
Licenses: LLGPL
Synopsis: Reader Syntax Coventions for Common Lisp and SLIME
Description:

CL-SYNTAX provides Reader Syntax Coventions for Common Lisp and SLIME.

sbcl-purgatory 0.1.2-1.3afd8f6
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-babel@0.5.0-3.627d6a6 sbcl-bordeaux-threads@0.9.3 sbcl-cl-ppcre-unicode@2.1.1 sbcl-usocket@0.8.8
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://notabug.org/cage/purgatory/
Licenses: LLGPL
Synopsis: Common Lisp implementation of the 9p protocol
Description:

This is a Common Lisp library that implements the 9p network filesystem protocol.

sbcl-xkbcommon 0.0.0-0.aa9513d
Dependencies: libxkbcommon@1.6.0 sbcl-cffi@0.24.1-2.32c90d4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sdilts/cl-xkbcommon
Licenses: Expat
Synopsis: Common Lisp FFI bindings for xkbcommon
Description:

This package provides Common Lisp FFI bindings for xkbcommon (libxkbcommon) using cffi-grovel.

sbcl-cepl.fond 0.0.0-1.45ed0ef
Dependencies: sbcl-cepl@0.0.0-1.d1a10b6 sbcl-cepl.sdl2@0.0.0-1.6da5a03 sbcl-real-rtg-math@0.0.0-1.29fc5b3 sbcl-cl-fond@1.1.0
Channel: tassos-guix
Location: tassos-guix/packages/lisp-xyz.scm (tassos-guix packages lisp-xyz)
Home page: https://github.com/cbaggers/cepl.fond
Licenses: FreeBSD
Synopsis: A helper library for using cl-fond with CEPL
Description:

cepl.fond is a simple library for working with cl-fond with CEPL.

sbcl-cl-base16 0.0-0.ae4b7f4
Dependencies: git@2.47.1 sbcl-cl-yaml@0.1-1.c3202be sbcl-cl-mustache@0.12.1 sbcl-cl-slug@0.4.1-1.ffb229d sbcl-trivial-shell@0.2.0-1.e02ec19
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/tpine/cl-base16
Licenses: GPL 3+
Synopsis: Common Lisp base 16 implementation
Description:

This package provides an implementation of a base 16 builder for Common Lisp.

sbcl-cl-raylib 0.0.1-0.985ceeb
Dependencies: raylib@5.0 sbcl-3d-matrices@1.0.0-2.b4f5a58 sbcl-3d-vectors@3.1.0-2.2579694 sbcl-alexandria@1.4-0.009b7e5 sbcl-cffi@0.24.1-2.32c90d4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/longlene/cl-raylib
Licenses: Expat
Synopsis: Common Lisp bindings to raylib
Description:

This package provides Common Lisp CFFI bindings to the Raylib game development library.

sbcl-fast-http 0.2.0-2.502a377
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-proc-parse@0.0.0-1.ac36368 sbcl-xsubseq@0.0.1-1.5ce430b sbcl-smart-buffer@0.0.1-1.09b9a9a sbcl-cl-utilities@0.0.0-1.dce2d2f
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/fukamachi/fast-http
Licenses: Expat
Synopsis: HTTP request/response parser for Common Lisp
Description:

fast-http is a HTTP request/response protocol parser for Common Lisp.

sbcl-cl-cairo2 0.6-1.41ae45a
Dependencies: cairo@1.18.0 sbcl-cffi@0.24.1-2.32c90d4 sbcl-cl-colors@0.0.0-1.8274105 sbcl-cl-freetype2@1.1-1.8bcb232 sbcl-cl-utilities@0.0.0-1.dce2d2f sbcl-metabang-bind@0.8.0-2.0819642 sbcl-trivial-features@1.0 sbcl-trivial-garbage@0.21-0.3474f64
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/rpav/cl-cairo2
Licenses: Boost 1.0
Synopsis: Cairo bindings for Common Lisp
Description:

This package provides CFFI bindings for Common Lisp to the Cairo C library.

sbcl-cl-base32 0.1-1.8cdee06
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/hargettp/cl-base32
Licenses: Expat
Synopsis: Common Lisp library for base32 encoding and decoding
Description:

This package provides functions for base32 encoding and decoding as defined in RFC4648.

sbcl-cl-dejavu 0.0.0-1.9d68ced
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/dkochmanski/cl-dejavu
Licenses: CC0 X11-style
Synopsis: DejaVu fonts for Common Lisp
Description:

This is a repackage of the original DejaVu Fonts with some convenience functions.

sbcl-cl-ledger 4.0.0-1.08e0be4
Dependencies: sbcl-cambl@4.0.0-1.7016d1a sbcl-cl-ppcre@2.1.1 sbcl-local-time@1.0.6-4.40169fe sbcl-periods@0.0.2-2.60383dc
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/ledger/cl-ledger
Licenses: Modified BSD
Synopsis: Common Lisp port of the Ledger accounting system
Description:

CL-Ledger is a Common Lisp port of the Ledger double-entry accounting system.

sbcl-glsl-spec 0.0.0-1.f04476f
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/cbaggers/glsl-spec
Licenses: Unlicense
Synopsis: Common Lisp GLSL specification as a datastructure
Description:

This package contains the specification of all functions and variables from GLSL as data.

Total results: 977