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

commit 79dd68be4ef97e192e6188ecc37f00b5c96176e3
Author: ngraves <ngra...@gmx.com>
AuthorDate: Thu Jun 26 22:09:35 2025 +0200

    build-system/go: Fix substitutable? inconsistency.
    
    This inconsistency blocks https://codeberg.org/guix/guix/pulls/133
    
    * guix/build-system/go.scm (go-build): Fix substitutable? inconsistency.
    
    Change-Id: Ie47448bfa350458b291c4a5bddd8844317a66d30
    Signed-off-by: Sharlatan Hellseher <sharlata...@gmail.com>
---
 guix/build-system/go.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/build-system/go.scm b/guix/build-system/go.scm
index 8e03efa2eb..90e63640c1 100644
--- a/guix/build-system/go.scm
+++ b/guix/build-system/go.scm
@@ -229,7 +229,6 @@ commit hash and its date rather than a proper release tag."
                     #:system #$system
                     #:phases #$phases
                     #:outputs #$(outputs->gexp outputs)
-                    #:substitutable? #$substitutable?
                     #:goarch #$goarch
                     #:goos #$goos
                     #:embed-files #$embed-files
@@ -253,6 +252,7 @@ commit hash and its date rather than a proper release tag."
                                                   system #:graft? #f)))
     (gexp->derivation name builder
                       #:system system
+                      #:substitutable? substitutable?
                       #:guile-for-build guile)))
 
 (define* (go-cross-build name

Reply via email to