Skip to content

Commit

Permalink
Merge pull request #167 from traP-jp/feat/#46-r-interpreter
Browse files Browse the repository at this point in the history
✨ r interpreter
  • Loading branch information
comavius authored Dec 7, 2024
2 parents 31d186b + b171fda commit 5416ee2
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;};
r = import ./r {inherit pkgs;};
in {
all = [
python.python311
Expand All @@ -25,5 +26,6 @@ in {
whitespace
unison
zsh
r
];
}
5 changes: 5 additions & 0 deletions exec-container/interpreters/r/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{pkgs}:
pkgs.toj-utils.simple-bin {
package = pkgs.R;
bin-name = "R";
}

0 comments on commit 5416ee2

Please sign in to comment.