1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-23 02:38:35 +00:00

Add golang back to nix dev environment and pin v1.23 (#33275)

This commit is contained in:
6543
2025-01-17 18:25:33 +01:00
committed by GitHub
parent 3b839f8dc0
commit 1342d48433
2 changed files with 11 additions and 6 deletions

View File

@@ -29,9 +29,14 @@
poetry
# backend
go_1_23
gofumpt
sqlite
];
shellHook = ''
export GO="${pkgs.go_1_23}/bin/go"
export GOROOT="${pkgs.go_1_23}/share/go"
'';
};
}
);