blob: a750443fd1c80e753f5fe954d8c16fbc955b9f68 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ depot, briefcase, ... }:
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
briefcase.third_party.lisp.anaphora
];
srcs = [
"${src}/package.lisp"
"${src}/let-plus.lisp"
"${src}/extensions.lisp"
];
}
|