diff --git a/shells/default.nix b/shells/default.nix index da26dc93..222e9721 100644 --- a/shells/default.nix +++ b/shells/default.nix @@ -4,4 +4,5 @@ with pkgs; { flatpak = callPackage ./flatpak.nix { }; hugo = callPackage ./hugo.nix { }; rust = callPackage ./rust.nix { }; + tic-80 = callPackage ./tic-80.nix { }; } diff --git a/shells/tic-80.nix b/shells/tic-80.nix new file mode 100644 index 00000000..1f61980b --- /dev/null +++ b/shells/tic-80.nix @@ -0,0 +1,12 @@ +# The rest of the tools is your preferences (i.e., image editor, text +# editor). This comes with the development for PRO version to enable +# development with plain text cartridges. +{ mkShell, tic-80, imagemagick }: + +mkShell { + packages = [ + tic-80 + tic-80.dev + imagemagick + ]; +}