10 lines
213 B
Nix
10 lines
213 B
Nix
|
# ASDF ships with SBCL. This package just exists to force it to load.
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
with pkgs;
|
||
|
|
||
|
nix.buildLisp.library {
|
||
|
name = "asdf";
|
||
|
srcs = lib.singleton (builtins.toFile "asdf.lisp" "(require 'asdf)");
|
||
|
}
|