about summary refs log blame commit diff
path: root/scratch/deepmind/part_two/shell.nix
blob: 606dd7167f7cfa1572e8bcd2df0d0d93bfb76e77 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                    








                            
{ pkgs ? import <nixpkgs> {}, ... }:

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