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:
parent
dba2e5426e
commit
176b3458b0
2 changed files with 100 additions and 0 deletions
21
web/tazblog_lisp/default.nix
Normal file
21
web/tazblog_lisp/default.nix
Normal 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
|
||||
];
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue