about summary refs log blame commit diff
path: root/web/tazblog_lisp/default.nix
blob: 178c731ccb75c8eef24c5fa0b69db0562435cb0f (plain) (tree)




















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