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 942dd6c commit db6f261
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 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
6 changes: 3 additions & 3 deletions pkgs/modules/docker/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ let

configFiles = pkgs.copyPathToStore ./etc;

replit-runc = pkgs.buildGo121Module {
replit-runc = pkgs.buildGo123Module {
pname = "replit-runc";
version = "1.1.9+replit";

Expand All @@ -30,7 +30,7 @@ let
'';
};

replit-containerd = pkgs.buildGo121Module {
replit-containerd = pkgs.buildGo123Module {
pname = "replit-containerd";
version = "1.7.5+replit";

Expand Down Expand Up @@ -65,7 +65,7 @@ let
replitShimRunc = replit-containerd;
};

replit-buildkit = pkgs.buildGo121Module {
replit-buildkit = pkgs.buildGo123Module {
pname = "replit-buildkit";
version = "v0.13.0-beta1+replit";

Expand Down

0 comments on commit db6f261

Please sign in to comment.