about summary refs log tree commit diff
path: root/third_party/lisp/let-plus.nix
blob: a3a15776bf867dd284dbce41a3c05ef83d8a62f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  depot ? import <depot> {},
  universe ? import <universe> {},
  ...
}:

let
  src = builtins.fetchGit {
    url = "https://github.com/tpapp/let-plus.git";
    rev = "7cf18b29ed0fe9c667a9a6a101b08ab9661a59e9";
  };
in depot.nix.buildLisp.library {
  name = "let-plus";
  deps = [
    depot.third_party.lisp.alexandria
    universe.third_party.lisp.anaphora
  ];
  srcs = [
    "${src}/package.lisp"
    "${src}/let-plus.lisp"
    "${src}/extensions.lisp"
  ];
}