tvl-depot/third_party/lisp/anaphora.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
250 B
Nix
Raw Normal View History

{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.anaphora;
in depot.nix.buildLisp.library {
name = "anaphora";
srcs = map (f: src + ("/" + f)) [
"packages.lisp"
"early.lisp"
"symbolic.lisp"
"anaphora.lisp"
];
}