about summary refs log tree commit diff
path: root/users/wpcarro/scratch/deepmind/part_two/shell.nix
blob: f1b02c4d2ed54aef844644a64f5bcbc56bf4708f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs, ... }:

pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
    python3
    go
    goimports
  ];
}