feat(third_party/lisp): Add derivation for fiveam
This commit is contained in:
parent
7db9b2aa71
commit
8e9167fdc8
1 changed files with 28 additions and 0 deletions
28
third_party/lisp/fiveam/default.nix
vendored
Normal file
28
third_party/lisp/fiveam/default.nix
vendored
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# FiveAM is a Common Lisp testing framework.
|
||||||
|
#
|
||||||
|
# Imported from https://github.com/sionescu/fiveam.git
|
||||||
|
|
||||||
|
{ pkgs, ... }:
|
||||||
|
|
||||||
|
pkgs.nix.buildLisp.library {
|
||||||
|
name = "fiveam";
|
||||||
|
|
||||||
|
deps = with pkgs.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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue