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

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

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

    depot.lisp.klatre
  ];

  srcs = [
    ./panettone.asd
    ./src/packages.lisp
    ./src/css.lisp
    ./src/panettone.lisp
  ];
}