Enter the query into the form above. You can look for specific version of a package by using @ symbol like this: gcc@10.
API method:
GET /api/packages?search=hello&page=1&limit=20
where search is your query, page is a page number and limit is a number of items on a single page. Pagination information (such as a number of pages and etc) is returned
in response headers.
If you'd like to join our channel webring send a patch to ~whereiseveryone/toys@lists.sr.ht adding your channel as an entry in channels.scm.
CLX-TrueType is pure common lisp solution for antialiased TrueType font rendering using CLX and XRender extension.
CF is a Common Lisp library for doing computations using continued fractions.
This is a terminfo database front end in Common Lisp. The package provides a method for determining which capabilities a terminal (e.g. "xterm") has and methods to compile or put commands to a stream.
This library is an implementation of Deflate (RFC 1951) decompression, with optional support for ZLIB-style (RFC 1950) and gzip-style (RFC 1952) wrappers of deflate streams. It currently does not handle compression.
cl-libxml2 is high-level Common Lisp wrapper around the libxml2 and libxslt libraries.
Interfaces for tree manipulation (like
cxml-stp).Interface for HTML 4.0 non-validating parsers.
Specific APIs to process HTML trees, especially serialization.
XPath API.
XSLT API.
Custom URL resolvers.
XPath extension functions.
XSLT extension elements.
Translates
libxml2andlibxslterrors to Lisp conditions.Extends the Common Lisp
iteratelibrary with custom drivers for child nodes enumeration, etc.The
XFACTORYsystem provides a simple and compact syntax for XML generation.
This is a Common Lisp bindings library to libfond, a simple OpenGL text rendering engine.
This is a Common Lisp library to load images in the PNG image format, both from files on disk, or streams in memory.
This package provides a SuperCollider client for Common Lisp.
This is a (currently) brief but usable wrap for SDL2_image.
Forge is a generic build system. Refer to documentation for the specific kind of project you're building to get the full picture.
Trivial-features ensures that *FEATURES* is consistent across multiple Common Lisp implementations.
This package provides an embedded template engine for Common Lisp.
This is a Common Lisp library providing various utilities.
RESTAS is a Common Lisp web application framework.
This is a small Common Lisp library to make slugs, mainly for URIs, from English and beyond.
Convenient macros for common lambda patterns.
This package implements an algorithm for the spelling of enharmonics and dealing with ties and dots in rhythm notation.
Dexador is yet another HTTP client for Common Lisp with neat APIs and connection-pooling. It is meant to supersede Drakma.
cl-all is a library and script for evaluating Common Lisp expressions in multiple implementations.
Helps writing concise CFFI-related code.
This library provides a wrapper type for secret values, to reduce the risk of accidentally revealing them.
Mito is yet another object relational mapper, and it aims to be a successor of Integral.
Support MySQL, PostgreSQL and SQLite3.
Add id (serial/uuid primary key), created_at and updated_at by default like Ruby's ActiveRecord.
Migrations.
Database schema versioning.
Triads is a simple command line tool that reads roman numeral notation from standard input (or a file) and an musical key and outputs the roman numeral in addition to the notes of the triad associated with that roman numeral given in the key.
This package provides a Language Server Protocol implementation for use with the Alive Visual Studio Code extension.
It can be used in Emacs like this:
(require 'lsp)
(defun lsp-lisp-alive-start-ls ()
"Start the alive-lsp."
(interactive)
(when-let (((lsp--port-available "localhost" lsp-lisp-alive-port)))
(lsp-async-start-process #'ignore #'ignore
"sbcl"
"--eval"
"(require :asdf)"
"--eval"
"(asdf:load-system :alive-lsp)"
"--eval"
(format "(alive/server::start :port %s)"
lsp-lisp-alive-port))))