about summary refs log blame commit diff
path: root/web/tazblog_lisp/default.nix
blob: b5527c196dbf7209fc19248f959e04f2b261b715 (plain) (tree)
1
2
3
               
 
                             

















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