Create a go-api dev shell

Signed-off-by: Oliver Davies <oliver@oliverdavies.uk>
This commit is contained in:
Oliver Davies 2025-09-23 21:54:34 +01:00
parent 92c10ef33e
commit 549b76b863
4 changed files with 11 additions and 51 deletions

View file

@ -19,6 +19,16 @@
};
devShells.${system} = {
go-api = pkgs.mkShell {
packages = with pkgs; [
curlMinimal
go
jq
];
shellHook = ''go version'';
};
openapi = pkgs.mkShell {
packages = with pkgs; [
openapi-generator-cli