mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-03 00:26:33 +01:00
gnu: commencement: bootstrap-seeds: Use new package style.
* gnu/packages/commencement.scm (bootstrap-seeds)[arguments]: Also use gexps for inputs and output.
This commit is contained in:
parent
b6a0b8c018
commit
0aa2ac9c0a
1 changed files with 3 additions and 3 deletions
|
@ -289,9 +289,9 @@ (define bootstrap-seeds
|
|||
#:builder
|
||||
#~(begin
|
||||
(use-modules (guix build utils))
|
||||
(let ((source (assoc-ref %build-inputs "source"))
|
||||
(tar (assoc-ref %build-inputs "bootar"))
|
||||
(out (assoc-ref %outputs "out")))
|
||||
(let ((source #$(package-source this-package))
|
||||
(tar #$(this-package-native-input "bootar"))
|
||||
(out #$output))
|
||||
(setenv "PATH" (string-append tar "/bin:"))
|
||||
(invoke "tar" "xvf" source)
|
||||
(mkdir-p out)
|
||||
|
|
Loading…
Reference in a new issue