blob: b3c51eea704cd4e7cbaf58b67ec51af60c3bb0b2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ tpkgs ? (import (builtins.fetchGit "https://git.tazj.in/") {}), ... }:
tpkgs.nix.buildLisp.program {
name = "unit-testing";
deps = with tpkgs.third_party.lisp; [
(import ./prove.nix {})
];
srcs = [
./unit-testing.lisp
];
}
|