Skip to content

Commit

Permalink
Bumping go
Browse files Browse the repository at this point in the history
  • Loading branch information
blast-hardcheese committed Oct 9, 2024
1 parent e37162c commit b3d8468
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
9 changes: 9 additions & 0 deletions pkgs/historical-modules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,15 @@ let
displayVersion = "1.20";
};
}
{
moduleId = "go-1.21";
commit = "b5aa5df636c4cd8cd1aea251e8dea4fc0aa51781";
overrides = {
# /nix/store/q6j9za8smkdbnlybg63qq5lmj7zbambr-replit-module-go-1.20
# .runners["go-run"].displayVersion = "1.20.4";
displayVersion = "1.21";
};
}
{
moduleId = "haskell-ghc9.0";
commit = "c48c43c6c698223ed3ce2abc5a2d708735a77d5b";
Expand Down
11 changes: 9 additions & 2 deletions pkgs/modules/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,16 @@ let
(import ./nodejs-with-prybar)

(import ./go {
go = pkgs.go_1_21;
go = pkgs.go_1_22;
gopls = pkgs.gopls.override {
buildGoModule = pkgs.buildGo121Module;
buildGoModule = pkgs.buildGo122Module;
};
})

(import ./go {
go = pkgs.go_1_23;
gopls = pkgs.gopls.override {
buildGoModule = pkgs.buildGo123Module;
};
})

Expand Down

0 comments on commit b3d8468

Please sign in to comment.