mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: opensbi: Remove input labels.
* gnu/packages/firmware.scm (make-opensbi-package)[native-inputs]: Remove input labels.
This commit is contained in:
parent
d17ac233ee
commit
1be6baed2b
1 changed files with 7 additions and 6 deletions
|
@ -493,12 +493,13 @@ (define* (make-opensbi-package platform name #:optional (arch "riscv64"))
|
|||
(base32 "13k76ngmbs6xk8wm0vhc3fjs5w82g34wxs2zf4r27jd79m47xjb5"))))
|
||||
(build-system gnu-build-system)
|
||||
(native-inputs
|
||||
`(,@(if (and (not (string-prefix? "riscv64" (%current-system)))
|
||||
(append
|
||||
(if (and (not (string-prefix? "riscv64" (%current-system)))
|
||||
(string-prefix? "riscv64" arch))
|
||||
`(("cross-gcc" ,(cross-gcc "riscv64-linux-gnu"))
|
||||
("cross-binutils" ,(cross-binutils "riscv64-linux-gnu")))
|
||||
(list (cross-gcc "riscv64-linux-gnu")
|
||||
(cross-binutils "riscv64-linux-gnu"))
|
||||
'())
|
||||
("python" ,python)))
|
||||
(list python)))
|
||||
(arguments
|
||||
`(#:tests? #f ; no check target
|
||||
#:make-flags (list (string-append "PLATFORM=" ,platform)
|
||||
|
|
Loading…
Reference in a new issue