1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
{ 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 ]; }