about summary refs log tree commit diff
path: root/shells/go.nix
blob: 36b19bc1c8ce43c1f62a6221c39441d4ccc1c218 (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> { } }:
pkgs.mkShell {
  name = "go-shell";
  buildInputs = with pkgs; [
    go
  ];
}