st-johns-bulletins/shell.nix
Chandler Swift 081646b353
Add initial working draft
At this point, there's still a lot of filler and FIXMEs, but we do have
a complete bulletin generating!
2025-07-23 00:09:57 -05:00

13 lines
251 B
Nix

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;
})
];
}