This is an automated email from the git hooks/post-receive script. efraim pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new b8afb3100e gnu: arm-trusted-firmware-sun50i-a64: Fix build. b8afb3100e is described below commit b8afb3100ec4f0b29701e49be6fc8d218ce963f6 Author: Efraim Flashner <efr...@flashner.co.il> AuthorDate: Tue May 6 15:39:58 2025 +0300 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 --- gnu/packages/firmware.scm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/gnu/packages/firmware.scm b/gnu/packages/firmware.scm index 715b9ab132..9548bc2ff7 100644 --- a/gnu/packages/firmware.scm +++ b/gnu/packages/firmware.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2014-2016, 2024 Ludovic Courtès <l...@gnu.org> ;;; Copyright © 2016 Eric Bavier <bav...@member.fsf.org> ;;; Copyright © 2017 David Craven <da...@craven.ch> -;;; Copyright © 2017, 2018, 2022-2024 Efraim Flashner <efr...@flashner.co.il> +;;; Copyright © 2017, 2018, 2022-2025 Efraim Flashner <efr...@flashner.co.il> ;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <m...@tobias.gr> ;;; Copyright © 2018 Vagrant Cascadian <vagr...@debian.org> ;;; Copyright © 2019 Mathieu Othacehe <m.othac...@gmail.com> @@ -1207,7 +1207,12 @@ interface standards, such as: license:bsd-2)))) ; libfdt (define-public arm-trusted-firmware-sun50i-a64 - (make-arm-trusted-firmware "sun50i_a64")) + (let ((base (make-arm-trusted-firmware "sun50i_a64"))) + (package + (inherit base) + (native-inputs (modify-inputs (package-native-inputs base) + ;; Needs at least gcc-13. + (prepend gcc-14)))))) (define-public arm-trusted-firmware-sun50i-h616 (make-arm-trusted-firmware "sun50i_h616"))