about summary refs log tree commit diff
path: root/third_party/lisp/uiop.nix
blob: 1a63041be6762847a9808af2988b140375d23948 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# 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)");
}