blob: 6af8f85c85986a4dcc0be395f164515e5c0f56b3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
{}:
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "goenv";
buildInputs = with pkgs; [ go gopls golangci-lint ];
shellHook = ''
export GOROOT="${pkgs.go.out}/share/go";
'';
}
|