mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 06:19:00 +00:00
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:
parent
45c074771d
commit
26f6222c8d
@ -4,4 +4,5 @@ with pkgs; {
|
|||||||
flatpak = callPackage ./flatpak.nix { };
|
flatpak = callPackage ./flatpak.nix { };
|
||||||
hugo = callPackage ./hugo.nix { };
|
hugo = callPackage ./hugo.nix { };
|
||||||
rust = callPackage ./rust.nix { };
|
rust = callPackage ./rust.nix { };
|
||||||
|
tic-80 = callPackage ./tic-80.nix { };
|
||||||
}
|
}
|
||||||
|
12
shells/tic-80.nix
Normal file
12
shells/tic-80.nix
Normal 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
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user