Add initial working draft

At this point, there's still a lot of filler and FIXMEs, but we do have
a complete bulletin generating!
This commit is contained in:
Chandler Swift 2025-07-23 00:06:33 -05:00
parent 60a3853fd2
commit 081646b353
Signed by: chandlerswift
GPG key ID: A851D929D52FB93F
8 changed files with 505 additions and 0 deletions

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
let
pkgs = import <nixpkgs> { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
gnumake
lilypond
(pkgs.texlive.combine {
inherit (pkgs.texlive) scheme-basic
scripture xcolor lipsum;
})
];
}