diff options
Diffstat (limited to 'nix/buildGo/default.nix')
-rw-r--r-- | nix/buildGo/default.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nix/buildGo/default.nix b/nix/buildGo/default.nix index 92951b3cb213..97b8bd226492 100644 --- a/nix/buildGo/default.nix +++ b/nix/buildGo/default.nix @@ -22,7 +22,10 @@ let replaceStrings toString; - inherit (pkgs) lib go runCommand fetchFromGitHub protobuf symlinkJoin; + inherit (pkgs) lib runCommand fetchFromGitHub protobuf symlinkJoin; + + # TODO: Adapt to Go 1.19 changes + go = pkgs.go_1_18; # Helpers for low-level Go compiler invocations spaceOut = lib.concatStringsSep " "; |