chore: use new nixpkgs with overlay which bring back go_1_20 instead of using old nixpkgs (#1162)

This commit is contained in:
Nobody6825
2025-05-06 17:11:46 +08:00
committed by GitHub
parent 0b89312d9d
commit 4151464bdc
4 changed files with 41 additions and 14 deletions

View File

@@ -13,7 +13,7 @@
mkGoEnv ? pkgs.mkGoEnv,
gomod2nix ? pkgs.gomod2nix,
}: let
goEnv = mkGoEnv {pwd = ./.;};
goEnv = mkGoEnv { pwd = ./.; go = pkgs.go_1_20; };
in
pkgs.mkShell {
packages = [