blob: 3d41a1f36def09c2a492d44acb04b26b8a3f1aa3 (
plain) (
tree)
|
|
# 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)");
}
|