diff options
author | Vincent Ambo <mail@tazj.in> | 2020-06-26T19·24+0100 |
---|---|---|
committer | tazjin <mail@tazj.in> | 2020-06-26T19·33+0000 |
commit | a46ffd85f50e75c3bcb3cac52eade6b35f4c0300 (patch) | |
tree | 3e9d74ba0ee410f5d2f79a17f20ecfb91e352e9e /web/tazblog_lisp/default.nix | |
parent | 0fe66627dde9e64287fbe2172a830d08bd2de7dd (diff) |
chore(web): Remove tazblog_lisp r/1086
This isn't actually used for anything. Change-Id: Ief1128e934b1626189453abe3564cb64e1fe5a95 Reviewed-on: https://cl.tvl.fyi/c/depot/+/602 Reviewed-by: tazjin <mail@tazj.in>
Diffstat (limited to 'web/tazblog_lisp/default.nix')
-rw-r--r-- | web/tazblog_lisp/default.nix | 21 |
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 b5527c196dbf..000000000000 --- 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 - ]; -} |