about summary refs log tree commit diff
path: root/run/shell.nix
blob: 8b97f04ca446216ce50620a01dc84197553006dc (plain) (blame)
1
2
3
4
5
6
7
{ pkgs ? import <nixpkgs> {}, ... }:

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