about summary refs log tree commit diff
path: root/third_party/lisp/uiop.nix
# UIOP ships with SBCL (due to ASDF). This package just exists to
# force it to load.
{ pkgs, ... }:

with pkgs;

nix.buildLisp.library {
  name = "uiop";
  srcs = lib.singleton (builtins.toFile "uiop.lisp" "(require 'uiop)");
}