_            _    _        _         _
      /\ \         /\ \ /\ \     /\_\      / /\
      \_\ \       /  \ \\ \ \   / / /     / /  \
      /\__ \     / /\ \ \\ \ \_/ / /     / / /\ \__
     / /_ \ \   / / /\ \ \\ \___/ /     / / /\ \___\
    / / /\ \ \ / / /  \ \_\\ \ \_/      \ \ \ \/___/
   / / /  \/_// / /   / / / \ \ \        \ \ \
  / / /      / / /   / / /   \ \ \   _    \ \ \
 / / /      / / /___/ / /     \ \ \ /_/\__/ / /
/_/ /      / / /____\/ /       \ \_\\ \/___/ /
\_\/       \/_________/         \/_/ \_____\/
sbcl-issr-core 0.1-1.64e3b07
Dependencies: sbcl-cl-str@0.21 sbcl-global-vars@1.0.0-0.c749f32 sbcl-plump@2.0.0-3.0c3e0b5 sbcl-tailrec@0-2.6f88284
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/interactive-ssr/client/blob/master/main.org
Licenses: LLGPL
Synopsis: The core functionality for ISSR server modules
Description:

ISSR core provides functions and variables for ISSR server modules so that different servers can behave similarly. The most important features are Document Object Model differencing to generate instructions to update a DOM, and DOM cleaning, to ensure that all remote DOMs are the same.

sbcl-cl-base58 0.1-1.f446835
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/eudoxia0/cl-base58
Licenses: Expat
Synopsis: Implementation of base58 for Common Lisp
Description:

This library implements the base58 encoding algorithm. It's basically base64 but with a smaller alphabet (58, as in the name) that doesn't include similar looking characters, among other things. See https://github.com/bitcoin/bitcoin/blob/master/src/base58.h for a full reference.

sbcl-s-sysdeps 1-3.7f8de28
Dependencies: sbcl-bordeaux-threads@0.9.3 sbcl-usocket@0.8.8
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/svenvc/s-sysdeps
Licenses: LLGPL
Synopsis: Common Lisp abstraction layer over platform dependent functionality
Description:

s-sysdeps is an abstraction layer over platform dependent functionality. This simple package is used as a building block in a number of other projects.

s-sysdeps abstracts:

  • managing processes,

  • implementing a standard TCP/IP server,

  • opening a client TCP/IP socket stream,

  • working with process locks.

sbcl-cepl.glop 0.0.0-1.8ec0980
Dependencies: sbcl-cepl@0.0.0-1.d1a10b6 sbcl-glop@0.1.0-1.45e722a
Channel: tassos-guix
Location: tassos-guix/packages/lisp-xyz.scm (tassos-guix packages lisp-xyz)
Home page: https://github.com/cbaggers/cepl.glop
Licenses: FreeBSD
Synopsis: glop host for cepl.
Description:

This package lets GLOP act as a host for CEPL What?

CEPL (like GL) relies on other libraries for managing the creation of a GL context, interaction with the Window manager and handling of input sources. The libraries that provide this functionality for CEPL are called hosts.

This is a host for CEPL which uses the GLOP library for creating the context etc.

sbcl-cl-colors 0.0.0-1.8274105
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-let-plus@0.0.0-2.455e657
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/tpapp/cl-colors
Licenses: Boost 1.0
Synopsis: Simple color library for Common Lisp
Description:

This is a very simple color library for Common Lisp, providing

  • Types for representing colors in HSV and RGB spaces.

  • Simple conversion functions between the above types (and also hexadecimal representation for RGB).

  • Some predefined colors (currently X11 color names – of course the library does not depend on X11).Because color in your terminal is nice.

This library is no longer supported by its author.

sbcl-unix-opts 0.1.7-1.0e61f34
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/libre-man/unix-opts
Licenses: Expat
Synopsis: Unix-style command line options parser
Description:

This is a minimalistic parser of command line options. The main advantage of the library is the ability to concisely define command line options once and then use this definition for parsing and extraction of command line arguments, as well as printing description of command line options (you get --help for free). This way you don't need to repeat yourself. Also, unix-opts doesn't depend on anything and precisely controls the behavior of the parser via Common Lisp restarts.

sbcl-lparallel 2.8.4-1.80fc295
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-bordeaux-threads@0.9.3 sbcl-trivial-garbage@0.21-0.3474f64
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://lparallel.org/
Licenses: Expat
Synopsis: Parallelism for Common Lisp
Description:

lparallel is a library for parallel programming in Common Lisp, featuring:

  • a simple model of task submission with receiving queue,

  • constructs for expressing fine-grained parallelism,

  • asynchronous condition handling across thread boundaries,

  • parallel versions of map, reduce, sort, remove, and many others,

  • promises, futures, and delayed evaluation constructs,

  • computation trees for parallelizing interconnected tasks,

  • bounded and unbounded FIFO queues,

  • high and low priority tasks,

  • task killing by category,

  • integrated timeouts.

sbcl-posix-shm 0.0.7
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cffi@0.24.1-2.32c90d4 sbcl-trivial-features@1.0
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://git.sr.ht/~shunter/posix-shm
Licenses: Modified BSD
Synopsis: Common Lisp bindings and wrapper for POSIX shared memory API
Description:

This library provides two strata to access the POSIX shm API:

  • the package posix-shm/ffi, a collection of slim bindings to the POSIX API

  • the package posix-shm, a lispy wrapper around the FFI that integrates more closely to the features of Common Lisp, and provides a handful of utilities and macros

Features include:

  • open, close, create, resize, change ownership of, change permissions of, and memory map to shared memory objects

  • open-shm appears more like open from the standard library

  • open-shm*, for creating anonymous shm objects

  • with-open-shm, with-mmap and similar with- macros for safely accessing resources with dynamic extent

sbcl-spinneret 3.0-6.d4398b5
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-global-vars@1.0.0-0.c749f32 sbcl-parenscript@2.7.1-1.7a1ac46 sbcl-cl-markdown@0.10.6-0.3788802 sbcl-cl-ppcre@2.1.1 sbcl-serapeum@0.0.0-12.c08442a sbcl-trivial-gray-streams@2.0-1.2b3823e
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/ruricolist/spinneret
Licenses: Expat
Synopsis: Common Lisp HTML5 generator
Description:

In the crowded space of Common Lisp HTML generators, Spinneret occupies the following coordinates:

  • Modern. Targets HTML5. Does not treat XML and HTML as the same problem. Assumes you will be serving your documents as UTF-8.

  • Composable. Makes it easy to refactor HTML generation into separate functions and macros.

  • Pretty. Treats HTML as a document format, not a serialization. Output is idiomatic and readable, following the coding style of the HTML5 specification.

  • Aggressive. If something can be interpreted as HTML, then it will be, meaning that some Lisp forms can't be mixed with HTML syntax. In the trade-off between 90% convenience and 10% correctness Spinneret is on the side of convenience.

  • Bilingual. Spinneret (after loading spinneret/ps) has the same semantics in Lisp and Parenscript.

sbcl-inquisitor 423fa9bdd4a68a6ae517b18406d81491409ccae8
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-anaphora@0.9.8 sbcl-prove@1.0.0-2.5d71f02 sbcl-babel@0.5.0-3.627d6a6
Channel: atlas
Location: atlas/packages/lisp.scm (atlas packages lisp)
Home page: https://github.com/t-sin/inquisitor
Licenses: Expat
Synopsis: Encoding/end-of-line detection and external-format abstraction for Common Lisp
Description:
sbcl-sijo-utils 0.1.0
Dependencies: sbcl-generic-cl@0.9 sbcl-alexandria@1.4-0.009b7e5 sbcl-serapeum@0.0.0-12.c08442a sbcl-f-underscore@0.1 sbcl-arrow-macros@0.2.7-0.16bdfd3 sbcl-cl-ppcre@2.1.1 sbcl-cl-str@0.21
Channel: sijo
Location: sijo/packages/lisp-xyz.scm (sijo packages lisp-xyz)
Home page: https://git.sr.ht/~simendsjo/sijo-utils
Licenses: ASL 2.0
Synopsis: Utilities for Lisp
Description:

Utilities for Lisp

sbcl-clx-xembed 0.1-1.a5c4b84
Dependencies: sbcl-clx@0.7.6-1.69f2ebb
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/laynor/clx-xembed
Licenses: Expat
Synopsis: CL(x) xembed protocol implementation
Description:

CL(x) xembed protocol implementation

sbcl-common-doc 0.2.0-1.bcde4cf
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-anaphora@0.9.8 sbcl-cl-ppcre@2.1.1 sbcl-closer-mop@1.0.0-3.7b86f2a sbcl-local-time@1.0.6-4.40169fe sbcl-quri@0.7.0-0.03ecaf3 sbcl-split-sequence@2.0.1 sbcl-trivial-shell@0.2.0-1.e02ec19 sbcl-trivial-types@0.0.1
Channel: sijo
Location: sijo/packages/lisp-xyz.scm (sijo packages lisp-xyz)
Home page: https://github.com/CommonDoc/common-doc
Licenses: Expat
Synopsis: A framework for representing and manipulating documents.
Description:

A framework for representing and manipulating documents.

sbcl-cl-rdkafka 1.1.0
Dependencies: sbcl-bordeaux-threads@0.9.3 sbcl-cffi@0.24.1-2.32c90d4 librdkafka@1.4.2 sbcl-lparallel@2.8.4-1.80fc295 sbcl-trivial-garbage@0.21-0.3474f64
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/SahilKang/cl-rdkafka
Licenses: GPL 3
Synopsis: Common Lisp client library for Apache Kafka
Description:

A Common Lisp client library for Apache Kafka.

sbcl-statistics 1.0.0-0.94fc87a
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-anaphora@0.9.8 sbcl-conduit-packages@2.0.0 sbcl-distributions@1.0.0-0.ea72622 sbcl-let-plus@0.0.0-2.455e657 sbcl-numerical-utilities@1.2.0-0.44f45ba
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://lisp-stat.dev/docs/
Licenses: Expat Ms-PL
Synopsis: Statistical functions in Common Lisp
Description:

This package provides a consolidation of Common Lisp statistics libraries.

sbcl-file-types 0-1.6f5676b
Channel: sijo
Location: sijo/packages/lisp-xyz.scm (sijo packages lisp-xyz)
Home page: https://github.com/eugeneia/file-types
Licenses: AGPL 1
Synopsis: Simple scheme to classify file types in a hierarchical fashion.
Description:

Simple scheme to classify file types in a hierarchical fashion.

sbcl-boost-json 1.1-0.eca166f
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/cl-boost/json
Licenses: ASL 2.0
Synopsis: JSON encoding and decoding for Common Lisp
Description:

BOOST-JSON is a simple JSON parsing library for Common Lisp.

sbcl-cffi-c-ref 1.0-0.8123cbb
Dependencies: 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/borodust/cffi-c-ref
Licenses: Expat
Synopsis: Streamlined access to foreign memory
Description:

This Common Lisp library provides macros to access foreign memory.

sbcl-sdl2-image 1.0-1.9c05c80
Dependencies: sdl2-image@2.8.8 sbcl-alexandria@1.4-0.009b7e5 sbcl-cl-autowrap@1.0-2.a5d71eb sbcl-defpackage-plus@1.0-0.5492e27 sbcl-sdl2@0.0.0-2.80410b5
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/lispgames/cl-sdl2-image
Licenses: Expat
Synopsis: SDL2_image wrapper for Common Lisp
Description:

This is a (currently) brief but usable wrap for SDL2_image.

sbcl-clinenoise 0.0.0-1.46e21f9
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-cffi@0.24.1-2.32c90d4 sbcl-split-sequence@2.0.1
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/jasom/clinenoise
Licenses: FreeBSD
Synopsis: Port of linenoise to Common Lisp
Description:

This package provides a trivial line-input library for VT-like terminals.

sbcl-collectors 1.0-2.4c5e70c
Dependencies: sbcl-alexandria@1.4-0.009b7e5 sbcl-closer-mop@1.0.0-3.7b86f2a sbcl-symbol-munger@0.0.1-2.e96558e
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/AccelerationNet/collectors/
Licenses: Modified BSD
Synopsis: Common lisp library providing collector macros
Description:

A small collection of common lisp macros to make collecting values easier.

sbcl-s-graphviz 2.0-1.a06d957
Dependencies: sbcl-iterate@1.5.3
Channel: guix
Location: gnu/packages/lisp-xyz.scm (gnu packages lisp-xyz)
Home page: https://github.com/jingtaozf/s-graphviz
Licenses: Expat
Synopsis: S-expression representation of the GraphViz DOT language
Description:

This package creates GraphViz DOT files from an equivalent s-expression representation.

Total results: 1015