tvl-depot/universe/third_party/lisp/prove.nix
William Carroll fb9380ba26 Add 'universe/' from commit '8ad51b24dd8719840aac47134835ea25cfe1b0b8'
git-subtree-dir: universe
git-subtree-mainline: 15110e6de9
git-subtree-split: 8ad51b24dd
2020-01-29 14:29:25 +00:00

35 lines
860 B
Nix

{
depot ? import <depot> {},
universe? import <universe> {},
...
}:
let
src = builtins.fetchGit {
url = "https://github.com/fukamachi/prove.git";
rev = "5d71f02795b89e36f34e8c7d50e69b67ec6ca2de";
};
in depot.nix.buildLisp.library {
name = "prove";
deps = [
depot.third_party.lisp.cl-ppcre
depot.third_party.lisp.cl-ansi-text
depot.third_party.lisp.alexandria
depot.third_party.lisp.uiop
universe.third_party.lisp.cl-colors
];
srcs = [
"${src}/src/asdf.lisp"
"${src}/src/suite.lisp"
"${src}/src/color.lisp"
"${src}/src/output.lisp"
"${src}/src/prove.lisp"
"${src}/src/report.lisp"
"${src}/src/reporter.lisp"
"${src}/src/test.lisp"
"${src}/src/reporter/dot.lisp"
"${src}/src/reporter/fiveam.lisp"
"${src}/src/reporter/list.lisp"
"${src}/src/reporter/tap.lisp"
];
}