blob: ed86dde1858d24111550396548d67af4cefc4141 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
mkShell {
buildInputs = [
go
gotools
esptool
protobuf
protoc-gen-go
];
shellHook = ''
PATH=$PATH:$HOME/stuff/tinygo/bin
'';
}
|