From 9d949166d2b3a1f157d5c4fac63cafd71757110d Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Tue, 19 Aug 2025 17:40:14 +0100 Subject: webhook: Build using go 1.21 as recommended by upstream. This is specified by the go directive of go.mod in the webhook repository. --- guix/forge/webhook.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/guix/forge/webhook.scm b/guix/forge/webhook.scm index 714889d..c968685 100644 --- a/guix/forge/webhook.scm +++ b/guix/forge/webhook.scm @@ -21,6 +21,7 @@ #:use-module (srfi srfi-1) #:use-module (gnu build linux-container) #:use-module ((gnu packages admin) #:select (shadow)) + #:use-module ((gnu packages golang) #:select (go-1.21)) #:use-module ((gnu packages guile) #:select (guile-json-4)) #:use-module (gnu services) #:use-module (gnu services shepherd) @@ -63,7 +64,8 @@ "15cihbf49kbhgwavjsvl4qfcf3lyqa39vyqdxglmnkn603c3nk6w")))) (build-system go-build-system) (arguments - (list #:import-path "github.com/adnanh/webhook" + (list #:go go-1.21 + #:import-path "github.com/adnanh/webhook" #:phases #~(modify-phases %standard-phases (add-after 'unpack 'configure -- cgit 1.4.1