me
/
guix
Archived
1
0
Fork 0

gnu: opensbi: Remove input labels.

* gnu/packages/firmware.scm (make-opensbi-package)[native-inputs]:
Remove input labels.
master
Efraim Flashner 2023-05-24 16:20:02 +03:00
parent d17ac233ee
commit 1be6baed2b
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 7 additions and 6 deletions

View File

@ -493,12 +493,13 @@ provide OpenFirmware functionality on top of an already running system.")
(base32 "13k76ngmbs6xk8wm0vhc3fjs5w82g34wxs2zf4r27jd79m47xjb5"))))
(build-system gnu-build-system)
(native-inputs
`(,@(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")))
'())
("python" ,python)))
(append
(if (and (not (string-prefix? "riscv64" (%current-system)))
(string-prefix? "riscv64" arch))
(list (cross-gcc "riscv64-linux-gnu")
(cross-binutils "riscv64-linux-gnu"))
'())
(list python)))
(arguments
`(#:tests? #f ; no check target
#:make-flags (list (string-append "PLATFORM=" ,platform)