2020-01-23 17:31:54 +01:00
|
|
|
{
|
|
|
|
depot ? import <depot> {},
|
2020-01-31 16:27:48 +01:00
|
|
|
briefcase ? import <briefcase> {},
|
2020-01-23 17:31:54 +01:00
|
|
|
...
|
|
|
|
}:
|
2020-01-23 14:45:57 +01:00
|
|
|
|
|
|
|
let
|
|
|
|
src = builtins.fetchGit {
|
|
|
|
url = "https://github.com/tpapp/let-plus.git";
|
|
|
|
rev = "7cf18b29ed0fe9c667a9a6a101b08ab9661a59e9";
|
|
|
|
};
|
2020-01-23 17:31:54 +01:00
|
|
|
in depot.nix.buildLisp.library {
|
2020-01-23 14:45:57 +01:00
|
|
|
name = "let-plus";
|
2020-01-23 17:31:54 +01:00
|
|
|
deps = [
|
|
|
|
depot.third_party.lisp.alexandria
|
2020-01-31 16:27:48 +01:00
|
|
|
briefcase.third_party.lisp.anaphora
|
2020-01-23 14:45:57 +01:00
|
|
|
];
|
|
|
|
srcs = [
|
|
|
|
"${src}/package.lisp"
|
|
|
|
"${src}/let-plus.lisp"
|
|
|
|
"${src}/extensions.lisp"
|
|
|
|
];
|
|
|
|
}
|