about summary refs log tree commit diff
path: root/third_party/lisp/anaphora.nix
blob: c079943e6725e6e105e3b9975f52ee47b444b9b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ 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"
  ];
}