From 26f6222c8dc0d0c56211d8a3796528b17b0f7de8 Mon Sep 17 00:00:00 2001 From: foo-dogsquared Date: Sun, 2 Jan 2022 22:31:11 +0800 Subject: [PATCH] Add devshell for TIC-80 I haven't used it. I'm just testing to create devshells with my own overlays. --- shells/default.nix | 1 + shells/tic-80.nix | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 shells/tic-80.nix 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 + ]; +}