mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
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 <sharlatanus@gmail.com>
This commit is contained in:
parent
b1b381ad83
commit
274b71bdce
1 changed files with 1 additions and 1 deletions
|
@ -229,7 +229,6 @@ commit hash and its date rather than a proper release tag."
|
||||||
#:system #$system
|
#:system #$system
|
||||||
#:phases #$phases
|
#:phases #$phases
|
||||||
#:outputs #$(outputs->gexp outputs)
|
#:outputs #$(outputs->gexp outputs)
|
||||||
#:substitutable? #$substitutable?
|
|
||||||
#:goarch #$goarch
|
#:goarch #$goarch
|
||||||
#:goos #$goos
|
#:goos #$goos
|
||||||
#:embed-files #$embed-files
|
#:embed-files #$embed-files
|
||||||
|
@ -253,6 +252,7 @@ commit hash and its date rather than a proper release tag."
|
||||||
system #:graft? #f)))
|
system #:graft? #f)))
|
||||||
(gexp->derivation name builder
|
(gexp->derivation name builder
|
||||||
#:system system
|
#:system system
|
||||||
|
#:substitutable? substitutable?
|
||||||
#:guile-for-build guile)))
|
#:guile-for-build guile)))
|
||||||
|
|
||||||
(define* (go-cross-build name
|
(define* (go-cross-build name
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue