gnu: arm-trusted-firmware: Remove input labels.
* gnu/packages/firmware.scm (make-arm-trusted-firmware)[native-inputs]: Remove labels.
This commit is contained in:
parent
0c469c041e
commit
f11578e8d9
1 changed files with 11 additions and 10 deletions
|
@ -577,16 +577,17 @@ Virtual Machines. OVMF contains a sample UEFI firmware for QEMU and KVM.")
|
||||||
"DEBUG=1")
|
"DEBUG=1")
|
||||||
#:tests? #f)) ; no tests
|
#:tests? #f)) ; no tests
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(,@(if (and (not (string-prefix? "aarch64" (%current-system)))
|
(let ((system (%current-system)))
|
||||||
(string-prefix? "aarch64" arch))
|
(cond
|
||||||
`(("cross-gcc" ,(cross-gcc "aarch64-linux-gnu"))
|
((and (not (string-prefix? "aarch64" system))
|
||||||
("cross-binutils" ,(cross-binutils "aarch64-linux-gnu")))
|
(string-prefix? "aarch64" arch))
|
||||||
'())
|
(list (cross-gcc "aarch64-linux-gnu")
|
||||||
,@(if (and (not (string-prefix? "armhf" (%current-system)))
|
(cross-binutils "aarch64-linux-gnu")))
|
||||||
(string-prefix? "armhf" arch))
|
((and (not (string-prefix? "armhf" system))
|
||||||
`(("cross-gcc" ,(cross-gcc "arm-linux-gnueabihf"))
|
(string-prefix? "armhf" arch))
|
||||||
("cross-binutils" ,(cross-binutils "arm-linux-gnueabihf")))
|
(list (cross-gcc "arm-linux-gnueabihf")
|
||||||
'())))
|
(cross-binutils "arm-linux-gnueabihf")))
|
||||||
|
(else '()))))
|
||||||
(home-page "https://www.trustedfirmware.org/")
|
(home-page "https://www.trustedfirmware.org/")
|
||||||
(synopsis "Implementation of \"secure world software\"")
|
(synopsis "Implementation of \"secure world software\"")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue