about summary refs log tree commit diff
path: root/users/wpcarro/third_party/lisp/cl-colors.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/third_party/lisp/cl-colors.nix')
-rw-r--r--users/wpcarro/third_party/lisp/cl-colors.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/users/wpcarro/third_party/lisp/cl-colors.nix b/users/wpcarro/third_party/lisp/cl-colors.nix
deleted file mode 100644
index fa35b755dbbc..000000000000
--- a/users/wpcarro/third_party/lisp/cl-colors.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ depot, briefcase, ... }:
-
-let
-  src = builtins.fetchGit {
-    url = "https://github.com/tpapp/cl-colors.git";
-    rev = "827410584553f5c717eec6182343b7605f707f75";
-  };
-in depot.nix.buildLisp.library {
-  name = "cl-colors";
-  deps = [
-    depot.third_party.lisp.alexandria
-    briefcase.third_party.lisp.let-plus
-  ];
-  srcs = [
-    "${src}/package.lisp"
-    "${src}/colors.lisp"
-    "${src}/colornames.lisp"
-    "${src}/hexcolors.lisp"
-  ];
-}