about summary refs log tree commit diff
path: root/web/panettone/default.nix
blob: ae8127eb891ef4fadef7d265ac6d533cc10a93eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ depot, ... }:

depot.nix.buildLisp.program {
  name = "panettone";

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

    depot.lisp.klatre
  ];

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