d3b7de0783
Add a line to the issue show page displaying who opened the issue and when, the latter formatted in dottime. Change-Id: Ie70d7fd9e62ae92f9a479969d4ea21daddccee40 Reviewed-on: https://cl.tvl.fyi/c/depot/+/1345 Reviewed-by: glittershark <grfn@gws.fyi> Tested-by: BuildkiteCI
21 lines
292 B
Nix
21 lines
292 B
Nix
{ 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
|
|
];
|
|
}
|