lol

gomplate: force build with go 1.20

+9 -2
+9 -2
pkgs/development/tools/gomplate/default.nix
··· 1 { lib 2 - , buildGoModule 3 , fetchFromGitHub 4 }: 5 6 - buildGoModule rec { 7 pname = "gomplate"; 8 version = "3.11.5"; 9
··· 1 + # Gomplate 3.x does not build with go > 1.20. 2 + # Version 4 of gomplate (yet unreleased) should not have this issue. 3 + # 4 + # see https://github.com/hairyhenderson/gomplate/issues/1872 5 + 6 { lib 7 + #, buildGoModule 8 + , buildGo120Module 9 , fetchFromGitHub 10 }: 11 12 + # buildGoModule rec { 13 + buildGo120Module rec { 14 pname = "gomplate"; 15 version = "3.11.5"; 16