about summary refs log tree commit diff
path: root/web/tazblog_lisp/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'web/tazblog_lisp/default.nix')
-rw-r--r--web/tazblog_lisp/default.nix21
1 files changed, 0 insertions, 21 deletions
diff --git a/web/tazblog_lisp/default.nix b/web/tazblog_lisp/default.nix
deleted file mode 100644
index b5527c196d..0000000000
--- a/web/tazblog_lisp/default.nix
+++ /dev/null
@@ -1,21 +0,0 @@
-{ depot, ... }:
-
-depot.nix.buildLisp.library {
-  name = "tazblog";
-
-  deps =
-  # Local dependencies
-  (with pkgs.lisp; [ dns ])
-
-  # Third-party dependencies
-  ++ (with pkgs.third_party.lisp; [
-    cl-base64
-    cl-json
-    hunchentoot
-    iterate
-  ]);
-
-  srcs = [
-    ./store.lisp
-  ];
-}