tvl-depot/third_party/lisp/fiveam.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
548 B
Nix
Raw Normal View History

# FiveAM is a Common Lisp testing framework.
#
# Imported from https://github.com/sionescu/fiveam.git
{ depot, pkgs, ... }:
let src = with pkgs; srcOnly lispPackages.fiveam;
in depot.nix.buildLisp.library {
name = "fiveam";
deps = with depot.third_party.lisp; [
alexandria
asdf-flv
trivial-backtrace
];
srcs = map (f: src + ("/src/" + f)) [
"package.lisp"
"utils.lisp"
"check.lisp"
"fixture.lisp"
"classes.lisp"
"random.lisp"
"test.lisp"
"explain.lisp"
"suite.lisp"
"run.lisp"
];
}