about summary refs log tree commit diff
path: root/tools/run/shell.nix
blob: 97d8ed61ec59f8d3ba1124413b98bed51bfb55dd (plain) (blame)
1
2
3
4
5
6
7
8
9
let
  pkgs = import <nixpkgs> {};
in pkgs.mkShell {
  buildInputs = with pkgs; [
    go
    goimports
    godef
  ];
}