LispKit 2.6.0
Monday, December 22, 2025
After more than one year of work, LispKit 2.6.0 was released. This release focuses on bug fixes, extensions of existing libraries, and a number of new libraries making macOS and iOS APIs available to LispKit programs.
New Libraries
ποΈ (lispkit image): This library provides a comprehensive interface to Apple's Core Image framework for advanced image processing operations. The library supports creating image processing pipelines using abstract images, applying various filters, and performing coordinate transformations.
ποΈ (lispkit image process): Library (lispkit image process) defines a high-level API for all the image filters provided by the Core Image framework of iOS and macOS. As opposed to the generic, imperative interface as implemented by library (lispkit image), the API of (lispkit image process) is functional: The main building blocks are image processors which transform abstract images. Since image processors are simply functions, they can be composed easily with existing functional composition operators, e.g. as provided by library (lispkit combinator).
ποΈ (lispkit vision): Library (lispkit vision) provides computer vision capabilities through Apple's Vision framework. The library supports optical character recognition (OCR), shape detection, barcode recognition, and image classification. All vision operations return future objects that execute asynchronously.
ποΈ (lispkit pdf): Library (lispkit pdf) provides an API for manipulating and analyzing PDF documents. The library supports creating PDF documents, managing pages, adding annotations, handling bookmarks, managing outlines, extracting content, and rendering pages.
ποΈ (lispkit draw web): Library (lispkit draw web) provides web page snapshotting capabilities through a WebKit-based web client. The library enables capturing images and generating PDFs from HTML content, local files, data streams, and remote URLs with configurable viewport settings and cropping options.
Local REPL Installation
As of version 2.6.0, LispKit now supports a simple way to build and install the read-eval-print loop and the required resource tree. Simply clone the repository from GitHub or download a distribution and type:
make installThis will build a release version of the REPL and install it under /user/local. By changing the PREFIX variable, it is possible to install the REPL anywhere. Here is an example:
make install PREFIX=/tmp/lispkit-testNow the interpreter can be invoked like this:
/tmp/lispkit-test/bin/lispkitThe distribution can be uninstalled in the following way:
make uninstall PREFIX=/tmp/lispkit-testRelease Notes
Here are the detailed release notes for LispKit 2.6.0:
Last updated