about summary refs log tree commit diff
path: root/third_party/lisp/fiveam/default.nix
blob: 4236b93bc9c594d7e67ff24b1fe4787886771c88 (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
# FiveAM is a Common Lisp testing framework.
#
# Imported from https://github.com/sionescu/fiveam.git

{ depot, ... }:

depot.nix.buildLisp.library {
  name = "fiveam";

  deps = with depot.third_party.lisp; [
    alexandria
    asdf-flv
    trivial-backtrace
  ];

  srcs = [
    ./src/package.lisp
    ./src/utils.lisp
    ./src/check.lisp
    ./src/fixture.lisp
    ./src/classes.lisp
    ./src/random.lisp
    ./src/test.lisp
    ./src/explain.lisp
    ./src/suite.lisp
    ./src/run.lisp
  ];
}