2e2bdf9c6c
- The new PANETTONE.IRC package contains the SEND-IRC-NOTIFICATION function, which opens a new TCP socket to irccat (if it's running and configured) in order to announce the creation of new issues. - The IRCCATHOST and IRCCATPORT environment variables must be set for this to work. - Additionally, the ISSUECHANNEL environment variable may be used to direct announcements at a given channel (otherwise it'll just use the first one). Change-Id: I429a66f24d0f80ed10db173d6af7105fb1d3d023 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2077 Tested-by: BuildkiteCI Reviewed-by: glittershark <grfn@gws.fyi>
45 lines
678 B
Nix
45 lines
678 B
Nix
{ depot, ... }:
|
|
|
|
depot.nix.buildLisp.program {
|
|
name = "panettone";
|
|
|
|
deps = with depot.third_party.lisp; [
|
|
cl-json
|
|
cl-ppcre
|
|
cl-who
|
|
drakma
|
|
defclass-std
|
|
easy-routes
|
|
hunchentoot
|
|
lass
|
|
local-time
|
|
postmodern
|
|
trivial-ldap
|
|
|
|
depot.lisp.klatre
|
|
];
|
|
|
|
srcs = [
|
|
./panettone.asd
|
|
./src/packages.lisp
|
|
./src/util.lisp
|
|
./src/css.lisp
|
|
./src/authentication.lisp
|
|
./src/model.lisp
|
|
./src/irc.lisp
|
|
./src/panettone.lisp
|
|
];
|
|
|
|
tests = {
|
|
deps = with depot.third_party.lisp; [
|
|
fiveam
|
|
];
|
|
|
|
srcs = [
|
|
./test/package.lisp
|
|
./test/model_test.lisp
|
|
];
|
|
|
|
expression = "(fiveam:run!)";
|
|
};
|
|
}
|