diff options
Diffstat (limited to 'users/wpcarro/tools/run/shell.nix')
-rw-r--r-- | users/wpcarro/tools/run/shell.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/users/wpcarro/tools/run/shell.nix b/users/wpcarro/tools/run/shell.nix new file mode 100644 index 000000000000..f777c13fefae --- /dev/null +++ b/users/wpcarro/tools/run/shell.nix @@ -0,0 +1,9 @@ +{ pkgs, ... }: + +pkgs.mkShell { + buildInputs = with pkgs; [ + go + goimports + godef + ]; +} |