about summary refs log tree commit diff
path: root/pkgs/development/tools/gomplate
diff options
context:
space:
mode:
authorGiorgio Gallo <giorgio.gallo@bitnic.it>2023-05-03 15:06:25 +0200
committerGiorgio Gallo <giorgio.gallo@bitnic.it>2023-05-03 15:06:25 +0200
commit493100a898600d70852336f321a3c2c728bf2f4e (patch)
tree7bf8b626e217de9f3171190d6141a4304dc4a587 /pkgs/development/tools/gomplate
parentde91114b6178d85db143d846228edd1d5c1e19d6 (diff)
gomplate: add reminder to switch to go 1.20
Diffstat (limited to 'pkgs/development/tools/gomplate')
-rw-r--r--pkgs/development/tools/gomplate/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/tools/gomplate/default.nix b/pkgs/development/tools/gomplate/default.nix
index e6a99d1eeae63..e28836ffed211 100644
--- a/pkgs/development/tools/gomplate/default.nix
+++ b/pkgs/development/tools/gomplate/default.nix
@@ -7,6 +7,10 @@ buildGoModule rec {
   pname = "gomplate";
   version = "3.11.5";
 
+  # gomplate is currently built w/ go 1.19 (see pkgs/top-level/all-packages.nix), but
+  # it seems the reported "go 1.20 build failure" does no longer occurr.
+  # TODO remove indication to use go 1.19 in pkgs/top-level/all-packages.nix when next upgrading gomplate
+
   src = fetchFromGitHub {
     owner = "hairyhenderson";
     repo = pname;