st-johns-bulletins/shell.nix

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