about summary refs log tree commit diff
path: root/third_party/lisp/let-plus.nix
blob: bd7f31dfa0deb5b2604ca8edc50ff570fe00623e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ depot, pkgs, ... }:

let src = with pkgs; srcOnly lispPackages.let-plus;
in depot.nix.buildLisp.library {
  name = "let-plus";
  deps = [
    depot.third_party.lisp.alexandria
    depot.third_party.lisp.anaphora
  ];
  srcs = [
    "${src}/package.lisp"
    "${src}/let-plus.lisp"
    "${src}/extensions.lisp"
  ];
}