cli/shell.nix
2022-02-11 21:53:48 +01:00

4 lines
70 B
Nix

{ mkShell, go, gopls }:
mkShell rec {
buildInputs = [ go gopls ];
}