diff --git a/shell.nix b/shell.nix new file mode 100644 index 00000000..d24f3373 --- /dev/null +++ b/shell.nix @@ -0,0 +1,12 @@ +{ pkgs ? import {} }: + pkgs.mkShell { + nativeBuildInputs = with pkgs.buildPackages; + [ gcc + clang + SDL2.dev + gnumake + (python311.withPackages(ps: with ps; [ pillow pyyaml ])) + ]; + + # To build, make sure you have the ROM in place, then run `make -j16` +}