_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
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-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-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-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-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-cl-punch 0.2
Dependencies: sbcl-cl-syntax@0.0.3
Channel: confetti
Location: confetti/packages/lisp-xyz.scm (confetti packages lisp-xyz)
Home page: https://github.com/windymelt/cl-punch
Licenses: Expat
Synopsis: Anonymous lambda literal in Common Lisp
Description:

Anonymous lambda literal in Common Lisp, respecting Scala.

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-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-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-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-1.3397035 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.

sbcl-png-read 0.3.1-1.ec29f38
Dependencies: sbcl-babel@0.5.0-3.627d6a6 sbcl-chipz@0.8-2.82a17d3 sbcl-iterate@1.5.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/Ramarren/png-read
Licenses: Modified BSD
Synopsis: PNG decoder for Common Lisp
Description:

This is a Common Lisp library for reading PNG images.

sbcl-stdutils 1.0-0.4a4e5a4
Dependencies: sbcl-cl-fad@0.7.6-1.3f4d32d sbcl-cl-ppcre@2.1.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/eslick/cl-stdutils/
Licenses: Modified BSD
Synopsis: Grab bag of Common Lisp utility functions
Description:

This package provides a grab bag of miscellaneous Common Lisp utilities.

sbcl-metacopy 0.2.0-2.df7856f
Dependencies: sbcl-contextl@1.0.0-2.f4fb3f5 sbcl-moptilities@0.3.13-1.a436f16
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/hraban/metacopy
Licenses: Expat
Synopsis: Flexible Common Lisp shallow/deep copy mechanism
Description:

This package provides a flexible shallow/deep copy mechanism for Common Lisp.

Total results: 964