7f37acf548
Consuming the aliases that I defined in `NIX_PATH` in `.envrc`.
16 lines
231 B
Nix
16 lines
231 B
Nix
{ depot ? import <depot> {},
|
|
universe ? import <universe> {},
|
|
...
|
|
}:
|
|
|
|
depot.nix.buildLisp.program {
|
|
name = "unit-testing";
|
|
|
|
deps = with universe.third_party.lisp; [
|
|
prove
|
|
];
|
|
|
|
srcs = [
|
|
./unit-testing.lisp
|
|
];
|
|
}
|