tvl-depot/web/tazblog_lisp/default.nix
Vincent Ambo 176b3458b0 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.
2020-01-27 02:11:55 +00:00

21 lines
288 B
Nix

{ 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
];
}