blob: 500e980a819ad63f4138087407195cbe012de628 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# 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"
];
}
|