Add devshell for TIC-80

I haven't used it. I'm just testing to create devshells with my own
overlays.
This commit is contained in:
foo-dogsquared 2022-01-02 22:31:11 +08:00
parent 45c074771d
commit 26f6222c8d
2 changed files with 13 additions and 0 deletions

View File

@ -4,4 +4,5 @@ with pkgs; {
flatpak = callPackage ./flatpak.nix { };
hugo = callPackage ./hugo.nix { };
rust = callPackage ./rust.nix { };
tic-80 = callPackage ./tic-80.nix { };
}

12
shells/tic-80.nix Normal file
View File

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