diff options
author | Arun Isaac | 2025-08-19 17:40:14 +0100 |
---|---|---|
committer | Arun Isaac | 2025-08-19 17:40:14 +0100 |
commit | 9d949166d2b3a1f157d5c4fac63cafd71757110d (patch) | |
tree | 7534274318fc6db8c7c0b9f33a7921d07a517767 /guix | |
parent | 1dc6ca87acd2a663f0abaa079b41a79f099ff570 (diff) | |
download | guix-forge-9d949166d2b3a1f157d5c4fac63cafd71757110d.tar.gz guix-forge-9d949166d2b3a1f157d5c4fac63cafd71757110d.tar.lz guix-forge-9d949166d2b3a1f157d5c4fac63cafd71757110d.zip |
webhook: Build using go 1.21 as recommended by upstream.
This is specified by the go directive of go.mod in the webhook repository.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/forge/webhook.scm | 4 |
1 files changed, 3 insertions, 1 deletions
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 |