gnu: commencement: stage0-posix: Use new package style.
* gnu/packages/commencement.scm (stage0-posix)[arguments]: Also use gexps for inputs and output.master
parent
0aa2ac9c0a
commit
4233bde7ba
|
@ -365,13 +365,14 @@ hex1, hex2, M1, and M2-Planet.")
|
||||||
#:builder
|
#:builder
|
||||||
#~(begin
|
#~(begin
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(let* ((bootstrap-seeds (assoc-ref %build-inputs "bootstrap-seeds"))
|
(let* ((bootstrap-seeds #$(this-package-native-input
|
||||||
(source (assoc-ref %build-inputs "source"))
|
"bootstrap-seeds"))
|
||||||
(tar (assoc-ref %build-inputs "bootar"))
|
(source #$(package-source this-package))
|
||||||
(bash (assoc-ref %build-inputs "bash"))
|
(tar #$(this-package-native-input "bootar"))
|
||||||
(coreutils (assoc-ref %build-inputs "coreutils"))
|
(bash #$(this-package-native-input "bash"))
|
||||||
(guile (assoc-ref %build-inputs "guile"))
|
(coreutils #$(this-package-native-input "coreutils"))
|
||||||
(out (assoc-ref %outputs "out"))
|
(guile #$(this-package-input "guile"))
|
||||||
|
(out #$output)
|
||||||
(bindir (string-append out "/bin"))
|
(bindir (string-append out "/bin"))
|
||||||
(target (or #$(%current-target-system)
|
(target (or #$(%current-target-system)
|
||||||
#$(%current-system)))
|
#$(%current-system)))
|
||||||
|
|
Reference in New Issue