about summary refs log tree commit diff
path: root/third_party/lisp/fiveam/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/lisp/fiveam/default.nix')
-rw-r--r--third_party/lisp/fiveam/default.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/third_party/lisp/fiveam/default.nix b/third_party/lisp/fiveam/default.nix
deleted file mode 100644
index 4236b93bc9..0000000000
--- a/third_party/lisp/fiveam/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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
-  ];
-}