aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/golang-xyz.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2024-07-14 20:48:45 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2024-07-15 12:17:54 +0100
commit84118cd1025e77ec06804dfbbfe63869f6417266 (patch)
treeeb730b16b064f91b3d87dfe044d6694b09af2126 /gnu/packages/golang-xyz.scm
parentb4645c95671bc654d92e09f7c712ad3efd100507 (diff)
downloadguix-84118cd1025e77ec06804dfbbfe63869f6417266.tar.gz
guix-84118cd1025e77ec06804dfbbfe63869f6417266.zip
gnu: go-github-com-alecthomas-template: Use go-1.17.
* gnu/packages/golang-xyz.scm (go-github-com-alecthomas-template) [arguments]: <#:go>: Pin to go-1.17. Change-Id: I2cdcba30605fe440df218e5cfd0f4f6ff00f5dd0
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r--gnu/packages/golang-xyz.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 9a85f7399d..9931911e32 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -710,6 +710,10 @@ almost directly in Go source code.")
(build-system go-build-system)
(arguments
(list
+ ;; XXX: Failing on a newer Golang version: FAIL: TestJSEscaping
+ ;; (0.00s) exec_test.go:757: JS escaping [unprintable ﷿] got
+ ;; [unprintable ﷿] want [unprintable \uFDFF]
+ #:go go-1.17
#:import-path "github.com/alecthomas/template"))
(home-page "https://github.com/alecthomas/template")
(synopsis "Fork of Go's text/template adding newline elision")