Skip to content

Commit

Permalink
Merge pull request #168 from traP-jp/feat/#59-lua
Browse files Browse the repository at this point in the history
✨ lua interpreter
  • Loading branch information
comavius authored Dec 7, 2024
2 parents 5416ee2 + 88dd2f8 commit 2fce3b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exec-container/interpreters/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
whitespace = import ./whitespace {inherit pkgs;};
unison = import ./unison {inherit pkgs;};
zsh = import ./zsh {inherit pkgs;};
lua = import ./lua {inherit pkgs;};
r = import ./r {inherit pkgs;};
in {
all = [
Expand All @@ -26,6 +27,7 @@ in {
whitespace
unison
zsh
lua
r
];
}
5 changes: 5 additions & 0 deletions exec-container/interpreters/lua/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{pkgs}:
pkgs.toj-utils.simple-bin {
package = pkgs.lua5_4;
bin-name = "lua";
}

0 comments on commit 2fce3b6

Please sign in to comment.