tvl-depot/common-lisp/default.nix

14 lines
246 B
Nix
Raw Normal View History

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