summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2025-05-06 15:39:58 +0300
committerEfraim Flashner <efraim@flashner.co.il>2025-05-06 16:22:29 +0300
commitb8afb3100ec4f0b29701e49be6fc8d218ce963f6 (patch)
tree63220154702b9ee80e007c3d49ec482a1bd2a46e /gnu
parentf8bd2dbbd58969371ccb5c0dbe5ac3c672a9976a (diff)
gnu: arm-trusted-firmware-sun50i-a64: Fix build.
Fixes: https://issues.guix.gnu.org/78251 * gnu/packages/firmware.scm (arm-trusted-firmware-sun50i-a64) [native-inputs]: Add gcc-14. Change-Id: I11a71ec8bbaa7bea4212943ceaea75e6d660cf61
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/firmware.scm9
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm
index 715b9ab132a..9548bc2ff79 100644
--- a/gnu/packages/firmware.scm
+++ b/gnu/packages/firmware.scm
@@ -2,7 +2,7 @@
2;;; Copyright © 2014-2016, 2024 Ludovic Courtès <ludo@gnu.org> 2;;; Copyright © 2014-2016, 2024 Ludovic Courtès <ludo@gnu.org>
3;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org> 3;;; Copyright © 2016 Eric Bavier <bavier@member.fsf.org>
4;;; Copyright © 2017 David Craven <david@craven.ch> 4;;; Copyright © 2017 David Craven <david@craven.ch>
5;;; Copyright © 2017, 2018, 2022-2024 Efraim Flashner <efraim@flashner.co.il> 5;;; Copyright © 2017, 2018, 2022-2025 Efraim Flashner <efraim@flashner.co.il>
6;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr> 6;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
7;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org> 7;;; Copyright © 2018 Vagrant Cascadian <vagrant@debian.org>
8;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com> 8;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
@@ -1207,7 +1207,12 @@ interface standards, such as:
1207 license:bsd-2)))) ; libfdt 1207 license:bsd-2)))) ; libfdt
1208 1208
1209(define-public arm-trusted-firmware-sun50i-a64 1209(define-public arm-trusted-firmware-sun50i-a64
1210 (make-arm-trusted-firmware "sun50i_a64")) 1210 (let ((base (make-arm-trusted-firmware "sun50i_a64")))
1211 (package
1212 (inherit base)
1213 (native-inputs (modify-inputs (package-native-inputs base)
1214 ;; Needs at least gcc-13.
1215 (prepend gcc-14))))))
1211 1216
1212(define-public arm-trusted-firmware-sun50i-h616 1217(define-public arm-trusted-firmware-sun50i-h616
1213 (make-arm-trusted-firmware "sun50i_h616")) 1218 (make-arm-trusted-firmware "sun50i_h616"))