2020-02-21 13:47:29 +01:00
|
|
|
{ depot, ... }:
|
2020-01-27 03:11:55 +01:00
|
|
|
|
2020-02-21 13:47:29 +01:00
|
|
|
depot.nix.buildLisp.library {
|
2020-01-27 03:11:55 +01:00
|
|
|
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
|
|
|
|
];
|
|
|
|
}
|