From b2c1c39cb007a9ee0a76f723b309791b7cbb0a7f Mon Sep 17 00:00:00 2001 From: comp500 Date: Fri, 10 Mar 2023 16:42:08 +0000 Subject: [PATCH] Update Nix flake to use Go 1.19 --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index be98b30..099840c 100644 --- a/flake.nix +++ b/flake.nix @@ -32,7 +32,7 @@ packwiz = pkgs.callPackage ./nix { version = substring 0 8 self.rev or "dirty"; vendorSha256 = readFile ./nix/vendor-sha256; - buildGoModule = pkgs.buildGo118Module; + buildGoModule = pkgs.buildGo119Module; }; # Build packwiz by default when no package name is specified default = packwiz;