e8d0488367
These both ship with SBCL, but need to be forced to load.
10 lines
229 B
Nix
10 lines
229 B
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)");
|
|
}
|