_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
sbcl-promise 1.0.0-0.801db8f
Dependencies: sbcl-documentation-utils@1.2.0-0.98630dd
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shinmera.github.io/promise/
Licenses: Zlib
Synopsis: Promise mechanism for asynchronous operations
Description:

This library implements a basic promise datastructure, which is useful for dealing with asynchronous behaviours. Importantly, this library does not use any other libraries or frameworks, and instead leaves the execution and state transition of promise objects in your control, making it easy to integrate.

sbcl-cluster 0.0.0-0.b040e97
Dependencies: sbcl-acclimation@0.0.0-1.4d51150 sbcl-split-sequence@2.0.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/robert-strandh/Cluster
Licenses: FreeBSD
Synopsis: Assembler with input in the form of standard instances
Description:

Cluster is an assembler (initially for x86 and x86-64) with a difference. To avoid the issue of defining a syntax, the input to Cluster is a list of standard objects (i.e., instances of the class STANDARD-OBJECT), as opposed to a character file or S-expressions.

sbcl-harmony 2.0.0-0.0b57483
Dependencies: sbcl-atomics@1.0.0-2.b747702 sbcl-bordeaux-threads@0.9.3 sbcl-cl-mixed@2.1.0-0.4aaff13 sbcl-stealth-mixin@0.0.0-0.2f853fc sbcl-trivial-features@1.0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shirakumo.github.io/harmony/
Licenses: Zlib
Synopsis: Common Lisp sound server and sound processing library
Description:

HARMONY is a library that provides you with audio processing tools as well as an audio server to play back music, sfx, and so forth. It is most suited for use in a game engine, but may feasibly also be used for more advanced things such as a DAW

sbcl-defstar 0.4.2
Channel: gn-bioinformatics
Location: gn/packages/lisp.scm (gn packages lisp)
Home page: https://github.com/lisp-maintainers/defstar
Licenses: GPL 3
Synopsis: Type declarations for defun et all
Description:

defstar is a collection of Common Lisp macros that can be used in place of defun, defmethod, defgeneric, defvar, defparameter, flet, labels, let* and lambda. Each macro has the same name as the form it replaces, with a star added at the end.

sbcl-st-json 0.0.0-0.4a0025b
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://marijnhaverbeke.nl/st-json/
Licenses: Zlib
Synopsis: JSON for Common Lisp
Description:

ST-JSON (ST because it originated at Streamtech) is a Common Lisp library for encoding and decoding JSON values (as specified on json.org).

This library does mostly the same thing as CL-JSON, but is simpler and more precise about types (distinguishing boolean false, the empty array, and the empty object).

sbcl-3d-math 1.0.0-0.3831b17
Dependencies: sbcl-documentation-utils@1.2.0-0.98630dd sbcl-type-templates@4.0.0-0.5b389eb
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shinmera.github.io/3d-math/
Licenses: Zlib
Synopsis: Linear algebra for 2D and 3D computations
Description:

The 3d-math library implements types, operators, and algorithms commonly used in math for 2D and 3D graphics. It supersedes and combines the prior libraries 3d-vectors, 3d-matrices, 3d-quaternions, and 3d-transforms. The new API is largely but not entirely backwards compatible, and adds new functionality.

sbcl-cl-json 0.6.0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sharplispers/cl-json
Licenses: Expat
Synopsis: JSON encoder and decoder for Common-Lisp
Description:

cl-json provides an encoder of Lisp objects to JSON format and a corresponding decoder of JSON data to Lisp objects. Both the encoder and the decoder are highly customizable; at the same time, the default settings ensure a very simple mode of operation, similar to that provided by yason or st-json.

sbcl-iterate 1.5.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://common-lisp.net/project/iterate/
Licenses: Expat
Synopsis: Iteration construct for Common Lisp
Description:

iterate is an iteration construct for Common Lisp. It is similar to the CL:LOOP macro, with these distinguishing marks:

  • it is extensible,

  • it helps editors like Emacs indent iterate forms by having a more lisp-like syntax, and

  • it isn't part of the ANSI standard for Common Lisp.

sbcl-defstar 1.0.0-1.132829d
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: http://bitbucket.org/eeeickythump/defstar/
Licenses: GPL 3
Synopsis: Easy inline (return) type declarations for functions
Description:

Defstar is a collection of Common Lisp macros that can be used in place of defun, defmethod, defgeneric, defvar, defparameter, flet, labels, let* and lambda. Each macro has the same name as the form it replaces, with a star added at the end, e.g. defun. (the exception is the let* replacement, which is called *let).

sbcl-cl-abnf 0.0.0-1.ba1fbb1
Dependencies: sbcl-cl-ppcre@2.1.1 sbcl-esrap@0.18-4.d806138
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/dimitri/cl-abnf
Licenses: Expat
Synopsis: ABNF parser generator for Common Lisp
Description:

This Common Lisp library implements a parser generator for the ABNF grammar format as described in RFC2234. The generated parser is a regular expression scanner provided by the cl-ppcre lib, which means that we can't parse recursive grammar definition. One such definition is the ABNF definition as given by the RFC. Fortunately, as you have this lib, you most probably don't need to generate another parser to handle that particular ABNF grammar.

sbcl-cl-yacc 0.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://www.irif.fr/~jch//software/cl-yacc/
Licenses: Expat
Synopsis: LALR(1) parser generator for Common Lisp, similar in spirit to Yacc
Description:

CL-Yacc is a LALR(1) parser generator for Common Lisp, similar in spirit to AT&T Yacc, Berkeley Yacc, GNU Bison, Zebu, lalr.cl or lalr.scm.

CL-Yacc uses the algorithm due to Aho and Ullman, which is the one also used by AT&T Yacc, Berkeley Yacc and Zebu. It does not use the faster algorithm due to DeRemer and Pennello, which is used by Bison and lalr.scm (not lalr.cl).

sbcl-mgl-pax 0.3.0-1.6782eb0
Dependencies: sbcl-3bmd@0.0.0-4.e68b2d4 sbcl-alexandria@1.4-0.009b7e5 sbcl-colorize@0.0.0-1.ea676b5 sbcl-md5@2.0.5 sbcl-named-readtables@0.9-4.d5ff162 sbcl-pythonic-string-reader@0.0.0-1.47a70ba sbcl-slime-swank@2.30 sbcl-trivial-utf-8@0.0.0-2.6ca9943
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://melisgl.github.io/mgl-pax/
Licenses: Expat
Synopsis: Exploratory programming environment and documentation generator
Description:

PAX provides an extremely poor man's Explorable Programming environment. Narrative primarily lives in so called sections that mix markdown docstrings with references to functions, variables, etc, all of which should probably have their own docstrings.

The primary focus is on making code easily explorable by using SLIME's M-. (slime-edit-definition). See how to enable some fanciness in Emacs Integration. Generating documentation from sections and all the referenced items in Markdown or HTML format is also implemented.

With the simplistic tools provided, one may accomplish similar effects as with Literate Programming, but documentation is generated from code, not vice versa and there is no support for chunking yet. Code is first, code must look pretty, documentation is code.

sbcl-wayflan 0.0.4
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-babel@0.5.0-3.627d6a6 sbcl-cffi@0.24.1-2.32c90d4 sbcl-closer-mop@1.0.0-3.7b86f2a sbcl-plump@2.0.0-3.0c3e0b5
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://git.sr.ht/~shunter/wayflan
Licenses: Modified BSD
Synopsis: Wayland communication library for Common Lisp
Description:

Wayflan is a from-scratch Wayland communication library for Common Lisp. It makes a good-faith effort to mimic libwayland behavior not defined in the Wayland spec, to keep compatibility between the two libraries.

Wayflan is not a compositor nor a GUI toolkit. Its purpose is to parse Wayland protocol XML documents and exchange Wayland messages between other processes.

Features:

  • Client support

  • All implementation done in Common Lisp from the socket up

  • Enum values are translated into keywords

  • Wayland protocol introspection

  • ASDF component :wayflan-client-impl generates code from XML. ASDF's extensible components make it possible to teach your program new protocols for Wayland without the need of a special build system.

sbcl-nibbles 0.14-3.a46a677
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sharplispers/nibbles
Licenses: Modified BSD
Synopsis: Common Lisp library for accessing octet-addressed blocks of data
Description:

When dealing with network protocols and file formats, it's common to have to read or write 16-, 32-, or 64-bit datatypes in signed or unsigned flavors. Common Lisp sort of supports this by specifying :element-type for streams, but that facility is underspecified and there's nothing similar for read/write from octet vectors. What most people wind up doing is rolling their own small facility for their particular needs and calling it a day.

This library attempts to be comprehensive and centralize such facilities. Functions to read 16-, 32-, and 64-bit quantities from octet vectors in signed or unsigned flavors are provided; these functions are also SETFable. Since it's sometimes desirable to read/write directly from streams, functions for doing so are also provided. On some implementations, reading/writing IEEE singles/doubles (i.e. single-float and double-float) will also be supported.

sbcl-clingon 0.5.0-0.379fc41
Dependencies: sbcl-bobbin@1.0.1-0.b454e82 sbcl-cl-reexport@0.1-2.03ad7a0 sbcl-split-sequence@2.0.1 sbcl-with-user-abort@0.1-0.60693b4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/dnaeon/clingon
Licenses: FreeBSD
Synopsis: Command-line option parsing library for Common Lisp
Description:

clingon is a command-line option parsing library for Common Lisp. Its features include:

  • Support for subcommands

  • Support for command aliases

  • Support for short and long options

  • Related options may be grouped into categories

  • Short options may be collapsed into a single argument, as in -xyz

  • Long options support the notations --long-opt arg and --long-opt=arg

  • Automatic generation of help/usage information for commands and subcommands

  • Out-of-the-box support for --version and --help

  • Support for various kinds of options including string, integer, boolean, switch, enum, list, counter, filepath, etc.

  • Subcommands can look up global options defined in parent commands

  • Support for required options

  • Options can be initialized via environment variables

  • Single interface for creating options using CLINGON:MAKE-OPTION

  • Generate documentation for your command-line application

  • Support for pre-hook and post-hook actions for commands, which allow invoking functions before and after the respective handler of the command is executed

  • Support for Bash and Zsh completions

  • Extensibility, so if you don't find something you need you can extend it by developing a new option kind, or even a new mechanism for initializing options, e.g., by looking up an external key/value store

sbcl-scribble 0.4.2
Dependencies: sbcl-fare-utils@1.0.0.5-1.66e9c6f sbcl-fare-memoization@1.2.0 sbcl-fare-quasiquote@1.0.1-1.640d39a sbcl-meta@1.0.0-0.74faea6 sbcl-named-readtables@0.9-4.d5ff162
Channel: guixrus
Location: guixrus/packages/common/lisp.scm (guixrus packages common lisp)
Home page: https://gitlab.common-lisp.net/frideau/scribble
Licenses: LLGPL
Synopsis: SCRibe-like reader extension for Common Lisp
Description:

SCRibe-like reader extension for Common Lisp.

sbcl-scribble 0.4.2
Dependencies: sbcl-fare-utils@1.0.0.5-1.66e9c6f sbcl-fare-memoization@0.4.2 sbcl-fare-quasiquote@1.0.1-1.640d39a sbcl-meta@0.4.2 sbcl-named-readtables@0.9-4.d5ff162
Channel: gn-bioinformatics
Location: gn/packages/lisp.scm (gn packages lisp)
Home page: https://gitlab.common-lisp.net/frideau/scribble
Licenses: LLGPL
Synopsis: SCRibe-like reader extension for Common Lisp
Description:

SCRibe-like reader extension for Common Lisp.

sbcl-assert-p 1.0.1
Dependencies: sbcl-assertion-error@0.1.0-1.8eab692 sbcl-simplet@1.2.0
Channel: guix
Location: gnu/packages/lisp-check.scm (gnu packages lisp-check)
Home page: https://github.com/noloop/assert-p
Licenses: GPL 3
Synopsis: Common Lisp assertion library
Description:

This package provides a Common Lisp collection of assertions.

sbcl-jonathan 0.1.0-1.1f448b4
Dependencies: sbcl-cl-syntax@0.0.3 sbcl-fast-io@1.0.0-3.a4c5ad6 sbcl-proc-parse@0.0.0-1.ac36368 sbcl-cl-ppcre@2.1.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://rudolph-miller.github.io/jonathan/overview.html
Licenses: Expat
Synopsis: JSON encoder and decoder
Description:

High performance JSON encoder and decoder. Currently support: SBCL, CCL.

sbcl-cl-punch 0.2
Dependencies: sbcl-cl-syntax@0.0.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/windymelt/cl-punch
Licenses: Expat
Synopsis: Anonymous lambda literal in Common Lisp, respecting Scala
Description:

CL-PUNCH is a Scala-like anonymous lambda literal.

sbcl-eventbus 0.1.0-1.92c1fa3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/noloop/eventbus
Licenses: GPL 3
Synopsis: Event bus implementation in Common Lisp
Description:

This package provides a Common Lisp system implementing event bus.

sbcl-clostrum 0.0.0-0.c85d38b
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/s-expressionists/Clostrum
Licenses: FreeBSD
Synopsis: First Class Global Environments
Description:

This package provides first-class global environments for Common Lisp.

sbcl-cl-libuv 0.1.6-1.32100c0
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cffi@0.24.1-2.32c90d4 libuv@1.44.2
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/orthecreedence/cl-libuv
Licenses: Expat
Synopsis: Common Lisp bindings to libuv
Description:

This library provides low-level libuv bindings for Common Lisp.

Total results: 977