flake-template-hell/templates/go/nix/shell.nix

12 lines
188 B
Nix
Raw Normal View History

{ mkShell, go, go-app, gopls, go-tools, gotools }:
mkShell {
name = "Go Development Shell";
inputsFrom = [ go-app ];
buildInputs = [
go
gopls
go-tools
gotools
];
}