about summary refs log tree commit diff
path: root/web/panettone/default.nix
blob: f906fa7a7b2c07fc4264b735ec65e3161c00ef6b (plain) (blame)
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.program {
  name = "panettone";

  deps = with depot.third_party.lisp; [
    cl-prevalence
    cl-who
    defclass-std
    easy-routes
    hunchentoot
    local-time
    trivial-ldap

    depot.lisp.klatre
  ];

  srcs = [
    ./src/panettone.lisp
  ];
}