diff options
author | Griffin Smith <grfn@gws.fyi> | 2021-04-04T14·40-0400 |
---|---|---|
committer | glittershark <grfn@gws.fyi> | 2021-04-04T14·43+0000 |
commit | 5319465f606a82629d41dfb96d73069e6735285b (patch) | |
tree | e0220abd2d4efac91a7a7eab3cec9c8d8affa63e /web | |
parent | 25ba2ef5f6c232fab0e7bfe362119721e1d94572 (diff) |
fix(panettone): Add email.lisp to source files r/2433
email.lisp was missing from the buildLisp derivaation's source files, which meant that none of its definitions were being loaded into the image even though the package was defined by packages.lisp. As an aside, this really should've broken the build - we got a style-warning in panettone.lisp for referencing the missing definitions, but that only surfaced as a warning, and ended up breaking once deployed Change-Id: Ie99c3efeef8e6943aa1f9cfc426957d622c2d718 Reviewed-on: https://cl.tvl.fyi/c/depot/+/2845 Reviewed-by: sterni <sternenseemann@systemli.org> Tested-by: BuildkiteCI
Diffstat (limited to 'web')
-rw-r--r-- | web/panettone/default.nix | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/panettone/default.nix b/web/panettone/default.nix index f1bb73d35ca6..095ccaac6ef2 100644 --- a/web/panettone/default.nix +++ b/web/panettone/default.nix @@ -26,6 +26,7 @@ depot.nix.buildLisp.program { ./src/packages.lisp ./src/util.lisp ./src/css.lisp + ./src/email.lisp ./src/inline-markdown.lisp ./src/authentication.lisp ./src/model.lisp |