feat(web/tazblog_lisp): Implement retrieval of blog posts from DNS

This is mostly equivalent to the Haskell implementation, with the
primary difference that the Lisp DNS library does not support caching
yet.
This commit is contained in:
Vincent Ambo 2020-01-27 02:11:55 +00:00
parent dba2e5426e
commit 176b3458b0
2 changed files with 100 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{ pkgs, ... }:
pkgs.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
];
}