mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
build-system/{gnu,trivial-build}: Fix handling of #:guile argument.
* guix/build-system/gnu.scm (gnu-build)[guile-for-build]: Check whether GUILE matches string? before checking whether it matches derivation-path?. * guix/build-system/trivial.scm (trivial-build)[guile-for-build]: Likewise.
This commit is contained in:
parent
2143cf7a50
commit
81c7948d9a
2 changed files with 11 additions and 11 deletions
|
@ -119,7 +119,7 @@ (define* (gnu-build store name source inputs
|
|||
"bin" "sbin"))
|
||||
(phases '%standard-phases)
|
||||
(system (%current-system))
|
||||
(implicit-inputs? #t) ; useful when bootstrapping
|
||||
(implicit-inputs? #t) ; useful when bootstrapping
|
||||
(modules '((guix build gnu-build-system)
|
||||
(guix build utils))))
|
||||
"Return a derivation called NAME that builds from tarball SOURCE, with
|
||||
|
@ -151,14 +151,14 @@ (define builder
|
|||
|
||||
(define guile-for-build
|
||||
(match guile
|
||||
((? package?)
|
||||
(package-derivation store guile system))
|
||||
((and (? string?) (? derivation-path?))
|
||||
guile)
|
||||
(#f ; the default
|
||||
(let* ((distro (resolve-interface '(distro packages base)))
|
||||
(guile (module-ref distro 'guile-final)))
|
||||
(package-derivation store guile system)))
|
||||
((? package?)
|
||||
(package-derivation store guile system))
|
||||
((? derivation-path?)
|
||||
guile)))
|
||||
(package-derivation store guile system)))))
|
||||
|
||||
(build-expression->derivation store name system
|
||||
builder
|
||||
|
|
|
@ -31,14 +31,14 @@ (define* (trivial-build store name source inputs
|
|||
ignored."
|
||||
(define guile-for-build
|
||||
(match guile
|
||||
((? package?)
|
||||
(package-derivation store guile system))
|
||||
((and (? string?) (? derivation-path?))
|
||||
guile)
|
||||
(#f ; the default
|
||||
(let* ((distro (resolve-interface '(distro packages base)))
|
||||
(guile (module-ref distro 'guile-final)))
|
||||
(package-derivation store guile system)))
|
||||
((? package?)
|
||||
(package-derivation store guile system))
|
||||
((? derivation-path?)
|
||||
guile)))
|
||||
(package-derivation store guile system)))))
|
||||
|
||||
(build-expression->derivation store name system builder inputs
|
||||
#:outputs outputs
|
||||
|
|
Loading…
Reference in a new issue