about summary refs log tree commit diff
path: root/users/wpcarro/scratch/deepmind/part_two/shell.nix
blob: 6080171bb835ecc58d461c5759eac802565193e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let
  briefcase = import <briefcase> {};
  pkgs = briefcase.third_party.pkgs;
in pkgs.mkShell {
  buildInputs = with pkgs; [
    nodejs
    python3
    go
    goimports
  ];
}