flake-template-hell/templates/go/nix/shell.nix
Artur Manuel 1e373bd299
untitleable commit: read description
new template dropped, especially useful for me since now I can just load up a TeX environment whenever I need to. also added some names to my devShells.
2024-08-27 00:38:16 +01:00

11 lines
181 B
Nix

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