mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-27 04:59:27 -05:00
gnu: guix-build-coordinator: Update to 0-23.44d0006.
* gnu/packages/package-management.scm (guix-build-coordinator): Update to 0-23.44d0006. [arguments]: Fix missing guile-fibers when not building for the hurd.
This commit is contained in:
parent
7fc922fdaf
commit
f37d91adc4
1 changed files with 13 additions and 9 deletions
|
@ -1050,7 +1050,7 @@ (define-public gwl
|
|||
|
||||
(define-public guix-build-coordinator
|
||||
(let ((commit "44d00065cfbd0f24d2fac631608a5aeaace648a7")
|
||||
(revision "22"))
|
||||
(revision "23"))
|
||||
(package
|
||||
(name "guix-build-coordinator")
|
||||
(version (git-version "0" revision commit))
|
||||
|
@ -1088,14 +1088,18 @@ (define-public guix-build-coordinator
|
|||
(for-each
|
||||
(lambda (file)
|
||||
(simple-format (current-error-port) "wrapping: ~A\n" file)
|
||||
(let ((guile-inputs `("guile-json"
|
||||
"guile-gcrypt"
|
||||
"guix"
|
||||
"guile-prometheus"
|
||||
"guile-lib"
|
||||
"guile-lzlib"
|
||||
"guile-zlib"
|
||||
"gnutls")))
|
||||
(let ((guile-inputs (list
|
||||
"guile-json"
|
||||
"guile-gcrypt"
|
||||
"guix"
|
||||
"guile-prometheus"
|
||||
"guile-lib"
|
||||
"guile-lzlib"
|
||||
"guile-zlib"
|
||||
"gnutls"
|
||||
,@(if (hurd-target?)
|
||||
'()
|
||||
'("guile-fibers")))))
|
||||
(wrap-program file
|
||||
`("PATH" ":" prefix
|
||||
(,bin
|
||||
|
|
Loading…
Reference in a new issue