_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
sbcl-plump 2.0.0-3.0c3e0b5
Dependencies: sbcl-array-utils@1.2.0-0.29da8fc 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/plump/
Licenses: Zlib
Synopsis: Lenient XML / XHTML / HTML parser for Common Lisp
Description:

Plump is a parser for HTML/XML-like documents, focusing on being lenient towards invalid markup. It can handle things like invalid attributes, bad closing tag order, unencoded entities, inexistent tag types, self-closing tags and so on. It parses documents to a class representation and offers a small set of DOM functions to manipulate it. It can be extended to parse to your own classes.

sbcl-glkit 0.0-1.0d8e7c5
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cl-opengl@0.1.0-1.e2d83e0 sbcl-defpackage-plus@1.0-0.5492e27 sbcl-mathkit@0.0-1.fd884f9 sbcl-sb-cga@1.0.1-1.9a554ea sbcl-sdl2@0.0.0-2.80410b5 sbcl-static-vectors@1.8.9
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/lispgames/glkit/
Licenses: Expat
Synopsis: OpenGL utilities for math, shaders, and more
Description:

This is a utility kit for functionality related to OpenGL. It provides the following:

  • kit.glm: This re-exports sb-cga and mathkit for convenience.

  • kit.gl.shader: This provides shader dictionary and compilation functionality similar to what was originally found in sdl2kit.

  • kit.gl.vao: This provides an interface for Vertex Array Objects.

sbcl-ucons 0.0.0-0.d976810
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-atomics@1.0.0-2.b747702 sbcl-bordeaux-threads@0.9.3 sbcl-named-readtables@0.9-4.d5ff162 sbcl-trivia@0.1-0.8b406c3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/marcoheisig/ucons
Licenses: Expat
Synopsis: Unique conses for Common Lisp
Description:

UCONS is a Common Lisp library providing unique conses. Unique conses are different from regular conses in that, in addition to their car and cdr, they maintain a table of past users. Also, the cdr of each ucons is restricted to other uconses or nil. Uconses are meant for those situations where even reusing regular conses (to avoid consing) is too computationally expensive.

sbcl-clamp 0.3-1.02b8f39
Dependencies: sbcl-iterate@1.5.3 sbcl-cl-syntax@0.0.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/arclanguage/Clamp
Licenses: Artistic License 2.0
Synopsis: Common Lisp with Arc macros and procedures
Description:

Clamp is an attempt to bring the powerful, but verbose, language of Common Lisp up to the terseness of Arc.

There are two parts to Clamp. There is the core of Clamp, which implements the utilities of Arc that are easily converted from Arc to Common Lisp. The other part is the "experimental" part. It contains features of Arc that are not so easy to copy (ssyntax, argument destructuring, etc.).

sbcl-nasdf 0.1.8
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/atlas-engineer/ntemplate
Licenses: Modified BSD
Synopsis: ASDF helpers for system setup, testing and installation
Description:

NASDF is an ASDF extension providing utilities to ease system setup, testing and installation.

  • Simple way to fetch Git submodules and “do the right thing” for setup. This may effectively supersede Quicklisp. A benefit of using Git submodules over the default Quicklisp distribution is improved reproducibility.

  • Test helpers, like distinction between offline and online tests, or continuous integration options, and warning reports.

  • Installation helpers, for instance to install libraries, icons and desktop files to the right directories.

sbcl-clump 0.0.0-1.1ea4dba
Dependencies: sbcl-acclimation@0.0.0-1.4d51150
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/robert-strandh/Clump
Licenses: FreeBSD
Synopsis: Collection of tree implementations for Common Lisp
Description:

The purpose of this library is to provide a collection of implementations of trees.

In contrast to existing libraries such as cl-containers, it does not impose a particular use for the trees. Instead, it aims for a stratified design, allowing client code to choose between different levels of abstraction.

As a consequence of this policy, low-level interfaces are provided where the concrete representation is exposed, but also high level interfaces where the trees can be used as search trees or as trees that represent sequences of objects.

sbcl-jsown 1.0.1-1.744c440
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/madnificent/jsown
Licenses: Expat
Synopsis: Fast JSON reader / writer library for Common Lisp
Description:

jsown is a high performance Common Lisp JSON parser. Its aim is to allow for the fast parsing of JSON objects in Common Lisp. Recently, functions and macros have been added to ease the burden of writing and editing jsown objects.

jsown allows you to parse JSON objects quickly to a modifiable Lisp list and write them back. If you only need partial retrieval of objects, jsown allows you to select the keys which you would like to see parsed. jsown also has a JSON writer and some helper methods to alter the JSON objects themselves.

sbcl-maxpc 0.0.0-1.e5e58d0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://mr.gy/software/maxpc/api.html
Licenses: AGPL 3
Synopsis: Library for writing parsers and lexers based on combinatory parsing
Description:

Max’s Parser Combinators is a simple and pragmatic library for writing parsers and lexers based on combinatory parsing. MaxPC is capable of parsing deterministic, context-free languages, provides powerful tools for parse tree transformation and error handling, and can operate on sequences and streams. It supports unlimited backtracking, but does not implement Packrat Parsing. Instead, MaxPC achieves good performance through its optimized primitives, and explicit separation of matching and capturing input. In practice, MaxPC parsers perform better on typical computer languages—when compared to Packrat parsers—at the expense of not producing linear-time parsers.

sbcl-s-xml 3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://common-lisp.net/project/s-xml/
Licenses: LGPL 3+
Synopsis: Simple XML parser implemented in Common Lisp
Description:

S-XML is a simple XML parser implemented in Common Lisp. This XML parser implementation has the following features:

  • It works (handling many common XML usages).

  • It is very small (the core is about 700 lines of code, including comments and whitespace).

  • It has a core API that is simple, efficient and pure functional, much like that from SSAX (see also http://ssax.sourceforge.net).

  • It supports different DOM models: an XSML-based one, an LXML-based one and a classic xml-element struct based one.

  • It is reasonably time and space efficient (internally avoiding garbage generatation as much as possible).

  • It does support CDATA.

  • It should support the same character sets as your Common Lisp implementation.

  • It does support XML name spaces.

This XML parser implementation has the following limitations:

  • It does not support any special tags (like processing instructions).

  • It is not validating, even skips DTD's all together.

sbcl-njson 1.2.2
Dependencies: sbcl-cl-json@0.6.0 sbcl-jzon@1.1.0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/atlas-engineer/njson
Licenses: Modified BSD
Synopsis: JSON handling framework for Common Lisp
Description:

NJSON aims to make it convenient for one to decode, encode, and process JSON data, in the minimum keystrokes/minutes possible.

NJSON is parser-independent, with existing Common Lisp JSON parsers being loadable as additional system. jzon is included by default, though. Conveniences that NJSON provides are:

  • encode and decode as single entry points for JSON reading and writing, be it from streams/string/files, or from those.

  • jget, jcopy, jkeys, and their aliases to manipulate the decoded objects' properties without the need to worry about the low-level details of how these values are decoded.

  • jif, jwhen, jor, jand, and other macros mimicking Lisp ones, while using truth values of JSON-decoded data.

  • jbind and jmatch macros to destructure and validate parsed JSON.

  • njson/aliases package to nickname to j for all the forms conveniently accessible as j:get, j:copy, j:if etc.

sbcl-easing 0.0.0-1.1601a5f
Dependencies: sbcl-alexandria@1.4-0.009b7e5
Channel: tassos-guix
Location: tassos-guix/packages/lisp-xyz.scm (tassos-guix packages lisp-xyz)
Home page: https://github.com/vydd/easing
Licenses: Expat
Synopsis:
Description:
sbcl-stripe 0.0.0-0.b59631d
Dependencies: sbcl-dexador@0.9.15-2.051cbb7 sbcl-golden-utils@0.0.0-4.e43914a sbcl-local-time@1.0.6-4.40169fe sbcl-yason@0.8.4
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/atlas-engineer/stripe
Licenses: Expat
Synopsis: Stripe payment API client for Common Lisp
Description:

A client for the Stripe payment API.

sbcl-legion 0.1.1-1.599cca1
Dependencies: sbcl-bordeaux-threads@0.9.3 sbcl-cl-speedy-queue@0.0.0-1.0425c7c sbcl-vom@0.1.4-1.1aeafeb
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/fukamachi/legion
Licenses: Modified BSD
Synopsis: Simple multithreading worker mechanism for Common Lisp
Description:

This library provides a simple multithreading worker mechanism.

sbcl-clones 0.1-0.a2f7d84
Dependencies: sbcl-alexandria@1.4-0.009b7e5
Channel: guixrus
Location: guixrus/packages/common/lisp.scm (guixrus packages common lisp)
Home page: https://git.sr.ht/~kingcons/clones
Licenses: LLGPL
Synopsis: Common Lisp NES Emulator
Description:

sbcl-clones is a Common Lisp NES Emulator.

sbcl-magicl 0.9.1
Dependencies: lapack@3.9.0 sbcl-alexandria@1.4-0.009b7e5 sbcl-abstract-classes@1.7.0-1.7fa74f1 sbcl-cffi@0.24.1-1.3397035 sbcl-interface@0.0.0-0.6d8bd74 sbcl-policy-cond@0.0.0-0.eedb625 sbcl-static-vectors@1.8.9 sbcl-trivial-garbage@0.21-0.3474f64
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/quil-lang/magicl
Licenses: Modified BSD
Synopsis: Matrix Algebra proGrams In Common Lisp
Description:

This package provides matrix algebra functions for Common Lisp.

sbcl-restas 0.1.4-1.81bbbab
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-bordeaux-threads@0.9.3 sbcl-cffi@0.24.1-1.3397035 sbcl-data-sift@0.0.0-1.fd617d8 sbcl-hunchentoot@1.3.0-1.7686239 libcap@2.64 sbcl-routes@0.2.5-1.1b79e85
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/archimag/restas
Licenses: LLGPL
Synopsis: Common Lisp web framework
Description:

RESTAS is a Common Lisp web application framework.

sbcl-rutils 5.2.1-0.db3c3f4
Dependencies: sbcl-closer-mop@1.0.0-3.7b86f2a sbcl-named-readtables@0.9-4.d5ff162
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/vseloved/rutils
Licenses: Modified BSD
Synopsis: Radical Utilities for Common Lisp
Description:

RUTILS is a syntactic utilities package for Common Lisp.

sbcl-doplus 1.1.0
Dependencies: sbcl-parse-declarations@1.0.0-1.549aebb sbcl-fset@1.4.0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/alessiostalla/doplus
Licenses: GPL 3+
Synopsis: Iteration macro for Common Lisp
Description:

doplus is an iteration macro for Common Lisp.

sbcl-ningle 0.3.0-2.2e85675
Dependencies: sbcl-cl-syntax@0.0.3 sbcl-myway@0.1.0-1.2862300 sbcl-lack@0.3.0-1.35d3a8e sbcl-alexandria@1.4-0.009b7e5 sbcl-babel@0.5.0-3.627d6a6
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://8arrow.org/ningle/
Licenses: LLGPL
Synopsis: Super micro framework for Common Lisp
Description:

Ningle is a lightweight web application framework for Common Lisp.

sbcl-cl-ini 0.1-0.e630acb
Dependencies: sbcl-cl-str@0.21
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/compufox/cl-ini
Licenses: Expat
Synopsis: INI file parser for Common Lisp
Description:

Parse INI formatted files into a Common Lisp list structure.

sbcl-piping 2.0.0-1.c7a4163
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://shinmera.github.io/piping/
Licenses: Zlib
Synopsis: Library to enable simple message pipelines
Description:

This is a Common Lisp library to enable simple message pipelines.

sbcl-uax-15 0.1.3
Dependencies: sbcl-cl-ppcre@2.1.1 sbcl-split-sequence@2.0.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/sabracrolleton/uax-15
Licenses: Expat
Synopsis: Common Lisp implementation of unicode normalization functions
Description:

This package provides supports for unicode normalization, RFC8264 and RFC7564.

sbcl-xembed 0.1.0-1.a5c4b84
Dependencies: sbcl-clx@0.7.6-1.69f2ebb
Channel: wigust
Location: wigust/packages/lisp.scm (wigust packages lisp)
Home page: https://github.com/laynor/clx-xembed/
Licenses: Expat
Synopsis: Implementation of the XEMBED protocol that integrates with CLX
Description:

This package provides an implementation of the XEMBED protocol that integrates with CLX.

sbcl-select 1.0.0-0.df7920f
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-anaphora@0.9.8 sbcl-let-plus@0.0.0-2.455e657
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://lisp-stat.github.io/select/
Licenses: Ms-PL
Synopsis: Library for taking slices from array-like objects
Description:

This is a library for selecting portions of sequences, arrays or data-frames.

Total results: 964