Merge pull request #265445 from giorgiga/gomplate-fix-build

gomplate: force build with go 1.20
This commit is contained in:
Robert Scott 2023-11-06 21:28:27 +00:00 committed by GitHub
commit dab64c1e29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,9 +1,16 @@
# Gomplate 3.x does not build with go > 1.20.
# Version 4 of gomplate (yet unreleased) should not have this issue.
#
# see https://github.com/hairyhenderson/gomplate/issues/1872
{ lib
, buildGoModule
#, buildGoModule
, buildGo120Module
, fetchFromGitHub
}:
buildGoModule rec {
# buildGoModule rec {
buildGo120Module rec {
pname = "gomplate";
version = "3.11.5";