tvl-depot/lisp/default.nix
William Carroll b6fa3941b3 Rename common-lisp directory to lisp
I could have renamed common-lisp to common_lisp. I think Nix prefers underscores
to hyphens.
2020-01-24 10:50:05 +00:00

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
];
}