blob: 3d41a1f36def09c2a492d44acb04b26b8a3f1aa3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
# 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)");
}
|