guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 62cfd2c2e8a16966c77fe3246f454b10847d7e5b
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Feb 7 23:55:30 2026 +0000

    gnu: cf-tool: Use default go, skip vet during tests.
    
    * gnu/packages/education.scm (cf-tool)[arguments] <go>: Use
    default (go-1.24).
    <test-flags>: Add "-vet=off" option.
    
    Change-Id: I4fa1ae2d8042ce15310655d98cb002be235eedca
---
 gnu/packages/education.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm
index 6e31c6950b..4f608475ff 100644
--- a/gnu/packages/education.scm
+++ b/gnu/packages/education.scm
@@ -95,6 +95,7 @@
   #:use-module (guix build-system trivial)
   #:use-module (srfi srfi-1))
 
+;; XXX: This project was archived by the owner on Dec 14, 2024.
 (define-public cf-tool
   (package
     (name "cf-tool")
@@ -117,9 +118,10 @@
     (build-system go-build-system)
     (arguments
      (list
-      #:go go-1.23
       #:install-source? #f
       #:import-path "github.com/xalanq/cf-tool"
+      #:test-flags
+      #~(list "-vet=off")
       #:phases
       #~(modify-phases %standard-phases
           (add-after 'install 'add-alternate-name

Reply via email to