4 lines
70 B
Nix
4 lines
70 B
Nix
{ mkShell, go, gopls }:
|
|
mkShell rec {
|
|
buildInputs = [ go gopls ];
|
|
}
|