From 85af01955da2f744fb07a6f5a1fde94af339dd16 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Mon, 8 Sep 2025 23:08:13 +0100 Subject: [PATCH] gnu: gron: Build with go-1.24. * gnu/packages/golang-web.scm (gron): Fix indentation. [arguments] : Use default go-1.24 compiler. : Do not vet during tests. Change-Id: Ic356dadf5769b8a9810043091a807c766bd6a77f --- gnu/packages/golang-web.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index dd4553bd579357758bbbdc042f0bc5c1195b1a2d..ec196f7c2d862d6fda3475c1992a32a125f61f47 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -13542,17 +13542,17 @@ carries no encryption keys and cannot decode the traffic that it proxies."))) (origin (method git-fetch) (uri (git-reference - (url "https://github.com/tomnomnom/gron") - (commit (string-append "v" version)))) + (url "https://github.com/tomnomnom/gron") + (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 (base32 "1sj34b6yv0qigy3aq7qmwf8bqxp1a8qh9p10lzkpw58s1c0iyh36")))) (build-system go-build-system) (arguments (list - #:go go-1.23 #:install-source? #f - #:import-path "github.com/tomnomnom/gron")) + #:import-path "github.com/tomnomnom/gron" + #:test-flags #~(list "-vet=off"))) (native-inputs (list go-github-com-fatih-color go-github-com-mattn-go-colorable