21 lines
277 B
Nix
21 lines
277 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|